diff --git a/activities/ResponseAttend.php b/activities/ResponseAttend.php index f2381323..e919fb27 100644 --- a/activities/ResponseAttend.php +++ b/activities/ResponseAttend.php @@ -27,7 +27,7 @@ class ResponseAttend extends BaseActivity implements ConfigurableActivityInterfa */ public function getTitle() { - return Yii::t('CalendarModule.activities', 'Calendar: attend'); + return Yii::t('CalendarModule.notification', 'Calendar: attend'); } /** @@ -35,6 +35,6 @@ public function getTitle() */ public function getDescription() { - return Yii::t('CalendarModule.activities', 'Whenever someone participates in an event.'); + return Yii::t('CalendarModule.notification', 'Whenever someone participates in an event.'); } } diff --git a/activities/ResponseDeclined.php b/activities/ResponseDeclined.php index e343f1ea..448e5b81 100644 --- a/activities/ResponseDeclined.php +++ b/activities/ResponseDeclined.php @@ -27,7 +27,7 @@ class ResponseDeclined extends BaseActivity implements ConfigurableActivityInter */ public function getTitle() { - return Yii::t('CalendarModule.activities', 'Calendar: decline'); + return Yii::t('CalendarModule.notification', 'Calendar: decline'); } /** @@ -35,6 +35,6 @@ public function getTitle() */ public function getDescription() { - return Yii::t('CalendarModule.activities', 'Whenever someone declines to participate in an event.'); + return Yii::t('CalendarModule.notification', 'Whenever someone declines to participate in an event.'); } } diff --git a/activities/ResponseInvited.php b/activities/ResponseInvited.php index 9c8c1941..4f525017 100644 --- a/activities/ResponseInvited.php +++ b/activities/ResponseInvited.php @@ -27,7 +27,7 @@ class ResponseInvited extends BaseActivity implements ConfigurableActivityInterf */ public function getTitle() { - return Yii::t('CalendarModule.activities', 'Calendar: Invite'); + return Yii::t('CalendarModule.notification', 'Calendar: Invite'); } /** @@ -35,6 +35,6 @@ public function getTitle() */ public function getDescription() { - return Yii::t('CalendarModule.activities', 'Whenever someone invites to participate in an event.'); + return Yii::t('CalendarModule.notification', 'Whenever someone invites to participate in an event.'); } } diff --git a/activities/ResponseMaybe.php b/activities/ResponseMaybe.php index 1bf47dd1..792b9dae 100644 --- a/activities/ResponseMaybe.php +++ b/activities/ResponseMaybe.php @@ -27,7 +27,7 @@ class ResponseMaybe extends BaseActivity implements ConfigurableActivityInterfac */ public function getTitle() { - return Yii::t('CalendarModule.activities', 'Calendar: maybe'); + return Yii::t('CalendarModule.notification', 'Calendar: maybe'); } /** @@ -35,6 +35,6 @@ public function getTitle() */ public function getDescription() { - return Yii::t('CalendarModule.activities', 'Whenever someone may be participating in an event.'); + return Yii::t('CalendarModule.notification', 'Whenever someone may be participating in an event.'); } } diff --git a/activities/views/response_attend.php b/activities/views/response_attend.php index 200c734c..0f712ddd 100644 --- a/activities/views/response_attend.php +++ b/activities/views/response_attend.php @@ -9,7 +9,7 @@ $formatter = new CalendarDateFormatter(['calendarItem' => $source]); -echo Yii::t('CalendarModule.views_activities_EntryResponse', '%displayName% is attending %contentTitle%.', [ +echo Yii::t('CalendarModule.views', '%displayName% is attending %contentTitle%.', [ '%displayName%' => '' . Html::encode($originator->displayName) . '', '%contentTitle%' => $this->context->getContentInfo($source).' on '.$formatter->getFormattedTime() ]); diff --git a/activities/views/response_declined.php b/activities/views/response_declined.php index c6b15e28..4a13d15b 100644 --- a/activities/views/response_declined.php +++ b/activities/views/response_declined.php @@ -9,7 +9,7 @@ $formatter = new CalendarDateFormatter(['calendarItem' => $source]); -echo Yii::t('CalendarModule.views_activities_EntryResponse', '%displayName% cannot attend %contentTitle%.', [ +echo Yii::t('CalendarModule.views', '%displayName% cannot attend %contentTitle%.', [ '%displayName%' => '' . Html::encode($originator->displayName) . '', '%contentTitle%' => $this->context->getContentInfo($source).' on '.$formatter->getFormattedTime() ]); diff --git a/activities/views/response_invited.php b/activities/views/response_invited.php index 440cea78..b91a411c 100644 --- a/activities/views/response_invited.php +++ b/activities/views/response_invited.php @@ -9,7 +9,7 @@ $formatter = new CalendarDateFormatter(['calendarItem' => $source]); -echo Yii::t('CalendarModule.views_activities_EntryResponse', '%displayName% is invited to %contentTitle%.', [ +echo Yii::t('CalendarModule.views', '%displayName% is invited to %contentTitle%.', [ '%displayName%' => '' . Html::encode($originator->displayName) . '', '%contentTitle%' => $this->context->getContentInfo($source).' on '.$formatter->getFormattedTime() ]); \ No newline at end of file diff --git a/activities/views/response_maybe.php b/activities/views/response_maybe.php index f3b0ffc6..495a1054 100644 --- a/activities/views/response_maybe.php +++ b/activities/views/response_maybe.php @@ -9,7 +9,7 @@ $formatter = new CalendarDateFormatter(['calendarItem' => $source]); -echo Yii::t('CalendarModule.views_activities_EntryResponse', '%displayName% might be attending %contentTitle%.', [ +echo Yii::t('CalendarModule.views', '%displayName% might be attending %contentTitle%.', [ '%displayName%' => '' . Html::encode($originator->displayName) . '', '%contentTitle%' => $this->context->getContentInfo($source).' on '.$formatter->getFormattedTime() ]); diff --git a/assets/CalendarAsset.php b/assets/CalendarAsset.php index e316fbcd..2d8370e2 100644 --- a/assets/CalendarAsset.php +++ b/assets/CalendarAsset.php @@ -39,11 +39,11 @@ public static function register($view) { $view->registerJsConfig('calendar.Calendar', [ 'text' => [ - 'button.today' => Yii::t('CalendarModule.calendar', 'Today'), - 'button.month' => Yii::t('CalendarModule.calendar', 'Month'), - 'button.week' => Yii::t('CalendarModule.calendar', 'Week'), - 'button.day' => Yii::t('CalendarModule.calendar', 'Day'), - 'button.list' => Yii::t('CalendarModule.calendar', 'List'), + 'button.today' => Yii::t('CalendarModule.base', 'Today'), + 'button.month' => Yii::t('CalendarModule.base', 'Month'), + 'button.week' => Yii::t('CalendarModule.base', 'Week'), + 'button.day' => Yii::t('CalendarModule.base', 'Day'), + 'button.list' => Yii::t('CalendarModule.base', 'List'), ], ]); return parent::register($view); diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index aa12e9de..b23b0694 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -5,6 +5,7 @@ Changelog ----------------------- - Enh #502: Replace theme variables with CSS variables - Enh #504: Update Active Form for Bootstrap 5 +- Enh #508: Reduce translation message categories 1.6.3 (August 23, 2024) ----------------------- diff --git a/interfaces/recurrence/RecurrenceFormModel.php b/interfaces/recurrence/RecurrenceFormModel.php index a1e2cdb3..82b2b0e4 100644 --- a/interfaces/recurrence/RecurrenceFormModel.php +++ b/interfaces/recurrence/RecurrenceFormModel.php @@ -186,9 +186,9 @@ public function rules() public function attributeLabels() { return [ - 'frequency' => Yii::t('CalendarModule.recurrence', 'Repeat every'), - 'weekDays' => Yii::t('CalendarModule.recurrence', 'on weekdays'), - 'end' => Yii::t('CalendarModule.recurrence', 'End'), + 'frequency' => Yii::t('CalendarModule.base', 'Repeat every'), + 'weekDays' => Yii::t('CalendarModule.base', 'on weekdays'), + 'end' => Yii::t('CalendarModule.base', 'End'), ]; } @@ -200,7 +200,7 @@ public function validateModel($attribute, $params) } if (!($this->entry instanceof RecurrentEventIF)) { - $this->addError('frequency', Yii::t('CalendarModule.recurrence', 'This event does not support recurrent events')); + $this->addError('frequency', Yii::t('CalendarModule.base', 'This event does not support recurrent events')); } } @@ -221,13 +221,13 @@ public function validateFrequency($attribute, $params) try { $this->setRuleInterval(); } catch (\Exception $e) { - $this->addError('interval', Yii::t('CalendarModule.recurrence', 'Invalid interval given')); + $this->addError('interval', Yii::t('CalendarModule.base', 'Invalid interval given')); } try { $this->setRuleFrequency(); } catch (\Exception $e) { - $this->addError('frequency', Yii::t('CalendarModule.recurrence', 'Invalid frequency given')); + $this->addError('frequency', Yii::t('CalendarModule.base', 'Invalid frequency given')); } try { @@ -239,9 +239,9 @@ public function validateFrequency($attribute, $params) } catch (\Exception $e) { if ($this->interval == Frequency::MONTHLY) { - $this->addError('monthDaySelection', Yii::t('CalendarModule.recurrence', 'Invalid day of month given')); + $this->addError('monthDaySelection', Yii::t('CalendarModule.base', 'Invalid day of month given')); } elseif ($this->interval == Frequency::WEEKLY) { - $this->addError('weekDays', Yii::t('CalendarModule.recurrence', 'Invalid week day selection')); + $this->addError('weekDays', Yii::t('CalendarModule.base', 'Invalid week day selection')); } } } @@ -404,14 +404,14 @@ private function translateDayOfWeekToRrule($dow) public function getMonthDaySelection() { $result = [ - self::MONTHLY_BY_DAY_OF_MONTH => Yii::t('CalendarModule.recurrence', 'Monthly on day {dayOfMonth}', [ + self::MONTHLY_BY_DAY_OF_MONTH => Yii::t('CalendarModule.base', 'Monthly on day {dayOfMonth}', [ 'dayOfMonth' => $this->getStartDayOfMonth(), ]), ]; // If the date is not in the fifth week of the month if (!$this->isFifthWeekOfMonth($this->getMonthlyPositionOfStart())) { - $result[self::MONTHLY_BY_OCCURRENCE] = Yii::t('CalendarModule.recurrence', 'Monthly on the {position} {dayOfWeek}', [ + $result[self::MONTHLY_BY_OCCURRENCE] = Yii::t('CalendarModule.base', 'Monthly on the {position} {dayOfWeek}', [ 'position' => $this->getMonthlyPositionOfStartFormatted(), 'dayOfWeek' => $this->getStartDayOfWeekFormatted(), ]); @@ -419,8 +419,8 @@ public function getMonthDaySelection() // If the day is in the last week of month we add the possibility for 'last' day of month if ($this->isLastWeekDayOfMonth()) { - $result[self::MONTHLY_LAST_DAY_OF_MONTH] = Yii::t('CalendarModule.recurrence', 'Monthly on the {position} {dayOfWeek}', [ - 'position' => Yii::t('CalendarModule.recurrence', 'last'), + $result[self::MONTHLY_LAST_DAY_OF_MONTH] = Yii::t('CalendarModule.base', 'Monthly on the {position} {dayOfWeek}', [ + 'position' => Yii::t('CalendarModule.base', 'last'), 'dayOfWeek' => $this->getStartDayOfWeekFormatted(), ]); } @@ -437,11 +437,11 @@ private function isLastWeekDayOfMonth() public function getIntervalTypesSelection() { return [ - static::FREQUENCY_NEVER => Yii::t('CalendarModule.recurrence', 'Never'), - Frequency::DAILY => Yii::t('CalendarModule.recurrence', 'Day'), - Frequency::WEEKLY => Yii::t('CalendarModule.recurrence', 'Week'), - Frequency::MONTHLY => Yii::t('CalendarModule.recurrence', 'Month'), - Frequency::YEARLY => Yii::t('CalendarModule.recurrence', 'Year'), + static::FREQUENCY_NEVER => Yii::t('CalendarModule.base', 'Never'), + Frequency::DAILY => Yii::t('CalendarModule.base', 'Day'), + Frequency::WEEKLY => Yii::t('CalendarModule.base', 'Week'), + Frequency::MONTHLY => Yii::t('CalendarModule.base', 'Month'), + Frequency::YEARLY => Yii::t('CalendarModule.base', 'Year'), ]; } @@ -450,20 +450,20 @@ public function getIntervalTypesSelectionData() { return [ Frequency::DAILY => [ - 'data-singular' => Yii::t('CalendarModule.recurrence', 'Day'), - 'data-plural' => Yii::t('CalendarModule.recurrence', 'Days'), + 'data-singular' => Yii::t('CalendarModule.base', 'Day'), + 'data-plural' => Yii::t('CalendarModule.base', 'Days'), ], Frequency::WEEKLY => [ - 'data-singular' => Yii::t('CalendarModule.recurrence', 'Week'), - 'data-plural' => Yii::t('CalendarModule.recurrence', 'Weeks'), + 'data-singular' => Yii::t('CalendarModule.base', 'Week'), + 'data-plural' => Yii::t('CalendarModule.base', 'Weeks'), ], Frequency::MONTHLY => [ - 'data-singular' => Yii::t('CalendarModule.recurrence', 'Month'), - 'data-plural' => Yii::t('CalendarModule.recurrence', 'Months'), + 'data-singular' => Yii::t('CalendarModule.base', 'Month'), + 'data-plural' => Yii::t('CalendarModule.base', 'Months'), ], Frequency::YEARLY => [ - 'data-singular' => Yii::t('CalendarModule.recurrence', 'Year'), - 'data-plural' => Yii::t('CalendarModule.recurrence', 'Years'), + 'data-singular' => Yii::t('CalendarModule.base', 'Year'), + 'data-plural' => Yii::t('CalendarModule.base', 'Years'), ], ]; } @@ -499,24 +499,24 @@ private function getMonthlyPositionOfStartFormatted() { switch ($this->getMonthlyPositionOfStart()) { case 2: - return Yii::t('CalendarModule.recurrence', 'second'); + return Yii::t('CalendarModule.base', 'second'); case 3: - return Yii::t('CalendarModule.recurrence', 'third'); + return Yii::t('CalendarModule.base', 'third'); case 4: - return Yii::t('CalendarModule.recurrence', 'forth'); + return Yii::t('CalendarModule.base', 'forth'); case 5: - return Yii::t('CalendarModule.recurrence', 'last'); + return Yii::t('CalendarModule.base', 'last'); default: - return Yii::t('CalendarModule.recurrence', 'first'); + return Yii::t('CalendarModule.base', 'first'); } } public function getEndTypeSelection() { return [ - static::ENDS_NEVER => Yii::t('CalendarModule.recurrence', 'Never'), - static::ENDS_ON_DATE => Yii::t('CalendarModule.recurrence', 'On date'), - static::ENDS_AFTER_OCCURRENCES => Yii::t('CalendarModule.recurrence', 'After (occurrences)'), + static::ENDS_NEVER => Yii::t('CalendarModule.base', 'Never'), + static::ENDS_ON_DATE => Yii::t('CalendarModule.base', 'On date'), + static::ENDS_AFTER_OCCURRENCES => Yii::t('CalendarModule.base', 'After (occurrences)'), ]; } diff --git a/messages/am/activities.php b/messages/am/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/am/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/am/base.php b/messages/am/base.php index 765dda35..8984d6dc 100644 --- a/messages/am/base.php +++ b/messages/am/base.php @@ -1,95 +1,145 @@ 'ማስተካከያ', - 'Enable' => 'እንዲጠቀሙ አድርግ', - 'Files' => 'ፋይሎች', - 'ID' => 'መታወቂያ', - 'Invite' => 'ይጋብዙ', - 'Location' => 'አቅጣጫ', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invited: {users}' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/am/calendar.php b/messages/am/calendar.php deleted file mode 100644 index 2d1b7e68..00000000 --- a/messages/am/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'ዝርዝር', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/am/config.php b/messages/am/config.php index 39ee46e6..248f1536 100644 --- a/messages/am/config.php +++ b/messages/am/config.php @@ -1,38 +1,41 @@ 'አስወግድ', - 'Reset' => 'እንደገና ጀምር', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'መሰረታዊ', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'አስወግድ', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => 'እንደገና ጀምር', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/am/mail.php b/messages/am/mail.php deleted file mode 100644 index 9e6d25da..00000000 --- a/messages/am/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'Location' => 'አቅጣጫ', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/am/notification.php b/messages/am/notification.php new file mode 100644 index 00000000..9c7739cf --- /dev/null +++ b/messages/am/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => 'አቅጣጫ', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/am/notifications_CalendarNotificationCategory.php b/messages/am/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 32f067f4..00000000 --- a/messages/am/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,6 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/am/notifications_views_CanceledEvent.php b/messages/am/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/am/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/am/permissions.php b/messages/am/permissions.php deleted file mode 100644 index 139867e9..00000000 --- a/messages/am/permissions.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/am/recurrence.php b/messages/am/recurrence.php deleted file mode 100644 index 1dc9367e..00000000 --- a/messages/am/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'ፈፅሞ', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/am/reminder.php b/messages/am/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/am/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/am/settings.php b/messages/am/settings.php deleted file mode 100644 index 1bb7c233..00000000 --- a/messages/am/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'መሰረታዊ', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/am/views.php b/messages/am/views.php new file mode 100644 index 00000000..de6df8c5 --- /dev/null +++ b/messages/am/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => '', +]; diff --git a/messages/am/views_activities_EntryResponse.php b/messages/am/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/am/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/am/views_container-config_typesConfig.php b/messages/am/views_container-config_typesConfig.php deleted file mode 100644 index 0bfdc5f2..00000000 --- a/messages/am/views_container-config_typesConfig.php +++ /dev/null @@ -1,7 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/am/views_entry_edit.php b/messages/am/views_entry_edit.php deleted file mode 100644 index ab73e1ef..00000000 --- a/messages/am/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'ተመለስ', - 'Close' => 'ዝጋ', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => 'አጠቃላይ', - 'Invited' => '', - 'Next' => 'ቀጥሎ', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'ማስተካከያዎች', - 'Title' => 'ርዕስ', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/am/views_entry_view.php b/messages/am/views_entry_view.php deleted file mode 100644 index c82e1d05..00000000 --- a/messages/am/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => 'አጣራ', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -); diff --git a/messages/am/views_global_index.php b/messages/am/views_global_index.php deleted file mode 100644 index 0c5ce52c..00000000 --- a/messages/am/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'የግል መረጃዬ', - 'Filter events' => '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/am/widgets_GlobalConfigMenu.php b/messages/am/widgets_GlobalConfigMenu.php deleted file mode 100644 index b69fbe43..00000000 --- a/messages/am/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'ማውጫ', - 'Snippet' => '', -); diff --git a/messages/am/widgets_views_nextEvents.php b/messages/am/widgets_views_nextEvents.php deleted file mode 100644 index f8c6da69..00000000 --- a/messages/am/widgets_views_nextEvents.php +++ /dev/null @@ -1,6 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/am/widgets_views_participants.php b/messages/am/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/am/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/an/activities.php b/messages/an/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/an/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/an/base.php b/messages/an/base.php index 0e1032a8..7aab05d3 100644 --- a/messages/an/base.php +++ b/messages/an/base.php @@ -1,95 +1,145 @@ 'Cumpleanyos', - 'Calendar' => 'Calandario', - 'Description' => 'Descripción', - 'Edit' => 'Editar', - 'Email' => 'Correu-e', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'disabled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Cumpleanyos', + 'Calendar' => 'Calandario', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => 'Descripción', + '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 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' => '', + '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}' => '', + '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' => '', + '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' => 'Huso horario.', + 'Title' => 'Títol', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/an/calendar.php b/messages/an/calendar.php deleted file mode 100644 index 4d9af5a6..00000000 --- a/messages/an/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'Lista', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/an/config.php b/messages/an/config.php index ec49e724..0ac905ff 100644 --- a/messages/an/config.php +++ b/messages/an/config.php @@ -1,38 +1,41 @@ 'Eliminar', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Eliminar', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/an/mail.php b/messages/an/mail.php deleted file mode 100644 index b80cc938..00000000 --- a/messages/an/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Descripción', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/an/notification.php b/messages/an/notification.php new file mode 100644 index 00000000..c7383251 --- /dev/null +++ b/messages/an/notification.php @@ -0,0 +1,25 @@ + 'Calandario', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Descripción', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/an/notifications_CalendarNotificationCategory.php b/messages/an/notifications_CalendarNotificationCategory.php deleted file mode 100644 index b6310fc7..00000000 --- a/messages/an/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Calandario', - 'Receive Calendar related Notifications.' => '', -); diff --git a/messages/an/notifications_views_CanceledEvent.php b/messages/an/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/an/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/an/permissions.php b/messages/an/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/an/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/an/recurrence.php b/messages/an/recurrence.php deleted file mode 100644 index ca05aed2..00000000 --- a/messages/an/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Nunca', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/an/reminder.php b/messages/an/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/an/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/an/settings.php b/messages/an/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/an/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/an/views.php b/messages/an/views.php new file mode 100644 index 00000000..939c4188 --- /dev/null +++ b/messages/an/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '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' => '', + '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' => '', +]; diff --git a/messages/an/views_activities_EntryCreated.php b/messages/an/views_activities_EntryCreated.php deleted file mode 100644 index c7c665d4..00000000 --- a/messages/an/views_activities_EntryCreated.php +++ /dev/null @@ -1,21 +0,0 @@ - '', -); diff --git a/messages/an/views_activities_EntryResponse.php b/messages/an/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/an/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/an/views_container-config_typesConfig.php b/messages/an/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/an/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/an/views_entry_edit.php b/messages/an/views_entry_edit.php deleted file mode 100644 index cff3d73b..00000000 --- a/messages/an/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'Tornar', - 'Close' => 'Zavřít', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => 'Cheneral', - 'Invited' => '', - 'Next' => 'Siguient', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Achustes', - 'Title' => 'Titulek', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/an/views_entry_view.php b/messages/an/views_entry_view.php deleted file mode 100644 index ce1d46a2..00000000 --- a/messages/an/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Tot', - 'Attend' => '', - 'Decline' => '', - 'Filter' => 'Filtrar', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -); diff --git a/messages/an/views_global_index.php b/messages/an/views_global_index.php deleted file mode 100644 index cbf1f014..00000000 --- a/messages/an/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'O mío perfil', - 'My spaces' => 'Espacios', - 'Filter events' => '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'Select calendars' => '', -]; diff --git a/messages/an/widgets_GlobalConfigMenu.php b/messages/an/widgets_GlobalConfigMenu.php deleted file mode 100644 index 43eca016..00000000 --- a/messages/an/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'Menú', - 'Snippet' => '', -); diff --git a/messages/an/widgets_views_nextEvents.php b/messages/an/widgets_views_nextEvents.php deleted file mode 100644 index 870ac23b..00000000 --- a/messages/an/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/an/widgets_views_participants.php b/messages/an/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/an/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/ar/activities.php b/messages/ar/activities.php deleted file mode 100644 index d6da2cfb..00000000 --- a/messages/ar/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'التقويم: دعوة', - 'Calendar: attend' => 'التقويم: حضور', - 'Calendar: decline' => 'التقويم: تراجع', - 'Calendar: maybe' => 'التقويم: ربما', - 'Whenever someone declines to participate in an event.' => 'عندما يرفض شخص ما المشاركة في حدث ما.', - 'Whenever someone invites to participate in an event.' => 'عندما يدعو شخص ما للمشاركة في حدث ما.', - 'Whenever someone may be participating in an event.' => 'متى ما قد يشارك شخص ما في حدث ما.', - 'Whenever someone participates in an event.' => 'متى ما يشارك شخص ما في حدث ما.', -); diff --git a/messages/ar/base.php b/messages/ar/base.php index e8e8fe29..8446c317 100644 --- a/messages/ar/base.php +++ b/messages/ar/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'إضافة تقويم الملف الشخصي', 'Choose target calendar' => 'اختر التقويم المستهدف', 'Reminder settings' => 'إعدادات التذكير', @@ -9,24 +9,37 @@ '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!' => 'وقت الانتهاء يجب أن يكون بعد وقت البدء', @@ -40,21 +53,40 @@ '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.' => 'هنا يمكنك ضبط الإعدادات العمومية الافتراضية للتذكيرات. هذه الإعدادات يمكن أن تعدل على مستوى الباحة/الملف الشخصي.', + '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' => 'ساعة', '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}', + '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' => 'حالة المشاركين', @@ -64,6 +96,7 @@ 'Public' => 'عام', 'Recurring' => 'التكرار', 'Reopen Event' => 'إعادة فتح الحدث', + 'Repeat every' => 'تكرار كل', 'Saturday' => 'السبت', 'Set reminder' => 'إعداد تذكير', 'Start Date' => 'تاريخ البدء', @@ -72,23 +105,41 @@ '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}".', -); +]; diff --git a/messages/ar/calendar.php b/messages/ar/calendar.php deleted file mode 100644 index a246421e..00000000 --- a/messages/ar/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'يوم', - 'List' => 'قائمة', - 'Month' => 'شهر', - 'Today' => 'اليوم', - 'Week' => 'أسبوع', - 'Year' => 'سنة', -); diff --git a/messages/ar/config.php b/messages/ar/config.php index 98631a35..ec52647a 100644 --- a/messages/ar/config.php +++ b/messages/ar/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => 'إعداد موديول التقويم', 'Confirm Deletion' => 'تأكيد الحذف', 'Add \'Calendar\' to the main menu' => 'أضف "التقويم" إلى القائمة الرئيسية', 'Adds an snippet with upcoming events to your users dashboard.' => 'يضيف مقتطفًا بالأحداث القادمة إلى لوحة تحكم المستخدمين.', + 'Basic' => 'الأساسي', 'Calendar Configuration' => 'إعداد التقويم', 'Calendar default view mode settings' => 'إعدادات وضع العرض الافتراضية للتقويم', 'Create new type' => 'إنشاء نوع جديد', @@ -12,6 +13,7 @@ 'Delete' => 'حذف', 'Do you really want to delte this event type?' => 'هل تريد حقاً حذف نوع الحدث هذا؟', 'Event Type Configuration' => 'إعداد نوع الحدث', + 'Full calendar' => 'التقويم الكامل', 'Half a year' => 'نصف ساعة', 'Here you can configure default settings for new calendar events.' => 'هنا يمكنك ضبط الإعدادات الافتراضية لأحداث التقويم الجديدة.', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'هنا يمكنك ضبط الإعدادات الافتراضية لأحداث التقويم الجديدة. هذه الإعدادات يمكن أن تعدل على مستوى الباحة/الملف الشخصي.', @@ -29,9 +31,11 @@ 'One week' => 'أسبوع واحد', 'One year' => 'سنة واحدة', 'Only show top menu item and snippet if the module is installed in the users profile' => 'قم بعرض عنصر القائمة العلوية والمقتطف فقط إذا تم تثبيت الوحدة في ملف تعريف المستخدمين', + 'Participation' => 'المشاركة', + 'Reminder' => 'التذكير', 'Reset' => 'إعادة ضبط', 'Show snippet' => 'عرض المقتطف', 'There are currently no event types available.' => 'لا يوجد حاليا أي أنواع الأحداث المتاحة.', 'Upcoming events snippet' => 'مقتطف من الأحداث القادمة', 'View mode' => 'وضع العرض', -); +]; diff --git a/messages/ar/mail.php b/messages/ar/mail.php deleted file mode 100644 index 00098068..00000000 --- a/messages/ar/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'الوصف', - 'Location' => 'الموقع', - 'Organizer' => 'المنظم', - 'Participants info' => 'معلومات المشاركين', - 'Starting' => 'يبدأ', - 'View Online: {url}' => 'عرض عبر الإنترنت: {url}', -); diff --git a/messages/ar/notification.php b/messages/ar/notification.php new file mode 100644 index 00000000..6ac2c1b2 --- /dev/null +++ b/messages/ar/notification.php @@ -0,0 +1,25 @@ + 'التقويم', + 'Calendar: Invite' => 'التقويم: دعوة', + 'Calendar: attend' => 'التقويم: حضور', + 'Calendar: decline' => 'التقويم: تراجع', + 'Calendar: maybe' => 'التقويم: ربما', + 'Description' => 'الوصف', + 'Location' => 'الموقع', + 'Organizer' => 'المنظم', + 'Participants info' => 'معلومات المشاركين', + 'Receive Calendar related Notifications.' => 'استقبال الإشعارات المتعلقة بالتقويم.', + 'Starting' => 'يبدأ', + 'View Online: {url}' => 'عرض عبر الإنترنت: {url}', + 'Whenever someone declines to participate in an event.' => 'عندما يرفض شخص ما المشاركة في حدث ما.', + 'Whenever someone invites to participate in an event.' => 'عندما يدعو شخص ما للمشاركة في حدث ما.', + 'Whenever someone may be participating in an event.' => 'متى ما قد يشارك شخص ما في حدث ما.', + 'Whenever someone participates in an event.' => 'متى ما يشارك شخص ما في حدث ما.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => 'قام {displayName} بإلغاء الحدث "{contentTitle}" في الباحة {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => 'قام {displayName} بإلغاء الحدث "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => 'أعاد {displayName} فتح الحدث "{contentTitle}" في الباحة {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => 'أعاد {displayName} فتح الحدث "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => 'قام {displayName} للتو بتحديث الحدث "{contentTitle}" في الباحة {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => 'قام {displayName} للتو بتحديث الحدث {contentTitle}.', +]; diff --git a/messages/ar/notifications_CalendarNotificationCategory.php b/messages/ar/notifications_CalendarNotificationCategory.php deleted file mode 100644 index df8a95c7..00000000 --- a/messages/ar/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'التقويم', - 'Receive Calendar related Notifications.' => 'استقبال الإشعارات المتعلقة بالتقويم.', -); diff --git a/messages/ar/notifications_views_CanceledEvent.php b/messages/ar/notifications_views_CanceledEvent.php deleted file mode 100644 index 284ef8d7..00000000 --- a/messages/ar/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,9 +0,0 @@ - 'قام {displayName} بإلغاء الحدث "{contentTitle}" في الباحة {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => 'قام {displayName} بإلغاء الحدث "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => 'قام {displayName} للتو بتحديث الحدث "{contentTitle}" في الباحة {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => 'قام {displayName} للتو بتحديث الحدث {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => 'أعاد {displayName} فتح الحدث "{contentTitle}" في الباحة {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => 'أعاد {displayName} فتح الحدث "{contentTitle}".', -); diff --git a/messages/ar/permissions.php b/messages/ar/permissions.php deleted file mode 100644 index e8e3f1ea..00000000 --- a/messages/ar/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'يسمح للمستخدم بإنشاء إدخالات التقويم', - 'Allows the user to edit/delete existing calendar entries' => 'يسمح للمستخدم بتحرير/حذف إدخالات التقويم الموجودة', - 'Create entry' => 'إنشاء إدخال', - 'Manage entries' => 'إدارة الإدخالات', -); diff --git a/messages/ar/recurrence.php b/messages/ar/recurrence.php deleted file mode 100644 index cd2ad682..00000000 --- a/messages/ar/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'بعد (الأحداث)', - 'Day' => 'يوم', - 'Days' => 'أيام', - 'Delete all events' => 'حذف كل الأحداث', - 'Edit all events' => 'تحرير كل الأحداث', - 'Edit this and following events' => 'تحرير هذا و الأحداث التالية', - 'Edit this event' => 'تحرير هذا الحدث', - 'End' => 'الانتهاء', - 'Invalid day of month given' => 'تم تقديم يوم غير صالح من الشهر', - 'Invalid frequency given' => 'تم تقديم تكرار غير صالح', - 'Invalid interval given' => 'تم تقديم فاصل زمني غير صالح', - 'Invalid week day selection' => 'تحديد يوم الأسبوع غير صالح', - 'Month' => 'شهر', - 'Monthly on day {dayOfMonth}' => 'شهريًا في يوم {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'شهريًا في {position} {dayOfWeek}', - 'Months' => 'أشهر', - 'Never' => 'أبداً', - 'On date' => 'بتاريخ', - 'Repeat every' => 'تكرار كل', - 'This event does not support recurrent events' => 'لا يدعم هذا الحدث الأحداث المتكررة', - 'Week' => 'أسبوع', - 'Weeks' => 'أسابيع', - 'Year' => 'سنة', - 'Years' => 'سنوات', - 'first' => 'أول', - 'forth' => 'رابع', - 'last' => 'آخر', - 'on weekdays' => 'في أيام الأسبوع', - 'second' => 'ثاني', - 'third' => 'ثالث', -); diff --git a/messages/ar/reminder.php b/messages/ar/reminder.php deleted file mode 100644 index 97cd6198..00000000 --- a/messages/ar/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'تذكير مخصص', - 'Day' => 'يوم', - 'Default reminder settings' => 'إعدادات التذكير الافتراضية', - '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' => 'ساعة', - 'Minute' => 'دقيقة', - 'No reminder' => 'لا تذكير', - 'Upcoming {type}' => 'القادمة {type}', - 'Upcoming {type}: {title}' => '{type} القادم: {title}', - 'Use default reminder' => 'استخدم التذكير الافتراضي', - 'Week' => 'أسبوع', - 'You have an {type} coming up' => 'لديك {type} قادم', - 'You have an {type} coming up: {title}' => 'لديك {type} قادم: {title}', - 'Your reminder settings for event: \'{title}\'' => 'إعدادات التذكير للحدث: \'{title}\'', -); diff --git a/messages/ar/settings.php b/messages/ar/settings.php deleted file mode 100644 index 6bccd88b..00000000 --- a/messages/ar/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'الأساسي', - 'Full calendar' => 'التقويم الكامل', - 'Participation' => 'المشاركة', - 'Reminder' => 'التذكير', -); diff --git a/messages/ar/views.php b/messages/ar/views.php new file mode 100644 index 00000000..940205a3 --- /dev/null +++ b/messages/ar/views.php @@ -0,0 +1,59 @@ + 'لا يمكن لـ %displayName% حضور %contentTitle%.', + '%displayName% created a new %contentTitle%.' => 'قام DisplayName% بإنشاء %contentTitle% جديد.', + '%displayName% is attending %contentTitle%.' => '%displayName% يحضر %contentTitle%', + '%displayName% is invited to %contentTitle%.' => 'تمت دعوة %displayName% إلى %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% قد يحضر %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' => 'الكل يمكنه المشاركة', + '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} مشاركين', +]; diff --git a/messages/ar/views_activities_EntryCreated.php b/messages/ar/views_activities_EntryCreated.php deleted file mode 100644 index df7c1f9b..00000000 --- a/messages/ar/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - 'قام DisplayName% بإنشاء %contentTitle% جديد.', -); diff --git a/messages/ar/views_activities_EntryResponse.php b/messages/ar/views_activities_EntryResponse.php deleted file mode 100644 index 379596e0..00000000 --- a/messages/ar/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - 'لا يمكن لـ %displayName% حضور %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% يحضر %contentTitle%', - '%displayName% is invited to %contentTitle%.' => 'تمت دعوة %displayName% إلى %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% قد يحضر %contentTitle%.', -); diff --git a/messages/ar/views_container-config_typesConfig.php b/messages/ar/views_container-config_typesConfig.php deleted file mode 100644 index 51bc5cda..00000000 --- a/messages/ar/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'إنشاء نوع حدث جديد', - 'Edit calendar' => 'تحرير التقويم', - 'Edit event type' => 'تعديل نوع الحدث', -); diff --git a/messages/ar/views_entry_edit.php b/messages/ar/views_entry_edit.php deleted file mode 100644 index 78b1d829..00000000 --- a/messages/ar/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'إنشاء حدث', - 'Edit Event' => 'تحرير الحدث', - 'Edit recurring event' => 'تحرير الحدث المتكرر', - 'Are you sure want to remove the participant from the event?' => 'هل أنت متأكد أنك تريد إزالة المشارك من الحدث؟', - 'Attending' => 'الحضور', - 'Back' => 'عودة', - 'Close' => 'اغلاق', - 'Declined' => 'المرفوض', - 'Everybody can participate' => 'الكل يمكنه المشاركة', - 'General' => 'العام', - 'Invited' => 'مدعو', - 'Next' => 'التالي', - 'No participants' => 'لا مشاركين', - 'Only by Invite' => 'فقط بواسطة دعوة', - 'Participants' => 'المشاركون', - 'Recurrence' => 'التكرار', - 'Reminder' => 'تذكير', - 'Select event type...' => 'اختيار نوع الحدث...', - 'Settings' => 'الإعدادات', - 'Title' => 'العنوان', - 'Undecided' => 'غير مقرر', - '{count} Participants' => '{count} مشاركين', -); diff --git a/messages/ar/views_entry_view.php b/messages/ar/views_entry_view.php deleted file mode 100644 index 6f70e6ee..00000000 --- a/messages/ar/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'معلومات إضافية', - 'All' => 'الكل', - 'Attend' => 'حضور', - 'Decline' => 'رفض', - 'Filter' => 'تصفية', - 'Maybe' => 'ربما', - 'Participants' => 'المشاركون', - 'You are invited, please select your role:' => 'أنت مدعو، من فضلك اختر دوراً:', -); diff --git a/messages/ar/views_global_index.php b/messages/ar/views_global_index.php deleted file mode 100644 index a1b9232d..00000000 --- a/messages/ar/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'فرز الأحداث', - 'Followed spaces' => 'الباحات المتبعة', - 'Followed users' => 'المستخدمون المتبعون', - 'I\'m attending' => 'أنا سأحضرها', - 'My events' => 'أحداثي', - 'My profile' => 'ملفي الشخصي', - 'My spaces' => 'باحاتي', - 'Select calendars' => 'اختيار تقاويم', -); diff --git a/messages/ar/widgets_GlobalConfigMenu.php b/messages/ar/widgets_GlobalConfigMenu.php deleted file mode 100644 index 4c0621dc..00000000 --- a/messages/ar/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'التقويمات', - 'Defaults' => 'الافتراضيات', - 'Event Types' => 'أنواع الأحداث', - 'Menu' => 'القائمة', - 'Snippet' => 'المقتطف', -); diff --git a/messages/ar/widgets_views_nextEvents.php b/messages/ar/widgets_views_nextEvents.php deleted file mode 100644 index 00f92d4d..00000000 --- a/messages/ar/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'الأحداث القادمة', - 'Open Calendar' => 'فتح التقويم', -); diff --git a/messages/ar/widgets_views_participants.php b/messages/ar/widgets_views_participants.php deleted file mode 100644 index 0295535c..00000000 --- a/messages/ar/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':عدد الحضور', - ':count Declined' => ':عدد الرافضين', - ':count Invited' => ':عدد المدعوين', - ':count Undecided' => ': عدد غير المقررين', - 'Participants' => 'المشاركون', -); diff --git a/messages/bg/activities.php b/messages/bg/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/bg/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/bg/base.php b/messages/bg/base.php index d417c7a7..c4ce69d3 100644 --- a/messages/bg/base.php +++ b/messages/bg/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Добавяне на профилен календар', 'Choose target calendar' => 'Изберете целеви календар', 'Reminder settings' => 'Настройки за напомняне', @@ -9,24 +9,37 @@ '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' => '', '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!' => 'Крайният час трябва да е след началния час!', @@ -40,21 +53,40 @@ '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.' => 'Тук можете да конфигурирате глобални напомняния по подразбиране. Тези настройки могат да бъдат заменени на ниво раздел/профил.', + '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' => 'Час', '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}' => '', + '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' => '', @@ -64,6 +96,7 @@ 'Public' => 'Публично', 'Recurring' => 'Повтарящо се', 'Reopen Event' => 'Отвори отново събитието', + 'Repeat every' => 'Повторете всеки', 'Saturday' => 'Събота', 'Set reminder' => 'Задайте напомняне', 'Start Date' => 'Начална дата', @@ -72,23 +105,41 @@ '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}' => '', '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' => '', + '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}".' => '', -); +]; diff --git a/messages/bg/calendar.php b/messages/bg/calendar.php deleted file mode 100644 index ee2c2bb1..00000000 --- a/messages/bg/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ден', - 'List' => 'Списък', - 'Month' => 'Месец', - 'Today' => 'Днес', - 'Week' => 'Седмица', - 'Year' => 'Година', -); diff --git a/messages/bg/config.php b/messages/bg/config.php index 74a6ac76..21fd19b2 100644 --- a/messages/bg/config.php +++ b/messages/bg/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Конфигурация на модул Календар', - 'Confirm Deletion' => 'Потвърждаване на изтриване', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Добавя фрагмент с предстоящи събития към таблото за управление на вашите потребители.', - 'Calendar Configuration' => 'Конфигурация на календара', - 'Create new type' => 'Създайте нов тип', - 'Default participation settings' => 'Настройки по подразбиране за участие', - 'Delete' => 'Изтрий', - 'Do you really want to delte this event type?' => 'Наистина ли искате да изтриете този тип събитие?', - 'Event Type Configuration' => 'Конфигурация на типа събитие', - 'Half a year' => 'Половин година', - 'Here you can configure default settings for new calendar events.' => 'Тук можете да конфигурирате настройките по подразбиране за нови събития в календара.', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Тук можете да конфигурирате настройките по подразбиране за нови събития в календара. Тези настройки могат да бъдат заменени на ниво раздел/профил.', - 'Here you can manage and disable different calendars.' => 'Тук можете да управлявате и деактивирате различни календари.', - 'Here you can manage your event types.' => 'Тук можете да управлявате вашите видове събития.', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Ако са активирани, елементът от горното меню на календара и фрагментът на таблото за управление се виждат само за потребители, които имат календарен модул, инсталиран в техния профил.', - 'Include birthdays to dashboard snippet' => 'Включете рождени дни в фрагмента на таблото за управление', - 'Interval of upcoming events' => 'Интервал на предстоящите събития', - 'Max event items' => 'Максимален брой елементи на събитие', - 'Name' => 'Име', - 'One month' => 'Един месец', - 'One week' => 'Една седмица', - 'One year' => 'Една година', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Показване на горния елемент от менюто и фрагмента само ако модулът е инсталиран в потребителския профил', - 'Reset' => 'Нулиране', - 'Show snippet' => 'Показване на фрагмент', - 'There are currently no event types available.' => 'Понастоящем няма налични типове събития.', - 'Upcoming events snippet' => 'Фрагмент за предстоящи събития', - 'Add \'Calendar\' to the main menu' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Menu settings' => '', - 'View mode' => '', + 'Calendar module configuration' => 'Конфигурация на модул Календар', + 'Confirm Deletion' => 'Потвърждаване на изтриване', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Добавя фрагмент с предстоящи събития към таблото за управление на вашите потребители.', + 'Basic' => 'Основни', + 'Calendar Configuration' => 'Конфигурация на календара', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Създайте нов тип', + 'Default basic settings' => '', + 'Default participation settings' => 'Настройки по подразбиране за участие', + 'Delete' => 'Изтрий', + 'Do you really want to delte this event type?' => 'Наистина ли искате да изтриете този тип събитие?', + 'Event Type Configuration' => 'Конфигурация на типа събитие', + 'Full calendar' => '', + 'Half a year' => 'Половин година', + 'Here you can configure default settings for new calendar events.' => 'Тук можете да конфигурирате настройките по подразбиране за нови събития в календара.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Тук можете да конфигурирате настройките по подразбиране за нови събития в календара. Тези настройки могат да бъдат заменени на ниво раздел/профил.', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => 'Тук можете да управлявате и деактивирате различни календари.', + 'Here you can manage your event types.' => 'Тук можете да управлявате вашите видове събития.', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Ако са активирани, елементът от горното меню на календара и фрагментът на таблото за управление се виждат само за потребители, които имат календарен модул, инсталиран в техния профил.', + 'Include birthdays to dashboard snippet' => 'Включете рождени дни в фрагмента на таблото за управление', + 'Interval of upcoming events' => 'Интервал на предстоящите събития', + 'Max event items' => 'Максимален брой елементи на събитие', + 'Menu settings' => '', + 'Name' => 'Име', + 'One month' => 'Един месец', + 'One week' => 'Една седмица', + 'One year' => 'Една година', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Показване на горния елемент от менюто и фрагмента само ако модулът е инсталиран в потребителския профил', + 'Participation' => 'Участие', + 'Reminder' => 'Напомняне', + 'Reset' => 'Нулиране', + 'Show snippet' => 'Показване на фрагмент', + 'There are currently no event types available.' => 'Понастоящем няма налични типове събития.', + 'Upcoming events snippet' => 'Фрагмент за предстоящи събития', + 'View mode' => '', ]; diff --git a/messages/bg/mail.php b/messages/bg/mail.php deleted file mode 100644 index e8681bcd..00000000 --- a/messages/bg/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Описание', - 'Location' => 'Местоположение', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'Преглед онлайн: {url}', -); diff --git a/messages/bg/notification.php b/messages/bg/notification.php new file mode 100644 index 00000000..4676efce --- /dev/null +++ b/messages/bg/notification.php @@ -0,0 +1,25 @@ + 'Календар', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Описание', + 'Location' => 'Местоположение', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Получавайте известия, свързани с календара.', + 'Starting' => '', + 'View Online: {url}' => 'Преглед онлайн: {url}', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} анулира събитие "{contentTitle}" в раздела {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} отмени събитие "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} отвори отново събитие "{contentTitle}" в раздел {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} отвори отново събитие "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} току-що актуализира събитие "{contentTitle}" в раздел {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} току-що актуализира събитие {contentTitle}.', +]; diff --git a/messages/bg/notifications_CalendarNotificationCategory.php b/messages/bg/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 3bf12d45..00000000 --- a/messages/bg/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Календар', - 'Receive Calendar related Notifications.' => 'Получавайте известия, свързани с календара.', -); diff --git a/messages/bg/notifications_views_CanceledEvent.php b/messages/bg/notifications_views_CanceledEvent.php deleted file mode 100644 index b6518784..00000000 --- a/messages/bg/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} анулира събитие "{contentTitle}" в раздела {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} отмени събитие "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} току-що актуализира събитие "{contentTitle}" в раздел {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} току-що актуализира събитие {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} отвори отново събитие "{contentTitle}" в раздел {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} отвори отново събитие "{contentTitle}".', -]; diff --git a/messages/bg/permissions.php b/messages/bg/permissions.php deleted file mode 100644 index aa23b2cc..00000000 --- a/messages/bg/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Позволява на потребителя да създава нови записи в календара', - 'Allows the user to edit/delete existing calendar entries' => 'Позволява на потребителя да редактира / изтрива съществуващи записи в календара', - 'Create entry' => 'Създаване на запис', - 'Manage entries' => 'Управление на записи', -); diff --git a/messages/bg/recurrence.php b/messages/bg/recurrence.php deleted file mode 100644 index b26c348f..00000000 --- a/messages/bg/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'След (прояви)', - 'Day' => 'Ден', - 'Days' => 'Дни', - 'Delete all events' => 'Изтрийте всички събития', - 'Edit all events' => 'Редактирайте всички събития', - 'Edit this and following events' => 'Редактирайте това и следващите събития', - 'Edit this event' => 'Редактирайте това събитие', - 'End' => 'Край', - 'Invalid day of month given' => 'Даден е невалиден ден от месеца', - 'Invalid frequency given' => 'Дадена е невалидна честота', - 'Invalid interval given' => 'Даден е невалиден интервал', - 'Invalid week day selection' => 'Невалиден избор на ден от седмицата', - 'Month' => 'Месец', - 'Monthly on day {dayOfMonth}' => 'Месечно на ден {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Месечно на {position} {dayOfWeek}', - 'Months' => 'Месеци', - 'Never' => 'Никога', - 'On date' => 'На дата', - 'Repeat every' => 'Повторете всеки', - 'This event does not support recurrent events' => 'Това събитие не поддържа повтарящи се събития', - 'Week' => 'Седмица', - 'Weeks' => 'Седмици', - 'Year' => 'Година', - 'Years' => 'Години', - 'first' => 'първи', - 'forth' => 'четвърти', - 'last' => 'последен', - 'on weekdays' => 'през седмицата', - 'second' => 'втори', - 'third' => 'трети', -); diff --git a/messages/bg/reminder.php b/messages/bg/reminder.php deleted file mode 100644 index f83408f6..00000000 --- a/messages/bg/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - 'Персонализирано напомняне', - 'Day' => 'Ден', - 'Default reminder settings' => 'Настройки по подразбиране за напомняне', - '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' => 'Час', - 'No reminder' => 'Няма напомняне', - 'Upcoming {type}' => 'Предстои {type}', - 'Upcoming {type}: {title}' => 'Предстои {type}: {title}', - 'Use default reminder' => 'Използвайте напомняне по подразбиране', - 'Week' => 'Седмица', - 'You have an {type} coming up' => 'Предстои ви {type}', - 'You have an {type} coming up: {title}' => 'Предстои ви {type}: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Настройките ви за напомняне за събитие: "{title}"', - 'Minute' => '', -]; diff --git a/messages/bg/settings.php b/messages/bg/settings.php deleted file mode 100644 index 27ba4d04..00000000 --- a/messages/bg/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Основни', - 'Full calendar' => '', - 'Participation' => 'Участие', - 'Reminder' => 'Напомняне', -); diff --git a/messages/bg/views.php b/messages/bg/views.php new file mode 100644 index 00000000..a57b965f --- /dev/null +++ b/messages/bg/views.php @@ -0,0 +1,59 @@ + '%displayName% не може да присъства на %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% създаде нов %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% присъства на %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %contentTitle%.' => '%displayName% може да присъства на %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' => 'Всеки може да участва', + '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' => '', +]; diff --git a/messages/bg/views_activities_EntryCreated.php b/messages/bg/views_activities_EntryCreated.php deleted file mode 100644 index 254f737b..00000000 --- a/messages/bg/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% създаде нов %contentTitle%.', -); diff --git a/messages/bg/views_activities_EntryResponse.php b/messages/bg/views_activities_EntryResponse.php deleted file mode 100644 index d7999870..00000000 --- a/messages/bg/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '%displayName% не може да присъства на %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% присъства на %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% може да присъства на %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '', -]; diff --git a/messages/bg/views_container-config_typesConfig.php b/messages/bg/views_container-config_typesConfig.php deleted file mode 100644 index 80d0fd69..00000000 --- a/messages/bg/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Създайте нов тип събитие', - 'Edit calendar' => 'Редактиране на календар', - 'Edit event type' => 'Редактиране на тип събитие', -); diff --git a/messages/bg/views_entry_edit.php b/messages/bg/views_entry_edit.php deleted file mode 100644 index 915527cf..00000000 --- a/messages/bg/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => 'Редактиране на повтарящо се събитие', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Присъствие', - 'Back' => 'Назад', - 'Close' => 'Затвори', - 'Declined' => '', - 'Everybody can participate' => 'Всеки може да участва', - 'General' => 'Общ', - 'Invited' => '', - 'Next' => 'Следващ', - 'No participants' => 'Няма участници', - 'Only by Invite' => '', - 'Participants' => 'Участници', - 'Recurrence' => 'Повтаряне', - 'Reminder' => 'Напомняне', - 'Select event type...' => 'Изберете тип събитие...', - 'Settings' => 'Настройки', - 'Title' => 'Заглавие', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/bg/views_entry_view.php b/messages/bg/views_entry_view.php deleted file mode 100644 index 345ef9ac..00000000 --- a/messages/bg/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Допълнителна информация', - 'All' => 'Всички', - 'Attend' => 'Присъствам', - 'Decline' => 'Отказвам', - 'Filter' => 'Филтър', - 'Maybe' => 'Не съм сигурен', - 'Participants' => 'Участници', - 'You are invited, please select your role:' => '', -); diff --git a/messages/bg/views_global_index.php b/messages/bg/views_global_index.php deleted file mode 100644 index 416b6895..00000000 --- a/messages/bg/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Следвани раздели', - 'Followed users' => 'Следвани потребители', - 'I\'m attending' => 'Посещавам', - 'My events' => 'Моите Събития', - 'My profile' => 'Моят Профил', - 'My spaces' => 'Моите Раздели', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/bg/widgets_GlobalConfigMenu.php b/messages/bg/widgets_GlobalConfigMenu.php deleted file mode 100644 index 9fa66be3..00000000 --- a/messages/bg/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Календари', - 'Defaults' => 'По подразбиране', - 'Event Types' => 'Типове събития', - 'Menu' => 'Меню', - 'Snippet' => 'Фрагмент', -); diff --git a/messages/bg/widgets_views_nextEvents.php b/messages/bg/widgets_views_nextEvents.php deleted file mode 100644 index 2050a906..00000000 --- a/messages/bg/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Предстоящи събития', - 'Open Calendar' => 'Отворете Календар', -); diff --git a/messages/bg/widgets_views_participants.php b/messages/bg/widgets_views_participants.php deleted file mode 100644 index 6bb15912..00000000 --- a/messages/bg/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Участници', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/br/activities.php b/messages/br/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/br/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/br/base.php b/messages/br/base.php index d13a4339..d67ee387 100644 --- a/messages/br/base.php +++ b/messages/br/base.php @@ -1,95 +1,145 @@ 'Embann', - 'Public' => 'Foran', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'Next' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Title' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'disabled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + 'Edit' => 'Embann', + '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 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' => '', + '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}' => '', + 'List' => '', + 'Location' => '', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Morse', + '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' => 'Foran', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/br/calendar.php b/messages/br/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/br/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/br/config.php b/messages/br/config.php index 2aed6073..58fa2171 100644 --- a/messages/br/config.php +++ b/messages/br/config.php @@ -1,38 +1,41 @@ 'Dilemel', - 'Name' => 'Anv', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Dilemel', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'Anv', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/br/mail.php b/messages/br/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/br/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/br/notification.php b/messages/br/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/br/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/br/notifications_CalendarNotificationCategory.php b/messages/br/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 32f067f4..00000000 --- a/messages/br/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,6 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/br/notifications_views_CanceledEvent.php b/messages/br/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/br/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/br/permissions.php b/messages/br/permissions.php deleted file mode 100644 index 139867e9..00000000 --- a/messages/br/permissions.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/br/recurrence.php b/messages/br/recurrence.php deleted file mode 100644 index 934d6d64..00000000 --- a/messages/br/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Morse', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/br/reminder.php b/messages/br/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/br/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/br/settings.php b/messages/br/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/br/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/br/views.php b/messages/br/views.php new file mode 100644 index 00000000..47894e6f --- /dev/null +++ b/messages/br/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => '', +]; diff --git a/messages/br/views_activities_EntryResponse.php b/messages/br/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/br/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/br/views_container-config_typesConfig.php b/messages/br/views_container-config_typesConfig.php deleted file mode 100644 index 0bfdc5f2..00000000 --- a/messages/br/views_container-config_typesConfig.php +++ /dev/null @@ -1,7 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/br/views_entry_edit.php b/messages/br/views_entry_edit.php deleted file mode 100644 index 33789b49..00000000 --- a/messages/br/views_entry_edit.php +++ /dev/null @@ -1,26 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '', - 'Close' => '', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '', - 'Invited' => '', - 'Next' => '', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => '', - 'Title' => '', - 'Undecided' => '', - '{count} Participants' => '', -]; diff --git a/messages/br/views_entry_view.php b/messages/br/views_entry_view.php deleted file mode 100644 index 3701c09e..00000000 --- a/messages/br/views_entry_view.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -]; diff --git a/messages/br/views_global_index.php b/messages/br/views_global_index.php deleted file mode 100644 index 42d34833..00000000 --- a/messages/br/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/br/widgets_GlobalConfigMenu.php b/messages/br/widgets_GlobalConfigMenu.php deleted file mode 100644 index 5f306be5..00000000 --- a/messages/br/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '', - 'Snippet' => '', -]; diff --git a/messages/br/widgets_views_nextEvents.php b/messages/br/widgets_views_nextEvents.php deleted file mode 100644 index f8c6da69..00000000 --- a/messages/br/widgets_views_nextEvents.php +++ /dev/null @@ -1,6 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/br/widgets_views_participants.php b/messages/br/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/br/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/ca/activities.php b/messages/ca/activities.php deleted file mode 100644 index db72960f..00000000 --- a/messages/ca/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Calendari: Convidar', - 'Calendar: attend' => 'Calendari: assistir', - 'Calendar: decline' => 'Calendari: declinar', - 'Calendar: maybe' => 'Calendari: potser', - 'Whenever someone declines to participate in an event.' => 'Sempre que algú es nega a participar en un esdeveniment.', - 'Whenever someone invites to participate in an event.' => 'Sempre que algú convida a participar en un esdeveniment.', - 'Whenever someone may be participating in an event.' => 'Sempre que algú participi en un esdeveniment.', - 'Whenever someone participates in an event.' => 'Sempre que algú participa en un esdeveniment.', -); diff --git a/messages/ca/base.php b/messages/ca/base.php index e7dec46a..a0703d95 100644 --- a/messages/ca/base.php +++ b/messages/ca/base.php @@ -1,95 +1,145 @@ 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!', - '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', - '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', - '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}', - 'Location' => 'Ubicació', - 'Maximum number of participants' => 'Número màxim de participants', - 'Mode' => 'Mode', - 'Monday' => 'Dilluns', - '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', - 'Tuesday' => 'Dimarts', - 'User birthdays' => 'Aniversaris dels usuaris', - 'Wednesday' => 'Dimecres', - '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}' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Participation Status' => '', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => '', - 'Status cannot be updated.' => '', - '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' => '', + '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' => '', + 'Attending' => 'Assistint', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Aniversari', + 'Calendar' => 'Calendari', + '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ó', + '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 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' => '', + '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 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}', + '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', + 'Set reminder' => 'Establir recordatori', + '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' => '', + 'User birthdays' => 'Aniversaris dels usuaris', + 'Wednesday' => 'Dimecres', + 'Week' => 'Setmana', + 'Weeks' => '', + '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' => '', + '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}".', ]; diff --git a/messages/ca/calendar.php b/messages/ca/calendar.php deleted file mode 100644 index 0f26f54b..00000000 --- a/messages/ca/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dia', - 'List' => 'Llista', - 'Month' => 'Mes', - 'Today' => 'Avui', - 'Week' => 'Setmana', - 'Year' => 'Any', -); diff --git a/messages/ca/config.php b/messages/ca/config.php index 523208bd..19bb3a86 100644 --- a/messages/ca/config.php +++ b/messages/ca/config.php @@ -1,38 +1,41 @@ 'Suprimeix', - 'Name' => 'Nom', - 'Reset' => 'Reinicialitza', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'Bàsic', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Suprimeix', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'Nom', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => 'Reinicialitza', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/ca/mail.php b/messages/ca/mail.php deleted file mode 100644 index 90d034c4..00000000 --- a/messages/ca/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Descripció', - 'Location' => 'Ubicació', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'Veure on-line: {url}', -); diff --git a/messages/ca/notification.php b/messages/ca/notification.php new file mode 100644 index 00000000..9a06bdde --- /dev/null +++ b/messages/ca/notification.php @@ -0,0 +1,25 @@ + 'Calendari', + 'Calendar: Invite' => 'Calendari: Convidar', + 'Calendar: attend' => 'Calendari: assistir', + 'Calendar: decline' => 'Calendari: declinar', + 'Calendar: maybe' => 'Calendari: potser', + 'Description' => 'Descripció', + 'Location' => 'Ubicació', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Rebre Notificacions relacionades amb el Calendari', + 'Starting' => '', + 'View Online: {url}' => 'Veure on-line: {url}', + 'Whenever someone declines to participate in an event.' => 'Sempre que algú es nega a participar en un esdeveniment.', + 'Whenever someone invites to participate in an event.' => 'Sempre que algú convida a participar en un esdeveniment.', + 'Whenever someone may be participating in an event.' => 'Sempre que algú participi en un esdeveniment.', + 'Whenever someone participates in an event.' => 'Sempre que algú participa en un esdeveniment.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha cancel·lat l\'esdeveniment "{contentTitle}" a l\'espai {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} ha cancel·lat l\'esdeveniment "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha reobert l\'esdeveniment "{contentTitle}" a l\'espai {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} ha reobert l\'esdeveniment "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha actualitzat l\'esdeveniment "{contentTitle}" a l\'espai {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} ha actualitzat l\'esdeveniment {contentTitle}.', +]; diff --git a/messages/ca/notifications_CalendarNotificationCategory.php b/messages/ca/notifications_CalendarNotificationCategory.php deleted file mode 100644 index cea465d5..00000000 --- a/messages/ca/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Calendari', - 'Receive Calendar related Notifications.' => 'Rebre Notificacions relacionades amb el Calendari', -); diff --git a/messages/ca/notifications_views_CanceledEvent.php b/messages/ca/notifications_views_CanceledEvent.php deleted file mode 100644 index 2472dab0..00000000 --- a/messages/ca/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} ha cancel·lat l\'esdeveniment "{contentTitle}" a l\'espai {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} ha cancel·lat l\'esdeveniment "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha actualitzat l\'esdeveniment "{contentTitle}" a l\'espai {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} ha actualitzat l\'esdeveniment {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha reobert l\'esdeveniment "{contentTitle}" a l\'espai {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} ha reobert l\'esdeveniment "{contentTitle}".', -]; diff --git a/messages/ca/permissions.php b/messages/ca/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/ca/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/ca/recurrence.php b/messages/ca/recurrence.php deleted file mode 100644 index 5dc818bc..00000000 --- a/messages/ca/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - '', - 'Day' => 'Dia', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => 'Edita aquest esdeveniment', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => 'Mes', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => 'Mai', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => 'Setmana', - 'Weeks' => '', - 'Year' => 'Any', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -); diff --git a/messages/ca/reminder.php b/messages/ca/reminder.php deleted file mode 100644 index 13a1d686..00000000 --- a/messages/ca/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - '', - 'Day' => 'Dia', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => 'Setmana', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -); diff --git a/messages/ca/settings.php b/messages/ca/settings.php deleted file mode 100644 index ef03821b..00000000 --- a/messages/ca/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Bàsic', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/ca/views.php b/messages/ca/views.php new file mode 100644 index 00000000..6e2b0411 --- /dev/null +++ b/messages/ca/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '%displayName% ha creat un nou %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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 ' => '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', + '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' => '', +]; diff --git a/messages/ca/views_activities_EntryCreated.php b/messages/ca/views_activities_EntryCreated.php deleted file mode 100644 index 84aa427f..00000000 --- a/messages/ca/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% ha creat un nou %contentTitle%.', -); diff --git a/messages/ca/views_activities_EntryResponse.php b/messages/ca/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/ca/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/ca/views_container-config_typesConfig.php b/messages/ca/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/ca/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/ca/views_entry_edit.php b/messages/ca/views_entry_edit.php deleted file mode 100644 index 5fb42eb2..00000000 --- a/messages/ca/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Assistint', - 'Back' => 'Enrere', - 'Close' => 'Tanca', - 'Declined' => '', - 'Everybody can participate' => 'Tothom pot participar', - 'General' => 'General', - 'Invited' => '', - 'Next' => 'Següent', - 'No participants' => 'No participants', - 'Only by Invite' => '', - 'Participants' => 'Participants', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Configuració', - 'Title' => 'Títol', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/ca/views_entry_view.php b/messages/ca/views_entry_view.php deleted file mode 100644 index 5e56e21f..00000000 --- a/messages/ca/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Totes', - 'Attend' => 'Hi assistiré', - 'Decline' => 'No hi assistiré', - 'Filter' => 'Filtre', - 'Maybe' => 'Potser', - 'Participants' => 'Participants', - 'You are invited, please select your role:' => '', -); diff --git a/messages/ca/views_global_index.php b/messages/ca/views_global_index.php deleted file mode 100644 index 7eed8f07..00000000 --- a/messages/ca/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Espais on participes', - 'Followed users' => 'Membres a qui segueixes', - 'I\'m attending' => 'Hi aniré', - 'My events' => 'Els meus esdeveniments', - 'My profile' => 'El meu perfil', - 'My spaces' => 'Els meus espais', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/ca/widgets_GlobalConfigMenu.php b/messages/ca/widgets_GlobalConfigMenu.php deleted file mode 100644 index 43eca016..00000000 --- a/messages/ca/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'Menú', - 'Snippet' => '', -); diff --git a/messages/ca/widgets_views_nextEvents.php b/messages/ca/widgets_views_nextEvents.php deleted file mode 100644 index 9c3b3c4a..00000000 --- a/messages/ca/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Upcoming events ' => 'Pròxims esdeveniments ', -]; diff --git a/messages/ca/widgets_views_participants.php b/messages/ca/widgets_views_participants.php deleted file mode 100644 index 30ef28d4..00000000 --- a/messages/ca/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Participants', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/cs/activities.php b/messages/cs/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/cs/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/cs/base.php b/messages/cs/base.php index 4118be24..0603b916 100644 --- a/messages/cs/base.php +++ b/messages/cs/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Přidat profilový kalendář', 'Choose target calendar' => '', 'Reminder settings' => '', @@ -9,24 +9,37 @@ '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.', 'Attending' => 'Zúčastnit se ', 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', 'Birthday' => 'Datum narození', 'Calendar' => 'Kalendář', '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', '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!', @@ -40,21 +53,40 @@ 'Files' => 'Soubory', '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' => '', '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ě ', '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}' => '', + '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' => '', @@ -64,6 +96,7 @@ 'Public' => 'Veřejné', 'Recurring' => '', 'Reopen Event' => '', + 'Repeat every' => '', 'Saturday' => '', 'Set reminder' => '', 'Start Date' => 'Datum začátku', @@ -72,23 +105,41 @@ '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' => '', 'User birthdays' => '', 'Wednesday' => '', + 'Week' => 'Týden', + 'Weeks' => 'Týdny', + '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' => '', + '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}".' => '', -); +]; diff --git a/messages/cs/calendar.php b/messages/cs/calendar.php deleted file mode 100644 index 43aa9752..00000000 --- a/messages/cs/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Den', - 'List' => 'Seznam', - 'Month' => 'Měsíc', - 'Today' => 'Dnes', - 'Week' => 'Týden', - 'Year' => 'Rok', -); diff --git a/messages/cs/config.php b/messages/cs/config.php index 01bb3f67..4abc7d58 100644 --- a/messages/cs/config.php +++ b/messages/cs/config.php @@ -1,38 +1,41 @@ 'Vytvořit nový typ ', - 'Delete' => 'Smazat', - 'Name' => 'Jméno skupiny', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'Základní', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Vytvořit nový typ ', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Smazat', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => 'Úplný kalendář', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'Jméno skupiny', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => 'Účast', + 'Reminder' => 'Připomínka', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/cs/mail.php b/messages/cs/mail.php deleted file mode 100644 index 520d42aa..00000000 --- a/messages/cs/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Popis', - 'Location' => 'Místo', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/cs/notification.php b/messages/cs/notification.php new file mode 100644 index 00000000..d4b9fb7e --- /dev/null +++ b/messages/cs/notification.php @@ -0,0 +1,25 @@ + 'Kalendář', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Popis', + 'Location' => 'Místo', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/cs/notifications_CalendarNotificationCategory.php b/messages/cs/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 116c834a..00000000 --- a/messages/cs/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalendář', - 'Receive Calendar related Notifications.' => '', -); diff --git a/messages/cs/notifications_views_CanceledEvent.php b/messages/cs/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/cs/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/cs/permissions.php b/messages/cs/permissions.php deleted file mode 100644 index 6690d66b..00000000 --- a/messages/cs/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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.', - 'Create entry' => 'Vytvořit položku', - 'Manage entries' => 'Správa záznamů', -); diff --git a/messages/cs/recurrence.php b/messages/cs/recurrence.php deleted file mode 100644 index c820fb7b..00000000 --- a/messages/cs/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - '', - 'Day' => 'Den', - 'Days' => 'Dny', - 'Delete all events' => 'Smazat všechny události', - 'Edit all events' => 'Upravit všechny události', - 'Edit this and following events' => '', - 'Edit this event' => 'Upravit tuto událost', - 'End' => 'Konec', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => 'Měsíc', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => 'Měsíce', - 'Never' => 'Nikdy', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => 'Týden', - 'Weeks' => 'Týdny', - 'Year' => 'Rok', - 'Years' => 'Let', - 'first' => 'první', - 'forth' => 'dále', - 'last' => 'poslední', - 'on weekdays' => 've všední dny', - 'second' => 'druhý', - 'third' => 'třetí', -); diff --git a/messages/cs/reminder.php b/messages/cs/reminder.php deleted file mode 100644 index f2a17e35..00000000 --- a/messages/cs/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - '', - 'Day' => 'Den', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => 'Týden', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -); diff --git a/messages/cs/settings.php b/messages/cs/settings.php deleted file mode 100644 index 60f9b021..00000000 --- a/messages/cs/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Základní', - 'Full calendar' => 'Úplný kalendář', - 'Participation' => 'Účast', - 'Reminder' => 'Připomínka', -); diff --git a/messages/cs/views.php b/messages/cs/views.php new file mode 100644 index 00000000..278aa858 --- /dev/null +++ b/messages/cs/views.php @@ -0,0 +1,59 @@ + '%displayName% se nemůže účastnit %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% vytvořil(a) novou událost %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% se účastní %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% je pozván do %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% se může účastnit %contentTitle%.', + ':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', + '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', +]; diff --git a/messages/cs/views_activities_EntryCreated.php b/messages/cs/views_activities_EntryCreated.php deleted file mode 100644 index 39763899..00000000 --- a/messages/cs/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% vytvořil(a) novou událost %contentTitle%.', -); diff --git a/messages/cs/views_activities_EntryResponse.php b/messages/cs/views_activities_EntryResponse.php deleted file mode 100644 index 36640653..00000000 --- a/messages/cs/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% se nemůže účastnit %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% se účastní %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% je pozván do %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% se může účastnit %contentTitle%.', -); diff --git a/messages/cs/views_container-config_typesConfig.php b/messages/cs/views_container-config_typesConfig.php deleted file mode 100644 index 614292aa..00000000 --- a/messages/cs/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Vytvořit nový typ události', - 'Edit calendar' => 'Upravit kalendář', - 'Edit event type' => 'Upravit typ události', -); diff --git a/messages/cs/views_entry_edit.php b/messages/cs/views_entry_edit.php deleted file mode 100644 index fe42d02d..00000000 --- a/messages/cs/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Vytvořit událost', - 'Edit Event' => 'Upravit událost', - 'Edit recurring event' => 'Upravit opakující se událost', - 'Are you sure want to remove the participant from the event?' => 'Jste si jisti, že chcete účastníka z události odstranit?', - 'Attending' => 'Zúčastnit se', - 'Back' => 'Zpět', - 'Close' => 'Zavřít', - 'Declined' => 'Odmítnuté', - 'Everybody can participate' => 'Každý se může zúčastnit', - 'General' => 'Obecné', - 'Invited' => 'Pozvánky', - 'Next' => 'Další', - 'No participants' => 'Nikdo se nemůže zúčastnit', - 'Only by Invite' => 'Pouze na pozvání', - 'Participants' => 'Účastníci', - 'Recurrence' => 'Opakování', - 'Reminder' => 'Připomínka', - 'Select event type...' => 'Zvolte typ události...', - 'Settings' => 'Nastavení', - 'Title' => 'Nadpis', - 'Undecided' => 'Nerozhodnuté', - '{count} Participants' => '{count} Účastníci', -); diff --git a/messages/cs/views_entry_view.php b/messages/cs/views_entry_view.php deleted file mode 100644 index d2908ea0..00000000 --- a/messages/cs/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Další informace', - 'All' => 'Vše', - 'Attend' => 'Chci se zúčastnit', - 'Decline' => 'Nechci se zúčastnit', - 'Filter' => 'Filtr', - 'Maybe' => 'Možná', - 'Participants' => 'Účastníci', - 'You are invited, please select your role:' => 'Jste zváni, vyberte si svou roli:', -); diff --git a/messages/cs/views_global_index.php b/messages/cs/views_global_index.php deleted file mode 100644 index 72b006f7..00000000 --- a/messages/cs/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Sledované prostory', - 'Followed users' => 'Sledovaní uživatelé', - 'I\'m attending' => 'Zúčastním se', - 'My events' => 'Moje události', - 'My profile' => 'Můj profil', - 'My spaces' => 'Moje prostory', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/cs/widgets_GlobalConfigMenu.php b/messages/cs/widgets_GlobalConfigMenu.php deleted file mode 100644 index fb0aac9e..00000000 --- a/messages/cs/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Kalendáře', - 'Defaults' => 'Výchozí', - 'Event Types' => 'Typy událostí', - 'Menu' => 'Menu', - 'Snippet' => 'Úryvek', -); diff --git a/messages/cs/widgets_views_nextEvents.php b/messages/cs/widgets_views_nextEvents.php deleted file mode 100644 index c5b60e16..00000000 --- a/messages/cs/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Nadcházející události', - 'Open Calendar' => 'Otevřít kalendář', -); diff --git a/messages/cs/widgets_views_participants.php b/messages/cs/widgets_views_participants.php deleted file mode 100644 index cfb59b49..00000000 --- a/messages/cs/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count Účastní se', - ':count Declined' => ':count Zamítnuto', - ':count Invited' => ':count Pozváno', - ':count Undecided' => ':count Nerozhodnuto', - 'Participants' => 'Účastníci', -); diff --git a/messages/cy/activities.php b/messages/cy/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/cy/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/cy/base.php b/messages/cy/base.php index 5197f1bb..28be3708 100644 --- a/messages/cy/base.php +++ b/messages/cy/base.php @@ -1,95 +1,145 @@ 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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'Next' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Title' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'disabled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/cy/calendar.php b/messages/cy/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/cy/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/cy/config.php b/messages/cy/config.php index b40a8327..454bbe1a 100644 --- a/messages/cy/config.php +++ b/messages/cy/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Delete' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/cy/mail.php b/messages/cy/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/cy/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/cy/notification.php b/messages/cy/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/cy/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/cy/notifications_CalendarNotificationCategory.php b/messages/cy/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 32f067f4..00000000 --- a/messages/cy/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,6 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/cy/notifications_views_CanceledEvent.php b/messages/cy/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/cy/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/cy/permissions.php b/messages/cy/permissions.php deleted file mode 100644 index 139867e9..00000000 --- a/messages/cy/permissions.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/cy/recurrence.php b/messages/cy/recurrence.php deleted file mode 100644 index 5fe83811..00000000 --- a/messages/cy/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/cy/reminder.php b/messages/cy/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/cy/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/cy/settings.php b/messages/cy/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/cy/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/cy/views.php b/messages/cy/views.php new file mode 100644 index 00000000..47894e6f --- /dev/null +++ b/messages/cy/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => '', +]; diff --git a/messages/cy/views_activities_EntryResponse.php b/messages/cy/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/cy/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/cy/views_container-config_typesConfig.php b/messages/cy/views_container-config_typesConfig.php deleted file mode 100644 index 0bfdc5f2..00000000 --- a/messages/cy/views_container-config_typesConfig.php +++ /dev/null @@ -1,7 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/cy/views_entry_edit.php b/messages/cy/views_entry_edit.php deleted file mode 100644 index 33789b49..00000000 --- a/messages/cy/views_entry_edit.php +++ /dev/null @@ -1,26 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '', - 'Close' => '', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '', - 'Invited' => '', - 'Next' => '', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => '', - 'Title' => '', - 'Undecided' => '', - '{count} Participants' => '', -]; diff --git a/messages/cy/views_entry_view.php b/messages/cy/views_entry_view.php deleted file mode 100644 index 3701c09e..00000000 --- a/messages/cy/views_entry_view.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -]; diff --git a/messages/cy/views_global_index.php b/messages/cy/views_global_index.php deleted file mode 100644 index 42d34833..00000000 --- a/messages/cy/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/cy/widgets_GlobalConfigMenu.php b/messages/cy/widgets_GlobalConfigMenu.php deleted file mode 100644 index 5f306be5..00000000 --- a/messages/cy/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '', - 'Snippet' => '', -]; diff --git a/messages/cy/widgets_views_nextEvents.php b/messages/cy/widgets_views_nextEvents.php deleted file mode 100644 index f8c6da69..00000000 --- a/messages/cy/widgets_views_nextEvents.php +++ /dev/null @@ -1,6 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/cy/widgets_views_participants.php b/messages/cy/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/cy/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/da/activities.php b/messages/da/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/da/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/da/base.php b/messages/da/base.php index 70892a98..40a9d87b 100644 --- a/messages/da/base.php +++ b/messages/da/base.php @@ -1,95 +1,145 @@ Choose target calendar' => 'Vælg hvilken kalender', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Tilføjer en kalender for private eller offentlige events til din profil og mainmenu.', - 'Adds an event calendar to this space.' => 'Tilføjer en event kalender til denne side', - 'All Day' => 'Hele dagen', - 'Attending' => 'Deltager', - 'Birthday' => 'Fødselsdag', - 'Calendar' => 'Kalender', - 'Cancel Event' => 'Aflys Event', - 'Description' => 'Beskrivelse', - 'Edit' => 'Rediger', - 'Email' => 'E-mail', - 'Enable' => 'Aktiver', - 'End Date' => 'Slut Dato', - 'End Time' => 'Slut tidspunkt', - 'End time must be after start time!' => 'Slut tidspunkt skal være efter start tidspunkt!', - 'Event' => 'Event', - 'Event Type' => 'Eventtype', - 'Event not found!' => 'Event ikke fundet!', - 'Files' => 'Filer', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'For at kunne tilføje events til din egen kalender, skal du først aktivere kalendermodulet på din profil.', - 'Interested' => 'Interesseret', - 'Invalid event type id selected.' => 'Ugyldigt eventtype-ID valgt.', - 'Invite' => 'Inviter', - 'Maximum number of participants' => 'Max antal deltagere', - 'Next' => 'Næste', - 'Participants' => 'Deltagere', - 'Profile Calendar' => 'Profilkalender', - 'Public' => 'Offentlig', - 'Reopen Event' => 'Genåben Event', - 'Start Date' => 'Start Dato', - 'Start Time' => 'Start Tidspunkt', - 'Time Zone' => 'Tidszone', - 'Title' => 'Titel', - 'You don\'t have permission to delete this event!' => 'Du har ikke adgang til at slette dette event!', - 'canceled' => 'aflyst', - 'disabled' => 'handicappet', - '{displayName} Birthday' => '{displayName} fødselsdag', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} har netop tilføjet dig til eventet "{contentTitle}" på siden {spaceName}, som starter {time}.', - 'Add profile calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter by types' => '', - 'Friday' => '', - 'Invalid date or time format!' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Mode' => '', - 'Monday' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - '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' => '', - '{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}".' => '', + 'Add profile calendar' => '', + 'Choose target calendar' => 'Vælg hvilken 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.' => 'Tilføjer en kalender for private eller offentlige events til din profil og mainmenu.', + 'Adds an event calendar to this space.' => 'Tilføjer en event kalender til denne side', + 'After (occurrences)' => '', + 'All Day' => 'Hele dagen', + 'Allow option \'Decline\'' => '', + 'Allow option \'Undecided\'' => '', + 'Allows the user to create new calendar entries' => '', + 'Allows the user to edit/delete existing calendar entries' => '', + 'Attending' => 'Deltager', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Fødselsdag', + 'Calendar' => 'Kalender', + 'Cancel Event' => 'Aflys Event', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => 'Beskrivelse', + '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' => 'Rediger dette event', + 'Email' => 'E-mail', + 'Enable' => 'Aktiver', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => 'Slut Dato', + 'End Time' => 'Slut tidspunkt', + 'End time must be after start time!' => 'Slut tidspunkt skal være efter start tidspunkt!', + 'Event' => 'Event', + 'Event Type' => 'Eventtype', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Event ikke fundet!', + 'Export as {type}' => '', + 'Files' => 'Filer', + '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' => '', + 'ID' => 'ID', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'For at kunne tilføje events til din egen kalender, skal du først aktivere kalendermodulet på din profil.', + 'Interested' => 'Interesseret', + 'Invalid date or time format!' => '', + 'Invalid day of month given' => '', + 'Invalid event type id selected.' => 'Ugyldigt eventtype-ID valgt.', + 'Invalid frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Inviter', + 'Invited: {users}' => '', + 'List' => 'Liste', + 'Location' => '', + 'Manage entries' => '', + 'Maximum number of participants' => 'Max antal deltagere', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Aldrig', + 'Next' => 'Næste', + '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' => 'Profilkalender', + 'Public' => 'Offentlig', + 'Recurring' => '', + 'Reopen Event' => 'Genåben Event', + 'Repeat every' => '', + 'Saturday' => '', + 'Set reminder' => '', + 'Start Date' => 'Start Dato', + 'Start Time' => 'Start Tidspunkt', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => 'Tidszone', + 'Title' => 'Titel', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {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!' => 'Du har ikke adgang til at slette dette 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' => 'aflyst', + 'disabled' => 'handicappet', + 'first' => '', + 'forth' => '', + 'global' => '', + 'last' => '', + 'on weekdays' => '', + 'second' => '', + 'third' => '', + '{displayName} Birthday' => '{displayName} fødselsdag', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} har netop tilføjet dig til eventet "{contentTitle}" på siden {spaceName}, som starter {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}".' => '', ]; diff --git a/messages/da/calendar.php b/messages/da/calendar.php deleted file mode 100644 index 6c5673ef..00000000 --- a/messages/da/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'Liste', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/da/config.php b/messages/da/config.php index 2a3758ae..bd0a9b63 100644 --- a/messages/da/config.php +++ b/messages/da/config.php @@ -1,38 +1,41 @@ 'Opret ny type', - 'Delete' => 'Slet', - 'Name' => 'Navn', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'Basis', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Opret ny type', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Slet', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'Navn', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/da/mail.php b/messages/da/mail.php deleted file mode 100644 index a56080ad..00000000 --- a/messages/da/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Beskrivelse', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/da/notification.php b/messages/da/notification.php new file mode 100644 index 00000000..8edab890 --- /dev/null +++ b/messages/da/notification.php @@ -0,0 +1,25 @@ + 'Kalender', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Beskrivelse', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/da/notifications_CalendarNotificationCategory.php b/messages/da/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 58d86b2b..00000000 --- a/messages/da/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalender', - 'Receive Calendar related Notifications.' => '', -); diff --git a/messages/da/notifications_views_CanceledEvent.php b/messages/da/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/da/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/da/permissions.php b/messages/da/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/da/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/da/recurrence.php b/messages/da/recurrence.php deleted file mode 100644 index b61db69e..00000000 --- a/messages/da/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Rediger dette event', - 'Never' => 'Aldrig', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/da/reminder.php b/messages/da/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/da/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/da/settings.php b/messages/da/settings.php deleted file mode 100644 index 0cd53b17..00000000 --- a/messages/da/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Basis', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/da/views.php b/messages/da/views.php new file mode 100644 index 00000000..10d65315 --- /dev/null +++ b/messages/da/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '%displayName% oprettede et nyt %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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 ' => 'Kommende events', + 'Additional information' => '', + 'All' => 'Alle', + 'Are you sure want to remove the participant from the event?' => '', + 'Attend' => 'Deltag', + 'Attending' => 'Deltager', + 'Back' => 'Tilbage', + 'Calendars' => '', + 'Close' => 'Luk', + 'Decline' => 'Afslå', + 'Declined' => '', + 'Defaults' => 'Standarder', + 'Event Types' => '', + 'Everybody can participate' => 'Alle kan deltage', + 'Filter' => 'Filter', + 'Filter events' => '', + 'Followed spaces' => 'Fulgte sider', + 'Followed users' => 'Fulgte brugere', + 'General' => 'Generelt', + 'I\'m attending' => 'Jeg deltager', + 'Invited' => '', + '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' => '', + 'Open Calendar' => '', + 'Participants' => 'Deltagere', + 'Recurrence' => '', + 'Reminder' => '', + 'Select calendars' => '', + 'Select event type...' => '', + 'Settings' => 'Indstillinger', + 'Snippet' => '', + 'Title' => 'Titel', + 'Undecided' => '', + 'You are invited, please select your role:' => '', + '{count} Participants' => '', +]; diff --git a/messages/da/views_activities_EntryCreated.php b/messages/da/views_activities_EntryCreated.php deleted file mode 100644 index 79632d42..00000000 --- a/messages/da/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% oprettede et nyt %contentTitle%.', -); diff --git a/messages/da/views_activities_EntryResponse.php b/messages/da/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/da/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/da/views_container-config_typesConfig.php b/messages/da/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/da/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/da/views_entry_edit.php b/messages/da/views_entry_edit.php deleted file mode 100644 index 75983727..00000000 --- a/messages/da/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Deltager', - 'Back' => 'Tilbage', - 'Close' => 'Luk', - 'Declined' => '', - 'Everybody can participate' => 'Alle kan deltage', - 'General' => 'Generelt', - 'Invited' => '', - 'Next' => 'Næste', - 'No participants' => 'Ingen deltagere', - 'Only by Invite' => '', - 'Participants' => 'Deltagere', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Indstillinger', - 'Title' => 'Titel', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/da/views_entry_view.php b/messages/da/views_entry_view.php deleted file mode 100644 index 7d60839c..00000000 --- a/messages/da/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Alle', - 'Attend' => 'Deltag', - 'Decline' => 'Afslå', - 'Filter' => 'Filter', - 'Maybe' => 'Måske', - 'Participants' => 'Deltagere', - 'You are invited, please select your role:' => '', -); diff --git a/messages/da/views_global_index.php b/messages/da/views_global_index.php deleted file mode 100644 index fdb88cb6..00000000 --- a/messages/da/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Fulgte sider', - 'Followed users' => 'Fulgte brugere', - 'I\'m attending' => 'Jeg deltager', - 'My events' => 'Mine events', - 'My profile' => 'Min profil', - 'My spaces' => 'Mine Sider', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/da/widgets_GlobalConfigMenu.php b/messages/da/widgets_GlobalConfigMenu.php deleted file mode 100644 index bcd03c7d..00000000 --- a/messages/da/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => 'Standarder', - 'Event Types' => '', - 'Menu' => 'Menu', - 'Snippet' => '', -); diff --git a/messages/da/widgets_views_nextEvents.php b/messages/da/widgets_views_nextEvents.php deleted file mode 100644 index bb432f74..00000000 --- a/messages/da/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Upcoming events ' => 'Kommende events', -]; diff --git a/messages/da/widgets_views_participants.php b/messages/da/widgets_views_participants.php deleted file mode 100644 index 90ccdb36..00000000 --- a/messages/da/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Deltagere', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/de/activities.php b/messages/de/activities.php deleted file mode 100644 index 4c0eb71f..00000000 --- a/messages/de/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Kalender: Einladen', - 'Calendar: attend' => 'Kalender: Annehmen', - 'Calendar: decline' => 'Kalender: Ablehnen', - 'Calendar: maybe' => 'Kalender: Vielleicht', - 'Whenever someone declines to participate in an event.' => 'Wann immer jemand die Teilnahme an einem Termin ablehnt.', - 'Whenever someone invites to participate in an event.' => 'Wann immer jemand zu einem Termin einlädt.', - 'Whenever someone may be participating in an event.' => 'Wann immer jemand sich unsicher über die Teilnahme an einem Termin ist.', - 'Whenever someone participates in an event.' => 'Wann immer jemand die Teilnahme an einem Termin bestätigt.', -); diff --git a/messages/de/base.php b/messages/de/base.php index efeba3a3..935f2636 100644 --- a/messages/de/base.php +++ b/messages/de/base.php @@ -1,95 +1,145 @@ Add profile calendar' => 'Profilkalender erstellen', - 'Choose target calendar' => 'Zielkalender wählen', - 'Reminder settings' => 'Erinnerungseinstellungen', - 'Add all Space members with status {status}' => 'Alle Spacemitglieder mit Status {status} hinzufügen', - 'Add participants...' => 'Teilnehmer hinzufügen ...', - 'Added: {users}' => 'Hinzugefügt: {users}', - 'Additional Information for participants' => 'Weitere Teilnahme-Infos', - 'Adds a calendar for private or public events to your profile and main menu.' => 'Fügt deinem Profil und Hauptmenü einen Kalender für private und öffentliche Termine hinzu.', - 'Adds an event calendar to this space.' => 'Fügt diesem Space einen Kalender hinzu.', - 'All Day' => 'Ganztägig', - 'Allow option \'Decline\'' => 'Erlaube Option "Ablehnen"', - 'Allow option \'Undecided\'' => 'Erlaube Option "Vielleicht"', - 'Attending' => 'Du nimmst teil', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Bevor ein Zielkalender ausgewählt werden kann, muss das Modul in mindestens einem Space aktiviert sein.', - 'Birthday' => 'Geburtstag', - 'Calendar' => 'Kalender', - 'Cancel Event' => 'Termin absagen', - 'Cannot remove the participant!' => 'Teilnehmer konnte nicht entfernt werden!', - 'Deleted' => 'Gelöscht', - 'Description' => 'Beschreibung', - 'Do you want to install this module on your profile?' => 'Willst du dieses Modul für dein eigenes Profil installieren?', - 'Download ICS' => 'Herunterladen als ICS-Datei', - 'Edit' => 'Bearbeiten', - 'Edit Event' => 'Termin bearbeiten', - 'Email' => 'E-Mail-Adresse', - 'Enable' => 'Aktivieren', - 'Enable Reminder' => 'Erinnerung einrichten', - 'End Date' => 'Enddatum', - 'End Time' => 'Endzeit', - 'End time must be after start time!' => 'Die Endzeit muss nach der Startzeit sein!', - 'Event' => 'Termin', - 'Event Type' => 'Event Kategorie', - 'Event Types' => 'Event Kategorien', - 'Event not found!' => 'Termin nicht gefunden!', - 'Export as {type}' => 'Exportiere als {type}', - 'Files' => 'Dateien', - 'Filter by types' => 'Filtern nach Kategorie', - 'Friday' => 'Freitag', - 'ID' => 'ID', - 'In order to add events to your profile, you have to enable the calendar module first.' => 'Um deinem Profil Termine hinzuzufügen, musst du zuerst das Kalender-Modul aktivieren.', - 'Interested' => 'Interessiert', - 'Invalid date or time format!' => 'Datumsformat ungültig!', - 'Invalid event type id selected.' => 'Ungültige Kategorie-ID ausgewählt', - 'Invite' => 'Einladen', - 'Invited: {users}' => 'Eingeladen: {users}', - 'Location' => 'Ort', - 'Maximum number of participants' => 'Maximale Teilnehmerzahl', - 'Mode' => 'Teilnahme-Modus', - 'Monday' => 'Montag', - 'Next' => 'Weiter', - 'No new participants were added.' => 'Es wurden keine neuen Teilnehmer hinzugefügt.', - 'No new participants were invited.' => 'Es wurden keine neuen Teilnehmer eingeladen.', - 'Notify participants about changes' => 'Teilnehmer über Änderungen informieren.', - 'Participant removed.' => 'Teilnehmer entfernt.', - 'Participants' => 'Teilnehmer', - 'Participation Status' => 'Teilnahme-Status', - 'Please select new participants.' => 'Bitte wähle neue Teilnehmer.', - 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Private Termine sind nur für Sie und Ihre Freunde sichtbar (wenn das Freundschaftssystem aktiviert ist).', - 'Profile Calendar' => 'Profilkalender', - 'Public' => 'Öffentlich', - 'Recurring' => 'Wiederkehrend', - 'Reopen Event' => 'Termin wieder öffnen', - 'Saturday' => 'Samstag', - 'Set reminder' => 'Erinnerung erstellen', - 'Start Date' => 'Startdatum', - 'Start Time' => 'Startzeit', - 'Status cannot be updated.' => 'Status kann nicht aktualisiert werden.', - 'Status updated.' => 'Status aktualisiert.', - 'Sunday' => 'Sonntag', - 'The event has already ended.' => 'Der Termin ist bereits beendet.', - 'Thursday' => 'Donnerstag', - 'Time Zone' => 'Zeitzone', - 'Title' => 'Titel', - 'Tuesday' => 'Dienstag', - 'User birthdays' => 'Benutzer Geburtstage', - 'Wednesday' => 'Mittwoch', - 'You cannot invite participants!' => 'Du kannst keine Teilnehmer einladen!', - 'You don\'t have permission to delete this event!' => 'Du hast nicht die Berechtigung diesen Termin zu löschen!', - 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Du hast dich für die Veranstaltung "{contentTitle}" im {spaceName} angemeldet, die um {time} beginnt.', - 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Du hast dich für die Veranstaltung "{contentTitle}" angemeldet, die um {time} beginnt.', - 'You have been registered for the event "{contentTitle}".' => 'Du hast dich für die Veranstaltung "{contentTitle}" angemeldet.', - 'canceled' => 'Abgesagt', - 'disabled' => 'Deaktiviert', - 'global' => 'Global', - '{displayName} Birthday' => '{displayName} Geburtstag', - '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} hat dich zum Event"{contentTitle}" im Space {spaceName}, beginnend um {time}, hinzugefügt.', - '{displayName} added you to the event "{contentTitle}".' => '{displayName} hat dich zum Event "{contentTitle}" hinzugefügt.', - '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} hat dich zum Event "{contentTitle}" im Space {spaceName}, beginnend um {time}, eingeladen.', - '{displayName} invited you to the event "{contentTitle}".' => '{displayName} hat dich zum Event "{contentTitle}" eingeladen.', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', + 'Add profile calendar' => 'Profilkalender erstellen', + 'Choose target calendar' => 'Zielkalender wählen', + 'Reminder settings' => 'Erinnerungseinstellungen', + 'Add all Space members with status {status}' => 'Alle Spacemitglieder mit Status {status} hinzufügen', + 'Add participants...' => 'Teilnehmer hinzufügen ...', + 'Added: {users}' => 'Hinzugefügt: {users}', + 'Additional Information for participants' => 'Weitere Teilnahme-Infos', + 'Adds a calendar for private or public events to your profile and main menu.' => 'Fügt deinem Profil und Hauptmenü einen Kalender für private und öffentliche Termine hinzu.', + 'Adds an event calendar to this space.' => 'Fügt diesem Space einen Kalender hinzu.', + 'After (occurrences)' => 'Nach (Anzahl)', + 'All Day' => 'Ganztägig', + 'Allow option \'Decline\'' => 'Erlaube Option "Ablehnen"', + 'Allow option \'Undecided\'' => 'Erlaube Option "Vielleicht"', + 'Allows the user to create new calendar entries' => 'Erlaubt dem Benutzer, neue Kalendereinträge zu erstellen.', + 'Allows the user to edit/delete existing calendar entries' => 'Erlaubt dem Benutzer, bestehende Kalendereinträge zu bearbeiten/löschen.', + 'Attending' => 'Du nimmst teil', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Bevor ein Zielkalender ausgewählt werden kann, muss das Modul in mindestens einem Space aktiviert sein.', + 'Birthday' => 'Geburtstag', + 'Calendar' => 'Kalender', + 'Cancel Event' => 'Termin absagen', + 'Cannot remove the participant!' => 'Teilnehmer konnte nicht entfernt werden!', + 'Create entry' => 'Kalendereinträge erstellen', + 'Custom reminder' => 'Individuelle Erinnerung', + 'Day' => 'Tag', + 'Days' => 'Tage', + 'Default reminder settings' => 'Standardmäßige Einstellungen', + 'Delete all events' => 'Alle Termine löschen', + 'Deleted' => 'Gelöscht', + 'Description' => 'Beschreibung', + 'Do you want to install this module on your profile?' => 'Willst du dieses Modul für dein eigenes Profil installieren?', + 'Download ICS' => 'Herunterladen als ICS-Datei', + 'Edit' => 'Bearbeiten', + 'Edit Event' => 'Termin bearbeiten', + 'Edit all events' => 'Alle Termine bearbeiten', + 'Edit this and following events' => 'Diesen und alle folgenden Termine bearbeiten', + 'Edit this event' => 'Diesen Termin ändern', + 'Email' => 'E-Mail-Adresse', + 'Enable' => 'Aktivieren', + 'Enable Reminder' => 'Erinnerung einrichten', + 'End' => 'Ende', + 'End Date' => 'Enddatum', + 'End Time' => 'Endzeit', + 'End time must be after start time!' => 'Die Endzeit muss nach der Startzeit sein!', + 'Event' => 'Termin', + 'Event Type' => 'Event Kategorie', + 'Event Types' => 'Event Kategorien', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Termin nicht gefunden!', + 'Export as {type}' => 'Exportiere als {type}', + 'Files' => 'Dateien', + 'Filter by types' => 'Filtern nach Kategorie', + 'Friday' => 'Freitag', + 'Here you can configure default settings for all calendar events.' => 'Hier können Sie Voreinstellungen für alle Kalendereinträge definieren.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Hier können Sie globale Voreinstellungen für die Erinnerungsfunktion definieren. Diese Einstellungen können von individuellen Einstellungen innerhalb der Spaces oder Profile überschrieben werden.', + '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.' => 'Hier können Sie Voreinstellungen für einzelne Termine definieren. Benutzer können diese für sich persönlich und individuell anpassen.', + 'Hour' => 'Stunde', + 'ID' => 'ID', + 'In order to add events to your profile, you have to enable the calendar module first.' => 'Um deinem Profil Termine hinzuzufügen, musst du zuerst das Kalender-Modul aktivieren.', + 'Interested' => 'Interessiert', + 'Invalid date or time format!' => 'Datumsformat ungültig!', + 'Invalid day of month given' => 'Ungültiger Tag', + 'Invalid event type id selected.' => 'Ungültige Kategorie-ID ausgewählt', + 'Invalid frequency given' => 'Ungültige Wiederholungshäufigkeit', + 'Invalid interval given' => 'Ungültiges Intervall', + 'Invalid week day selection' => 'Ungültiger Wochentag', + 'Invite' => 'Einladen', + 'Invited: {users}' => 'Eingeladen: {users}', + 'List' => 'Liste', + 'Location' => 'Ort', + 'Manage entries' => 'Kalendereinträge verwalten', + 'Maximum number of participants' => 'Maximale Teilnehmerzahl', + 'Minute' => 'Minute', + 'Mode' => 'Teilnahme-Modus', + 'Monday' => 'Montag', + 'Month' => 'Monat', + 'Monthly on day {dayOfMonth}' => 'Monatlich am Tag {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Monatlich am {position} {dayOfWeek}', + 'Months' => 'Monate', + 'Never' => 'Nie', + 'Next' => 'Weiter', + 'No new participants were added.' => 'Es wurden keine neuen Teilnehmer hinzugefügt.', + 'No new participants were invited.' => 'Es wurden keine neuen Teilnehmer eingeladen.', + 'No reminder' => 'Keine Erinnerung', + 'Notify participants about changes' => 'Teilnehmer über Änderungen informieren.', + 'On date' => 'Am Datum', + 'Participant removed.' => 'Teilnehmer entfernt.', + 'Participants' => 'Teilnehmer', + 'Participation Status' => 'Teilnahme-Status', + 'Please select new participants.' => 'Bitte wähle neue Teilnehmer.', + 'Private events are only visible to you and, if the friendship system is activated, to your friends.' => 'Private Termine sind nur für Sie und Ihre Freunde sichtbar (wenn das Freundschaftssystem aktiviert ist).', + 'Profile Calendar' => 'Profilkalender', + 'Public' => 'Öffentlich', + 'Recurring' => 'Wiederkehrend', + 'Reopen Event' => 'Termin wieder öffnen', + 'Repeat every' => 'Wiederhole jeden', + 'Saturday' => 'Samstag', + 'Set reminder' => 'Erinnerung erstellen', + 'Start Date' => 'Startdatum', + 'Start Time' => 'Startzeit', + 'Status cannot be updated.' => 'Status kann nicht aktualisiert werden.', + 'Status updated.' => 'Status aktualisiert.', + 'Sunday' => 'Sonntag', + 'The event has already ended.' => 'Der Termin ist bereits beendet.', + 'This event does not support recurrent events' => 'Dieses Event unterstützt keine wiederkehrenden Termine', + 'Thursday' => 'Donnerstag', + 'Time Zone' => 'Zeitzone', + 'Title' => 'Titel', + 'Today' => 'Heute', + 'Tuesday' => 'Dienstag', + 'Upcoming {type}' => 'Anstehend {type}', + 'Upcoming {type}: {title}' => 'Anstehend {type}: {title}', + 'Use default reminder' => 'Voreinstellungen verwenden', + 'User birthdays' => 'Benutzer Geburtstage', + 'Wednesday' => 'Mittwoch', + 'Week' => 'Woche', + 'Weeks' => 'Wochen', + 'Year' => 'Jahr', + 'Years' => 'Jahre', + 'You cannot invite participants!' => 'Du kannst keine Teilnehmer einladen!', + 'You don\'t have permission to delete this event!' => 'Du hast nicht die Berechtigung diesen Termin zu löschen!', + 'You have an {type} coming up' => '{type} steht an', + 'You have an {type} coming up: {title}' => '{type} steht an: {title}', + 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Du hast dich für die Veranstaltung "{contentTitle}" im {spaceName} angemeldet, die um {time} beginnt.', + 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Du hast dich für die Veranstaltung "{contentTitle}" angemeldet, die um {time} beginnt.', + 'You have been registered for the event "{contentTitle}".' => 'Du hast dich für die Veranstaltung "{contentTitle}" angemeldet.', + 'Your reminder settings for event: \'{title}\'' => 'Deine eingestellten Erinnerungen für den Termin: \'{title}\'', + 'canceled' => 'Abgesagt', + 'disabled' => 'Deaktiviert', + 'first' => 'erst.', + 'forth' => 'viert.', + 'global' => 'Global', + 'last' => 'zuletzt', + 'on weekdays' => 'an Wochentagen', + 'second' => 'zweit.', + 'third' => 'dritt.', + '{displayName} Birthday' => '{displayName} Geburtstag', + '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} hat dich zum Event"{contentTitle}" im Space {spaceName}, beginnend um {time}, hinzugefügt.', + '{displayName} added you to the event "{contentTitle}".' => '{displayName} hat dich zum Event "{contentTitle}" hinzugefügt.', + '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} hat dich zum Event "{contentTitle}" im Space {spaceName}, beginnend um {time}, eingeladen.', + '{displayName} invited you to the event "{contentTitle}".' => '{displayName} hat dich zum Event "{contentTitle}" eingeladen.', ]; diff --git a/messages/de/calendar.php b/messages/de/calendar.php deleted file mode 100644 index aeb68fd4..00000000 --- a/messages/de/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Tag', - 'List' => 'Liste', - 'Month' => 'Monat', - 'Today' => 'Heute', - 'Week' => 'Woche', - 'Year' => 'Jahr', -); diff --git a/messages/de/config.php b/messages/de/config.php index 9e5ce8ed..e20456f6 100644 --- a/messages/de/config.php +++ b/messages/de/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => 'Kalender-Modul-Einstellungen', 'Confirm Deletion' => 'Löschen bestätigen', 'Add \'Calendar\' to the main menu' => 'Füge "Kalender" zur Hauptnavigation hinzu', 'Adds an snippet with upcoming events to your users dashboard.' => 'Fügt ein Widget mit anstehenden Terminen zur Übersicht deiner Benutzer hinzu.', + 'Basic' => 'Allgemein', 'Calendar Configuration' => 'Kalenderkonfiguration', 'Calendar default view mode settings' => 'Standardansicht für Kalender', 'Create new type' => 'Neue Kategorie erstellen', @@ -12,6 +13,7 @@ 'Delete' => 'Löschen', 'Do you really want to delte this event type?' => 'Möchtest du diese Kategorie wirklich löschen?', 'Event Type Configuration' => 'Event Kategorien', + 'Full calendar' => 'Kalenderansicht', 'Half a year' => 'Ein halbes Jahr', 'Here you can configure default settings for new calendar events.' => 'Hier kannst du die Standard-Einstellungen für neue Termine bearbeiten.', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Hier kannst du die Standard-Einstellungen für neue Termine bearbeiten. Diese können aber noch von den Standard-Einstellungen für einen Space oder ein Profil überschrieben werden.', @@ -29,9 +31,11 @@ 'One week' => 'Eine Woche', 'One year' => 'Ein Jahr', 'Only show top menu item and snippet if the module is installed in the users profile' => 'Zeige den Menüeintrag und „Nächste Termine“ nur bei aktiviertem Kalender-Modul im Benutzerprofil', + 'Participation' => 'Teilnahmemodus', + 'Reminder' => 'Erinnerung', 'Reset' => 'Zurücksetzen', 'Show snippet' => 'Zeige Widget „Nächste Termine“', 'There are currently no event types available.' => 'Im Moment stehen keine Kategorien zur Verfügung.', 'Upcoming events snippet' => 'Widget „Nächste Termine“', 'View mode' => 'Ansicht', -); +]; diff --git a/messages/de/mail.php b/messages/de/mail.php deleted file mode 100644 index 2ae4d670..00000000 --- a/messages/de/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Beschreibung', - 'Location' => 'Ort', - 'Organizer' => 'Organisator', - 'Participants info' => 'Teilnehmerinformationen', - 'Starting' => 'Startzeitpunkt', - 'View Online: {url}' => 'Online ansehen: {url}', -); diff --git a/messages/de/notification.php b/messages/de/notification.php new file mode 100644 index 00000000..f9c18ff5 --- /dev/null +++ b/messages/de/notification.php @@ -0,0 +1,25 @@ + 'Kalender', + 'Calendar: Invite' => 'Kalender: Einladen', + 'Calendar: attend' => 'Kalender: Annehmen', + 'Calendar: decline' => 'Kalender: Ablehnen', + 'Calendar: maybe' => 'Kalender: Vielleicht', + 'Description' => 'Beschreibung', + 'Location' => 'Ort', + 'Organizer' => 'Organisator', + 'Participants info' => 'Teilnehmerinformationen', + 'Receive Calendar related Notifications.' => 'Erhalte Kalender-Benachrichtigungen ', + 'Starting' => 'Startzeitpunkt', + 'View Online: {url}' => 'Online ansehen: {url}', + 'Whenever someone declines to participate in an event.' => 'Wann immer jemand die Teilnahme an einem Termin ablehnt.', + 'Whenever someone invites to participate in an event.' => 'Wann immer jemand zu einem Termin einlädt.', + 'Whenever someone may be participating in an event.' => 'Wann immer jemand sich unsicher über die Teilnahme an einem Termin ist.', + 'Whenever someone participates in an event.' => 'Wann immer jemand die Teilnahme an einem Termin bestätigt.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} hat den Termin "{contentTitle}" im Space {spaceName} abgesagt.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} hat den Termin "{contentTitle}" abgesagt.', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} hat den Termin "{contentTitle}" im Space {spaceName} wieder eröffnet.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} hat den Termin "{contentTitle}" wieder eröffnet.', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} hat "{contentTitle}" im Space {spaceName} aktualisiert.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} hat Termin "{contentTitle}" aktualisiert.', +]; diff --git a/messages/de/notifications_CalendarNotificationCategory.php b/messages/de/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 00e23df6..00000000 --- a/messages/de/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalender', - 'Receive Calendar related Notifications.' => 'Erhalte Kalender-Benachrichtigungen ', -); diff --git a/messages/de/notifications_views_CanceledEvent.php b/messages/de/notifications_views_CanceledEvent.php deleted file mode 100644 index 05ea73e5..00000000 --- a/messages/de/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} hat den Termin "{contentTitle}" im Space {spaceName} abgesagt.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} hat den Termin "{contentTitle}" abgesagt.', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} hat "{contentTitle}" im Space {spaceName} aktualisiert.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} hat Termin "{contentTitle}" aktualisiert.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} hat den Termin "{contentTitle}" im Space {spaceName} wieder eröffnet.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} hat den Termin "{contentTitle}" wieder eröffnet.', -]; diff --git a/messages/de/permissions.php b/messages/de/permissions.php deleted file mode 100644 index 6c113745..00000000 --- a/messages/de/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Erlaubt dem Benutzer, neue Kalendereinträge zu erstellen.', - 'Allows the user to edit/delete existing calendar entries' => 'Erlaubt dem Benutzer, bestehende Kalendereinträge zu bearbeiten/löschen.', - 'Create entry' => 'Kalendereinträge erstellen', - 'Manage entries' => 'Kalendereinträge verwalten', -); diff --git a/messages/de/recurrence.php b/messages/de/recurrence.php deleted file mode 100644 index 9af75e9a..00000000 --- a/messages/de/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Nach (Anzahl)', - 'Day' => 'Tag', - 'Days' => 'Tage', - 'Delete all events' => 'Alle Termine löschen', - 'Edit all events' => 'Alle Termine bearbeiten', - 'Edit this and following events' => 'Diesen und alle folgenden Termine bearbeiten', - 'Edit this event' => 'Diesen Termin ändern', - 'End' => 'Ende', - 'Invalid day of month given' => 'Ungültiger Tag', - 'Invalid frequency given' => 'Ungültige Wiederholungshäufigkeit', - 'Invalid interval given' => 'Ungültiges Intervall', - 'Invalid week day selection' => 'Ungültiger Wochentag', - 'Month' => 'Monat', - 'Monthly on day {dayOfMonth}' => 'Monatlich am Tag {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Monatlich am {position} {dayOfWeek}', - 'Months' => 'Monate', - 'Never' => 'Nie', - 'On date' => 'Am Datum', - 'Repeat every' => 'Wiederhole jeden', - 'This event does not support recurrent events' => 'Dieses Event unterstützt keine wiederkehrenden Termine', - 'Week' => 'Woche', - 'Weeks' => 'Wochen', - 'Year' => 'Jahr', - 'Years' => 'Jahre', - 'first' => 'erst.', - 'forth' => 'viert.', - 'last' => 'zuletzt', - 'on weekdays' => 'an Wochentagen', - 'second' => 'zweit.', - 'third' => 'dritt.', -); diff --git a/messages/de/reminder.php b/messages/de/reminder.php deleted file mode 100644 index 49718bd3..00000000 --- a/messages/de/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Individuelle Erinnerung', - 'Day' => 'Tag', - 'Default reminder settings' => 'Standardmäßige Einstellungen', - 'Here you can configure default settings for all calendar events.' => 'Hier können Sie Voreinstellungen für alle Kalendereinträge definieren.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Hier können Sie globale Voreinstellungen für die Erinnerungsfunktion definieren. Diese Einstellungen können von individuellen Einstellungen innerhalb der Spaces oder Profile überschrieben werden.', - '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.' => 'Hier können Sie Voreinstellungen für einzelne Termine definieren. Benutzer können diese für sich persönlich und individuell anpassen.', - 'Hour' => 'Stunde', - 'Minute' => 'Minute', - 'No reminder' => 'Keine Erinnerung', - 'Upcoming {type}' => 'Anstehend {type}', - 'Upcoming {type}: {title}' => 'Anstehend {type}: {title}', - 'Use default reminder' => 'Voreinstellungen verwenden', - 'Week' => 'Woche', - 'You have an {type} coming up' => '{type} steht an', - 'You have an {type} coming up: {title}' => '{type} steht an: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Deine eingestellten Erinnerungen für den Termin: \'{title}\'', -); diff --git a/messages/de/settings.php b/messages/de/settings.php deleted file mode 100644 index 0c03e186..00000000 --- a/messages/de/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Allgemein', - 'Full calendar' => 'Kalenderansicht', - 'Participation' => 'Teilnahmemodus', - 'Reminder' => 'Erinnerung', -); diff --git a/messages/de/views.php b/messages/de/views.php new file mode 100644 index 00000000..6f4fb614 --- /dev/null +++ b/messages/de/views.php @@ -0,0 +1,60 @@ + '%displayName% kann nicht an %contentTitle% teilnehmen.', + '%displayName% created a new %contentTitle%.' => '%displayName% hat einen neuen Termin „%contentTitle%“ erstellt.', + '%displayName% is attending %contentTitle%.' => '%displayName% nimmt an %contentTitle% teil.', + '%displayName% is invited to %contentTitle%.' => '%displayName% ist zu %contentTitle% eingeladen.', + '%displayName% might be attending %contentTitle%.' => '%displayName% nimmt vielleicht an %contentTitle% 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', + 'Filter' => 'Filter', + 'Filter events' => 'Events filtern', + 'Followed spaces' => 'Gefolgte Spaces', + 'Followed users' => 'Gefolgte Benutzer', + 'General' => 'Allgemein', + 'I\'m attending' => 'Ich nehme teil', + 'Invited' => 'Eingeladen', + 'Loading...' => 'Lädt …', + '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', +]; diff --git a/messages/de/views_activities_EntryCreated.php b/messages/de/views_activities_EntryCreated.php deleted file mode 100644 index a8676517..00000000 --- a/messages/de/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% hat einen neuen Termin „%contentTitle%“ erstellt.', -); diff --git a/messages/de/views_activities_EntryResponse.php b/messages/de/views_activities_EntryResponse.php deleted file mode 100644 index 28c54599..00000000 --- a/messages/de/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% kann nicht an %contentTitle% teilnehmen.', - '%displayName% is attending %contentTitle%.' => '%displayName% nimmt an %contentTitle% teil.', - '%displayName% is invited to %contentTitle%.' => '%displayName% ist zu %contentTitle% eingeladen.', - '%displayName% might be attending %contentTitle%.' => '%displayName% nimmt vielleicht an %contentTitle% teil.', -); diff --git a/messages/de/views_container-config_typesConfig.php b/messages/de/views_container-config_typesConfig.php deleted file mode 100644 index 755afe63..00000000 --- a/messages/de/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Neue Kategorie erstellen', - 'Edit calendar' => 'Kalender bearbeiten', - 'Edit event type' => 'Kategorie bearbeiten', -); diff --git a/messages/de/views_entry_edit.php b/messages/de/views_entry_edit.php deleted file mode 100644 index 3d112866..00000000 --- a/messages/de/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Termin erstellen', - 'Edit Event' => 'Termin bearbeiten', - 'Edit recurring event' => 'Wiederkehrenden Termin bearbeiten', - 'Are you sure want to remove the participant from the event?' => 'Bist du sicher, dass du den Teilnehmer vom Termin entfernen möchtest?', - 'Attending' => 'Zugesagt', - 'Back' => 'Zurück', - 'Close' => 'Schließen', - 'Declined' => 'Abgelehnt', - 'Everybody can participate' => 'Jeder darf teilnehmen', - 'General' => 'Allgemein', - 'Invited' => 'Eingeladen', - 'Next' => 'Weiter', - 'No participants' => 'Keine Teilnehmer', - 'Only by Invite' => 'Nur mit Einladung', - 'Participants' => 'Teilnehmer', - 'Recurrence' => 'Wiederkehrende Termine', - 'Reminder' => 'Erinnerung', - 'Select event type...' => 'Kategorie wählen', - 'Settings' => 'Einstellungen', - 'Title' => 'Titel', - 'Undecided' => 'Vielleicht', - '{count} Participants' => '{count} Teilnehmer', -); diff --git a/messages/de/views_entry_view.php b/messages/de/views_entry_view.php deleted file mode 100644 index 1939a2cb..00000000 --- a/messages/de/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Weitere Informationen', - 'All' => 'Alle', - 'Attend' => 'Teilnehmen', - 'Decline' => 'Ablehnen', - 'Filter' => 'Filter', - 'Maybe' => 'Vielleicht', - 'Participants' => 'Teilnehmer', - 'You are invited, please select your role:' => 'Du bist eingeladen, bitte wähle deinen Teilnahmestatus:', -); diff --git a/messages/de/views_global_index.php b/messages/de/views_global_index.php deleted file mode 100644 index 5fbd4921..00000000 --- a/messages/de/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Events filtern', - 'Followed spaces' => 'Gefolgte Spaces', - 'Followed users' => 'Gefolgte Benutzer', - 'I\'m attending' => 'Ich nehme teil', - 'My events' => 'Meine Termine', - 'My profile' => 'Mein Profil', - 'My spaces' => 'Meine Spaces', - 'Select calendars' => 'Kalender wählen', -); diff --git a/messages/de/widgets_GlobalConfigMenu.php b/messages/de/widgets_GlobalConfigMenu.php deleted file mode 100644 index 9e78820e..00000000 --- a/messages/de/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Kalender', - 'Defaults' => 'Standards', - 'Event Types' => 'Kategorie', - 'Menu' => 'Menü', - 'Snippet' => 'Widget', -); diff --git a/messages/de/widgets_views_fullCalendar.php b/messages/de/widgets_views_fullCalendar.php deleted file mode 100644 index 231a8cd2..00000000 --- a/messages/de/widgets_views_fullCalendar.php +++ /dev/null @@ -1,4 +0,0 @@ - 'Lädt …', -); diff --git a/messages/de/widgets_views_nextEvents.php b/messages/de/widgets_views_nextEvents.php deleted file mode 100644 index 382d3cc6..00000000 --- a/messages/de/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Anstehende Veranstaltungen', - 'Open Calendar' => 'Kalender öffnen', -); diff --git a/messages/de/widgets_views_participants.php b/messages/de/widgets_views_participants.php deleted file mode 100644 index f22af100..00000000 --- a/messages/de/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count Zusagen', - ':count Declined' => ':count Ablehnungen', - ':count Invited' => ':count Eingeladen', - ':count Undecided' => ':count Vielleicht', - 'Participants' => 'Teilnehmer', -); diff --git a/messages/el/activities.php b/messages/el/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/el/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/el/base.php b/messages/el/base.php index 144c6eb2..26108ac1 100644 --- a/messages/el/base.php +++ b/messages/el/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Προσθήκη ημερολογίου προφίλ', 'Choose target calendar' => 'Επιλέξτε στοχευόμενο ημερολόγιο', 'Reminder settings' => 'Ρυθμίσεις Υπενθυμίσεων', @@ -9,24 +9,37 @@ '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' => '', '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!' => 'Η ώρα λήξης πρέπει να είναι μετά την ώρα έναρξης!', @@ -40,21 +53,40 @@ '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.' => 'Εδώ μπορείτε να ρυθμίσετε τις προεπιλεγμένες υπενθυμίσεις για προεπιλογή. Αυτές οι ρυθμίσεις μπορούν να αντικατασταθούν στο επίπεδο χώρου / προφίλ.', + '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' => 'Ωρα', '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}' => '', + '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' => '', @@ -64,6 +96,7 @@ 'Public' => 'Δημόσιο', 'Recurring' => 'Επαναλαμβανόμενο', 'Reopen Event' => 'Εκ νέου Άνοιγμα Εκδήλωσης', + 'Repeat every' => 'Επαναλάβετε κάθε', 'Saturday' => 'Σάββατο', 'Set reminder' => 'Ορισμός υπενθύμισης', 'Start Date' => 'Ημερομηνία έναρξης', @@ -72,23 +105,41 @@ '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}' => '', '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' => '', + '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}".' => '', -); +]; diff --git a/messages/el/calendar.php b/messages/el/calendar.php deleted file mode 100644 index 0bd637f0..00000000 --- a/messages/el/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ημέρα', - 'List' => '', - 'Month' => 'Μήνας', - 'Today' => '', - 'Week' => 'Εβδομάδα', - 'Year' => 'Ετος', -); diff --git a/messages/el/config.php b/messages/el/config.php index bb21bcc5..ee1555c1 100644 --- a/messages/el/config.php +++ b/messages/el/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Ημερολόγιο διαμόρφωσης μονάδας', - 'Confirm Deletion' => 'Επιβεβαίωση Διαγραφής', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Προσθέτει ένα απόσπασμα με τις επερχόμενες εκδηλώσεις στον πίνακα ελέγχου των χρηστών σας.', - 'Calendar Configuration' => 'Διαμόρφωση ημερολογίου', - 'Create new type' => 'Δημιουργία νέου τύπου', - 'Default participation settings' => 'Προεπιλεγμένες ρυθμίσεις συμμετοχής', - 'Delete' => 'Διαγραφή', - 'Do you really want to delte this event type?' => 'Θέλετε πραγματικά να διαγράψετε αυτόν τον τύπο εκδήλωσης;', - 'Event Type Configuration' => 'Διαμόρφωση τύπων εκδηλώσεων', - 'Half a year' => 'Μισό χρόνο', - 'Here you can configure default settings for new calendar events.' => 'Εδώ μπορείτε να ρυθμίσετε τις προεπιλεγμένες ρυθμίσεις για νέες εκδηλώσεις ημερολογίου.', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Εδώ μπορείτε να ρυθμίσετε τις προεπιλεγμένες ρυθμίσεις για νέες εκδηλώσεις ημερολογίου. Αυτές οι ρυθμίσεις μπορούν να αντικατασταθούν στο επίπεδο χώρου/προφίλ.', - 'Here you can manage and disable different calendars.' => 'Εδώ μπορείτε να διαχειριστείτε και να απενεργοποιήσετε διαφορετικά ημερολόγια.', - 'Here you can manage your event types.' => 'Εδώ μπορείτε να διαχειριστείτε τους τύπους εκδηλώσεων σας.', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Αν ενεργοποιηθεί, το στοιχείο του πάνω μενού ημερολογίου και το απόσπασμα του ταμπλό είναι ορατό μόνο για χρήστες που έχουν εγκατεστημένη την ενότητα ημερολογίου στο προφίλ τους.', - 'Include birthdays to dashboard snippet' => 'Ενσωμάτωση γενεθλίων στο απόσμασμα του dashboard', - 'Interval of upcoming events' => 'Διάστημα για επερχόμενες εκδηλώσεις', - 'Max event items' => 'Μέγιστα αντικείμενα εκδήλωσης', - 'Name' => 'Όνομα', - 'One month' => 'Ένας μήνας', - 'One week' => 'Μία εβδομάδα', - 'One year' => 'Ένας χρόνος', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Εμφανίζεται μόνο το στοιχείο του επάνω μενού και το απόσπασμα εάν η ενότητα είναι εγκατεστημένη στο προφίλ των χρηστών', - 'Reset' => 'Επαναφορά', - 'Show snippet' => 'Εμφάνιση αποσπάσματος', - 'There are currently no event types available.' => 'Προς το παρόν δεν υπάρχουν διαθέσιμοι τύποι εκδηλώσεων.', - 'Upcoming events snippet' => 'Απόσπασμα προσεχών εκδηλώσεων', - 'Add \'Calendar\' to the main menu' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Menu settings' => '', - 'View mode' => '', + 'Calendar module configuration' => 'Ημερολόγιο διαμόρφωσης μονάδας', + 'Confirm Deletion' => 'Επιβεβαίωση Διαγραφής', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Προσθέτει ένα απόσπασμα με τις επερχόμενες εκδηλώσεις στον πίνακα ελέγχου των χρηστών σας.', + 'Basic' => 'Βασικό', + 'Calendar Configuration' => 'Διαμόρφωση ημερολογίου', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Δημιουργία νέου τύπου', + 'Default basic settings' => '', + 'Default participation settings' => 'Προεπιλεγμένες ρυθμίσεις συμμετοχής', + 'Delete' => 'Διαγραφή', + 'Do you really want to delte this event type?' => 'Θέλετε πραγματικά να διαγράψετε αυτόν τον τύπο εκδήλωσης;', + 'Event Type Configuration' => 'Διαμόρφωση τύπων εκδηλώσεων', + 'Full calendar' => '', + 'Half a year' => 'Μισό χρόνο', + 'Here you can configure default settings for new calendar events.' => 'Εδώ μπορείτε να ρυθμίσετε τις προεπιλεγμένες ρυθμίσεις για νέες εκδηλώσεις ημερολογίου.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Εδώ μπορείτε να ρυθμίσετε τις προεπιλεγμένες ρυθμίσεις για νέες εκδηλώσεις ημερολογίου. Αυτές οι ρυθμίσεις μπορούν να αντικατασταθούν στο επίπεδο χώρου/προφίλ.', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => 'Εδώ μπορείτε να διαχειριστείτε και να απενεργοποιήσετε διαφορετικά ημερολόγια.', + 'Here you can manage your event types.' => 'Εδώ μπορείτε να διαχειριστείτε τους τύπους εκδηλώσεων σας.', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Αν ενεργοποιηθεί, το στοιχείο του πάνω μενού ημερολογίου και το απόσπασμα του ταμπλό είναι ορατό μόνο για χρήστες που έχουν εγκατεστημένη την ενότητα ημερολογίου στο προφίλ τους.', + 'Include birthdays to dashboard snippet' => 'Ενσωμάτωση γενεθλίων στο απόσμασμα του dashboard', + 'Interval of upcoming events' => 'Διάστημα για επερχόμενες εκδηλώσεις', + 'Max event items' => 'Μέγιστα αντικείμενα εκδήλωσης', + 'Menu settings' => '', + 'Name' => 'Όνομα', + 'One month' => 'Ένας μήνας', + 'One week' => 'Μία εβδομάδα', + 'One year' => 'Ένας χρόνος', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Εμφανίζεται μόνο το στοιχείο του επάνω μενού και το απόσπασμα εάν η ενότητα είναι εγκατεστημένη στο προφίλ των χρηστών', + 'Participation' => 'Συμμετοχή', + 'Reminder' => 'Υπενθύμιση', + 'Reset' => 'Επαναφορά', + 'Show snippet' => 'Εμφάνιση αποσπάσματος', + 'There are currently no event types available.' => 'Προς το παρόν δεν υπάρχουν διαθέσιμοι τύποι εκδηλώσεων.', + 'Upcoming events snippet' => 'Απόσπασμα προσεχών εκδηλώσεων', + 'View mode' => '', ]; diff --git a/messages/el/mail.php b/messages/el/mail.php deleted file mode 100644 index 47ed2b58..00000000 --- a/messages/el/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Περιγραφή', - 'Location' => 'Τοποθεσία', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'Προβολή σε απευθείας σύνδεση: {url}', -); diff --git a/messages/el/notification.php b/messages/el/notification.php new file mode 100644 index 00000000..64271d3b --- /dev/null +++ b/messages/el/notification.php @@ -0,0 +1,25 @@ + 'Ημερολόγιο', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Περιγραφή', + 'Location' => 'Τοποθεσία', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Λήψη ειδοποιήσεων σχετικών με το ημερολόγιο.', + 'Starting' => '', + 'View Online: {url}' => 'Προβολή σε απευθείας σύνδεση: {url}', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => 'Ο/η {displayName} ακύρωσε εκδήλωση "{contentTitle}" στον χώρο {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => 'Ο/η {displayName} ακύρωσε εκδήλωση "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => 'Ο/η {displayName} επανάνοιξε εκδήλωση "{contentTitle}" στον χώρο {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => 'Ο/η {displayName} επανάνοιξε εκδήλωση "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => 'Ο/η {displayName} μόλις ενημέρωσε εκδήλωση "{contentTitle}" στον χώρο {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => 'Ο/η {displayName} μόλις ενημέρωσε εκδήλωση {contentTitle}.', +]; diff --git a/messages/el/notifications_CalendarNotificationCategory.php b/messages/el/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 8f02b30a..00000000 --- a/messages/el/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Ημερολόγιο', - 'Receive Calendar related Notifications.' => 'Λήψη ειδοποιήσεων σχετικών με το ημερολόγιο.', -); diff --git a/messages/el/notifications_views_CanceledEvent.php b/messages/el/notifications_views_CanceledEvent.php deleted file mode 100644 index 5056dca7..00000000 --- a/messages/el/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - 'Ο/η {displayName} ακύρωσε εκδήλωση "{contentTitle}" στον χώρο {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => 'Ο/η {displayName} ακύρωσε εκδήλωση "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => 'Ο/η {displayName} μόλις ενημέρωσε εκδήλωση "{contentTitle}" στον χώρο {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => 'Ο/η {displayName} μόλις ενημέρωσε εκδήλωση {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => 'Ο/η {displayName} επανάνοιξε εκδήλωση "{contentTitle}" στον χώρο {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => 'Ο/η {displayName} επανάνοιξε εκδήλωση "{contentTitle}".', -]; diff --git a/messages/el/permissions.php b/messages/el/permissions.php deleted file mode 100644 index 881ece03..00000000 --- a/messages/el/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Επιτρέπει στον χρήστη τη δημιουργία νέων καταχωρήσεων ημερολογίου', - 'Allows the user to edit/delete existing calendar entries' => 'Επιτρέπει στον χρήστη να επεξεργάζεται/διαγράφει τις υπάρχουσες καταχωρήσεις ημερολογίου', - 'Create entry' => 'Δημιουργία καταχώρησης', - 'Manage entries' => 'Διαχείριση καταχωρήσεων', -); diff --git a/messages/el/recurrence.php b/messages/el/recurrence.php deleted file mode 100644 index 1cf32227..00000000 --- a/messages/el/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Μετά (εμφανίσεις)', - 'Day' => 'Ημέρα', - 'Days' => 'Ημέρες', - 'Delete all events' => 'Διαγραφή όλων των συμβάντων', - 'Edit all events' => 'Επεξεργασία όλων των συμβάντων', - 'Edit this and following events' => 'Επεξεργαστείτε αυτό και τα επόμενα συμβάντα', - 'Edit this event' => 'Επεξεργαστείτε αυτό το συμβάν', - 'End' => 'Τέλος', - 'Invalid day of month given' => 'Μη έγκυρη ημέρα του μήνα', - 'Invalid frequency given' => 'Έχει δοθεί μη έγκυρη συχνότητα', - 'Invalid interval given' => 'Έχει δοθεί μη έγκυρο διάστημα', - 'Invalid week day selection' => 'Μη έγκυρη επιλογή ημέρας εβδομάδας', - 'Month' => 'Μήνας', - 'Monthly on day {dayOfMonth}' => 'Μηνιαία την ημέρα {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Μηνιαία στην {θέση} {dayOfWeek}', - 'Months' => 'Μήνες', - 'Never' => 'Ποτέ', - 'On date' => 'Τη μέρα', - 'Repeat every' => 'Επαναλάβετε κάθε', - 'This event does not support recurrent events' => 'Αυτό το γεγονός δεν υποστηρίζει επαναλαμβανόμενα συμβάντα', - 'Week' => 'Εβδομάδα', - 'Weeks' => 'Εβδομάδες', - 'Year' => 'Ετος', - 'Years' => 'Χρόνια', - 'first' => 'πρώτα', - 'forth' => 'Εμπρός', - 'last' => 'τελευταίο', - 'on weekdays' => 'τις καθημερινές', - 'second' => 'δεύτερο', - 'third' => 'τρίτο', -); diff --git a/messages/el/reminder.php b/messages/el/reminder.php deleted file mode 100644 index 4c9c938d..00000000 --- a/messages/el/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - 'Προσαρμοσμένη υπενθύμιση', - 'Day' => 'Ημέρα', - 'Default reminder settings' => 'Προεπιλεγμένες ρυθμίσεις υπενθύμισης', - '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' => 'Ωρα', - 'No reminder' => 'Χωρίς υπενθύμιση', - 'Upcoming {type}' => 'Προσεχές {type}', - 'Upcoming {type}: {title}' => 'Προσεχές {type}: {title}', - 'Use default reminder' => 'Χρήση προεπιλεγμένης υπενθύμισης', - 'Week' => 'Εβδομάδα', - 'You have an {type} coming up' => 'Έχεις {type} που έρχεται', - 'You have an {type} coming up: {title}' => 'Έχεις {type} που έρχεται: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Ρυθμίσεις υπενθύμισης σας για το συμβάν: \'{title}\'', - 'Minute' => '', -]; diff --git a/messages/el/settings.php b/messages/el/settings.php deleted file mode 100644 index cb7de8fa..00000000 --- a/messages/el/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Βασικό', - 'Full calendar' => '', - 'Participation' => 'Συμμετοχή', - 'Reminder' => 'Υπενθύμιση', -); diff --git a/messages/el/views.php b/messages/el/views.php new file mode 100644 index 00000000..450e7a87 --- /dev/null +++ b/messages/el/views.php @@ -0,0 +1,59 @@ + '%displayName% δεν μπορεί να παρευρεθεί %contentTitle%.', + '%displayName% created a new %contentTitle%.' => 'Ο/η %displayName% δημιούργησε ένα νέο %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% παρακολουθεί %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %contentTitle%.' => '%displayName% μπορεί να παρευρεθεί %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' => 'Ο καθένας μπορεί να συμμετάσχει', + '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' => '', +]; diff --git a/messages/el/views_activities_EntryCreated.php b/messages/el/views_activities_EntryCreated.php deleted file mode 100644 index ad7b785d..00000000 --- a/messages/el/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - 'Ο/η %displayName% δημιούργησε ένα νέο %contentTitle%.', -); diff --git a/messages/el/views_activities_EntryResponse.php b/messages/el/views_activities_EntryResponse.php deleted file mode 100644 index 1f51ce5c..00000000 --- a/messages/el/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '%displayName% δεν μπορεί να παρευρεθεί %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% παρακολουθεί %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% μπορεί να παρευρεθεί %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '', -]; diff --git a/messages/el/views_container-config_typesConfig.php b/messages/el/views_container-config_typesConfig.php deleted file mode 100644 index 0b8cef14..00000000 --- a/messages/el/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Δημιουργία νέου τύπου εκδήλωσης', - 'Edit calendar' => 'Επεξεργασία ημερολογίου', - 'Edit event type' => 'Επεξεργασία τύπου εκδήλωσης', -); diff --git a/messages/el/views_entry_edit.php b/messages/el/views_entry_edit.php deleted file mode 100644 index b15a5d93..00000000 --- a/messages/el/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => 'Επεξεργασία Επαναλαμβανόμενης Εκδήλωσης', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Συμμετοχή', - 'Back' => 'Πίσω', - 'Close' => 'Κλείσιμο', - 'Declined' => '', - 'Everybody can participate' => 'Ο καθένας μπορεί να συμμετάσχει', - 'General' => 'Γενικά', - 'Invited' => '', - 'Next' => 'Επόμενο', - 'No participants' => 'Δεν υπάρχουν συμμετέχοντες', - 'Only by Invite' => '', - 'Participants' => 'Συμμετέχοντες', - 'Recurrence' => 'Επανάληψη', - 'Reminder' => 'Υπενθύμιση', - 'Select event type...' => 'Επιλέξτε τύπο εκδήλωσης ...', - 'Settings' => 'Ρυθμίσεις', - 'Title' => 'Τίτλος', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/el/views_entry_view.php b/messages/el/views_entry_view.php deleted file mode 100644 index c30e95d7..00000000 --- a/messages/el/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Επιπλέον Πληροφορίες', - 'All' => 'Όλα', - 'Attend' => 'Συμμετοχή', - 'Decline' => 'Άρνηση', - 'Filter' => 'Φίλτρο', - 'Maybe' => 'Ίσως', - 'Participants' => 'Συμμετέχοντες', - 'You are invited, please select your role:' => '', -); diff --git a/messages/el/views_global_index.php b/messages/el/views_global_index.php deleted file mode 100644 index 664272f3..00000000 --- a/messages/el/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Ακολουθούμενοι χώροι', - 'Followed users' => 'Ακολουθούμενοι χρήστες', - 'I\'m attending' => 'Παρακολουθώ', - 'My events' => 'Οι εκδηλώσεις μου', - 'My profile' => 'Το προφίλ μου', - 'My spaces' => 'Οι χώροι μου', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/el/widgets_GlobalConfigMenu.php b/messages/el/widgets_GlobalConfigMenu.php deleted file mode 100644 index bcfe155c..00000000 --- a/messages/el/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Ημερολόγια', - 'Defaults' => 'Προεπιλογές', - 'Event Types' => 'Τύποι εκδηλώσεων', - 'Menu' => 'Μενού', - 'Snippet' => 'Απόσπασμα', -); diff --git a/messages/el/widgets_views_nextEvents.php b/messages/el/widgets_views_nextEvents.php deleted file mode 100644 index c73e716a..00000000 --- a/messages/el/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Ανερχόμενη εκδήλωση', - 'Open Calendar' => 'Άνοιγμα ημερολογίου', -); diff --git a/messages/el/widgets_views_participants.php b/messages/el/widgets_views_participants.php deleted file mode 100644 index ef72816b..00000000 --- a/messages/el/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Συμμετέχοντες', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/en-GB/views.php b/messages/en-GB/views.php new file mode 100644 index 00000000..d8bb3e02 --- /dev/null +++ b/messages/en-GB/views.php @@ -0,0 +1,38 @@ + '', + '%displayName% created a new %contentTitle%.' => '', + '%displayName% maybe attends to %contentTitle%.' => '', + '%displayName% not attends to %contentTitle%.' => '', + ':count attending' => '', + ':count declined' => '', + ':count maybe' => '', + 'Create event' => '', + 'Edit event' => '', + 'Filter events' => '', + 'Note: This event will be created on your profile. To create a space event open the calendar on the desired space.' => '', + 'Select calendars' => '', + 'Upcoming events ' => '', + 'Already responded' => '', + 'Attend' => '', + 'Close' => '', + 'Decline' => '', + 'Delete' => '@@@@', + 'Description' => '', + 'Edit event' => '', + 'End Date/Time' => '', + 'Everybody can participate' => '', + 'Followed spaces' => '', + 'Followed users' => '', + 'I´m attending' => '', + 'Maybe' => '', + 'My events' => '', + 'My profile' => '', + 'My spaces' => '', + 'No participants' => '', + 'Not responded yet' => '', + 'Participants' => '', + 'Participants:' => '', + 'Save' => '', + 'Title' => '', +]; diff --git a/messages/en-GB/views_activities_EntryCreated.php b/messages/en-GB/views_activities_EntryCreated.php deleted file mode 100644 index c7c665d4..00000000 --- a/messages/en-GB/views_activities_EntryCreated.php +++ /dev/null @@ -1,21 +0,0 @@ - '', -); diff --git a/messages/en-GB/views_activities_EntryResponse.php b/messages/en-GB/views_activities_EntryResponse.php deleted file mode 100644 index a5a7adc9..00000000 --- a/messages/en-GB/views_activities_EntryResponse.php +++ /dev/null @@ -1,23 +0,0 @@ - '', - '%displayName% maybe attends to %contentTitle%.' => '', - '%displayName% not attends to %contentTitle%.' => '', -); diff --git a/messages/en-GB/views_entry_edit.php b/messages/en-GB/views_entry_edit.php deleted file mode 100644 index 9b148224..00000000 --- a/messages/en-GB/views_entry_edit.php +++ /dev/null @@ -1,32 +0,0 @@ -Create event' => '', - 'Edit event' => '', - 'Note: This event will be created on your profile. To create a space event open the calendar on the desired space.' => '', - 'Close' => '', - 'Description' => '', - 'End Date/Time' => '', - 'Everybody can participate' => '', - 'No participants' => '', - 'Participants' => '', - 'Save' => '', - 'Title' => '', - 'Delete' => '@@@@', -]; diff --git a/messages/en-GB/views_entry_view.php b/messages/en-GB/views_entry_view.php deleted file mode 100644 index a2b347b7..00000000 --- a/messages/en-GB/views_entry_view.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Decline' => '', - 'Edit event' => '', - 'Maybe' => '', -]; diff --git a/messages/en-GB/views_global_index.php b/messages/en-GB/views_global_index.php deleted file mode 100644 index 6bd4328e..00000000 --- a/messages/en-GB/views_global_index.php +++ /dev/null @@ -1,30 +0,0 @@ -Filter events' => '', - 'Select calendars' => '', - 'Already responded' => '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I´m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => '', - 'Not responded yet' => '', -); diff --git a/messages/en-GB/widgets_views_nextEvents.php b/messages/en-GB/widgets_views_nextEvents.php deleted file mode 100644 index f652233c..00000000 --- a/messages/en-GB/widgets_views_nextEvents.php +++ /dev/null @@ -1,21 +0,0 @@ -Upcoming events ' => '', -); diff --git a/messages/en-GB/widgets_views_participants.php b/messages/en-GB/widgets_views_participants.php deleted file mode 100644 index 65b632b9..00000000 --- a/messages/en-GB/widgets_views_participants.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - ':count declined' => '', - ':count maybe' => '', - 'Participants:' => '', -); diff --git a/messages/es/activities.php b/messages/es/activities.php deleted file mode 100644 index d547cebd..00000000 --- a/messages/es/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Calendario: Invitación', - 'Calendar: attend' => 'Calendario: asistir', - 'Calendar: decline' => 'Calendario: rechazar', - 'Calendar: maybe' => 'Calendario: quizá', - 'Whenever someone declines to participate in an event.' => 'Cuando alguien rechaza participar en un evento.', - 'Whenever someone invites to participate in an event.' => 'Cuando alguien invita a participar en un evento.', - 'Whenever someone may be participating in an event.' => 'Cuando alguien quizá participe en un evento.', - 'Whenever someone participates in an event.' => 'Cuando alguien participa en un evento.', -); diff --git a/messages/es/base.php b/messages/es/base.php index 175e6154..b3992050 100644 --- a/messages/es/base.php +++ b/messages/es/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Añadir calendario del perfil', 'Choose target calendar' => 'Elige calendario', 'Reminder settings' => 'Ajustes de Recordatorio', @@ -9,24 +9,37 @@ '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!', @@ -40,21 +53,40 @@ '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.', + '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.' => 'Aquí puedes configurar los ajustes por defecto de los recordatorios para este evento. Los usuarios pueden sobrescribir dichos ajustes a través del enlace de Establecer recordatorio.', + 'Hour' => 'Hora', '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}', + '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', @@ -64,6 +96,7 @@ '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', @@ -72,23 +105,41 @@ '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}".', -); +]; diff --git a/messages/es/calendar.php b/messages/es/calendar.php deleted file mode 100644 index 3d1876dd..00000000 --- a/messages/es/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Día', - 'List' => 'Lista', - 'Month' => 'Mes', - 'Today' => 'Hoy', - 'Week' => 'Semana', - 'Year' => 'Año', -); diff --git a/messages/es/config.php b/messages/es/config.php index bad6955b..53b79dfd 100644 --- a/messages/es/config.php +++ b/messages/es/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => 'Configuración del módulo de Calendario', 'Confirm Deletion' => 'Confirme borrado', 'Add \'Calendar\' to the main menu' => 'Añadir «Calendario» al menú principal', 'Adds an snippet with upcoming events to your users dashboard.' => 'Añade un snippet con próximos eventos al panel de control de sus usuarios.', + 'Basic' => 'Básica', 'Calendar Configuration' => 'Configuración de Calendario', 'Calendar default view mode settings' => 'Configuración del modo de vista por defecto del calendario', 'Create new type' => 'Crear tipo nuevo', @@ -12,6 +13,7 @@ 'Delete' => 'Borrar', 'Do you really want to delte this event type?' => '¿Está seguro de querer borrar este tipo de evento?', 'Event Type Configuration' => 'Configuración de tipo de evento', + 'Full calendar' => 'Calendario completo', 'Half a year' => 'Medio año', 'Here you can configure default settings for new calendar events.' => 'Aquí puede configurar valores por defecto para nuevos eventos de calendario.', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Aquí puede configurar valores por defecto para nuevos eventos de calendario. Estos valores pueden modificarse en los espacios/perfiles.', @@ -29,9 +31,11 @@ 'One week' => 'Una semana', 'One year' => 'Un año', 'Only show top menu item and snippet if the module is installed in the users profile' => 'Mostrar sólo el elemento y el fragmento del menú superior si el módulo está instalado en el perfil del usuario', + 'Participation' => 'Participación', + 'Reminder' => 'Recordatorio', 'Reset' => 'Recomponer', 'Show snippet' => 'Mostrar snippet', 'There are currently no event types available.' => 'Ahora mismo no hay tipos de evento disponibles.', 'Upcoming events snippet' => 'Snippet de próximos eventos', 'View mode' => 'Modo de vista', -); +]; diff --git a/messages/es/mail.php b/messages/es/mail.php deleted file mode 100644 index e8a3685c..00000000 --- a/messages/es/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Descripción', - 'Location' => 'Ubicación', - 'Organizer' => 'Organizador', - 'Participants info' => 'Información para los participantes', - 'Starting' => 'Comienza', - 'View Online: {url}' => 'Ver en línea: {url}', -); diff --git a/messages/es/notification.php b/messages/es/notification.php new file mode 100644 index 00000000..9fe09557 --- /dev/null +++ b/messages/es/notification.php @@ -0,0 +1,25 @@ + 'Calendario', + 'Calendar: Invite' => 'Calendario: Invitación', + 'Calendar: attend' => 'Calendario: asistir', + 'Calendar: decline' => 'Calendario: rechazar', + 'Calendar: maybe' => 'Calendario: quizá', + 'Description' => 'Descripción', + 'Location' => 'Ubicación', + 'Organizer' => 'Organizador', + 'Participants info' => 'Información para los participantes', + 'Receive Calendar related Notifications.' => 'Recibir notificaciones del Calendario.', + 'Starting' => 'Comienza', + 'View Online: {url}' => 'Ver en línea: {url}', + 'Whenever someone declines to participate in an event.' => 'Cuando alguien rechaza participar en un evento.', + 'Whenever someone invites to participate in an event.' => 'Cuando alguien invita a participar en un evento.', + 'Whenever someone may be participating in an event.' => 'Cuando alguien quizá participe en un evento.', + 'Whenever someone participates in an event.' => 'Cuando alguien participa en un evento.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha cancelado el evento "{contentTitle}" del espacio {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} ha cancelado el evento "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha reabierto el evento "{contentTitle}" del espacio {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} ha reabierto el evento "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha actualizado el evento "{contentTitle}" del espacio {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} ha actualizado el evento {contentTitle}.', +]; diff --git a/messages/es/notifications_CalendarNotificationCategory.php b/messages/es/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 9b22a2ab..00000000 --- a/messages/es/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Calendario', - 'Receive Calendar related Notifications.' => 'Recibir notificaciones del Calendario.', -); diff --git a/messages/es/notifications_views_CanceledEvent.php b/messages/es/notifications_views_CanceledEvent.php deleted file mode 100644 index 8b7cf764..00000000 --- a/messages/es/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} ha cancelado el evento "{contentTitle}" del espacio {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} ha cancelado el evento "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha actualizado el evento "{contentTitle}" del espacio {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} ha actualizado el evento {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha reabierto el evento "{contentTitle}" del espacio {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} ha reabierto el evento "{contentTitle}".', -]; diff --git a/messages/es/permissions.php b/messages/es/permissions.php deleted file mode 100644 index 111aec1a..00000000 --- a/messages/es/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Crear entrada', - 'Manage entries' => 'Administrar entradas', -); diff --git a/messages/es/recurrence.php b/messages/es/recurrence.php deleted file mode 100644 index 60ea5e58..00000000 --- a/messages/es/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Después (ocurrencias)', - 'Day' => 'Día', - 'Days' => 'Días', - 'Delete all events' => 'Eliminar todos los eventos', - 'Edit all events' => 'Editar todos los eventos', - 'Edit this and following events' => 'Editar este y los eventos siguientes', - 'Edit this event' => 'Editar este evento', - 'End' => 'Fin', - 'Invalid day of month given' => 'Día inválido del mes entregado', - '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', - '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', - 'On date' => 'El día', - 'Repeat every' => 'Repetir cada', - 'This event does not support recurrent events' => 'Este evento no soporta eventos recurrentes', - 'Week' => 'Semana', - 'Weeks' => 'Semanas', - 'Year' => 'Año', - 'Years' => 'Años', - 'first' => 'primer', - 'forth' => 'cuarto', - 'last' => 'último', - 'on weekdays' => 'los fines de semana', - 'second' => 'segundo', - 'third' => 'tercer', -); diff --git a/messages/es/reminder.php b/messages/es/reminder.php deleted file mode 100644 index 0238f231..00000000 --- a/messages/es/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Recordatorio personalizado', - 'Day' => 'Día', - 'Default reminder settings' => 'Ajustes por defecto del recordatorio', - '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.' => 'Aquí puedes configurar los ajustes por defecto de los recordatorios para este evento. Los usuarios pueden sobrescribir dichos ajustes a través del enlace de Establecer recordatorio.', - 'Hour' => 'Hora', - 'Minute' => 'Minuto', - 'No reminder' => 'Sin recordatorio', - 'Upcoming {type}' => 'Próximo {type}', - 'Upcoming {type}: {title}' => 'Próximo {type}: {title}', - 'Use default reminder' => 'Usar recordatorio por defecto.', - 'Week' => 'Semana', - '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}', - 'Your reminder settings for event: \'{title}\'' => 'Tus ajustes de recordatorio para este evento: \'{title}\'', -); diff --git a/messages/es/settings.php b/messages/es/settings.php deleted file mode 100644 index 2ff8db3b..00000000 --- a/messages/es/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Básica', - 'Full calendar' => 'Calendario completo', - 'Participation' => 'Participación', - 'Reminder' => 'Recordatorio', -); diff --git a/messages/es/views.php b/messages/es/views.php new file mode 100644 index 00000000..8bc2ef33 --- /dev/null +++ b/messages/es/views.php @@ -0,0 +1,59 @@ + '%displayName% no puede asistir a %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% ha creado un nuevo %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% está asistiendo a %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% está invitado a %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% puede que asista a %contentTitle%.', + ':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', + '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', +]; diff --git a/messages/es/views_activities_EntryCreated.php b/messages/es/views_activities_EntryCreated.php deleted file mode 100644 index daebc008..00000000 --- a/messages/es/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% ha creado un nuevo %contentTitle%.', -); diff --git a/messages/es/views_activities_EntryResponse.php b/messages/es/views_activities_EntryResponse.php deleted file mode 100644 index ab712dc2..00000000 --- a/messages/es/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% no puede asistir a %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% está asistiendo a %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% está invitado a %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% puede que asista a %contentTitle%.', -); diff --git a/messages/es/views_container-config_typesConfig.php b/messages/es/views_container-config_typesConfig.php deleted file mode 100644 index 207ce892..00000000 --- a/messages/es/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Crear nuevo tipo de evento', - 'Edit calendar' => 'Editar calendario', - 'Edit event type' => 'Editar tipo de evento', -); diff --git a/messages/es/views_entry_edit.php b/messages/es/views_entry_edit.php deleted file mode 100644 index cb6467b7..00000000 --- a/messages/es/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Crear evento', - 'Edit Event' => 'Editar evento', - 'Edit recurring event' => 'Editar evento recurrente', - 'Are you sure want to remove the participant from the event?' => '¿Estás seguro de que quieres eliminar a este participante del evento?', - 'Attending' => 'Asistiendo', - 'Back' => 'Volver', - 'Close' => 'Cerrar', - 'Declined' => 'Rechazar', - 'Everybody can participate' => 'Todo el mundo puede participar', - 'General' => 'General', - 'Invited' => 'Invitado', - 'Next' => 'Siguiente', - 'No participants' => 'Sin participantes', - 'Only by Invite' => 'Sólo mediante invitación', - 'Participants' => 'Participantes', - 'Recurrence' => 'Recurrencia', - 'Reminder' => 'Recordatorio', - 'Select event type...' => 'Seleccionar tipo de evento...', - 'Settings' => 'Configuración', - 'Title' => 'Título', - 'Undecided' => 'Indeciso', - '{count} Participants' => '{count} participantes', -); diff --git a/messages/es/views_entry_view.php b/messages/es/views_entry_view.php deleted file mode 100644 index 734ffc4b..00000000 --- a/messages/es/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Información Adicional', - 'All' => 'Todos', - 'Attend' => 'Asistir', - 'Decline' => 'No asistir', - 'Filter' => 'Filtrar', - 'Maybe' => 'Tal vez', - 'Participants' => 'Participantes', - 'You are invited, please select your role:' => 'Estas invitado. Por favor elige tu papel:', -); diff --git a/messages/es/views_global_index.php b/messages/es/views_global_index.php deleted file mode 100644 index e21de111..00000000 --- a/messages/es/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Filtrar eventos', - 'Followed spaces' => 'Espacios seguidos', - 'Followed users' => 'Usuarios seguidos', - 'I\'m attending' => 'Asistiré', - 'My events' => 'Mis eventos', - 'My profile' => 'Mi perfil', - 'My spaces' => 'Mis espacios', - 'Select calendars' => 'Seleccionar calendarios', -); diff --git a/messages/es/widgets_GlobalConfigMenu.php b/messages/es/widgets_GlobalConfigMenu.php deleted file mode 100644 index e19bee1a..00000000 --- a/messages/es/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Calendarios', - 'Defaults' => 'Valores por defecto', - 'Event Types' => 'Tipos de evento', - 'Menu' => 'Menú', - 'Snippet' => 'Snippet', -); diff --git a/messages/es/widgets_views_nextEvents.php b/messages/es/widgets_views_nextEvents.php deleted file mode 100644 index 2e5eb676..00000000 --- a/messages/es/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Eventos próximos', - 'Open Calendar' => 'Calendario abierto', -); diff --git a/messages/es/widgets_views_participants.php b/messages/es/widgets_views_participants.php deleted file mode 100644 index 2c1a071b..00000000 --- a/messages/es/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count van a asistir', - ':count Declined' => ':count han rechazado asistir', - ':count Invited' => ':count invitados', - ':count Undecided' => ':count están indecisos', - 'Participants' => 'Participantes', -); diff --git a/messages/et/activities.php b/messages/et/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/et/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/et/base.php b/messages/et/base.php index 5197f1bb..28be3708 100644 --- a/messages/et/base.php +++ b/messages/et/base.php @@ -1,95 +1,145 @@ 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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'Next' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Title' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'disabled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/et/calendar.php b/messages/et/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/et/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/et/config.php b/messages/et/config.php index b40a8327..454bbe1a 100644 --- a/messages/et/config.php +++ b/messages/et/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Delete' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/et/mail.php b/messages/et/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/et/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/et/notification.php b/messages/et/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/et/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/et/notifications_CalendarNotificationCategory.php b/messages/et/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 32f067f4..00000000 --- a/messages/et/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,6 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/et/notifications_views_CanceledEvent.php b/messages/et/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/et/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/et/permissions.php b/messages/et/permissions.php deleted file mode 100644 index 139867e9..00000000 --- a/messages/et/permissions.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/et/recurrence.php b/messages/et/recurrence.php deleted file mode 100644 index 5fe83811..00000000 --- a/messages/et/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/et/reminder.php b/messages/et/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/et/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/et/settings.php b/messages/et/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/et/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/et/views.php b/messages/et/views.php new file mode 100644 index 00000000..47894e6f --- /dev/null +++ b/messages/et/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => '', +]; diff --git a/messages/et/views_activities_EntryResponse.php b/messages/et/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/et/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/et/views_container-config_typesConfig.php b/messages/et/views_container-config_typesConfig.php deleted file mode 100644 index 0bfdc5f2..00000000 --- a/messages/et/views_container-config_typesConfig.php +++ /dev/null @@ -1,7 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/et/views_entry_edit.php b/messages/et/views_entry_edit.php deleted file mode 100644 index 33789b49..00000000 --- a/messages/et/views_entry_edit.php +++ /dev/null @@ -1,26 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '', - 'Close' => '', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '', - 'Invited' => '', - 'Next' => '', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => '', - 'Title' => '', - 'Undecided' => '', - '{count} Participants' => '', -]; diff --git a/messages/et/views_entry_view.php b/messages/et/views_entry_view.php deleted file mode 100644 index 3701c09e..00000000 --- a/messages/et/views_entry_view.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -]; diff --git a/messages/et/views_global_index.php b/messages/et/views_global_index.php deleted file mode 100644 index 42d34833..00000000 --- a/messages/et/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/et/widgets_GlobalConfigMenu.php b/messages/et/widgets_GlobalConfigMenu.php deleted file mode 100644 index 5f306be5..00000000 --- a/messages/et/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '', - 'Snippet' => '', -]; diff --git a/messages/et/widgets_views_nextEvents.php b/messages/et/widgets_views_nextEvents.php deleted file mode 100644 index f8c6da69..00000000 --- a/messages/et/widgets_views_nextEvents.php +++ /dev/null @@ -1,6 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/et/widgets_views_participants.php b/messages/et/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/et/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/eu/activities.php b/messages/eu/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/eu/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/eu/base.php b/messages/eu/base.php index 4ee3c375..f3073c07 100644 --- a/messages/eu/base.php +++ b/messages/eu/base.php @@ -1,5 +1,5 @@ Add profile calendar' => '', 'Choose target calendar' => '', 'Reminder settings' => '', @@ -9,24 +9,37 @@ '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' => 'Gogorarazpen pertsonalizatua', + 'Day' => 'Eguna', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', 'Deleted' => 'Ezabatua', 'Description' => 'Deskribapena', '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!' => '', @@ -40,21 +53,40 @@ 'Files' => 'Fitxategiak', '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', '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' => 'Gonbidatu', 'Invited: {users}' => '', + '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' => '', @@ -64,6 +96,7 @@ 'Public' => 'Publikoa', 'Recurring' => '', 'Reopen Event' => '', + 'Repeat every' => '', 'Saturday' => '', 'Set reminder' => '', 'Start Date' => '', @@ -72,23 +105,41 @@ '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', 'User birthdays' => '', 'Wednesday' => '', + 'Week' => 'Astea', + 'Weeks' => '', + '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' => '', + '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}".' => '', -); +]; diff --git a/messages/eu/calendar.php b/messages/eu/calendar.php deleted file mode 100644 index 665f7cbe..00000000 --- a/messages/eu/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Eguna', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => 'Astea', - 'Year' => '', -); diff --git a/messages/eu/config.php b/messages/eu/config.php index 64f92005..ce585e39 100644 --- a/messages/eu/config.php +++ b/messages/eu/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => '', 'Confirm Deletion' => '', 'Add \'Calendar\' to the main menu' => '', 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'Oinarrizkoa', 'Calendar Configuration' => '', 'Calendar default view mode settings' => '', 'Create new type' => '', @@ -12,6 +13,7 @@ 'Delete' => 'Ezabatu', 'Do you really want to delte this event type?' => '', 'Event Type Configuration' => '', + 'Full calendar' => '', 'Half a year' => '', 'Here you can configure default settings for new calendar events.' => '', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', @@ -29,9 +31,11 @@ 'One week' => '', 'One year' => '', 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => 'Gogorarazpena', 'Reset' => '', 'Show snippet' => '', 'There are currently no event types available.' => '', 'Upcoming events snippet' => '', 'View mode' => '', -); +]; diff --git a/messages/eu/mail.php b/messages/eu/mail.php deleted file mode 100644 index d55a054f..00000000 --- a/messages/eu/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Deskribapena', - 'Location' => 'Kokapena', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/eu/notification.php b/messages/eu/notification.php new file mode 100644 index 00000000..1a5d6b76 --- /dev/null +++ b/messages/eu/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Deskribapena', + 'Location' => 'Kokapena', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/eu/notifications_CalendarNotificationCategory.php b/messages/eu/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 32f067f4..00000000 --- a/messages/eu/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,6 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/eu/notifications_views_CanceledEvent.php b/messages/eu/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/eu/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/eu/permissions.php b/messages/eu/permissions.php deleted file mode 100644 index 139867e9..00000000 --- a/messages/eu/permissions.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/eu/recurrence.php b/messages/eu/recurrence.php deleted file mode 100644 index 311b6899..00000000 --- a/messages/eu/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - '', - 'Day' => 'Eguna', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => 'Inoiz', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => 'Astea', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -); diff --git a/messages/eu/reminder.php b/messages/eu/reminder.php deleted file mode 100644 index dcf9df30..00000000 --- a/messages/eu/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Gogorarazpen pertsonalizatua', - 'Day' => 'Eguna', - 'Default reminder settings' => '', - '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', - 'Minute' => '', - 'No reminder' => 'Gogorarazpenik gabe', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => 'Erabili abisu lehenetsia', - 'Week' => 'Astea', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -); diff --git a/messages/eu/settings.php b/messages/eu/settings.php deleted file mode 100644 index 71bc3e3e..00000000 --- a/messages/eu/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Oinarrizkoa', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => 'Gogorarazpena', -); diff --git a/messages/eu/views.php b/messages/eu/views.php new file mode 100644 index 00000000..5e7f5ec2 --- /dev/null +++ b/messages/eu/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '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' => '', + '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' => '', +]; diff --git a/messages/eu/views_activities_EntryResponse.php b/messages/eu/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/eu/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/eu/views_container-config_typesConfig.php b/messages/eu/views_container-config_typesConfig.php deleted file mode 100644 index 0bfdc5f2..00000000 --- a/messages/eu/views_container-config_typesConfig.php +++ /dev/null @@ -1,7 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/eu/views_entry_edit.php b/messages/eu/views_entry_edit.php deleted file mode 100644 index c54d1b13..00000000 --- a/messages/eu/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'Itzuli', - 'Close' => 'Itxi', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => 'Orokorra', - 'Invited' => '', - 'Next' => 'Hurrengoa', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => 'Gogorarazpena', - 'Select event type...' => '', - 'Settings' => 'Ezarpenak', - 'Title' => 'Izenburua', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/eu/views_entry_view.php b/messages/eu/views_entry_view.php deleted file mode 100644 index d85fa73c..00000000 --- a/messages/eu/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Denak', - 'Attend' => '', - 'Decline' => 'Ez onartu', - 'Filter' => 'Iragazkia', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -); diff --git a/messages/eu/views_global_index.php b/messages/eu/views_global_index.php deleted file mode 100644 index b9625c6f..00000000 --- a/messages/eu/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => 'Nire espazioak', - 'Select calendars' => '', -); diff --git a/messages/eu/widgets_GlobalConfigMenu.php b/messages/eu/widgets_GlobalConfigMenu.php deleted file mode 100644 index 82b19197..00000000 --- a/messages/eu/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'Menua', - 'Snippet' => '', -); diff --git a/messages/eu/widgets_views_nextEvents.php b/messages/eu/widgets_views_nextEvents.php deleted file mode 100644 index f8c6da69..00000000 --- a/messages/eu/widgets_views_nextEvents.php +++ /dev/null @@ -1,6 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/eu/widgets_views_participants.php b/messages/eu/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/eu/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/fa-IR/activities.php b/messages/fa-IR/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/fa-IR/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/fa-IR/base.php b/messages/fa-IR/base.php index cfbb0aac..9a118fb2 100644 --- a/messages/fa-IR/base.php +++ b/messages/fa-IR/base.php @@ -1,95 +1,145 @@ 'یک تقویم برای رویدادهای خصوصی و یا عمومی به پروفایل شما و منوی اصلی اضافهمیکند.', - 'Adds an event calendar to this space.' => 'به این انجمن یک تقویم رویداد اضافهمیکند. ', - 'All Day' => 'تمام روز', - 'Birthday' => 'تولد', - 'Calendar' => 'تقویم', - 'Description' => 'توضیحات', - 'Edit' => 'ویرایش', - 'Email' => 'ايميل', - 'Enable' => 'فعال', - 'End Date' => 'تاریخ پایان', - 'End Time' => 'پایان زمان', - 'End time must be after start time!' => 'تاریخ پایان باید پس از تاریخ آغاز باشد!', - 'Event' => 'رویداد', - 'Event not found!' => 'رویداد پیدا نشد!', - 'Files' => 'فايل ها', - 'ID' => 'شناسه', - 'Invite' => 'دعوت', - 'Location' => 'جایگاه', - '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' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter by types' => '', - 'Friday' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invited: {users}' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - '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.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/fa-IR/calendar.php b/messages/fa-IR/calendar.php deleted file mode 100644 index 9d9427e3..00000000 --- a/messages/fa-IR/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'فهرست', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/fa-IR/config.php b/messages/fa-IR/config.php index 9ec51c55..6f49c6ac 100644 --- a/messages/fa-IR/config.php +++ b/messages/fa-IR/config.php @@ -1,38 +1,41 @@ 'حذف', - 'Name' => 'نام', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'پایه', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'حذف', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'نام', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/fa-IR/mail.php b/messages/fa-IR/mail.php deleted file mode 100644 index fbc25513..00000000 --- a/messages/fa-IR/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'توضیحات', - 'Location' => 'جایگاه', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/fa-IR/notification.php b/messages/fa-IR/notification.php new file mode 100644 index 00000000..c23b0688 --- /dev/null +++ b/messages/fa-IR/notification.php @@ -0,0 +1,25 @@ + 'تقویم', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'توضیحات', + 'Location' => 'جایگاه', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/fa-IR/notifications_CalendarNotificationCategory.php b/messages/fa-IR/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 507e8925..00000000 --- a/messages/fa-IR/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'تقویم', - 'Receive Calendar related Notifications.' => '', -); diff --git a/messages/fa-IR/notifications_views_CanceledEvent.php b/messages/fa-IR/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/fa-IR/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/fa-IR/permissions.php b/messages/fa-IR/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/fa-IR/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/fa-IR/recurrence.php b/messages/fa-IR/recurrence.php deleted file mode 100644 index 920760b2..00000000 --- a/messages/fa-IR/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'این رویداد را به پایان برسان', - 'Never' => 'هرگز', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/fa-IR/reminder.php b/messages/fa-IR/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/fa-IR/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/fa-IR/settings.php b/messages/fa-IR/settings.php deleted file mode 100644 index a3c4a932..00000000 --- a/messages/fa-IR/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'پایه', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/fa-IR/views.php b/messages/fa-IR/views.php new file mode 100644 index 00000000..0fa86a2f --- /dev/null +++ b/messages/fa-IR/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '%contentTitle% %displayName% را تولید کرد.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => 'همه میتوانند مشارکت کنند', + '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' => '', +]; diff --git a/messages/fa-IR/views_activities_EntryCreated.php b/messages/fa-IR/views_activities_EntryCreated.php deleted file mode 100644 index 0ad6c023..00000000 --- a/messages/fa-IR/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%contentTitle% %displayName% را تولید کرد.', -); diff --git a/messages/fa-IR/views_activities_EntryResponse.php b/messages/fa-IR/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/fa-IR/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/fa-IR/views_container-config_typesConfig.php b/messages/fa-IR/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/fa-IR/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/fa-IR/views_entry_edit.php b/messages/fa-IR/views_entry_edit.php deleted file mode 100644 index cc7a0350..00000000 --- a/messages/fa-IR/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'بازگشت', - 'Close' => 'بستن', - 'Declined' => '', - 'Everybody can participate' => 'همه میتوانند مشارکت کنند', - 'General' => 'کلی', - 'Invited' => '', - 'Next' => 'بعدی', - 'No participants' => 'مشارکتکنندهای وجود ندارد', - 'Only by Invite' => '', - 'Participants' => 'مشارکتکنندهها', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'تنطیمات', - 'Title' => 'عنوان', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/fa-IR/views_entry_view.php b/messages/fa-IR/views_entry_view.php deleted file mode 100644 index e5bddd5f..00000000 --- a/messages/fa-IR/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'همه', - 'Attend' => 'حضور', - 'Decline' => 'انصراف', - 'Filter' => 'پالایه', - 'Maybe' => 'احتمالا', - 'Participants' => 'مشارکتکنندهها', - 'You are invited, please select your role:' => '', -); diff --git a/messages/fa-IR/views_global_index.php b/messages/fa-IR/views_global_index.php deleted file mode 100644 index ad151e29..00000000 --- a/messages/fa-IR/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'انجمنهای دنبالشده', - 'Followed users' => 'کاربران دنبالشده', - 'I\'m attending' => 'حضور خواهمداشت', - 'My events' => 'رویدادهای من', - 'My profile' => 'پروفایل من', - 'My spaces' => 'انجمنهای من', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/fa-IR/widgets_GlobalConfigMenu.php b/messages/fa-IR/widgets_GlobalConfigMenu.php deleted file mode 100644 index c413261d..00000000 --- a/messages/fa-IR/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => 'مقادیر پیشفرض', - 'Event Types' => '', - 'Menu' => 'منو', - 'Snippet' => '', -); diff --git a/messages/fa-IR/widgets_views_nextEvents.php b/messages/fa-IR/widgets_views_nextEvents.php deleted file mode 100644 index 72097574..00000000 --- a/messages/fa-IR/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Upcoming events ' => 'نزدیک رویدادهای', -]; diff --git a/messages/fa-IR/widgets_views_participants.php b/messages/fa-IR/widgets_views_participants.php deleted file mode 100644 index 4818934d..00000000 --- a/messages/fa-IR/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'مشارکتکنندهها', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/fi/activities.php b/messages/fi/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/fi/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/fi/base.php b/messages/fi/base.php index 1896473d..b2867645 100644 --- a/messages/fi/base.php +++ b/messages/fi/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Lisää kalenteri', 'Choose target calendar' => 'Valitse kalenteri', 'Reminder settings' => '', @@ -9,24 +9,37 @@ '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ä', 'Attending' => 'Osallistuu', 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', 'Birthday' => 'Syntymäpäivä', 'Calendar' => 'Kalenteri', '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', '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!', @@ -40,21 +53,40 @@ 'Files' => 'Tiedostot', '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' => '', '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 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}' => '', + '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' => '', @@ -64,6 +96,7 @@ 'Public' => 'Julkinen', 'Recurring' => '', 'Reopen Event' => 'Avaa tapahtuma uudelleen', + 'Repeat every' => '', 'Saturday' => 'Lauantai', 'Set reminder' => 'Aseta muistutus', 'Start Date' => 'Aloituspäivä', @@ -72,23 +105,41 @@ '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' => '', 'User birthdays' => '', 'Wednesday' => 'Keskiviikko', + 'Week' => '', + 'Weeks' => '', + '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' => '', + '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}".' => '', -); +]; diff --git a/messages/fi/calendar.php b/messages/fi/calendar.php deleted file mode 100644 index 66f26b64..00000000 --- a/messages/fi/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'Lista', - 'Month' => '', - 'Today' => 'Tänään', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/fi/config.php b/messages/fi/config.php index ab8c962f..509262b5 100644 --- a/messages/fi/config.php +++ b/messages/fi/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Kalenteri asetukset', - 'Confirm Deletion' => 'Vahvista poisto', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Lisää widget käyttäjien etusivulle tulevista tapahtumista.', - 'Create new type' => 'Luo uusi tyyppi', - 'Delete' => 'Poista', - 'Do you really want to delte this event type?' => 'Haluatko todella poistaa tämän tapahtumatyypin?', - 'Event Type Configuration' => 'Tapahtuman tyypin määritys', - 'Half a year' => 'Puolivuotta', - 'Here you can configure default settings for new calendar events.' => 'Tässä voit määrittää uusien kalenteritapahtumien oletusasetukset.', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Tässä voit määrittää uusien kalenteritapahtumien oletusasetukset. Nämä asetukset voidaan korvata sivuilla / profiilitasolla.', - 'Here you can manage your event types.' => 'Täällä voit hallita tapahtumiasi. ', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Jos tämä on käytössä, kalenterin ylävalikkokohta ja hallintapaneelin katkelma ovat näkyvissä vain niille käyttäjille, joilla kalenterilaajennus on asennettu profiiliinsa.', - 'Interval of upcoming events' => 'Tulevien tapahtumien välitavoitteet', - 'Max event items' => 'Tapahtumien enimmäismäärät', - 'Name' => 'Nimi', - 'One month' => 'Kuukausi', - 'One week' => 'Viikko', - 'One year' => 'Vuosi', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Näytä vain ylävalikkokohta ja katkelmat, jos laajennus on asennettu käyttäjän profiiliin', - 'Reset' => 'Tyhjennä', - 'Show snippet' => 'Näytä widget', - 'There are currently no event types available.' => 'Tapahtumien tyypit eivät ole tällä hetkellä käytettävissä.', - 'Upcoming events snippet' => 'Tulevat tapahtumat', - 'Add \'Calendar\' to the main menu' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Menu settings' => '', - 'View mode' => '', + 'Calendar module configuration' => 'Kalenteri asetukset', + 'Confirm Deletion' => 'Vahvista poisto', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Lisää widget käyttäjien etusivulle tulevista tapahtumista.', + 'Basic' => 'Tiedot', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Luo uusi tyyppi', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Poista', + 'Do you really want to delte this event type?' => 'Haluatko todella poistaa tämän tapahtumatyypin?', + 'Event Type Configuration' => 'Tapahtuman tyypin määritys', + 'Full calendar' => '', + 'Half a year' => 'Puolivuotta', + 'Here you can configure default settings for new calendar events.' => 'Tässä voit määrittää uusien kalenteritapahtumien oletusasetukset.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Tässä voit määrittää uusien kalenteritapahtumien oletusasetukset. Nämä asetukset voidaan korvata sivuilla / profiilitasolla.', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => 'Täällä voit hallita tapahtumiasi. ', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Jos tämä on käytössä, kalenterin ylävalikkokohta ja hallintapaneelin katkelma ovat näkyvissä vain niille käyttäjille, joilla kalenterilaajennus on asennettu profiiliinsa.', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => 'Tulevien tapahtumien välitavoitteet', + 'Max event items' => 'Tapahtumien enimmäismäärät', + 'Menu settings' => '', + 'Name' => 'Nimi', + 'One month' => 'Kuukausi', + 'One week' => 'Viikko', + 'One year' => 'Vuosi', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Näytä vain ylävalikkokohta ja katkelmat, jos laajennus on asennettu käyttäjän profiiliin', + 'Participation' => 'osallistujat', + 'Reminder' => 'Muistutus', + 'Reset' => 'Tyhjennä', + 'Show snippet' => 'Näytä widget', + 'There are currently no event types available.' => 'Tapahtumien tyypit eivät ole tällä hetkellä käytettävissä.', + 'Upcoming events snippet' => 'Tulevat tapahtumat', + 'View mode' => '', ]; diff --git a/messages/fi/mail.php b/messages/fi/mail.php deleted file mode 100644 index 48c0cb47..00000000 --- a/messages/fi/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Kuvaus', - 'Location' => 'Sijainti', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/fi/notification.php b/messages/fi/notification.php new file mode 100644 index 00000000..548e75e5 --- /dev/null +++ b/messages/fi/notification.php @@ -0,0 +1,25 @@ + 'Kalenteri', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Kuvaus', + 'Location' => 'Sijainti', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Vastaanota kalenteriin liittyvät ilmoitukset.', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} perui tapahtuman "{contentTitle}" sivulla {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} peruutti tapahtuman "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} avasi uudelleen tapahtuman "{contentTitle}" sivulla {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} avasi uudestaan tapahtuman "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} päivitti tapahtumaa "{contentTitle}" sivulla {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} juuri päivitti tapahtumaa {contentTitle}.', +]; diff --git a/messages/fi/notifications_CalendarNotificationCategory.php b/messages/fi/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 5b9ef7bc..00000000 --- a/messages/fi/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalenteri', - 'Receive Calendar related Notifications.' => 'Vastaanota kalenteriin liittyvät ilmoitukset.', -); diff --git a/messages/fi/notifications_views_CanceledEvent.php b/messages/fi/notifications_views_CanceledEvent.php deleted file mode 100644 index f43f3fc7..00000000 --- a/messages/fi/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} perui tapahtuman "{contentTitle}" sivulla {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} peruutti tapahtuman "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} päivitti tapahtumaa "{contentTitle}" sivulla {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} juuri päivitti tapahtumaa {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} avasi uudelleen tapahtuman "{contentTitle}" sivulla {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} avasi uudestaan tapahtuman "{contentTitle}".', -]; diff --git a/messages/fi/permissions.php b/messages/fi/permissions.php deleted file mode 100644 index 5dde2c35..00000000 --- a/messages/fi/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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ä', - 'Create entry' => 'Luo merkintä', - 'Manage entries' => 'Hallinoi merkintöjä', -); diff --git a/messages/fi/recurrence.php b/messages/fi/recurrence.php deleted file mode 100644 index 63421624..00000000 --- a/messages/fi/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Päätä', - 'Never' => 'Ei koskaan', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/fi/reminder.php b/messages/fi/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/fi/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/fi/settings.php b/messages/fi/settings.php deleted file mode 100644 index 8ec58cca..00000000 --- a/messages/fi/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Tiedot', - 'Full calendar' => '', - 'Participation' => 'osallistujat', - 'Reminder' => 'Muistutus', -); diff --git a/messages/fi/views.php b/messages/fi/views.php new file mode 100644 index 00000000..8c9666a5 --- /dev/null +++ b/messages/fi/views.php @@ -0,0 +1,60 @@ + '', + '%displayName% created a new %contentTitle%.' => '%displayName% loi uuden %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %contentTitle%.' => '', + ':count Attending' => '', + ':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', + 'Filter' => 'Suodatin', + 'Filter events' => '', + 'Followed spaces' => 'Seuratut sivut', + 'Followed users' => 'Seuratut käyttäjät', + 'General' => 'Yleiset', + 'I\'m attending' => 'Minä osallistun', + 'Invited' => '', + 'Loading...' => 'Ladataan...', + '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' => '', +]; diff --git a/messages/fi/views_activities_EntryCreated.php b/messages/fi/views_activities_EntryCreated.php deleted file mode 100644 index 595fcc71..00000000 --- a/messages/fi/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% loi uuden %contentTitle%.', -); diff --git a/messages/fi/views_activities_EntryResponse.php b/messages/fi/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/fi/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/fi/views_container-config_typesConfig.php b/messages/fi/views_container-config_typesConfig.php deleted file mode 100644 index 49834dce..00000000 --- a/messages/fi/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Luo uusi tapahtuma tyyppi', - 'Edit calendar' => 'Muokkaa kalenteria', - 'Edit event type' => 'Muokkaa tapahtuma tyyppiä', -); diff --git a/messages/fi/views_entry_edit.php b/messages/fi/views_entry_edit.php deleted file mode 100644 index ec80e5a4..00000000 --- a/messages/fi/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Osallistuu', - 'Back' => 'Takaisin', - 'Close' => 'Sulje', - 'Declined' => '', - 'Everybody can participate' => 'Kaikki voivat osallistua', - 'General' => 'Yleiset', - 'Invited' => '', - 'Next' => 'Seuraava', - 'No participants' => 'Ei osallistujia', - 'Only by Invite' => '', - 'Participants' => 'Osallistujat', - 'Recurrence' => '', - 'Reminder' => 'Muistutus', - 'Select event type...' => 'Valitse tapahtumatyyppi...', - 'Settings' => 'Asetukset', - 'Title' => 'Otsikko', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/fi/views_entry_view.php b/messages/fi/views_entry_view.php deleted file mode 100644 index 69a0eab8..00000000 --- a/messages/fi/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Kaikki', - 'Attend' => 'Osallistu', - 'Decline' => 'En osallistu', - 'Filter' => 'Suodatin', - 'Maybe' => 'Ehkä osalistun', - 'Participants' => 'Osallistujat', - 'You are invited, please select your role:' => '', -); diff --git a/messages/fi/views_global_index.php b/messages/fi/views_global_index.php deleted file mode 100644 index 9e969685..00000000 --- a/messages/fi/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Seuratut sivut', - 'Followed users' => 'Seuratut käyttäjät', - 'I\'m attending' => 'Minä osallistun', - 'My events' => 'Minun tapahtumat', - 'My profile' => 'Minun tapahtumat', - 'My spaces' => 'Minun sivut', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/fi/widgets_GlobalConfigMenu.php b/messages/fi/widgets_GlobalConfigMenu.php deleted file mode 100644 index 51a4a560..00000000 --- a/messages/fi/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => 'Oletukset', - 'Event Types' => 'Taphtumatyypit', - 'Menu' => 'Valikko', - 'Snippet' => 'Laatikko', -); diff --git a/messages/fi/widgets_views_fullCalendar.php b/messages/fi/widgets_views_fullCalendar.php deleted file mode 100644 index ce25c48d..00000000 --- a/messages/fi/widgets_views_fullCalendar.php +++ /dev/null @@ -1,4 +0,0 @@ - 'Ladataan...', -); diff --git a/messages/fi/widgets_views_nextEvents.php b/messages/fi/widgets_views_nextEvents.php deleted file mode 100644 index b6cb2705..00000000 --- a/messages/fi/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Tulevat tapahtumat', - 'Open Calendar' => 'Avaa Kalenteri', -); diff --git a/messages/fi/widgets_views_participants.php b/messages/fi/widgets_views_participants.php deleted file mode 100644 index b2a2c93a..00000000 --- a/messages/fi/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Osallistujat', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/fr/activities.php b/messages/fr/activities.php deleted file mode 100644 index ac3bf556..00000000 --- a/messages/fr/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Calendrier : invite', - 'Calendar: attend' => 'Calendrier : participe', - 'Calendar: decline' => 'Calendrier : ne participe pas', - 'Calendar: maybe' => 'Calendrier : participe peut-être', - 'Whenever someone declines to participate in an event.' => 'Lorsque quelqu\'un indique ne pas participer à un événement.', - 'Whenever someone invites to participate in an event.' => 'Lorsque quelqu\'un invite à participer à un événement.', - 'Whenever someone may be participating in an event.' => 'Lorsque quelqu\'un participera peut-être à un événement.', - 'Whenever someone participates in an event.' => 'Lorsque quelqu\'un participe à un événement.', -); diff --git a/messages/fr/base.php b/messages/fr/base.php index 5208a077..2dd0aa97 100644 --- a/messages/fr/base.php +++ b/messages/fr/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Ajouter un calendrier à votre profil', 'Choose target calendar' => 'Choisir le calendrier de destination', 'Reminder settings' => 'Rappel', @@ -9,24 +9,37 @@ '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', 'Calendar' => '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', '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 !', @@ -40,21 +53,40 @@ '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.', + '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.' => 'Ici vous pouvez configurer les rappels par défaut pour cet évènement. Les utilisateurs peuvent outrepasser ces réglages avec le lien Régler les rappels.', + 'Hour' => 'Heure', '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}', + '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', @@ -64,6 +96,7 @@ 'Public' => 'Public', 'Recurring' => 'Récurrence', 'Reopen Event' => 'Reprendre l’événement', + 'Repeat every' => 'Répéter tous les', 'Saturday' => 'Samedi', 'Set reminder' => 'Régler un rappel', 'Start Date' => 'Date de début', @@ -72,23 +105,41 @@ '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', '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', + '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} ».', -); +]; diff --git a/messages/fr/calendar.php b/messages/fr/calendar.php deleted file mode 100644 index e5e0607e..00000000 --- a/messages/fr/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Jour', - 'List' => 'Liste', - 'Month' => 'Mois', - 'Today' => 'Aujourd’hui', - 'Week' => 'Semaine', - 'Year' => 'Année', -); diff --git a/messages/fr/config.php b/messages/fr/config.php index 62dd5db6..5e8cac5b 100644 --- a/messages/fr/config.php +++ b/messages/fr/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Configuration du module Calendrier', - 'Confirm Deletion' => 'Confirmer la suppression', - 'Add \'Calendar\' to the main menu' => 'Ajouter "Calendrier" au menu principal', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Ajoute un aperçu des prochains événements au fil d\'actualités des utilisateurs.', - 'Calendar Configuration' => 'Configuration des calendriers', - 'Calendar default view mode settings' => 'Réglages du mode d’affichage par défaut du calendrier', - 'Create new type' => 'Ajouter un type', - 'Default basic settings' => 'Réglages de base par défaut', - 'Default participation settings' => 'Paramètres de participation par défaut', - 'Delete' => 'Supprimer', - 'Do you really want to delte this event type?' => 'Voulez-vous vraiment supprimer ce type d\'événement ?', - 'Event Type Configuration' => 'Configuration des types d\'événements', - 'Half a year' => '6 mois', - 'Here you can configure default settings for new calendar events.' => 'Ici, vous pouvez configurer des paramètres par défaut pour les nouveaux événements de calendrier.', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Ici, vous pouvez configurer des paramètres par défaut pour les nouveaux événements de calendrier. Ces paramètres pourront être modifiés dans les espaces et les profils.', - 'Here you can configure default settings for the full calendar.' => 'Vous pouvez ici configurer les réglages par défaut pour le calendrier entier.', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => 'Vous pouvez ici configurer les réglages par défaut pour le calendrier entier. Ces réglages peuvent être modifiés individuellement pour chaque espace ou profil.', - 'Here you can manage and disable different calendars.' => 'Ici, vous pouvez gérer et désactiver des calendriers.', - 'Here you can manage your event types.' => 'Ici, vous pouvez gérer vos types d\'événement.', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Si activé, le bouton calendrier (en haut de l’interface) ainsi que l’aperçu des prochains événements sont visibles uniquement par les utilisateurs qui ont activés le module calendrier sur leur profil.', - 'Include birthdays to dashboard snippet' => 'Inclure les anniversaires dans l’aperçu sur le fil d’actualités.', - 'Interval of upcoming events' => 'Intervalle des prochains événements', - 'Max event items' => 'Nombre maximum d\'éléments', - 'Menu settings' => 'Paramétrages du menu', - 'Name' => 'Nom', - 'One month' => '1 mois', - 'One week' => '1 semaine', - 'One year' => '1 an', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Afficher le bouton calendrier et l\'aperçu sur le fil d\'actualités uniquement pour les utilisateurs ayant activé le module', - 'Reset' => 'Réinitialiser', - 'Show snippet' => 'Afficher un extrait', - 'There are currently no event types available.' => 'Il n\'y a aucun type d\'événement disponible pour le moment.', - 'Upcoming events snippet' => 'Extrait des prochains événements', - 'View mode' => 'Mode d’affichage', + 'Calendar module configuration' => 'Configuration du module Calendrier', + 'Confirm Deletion' => 'Confirmer la suppression', + 'Add \'Calendar\' to the main menu' => 'Ajouter "Calendrier" au menu principal', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Ajoute un aperçu des prochains événements au fil d\'actualités des utilisateurs.', + 'Basic' => 'Général', + 'Calendar Configuration' => 'Configuration des calendriers', + 'Calendar default view mode settings' => 'Réglages du mode d’affichage par défaut du calendrier', + 'Create new type' => 'Ajouter un type', + 'Default basic settings' => 'Réglages de base par défaut', + 'Default participation settings' => 'Paramètres de participation par défaut', + 'Delete' => 'Supprimer', + 'Do you really want to delte this event type?' => 'Voulez-vous vraiment supprimer ce type d\'événement ?', + 'Event Type Configuration' => 'Configuration des types d\'événements', + 'Full calendar' => 'Calendrier entier', + 'Half a year' => '6 mois', + 'Here you can configure default settings for new calendar events.' => 'Ici, vous pouvez configurer des paramètres par défaut pour les nouveaux événements de calendrier.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Ici, vous pouvez configurer des paramètres par défaut pour les nouveaux événements de calendrier. Ces paramètres pourront être modifiés dans les espaces et les profils.', + 'Here you can configure default settings for the full calendar.' => 'Vous pouvez ici configurer les réglages par défaut pour le calendrier entier.', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => 'Vous pouvez ici configurer les réglages par défaut pour le calendrier entier. Ces réglages peuvent être modifiés individuellement pour chaque espace ou profil.', + 'Here you can manage and disable different calendars.' => 'Ici, vous pouvez gérer et désactiver des calendriers.', + 'Here you can manage your event types.' => 'Ici, vous pouvez gérer vos types d\'événement.', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Si activé, le bouton calendrier (en haut de l’interface) ainsi que l’aperçu des prochains événements sont visibles uniquement par les utilisateurs qui ont activés le module calendrier sur leur profil.', + 'Include birthdays to dashboard snippet' => 'Inclure les anniversaires dans l’aperçu sur le fil d’actualités.', + 'Interval of upcoming events' => 'Intervalle des prochains événements', + 'Max event items' => 'Nombre maximum d\'éléments', + 'Menu settings' => 'Paramétrages du menu', + 'Name' => 'Nom', + 'One month' => '1 mois', + 'One week' => '1 semaine', + 'One year' => '1 an', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Afficher le bouton calendrier et l\'aperçu sur le fil d\'actualités uniquement pour les utilisateurs ayant activé le module', + 'Participation' => 'Participation', + 'Reminder' => 'Rappel', + 'Reset' => 'Réinitialiser', + 'Show snippet' => 'Afficher un extrait', + 'There are currently no event types available.' => 'Il n\'y a aucun type d\'événement disponible pour le moment.', + 'Upcoming events snippet' => 'Extrait des prochains événements', + 'View mode' => 'Mode d’affichage', ]; diff --git a/messages/fr/mail.php b/messages/fr/mail.php deleted file mode 100644 index 2562590d..00000000 --- a/messages/fr/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Description', - 'Location' => 'Lieu', - 'Organizer' => 'Responsable', - 'Participants info' => 'Infos pour les participant·es', - 'Starting' => 'Début', - 'View Online: {url}' => 'Voir en ligne : {url}', -); diff --git a/messages/fr/notification.php b/messages/fr/notification.php new file mode 100644 index 00000000..c0af8b76 --- /dev/null +++ b/messages/fr/notification.php @@ -0,0 +1,25 @@ + 'Calendrier', + 'Calendar: Invite' => 'Calendrier : invite', + 'Calendar: attend' => 'Calendrier : participe', + 'Calendar: decline' => 'Calendrier : ne participe pas', + 'Calendar: maybe' => 'Calendrier : participe peut-être', + 'Description' => 'Description', + 'Location' => 'Lieu', + 'Organizer' => 'Responsable', + 'Participants info' => 'Infos pour les participant·es', + 'Receive Calendar related Notifications.' => 'Recevoir une notification lorsqu\'on ajoute/modifie/annule des événements liés à mon calendrier.', + 'Starting' => 'Début', + 'View Online: {url}' => 'Voir en ligne : {url}', + 'Whenever someone declines to participate in an event.' => 'Lorsque quelqu\'un indique ne pas participer à un événement.', + 'Whenever someone invites to participate in an event.' => 'Lorsque quelqu\'un invite à participer à un événement.', + 'Whenever someone may be participating in an event.' => 'Lorsque quelqu\'un participera peut-être à un événement.', + 'Whenever someone participates in an event.' => 'Lorsque quelqu\'un participe à un événement.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} a annulé l\'événement "{contentTitle}" dans l\'espace {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} a annulé l\'événement "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} a réouvert l\'événement "{contentTitle}" dans l\'espace {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} a réouvert l\'événement "{contentTitle}"', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} vient de mettre à jour l\'événement "{contentTitle}" dans l\'espace {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} a mis à jour l\'événement {contentTitle}.', +]; diff --git a/messages/fr/notifications_CalendarNotificationCategory.php b/messages/fr/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 7691de2d..00000000 --- a/messages/fr/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Calendrier', - 'Receive Calendar related Notifications.' => 'Recevoir une notification lorsqu\'on ajoute/modifie/annule des événements liés à mon calendrier.', -); diff --git a/messages/fr/notifications_views_CanceledEvent.php b/messages/fr/notifications_views_CanceledEvent.php deleted file mode 100644 index 020891e3..00000000 --- a/messages/fr/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} a annulé l\'événement "{contentTitle}" dans l\'espace {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} a annulé l\'événement "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} vient de mettre à jour l\'événement "{contentTitle}" dans l\'espace {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} a mis à jour l\'événement {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} a réouvert l\'événement "{contentTitle}" dans l\'espace {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} a réouvert l\'événement "{contentTitle}"', -]; diff --git a/messages/fr/permissions.php b/messages/fr/permissions.php deleted file mode 100644 index 0c44f6a5..00000000 --- a/messages/fr/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Créer une entrée', - 'Manage entries' => 'Gérer les entrées', -); diff --git a/messages/fr/recurrence.php b/messages/fr/recurrence.php deleted file mode 100644 index 49e94bee..00000000 --- a/messages/fr/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Après (nombre d\'occurrences)', - 'Day' => 'Jour', - 'Days' => 'Jours', - 'Delete all events' => 'Supprimer toutes les occurrences', - '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', - 'End' => 'Fin', - 'Invalid day of month given' => 'Jour du mois entré incorrect', - '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', - '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', - 'On date' => 'Un jour précis', - 'Repeat every' => 'Répéter tous les', - 'This event does not support recurrent events' => 'Cet évènement ne peut être répété', - 'Week' => 'Semaine', - 'Weeks' => 'Semaines', - 'Year' => 'Année', - 'Years' => 'Années', - 'first' => 'premier', - 'forth' => 'quatrième', - 'last' => 'dernier', - 'on weekdays' => 'les', - 'second' => 'deuxième', - 'third' => 'troisième', -); diff --git a/messages/fr/reminder.php b/messages/fr/reminder.php deleted file mode 100644 index 324b9514..00000000 --- a/messages/fr/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Rappels personnalisés', - 'Day' => 'Jour', - 'Default reminder settings' => 'Rappels par défaut', - '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.' => 'Ici vous pouvez configurer les rappels par défaut pour cet évènement. Les utilisateurs peuvent outrepasser ces réglages avec le lien Régler les rappels.', - 'Hour' => 'Heure', - 'Minute' => 'Minute', - 'No reminder' => 'Pas de rappel', - 'Upcoming {type}' => 'À venir {type}', - 'Upcoming {type}: {title}' => 'À venir {type} : {title}', - 'Use default reminder' => 'Utiliser les rappels par défaut', - 'Week' => 'Semaine', - '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}', - 'Your reminder settings for event: \'{title}\'' => 'Vos paramètres de rappels pour l\'évènement : \'{title}\'', -); diff --git a/messages/fr/settings.php b/messages/fr/settings.php deleted file mode 100644 index f1d9049e..00000000 --- a/messages/fr/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Général', - 'Full calendar' => 'Calendrier entier', - 'Participation' => 'Participation', - 'Reminder' => 'Rappel', -); diff --git a/messages/fr/views.php b/messages/fr/views.php new file mode 100644 index 00000000..dd3e4e58 --- /dev/null +++ b/messages/fr/views.php @@ -0,0 +1,60 @@ + '%displayName% ne peut pas participer à %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% a créé l\'événement %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% participe à %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% est invité·e à %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% participera peut-être à %contentTitle%.', + ':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', + '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', + 'Loading...' => 'Chargement...', + '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', +]; diff --git a/messages/fr/views_activities_EntryCreated.php b/messages/fr/views_activities_EntryCreated.php deleted file mode 100644 index 87e1095e..00000000 --- a/messages/fr/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% a créé l\'événement %contentTitle%.', -); diff --git a/messages/fr/views_activities_EntryResponse.php b/messages/fr/views_activities_EntryResponse.php deleted file mode 100644 index 29609c21..00000000 --- a/messages/fr/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% ne peut pas participer à %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% participe à %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% est invité·e à %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% participera peut-être à %contentTitle%.', -); diff --git a/messages/fr/views_container-config_typesConfig.php b/messages/fr/views_container-config_typesConfig.php deleted file mode 100644 index 528dfe95..00000000 --- a/messages/fr/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Ajouter un nouveau type d\'événement', - 'Edit calendar' => 'Éditer le calendrier', - 'Edit event type' => 'Modifier le type d\'événement', -); diff --git a/messages/fr/views_entry_edit.php b/messages/fr/views_entry_edit.php deleted file mode 100644 index 637f5f93..00000000 --- a/messages/fr/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Créer un événement', - 'Edit Event' => 'Modifier l’événement', - 'Edit recurring event' => 'Modifier l\'évènement récurrent', - '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 ?', - 'Attending' => 'Participe', - 'Back' => 'Retour', - 'Close' => 'Fermer', - 'Declined' => 'Décliné', - 'Everybody can participate' => 'Tout le monde peut participer', - 'General' => 'Général', - 'Invited' => 'Invité·e', - 'Next' => 'Suivant', - 'No participants' => 'Pas de participants', - 'Only by Invite' => 'Uniquement sur invitation', - 'Participants' => 'Participant·es', - 'Recurrence' => 'Récurrence', - 'Reminder' => 'Rappel', - 'Select event type...' => 'Sélectionner le type d\'événement...', - 'Settings' => 'Réglages', - 'Title' => 'Titre', - 'Undecided' => 'Ne sais pas encore', - '{count} Participants' => '{count} participant·es', -); diff --git a/messages/fr/views_entry_view.php b/messages/fr/views_entry_view.php deleted file mode 100644 index 7d87181d..00000000 --- a/messages/fr/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Informations additionnelles :', - 'All' => 'Tous et toutes', - 'Attend' => 'Participer', - 'Decline' => 'Décliner', - 'Filter' => 'Filtre', - 'Maybe' => 'Peut-être', - 'Participants' => 'Participant·es', - 'You are invited, please select your role:' => 'Vous êtes invité·e, veuillez sélectionner votre rôle :', -); diff --git a/messages/fr/views_global_index.php b/messages/fr/views_global_index.php deleted file mode 100644 index b0497c7d..00000000 --- a/messages/fr/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Filtrer les événements', - 'Followed spaces' => 'Espaces suivis', - 'Followed users' => 'Utilisateurs suivis', - 'I\'m attending' => 'Je participe', - 'My events' => 'Mes événements', - 'My profile' => 'Mon profil', - 'My spaces' => 'Mes espaces', - 'Select calendars' => 'Sélectionner les calendriers', -); diff --git a/messages/fr/widgets_GlobalConfigMenu.php b/messages/fr/widgets_GlobalConfigMenu.php deleted file mode 100644 index 555c6344..00000000 --- a/messages/fr/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Calendriers', - 'Defaults' => 'Général', - 'Event Types' => 'Types', - 'Menu' => 'Menu', - 'Snippet' => 'Extrait', -); diff --git a/messages/fr/widgets_views_fullCalendar.php b/messages/fr/widgets_views_fullCalendar.php deleted file mode 100644 index ae5c6f15..00000000 --- a/messages/fr/widgets_views_fullCalendar.php +++ /dev/null @@ -1,4 +0,0 @@ - 'Chargement...', -); diff --git a/messages/fr/widgets_views_nextEvents.php b/messages/fr/widgets_views_nextEvents.php deleted file mode 100644 index fe97e206..00000000 --- a/messages/fr/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Événement(s) à venir', - 'Open Calendar' => 'Ouvrir le calendrier', -); diff --git a/messages/fr/widgets_views_participants.php b/messages/fr/widgets_views_participants.php deleted file mode 100644 index f429a582..00000000 --- a/messages/fr/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count participent', - ':count Declined' => ':count ont décliné', - ':count Invited' => ':count sont invité·es', - ':count Undecided' => ':count ne savent pas encore', - 'Participants' => 'Participant·es', -); diff --git a/messages/he/activities.php b/messages/he/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/he/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/he/base.php b/messages/he/base.php index 114484b1..2c19da38 100644 --- a/messages/he/base.php +++ b/messages/he/base.php @@ -1,95 +1,145 @@ 'עריכה', - 'Enable' => 'פעיל', - 'Next' => 'הבא', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/he/calendar.php b/messages/he/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/he/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/he/config.php b/messages/he/config.php index b69ab654..6300889e 100644 --- a/messages/he/config.php +++ b/messages/he/config.php @@ -1,38 +1,41 @@ 'מחק', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'מחק', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/he/mail.php b/messages/he/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/he/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/he/notification.php b/messages/he/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/he/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/he/notifications_CalendarNotificationCategory.php b/messages/he/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 32f067f4..00000000 --- a/messages/he/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,6 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/he/notifications_views_CanceledEvent.php b/messages/he/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/he/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/he/permissions.php b/messages/he/permissions.php deleted file mode 100644 index 139867e9..00000000 --- a/messages/he/permissions.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/he/recurrence.php b/messages/he/recurrence.php deleted file mode 100644 index 5fe83811..00000000 --- a/messages/he/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/he/reminder.php b/messages/he/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/he/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/he/settings.php b/messages/he/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/he/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/he/views.php b/messages/he/views.php new file mode 100644 index 00000000..129fecce --- /dev/null +++ b/messages/he/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => '', +]; diff --git a/messages/he/views_activities_EntryResponse.php b/messages/he/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/he/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/he/views_container-config_typesConfig.php b/messages/he/views_container-config_typesConfig.php deleted file mode 100644 index 0bfdc5f2..00000000 --- a/messages/he/views_container-config_typesConfig.php +++ /dev/null @@ -1,7 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/he/views_entry_edit.php b/messages/he/views_entry_edit.php deleted file mode 100644 index 0819f2fa..00000000 --- a/messages/he/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'חזרה', - 'Close' => 'סגור', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '', - 'Invited' => '', - 'Next' => 'הבא', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'הגדרות', - 'Title' => 'כותרת', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/he/views_entry_view.php b/messages/he/views_entry_view.php deleted file mode 100644 index 77a8798c..00000000 --- a/messages/he/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'הכל', - 'Attend' => '', - 'Decline' => 'דחה', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -); diff --git a/messages/he/views_global_index.php b/messages/he/views_global_index.php deleted file mode 100644 index 1652d50b..00000000 --- a/messages/he/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'הפרופיל שלי', - 'Filter events' => '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/he/widgets_GlobalConfigMenu.php b/messages/he/widgets_GlobalConfigMenu.php deleted file mode 100644 index 52f92e77..00000000 --- a/messages/he/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'תפריט', - 'Snippet' => '', -); diff --git a/messages/he/widgets_views_nextEvents.php b/messages/he/widgets_views_nextEvents.php deleted file mode 100644 index f8c6da69..00000000 --- a/messages/he/widgets_views_nextEvents.php +++ /dev/null @@ -1,6 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/he/widgets_views_participants.php b/messages/he/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/he/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/hr/activities.php b/messages/hr/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/hr/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/hr/base.php b/messages/hr/base.php index 916f49cf..586620df 100644 --- a/messages/hr/base.php +++ b/messages/hr/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Dodaj profilni kalendar', 'Choose target calendar' => 'Odaberite ciljni kalendar', 'Reminder settings' => 'Postavke podsjetnika', @@ -9,24 +9,37 @@ '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', 'Attending' => 'Prisustvovati', 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', 'Birthday' => 'Rođendan', 'Calendar' => 'Kalendar', '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', '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!', @@ -40,21 +53,40 @@ 'Files' => 'Datoteke', '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.' => 'Ovdje možete konfigurirati zadane postavke podsjetnika za ovaj događaj. Korisnici su u mogućnosti prebrisati ove postavke pomoću veze Postavi podsjetnik.', + 'Hour' => 'Sat', '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', 'Invited: {users}' => '', + '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' => '', @@ -64,6 +96,7 @@ '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', @@ -72,23 +105,41 @@ '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', 'User birthdays' => 'Rođendan korisnika', 'Wednesday' => 'Srijeda', + 'Week' => 'Sedmica', + 'Weeks' => 'Tjedni', + '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' => '', + '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}".' => '', -); +]; diff --git a/messages/hr/calendar.php b/messages/hr/calendar.php deleted file mode 100644 index 1918cdb5..00000000 --- a/messages/hr/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dan', - 'List' => 'Lista', - 'Month' => 'Mjesec', - 'Today' => 'Danas', - 'Week' => 'Sedmica', - 'Year' => 'Godina', -); diff --git a/messages/hr/config.php b/messages/hr/config.php index 80d5a648..361b0f1e 100644 --- a/messages/hr/config.php +++ b/messages/hr/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Kalendar postavke modula', - 'Confirm Deletion' => 'Potvrdi brisanje', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Dodaje se isječak s nadolazećim događajima na upravljačku ploču.', - 'Calendar Configuration' => 'Konfiguracija kalendara', - 'Create new type' => 'Kreiraj novi tip', - 'Default participation settings' => 'Zadane postavke sudjelovanja', - 'Delete' => 'Obriši', - 'Do you really want to delte this event type?' => 'Želite li zaista ukloniti ovu vrstu događaja?', - 'Event Type Configuration' => 'Konfiguracija vrste događaja', - 'Half a year' => 'Pola godine', - 'Here you can configure default settings for new calendar events.' => 'Ovdje možete konfigurirati zadane postavke za nove kalendarske događaje.', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Ovdje možete konfigurirati zadane postavke za nove kalendarske događaje. Ove postavke mogu se promijeniti na razini prostora / profila.', - 'Here you can manage and disable different calendars.' => 'Ovdje možete upravljati i onemogućiti različite kalendare.', - 'Here you can manage your event types.' => 'Ovdje možete upravljati vrstama događaja.', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Ako je aktiviran, stavka izbornika kalendara i isječak upravljačke ploče vidljivi su samo korisnicima koji imaju kalendarski modul instaliran u svom profilu.', - 'Interval of upcoming events' => 'Interval nadolazećih događaja', - 'Max event items' => 'Maksimalne stavke događaja', - 'Name' => 'Ime', - 'One month' => 'Jedan mjesec', - 'One week' => 'Jedan tjedan', - 'One year' => 'Jedna godina', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Prikaži samo gornju stavku izbornika i isječak ako je modul instaliran u korisničkom profilu', - 'Reset' => 'Reset', - 'Show snippet' => 'Prikaži isječak', - 'There are currently no event types available.' => 'Trenutačno nema dostupnih vrsta događaja.', - 'Upcoming events snippet' => 'Isječak nadolazećih događaja', - 'Add \'Calendar\' to the main menu' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Menu settings' => '', - 'View mode' => '', + 'Calendar module configuration' => 'Kalendar postavke modula', + 'Confirm Deletion' => 'Potvrdi brisanje', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Dodaje se isječak s nadolazećim događajima na upravljačku ploču.', + 'Basic' => 'Osnovno', + 'Calendar Configuration' => 'Konfiguracija kalendara', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Kreiraj novi tip', + 'Default basic settings' => '', + 'Default participation settings' => 'Zadane postavke sudjelovanja', + 'Delete' => 'Obriši', + 'Do you really want to delte this event type?' => 'Želite li zaista ukloniti ovu vrstu događaja?', + 'Event Type Configuration' => 'Konfiguracija vrste događaja', + 'Full calendar' => 'Cijeli kalendar', + 'Half a year' => 'Pola godine', + 'Here you can configure default settings for new calendar events.' => 'Ovdje možete konfigurirati zadane postavke za nove kalendarske događaje.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Ovdje možete konfigurirati zadane postavke za nove kalendarske događaje. Ove postavke mogu se promijeniti na razini prostora / profila.', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => 'Ovdje možete upravljati i onemogućiti različite kalendare.', + 'Here you can manage your event types.' => 'Ovdje možete upravljati vrstama događaja.', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Ako je aktiviran, stavka izbornika kalendara i isječak upravljačke ploče vidljivi su samo korisnicima koji imaju kalendarski modul instaliran u svom profilu.', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => 'Interval nadolazećih događaja', + 'Max event items' => 'Maksimalne stavke događaja', + 'Menu settings' => '', + 'Name' => 'Ime', + 'One month' => 'Jedan mjesec', + 'One week' => 'Jedan tjedan', + 'One year' => 'Jedna godina', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Prikaži samo gornju stavku izbornika i isječak ako je modul instaliran u korisničkom profilu', + 'Participation' => 'Sudjelovanje', + 'Reminder' => 'Podsjetnik', + 'Reset' => 'Reset', + 'Show snippet' => 'Prikaži isječak', + 'There are currently no event types available.' => 'Trenutačno nema dostupnih vrsta događaja.', + 'Upcoming events snippet' => 'Isječak nadolazećih događaja', + 'View mode' => '', ]; diff --git a/messages/hr/mail.php b/messages/hr/mail.php deleted file mode 100644 index 6cac0f89..00000000 --- a/messages/hr/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Opis', - 'Location' => 'Lokacija', - 'Organizer' => 'Organizator', - 'Participants info' => 'Informacije za sudionike', - 'Starting' => 'Početak', - 'View Online: {url}' => 'Pregledajte na mreži: {url}', -); diff --git a/messages/hr/notifications_views_CanceledEvent.php b/messages/hr/notification.php similarity index 54% rename from messages/hr/notifications_views_CanceledEvent.php rename to messages/hr/notification.php index 8022ca56..0c330af2 100644 --- a/messages/hr/notifications_views_CanceledEvent.php +++ b/messages/hr/notification.php @@ -1,9 +1,25 @@ 'Kalendar', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Opis', + 'Location' => 'Lokacija', + 'Organizer' => 'Organizator', + 'Participants info' => 'Informacije za sudionike', + 'Receive Calendar related Notifications.' => 'Primajte obavijesti vezane uz kalendar.', + 'Starting' => 'Početak', + 'View Online: {url}' => 'Pregledajte na mreži: {url}', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} je otkazao događaj "{contentTitle}" u Space-u {spaceName}.', '{displayName} canceled the event "{contentTitle}".' => '{displayName} je otkazao događaj "{contentTitle}"', '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} je ponovno otvorio događaj "{contentTitle}" u Space-u {spaceName}.', '{displayName} reopened the event "{contentTitle}".' => '{displayName} je ponovo otvorio događaj "{contentTitle}".', '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} je ažurirao događaj "{contentTitle}" u Space-u {spaceName}.', '{displayName} updated the event "{contentTitle}".' => '{displayName} je ažurirao događaj {contentTitle}.', -); +]; diff --git a/messages/hr/notifications_CalendarNotificationCategory.php b/messages/hr/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 8882e15f..00000000 --- a/messages/hr/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalendar', - 'Receive Calendar related Notifications.' => 'Primajte obavijesti vezane uz kalendar.', -); diff --git a/messages/hr/permissions.php b/messages/hr/permissions.php deleted file mode 100644 index 3ad11841..00000000 --- a/messages/hr/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Kreriaj unos', - 'Manage entries' => 'Upravljaj unosima', -); diff --git a/messages/hr/recurrence.php b/messages/hr/recurrence.php deleted file mode 100644 index 6607540b..00000000 --- a/messages/hr/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Nakon (pojave)', - 'Day' => 'Dan', - 'Days' => 'Dana', - 'Delete all events' => 'Izbriši sve događaje', - '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', - 'End' => 'Završi', - 'Invalid day of month given' => 'Dat je nevažeći dan u mjesecu', - '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', - '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', - 'On date' => 'Na datum', - 'Repeat every' => 'Ponovite svaki', - 'This event does not support recurrent events' => 'Ovaj događaj ne podržava ponavljajuće događaje', - 'Week' => 'Tjedan', - 'Weeks' => 'Tjedni', - 'Year' => 'Godina', - 'Years' => 'Godine', - 'first' => 'prvi', - 'forth' => 'unaprijed', - 'last' => 'zadnji', - 'on weekdays' => 'radnim danima', - 'second' => 'drugi', - 'third' => 'treći', -); diff --git a/messages/hr/reminder.php b/messages/hr/reminder.php deleted file mode 100644 index 49b5da81..00000000 --- a/messages/hr/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Prilagođeni podsjetnik', - 'Day' => 'Dan', - 'Default reminder settings' => 'Zadane postavke podsjetnika', - '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.' => 'Ovdje možete konfigurirati zadane postavke podsjetnika za ovaj događaj. Korisnici su u mogućnosti prebrisati ove postavke pomoću veze Postavi podsjetnik.', - 'Hour' => 'Sat', - 'Minute' => 'Minuta', - 'No reminder' => 'Nema podsjetnika', - 'Upcoming {type}' => 'Predstojeći {type}', - 'Upcoming {type}: {title}' => 'Predstojeći {type}: {title}', - 'Use default reminder' => 'Upotrijebi zadani podsjetnik', - 'Week' => 'Sedmica', - '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}\'', -); diff --git a/messages/hr/settings.php b/messages/hr/settings.php deleted file mode 100644 index b5b6e973..00000000 --- a/messages/hr/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Osnovno', - 'Full calendar' => 'Cijeli kalendar', - 'Participation' => 'Sudjelovanje', - 'Reminder' => 'Podsjetnik', -); diff --git a/messages/hr/views.php b/messages/hr/views.php new file mode 100644 index 00000000..792456c8 --- /dev/null +++ b/messages/hr/views.php @@ -0,0 +1,59 @@ + '%displayName% ne može prisustvovati %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% kreirao je novi %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% prisustvuje %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %contentTitle%.' => '%displayName% možda će prisustvovati %contentTitle%.', + ':count Attending' => '', + ':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', + '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', +]; diff --git a/messages/hr/views_activities_EntryCreated.php b/messages/hr/views_activities_EntryCreated.php deleted file mode 100644 index 22990920..00000000 --- a/messages/hr/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% kreirao je novi %contentTitle%.', -); diff --git a/messages/hr/views_activities_EntryResponse.php b/messages/hr/views_activities_EntryResponse.php deleted file mode 100644 index 904a10bf..00000000 --- a/messages/hr/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '%displayName% ne može prisustvovati %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% prisustvuje %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% možda će prisustvovati %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '', -]; diff --git a/messages/hr/views_container-config_typesConfig.php b/messages/hr/views_container-config_typesConfig.php deleted file mode 100644 index 64559a31..00000000 --- a/messages/hr/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Kreiraj novi tip događaja', - 'Edit calendar' => 'Uredi kalendar', - 'Edit event type' => 'Uredi tip događaja', -); diff --git a/messages/hr/views_entry_edit.php b/messages/hr/views_entry_edit.php deleted file mode 100644 index 21c1513b..00000000 --- a/messages/hr/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => 'Uredi ponavljajući događaj', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Prisustvovati', - 'Back' => 'Natrag', - 'Close' => 'Zatvori', - 'Declined' => 'Odbijeni', - 'Everybody can participate' => 'Svi mogu sudjelovati', - 'General' => 'Općenito', - 'Invited' => 'Pozvani', - 'Next' => 'Dalje', - 'No participants' => 'Nema sudionika', - 'Only by Invite' => 'Samo pozivom', - 'Participants' => 'Sudionici', - 'Recurrence' => 'Ponavljanje', - 'Reminder' => 'Podsjetnik', - 'Select event type...' => 'Odaberite tip događaja...', - 'Settings' => 'Postavke', - 'Title' => 'Naziv', - 'Undecided' => 'Neodlučeno', - '{count} Participants' => '{count} Sudionik/a', -); diff --git a/messages/hr/views_entry_view.php b/messages/hr/views_entry_view.php deleted file mode 100644 index 21cdeec8..00000000 --- a/messages/hr/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Dodatne informacije', - 'All' => 'Sve', - 'Attend' => 'Prisustvo', - 'Decline' => 'Odbij', - 'Filter' => 'Filter', - 'Maybe' => 'Možda', - 'Participants' => 'Sudionici', - 'You are invited, please select your role:' => 'Pozvani ste, odaberite ulogu:', -); diff --git a/messages/hr/views_global_index.php b/messages/hr/views_global_index.php deleted file mode 100644 index cfb96826..00000000 --- a/messages/hr/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Filtriraj događaje', - 'Followed spaces' => 'Praćeni prostori', - 'Followed users' => 'Praćeni korisnici', - 'I\'m attending' => 'Ja prisustvujem', - 'My events' => 'Moji događaji', - 'My profile' => 'Moj profil', - 'My spaces' => 'Moji prostori', - 'Select calendars' => 'Odaberi kalendare', -); diff --git a/messages/hr/widgets_GlobalConfigMenu.php b/messages/hr/widgets_GlobalConfigMenu.php deleted file mode 100644 index ee695370..00000000 --- a/messages/hr/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Kalendari', - 'Defaults' => 'Zadano', - 'Event Types' => 'Vrste događaja', - 'Menu' => 'Izbornik', - 'Snippet' => 'Isječak', -); diff --git a/messages/hr/widgets_views_nextEvents.php b/messages/hr/widgets_views_nextEvents.php deleted file mode 100644 index 3d341bb7..00000000 --- a/messages/hr/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Nadolazeći događaji', - 'Open Calendar' => 'Otvori kalendar', -); diff --git a/messages/hr/widgets_views_participants.php b/messages/hr/widgets_views_participants.php deleted file mode 100644 index a59c72ff..00000000 --- a/messages/hr/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Sudionici', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/ht/activities.php b/messages/ht/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/ht/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/ht/base.php b/messages/ht/base.php index 88bcdffa..6ee55c4c 100644 --- a/messages/ht/base.php +++ b/messages/ht/base.php @@ -1,95 +1,145 @@ 'Apre', - 'Title' => 'Tit', - 'disabled' => 'andikape', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + 'List' => 'Lis', + 'Location' => '', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => '', + 'Next' => 'Apre', + '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' => 'Tit', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {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' => '', + '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' => 'andikape', + 'first' => '', + 'forth' => '', + 'global' => '', + '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}".' => '', ]; diff --git a/messages/ht/calendar.php b/messages/ht/calendar.php deleted file mode 100644 index 49e46e94..00000000 --- a/messages/ht/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'Lis', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/ht/config.php b/messages/ht/config.php index b40a8327..454bbe1a 100644 --- a/messages/ht/config.php +++ b/messages/ht/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Delete' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/ht/mail.php b/messages/ht/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/ht/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/ht/notification.php b/messages/ht/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/ht/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/ht/notifications_CalendarNotificationCategory.php b/messages/ht/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 79acb3f4..00000000 --- a/messages/ht/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/ht/notifications_views_CanceledEvent.php b/messages/ht/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/ht/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/ht/permissions.php b/messages/ht/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/ht/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/ht/recurrence.php b/messages/ht/recurrence.php deleted file mode 100644 index 5fe83811..00000000 --- a/messages/ht/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/ht/reminder.php b/messages/ht/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/ht/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/ht/settings.php b/messages/ht/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/ht/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/ht/views.php b/messages/ht/views.php new file mode 100644 index 00000000..71c0cb17 --- /dev/null +++ b/messages/ht/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => 'Tounen', + 'Calendars' => '', + 'Close' => 'Fèmen', + 'Decline' => '', + 'Declined' => '', + 'Defaults' => '', + 'Event Types' => '', + 'Everybody can participate' => '', + 'Filter' => '', + 'Filter events' => '', + 'Followed spaces' => '', + 'Followed users' => '', + 'General' => '', + 'I\'m attending' => '', + 'Invited' => '', + 'Maybe' => '', + 'Menu' => 'Meni', + 'My events' => '', + 'My profile' => 'Profil mwen', + 'My spaces' => '', + 'Next' => 'Apre', + 'No participants' => '', + 'Only by Invite' => '', + 'Open Calendar' => '', + 'Participants' => '', + 'Recurrence' => '', + 'Reminder' => '', + 'Select calendars' => '', + 'Select event type...' => '', + 'Settings' => 'Anviwònman', + 'Snippet' => '', + 'Title' => 'Tit', + 'Undecided' => '', + 'You are invited, please select your role:' => '', + '{count} Participants' => '', +]; diff --git a/messages/ht/views_activities_EntryResponse.php b/messages/ht/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/ht/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/ht/views_container-config_typesConfig.php b/messages/ht/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/ht/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/ht/views_entry_edit.php b/messages/ht/views_entry_edit.php deleted file mode 100644 index e18f4384..00000000 --- a/messages/ht/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'Tounen', - 'Close' => 'Fèmen', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '', - 'Invited' => '', - 'Next' => 'Apre', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Anviwònman', - 'Title' => 'Tit', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/ht/views_entry_view.php b/messages/ht/views_entry_view.php deleted file mode 100644 index 3701c09e..00000000 --- a/messages/ht/views_entry_view.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -]; diff --git a/messages/ht/views_global_index.php b/messages/ht/views_global_index.php deleted file mode 100644 index 6fbcf1bb..00000000 --- a/messages/ht/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Profil mwen', - 'Filter events' => '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/ht/widgets_GlobalConfigMenu.php b/messages/ht/widgets_GlobalConfigMenu.php deleted file mode 100644 index ccca359e..00000000 --- a/messages/ht/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'Meni', - 'Snippet' => '', -); diff --git a/messages/ht/widgets_views_nextEvents.php b/messages/ht/widgets_views_nextEvents.php deleted file mode 100644 index 870ac23b..00000000 --- a/messages/ht/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/ht/widgets_views_participants.php b/messages/ht/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/ht/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/hu/activities.php b/messages/hu/activities.php deleted file mode 100644 index 95ab7f60..00000000 --- a/messages/hu/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Naptár: Meghívás', - 'Calendar: attend' => 'Naptár: részvétel', - 'Calendar: decline' => 'Naptár: elutasítás', - 'Calendar: maybe' => 'Naptár: talán', - 'Whenever someone declines to participate in an event.' => 'Amikor valaki megtagadja, hogy részt vegyen egy eseményen.', - 'Whenever someone invites to participate in an event.' => 'Amikor valaki meghív egy eseményre.', - 'Whenever someone may be participating in an event.' => 'Amikor valaki talán részt vesz egy eseményen.', - 'Whenever someone participates in an event.' => 'Amikor valaki részt vesz egy eseményen.', -); diff --git a/messages/hu/base.php b/messages/hu/base.php index 5a8804e2..e73fd4d2 100644 --- a/messages/hu/base.php +++ b/messages/hu/base.php @@ -1,5 +1,5 @@ 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', @@ -9,24 +9,37 @@ '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!', @@ -40,21 +53,40 @@ '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.', + '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.' => 'Itt konfigurálhatja az esemény alapértelmezett emlékeztető beállításait. A felhasználók felülírhatják ezeket a beállításokat az Emlékeztető beállítása link segítségével.', + 'Hour' => 'Óra', '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}', + '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', @@ -64,6 +96,7 @@ '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', @@ -72,23 +105,41 @@ '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.', -); +]; diff --git a/messages/hu/calendar.php b/messages/hu/calendar.php deleted file mode 100644 index ed3f6626..00000000 --- a/messages/hu/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Nap', - 'List' => 'Lista', - 'Month' => 'Hónap', - 'Today' => 'Ma', - 'Week' => 'Hét', - 'Year' => 'Év', -); diff --git a/messages/hu/config.php b/messages/hu/config.php index 78b0268a..a23b6006 100644 --- a/messages/hu/config.php +++ b/messages/hu/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Naptár modul beállítás', - 'Confirm Deletion' => 'Törlés megerősítése', - 'Add \'Calendar\' to the main menu' => 'Adja hozzá a "Naptár" elemet a fő menühöz', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Kódrészlet (snippet) hozzáadása felhasználóid áttekintéséhez a közelgő eseményekről.', - 'Calendar Configuration' => 'Naptár konfiguráció', - 'Calendar default view mode settings' => 'A naptár alapértelmezett nézeti beállításai', - 'Create new type' => 'Új típus létrehozása', - 'Default basic settings' => 'Alapértelmezett alapbeállítások', - 'Default participation settings' => 'Alapértelmezett részvételi beállítások', - 'Delete' => 'Törlés', - 'Do you really want to delte this event type?' => 'Biztos hogy törlöd ezt az esemény típust?', - 'Event Type Configuration' => 'Esemény típus konfiguráció', - 'Half a year' => 'Fél év', - 'Here you can configure default settings for new calendar events.' => 'Itt állíthatod be az alapértelmezett beállításokat az új naptárbejegyzésekhez.', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Itt állíthatod be az alapértelmezett beállításokat az új naptárbejegyzésekhez. Ezek a beállítások a közösségek/profilok szintjén felülírhatók.', - 'Here you can configure default settings for the full calendar.' => 'Itt konfigurálhatja a teljes naptár alapértelmezett beállításait.', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => 'Itt konfigurálhatja a teljes naptár alapértelmezett beállításait. Ezek a beállítások közösség/profil szinten felülírhatók.', - 'Here you can manage and disable different calendars.' => 'Itt kezelheti és letilthatja a különböző naptárakat.', - 'Here you can manage your event types.' => 'Itt kezelheted eseménytípusaidat.', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Ha aktiválva van, a felső menüben lévő naptár elemet, illetve az áttekintésben lévő kódrészletet (snippet) csak azok látják, akiknek a naptár modul telepítve van.', - 'Include birthdays to dashboard snippet' => 'Születésnapok szerepeltetése az hírfolyamban', - 'Interval of upcoming events' => 'Közelgő események intervalluma.', - 'Max event items' => 'Események maximális száma', - 'Menu settings' => 'Menü beállítások', - 'Name' => 'Név', - 'One month' => 'Egy hónap', - 'One week' => 'Egy hét', - 'One year' => 'Egy év', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Csak akkor mutassa a naptár menüt és a kódrészletet (snippet), ha a naptár modul telepítve van a felhasználó profiljában.', - 'Reset' => 'Visszaállítás', - 'Show snippet' => 'Mutassa a kódrészletet (snippet)', - 'There are currently no event types available.' => 'Jelenleg nincs elérhető eseménytípus.', - 'Upcoming events snippet' => 'Közelgő események kódrészlet (snippet)', - 'View mode' => 'Nézet mód', + 'Calendar module configuration' => 'Naptár modul beállítás', + 'Confirm Deletion' => 'Törlés megerősítése', + 'Add \'Calendar\' to the main menu' => 'Adja hozzá a "Naptár" elemet a fő menühöz', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Kódrészlet (snippet) hozzáadása felhasználóid áttekintéséhez a közelgő eseményekről.', + 'Basic' => 'Alap', + 'Calendar Configuration' => 'Naptár konfiguráció', + 'Calendar default view mode settings' => 'A naptár alapértelmezett nézeti beállításai', + 'Create new type' => 'Új típus létrehozása', + 'Default basic settings' => 'Alapértelmezett alapbeállítások', + 'Default participation settings' => 'Alapértelmezett részvételi beállítások', + 'Delete' => 'Törlés', + 'Do you really want to delte this event type?' => 'Biztos hogy törlöd ezt az esemény típust?', + 'Event Type Configuration' => 'Esemény típus konfiguráció', + 'Full calendar' => 'Teljes naptár', + 'Half a year' => 'Fél év', + 'Here you can configure default settings for new calendar events.' => 'Itt állíthatod be az alapértelmezett beállításokat az új naptárbejegyzésekhez.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Itt állíthatod be az alapértelmezett beállításokat az új naptárbejegyzésekhez. Ezek a beállítások a közösségek/profilok szintjén felülírhatók.', + 'Here you can configure default settings for the full calendar.' => 'Itt konfigurálhatja a teljes naptár alapértelmezett beállításait.', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => 'Itt konfigurálhatja a teljes naptár alapértelmezett beállításait. Ezek a beállítások közösség/profil szinten felülírhatók.', + 'Here you can manage and disable different calendars.' => 'Itt kezelheti és letilthatja a különböző naptárakat.', + 'Here you can manage your event types.' => 'Itt kezelheted eseménytípusaidat.', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Ha aktiválva van, a felső menüben lévő naptár elemet, illetve az áttekintésben lévő kódrészletet (snippet) csak azok látják, akiknek a naptár modul telepítve van.', + 'Include birthdays to dashboard snippet' => 'Születésnapok szerepeltetése az hírfolyamban', + 'Interval of upcoming events' => 'Közelgő események intervalluma.', + 'Max event items' => 'Események maximális száma', + 'Menu settings' => 'Menü beállítások', + 'Name' => 'Név', + 'One month' => 'Egy hónap', + 'One week' => 'Egy hét', + 'One year' => 'Egy év', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Csak akkor mutassa a naptár menüt és a kódrészletet (snippet), ha a naptár modul telepítve van a felhasználó profiljában.', + 'Participation' => 'Részvétel', + 'Reminder' => 'Emlékeztető', + 'Reset' => 'Visszaállítás', + 'Show snippet' => 'Mutassa a kódrészletet (snippet)', + 'There are currently no event types available.' => 'Jelenleg nincs elérhető eseménytípus.', + 'Upcoming events snippet' => 'Közelgő események kódrészlet (snippet)', + 'View mode' => 'Nézet mód', ]; diff --git a/messages/hu/mail.php b/messages/hu/mail.php deleted file mode 100644 index 93b123d2..00000000 --- a/messages/hu/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Leírás', - 'Location' => 'Helyszín', - 'Organizer' => 'Szervező', - 'Participants info' => 'Információk a résztvevőkről', - 'Starting' => 'Kezdés', - 'View Online: {url}' => 'Online megtekintés: {url}', -); diff --git a/messages/hu/notification.php b/messages/hu/notification.php new file mode 100644 index 00000000..b7635aa8 --- /dev/null +++ b/messages/hu/notification.php @@ -0,0 +1,25 @@ + 'Naptár', + 'Calendar: Invite' => 'Naptár: Meghívás', + 'Calendar: attend' => 'Naptár: részvétel', + 'Calendar: decline' => 'Naptár: elutasítás', + 'Calendar: maybe' => 'Naptár: talán', + 'Description' => 'Leírás', + 'Location' => 'Helyszín', + 'Organizer' => 'Szervező', + 'Participants info' => 'Információk a résztvevőkről', + 'Receive Calendar related Notifications.' => 'Naptárral kapcsolatos értesítések fogadása.', + 'Starting' => 'Kezdés', + 'View Online: {url}' => 'Online megtekintés: {url}', + 'Whenever someone declines to participate in an event.' => 'Amikor valaki megtagadja, hogy részt vegyen egy eseményen.', + 'Whenever someone invites to participate in an event.' => 'Amikor valaki meghív egy eseményre.', + 'Whenever someone may be participating in an event.' => 'Amikor valaki talán részt vesz egy eseményen.', + 'Whenever someone participates in an event.' => 'Amikor valaki részt vesz egy eseményen.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} törölte a(z) "{contentTitle}" eseményt a(z) {spaceName} közösségben.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} törölte a(z) "{contentTitle}" eseményt.', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} újranyitotta a(z) "{contentTitle}" eseményt a(z) {spaceName} közösségben.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} újranyitotta a(z) "{contentTitle}" eseményt', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} frissítette a(z) "{contentTitle}" eseményt a(z) {spaceName} közösségben.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} frissítette a(z) {contentTitle} eseményt.', +]; diff --git a/messages/hu/notifications_CalendarNotificationCategory.php b/messages/hu/notifications_CalendarNotificationCategory.php deleted file mode 100644 index aa1707cc..00000000 --- a/messages/hu/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Naptár', - 'Receive Calendar related Notifications.' => 'Naptárral kapcsolatos értesítések fogadása.', -); diff --git a/messages/hu/notifications_views_CanceledEvent.php b/messages/hu/notifications_views_CanceledEvent.php deleted file mode 100644 index 12877ba7..00000000 --- a/messages/hu/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} törölte a(z) "{contentTitle}" eseményt a(z) {spaceName} közösségben.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} törölte a(z) "{contentTitle}" eseményt.', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} frissítette a(z) "{contentTitle}" eseményt a(z) {spaceName} közösségben.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} frissítette a(z) {contentTitle} eseményt.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} újranyitotta a(z) "{contentTitle}" eseményt a(z) {spaceName} közösségben.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} újranyitotta a(z) "{contentTitle}" eseményt', -]; diff --git a/messages/hu/permissions.php b/messages/hu/permissions.php deleted file mode 100644 index 61db3022..00000000 --- a/messages/hu/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Bejegyzés létrehozása', - 'Manage entries' => 'Bejegyzések kezelése', -); diff --git a/messages/hu/recurrence.php b/messages/hu/recurrence.php deleted file mode 100644 index fd4fdaf7..00000000 --- a/messages/hu/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Után (előfordulások)', - 'Day' => 'Nap', - 'Days' => 'Nap', - 'Delete all events' => 'Az összes esemény törlé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', - 'End' => 'Befejezés', - 'Invalid day of month given' => 'A megadott nap a hónapban érvénytelen', - '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', - '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', - 'On date' => 'Dátumon', - 'Repeat every' => 'Ismétlés ekkor', - 'This event does not support recurrent events' => 'Ez az esemény nem támogatja a visszatérő eseményeket', - 'Week' => 'Hét', - 'Weeks' => 'Hét', - 'Year' => 'Év', - 'Years' => 'Év', - 'first' => 'első', - 'forth' => 'következő', - 'last' => 'utolsó', - 'on weekdays' => 'hét napjain', - 'second' => 'másodperc', - 'third' => 'harmadik', -); diff --git a/messages/hu/reminder.php b/messages/hu/reminder.php deleted file mode 100644 index 61438741..00000000 --- a/messages/hu/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Egyéni emlékeztető', - 'Day' => 'Nap', - 'Default reminder settings' => 'Az emlékeztető alapértelmezett beállításai', - '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.' => 'Itt konfigurálhatja az esemény alapértelmezett emlékeztető beállításait. A felhasználók felülírhatják ezeket a beállításokat az Emlékeztető beállítása link segítségével.', - 'Hour' => 'Óra', - 'Minute' => 'Perc', - 'No reminder' => 'Nincs emlékeztető', - 'Upcoming {type}' => 'Közelgő {type}', - 'Upcoming {type}: {title}' => 'Közelgő {type}: {title}', - 'Use default reminder' => 'Alapértelmezett emlékeztető használata', - 'Week' => 'Hét', - 'You have an {type} coming up' => 'Önnek {type} fog következni', - 'You have an {type} coming up: {title}' => 'Önnek {type} fog következni: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Az esemény emlékeztető beállításai: \'{title}\'', -); diff --git a/messages/hu/settings.php b/messages/hu/settings.php deleted file mode 100644 index 8af79116..00000000 --- a/messages/hu/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Alap', - 'Full calendar' => 'Teljes naptár', - 'Participation' => 'Részvétel', - 'Reminder' => 'Emlékeztető', -); diff --git a/messages/hu/views.php b/messages/hu/views.php new file mode 100644 index 00000000..0068707c --- /dev/null +++ b/messages/hu/views.php @@ -0,0 +1,59 @@ + '%displayName% nem vehet részt ebben: %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% létrehozott egy új %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% részt vehet itt: %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% meghívást kapott ide: %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% esetleg részt vehet itt: %contentTitle%.', + ':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', + '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ő', +]; diff --git a/messages/hu/views_activities_EntryCreated.php b/messages/hu/views_activities_EntryCreated.php deleted file mode 100644 index 79e07b8c..00000000 --- a/messages/hu/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% létrehozott egy új %contentTitle%.', -); diff --git a/messages/hu/views_activities_EntryResponse.php b/messages/hu/views_activities_EntryResponse.php deleted file mode 100644 index 209f1ddc..00000000 --- a/messages/hu/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% nem vehet részt ebben: %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% részt vehet itt: %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% meghívást kapott ide: %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% esetleg részt vehet itt: %contentTitle%.', -); diff --git a/messages/hu/views_container-config_typesConfig.php b/messages/hu/views_container-config_typesConfig.php deleted file mode 100644 index e97b95df..00000000 --- a/messages/hu/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Új eseménytípus létrehozása', - 'Edit calendar' => 'Naptár szerkesztése', - 'Edit event type' => 'Eseménytípus szerkesztése', -); diff --git a/messages/hu/views_entry_edit.php b/messages/hu/views_entry_edit.php deleted file mode 100644 index 21ce1e2d..00000000 --- a/messages/hu/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Esemény létrehozása', - 'Edit Event' => 'Esemény Szerkesztése', - 'Edit recurring event' => 'Ismétlődő esemény szerkesztése', - 'Are you sure want to remove the participant from the event?' => 'Biztosan eltávolítja a résztvevőt az eseményből?', - 'Attending' => 'Részt vesz', - 'Back' => 'Vissza', - 'Close' => 'Bezárás', - 'Declined' => 'Elutasítva', - 'Everybody can participate' => 'Bárki részt vehet', - 'General' => 'Általános', - 'Invited' => 'Meghívva', - 'Next' => 'Következő', - 'No participants' => 'Nincsenek résztvevők', - 'Only by Invite' => 'Csak meghívással', - 'Participants' => 'Résztvevők', - 'Recurrence' => 'Ismétlődés', - 'Reminder' => 'Emlékeztető', - 'Select event type...' => 'Eseménytípus kiválasztása...', - 'Settings' => 'Beállítások', - 'Title' => 'Cím', - 'Undecided' => 'Még nincs eldöntve', - '{count} Participants' => '{count} résztvevő', -); diff --git a/messages/hu/views_entry_view.php b/messages/hu/views_entry_view.php deleted file mode 100644 index d2a34b64..00000000 --- a/messages/hu/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'További információ', - 'All' => 'Minden', - 'Attend' => 'Részt vesz', - 'Decline' => 'Nem vesz részt', - 'Filter' => 'Szűrés', - 'Maybe' => 'Talán', - 'Participants' => 'Résztvevők', - 'You are invited, please select your role:' => 'Önt meghívták, kérjük, válassza ki a szerepét:', -); diff --git a/messages/hu/views_global_index.php b/messages/hu/views_global_index.php deleted file mode 100644 index 2ec9ea40..00000000 --- a/messages/hu/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Események szűrése', - 'Followed spaces' => 'Követett közösségek', - 'Followed users' => 'Követett felhasználók', - 'I\'m attending' => 'Részt veszek', - 'My events' => 'Eseményeim', - 'My profile' => 'Profilom', - 'My spaces' => 'Közösségeim', - 'Select calendars' => 'Naptárak kiválasztása', -); diff --git a/messages/hu/widgets_GlobalConfigMenu.php b/messages/hu/widgets_GlobalConfigMenu.php deleted file mode 100644 index a6147037..00000000 --- a/messages/hu/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Naptárak', - 'Defaults' => 'Alapértelmezett', - 'Event Types' => 'Eseménytípusok', - 'Menu' => 'Menü', - 'Snippet' => 'Kódrészlet (snippet)', -); diff --git a/messages/hu/widgets_views_nextEvents.php b/messages/hu/widgets_views_nextEvents.php deleted file mode 100644 index ac5bcd88..00000000 --- a/messages/hu/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Közelgő események', - 'Open Calendar' => 'Naptár megnyitása', -); diff --git a/messages/hu/widgets_views_participants.php b/messages/hu/widgets_views_participants.php deleted file mode 100644 index 76f80e71..00000000 --- a/messages/hu/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count Részt vesz', - ':count Declined' => ':count Elutasítva', - ':count Invited' => ':count Meghívva', - ':count Undecided' => ':count Még nem döntött', - 'Participants' => 'Résztvevők', -); diff --git a/messages/id/activities.php b/messages/id/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/id/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/id/base.php b/messages/id/base.php index d1f65d5e..1f37acb1 100644 --- a/messages/id/base.php +++ b/messages/id/base.php @@ -1,95 +1,145 @@ 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', - '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' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable Reminder' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter by types' => '', - 'Friday' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - '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' => '', - 'Reopen Event' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - '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' => '', - '{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}".' => '', + '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' => '', + 'Attending' => 'Menghadiri', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Ulangtahun', + 'Calendar' => 'kalender', + 'Cancel Event' => 'Batalkan Acara', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => 'Deskripsi', + '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 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' => '', + 'ID' => 'ID', + 'In order to add events to your profile, you have to enable the calendar module first.' => '', + '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}' => '', + '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' => '', + 'Set reminder' => '', + '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' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/id/calendar.php b/messages/id/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/id/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/id/config.php b/messages/id/config.php index 09872c68..46be35f3 100644 --- a/messages/id/config.php +++ b/messages/id/config.php @@ -1,38 +1,41 @@ 'Hapus', - 'Name' => 'Nama', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'Dasar', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Hapus', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'Nama', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/id/mail.php b/messages/id/mail.php deleted file mode 100644 index 2de7abf3..00000000 --- a/messages/id/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Deskripsi', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/id/notification.php b/messages/id/notification.php new file mode 100644 index 00000000..17ac5786 --- /dev/null +++ b/messages/id/notification.php @@ -0,0 +1,25 @@ + 'kalender', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Deskripsi', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/id/notifications_CalendarNotificationCategory.php b/messages/id/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 7b98da55..00000000 --- a/messages/id/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'kalender', - 'Receive Calendar related Notifications.' => '', -); diff --git a/messages/id/notifications_views_CanceledEvent.php b/messages/id/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/id/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/id/permissions.php b/messages/id/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/id/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/id/recurrence.php b/messages/id/recurrence.php deleted file mode 100644 index 3652512d..00000000 --- a/messages/id/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Tidak pernah', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/id/reminder.php b/messages/id/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/id/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/id/settings.php b/messages/id/settings.php deleted file mode 100644 index 025cdfe0..00000000 --- a/messages/id/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Dasar', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/id/views.php b/messages/id/views.php new file mode 100644 index 00000000..df7335ac --- /dev/null +++ b/messages/id/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '%NamaDisplay% Buat baru %judulkonten%.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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 ' => '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', + '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' => '', +]; diff --git a/messages/id/views_activities_EntryCreated.php b/messages/id/views_activities_EntryCreated.php deleted file mode 100644 index ba0f011d..00000000 --- a/messages/id/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%NamaDisplay% Buat baru %judulkonten%.', -); diff --git a/messages/id/views_activities_EntryResponse.php b/messages/id/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/id/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/id/views_container-config_typesConfig.php b/messages/id/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/id/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/id/views_entry_edit.php b/messages/id/views_entry_edit.php deleted file mode 100644 index 70d90209..00000000 --- a/messages/id/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Menghadiri', - 'Back' => 'Kembali', - 'Close' => 'Tutup', - 'Declined' => '', - 'Everybody can participate' => 'Semua orang dapat berpartisipasi', - 'General' => 'Umum', - 'Invited' => '', - 'Next' => 'Selanjutnya', - 'No participants' => 'Tidak berpartisipasi', - 'Only by Invite' => '', - 'Participants' => 'Partisipasi', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Pengaturan', - 'Title' => 'Judul', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/id/views_entry_view.php b/messages/id/views_entry_view.php deleted file mode 100644 index 1a819bd0..00000000 --- a/messages/id/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Semua', - 'Attend' => 'Hadir', - 'Decline' => 'Batal', - 'Filter' => 'Filter', - 'Maybe' => 'Mungkin', - 'Participants' => 'Partisipasi', - 'You are invited, please select your role:' => '', -); diff --git a/messages/id/views_global_index.php b/messages/id/views_global_index.php deleted file mode 100644 index a2ea26af..00000000 --- a/messages/id/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Ikuti Ruang', - 'Followed users' => 'Ikuti pengguna', - 'My events' => 'Acara Saya', - 'My profile' => 'Profil saya', - 'My spaces' => 'Ruang Saya', - 'Filter events' => '', - 'I\'m attending' => '', - 'Select calendars' => '', -]; diff --git a/messages/id/widgets_GlobalConfigMenu.php b/messages/id/widgets_GlobalConfigMenu.php deleted file mode 100644 index 1c9fd5f9..00000000 --- a/messages/id/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'Menu', - 'Snippet' => '', -); diff --git a/messages/id/widgets_views_nextEvents.php b/messages/id/widgets_views_nextEvents.php deleted file mode 100644 index 75905f05..00000000 --- a/messages/id/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Upcoming events ' => 'Acara Selanjutnya', -]; diff --git a/messages/id/widgets_views_participants.php b/messages/id/widgets_views_participants.php deleted file mode 100644 index 6c659745..00000000 --- a/messages/id/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Partisipasi', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/it/activities.php b/messages/it/activities.php deleted file mode 100644 index 8cd8fc12..00000000 --- a/messages/it/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Calendario: Invita', - 'Calendar: attend' => 'Partecipo', - 'Calendar: decline' => 'Declino', - 'Calendar: maybe' => 'Forse', - 'Whenever someone declines to participate in an event.' => 'Ogni volta che qualcuno rinuncia a partecipare ad un evento', - 'Whenever someone invites to participate in an event.' => 'Ogni volta che qualcuno invita a partecipare a un evento.', - 'Whenever someone may be participating in an event.' => 'Ogni volta che qualcuno potrebbe partecipare ad un evento', - 'Whenever someone participates in an event.' => 'Ogni volta che qualcuno effettivamente partecipa ad un evento', -); diff --git a/messages/it/base.php b/messages/it/base.php index 47540568..c3338349 100644 --- a/messages/it/base.php +++ b/messages/it/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Aggiungi il calendario del profilo', 'Choose target calendar' => 'Scegli il calendario di destinazione', 'Reminder settings' => 'Impostazioni del promemoria ', @@ -9,24 +9,37 @@ '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ò', 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', '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!', @@ -40,21 +53,40 @@ '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.', + '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.' => 'Qui puoi configurare le impostazioni di promemoria predefinite per questo evento. Gli utenti possono sovrascrivere queste impostazioni tramite il collegamento Imposta promemoria .', + 'Hour' => 'Ora', '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}', + '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', @@ -64,6 +96,7 @@ 'Public' => 'Pubblico', 'Recurring' => 'Ricorrente', 'Reopen Event' => 'Riapri evento', + 'Repeat every' => 'Ripeti ogni', 'Saturday' => 'Sabato', 'Set reminder' => 'Imposta promemoria', 'Start Date' => 'Data inizio', @@ -72,23 +105,41 @@ '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}', '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', + '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}".', -); +]; diff --git a/messages/it/calendar.php b/messages/it/calendar.php deleted file mode 100644 index 4fede6ac..00000000 --- a/messages/it/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Giorno', - 'List' => 'Lista', - 'Month' => 'Mese', - 'Today' => 'Oggi', - 'Week' => 'Settimana', - 'Year' => 'Anno', -); diff --git a/messages/it/config.php b/messages/it/config.php index 5659da37..d8d904a7 100644 --- a/messages/it/config.php +++ b/messages/it/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => 'Configurazione del modulo Calendario', 'Confirm Deletion' => 'Conferma Cancellazione', 'Add \'Calendar\' to the main menu' => 'Aggiungi "Calendario" al menu principale', 'Adds an snippet with upcoming events to your users dashboard.' => 'Aggiunge un snippet con i prossimi eventi al dashboard degli utenti.', + 'Basic' => 'Di base', 'Calendar Configuration' => 'Configurazione calendario', 'Calendar default view mode settings' => 'Impostazioni della modalità di visualizzazione predefinita del calendario', 'Create new type' => 'Crea un nuovo tipo', @@ -12,6 +13,7 @@ 'Delete' => 'Cancella', 'Do you really want to delte this event type?' => 'Vuoi davvero cancellare questo tipo di evento?', 'Event Type Configuration' => 'Configurazione Tipo di Evento', + 'Full calendar' => 'Calendario completo', 'Half a year' => 'Semestre', 'Here you can configure default settings for new calendar events.' => 'Qui è possibile configurare le impostazioni predefinite per i nuovi eventi del calendario.', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Qui è possibile configurare le impostazioni predefinite per i nuovi eventi del calendario. Queste impostazioni possono essere sovrascritte a livello di spazio/profilo.', @@ -29,9 +31,11 @@ 'One week' => 'Una settimana', 'One year' => 'Un anno', 'Only show top menu item and snippet if the module is installed in the users profile' => 'Mostra solo la voce di menu superiore e lo snippet solo se il modulo è installato nel profilo utente', + 'Participation' => 'Partecipazione', + 'Reminder' => 'Promemoria', 'Reset' => 'Reimposta', 'Show snippet' => 'Mostra snippet', 'There are currently no event types available.' => 'Attualmente non sono disponibili tipi di eventi.', 'Upcoming events snippet' => 'snippet Eventi Imminenti', 'View mode' => 'Modalità di visualizzazione', -); +]; diff --git a/messages/it/mail.php b/messages/it/mail.php deleted file mode 100644 index 8ccfb66f..00000000 --- a/messages/it/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Descrizione', - 'Location' => 'Luogo', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'Visualizza online: {url}', -); diff --git a/messages/it/notification.php b/messages/it/notification.php new file mode 100644 index 00000000..c0f04ed5 --- /dev/null +++ b/messages/it/notification.php @@ -0,0 +1,25 @@ + 'Caledario', + 'Calendar: Invite' => 'Calendario: Invita', + 'Calendar: attend' => 'Partecipo', + 'Calendar: decline' => 'Declino', + 'Calendar: maybe' => 'Forse', + 'Description' => 'Descrizione', + 'Location' => 'Luogo', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Ricevi le notifiche relative al calendario.', + 'Starting' => '', + 'View Online: {url}' => 'Visualizza online: {url}', + 'Whenever someone declines to participate in an event.' => 'Ogni volta che qualcuno rinuncia a partecipare ad un evento', + 'Whenever someone invites to participate in an event.' => 'Ogni volta che qualcuno invita a partecipare a un evento.', + 'Whenever someone may be participating in an event.' => 'Ogni volta che qualcuno potrebbe partecipare ad un evento', + 'Whenever someone participates in an event.' => 'Ogni volta che qualcuno effettivamente partecipa ad un evento', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha cancellato l\'evento "{contentTitle}" nello spazio {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} ha cancellato l\'evento "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha riaperto l\'evento "{contentTitle}" nello spazio {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} ha riaperto l\'evento "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha aggiornato l\'evento "{contentTitle}" nello spazio {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} ha appena aggiornato l\'evento {contentTitle}.', +]; diff --git a/messages/it/notifications_CalendarNotificationCategory.php b/messages/it/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 67c2711e..00000000 --- a/messages/it/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Caledario', - 'Receive Calendar related Notifications.' => 'Ricevi le notifiche relative al calendario.', -); diff --git a/messages/it/notifications_views_CanceledEvent.php b/messages/it/notifications_views_CanceledEvent.php deleted file mode 100644 index 23b27f42..00000000 --- a/messages/it/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} ha cancellato l\'evento "{contentTitle}" nello spazio {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} ha cancellato l\'evento "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha aggiornato l\'evento "{contentTitle}" nello spazio {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} ha appena aggiornato l\'evento {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ha riaperto l\'evento "{contentTitle}" nello spazio {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} ha riaperto l\'evento "{contentTitle}".', -]; diff --git a/messages/it/permissions.php b/messages/it/permissions.php deleted file mode 100644 index c6b6aea8..00000000 --- a/messages/it/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Crea voce', - 'Manage entries' => 'Gestione delle voci', -); diff --git a/messages/it/recurrence.php b/messages/it/recurrence.php deleted file mode 100644 index 5637b1e2..00000000 --- a/messages/it/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Dopo (occorrenze)', - 'Day' => 'Giorno', - 'Days' => 'Giorni', - 'Delete all events' => 'Cancella tutti gli eventi', - 'Edit all events' => 'Modifica tutti gli eventi', - 'Edit this and following events' => 'Modifica questo e gli eventi seguenti', - 'Edit this event' => 'Modifica questo evento', - 'End' => 'Fine', - 'Invalid day of month given' => 'Giorno del mese specificato non valido', - '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', - 'Month' => 'Mese', - 'Monthly on day {dayOfMonth}' => 'Mensile nel giorno {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Mensile in {position} {dayOfWeek}', - 'Months' => 'Mesi', - 'Never' => 'Mai', - 'On date' => 'sulla data', - 'Repeat every' => 'Ripeti ogni', - 'This event does not support recurrent events' => 'Questo evento non supporta gli eventi ricorrenti', - 'Week' => 'Settimana', - 'Weeks' => 'Settimane', - 'Year' => 'Anno', - 'Years' => 'Anni', - 'first' => 'primo', - 'forth' => 'quarto', - 'last' => 'ultimo', - 'on weekdays' => 'nei giorni della settimana', - 'second' => 'secondo', - 'third' => 'terzo', -); diff --git a/messages/it/reminder.php b/messages/it/reminder.php deleted file mode 100644 index bc7a5d3c..00000000 --- a/messages/it/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Promemoria personalizzato', - 'Day' => 'Giorno', - 'Default reminder settings' => 'Impostazioni predefinite promemoria', - '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.' => 'Qui puoi configurare le impostazioni di promemoria predefinite per questo evento. Gli utenti possono sovrascrivere queste impostazioni tramite il collegamento Imposta promemoria .', - 'Hour' => 'Ora', - 'Minute' => 'Minuto', - 'No reminder' => 'Nessun promemoria', - 'Upcoming {type}' => 'In arrivo {type}', - 'Upcoming {type}: {title}' => 'In arrivo {type}: {title}', - 'Use default reminder' => 'Usa promemoria predefinito', - 'Week' => 'Settimana', - '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}\' ', -); diff --git a/messages/it/settings.php b/messages/it/settings.php deleted file mode 100644 index 38effd99..00000000 --- a/messages/it/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Di base', - 'Full calendar' => 'Calendario completo', - 'Participation' => 'Partecipazione', - 'Reminder' => 'Promemoria', -); diff --git a/messages/it/views.php b/messages/it/views.php new file mode 100644 index 00000000..6642608a --- /dev/null +++ b/messages/it/views.php @@ -0,0 +1,59 @@ + '%displayName% non può partecipare a %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% ha creato un nuovo %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% sta partecipando a %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% è invitato a %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% potrebbe partecipare a %contentTitle%.', + ':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', + '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', +]; diff --git a/messages/it/views_activities_EntryCreated.php b/messages/it/views_activities_EntryCreated.php deleted file mode 100644 index 633ef95b..00000000 --- a/messages/it/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% ha creato un nuovo %contentTitle%.', -); diff --git a/messages/it/views_activities_EntryResponse.php b/messages/it/views_activities_EntryResponse.php deleted file mode 100644 index 152f7cc6..00000000 --- a/messages/it/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% non può partecipare a %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% sta partecipando a %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% è invitato a %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% potrebbe partecipare a %contentTitle%.', -); diff --git a/messages/it/views_container-config_typesConfig.php b/messages/it/views_container-config_typesConfig.php deleted file mode 100644 index f956026e..00000000 --- a/messages/it/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Crea un nuovo tipo di evento', - 'Edit calendar' => 'Modifica calendario', - 'Edit event type' => 'Modifica il tipo di evento', -); diff --git a/messages/it/views_entry_edit.php b/messages/it/views_entry_edit.php deleted file mode 100644 index 1a59f058..00000000 --- a/messages/it/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Crea Evento', - 'Edit Event' => 'Modifica Evento', - 'Edit recurring event' => 'Modifica Evento ricorrente', - 'Are you sure want to remove the participant from the event?' => 'Sei sicuro di voler rimuovere il partecipante dall\'evento?', - 'Attending' => 'Parteciperò', - 'Back' => 'Indietro', - 'Close' => 'Chiudi', - 'Declined' => 'Rifiutato', - 'Everybody can participate' => 'Ognuno può partecipare', - 'General' => 'Generale', - 'Invited' => 'Invitato', - 'Next' => 'Avanti', - 'No participants' => 'Nessun partecipante', - 'Only by Invite' => 'Solo su invito', - 'Participants' => 'Partecipanti', - 'Recurrence' => 'Ricorrenza', - 'Reminder' => 'Promemoria', - 'Select event type...' => 'Seleziona il tipo di evento....', - 'Settings' => 'Impostazioni', - 'Title' => 'Titolo', - 'Undecided' => 'Indeciso', - '{count} Participants' => '{count} Partecipanti', -); diff --git a/messages/it/views_entry_view.php b/messages/it/views_entry_view.php deleted file mode 100644 index 0c55f53b..00000000 --- a/messages/it/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Informazioni aggiuntive', - 'All' => 'Tutti', - 'Attend' => 'Partecipa', - 'Decline' => 'Rifiuta', - 'Filter' => 'Filtro', - 'Maybe' => 'Forse', - 'Participants' => 'Partecipanti', - 'You are invited, please select your role:' => 'Sei invitato, seleziona il tuo ruolo:', -); diff --git a/messages/it/views_global_index.php b/messages/it/views_global_index.php deleted file mode 100644 index 3a87df0a..00000000 --- a/messages/it/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Spazi che seguo', - 'Followed users' => 'Utenti che seguo', - 'I\'m attending' => 'sto partecipando', - 'My events' => 'I miei eventi', - 'My profile' => 'il mio profilo', - 'My spaces' => 'I miei spazi', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/it/widgets_GlobalConfigMenu.php b/messages/it/widgets_GlobalConfigMenu.php deleted file mode 100644 index 502d37fa..00000000 --- a/messages/it/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Calendari', - 'Defaults' => 'Predefinite', - 'Event Types' => 'Tipi di evento', - 'Menu' => 'Menù', - 'Snippet' => 'Snippet', -); diff --git a/messages/it/widgets_views_nextEvents.php b/messages/it/widgets_views_nextEvents.php deleted file mode 100644 index 191bc168..00000000 --- a/messages/it/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Eventi imminenti', - 'Open Calendar' => 'Apri Calendario', -); diff --git a/messages/it/widgets_views_participants.php b/messages/it/widgets_views_participants.php deleted file mode 100644 index b892acbc..00000000 --- a/messages/it/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count Partecipanti', - ':count Declined' => ':count Rifiutati', - ':count Invited' => ':count Invitati', - ':count Undecided' => ':count Indecisi', - 'Participants' => 'Partecipanti', -); diff --git a/messages/ja/activities.php b/messages/ja/activities.php deleted file mode 100644 index a8e28283..00000000 --- a/messages/ja/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'カレンダー:招待', - 'Calendar: attend' => 'カレンダー:出席', - 'Calendar: decline' => 'カレンダー:辞退', - 'Calendar: maybe' => 'カレンダー:多分', - 'Whenever someone declines to participate in an event.' => '誰かがイベントへの参加を辞退する時。', - 'Whenever someone invites to participate in an event.' => '誰かがイベントに参加するよう招待する時。', - 'Whenever someone may be participating in an event.' => '誰かがイベントに参加している場合はいつでも。', - 'Whenever someone participates in an event.' => '誰かがイベントに参加する度に。', -); diff --git a/messages/ja/base.php b/messages/ja/base.php index 6ddfab99..ddd8c090 100644 --- a/messages/ja/base.php +++ b/messages/ja/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'プロフィールカレンダーを追加', 'Choose target calendar' => 'ターゲットカレンダーを選択', 'Reminder settings' => 'リマインダー の設定', @@ -9,24 +9,37 @@ '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' => 'カレンダー', '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!' => '終了時刻は開始時刻より後になるように設定してください!', @@ -40,21 +53,40 @@ '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.' => 'ここでグローバルなデフォルト リマインダーを設定できます。これらの設定はスペース/プロファイル レベルで上書きできます。', + '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' => '時', '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}', + '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' => '参加状況', @@ -64,6 +96,7 @@ 'Public' => '公開', 'Recurring' => '繰り返し', 'Reopen Event' => 'イベントを再公開', + 'Repeat every' => '繰り返す間隔', 'Saturday' => '土曜', 'Set reminder' => 'リマインダーを設定', 'Start Date' => '開始日', @@ -72,23 +105,41 @@ '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}" に招待しました', -); +]; diff --git a/messages/ja/calendar.php b/messages/ja/calendar.php deleted file mode 100644 index 0c0be80d..00000000 --- a/messages/ja/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '日', - 'List' => 'リスト', - 'Month' => '月', - 'Today' => '今日', - 'Week' => '週', - 'Year' => '年', -); diff --git a/messages/ja/config.php b/messages/ja/config.php index ea344aa3..62423c77 100644 --- a/messages/ja/config.php +++ b/messages/ja/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'カレンダー モジュールの構成', - 'Confirm Deletion' => '確認 削除', - 'Add \'Calendar\' to the main menu' => 'メインメニューに \'カレンダー\' を追加', - 'Adds an snippet with upcoming events to your users dashboard.' => '今後のイベントのスニペットをユーザー ダッシュボードに追加します。', - 'Calendar Configuration' => 'カレンダーの構成', - 'Calendar default view mode settings' => '予定表の既定の表示モードの設定', - 'Create new type' => '新しいタイプを作成', - 'Default basic settings' => 'デフォルトの基本設定', - 'Default participation settings' => 'デフォルトの参加設定', - 'Delete' => '削除', - 'Do you really want to delte this event type?' => '本当にこのイベント タイプを削除しますか?', - 'Event Type Configuration' => 'イベント タイプの設定', - 'Half a year' => '半年', - 'Here you can configure default settings for new calendar events.' => 'ここで新しいカレンダー イベントのデフォルト設定を構成できます。', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'ここで新しいカレンダー イベントのデフォルト設定を構成できます。これらの設定はスペース/プロファイル レベルで上書きできます。', - 'Here you can configure default settings for the full calendar.' => 'ここではフル カレンダーのデフォルト設定を構成できます。', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => 'ここではフル カレンダーのデフォルト設定を構成できます。これらの設定はスペース/プロファイル レベルで上書きできます。', - 'Here you can manage and disable different calendars.' => 'ここでは様々なカレンダーを管理および無効にする事ができます。', - 'Here you can manage your event types.' => 'ここでイベントの種類を管理できます。', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'アクティブ化されている場合、カレンダーのトップ メニュー項目とダッシュボード スニペットは、プロファイルにカレンダー モジュールがインストールされているユーザーにのみ表示されます。', - 'Include birthdays to dashboard snippet' => '誕生日をダッシュボード スニペットに含める', - 'Interval of upcoming events' => '今後のイベントの間隔', - 'Max event items' => '最大イベントアイテム', - 'Menu settings' => 'メニュー設定', - 'Name' => '名前', - 'One month' => '月', - 'One week' => '週', - 'One year' => '年', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'モジュールがユーザー プロファイルにインストールされている場合は、トップ メニュー項目とスニペットのみを表示します', - 'Reset' => 'リセット', - 'Show snippet' => 'スニペットを表示', - 'There are currently no event types available.' => '現在、利用可能なイベントの種類はありません。', - 'Upcoming events snippet' => '今後のイベント スニペット', - 'View mode' => 'ビューモード', + 'Calendar module configuration' => 'カレンダー モジュールの構成', + 'Confirm Deletion' => '確認 削除', + 'Add \'Calendar\' to the main menu' => 'メインメニューに \'カレンダー\' を追加', + 'Adds an snippet with upcoming events to your users dashboard.' => '今後のイベントのスニペットをユーザー ダッシュボードに追加します。', + 'Basic' => '基本', + 'Calendar Configuration' => 'カレンダーの構成', + 'Calendar default view mode settings' => '予定表の既定の表示モードの設定', + 'Create new type' => '新しいタイプを作成', + 'Default basic settings' => 'デフォルトの基本設定', + 'Default participation settings' => 'デフォルトの参加設定', + 'Delete' => '削除', + 'Do you really want to delte this event type?' => '本当にこのイベント タイプを削除しますか?', + 'Event Type Configuration' => 'イベント タイプの設定', + 'Full calendar' => 'フルカレンダー', + 'Half a year' => '半年', + 'Here you can configure default settings for new calendar events.' => 'ここで新しいカレンダー イベントのデフォルト設定を構成できます。', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'ここで新しいカレンダー イベントのデフォルト設定を構成できます。これらの設定はスペース/プロファイル レベルで上書きできます。', + 'Here you can configure default settings for the full calendar.' => 'ここではフル カレンダーのデフォルト設定を構成できます。', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => 'ここではフル カレンダーのデフォルト設定を構成できます。これらの設定はスペース/プロファイル レベルで上書きできます。', + 'Here you can manage and disable different calendars.' => 'ここでは様々なカレンダーを管理および無効にする事ができます。', + 'Here you can manage your event types.' => 'ここでイベントの種類を管理できます。', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'アクティブ化されている場合、カレンダーのトップ メニュー項目とダッシュボード スニペットは、プロファイルにカレンダー モジュールがインストールされているユーザーにのみ表示されます。', + 'Include birthdays to dashboard snippet' => '誕生日をダッシュボード スニペットに含める', + 'Interval of upcoming events' => '今後のイベントの間隔', + 'Max event items' => '最大イベントアイテム', + 'Menu settings' => 'メニュー設定', + 'Name' => '名前', + 'One month' => '月', + 'One week' => '週', + 'One year' => '年', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'モジュールがユーザー プロファイルにインストールされている場合は、トップ メニュー項目とスニペットのみを表示します', + 'Participation' => '参加', + 'Reminder' => 'リマインダー', + 'Reset' => 'リセット', + 'Show snippet' => 'スニペットを表示', + 'There are currently no event types available.' => '現在、利用可能なイベントの種類はありません。', + 'Upcoming events snippet' => '今後のイベント スニペット', + 'View mode' => 'ビューモード', ]; diff --git a/messages/ja/mail.php b/messages/ja/mail.php deleted file mode 100644 index 00c894f1..00000000 --- a/messages/ja/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - '説明', - 'Location' => '場所', - 'Organizer' => '主催者', - 'Participants info' => '参加者情報', - 'Starting' => '開始', - 'View Online: {url}' => 'オンラインで表示:{url}', -); diff --git a/messages/ja/notification.php b/messages/ja/notification.php new file mode 100644 index 00000000..9bd0a2b2 --- /dev/null +++ b/messages/ja/notification.php @@ -0,0 +1,26 @@ + 'カレンダー', + 'Calendar: Invite' => 'カレンダー:招待', + 'Calendar: attend' => 'カレンダー:出席', + 'Calendar: decline' => 'カレンダー:辞退', + 'Calendar: maybe' => 'カレンダー:多分', + 'Description' => '説明', + 'Location' => '場所', + 'Organizer' => '主催者', + 'Participants info' => '参加者情報', + 'Receive Calendar related Notifications.' => 'カレンダー関連の通知を受け取ります。', + 'Starting' => '開始', + 'View Online: {url}' => 'オンラインで表示:{url}', + 'Whenever someone declines to participate in an event.' => '誰かがイベントへの参加を辞退する時。', + 'Whenever someone invites to participate in an event.' => '誰かがイベントに参加するよう招待する時。', + 'Whenever someone may be participating in an event.' => '誰かがイベントに参加している場合はいつでも。', + 'Whenever someone participates in an event.' => '誰かがイベントに参加する度に。', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} は、スペース {spaceName} のイベント "{contentTitle}" をキャンセルしました。', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} がイベント "{contentTitle}" をキャンセルしました。', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} は、スペース {spaceName} でイベント "{contentTitle}" を再開しました。', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} がイベント "{contentTitle}" を再開しました。', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} がスペース {spaceName} のイベント + "{contentTitle}" を更新しました。', + '{displayName} updated the event "{contentTitle}".' => '{displayName} がイベント {contentTitle} を更新しました。', +]; diff --git a/messages/ja/notifications_CalendarNotificationCategory.php b/messages/ja/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 3e3cc74f..00000000 --- a/messages/ja/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'カレンダー', - 'Receive Calendar related Notifications.' => 'カレンダー関連の通知を受け取ります。', -); diff --git a/messages/ja/notifications_views_CanceledEvent.php b/messages/ja/notifications_views_CanceledEvent.php deleted file mode 100644 index fa7ad395..00000000 --- a/messages/ja/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,11 +0,0 @@ - '{displayName} は、スペース {spaceName} のイベント "{contentTitle}" をキャンセルしました。', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} がイベント "{contentTitle}" をキャンセルしました。', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} がスペース {spaceName} のイベント - "{contentTitle}" を更新しました。', - '{displayName} updated the event "{contentTitle}".' => '{displayName} がイベント {contentTitle} を更新しました。', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} は、スペース {spaceName} でイベント "{contentTitle}" を再開しました。', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} がイベント "{contentTitle}" を再開しました。', -]; diff --git a/messages/ja/permissions.php b/messages/ja/permissions.php deleted file mode 100644 index 2da532cc..00000000 --- a/messages/ja/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'ユーザーが新しいカレンダーエントリを作成できるようにします', - 'Allows the user to edit/delete existing calendar entries' => 'ユーザーが既存のカレンダーエントリを編集/削除できるようにします', - 'Create entry' => 'エントリを作成', - 'Manage entries' => 'エントリの管理', -); diff --git a/messages/ja/recurrence.php b/messages/ja/recurrence.php deleted file mode 100644 index 55b00059..00000000 --- a/messages/ja/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - '後で(出来事)', - 'Day' => '日', - 'Days' => '日', - 'Delete all events' => '全てのイベントを削除', - 'Edit all events' => '全てのイベントを編集', - 'Edit this and following events' => 'このイベントと次のイベントを編集する', - 'Edit this event' => 'このイベントを編集', - 'End' => '終了', - 'Invalid day of month given' => '指定された日付が無効です', - 'Invalid frequency given' => '指定された頻度が無効です', - 'Invalid interval given' => '指定された間隔が無効です', - 'Invalid week day selection' => '無効な曜日の選択', - 'Month' => '月', - 'Monthly on day {dayOfMonth}' => '毎月 {dayOfMonth} 日', - 'Monthly on the {position} {dayOfWeek}' => '毎月 {position} {dayOfWeek}', - 'Months' => '月', - 'Never' => 'しない', - 'On date' => '日付', - 'Repeat every' => '繰り返す間隔', - 'This event does not support recurrent events' => 'このイベントは定期的なイベントをサポートしていません', - 'Week' => '週', - 'Weeks' => '週', - 'Year' => '年', - 'Years' => '年', - 'first' => '最初', - 'forth' => '前へ', - 'last' => '最後', - 'on weekdays' => '平日', - 'second' => '2番目', - 'third' => '3番目', -); diff --git a/messages/ja/reminder.php b/messages/ja/reminder.php deleted file mode 100644 index 7cd85a1b..00000000 --- a/messages/ja/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'カスタム リマインダー', - 'Day' => '日', - 'Default reminder settings' => 'デフォルトのリマインダー設定', - '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' => '時', - 'Minute' => '分', - 'No reminder' => 'リマインダーなし', - 'Upcoming {type}' => '今後の {type}', - 'Upcoming {type}: {title}' => '今後の {type}:{title}', - 'Use default reminder' => 'デフォルトのリマインダーを使用', - 'Week' => '週', - 'You have an {type} coming up' => '{type} が近づいています', - 'You have an {type} coming up: {title}' => '次の {type} があります:{title}', - 'Your reminder settings for event: \'{title}\'' => 'イベントのリマインダー設定: \'{title}\'', -); diff --git a/messages/ja/settings.php b/messages/ja/settings.php deleted file mode 100644 index 4bc89d5c..00000000 --- a/messages/ja/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - '基本', - 'Full calendar' => 'フルカレンダー', - 'Participation' => '参加', - 'Reminder' => 'リマインダー', -); diff --git a/messages/ja/views.php b/messages/ja/views.php new file mode 100644 index 00000000..4b2c5448 --- /dev/null +++ b/messages/ja/views.php @@ -0,0 +1,59 @@ + '%displayName% は %contentTitle% に参加できません。', + '%displayName% created a new %contentTitle%.' => '%displayName%は新しい%contentTitle%を作成しました。', + '%displayName% is attending %contentTitle%.' => '%displayName% は %contentTitle% に参加しています。', + '%displayName% is invited to %contentTitle%.' => '%displayName% は %contentTitle% に招待されています。', + '%displayName% might be attending %contentTitle%.' => '%displayName% は %contentTitle% に参加している可能性があります。', + ':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' => '誰もが参加できる', + '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}人の参加者', +]; diff --git a/messages/ja/views_activities_EntryCreated.php b/messages/ja/views_activities_EntryCreated.php deleted file mode 100644 index 3975fab7..00000000 --- a/messages/ja/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName%は新しい%contentTitle%を作成しました。', -); diff --git a/messages/ja/views_activities_EntryResponse.php b/messages/ja/views_activities_EntryResponse.php deleted file mode 100644 index 38a393a1..00000000 --- a/messages/ja/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% は %contentTitle% に参加できません。', - '%displayName% is attending %contentTitle%.' => '%displayName% は %contentTitle% に参加しています。', - '%displayName% is invited to %contentTitle%.' => '%displayName% は %contentTitle% に招待されています。', - '%displayName% might be attending %contentTitle%.' => '%displayName% は %contentTitle% に参加している可能性があります。', -); diff --git a/messages/ja/views_container-config_typesConfig.php b/messages/ja/views_container-config_typesConfig.php deleted file mode 100644 index f427d584..00000000 --- a/messages/ja/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => '新しいイベント タイプを 作成', - 'Edit calendar' => 'カレンダーを 編集', - 'Edit event type' => 'イベント タイプを 編集', -); diff --git a/messages/ja/views_entry_edit.php b/messages/ja/views_entry_edit.php deleted file mode 100644 index db0dad7b..00000000 --- a/messages/ja/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'イベントを作成', - 'Edit Event' => 'イベントを編集', - 'Edit recurring event' => '繰り返しイベントを編集', - 'Are you sure want to remove the participant from the event?' => 'イベントから参加者を削除しますか?', - 'Attending' => '参加', - 'Back' => '戻る', - 'Close' => 'クローズ', - 'Declined' => '辞退', - 'Everybody can participate' => '誰もが参加できる', - 'General' => '一般', - 'Invited' => '招待済み', - 'Next' => '次へ', - 'No participants' => '参加者なし', - 'Only by Invite' => '招待された人のみ', - 'Participants' => '参加者', - 'Recurrence' => '繰り返し', - 'Reminder' => 'リマインダー', - 'Select event type...' => 'イベント・タイプを選択...', - 'Settings' => '設定', - 'Title' => 'タイトル', - 'Undecided' => '未決定', - '{count} Participants' => '{count}人の参加者', -); diff --git a/messages/ja/views_entry_view.php b/messages/ja/views_entry_view.php deleted file mode 100644 index 26543ce2..00000000 --- a/messages/ja/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '追加情報', - 'All' => 'すべて', - 'Attend' => '参加', - 'Decline' => '辞退', - 'Filter' => 'フィルター', - 'Maybe' => '未定', - 'Participants' => '参加者', - 'You are invited, please select your role:' => '招待されました。役割を選択してください:', -); diff --git a/messages/ja/views_global_index.php b/messages/ja/views_global_index.php deleted file mode 100644 index dedbbd36..00000000 --- a/messages/ja/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'フィルターイベント', - 'Followed spaces' => 'フォローされたスペース', - 'Followed users' => 'フォローされたユーザー', - 'I\'m attending' => '参加する', - 'My events' => '自分のイベント', - 'My profile' => '私のプロフィール', - 'My spaces' => 'マイスペース', - 'Select calendars' => 'カレンダーを選択します', -); diff --git a/messages/ja/widgets_GlobalConfigMenu.php b/messages/ja/widgets_GlobalConfigMenu.php deleted file mode 100644 index 767dfb12..00000000 --- a/messages/ja/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'カレンダー', - 'Defaults' => '既定', - 'Event Types' => 'イベントタイプ', - 'Menu' => 'メニュー', - 'Snippet' => 'スニペット', -); diff --git a/messages/ja/widgets_views_nextEvents.php b/messages/ja/widgets_views_nextEvents.php deleted file mode 100644 index bae6475d..00000000 --- a/messages/ja/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => '次回 次回のイベント', - 'Open Calendar' => 'カレンダーを開く', -); diff --git a/messages/ja/widgets_views_participants.php b/messages/ja/widgets_views_participants.php deleted file mode 100644 index 838b3046..00000000 --- a/messages/ja/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count 参加者', - ':count Declined' => ':count 辞退者', - ':count Invited' => ':count 招待者', - ':count Undecided' => ':count 未決定者', - 'Participants' => '参加者', -); diff --git a/messages/ko/activities.php b/messages/ko/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/ko/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/ko/base.php b/messages/ko/base.php index 574ddb0b..3fdd908a 100644 --- a/messages/ko/base.php +++ b/messages/ko/base.php @@ -1,95 +1,145 @@ '삭제됨', - 'Description' => '설명', - 'Edit' => '편집', - 'Enable' => '활성화', - 'Files' => '파일', - 'Invite' => '초대', - 'Location' => '위치', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invited: {users}' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/ko/calendar.php b/messages/ko/calendar.php deleted file mode 100644 index 53cffa9c..00000000 --- a/messages/ko/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => '리스트', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/ko/config.php b/messages/ko/config.php index 5d9bb680..d6158832 100644 --- a/messages/ko/config.php +++ b/messages/ko/config.php @@ -1,38 +1,41 @@ '삭제', - 'Name' => '이름', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '기본', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '삭제', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '이름', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/ko/mail.php b/messages/ko/mail.php deleted file mode 100644 index a260065e..00000000 --- a/messages/ko/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - '설명', - 'Location' => '위치', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/ko/notification.php b/messages/ko/notification.php new file mode 100644 index 00000000..bb1cc58c --- /dev/null +++ b/messages/ko/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '설명', + 'Location' => '위치', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/ko/notifications_CalendarNotificationCategory.php b/messages/ko/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 79acb3f4..00000000 --- a/messages/ko/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/ko/notifications_views_CanceledEvent.php b/messages/ko/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/ko/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/ko/permissions.php b/messages/ko/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/ko/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/ko/recurrence.php b/messages/ko/recurrence.php deleted file mode 100644 index 052312c0..00000000 --- a/messages/ko/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '절대로', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -); diff --git a/messages/ko/reminder.php b/messages/ko/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/ko/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/ko/settings.php b/messages/ko/settings.php deleted file mode 100644 index 09e4b86e..00000000 --- a/messages/ko/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - '기본', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/ko/views.php b/messages/ko/views.php new file mode 100644 index 00000000..49837e10 --- /dev/null +++ b/messages/ko/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => '', +]; diff --git a/messages/ko/views_activities_EntryCreated.php b/messages/ko/views_activities_EntryCreated.php deleted file mode 100644 index 4f7f1713..00000000 --- a/messages/ko/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '', -); diff --git a/messages/ko/views_activities_EntryResponse.php b/messages/ko/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/ko/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/ko/views_container-config_typesConfig.php b/messages/ko/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/ko/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/ko/views_entry_edit.php b/messages/ko/views_entry_edit.php deleted file mode 100644 index 81fa002a..00000000 --- a/messages/ko/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '돌아가기', - 'Close' => '닫기', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '일반', - 'Invited' => '', - 'Next' => '다음', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => '설정', - 'Title' => '제목', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/ko/views_entry_view.php b/messages/ko/views_entry_view.php deleted file mode 100644 index f4860f0c..00000000 --- a/messages/ko/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => '모두', - 'Attend' => '', - 'Decline' => '거부', - 'Filter' => '필터', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -); diff --git a/messages/ko/views_global_index.php b/messages/ko/views_global_index.php deleted file mode 100644 index 2e8bdbf1..00000000 --- a/messages/ko/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '내 프로필', - 'My spaces' => '나의 방', - 'Filter events' => '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'Select calendars' => '', -]; diff --git a/messages/ko/widgets_GlobalConfigMenu.php b/messages/ko/widgets_GlobalConfigMenu.php deleted file mode 100644 index 2ed00772..00000000 --- a/messages/ko/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '메뉴', - 'Snippet' => '', -); diff --git a/messages/ko/widgets_views_nextEvents.php b/messages/ko/widgets_views_nextEvents.php deleted file mode 100644 index 870ac23b..00000000 --- a/messages/ko/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/ko/widgets_views_participants.php b/messages/ko/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/ko/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/lt/activities.php b/messages/lt/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/lt/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/lt/base.php b/messages/lt/base.php index 729c9c88..85e2e9c4 100644 --- a/messages/lt/base.php +++ b/messages/lt/base.php @@ -1,95 +1,145 @@ 'Į 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', - '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', - 'ID' => 'ID', - 'Invite' => 'Pakviesti', - 'Location' => 'Vieta', - 'Monday' => 'Pirmadienis', - '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 ', - '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' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - 'End Time' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter by types' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invited: {users}' => '', - 'Maximum number of participants' => '', - '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.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Set reminder' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'The event has already ended.' => '', - 'User birthdays' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => 'Gimimo data', + 'Calendar' => 'Kalendorius', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => 'Ištrinta', + 'Description' => 'Apibūdinimas', + '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 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' => '', + '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 frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Pakviesti', + 'Invited: {users}' => '', + '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', + 'Set reminder' => '', + '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' => '', + 'User birthdays' => '', + 'Wednesday' => 'Trečiadienis', + 'Week' => '', + 'Weeks' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/lt/calendar.php b/messages/lt/calendar.php deleted file mode 100644 index 8044baa6..00000000 --- a/messages/lt/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'Sarašas', - 'Month' => '', - 'Today' => 'Šiandien', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/lt/config.php b/messages/lt/config.php index a31f8517..44611630 100644 --- a/messages/lt/config.php +++ b/messages/lt/config.php @@ -1,38 +1,41 @@ 'Ištrinti', - 'Name' => 'Vardas', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'Pagrindinis', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Ištrinti', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'Vardas', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/lt/mail.php b/messages/lt/mail.php deleted file mode 100644 index 934bc39c..00000000 --- a/messages/lt/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Aprašymas', - 'Location' => 'Vieta', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/lt/notification.php b/messages/lt/notification.php new file mode 100644 index 00000000..51550981 --- /dev/null +++ b/messages/lt/notification.php @@ -0,0 +1,25 @@ + 'Kalendorius', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Aprašymas', + 'Location' => 'Vieta', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/lt/notifications_CalendarNotificationCategory.php b/messages/lt/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 774ae430..00000000 --- a/messages/lt/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalendorius', - 'Receive Calendar related Notifications.' => '', -); diff --git a/messages/lt/notifications_views_CanceledEvent.php b/messages/lt/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/lt/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/lt/permissions.php b/messages/lt/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/lt/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/lt/recurrence.php b/messages/lt/recurrence.php deleted file mode 100644 index 01bb7576..00000000 --- a/messages/lt/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Redaguoti šį įvykį', - 'Never' => 'Niekada', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/lt/reminder.php b/messages/lt/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/lt/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/lt/settings.php b/messages/lt/settings.php deleted file mode 100644 index 33e1f7db..00000000 --- a/messages/lt/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Pagrindinis', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/lt/views.php b/messages/lt/views.php new file mode 100644 index 00000000..a6085dd4 --- /dev/null +++ b/messages/lt/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '%displayName% sukūrė nauja %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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 ' => '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', + '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' => '', +]; diff --git a/messages/lt/views_activities_EntryCreated.php b/messages/lt/views_activities_EntryCreated.php deleted file mode 100644 index 829c2671..00000000 --- a/messages/lt/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% sukūrė nauja %contentTitle%.', -); diff --git a/messages/lt/views_activities_EntryResponse.php b/messages/lt/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/lt/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/lt/views_container-config_typesConfig.php b/messages/lt/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/lt/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/lt/views_entry_edit.php b/messages/lt/views_entry_edit.php deleted file mode 100644 index 483bb556..00000000 --- a/messages/lt/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'Atgal', - 'Close' => 'Uždaryti', - 'Declined' => '', - 'Everybody can participate' => 'Dalyvauti gali visi', - 'General' => 'Pagrindinis', - 'Invited' => '', - 'Next' => 'Kitas', - 'No participants' => 'Nėra dalyvių', - 'Only by Invite' => '', - 'Participants' => 'Dalyviai', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Nustatymai', - 'Title' => 'Pavadinimas', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/lt/views_entry_view.php b/messages/lt/views_entry_view.php deleted file mode 100644 index 32773254..00000000 --- a/messages/lt/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Visi', - 'Attend' => 'Dalyvauti', - 'Decline' => 'Atmesti', - 'Filter' => 'Filtras', - 'Maybe' => 'Galbūt', - 'Participants' => 'Dalyviai', - 'You are invited, please select your role:' => '', -); diff --git a/messages/lt/views_global_index.php b/messages/lt/views_global_index.php deleted file mode 100644 index 3d732a0c..00000000 --- a/messages/lt/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Sekamos erdvės', - 'Followed users' => 'Sekami vartotojai', - 'I\'m attending' => 'Dalyvauju', - 'My events' => 'Mano įvykiai', - 'My profile' => 'Mano profilis', - 'My spaces' => 'Mano erdvės', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/lt/widgets_GlobalConfigMenu.php b/messages/lt/widgets_GlobalConfigMenu.php deleted file mode 100644 index 2275563d..00000000 --- a/messages/lt/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => 'Numatytieji', - 'Event Types' => '', - 'Menu' => 'Meniu', - 'Snippet' => '', -); diff --git a/messages/lt/widgets_views_nextEvents.php b/messages/lt/widgets_views_nextEvents.php deleted file mode 100644 index d963cbe1..00000000 --- a/messages/lt/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Upcoming events ' => 'Artėjantys renginiai', -]; diff --git a/messages/lt/widgets_views_participants.php b/messages/lt/widgets_views_participants.php deleted file mode 100644 index d6c46a69..00000000 --- a/messages/lt/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dalyviai', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/lv/activities.php b/messages/lv/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/lv/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/lv/base.php b/messages/lv/base.php index e607832f..47e76ec3 100644 --- a/messages/lv/base.php +++ b/messages/lv/base.php @@ -1,95 +1,145 @@ 'Pievieno kalendāru privātiem, vai publiskiem notikiem tavā profilā un galvenajā izvēlnē.', - 'Adds an event calendar to this space.' => 'Pievieno kalendāru šai vietai.', - 'All Day' => 'Visu dienu', - 'Calendar' => 'Kalendārs', - 'Description' => 'Apraksts', - 'Edit' => 'Rediģēt', - 'End Date' => 'Beigu datums', - 'End Time' => 'Beigu laiks', - 'End time must be after start time!' => 'Beigu laikam ir jābūt pēc sākuma laika!', - 'Event' => 'Notikums', - 'Event not found!' => 'Notikums nav atrasts', - 'Files' => 'Faili', - 'ID' => 'ID', - 'Next' => 'Nākamais', - 'Participants' => 'Dalībnieki', - 'Public' => 'Publiska', - 'Start Date' => 'Sākuma datums', - 'Start Time' => 'Sākuma laiks', - 'Title' => 'Nosaukums', - 'You don\'t have permission to delete this event!' => 'Tev nav tiesību dzēst šo notikumu!', - 'disabled' => 'invalīds', - 'Add profile calendar' => '', - 'Choose target calendar' => '', - 'Reminder settings' => '', - 'Add all Space members with status {status}' => '', - 'Add participants...' => '', - 'Added: {users}' => '', - 'Additional Information for participants' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Birthday' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable' => '', - 'Enable Reminder' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter by types' => '', - 'Friday' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - '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.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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.' => 'Pievieno kalendāru privātiem, vai publiskiem notikiem tavā profilā un galvenajā izvēlnē.', + 'Adds an event calendar to this space.' => 'Pievieno kalendāru šai vietai.', + 'After (occurrences)' => '', + 'All Day' => 'Visu dienu', + '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' => 'Kalendārs', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => 'Apraksts', + 'Do you want to install this module on your profile?' => '', + 'Download ICS' => '', + 'Edit' => 'Rediģēt', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => '', + 'Enable' => '', + 'Enable Reminder' => '', + 'End' => '', + 'End Date' => 'Beigu datums', + 'End Time' => 'Beigu laiks', + 'End time must be after start time!' => 'Beigu laikam ir jābūt pēc sākuma laika!', + 'Event' => 'Notikums', + 'Event Type' => '', + 'Event Types' => '', + 'Event could not be deleted!' => '', + 'Event has been be deleted!' => '', + 'Event not found!' => 'Notikums nav atrasts', + 'Export as {type}' => '', + 'Files' => 'Faili', + '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' => '', + '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 frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => '', + 'Invited: {users}' => '', + 'List' => 'Saraksts', + 'Location' => '', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Nekad', + 'Next' => 'Nākamais', + 'No new participants were added.' => '', + 'No new participants were invited.' => '', + 'No reminder' => '', + 'Notify participants about changes' => '', + 'On date' => '', + 'Participant removed.' => '', + 'Participants' => 'Dalībnieki', + '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' => 'Publiska', + 'Recurring' => '', + 'Reopen Event' => '', + 'Repeat every' => '', + 'Saturday' => '', + 'Set reminder' => '', + 'Start Date' => 'Sākuma datums', + 'Start Time' => 'Sākuma laiks', + 'Status cannot be updated.' => '', + 'Status updated.' => '', + 'Sunday' => '', + 'The event has already ended.' => '', + 'This event does not support recurrent events' => '', + 'Thursday' => '', + 'Time Zone' => '', + 'Title' => 'Nosaukums', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {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!' => 'Tev nav tiesību dzēst šo notikumu!', + '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' => 'invalīds', + 'first' => '', + 'forth' => '', + 'global' => '', + '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}".' => '', ]; diff --git a/messages/lv/calendar.php b/messages/lv/calendar.php deleted file mode 100644 index c27f216a..00000000 --- a/messages/lv/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'Saraksts', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/lv/config.php b/messages/lv/config.php index 16c960ff..e34cd05b 100644 --- a/messages/lv/config.php +++ b/messages/lv/config.php @@ -1,38 +1,41 @@ 'Izveidot jaunu tipu', - 'Delete' => 'Dzēst', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'Pamata', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Izveidot jaunu tipu', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Dzēst', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/lv/mail.php b/messages/lv/mail.php deleted file mode 100644 index 7824cf7a..00000000 --- a/messages/lv/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Apraksts', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/lv/notification.php b/messages/lv/notification.php new file mode 100644 index 00000000..4af7d846 --- /dev/null +++ b/messages/lv/notification.php @@ -0,0 +1,25 @@ + 'Kalendārs', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Apraksts', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/lv/notifications_CalendarNotificationCategory.php b/messages/lv/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 80280dfa..00000000 --- a/messages/lv/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalendārs', - 'Receive Calendar related Notifications.' => '', -); diff --git a/messages/lv/notifications_views_CanceledEvent.php b/messages/lv/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/lv/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/lv/permissions.php b/messages/lv/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/lv/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/lv/recurrence.php b/messages/lv/recurrence.php deleted file mode 100644 index ab8fd69a..00000000 --- a/messages/lv/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Nekad', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/lv/reminder.php b/messages/lv/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/lv/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/lv/settings.php b/messages/lv/settings.php deleted file mode 100644 index 082e6c38..00000000 --- a/messages/lv/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Pamata', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/lv/views.php b/messages/lv/views.php new file mode 100644 index 00000000..32dc8e9f --- /dev/null +++ b/messages/lv/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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 ' => 'Gaidāmie notikumi', + 'Additional information' => '', + 'All' => '', + 'Are you sure want to remove the participant from the event?' => '', + 'Attend' => 'Piedalīties', + 'Attending' => '', + 'Back' => 'Atpakaļ', + 'Calendars' => '', + 'Close' => 'Aizvērt', + 'Decline' => 'Noraidīt', + 'Declined' => '', + 'Defaults' => '', + 'Event Types' => '', + 'Everybody can participate' => 'Visi var piedalīties', + 'Filter' => '', + 'Filter events' => '', + 'Followed spaces' => 'Sekotās vietas', + 'Followed users' => 'Sekotie lietotāji', + 'General' => 'Galvenais', + 'I\'m attending' => 'Es piedalos', + 'Invited' => '', + 'Maybe' => 'Varbūt', + 'Menu' => 'Izvēlne', + 'My events' => 'Mani notikumi', + 'My profile' => 'Mans profils', + 'My spaces' => 'Manas vietas', + 'Next' => 'Nākamais', + 'No participants' => 'Nav dalībnieku', + 'Only by Invite' => '', + 'Open Calendar' => '', + 'Participants' => 'Dalībnieki', + 'Recurrence' => '', + 'Reminder' => '', + 'Select calendars' => '', + 'Select event type...' => '', + 'Settings' => 'Uzstādījumi', + 'Snippet' => '', + 'Title' => 'Nosaukum', + 'Undecided' => '', + 'You are invited, please select your role:' => '', + '{count} Participants' => '', +]; diff --git a/messages/lv/views_activities_EntryResponse.php b/messages/lv/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/lv/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/lv/views_container-config_typesConfig.php b/messages/lv/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/lv/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/lv/views_entry_edit.php b/messages/lv/views_entry_edit.php deleted file mode 100644 index fceb32b5..00000000 --- a/messages/lv/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'Atpakaļ', - 'Close' => 'Aizvērt', - 'Declined' => '', - 'Everybody can participate' => 'Visi var piedalīties', - 'General' => 'Galvenais', - 'Invited' => '', - 'Next' => 'Nākamais', - 'No participants' => 'Nav dalībnieku', - 'Only by Invite' => '', - 'Participants' => 'Dalībnieki', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Uzstādījumi', - 'Title' => 'Nosaukum', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/lv/views_entry_view.php b/messages/lv/views_entry_view.php deleted file mode 100644 index 3f67f0d0..00000000 --- a/messages/lv/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => '', - 'Attend' => 'Piedalīties', - 'Decline' => 'Noraidīt', - 'Filter' => '', - 'Maybe' => 'Varbūt', - 'Participants' => 'Dalībnieki', - 'You are invited, please select your role:' => '', -); diff --git a/messages/lv/views_global_index.php b/messages/lv/views_global_index.php deleted file mode 100644 index 23b657cc..00000000 --- a/messages/lv/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Sekotās vietas', - 'Followed users' => 'Sekotie lietotāji', - 'I\'m attending' => 'Es piedalos', - 'My events' => 'Mani notikumi', - 'My profile' => 'Mans profils', - 'My spaces' => 'Manas vietas', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/lv/widgets_GlobalConfigMenu.php b/messages/lv/widgets_GlobalConfigMenu.php deleted file mode 100644 index 01fff6b9..00000000 --- a/messages/lv/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'Izvēlne', - 'Snippet' => '', -); diff --git a/messages/lv/widgets_views_nextEvents.php b/messages/lv/widgets_views_nextEvents.php deleted file mode 100644 index 3d6d44ee..00000000 --- a/messages/lv/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Upcoming events ' => 'Gaidāmie notikumi', -]; diff --git a/messages/lv/widgets_views_participants.php b/messages/lv/widgets_views_participants.php deleted file mode 100644 index dd5e0368..00000000 --- a/messages/lv/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dalībnieki', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/nb-NO/activities.php b/messages/nb-NO/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/nb-NO/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/nb-NO/base.php b/messages/nb-NO/base.php index 8fabd7ca..35ccd17b 100644 --- a/messages/nb-NO/base.php +++ b/messages/nb-NO/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Opprett profil kalender', 'Choose target calendar' => 'Velg mål kalender', 'Reminder settings' => '', @@ -9,24 +9,37 @@ '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', 'Attending' => 'Deltar', 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', 'Birthday' => 'Bursdag', 'Calendar' => 'Kalender', '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', '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!', @@ -40,21 +53,40 @@ 'Files' => 'Filer', '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' => '', '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 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}' => '', + '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' => '', @@ -64,6 +96,7 @@ 'Public' => 'Offentlig', 'Recurring' => '', 'Reopen Event' => 'Gjennåpne aktivitet', + 'Repeat every' => '', 'Saturday' => '', 'Set reminder' => '', 'Start Date' => 'Starter dato', @@ -72,23 +105,41 @@ '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' => '', 'User birthdays' => '', 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + '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' => '', + '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}".' => '', -); +]; diff --git a/messages/nb-NO/calendar.php b/messages/nb-NO/calendar.php deleted file mode 100644 index 5b969802..00000000 --- a/messages/nb-NO/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'Liste', - 'Month' => '', - 'Today' => 'I dag', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/nb-NO/config.php b/messages/nb-NO/config.php index 6533003f..07cab24c 100644 --- a/messages/nb-NO/config.php +++ b/messages/nb-NO/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Konfigurasjon Kalendermodul', - 'Confirm Deletion' => 'Bekreft sletting', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Legger til en snippet med nærstående aktivitet til Oversikt', - 'Create new type' => 'Opprett ny', - 'Delete' => 'Slett', - 'Do you really want to delte this event type?' => 'Bekreft sletting av aktivitetstype.', - 'Event Type Configuration' => 'Konfigurasjon aktivitetstyper', - 'Half a year' => 'Et halvt år', - 'Here you can configure default settings for new calendar events.' => 'Her kan du konfigurere standard innstillinger for kalender aktiviteter', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Her kan du konfigurere standard innstillinger for kalender aktiviteter. Innstillingene kan skrives over på gruppe- og profilnivå.', - 'Here you can manage your event types.' => 'Her kan du redigere dine aktivitetstyper', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Hvis aktivert, vil Kalender kun vise i hovedmenyen og snippet under Oversikt kun være synlig for brukere som har kalendermodulen installert på sin profil.', - 'Interval of upcoming events' => 'Intervall for kommende aktiviteter ', - 'Max event items' => 'Maks antall aktiviteter', - 'Name' => 'Navn', - 'One month' => 'En måned', - 'One week' => 'En uke', - 'One year' => 'Ett år', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Vis kun øverste menypunkt og snippet hvis modulen er installert på brukerens profil', - 'Reset' => 'Tilbakestill', - 'Show snippet' => 'Vis snippet', - 'There are currently no event types available.' => 'Det er ingen aktivitetstyper tilgjengelig', - 'Upcoming events snippet' => 'Snippet for kommende aktiviteter', - 'Add \'Calendar\' to the main menu' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Menu settings' => '', - 'View mode' => '', + 'Calendar module configuration' => 'Konfigurasjon Kalendermodul', + 'Confirm Deletion' => 'Bekreft sletting', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Legger til en snippet med nærstående aktivitet til Oversikt', + 'Basic' => 'Grunnleggende', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Opprett ny', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Slett', + 'Do you really want to delte this event type?' => 'Bekreft sletting av aktivitetstype.', + 'Event Type Configuration' => 'Konfigurasjon aktivitetstyper', + 'Full calendar' => '', + 'Half a year' => 'Et halvt år', + 'Here you can configure default settings for new calendar events.' => 'Her kan du konfigurere standard innstillinger for kalender aktiviteter', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Her kan du konfigurere standard innstillinger for kalender aktiviteter. Innstillingene kan skrives over på gruppe- og profilnivå.', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => 'Her kan du redigere dine aktivitetstyper', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Hvis aktivert, vil Kalender kun vise i hovedmenyen og snippet under Oversikt kun være synlig for brukere som har kalendermodulen installert på sin profil.', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => 'Intervall for kommende aktiviteter ', + 'Max event items' => 'Maks antall aktiviteter', + 'Menu settings' => '', + 'Name' => 'Navn', + 'One month' => 'En måned', + 'One week' => 'En uke', + 'One year' => 'Ett år', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Vis kun øverste menypunkt og snippet hvis modulen er installert på brukerens profil', + 'Participation' => 'Påmelding', + 'Reminder' => '', + 'Reset' => 'Tilbakestill', + 'Show snippet' => 'Vis snippet', + 'There are currently no event types available.' => 'Det er ingen aktivitetstyper tilgjengelig', + 'Upcoming events snippet' => 'Snippet for kommende aktiviteter', + 'View mode' => '', ]; diff --git a/messages/nb-NO/mail.php b/messages/nb-NO/mail.php deleted file mode 100644 index c00a45c0..00000000 --- a/messages/nb-NO/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Beskrivelse', - 'Location' => 'Sted', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/nb-NO/notification.php b/messages/nb-NO/notification.php new file mode 100644 index 00000000..e7a6e9f1 --- /dev/null +++ b/messages/nb-NO/notification.php @@ -0,0 +1,25 @@ + 'Kalender', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Beskrivelse', + 'Location' => 'Sted', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Bli varslet om hendelser knyttet til kalenderen', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} har avlyst aktivitet "{contentTitle}" i gruppen {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} har avlyst aktivitet "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} har gjenåpnet aktivitet "{contentTitle}" i gruppen {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} har gjenåpnet aktivitet "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} har oppdatert aktivitet "{contentTitle}" i gruppen {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} oppdaterte arrangementet {contentTitle}.', +]; diff --git a/messages/nb-NO/notifications_CalendarNotificationCategory.php b/messages/nb-NO/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 95ed623f..00000000 --- a/messages/nb-NO/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalender', - 'Receive Calendar related Notifications.' => 'Bli varslet om hendelser knyttet til kalenderen', -); diff --git a/messages/nb-NO/notifications_views_CanceledEvent.php b/messages/nb-NO/notifications_views_CanceledEvent.php deleted file mode 100644 index 3a562425..00000000 --- a/messages/nb-NO/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} har avlyst aktivitet "{contentTitle}" i gruppen {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} har avlyst aktivitet "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} har oppdatert aktivitet "{contentTitle}" i gruppen {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} oppdaterte arrangementet {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} har gjenåpnet aktivitet "{contentTitle}" i gruppen {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} har gjenåpnet aktivitet "{contentTitle}".', -]; diff --git a/messages/nb-NO/permissions.php b/messages/nb-NO/permissions.php deleted file mode 100644 index 6ddb7e7c..00000000 --- a/messages/nb-NO/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Gir brukeren tilgang til å opprette aktiviteter', - 'Allows the user to edit/delete existing calendar entries' => 'Gir brukeren tilgang til å redigere/slette eksisterende aktiviteter', - 'Create entry' => 'Opprette', - 'Manage entries' => 'Endre', -); diff --git a/messages/nb-NO/recurrence.php b/messages/nb-NO/recurrence.php deleted file mode 100644 index a98c06fc..00000000 --- a/messages/nb-NO/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Slutt', - 'Never' => 'Aldri', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/nb-NO/reminder.php b/messages/nb-NO/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/nb-NO/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/nb-NO/settings.php b/messages/nb-NO/settings.php deleted file mode 100644 index 0f933ef5..00000000 --- a/messages/nb-NO/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Grunnleggende', - 'Full calendar' => '', - 'Participation' => 'Påmelding', - 'Reminder' => '', -); diff --git a/messages/nb-NO/views.php b/messages/nb-NO/views.php new file mode 100644 index 00000000..f58f7da6 --- /dev/null +++ b/messages/nb-NO/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '%displayName% opprettet en ny %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %contentTitle%.' => '', + ':count Attending' => '', + ':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', + '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' => '', +]; diff --git a/messages/nb-NO/views_activities_EntryCreated.php b/messages/nb-NO/views_activities_EntryCreated.php deleted file mode 100644 index 127a12e5..00000000 --- a/messages/nb-NO/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% opprettet en ny %contentTitle%.', -); diff --git a/messages/nb-NO/views_activities_EntryResponse.php b/messages/nb-NO/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/nb-NO/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/nb-NO/views_container-config_typesConfig.php b/messages/nb-NO/views_container-config_typesConfig.php deleted file mode 100644 index 184bc02f..00000000 --- a/messages/nb-NO/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Opprett ny aktiviteststype', - 'Edit calendar' => 'Rediger kalenderen', - 'Edit event type' => 'Rediger aktivitetstype', -); diff --git a/messages/nb-NO/views_entry_edit.php b/messages/nb-NO/views_entry_edit.php deleted file mode 100644 index e52beef9..00000000 --- a/messages/nb-NO/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Deltar', - 'Back' => 'Tilbake', - 'Close' => 'Lukk', - 'Declined' => '', - 'Everybody can participate' => 'Med påmelding', - 'General' => 'Generelt', - 'Invited' => 'Invitert', - 'Next' => 'Neste', - 'No participants' => 'Uten påmelding', - 'Only by Invite' => '', - 'Participants' => 'Deltagere', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => 'Velg aktivitetstype', - 'Settings' => 'Innstillinger', - 'Title' => 'Tittel', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/nb-NO/views_entry_view.php b/messages/nb-NO/views_entry_view.php deleted file mode 100644 index ad1d581c..00000000 --- a/messages/nb-NO/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Alt', - 'Attend' => 'Delta', - 'Decline' => 'Avvis', - 'Filter' => 'Filter', - 'Maybe' => 'Kanskje', - 'Participants' => 'Deltagere', - 'You are invited, please select your role:' => '', -); diff --git a/messages/nb-NO/views_global_index.php b/messages/nb-NO/views_global_index.php deleted file mode 100644 index 07515077..00000000 --- a/messages/nb-NO/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Følger grupper', - 'Followed users' => 'Følger brukere', - 'I\'m attending' => 'Jeg deltar', - 'My events' => 'Mine events', - 'My profile' => 'Min profil', - 'My spaces' => 'Mine grupper', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/nb-NO/widgets_GlobalConfigMenu.php b/messages/nb-NO/widgets_GlobalConfigMenu.php deleted file mode 100644 index 067eee9b..00000000 --- a/messages/nb-NO/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => 'Standard innstillinger', - 'Event Types' => 'Aktivitetstyper', - 'Menu' => 'Meny', - 'Snippet' => 'Snippet', -); diff --git a/messages/nb-NO/widgets_views_nextEvents.php b/messages/nb-NO/widgets_views_nextEvents.php deleted file mode 100644 index f8eb9336..00000000 --- a/messages/nb-NO/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Kommende aktiviteter', - 'Open Calendar' => 'Åpne Kalender', -); diff --git a/messages/nb-NO/widgets_views_participants.php b/messages/nb-NO/widgets_views_participants.php deleted file mode 100644 index 37d273df..00000000 --- a/messages/nb-NO/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Deltakere', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/nl/activities.php b/messages/nl/activities.php deleted file mode 100644 index c6b599c4..00000000 --- a/messages/nl/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Agenda: Uitnodigen', - 'Calendar: attend' => 'Agenda - aanwezig', - 'Calendar: decline' => 'Agenda - afwezig', - 'Calendar: maybe' => 'Agenda - misschien', - 'Whenever someone declines to participate in an event.' => 'Wanneer iemand weigert deel te nemen aan een gebeurtenis.', - 'Whenever someone invites to participate in an event.' => 'Wanneer iemand uitnodigt om deel te nemen aan een evenement.', - 'Whenever someone may be participating in an event.' => 'Wanneer iemand mogelijk deelneemt aan een gebeurtenis.', - 'Whenever someone participates in an event.' => 'Wanneer iemand deelneemt aan een gebeurtenis.', -); diff --git a/messages/nl/base.php b/messages/nl/base.php index ffd1b746..90ea1989 100644 --- a/messages/nl/base.php +++ b/messages/nl/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Voeg een profielagenda toe', 'Choose target calendar' => 'Kies doelagenda', 'Reminder settings' => 'Herinnering instellingen', @@ -9,24 +9,37 @@ 'Additional Information for participants' => 'Aanvullende informatie voor deelnemers', 'Adds a calendar for private or public events to your profile and main menu.' => 'Voegt een agenda voor private of publieke evenementen toe aan uw profiel en hoofdmenu.', 'Adds an event calendar to this space.' => 'Voegt een agenda toe aan deze ruimte.', + 'After (occurrences)' => 'Na (occurrences)', 'All Day' => 'Volledige dag', 'Allow option \'Decline\'' => 'Optie \'Weigeren\' toestaan', 'Allow option \'Undecided\'' => 'Optie \'Onbeslist\' toestaan', + 'Allows the user to create new calendar entries' => 'De gebruiker mag nieuwe agenda-items maken', + 'Allows the user to edit/delete existing calendar entries' => 'De gebruiker mag bestaande agenda-items bewerken of verwijderen', 'Attending' => 'Deelnemer', 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Voordat u een agenda kunt selecteren, moet u de module in minimaal één Ruimte activeren.', 'Birthday' => 'Verjaardag', 'Calendar' => 'Agenda', 'Cancel Event' => 'Annuleer gebeurtenis', 'Cannot remove the participant!' => 'Kan de deelnemer niet verwijderen!', + 'Create entry' => 'Maak agenda-item', + 'Custom reminder' => 'Aangepaste herinnering', + 'Day' => 'Dag', + 'Days' => 'Dagen', + 'Default reminder settings' => 'Standaard herinneringsinstellingen', + 'Delete all events' => 'Alle gebeurtenissen verwijderen', 'Deleted' => 'Verwijderd', 'Description' => 'Beschrijving', 'Do you want to install this module on your profile?' => 'Wilt u deze module op uw account installeren?', 'Download ICS' => 'ICS downloaden', 'Edit' => 'Werk bij', 'Edit Event' => 'Gebeurtenis bewerken', + 'Edit all events' => 'Bewerk alle gebeurtenissen', + 'Edit this and following events' => 'Bewerk deze en volgende gebeurtenissen', + 'Edit this event' => 'Gebeurtenis bewerken', 'Email' => 'E-mail', 'Enable' => 'Inschakelen', 'Enable Reminder' => 'Herinnering inschakelen', + 'End' => 'Einde', 'End Date' => 'Einddatum', 'End Time' => 'Eindtijd', 'End time must be after start time!' => 'Einde moet na begin zijn!', @@ -40,21 +53,40 @@ 'Files' => 'Bestanden', 'Filter by types' => 'Filter op type', 'Friday' => 'Vrijdag', + 'Here you can configure default settings for all calendar events.' => 'Hier kunt u standaardinstellingen configureren voor alle agenda-gebeurtenissen.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Hier kunt u globale standaardherinneringen configureren. Deze instellingen kunnen op ruimte- / acccountniveau worden overschreven.', + '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.' => 'Hier kunt u de standaardherinneringsinstellingen voor deze gebeurtenis configureren. Gebruikers kunnen deze instellingen overschrijven via de koppeling Herinnering instellen.', + 'Hour' => 'Uur', 'ID' => 'ID', 'In order to add events to your profile, you have to enable the calendar module first.' => 'Om gebeurtenissen toe te voegen aan uw profiel, moet u eerst de agendamodule inschakelen.', 'Interested' => 'Belangstelling', 'Invalid date or time format!' => 'Ongeldige datum- of tijdnotatie!', + 'Invalid day of month given' => 'Ongeldige dag van de maand opgegeven', 'Invalid event type id selected.' => 'Ongeldige gebeurtenistype-id geselecteerd.', + 'Invalid frequency given' => 'Ongeldige herhaling opgegeven', + 'Invalid interval given' => 'Ongeldig interval opgegeven', + 'Invalid week day selection' => 'Ongeldige weekdag gekozen', 'Invite' => 'Uitnodiging', 'Invited: {users}' => 'Uitgenodigd: {users}', + 'List' => 'Lijst', 'Location' => 'Locatie', + 'Manage entries' => 'Beheer items', 'Maximum number of participants' => 'Maximaal aantal deelnemers', + 'Minute' => 'Minuut', 'Mode' => 'Modus', 'Monday' => 'Maandag', + 'Month' => 'Maand', + 'Monthly on day {dayOfMonth}' => 'Maandelijks op dag {dayOfMonth}', + 'Monthly on the {position} {dayOfWeek}' => 'Maandelijks op de {position} van {dayOfWeek}', + 'Months' => 'Maanden', + 'Never' => 'Nooit', 'Next' => 'Volgende', 'No new participants were added.' => 'Er zijn geen nieuwe deelnemers toegevoegd.', 'No new participants were invited.' => 'Er zijn geen nieuwe deelnemers uitgenodigd.', + 'No reminder' => 'Geen herinnering', 'Notify participants about changes' => 'Deelnemers informeren over wijzigingen', + 'On date' => 'Op datum', 'Participant removed.' => 'Deelnemer verwijderd.', 'Participants' => 'Deelnemers', 'Participation Status' => 'Deelnamestatus', @@ -64,6 +96,7 @@ 'Public' => 'Publiek', 'Recurring' => 'Herhalend', 'Reopen Event' => 'Heropen de gebeurtenis', + 'Repeat every' => 'Herhaal elke', 'Saturday' => 'Zaterdag', 'Set reminder' => 'Ingestelde herinnering', 'Start Date' => 'Startdatum', @@ -72,23 +105,41 @@ 'Status updated.' => 'Status bijgewerkt.', 'Sunday' => 'Zondag', 'The event has already ended.' => 'De gebeurtenis is al afgelopen.', + 'This event does not support recurrent events' => 'Deze gebeurtenis kan worden herhaald.', 'Thursday' => 'Donderdag', 'Time Zone' => 'Tijdzone', 'Title' => 'Titel', + 'Today' => 'Vandaag', 'Tuesday' => 'Dinsdag', + 'Upcoming {type}' => 'Aankomend {type}', + 'Upcoming {type}: {title}' => 'Aankomend {type}: {title}', + 'Use default reminder' => 'Gebruik standaardherinnering', 'User birthdays' => 'Verjaardagen van gebruikers', 'Wednesday' => 'Woensdag', + 'Week' => 'Week', + 'Weeks' => 'Weken', + 'Year' => 'Jaar', + 'Years' => 'Jaren', 'You cannot invite participants!' => 'U kunt geen deelnemers uitnodigen!', 'You don\'t have permission to delete this event!' => 'U hebt geen toestemming om deze gebeurtenis te verwijderen!', + 'You have an {type} coming up' => 'Er komt een {type} aan', + 'You have an {type} coming up: {title}' => 'Er komt een {type} aan: {title}', 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'U bent ingeschreven voor de gebeurtenis "{contentTitle}" in {spaceName}, beginnend om {time}', 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'U bent ingeschreven voor de gebeurtenis"{contentTitle}", dat begint om {time}.', 'You have been registered for the event "{contentTitle}".' => 'U bent inschreven voor de gebeurtenis "{contentTitle}".', + 'Your reminder settings for event: \'{title}\'' => 'Uw herinneringsinstellingen voor gebeurtenis: \'{title}\'', 'canceled' => 'geannuleerd', 'disabled' => 'gehandicapt', + 'first' => 'Eerste', + 'forth' => 'volgende', 'global' => 'globaal', + 'last' => 'laatste', + 'on weekdays' => 'op weekdagen van maandag tot vrijdag', + 'second' => 'Tweede', + 'third' => 'Derde', '{displayName} Birthday' => '{displayName} Verjaardag', '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} heeft u toegevoegd aan de gebeurtenis \'{contentTitle}\' in de ruimte {spaceName}, beginnend om {time}.', '{displayName} added you to the event "{contentTitle}".' => '{displayName} heeft u toegevoegd aan het gebeurtenis "{contentTitle}".', '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} heeft u uitgenodigd voor de gebeurtenis\'{contentTitle}\' in de ruimte {spaceName}, beginnend om {time}.', '{displayName} invited you to the event "{contentTitle}".' => '{displayName} heeft u uitgenodigd voor het gebeurtenis"{contentTitle}".', -); +]; diff --git a/messages/nl/calendar.php b/messages/nl/calendar.php deleted file mode 100644 index 4f0761db..00000000 --- a/messages/nl/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dag', - 'List' => 'Lijst', - 'Month' => 'Maand', - 'Today' => 'Vandaag', - 'Week' => 'Week', - 'Year' => 'Jaar', -); diff --git a/messages/nl/config.php b/messages/nl/config.php index 085128ea..72f3224d 100644 --- a/messages/nl/config.php +++ b/messages/nl/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Agenda strong>moduleconfiguratie', - 'Confirm Deletion' => 'Bevestig strong> verwijderen', - 'Add \'Calendar\' to the main menu' => 'Voeg \'Agenda\' toe aan het hoofdmenu', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Voegt een fragment toe met aankomende gebeurtenissen aan het gebruikersprikbord.', - 'Calendar Configuration' => 'Kalender configuratie', - 'Calendar default view mode settings' => 'Instellingen voor standaardweergave van agenda', - 'Create new type' => 'Maak een nieuw type', - 'Default basic settings' => 'Standaard basisinstellingen', - 'Default participation settings' => 'Standaard deelname-instellingen', - 'Delete' => 'Verwijder', - 'Do you really want to delte this event type?' => 'Wilt u dit gebeurtenistype echt verwijderen?', - 'Event Type Configuration' => 'Gebeurtenistype configuratie', - 'Half a year' => 'Half jaar', - 'Here you can configure default settings for new calendar events.' => 'Hier kunt u de standaardinstellingen voor nieuwe agendagebeurtenissen configureren.', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Hier kunt u de standaardinstellingen voor nieuwe agendagebeurtenissen configureren. Deze instellingen kunnen op het ruimte- / profielniveau overschreven worden.', - 'Here you can configure default settings for the full calendar.' => 'Hier kunt u de standaardinstellingen voor de volledige kalender configureren.', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => 'Hier kunt u de standaardinstellingen voor de volledige kalender configureren. Deze instellingen kunnen op ruimte- en profielniveau worden overschreven.', - 'Here you can manage and disable different calendars.' => 'Hier kunt u agenda\'s beheren en uitschakelen.', - 'Here you can manage your event types.' => 'Hier kunt u uw gebeurtenistypes beheren.', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Indien geactiveerd, is het bovenste menu-item en het prikbord-fragment in de agenda alleen zichtbaar voor gebruikers die de agendamodule in hun profiel hebben geïnstalleerd.', - 'Include birthdays to dashboard snippet' => 'Voeg verjaardagen toe aan het prikbord-fragment', - 'Interval of upcoming events' => 'Interval van komende gebeurtenissen', - 'Max event items' => 'Maximaal aantal gebeurtenissen', - 'Menu settings' => 'Menu-instellingen', - 'Name' => 'Naam', - 'One month' => 'Een maand', - 'One week' => 'Een week', - 'One year' => 'Een jaar', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Toon alleen het bovenste menu-item en het fragment als de module is geïnstalleerd in het gebruikersprofiel', - 'Reset' => 'Opnieuw instellen', - 'Show snippet' => 'Toon fragment', - 'There are currently no event types available.' => 'Er zijn momenteel geen gebeurtenistypes beschikbaar.', - 'Upcoming events snippet' => 'Komende gebeurtenisfragment', - 'View mode' => 'Weergavewijze', + 'Calendar module configuration' => 'Agenda strong>moduleconfiguratie', + 'Confirm Deletion' => 'Bevestig strong> verwijderen', + 'Add \'Calendar\' to the main menu' => 'Voeg \'Agenda\' toe aan het hoofdmenu', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Voegt een fragment toe met aankomende gebeurtenissen aan het gebruikersprikbord.', + 'Basic' => 'Basis', + 'Calendar Configuration' => 'Kalender configuratie', + 'Calendar default view mode settings' => 'Instellingen voor standaardweergave van agenda', + 'Create new type' => 'Maak een nieuw type', + 'Default basic settings' => 'Standaard basisinstellingen', + 'Default participation settings' => 'Standaard deelname-instellingen', + 'Delete' => 'Verwijder', + 'Do you really want to delte this event type?' => 'Wilt u dit gebeurtenistype echt verwijderen?', + 'Event Type Configuration' => 'Gebeurtenistype configuratie', + 'Full calendar' => 'Volledige agenda', + 'Half a year' => 'Half jaar', + 'Here you can configure default settings for new calendar events.' => 'Hier kunt u de standaardinstellingen voor nieuwe agendagebeurtenissen configureren.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Hier kunt u de standaardinstellingen voor nieuwe agendagebeurtenissen configureren. Deze instellingen kunnen op het ruimte- / profielniveau overschreven worden.', + 'Here you can configure default settings for the full calendar.' => 'Hier kunt u de standaardinstellingen voor de volledige kalender configureren.', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => 'Hier kunt u de standaardinstellingen voor de volledige kalender configureren. Deze instellingen kunnen op ruimte- en profielniveau worden overschreven.', + 'Here you can manage and disable different calendars.' => 'Hier kunt u agenda\'s beheren en uitschakelen.', + 'Here you can manage your event types.' => 'Hier kunt u uw gebeurtenistypes beheren.', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Indien geactiveerd, is het bovenste menu-item en het prikbord-fragment in de agenda alleen zichtbaar voor gebruikers die de agendamodule in hun profiel hebben geïnstalleerd.', + 'Include birthdays to dashboard snippet' => 'Voeg verjaardagen toe aan het prikbord-fragment', + 'Interval of upcoming events' => 'Interval van komende gebeurtenissen', + 'Max event items' => 'Maximaal aantal gebeurtenissen', + 'Menu settings' => 'Menu-instellingen', + 'Name' => 'Naam', + 'One month' => 'Een maand', + 'One week' => 'Een week', + 'One year' => 'Een jaar', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Toon alleen het bovenste menu-item en het fragment als de module is geïnstalleerd in het gebruikersprofiel', + 'Participation' => 'Deelnemen', + 'Reminder' => 'Herinnering', + 'Reset' => 'Opnieuw instellen', + 'Show snippet' => 'Toon fragment', + 'There are currently no event types available.' => 'Er zijn momenteel geen gebeurtenistypes beschikbaar.', + 'Upcoming events snippet' => 'Komende gebeurtenisfragment', + 'View mode' => 'Weergavewijze', ]; diff --git a/messages/nl/mail.php b/messages/nl/mail.php deleted file mode 100644 index 6c079431..00000000 --- a/messages/nl/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Beschrijving', - 'Location' => 'Plaats', - 'Organizer' => 'Organisator', - 'Participants info' => 'Deelnemersinfo', - 'Starting' => 'Beginnend', - 'View Online: {url}' => 'Online bekijken: {url}', -); diff --git a/messages/nl/notification.php b/messages/nl/notification.php new file mode 100644 index 00000000..5237a4fc --- /dev/null +++ b/messages/nl/notification.php @@ -0,0 +1,25 @@ + 'Agenda', + 'Calendar: Invite' => 'Agenda: Uitnodigen', + 'Calendar: attend' => 'Agenda - aanwezig', + 'Calendar: decline' => 'Agenda - afwezig', + 'Calendar: maybe' => 'Agenda - misschien', + 'Description' => 'Beschrijving', + 'Location' => 'Plaats', + 'Organizer' => 'Organisator', + 'Participants info' => 'Deelnemersinfo', + 'Receive Calendar related Notifications.' => 'Ontvang agenda gerelateerde meldingen.', + 'Starting' => 'Beginnend', + 'View Online: {url}' => 'Online bekijken: {url}', + 'Whenever someone declines to participate in an event.' => 'Wanneer iemand weigert deel te nemen aan een gebeurtenis.', + 'Whenever someone invites to participate in an event.' => 'Wanneer iemand uitnodigt om deel te nemen aan een evenement.', + 'Whenever someone may be participating in an event.' => 'Wanneer iemand mogelijk deelneemt aan een gebeurtenis.', + 'Whenever someone participates in an event.' => 'Wanneer iemand deelneemt aan een gebeurtenis.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} annuleerde "{contentTitle}" in ruimte {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} annuleerde "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} heropende "{contentTitle}" in ruimte {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} heropende "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} werkte zojuist "{contentTitle}" in ruimte {spaceName} bij.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} heeft {contentTitle} zojuist bijgewerkt.', +]; diff --git a/messages/nl/notifications_CalendarNotificationCategory.php b/messages/nl/notifications_CalendarNotificationCategory.php deleted file mode 100644 index d94e0b65..00000000 --- a/messages/nl/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Agenda', - 'Receive Calendar related Notifications.' => 'Ontvang agenda gerelateerde meldingen.', -); diff --git a/messages/nl/notifications_views_CanceledEvent.php b/messages/nl/notifications_views_CanceledEvent.php deleted file mode 100644 index 429bd173..00000000 --- a/messages/nl/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} annuleerde "{contentTitle}" in ruimte {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} annuleerde "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} werkte zojuist "{contentTitle}" in ruimte {spaceName} bij.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} heeft {contentTitle} zojuist bijgewerkt.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} heropende "{contentTitle}" in ruimte {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} heropende "{contentTitle}".', -]; diff --git a/messages/nl/permissions.php b/messages/nl/permissions.php deleted file mode 100644 index 21bde284..00000000 --- a/messages/nl/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'De gebruiker mag nieuwe agenda-items maken', - 'Allows the user to edit/delete existing calendar entries' => 'De gebruiker mag bestaande agenda-items bewerken of verwijderen', - 'Create entry' => 'Maak agenda-item', - 'Manage entries' => 'Beheer items', -); diff --git a/messages/nl/recurrence.php b/messages/nl/recurrence.php deleted file mode 100644 index 626b241e..00000000 --- a/messages/nl/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Na (occurrences)', - 'Day' => 'Dag', - 'Days' => 'Dagen', - 'Delete all events' => 'Alle gebeurtenissen verwijderen', - 'Edit all events' => 'Bewerk alle gebeurtenissen', - 'Edit this and following events' => 'Bewerk deze en volgende gebeurtenissen', - 'Edit this event' => 'Gebeurtenis bewerken', - 'End' => 'Einde', - 'Invalid day of month given' => 'Ongeldige dag van de maand opgegeven', - 'Invalid frequency given' => 'Ongeldige herhaling opgegeven', - 'Invalid interval given' => 'Ongeldig interval opgegeven', - 'Invalid week day selection' => 'Ongeldige weekdag gekozen', - 'Month' => 'Maand', - 'Monthly on day {dayOfMonth}' => 'Maandelijks op dag {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Maandelijks op de {position} van {dayOfWeek}', - 'Months' => 'Maanden', - 'Never' => 'Nooit', - 'On date' => 'Op datum', - 'Repeat every' => 'Herhaal elke', - 'This event does not support recurrent events' => 'Deze gebeurtenis kan worden herhaald.', - 'Week' => 'Week', - 'Weeks' => 'Weken', - 'Year' => 'Jaar', - 'Years' => 'Jaren', - 'first' => 'Eerste', - 'forth' => 'volgende', - 'last' => 'laatste', - 'on weekdays' => 'op weekdagen van maandag tot vrijdag', - 'second' => 'Tweede', - 'third' => 'Derde', -); diff --git a/messages/nl/reminder.php b/messages/nl/reminder.php deleted file mode 100644 index 48d975b3..00000000 --- a/messages/nl/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Aangepaste herinnering', - 'Day' => 'Dag', - 'Default reminder settings' => 'Standaard herinneringsinstellingen', - 'Here you can configure default settings for all calendar events.' => 'Hier kunt u standaardinstellingen configureren voor alle agenda-gebeurtenissen.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Hier kunt u globale standaardherinneringen configureren. Deze instellingen kunnen op ruimte- / acccountniveau worden overschreven.', - '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.' => 'Hier kunt u de standaardherinneringsinstellingen voor deze gebeurtenis configureren. Gebruikers kunnen deze instellingen overschrijven via de koppeling Herinnering instellen.', - 'Hour' => 'Uur', - 'Minute' => 'Minuut', - 'No reminder' => 'Geen herinnering', - 'Upcoming {type}' => 'Aankomend {type}', - 'Upcoming {type}: {title}' => 'Aankomend {type}: {title}', - 'Use default reminder' => 'Gebruik standaardherinnering', - 'Week' => 'Week', - 'You have an {type} coming up' => 'Er komt een {type} aan', - 'You have an {type} coming up: {title}' => 'Er komt een {type} aan: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Uw herinneringsinstellingen voor gebeurtenis: \'{title}\'', -); diff --git a/messages/nl/settings.php b/messages/nl/settings.php deleted file mode 100644 index 954a713e..00000000 --- a/messages/nl/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Basis', - 'Full calendar' => 'Volledige agenda', - 'Participation' => 'Deelnemen', - 'Reminder' => 'Herinnering', -); diff --git a/messages/nl/views.php b/messages/nl/views.php new file mode 100644 index 00000000..0d7c26fc --- /dev/null +++ b/messages/nl/views.php @@ -0,0 +1,60 @@ + '%displayName% kan %contentTitle% niet bijwonen.', + '%displayName% created a new %contentTitle%.' => '%displayName% heeft %contentTitle% aangemaakt.', + '%displayName% is attending %contentTitle%.' => '%displayName% gaat naar %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% is uitgenodigd voor %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% is mogelijk aanwezig op %contentTitle%.', + ':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 strong>', + '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', + 'Filter' => 'Filter', + 'Filter events' => 'Gebeurtenissen filteren', + 'Followed spaces' => 'Gevolgde ruimtes', + 'Followed users' => 'Gevolgde gebruikers', + 'General' => 'Algemeen', + 'I\'m attending' => 'Ik ben aanwezig', + 'Invited' => 'Uitgenodigd', + 'Loading...' => 'Laden...', + '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', +]; diff --git a/messages/nl/views_activities_EntryCreated.php b/messages/nl/views_activities_EntryCreated.php deleted file mode 100644 index 23df1551..00000000 --- a/messages/nl/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% heeft %contentTitle% aangemaakt.', -); diff --git a/messages/nl/views_activities_EntryResponse.php b/messages/nl/views_activities_EntryResponse.php deleted file mode 100644 index 3157fd86..00000000 --- a/messages/nl/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% kan %contentTitle% niet bijwonen.', - '%displayName% is attending %contentTitle%.' => '%displayName% gaat naar %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% is uitgenodigd voor %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% is mogelijk aanwezig op %contentTitle%.', -); diff --git a/messages/nl/views_container-config_typesConfig.php b/messages/nl/views_container-config_typesConfig.php deleted file mode 100644 index 8d07155b..00000000 --- a/messages/nl/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Maak nieuw gebeurtenistype', - 'Edit calendar' => 'Agenda bewerken strong>', - 'Edit event type' => 'Bewerk gebeurtenistype', -); diff --git a/messages/nl/views_entry_edit.php b/messages/nl/views_entry_edit.php deleted file mode 100644 index 85426677..00000000 --- a/messages/nl/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Maak gebeurtenis', - 'Edit Event' => 'Bewerk gebeurtenis', - 'Edit recurring event' => 'Bewerk herhalende gebeurtenis', - 'Are you sure want to remove the participant from the event?' => 'Weet u zeker dat u de deelnemer uit het gebeurtenis wilt verwijderen?', - 'Attending' => 'Bijwonen', - 'Back' => 'Terug', - 'Close' => 'Sluiten', - 'Declined' => 'Afgewezen', - 'Everybody can participate' => 'Iedereen kan deelnemen', - 'General' => 'Algemeen', - 'Invited' => 'Uitgenodigd', - 'Next' => 'Volgende', - 'No participants' => 'Geen deelnemers', - 'Only by Invite' => 'Alleen op uitnodiging', - 'Participants' => 'Deelnemers', - 'Recurrence' => 'Herhaling', - 'Reminder' => 'Herinnering', - 'Select event type...' => 'Kies een gebeurtenis-type...', - 'Settings' => 'Instellingen', - 'Title' => 'Titel', - 'Undecided' => 'Onbepaald', - '{count} Participants' => '{count} deelnemers', -); diff --git a/messages/nl/views_entry_view.php b/messages/nl/views_entry_view.php deleted file mode 100644 index c61ea0c7..00000000 --- a/messages/nl/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Extra informatie', - 'All' => 'Alle', - 'Attend' => 'Deelnemen', - 'Decline' => 'Afwijzen', - 'Filter' => 'Filter', - 'Maybe' => 'Misschien', - 'Participants' => 'Deelnemers', - 'You are invited, please select your role:' => 'U bent uitgenodigd, selecteer uw rol:', -); diff --git a/messages/nl/views_global_index.php b/messages/nl/views_global_index.php deleted file mode 100644 index bfc8b436..00000000 --- a/messages/nl/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Gebeurtenissen filteren', - 'Followed spaces' => 'Gevolgde ruimtes', - 'Followed users' => 'Gevolgde gebruikers', - 'I\'m attending' => 'Ik ben aanwezig', - 'My events' => 'Mijn gebeurtenissen', - 'My profile' => 'Mijn profiel', - 'My spaces' => 'Mijn ruimtes', - 'Select calendars' => 'Kies kalenders', -); diff --git a/messages/nl/widgets_GlobalConfigMenu.php b/messages/nl/widgets_GlobalConfigMenu.php deleted file mode 100644 index 75cfd48e..00000000 --- a/messages/nl/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Agenda\\\'s', - 'Defaults' => 'Standaard instellingen', - 'Event Types' => 'Gebeurtenis-types', - 'Menu' => 'Menu', - 'Snippet' => 'Codefragment', -); diff --git a/messages/nl/widgets_views_fullCalendar.php b/messages/nl/widgets_views_fullCalendar.php deleted file mode 100644 index d7477e1d..00000000 --- a/messages/nl/widgets_views_fullCalendar.php +++ /dev/null @@ -1,4 +0,0 @@ - 'Laden...', -); diff --git a/messages/nl/widgets_views_nextEvents.php b/messages/nl/widgets_views_nextEvents.php deleted file mode 100644 index 39c09f57..00000000 --- a/messages/nl/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Aankomende gebeurtenissen ', - 'Open Calendar' => 'Open agenda', -); diff --git a/messages/nl/widgets_views_participants.php b/messages/nl/widgets_views_participants.php deleted file mode 100644 index ec96969c..00000000 --- a/messages/nl/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count aanwezig', - ':count Declined' => ':count afgewezen', - ':count Invited' => ':count uitgenodigd', - ':count Undecided' => ':count onbepaald', - 'Participants' => 'Deelnemers', -); diff --git a/messages/nn-NO/activities.php b/messages/nn-NO/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/nn-NO/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/nn-NO/base.php b/messages/nn-NO/base.php index c43e4f98..3f53f5b5 100644 --- a/messages/nn-NO/base.php +++ b/messages/nn-NO/base.php @@ -1,95 +1,145 @@ 'Tittel', - 'disabled' => 'funksjonshemmet', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'Next' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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' => 'Tittel', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {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' => '', + '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' => 'funksjonshemmet', + 'first' => '', + 'forth' => '', + 'global' => '', + '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}".' => '', ]; diff --git a/messages/nn-NO/calendar.php b/messages/nn-NO/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/nn-NO/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/nn-NO/config.php b/messages/nn-NO/config.php index b40a8327..454bbe1a 100644 --- a/messages/nn-NO/config.php +++ b/messages/nn-NO/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Delete' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/nn-NO/mail.php b/messages/nn-NO/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/nn-NO/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/nn-NO/notification.php b/messages/nn-NO/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/nn-NO/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/nn-NO/notifications_CalendarNotificationCategory.php b/messages/nn-NO/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 79acb3f4..00000000 --- a/messages/nn-NO/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/nn-NO/notifications_views_CanceledEvent.php b/messages/nn-NO/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/nn-NO/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/nn-NO/permissions.php b/messages/nn-NO/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/nn-NO/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/nn-NO/recurrence.php b/messages/nn-NO/recurrence.php deleted file mode 100644 index 5fe83811..00000000 --- a/messages/nn-NO/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/nn-NO/reminder.php b/messages/nn-NO/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/nn-NO/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/nn-NO/settings.php b/messages/nn-NO/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/nn-NO/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/nn-NO/views.php b/messages/nn-NO/views.php new file mode 100644 index 00000000..ee735d7f --- /dev/null +++ b/messages/nn-NO/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => 'Innstillinger', + 'Snippet' => '', + 'Title' => 'Tittel', + 'Undecided' => '', + 'You are invited, please select your role:' => '', + '{count} Participants' => '', +]; diff --git a/messages/nn-NO/views_activities_EntryResponse.php b/messages/nn-NO/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/nn-NO/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/nn-NO/views_container-config_typesConfig.php b/messages/nn-NO/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/nn-NO/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/nn-NO/views_entry_edit.php b/messages/nn-NO/views_entry_edit.php deleted file mode 100644 index 85d7ee53..00000000 --- a/messages/nn-NO/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '', - 'Close' => '', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '', - 'Invited' => '', - 'Next' => '', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Innstillinger', - 'Title' => 'Tittel', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/nn-NO/views_entry_view.php b/messages/nn-NO/views_entry_view.php deleted file mode 100644 index 3701c09e..00000000 --- a/messages/nn-NO/views_entry_view.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -]; diff --git a/messages/nn-NO/views_global_index.php b/messages/nn-NO/views_global_index.php deleted file mode 100644 index 42d34833..00000000 --- a/messages/nn-NO/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/nn-NO/widgets_GlobalConfigMenu.php b/messages/nn-NO/widgets_GlobalConfigMenu.php deleted file mode 100644 index 5f306be5..00000000 --- a/messages/nn-NO/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '', - 'Snippet' => '', -]; diff --git a/messages/nn-NO/widgets_views_nextEvents.php b/messages/nn-NO/widgets_views_nextEvents.php deleted file mode 100644 index 870ac23b..00000000 --- a/messages/nn-NO/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/nn-NO/widgets_views_participants.php b/messages/nn-NO/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/nn-NO/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/pl/activities.php b/messages/pl/activities.php deleted file mode 100644 index 895ed5b6..00000000 --- a/messages/pl/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Kalendarz: Zaproszenie', - 'Calendar: attend' => 'Kalendarz: potwierdź obecność', - 'Calendar: decline' => 'Kalendarz: odmów', - 'Calendar: maybe' => 'Kalendarz: może', - 'Whenever someone declines to participate in an event.' => 'Każdorazowo gdy ktoś odmówi uczestnictwa w wydarzeniu.', - 'Whenever someone invites to participate in an event.' => 'O ile ktoś zaprasza do udziału w wydarzeniu.', - 'Whenever someone may be participating in an event.' => 'Każdorazowo gdy ktoś może uczestniczyć w wydarzeniu.', - 'Whenever someone participates in an event.' => 'Każdorazowo gdy ktoś będzie uczestniczył w wydarzeniu.', -); diff --git a/messages/pl/base.php b/messages/pl/base.php index dbb687c6..dd8c3ce6 100644 --- a/messages/pl/base.php +++ b/messages/pl/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Dodaj kalendarz profilowy', 'Choose target calendar' => 'Wybierz docelowy kalendarz', 'Reminder settings' => 'Ustawienia przypomnień', @@ -9,24 +9,37 @@ 'Additional Information for participants' => '', '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\'' => '', 'Allow option \'Undecided\'' => '', + '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.' => '', 'Birthday' => 'Urodziny', 'Calendar' => 'Kalendarz', 'Cancel Event' => 'Anuluj wydarzenie', 'Cannot remove the participant!' => '', + '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', 'Do you want to install this module on your profile?' => 'Czy chcesz zainstalować ten moduł na swoim profilu?', 'Download ICS' => '', 'Edit' => 'Edytuj', 'Edit Event' => '', + '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' => '', + '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!', @@ -40,21 +53,40 @@ 'Files' => 'Pliki', 'Filter by types' => '', '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.' => 'Tutaj możesz ustawić domyślne ustawienia przypomnień dla tego wydarzenia. Użytkownicy mogą nadpisać te ustawienia przez odnośnik Ustaw przypomnienie.', + 'Hour' => 'Godzina', '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}' => '', + 'List' => 'Lista', 'Location' => 'Miejsce', + 'Manage entries' => 'Zarządzanie pozycjami', 'Maximum number of participants' => 'Maksymalna liczba uczestników', + 'Minute' => '', 'Mode' => '', '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.' => '', 'No new participants were invited.' => '', + 'No reminder' => 'Brak przypomnienia', 'Notify participants about changes' => '', + 'On date' => 'W dniu', 'Participant removed.' => '', 'Participants' => 'Uczestnicy', 'Participation Status' => '', @@ -64,6 +96,7 @@ 'Public' => 'Publiczny', 'Recurring' => 'Powtarzające się', 'Reopen Event' => 'Ponownie otwórz wydarzenie', + 'Repeat every' => 'Powtarzaj w każdy', 'Saturday' => 'Sobota', 'Set reminder' => 'Ustaw przypomnienie', 'Start Date' => 'Data początku', @@ -72,23 +105,41 @@ 'Status updated.' => '', 'Sunday' => 'Niedziela', 'The event has already ended.' => '', + '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!' => '', '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}' => '', '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}\'' => 'Twoje ustawienie przypomnienia dla wydarzenia: \'{title}\'', 'canceled' => 'anulowano', 'disabled' => 'wyłączony', + 'first' => 'pierwszy', + 'forth' => 'czwarty', 'global' => '', + '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} invited you to the event "{contentTitle}".' => '', -); +]; diff --git a/messages/pl/calendar.php b/messages/pl/calendar.php deleted file mode 100644 index 392930fa..00000000 --- a/messages/pl/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dzień', - 'List' => 'Lista', - 'Month' => 'Miesiąc', - 'Today' => 'Dziś', - 'Week' => 'Tydzień', - 'Year' => 'Rok', -); diff --git a/messages/pl/config.php b/messages/pl/config.php index 1de1dcb5..f76f226d 100644 --- a/messages/pl/config.php +++ b/messages/pl/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Kalendarz - konfiguracja modułu', - 'Confirm Deletion' => 'potwierdź usunięcie', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Dodaje panel z nadchodzącymi wydarzeniami do kokpitu użytkowników.', - 'Calendar Configuration' => 'Ustawienia Kalendarza', - 'Create new type' => 'Stwórz nowy typ', - 'Default participation settings' => 'Domyślne ustawienia uczestnictwa', - 'Delete' => 'Usuń', - 'Do you really want to delte this event type?' => 'Na pewno chcesz usunąć ten typ wydarzeń?', - 'Event Type Configuration' => 'Konfiguracja typu wydarzeń', - 'Half a year' => 'Pół roku', - 'Here you can configure default settings for new calendar events.' => 'Tutaj możesz skonfigurować domyślne ustawienia nowych wydarzeń w kalendarzu.', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Tutaj możesz skonfigurować domyślne ustawienia nowych wydarzeń w kalendarzu. Te ustawienia mogą zostać nadpisane na poziomie strefy/profilu.', - 'Here you can manage and disable different calendars.' => 'Tutaj możesz zarządzać oraz wyłączać kalendarze.', - 'Here you can manage your event types.' => 'Tutaj możesz zarządzać typami wydarzeń.', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Jeśli włączone, kalendarz w górnym menu oraz widget w kokpicie będą widoczne tylko dla użytkowników, którzy włączyli kalendarz na swoich profilach.', - 'Include birthdays to dashboard snippet' => 'Załącz urodziny w wycinku na głównym pulpicie.', - 'Interval of upcoming events' => 'Przedział nadchodzących wydarzeń', - 'Max event items' => 'Maksymalna liczba czynności w wydarzeniu', - 'Menu settings' => 'Ustawienia Menu', - 'Name' => 'Nazwa', - 'One month' => 'Jeden miesiąc', - 'One week' => 'Jeden tydzień', - 'One year' => 'Jeden rok', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Pokazuj obiekt górnego menu i widget tylko użytkownikom z modułem włączonym w profilu', - 'Reset' => 'Reset', - 'Show snippet' => 'Pokazuj widget', - 'There are currently no event types available.' => 'Nie ma obecnie dostępnych żadnych typów wydarzeń.', - 'Upcoming events snippet' => 'Widget z nadchodzącymi wydarzeniami', - 'Add \'Calendar\' to the main menu' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'View mode' => '', + 'Calendar module configuration' => 'Kalendarz - konfiguracja modułu', + 'Confirm Deletion' => 'potwierdź usunięcie', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Dodaje panel z nadchodzącymi wydarzeniami do kokpitu użytkowników.', + 'Basic' => 'Podstawowe', + 'Calendar Configuration' => 'Ustawienia Kalendarza', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Stwórz nowy typ', + 'Default basic settings' => '', + 'Default participation settings' => 'Domyślne ustawienia uczestnictwa', + 'Delete' => 'Usuń', + 'Do you really want to delte this event type?' => 'Na pewno chcesz usunąć ten typ wydarzeń?', + 'Event Type Configuration' => 'Konfiguracja typu wydarzeń', + 'Full calendar' => '', + 'Half a year' => 'Pół roku', + 'Here you can configure default settings for new calendar events.' => 'Tutaj możesz skonfigurować domyślne ustawienia nowych wydarzeń w kalendarzu.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Tutaj możesz skonfigurować domyślne ustawienia nowych wydarzeń w kalendarzu. Te ustawienia mogą zostać nadpisane na poziomie strefy/profilu.', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => 'Tutaj możesz zarządzać oraz wyłączać kalendarze.', + 'Here you can manage your event types.' => 'Tutaj możesz zarządzać typami wydarzeń.', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Jeśli włączone, kalendarz w górnym menu oraz widget w kokpicie będą widoczne tylko dla użytkowników, którzy włączyli kalendarz na swoich profilach.', + 'Include birthdays to dashboard snippet' => 'Załącz urodziny w wycinku na głównym pulpicie.', + 'Interval of upcoming events' => 'Przedział nadchodzących wydarzeń', + 'Max event items' => 'Maksymalna liczba czynności w wydarzeniu', + 'Menu settings' => 'Ustawienia Menu', + 'Name' => 'Nazwa', + 'One month' => 'Jeden miesiąc', + 'One week' => 'Jeden tydzień', + 'One year' => 'Jeden rok', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Pokazuj obiekt górnego menu i widget tylko użytkownikom z modułem włączonym w profilu', + 'Participation' => 'Uczestnictwo', + 'Reminder' => 'Przypomnienia', + 'Reset' => 'Reset', + 'Show snippet' => 'Pokazuj widget', + 'There are currently no event types available.' => 'Nie ma obecnie dostępnych żadnych typów wydarzeń.', + 'Upcoming events snippet' => 'Widget z nadchodzącymi wydarzeniami', + 'View mode' => '', ]; diff --git a/messages/pl/mail.php b/messages/pl/mail.php deleted file mode 100644 index 3871d3de..00000000 --- a/messages/pl/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Opis', - 'Location' => 'Lokalizacja', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'Zobacz online: {url}', -); diff --git a/messages/pl/notification.php b/messages/pl/notification.php new file mode 100644 index 00000000..860b7dea --- /dev/null +++ b/messages/pl/notification.php @@ -0,0 +1,25 @@ + 'Kalendarz', + 'Calendar: Invite' => 'Kalendarz: Zaproszenie', + 'Calendar: attend' => 'Kalendarz: potwierdź obecność', + 'Calendar: decline' => 'Kalendarz: odmów', + 'Calendar: maybe' => 'Kalendarz: może', + 'Description' => 'Opis', + 'Location' => 'Lokalizacja', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Otrzymuj powiadomienia związane z kalendarzem.', + 'Starting' => '', + 'View Online: {url}' => 'Zobacz online: {url}', + 'Whenever someone declines to participate in an event.' => 'Każdorazowo gdy ktoś odmówi uczestnictwa w wydarzeniu.', + 'Whenever someone invites to participate in an event.' => 'O ile ktoś zaprasza do udziału w wydarzeniu.', + 'Whenever someone may be participating in an event.' => 'Każdorazowo gdy ktoś może uczestniczyć w wydarzeniu.', + 'Whenever someone participates in an event.' => 'Każdorazowo gdy ktoś będzie uczestniczył w wydarzeniu.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} odwołał/a wydarzenie "{contentTitle}" w przestrzeni {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} odwołał/a wydarzenie "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} wznowił/a wydarzenie "{contentTitle}" w strefie {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} wznowił/a wydarzenie "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} zaktualizował/a wydarzenie "{contentTitle}" w strefie {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} zaktualizował/a wydarzenie {contentTitle}.', +]; diff --git a/messages/pl/notifications_CalendarNotificationCategory.php b/messages/pl/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 6f93ff56..00000000 --- a/messages/pl/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalendarz', - 'Receive Calendar related Notifications.' => 'Otrzymuj powiadomienia związane z kalendarzem.', -); diff --git a/messages/pl/notifications_views_CanceledEvent.php b/messages/pl/notifications_views_CanceledEvent.php deleted file mode 100644 index 458935c5..00000000 --- a/messages/pl/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} odwołał/a wydarzenie "{contentTitle}" w przestrzeni {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} odwołał/a wydarzenie "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} zaktualizował/a wydarzenie "{contentTitle}" w strefie {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} zaktualizował/a wydarzenie {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} wznowił/a wydarzenie "{contentTitle}" w strefie {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} wznowił/a wydarzenie "{contentTitle}".', -]; diff --git a/messages/pl/permissions.php b/messages/pl/permissions.php deleted file mode 100644 index 8275dabd..00000000 --- a/messages/pl/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Tworzenie pozycji', - 'Manage entries' => 'Zarządzanie pozycjami', -); diff --git a/messages/pl/recurrence.php b/messages/pl/recurrence.php deleted file mode 100644 index d6dbe72f..00000000 --- a/messages/pl/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Po (occurrences)', - 'Day' => 'Dzień', - 'Days' => 'Dni', - 'Delete all events' => 'Usuń wszystkie wydarzenia', - 'Edit all events' => 'Edytuj wszystkie wydarzenia', - 'Edit this and following events' => 'Edytuj to i kolejne wydarzenia', - 'Edit this event' => 'Edytuj to wydarzenie', - 'End' => 'Koniec', - 'Invalid day of month given' => 'Podano nieprawidłowy dzień miesiąca', - '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', - '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', - 'On date' => 'W dniu', - 'Repeat every' => 'Powtarzaj w każdy', - 'This event does not support recurrent events' => 'To wydarzenie nie obsługuje powtarzanych zdarzeń', - 'Week' => 'Tydzień', - 'Weeks' => 'Tygodnie', - 'Year' => 'Rok', - 'Years' => 'Lata', - 'first' => 'pierwszy', - 'forth' => 'czwarty', - 'last' => 'ostatnie', - 'on weekdays' => 'w dni tygodnia', - 'second' => 'sekund', - 'third' => 'trzecia', -); diff --git a/messages/pl/reminder.php b/messages/pl/reminder.php deleted file mode 100644 index 77579012..00000000 --- a/messages/pl/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - 'Własne przypomnienie', - 'Day' => 'Dzień', - 'Default reminder settings' => 'Domyślne ustawienia przypomnień', - '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.' => 'Tutaj możesz ustawić domyślne ustawienia przypomnień dla tego wydarzenia. Użytkownicy mogą nadpisać te ustawienia przez odnośnik Ustaw przypomnienie.', - 'Hour' => 'Godzina', - 'No reminder' => 'Brak przypomnienia', - 'Upcoming {type}' => 'Nadchodzące {type}', - 'Upcoming {type}: {title}' => 'Nadchodzące {type}: {title}', - 'Use default reminder' => 'Użyj domyślnego przypomnienia', - 'Week' => 'Tydzień', - '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}', - 'Your reminder settings for event: \'{title}\'' => 'Twoje ustawienie przypomnienia dla wydarzenia: \'{title}\'', - 'Minute' => '', -]; diff --git a/messages/pl/settings.php b/messages/pl/settings.php deleted file mode 100644 index 98f6c74a..00000000 --- a/messages/pl/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Podstawowe', - 'Full calendar' => '', - 'Participation' => 'Uczestnictwo', - 'Reminder' => 'Przypomnienia', -); diff --git a/messages/pl/views.php b/messages/pl/views.php new file mode 100644 index 00000000..52bdc88c --- /dev/null +++ b/messages/pl/views.php @@ -0,0 +1,59 @@ + '%displayName% nie może uczestniczyć w %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% utworzył nowe %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% uczestniczy w %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %contentTitle%.' => '%displayName% może weźmie udział w %contentTitle%.', + ':count Attending' => '', + ':count Declined' => '', + ':count Invited' => '', + ':count Undecided' => '', + 'Create Event' => '', + 'Create new event type' => 'Stwórz nowy typ wydarzeń', + 'Edit Event' => '', + '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?' => '', + 'Attend' => 'Wezmę udział', + 'Attending' => 'Biorę udział', + 'Back' => 'Wstecz', + 'Calendars' => 'Kalendarze', + 'Close' => 'Zamknij', + 'Decline' => 'Odrzuć', + 'Declined' => '', + 'Defaults' => 'Domyślne', + 'Event Types' => 'Typy wydarzeń', + 'Everybody can participate' => 'Każdy może wziąć udział', + 'Filter' => 'Filtr', + 'Filter events' => '', + 'Followed spaces' => 'Obserwowane strefy', + 'Followed users' => 'Obserwowani użytkownicy', + 'General' => 'Ogólne', + 'I\'m attending' => 'Biorę udział', + 'Invited' => '', + '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' => '', + 'Open Calendar' => 'Otwórz kalendarz', + 'Participants' => 'Uczestnicy', + 'Recurrence' => 'Powtarzanie', + 'Reminder' => 'Przypomnienia', + 'Select calendars' => '', + 'Select event type...' => 'Wybierz typ wydarzenia...', + 'Settings' => 'Ustawienia', + 'Snippet' => 'Panel', + 'Title' => 'Tytuł', + 'Undecided' => '', + 'You are invited, please select your role:' => '', + '{count} Participants' => '', +]; diff --git a/messages/pl/views_activities_EntryCreated.php b/messages/pl/views_activities_EntryCreated.php deleted file mode 100644 index 6aa9447e..00000000 --- a/messages/pl/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% utworzył nowe %contentTitle%.', -); diff --git a/messages/pl/views_activities_EntryResponse.php b/messages/pl/views_activities_EntryResponse.php deleted file mode 100644 index 3b43caf6..00000000 --- a/messages/pl/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '%displayName% nie może uczestniczyć w %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% uczestniczy w %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% może weźmie udział w %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '', -]; diff --git a/messages/pl/views_container-config_typesConfig.php b/messages/pl/views_container-config_typesConfig.php deleted file mode 100644 index 5576b6e6..00000000 --- a/messages/pl/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Stwórz nowy typ wydarzeń', - 'Edit calendar' => 'edytuj kalendarz', - 'Edit event type' => 'Edytuj typ wydarzeń', -); diff --git a/messages/pl/views_entry_edit.php b/messages/pl/views_entry_edit.php deleted file mode 100644 index bdb253c6..00000000 --- a/messages/pl/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => 'Edytuj powtarzające się wydarzenie', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Biorę udział', - 'Back' => 'Wstecz', - 'Close' => 'Zamknij', - 'Declined' => '', - 'Everybody can participate' => 'Każdy może wziąć udział', - 'General' => 'Ogólne', - 'Invited' => '', - 'Next' => 'Dalej', - 'No participants' => 'Brak biorących udział', - 'Only by Invite' => '', - 'Participants' => 'Uczestnicy', - 'Recurrence' => 'Powtarzanie', - 'Reminder' => 'Przypomnienia', - 'Select event type...' => 'Wybierz typ wydarzenia...', - 'Settings' => 'Ustawienia', - 'Title' => 'Tytuł', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/pl/views_entry_view.php b/messages/pl/views_entry_view.php deleted file mode 100644 index 100670d5..00000000 --- a/messages/pl/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Dodatkowe informacje', - 'All' => 'Wszystko', - 'Attend' => 'Wezmę udział', - 'Decline' => 'Odrzuć', - 'Filter' => 'Filtr', - 'Maybe' => 'Może', - 'Participants' => 'Uczestnicy', - 'You are invited, please select your role:' => '', -); diff --git a/messages/pl/views_global_index.php b/messages/pl/views_global_index.php deleted file mode 100644 index 57b896be..00000000 --- a/messages/pl/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Obserwowane strefy', - 'Followed users' => 'Obserwowani użytkownicy', - 'I\'m attending' => 'Biorę udział', - 'My events' => 'Moje wydarzenia', - 'My profile' => 'Mój profil', - 'My spaces' => 'Moje strefy', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/pl/widgets_GlobalConfigMenu.php b/messages/pl/widgets_GlobalConfigMenu.php deleted file mode 100644 index eb0e8e14..00000000 --- a/messages/pl/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Kalendarze', - 'Defaults' => 'Domyślne', - 'Event Types' => 'Typy wydarzeń', - 'Menu' => 'Menu', - 'Snippet' => 'Panel', -); diff --git a/messages/pl/widgets_views_nextEvents.php b/messages/pl/widgets_views_nextEvents.php deleted file mode 100644 index bda3d5fd..00000000 --- a/messages/pl/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Nadchodzące wydarzenia', - 'Open Calendar' => 'Otwórz kalendarz', -); diff --git a/messages/pl/widgets_views_participants.php b/messages/pl/widgets_views_participants.php deleted file mode 100644 index c30ba5f1..00000000 --- a/messages/pl/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Uczestnicy', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/pt-BR/activities.php b/messages/pt-BR/activities.php deleted file mode 100644 index a1acf879..00000000 --- a/messages/pt-BR/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Calendário: Convidar', - 'Calendar: attend' => 'Calendário: Comparecer', - 'Calendar: decline' => 'Calendário: Recusar', - 'Calendar: maybe' => 'Calendário: Talvez', - 'Whenever someone declines to participate in an event.' => 'Sempre que alguém se recusa a participar de um evento.', - 'Whenever someone invites to participate in an event.' => 'Sempre que alguém convidar para participar de um evento.', - 'Whenever someone may be participating in an event.' => 'Sempre que alguém estiver participando de um evento.', - 'Whenever someone participates in an event.' => 'Sempre que alguém participa de um evento.', -); diff --git a/messages/pt-BR/base.php b/messages/pt-BR/base.php index 25f9eb82..a358d491 100644 --- a/messages/pt-BR/base.php +++ b/messages/pt-BR/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Adicionar calendário de perfil', 'Choose target calendar' => 'Escolha calendário de destino', 'Reminder settings' => 'Configurações de lembrete ', @@ -9,24 +9,37 @@ 'Additional Information for participants' => 'Informações adicionais para participantes', 'Adds a calendar for private or public events to your profile and main menu.' => 'Adicione um calendário para eventos privados ou públicos em seu perfil e menu principal.', 'Adds an event calendar to this space.' => 'Adicione um evento para este espaço.', + 'After (occurrences)' => 'Depois de (ocorrências)', 'All Day' => 'Todo dia', 'Allow option \'Decline\'' => 'Permitir opção \'Recusar\'', 'Allow option \'Undecided\'' => 'Permitir opção \'Indeciso\'', + 'Allows the user to create new calendar entries' => 'Permitir que usuários criem novas entradas de calendário', + 'Allows the user to edit/delete existing calendar entries' => 'Permitir que usuários alterem/apaguem entradas de calendário existentes', 'Attending' => 'Comparecendo', 'Before a target calendar can be selected, the module must be activated in at least one Space.' => 'Antes que um calendário de destino possa ser selecionado, o módulo deve ser ativado em pelo menos um Espaço.', 'Birthday' => 'Aniversário', 'Calendar' => 'Calendário', 'Cancel Event' => 'Cancelar evento', 'Cannot remove the participant!' => 'Não é possível remover o participante!', + 'Create entry' => 'Criar entrada', + 'Custom reminder' => 'Lembrete personalizado', + 'Day' => 'Dia', + 'Days' => 'Dias', + 'Default reminder settings' => 'Configurações de lembrete padrão', + 'Delete all events' => 'Apagar todos os eventos', 'Deleted' => 'Apagado', 'Description' => 'Descrição', 'Do you want to install this module on your profile?' => 'Quer instalar este módulo em seu perfil?', 'Download ICS' => 'Baixar ICS', 'Edit' => 'Editar', 'Edit Event' => 'Editar evento', + 'Edit all events' => 'Editar todos os eventos', + 'Edit this and following events' => 'Edite este e os eventos seguintes', + 'Edit this event' => 'Editar esse evento', 'Email' => 'E-mail', 'Enable' => 'Habilitar', 'Enable Reminder' => 'Ativar lembrete', + 'End' => 'Fim', 'End Date' => 'Data Final', 'End Time' => 'Hora de término', 'End time must be after start time!' => 'A hora de término precisa ser depois da hora de início!', @@ -40,21 +53,40 @@ 'Files' => 'Arquivos', 'Filter by types' => 'Filtrar por tipos', 'Friday' => 'sexta-feira', + 'Here you can configure default settings for all calendar events.' => 'Aqui você pode definir as configurações padrão para todos os eventos do calendário.', + 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Aqui você pode configurar lembretes padrão globais. Essas configurações podem ser substituídas no nível de 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.' => 'Aqui você pode definir as configurações de lembrete padrão para este evento. Os usuários podem substituir essas configurações por meio do link Definir lembrete .', + 'Hour' => 'Hora', 'ID' => 'ID', 'In order to add events to your profile, you have to enable the calendar module first.' => 'Para adicionar eventos ao seu perfil, você precisa habilitar o módulo de calendário primeiro.', 'Interested' => 'Interessado', 'Invalid date or time format!' => 'Formato de data ou hora inválido!', + 'Invalid day of month given' => 'Dia do mês inválido fornecido', 'Invalid event type id selected.' => 'Tipo de evento selecionado é inválido', + 'Invalid frequency given' => 'Frequência inválida fornecida', + 'Invalid interval given' => 'Intervalo inválido fornecido', + 'Invalid week day selection' => 'Seleção de dia da semana inválida', 'Invite' => 'Convite', 'Invited: {users}' => 'Convidados: {users}', + 'List' => 'Lista', 'Location' => 'Localização', + 'Manage entries' => 'Administrar entradas', 'Maximum number of participants' => 'Número máximo de participantes', + 'Minute' => 'Minuto', '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' => 'Próximo', 'No new participants were added.' => 'Nenhum novo participante foi adicionado.', 'No new participants were invited.' => 'Nenhum novo participante foi convidado.', + 'No reminder' => 'Sem lembrete', 'Notify participants about changes' => 'Notifique os participantes sobre as mudanças', + 'On date' => 'Na data', 'Participant removed.' => 'Participante removido.', 'Participants' => 'Participantes', 'Participation Status' => 'Status de participação', @@ -64,6 +96,7 @@ 'Public' => 'Público', 'Recurring' => 'Recorrente', 'Reopen Event' => 'Reabrir evento', + 'Repeat every' => 'Repita a cada', 'Saturday' => 'sábado', 'Set reminder' => 'Definir lembrete', 'Start Date' => 'Data de Inicio', @@ -72,23 +105,41 @@ 'Status updated.' => 'Status atualizado.', 'Sunday' => 'domingo', 'The event has already ended.' => 'O evento já terminou.', + 'This event does not support recurrent events' => 'Este evento não suporta eventos recorrentes', '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 do usuário', 'Wednesday' => 'quarta-feira', + 'Week' => 'Semana', + 'Weeks' => 'Semanas', + 'Year' => 'Ano', + 'Years' => 'Anos', 'You cannot invite participants!' => 'Você não pode convidar participantes!', 'You don\'t have permission to delete this event!' => 'Você não tem permissão para excluir este evento!', + 'You have an {type} coming up' => 'Você tem um {type} chegando', + 'You have an {type} coming up: {title}' => 'Você tem um {type} chegando: {title}', 'You have been registered for the event "{contentTitle}" in {spaceName}, starting at {time}' => 'Você foi registrado para o evento "{contentTitle}" em {spaceName}, começando às {time}', 'You have been registered for the event "{contentTitle}", starting at {time}.' => 'Você foi registrado para o evento "{contentTitle}", que começa às {time}.', 'You have been registered for the event "{contentTitle}".' => 'Você foi registrado para o evento "{contentTitle}".', + 'Your reminder settings for event: \'{title}\'' => 'Suas configurações de lembrete para o evento: \'{title}\' ', 'canceled' => 'cancelado', 'disabled' => 'Desativado', + 'first' => 'primeiro', + 'forth' => 'para frente', 'global' => 'global', + 'last' => 'último', + 'on weekdays' => 'nos dias úteis', + 'second' => 'segundo', + 'third' => 'terceiro', '{displayName} Birthday' => '{displayName} Aniversário', '{displayName} added you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} acabou de adicionar você ao evento "{contentTitle}" no espaço {spaceName} a partir de {time}.', '{displayName} added you to the event "{contentTitle}".' => '{displayName} acabou de adicionar você ao evento "{contentTitle}".', '{displayName} invited you to the event "{contentTitle}" in the space {spaceName}, starting at {time}.' => '{displayName} acabou de convidar você para o evento "{contentTitle}" no Espaço {spaceName} a partir de {time}.', '{displayName} invited you to the event "{contentTitle}".' => '{displayName} acaba de convidar você para o evento "{contentTitle}".', -); +]; diff --git a/messages/pt-BR/calendar.php b/messages/pt-BR/calendar.php deleted file mode 100644 index ee536a81..00000000 --- a/messages/pt-BR/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dia', - 'List' => 'Lista', - 'Month' => 'Mês', - 'Today' => 'Hoje', - 'Week' => 'Semana', - 'Year' => 'Ano', -); diff --git a/messages/pt-BR/config.php b/messages/pt-BR/config.php index 7a7ca4d6..eda928bc 100644 --- a/messages/pt-BR/config.php +++ b/messages/pt-BR/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => 'Módulo de configuração de Calendário', 'Confirm Deletion' => 'Confirmar exclusão', 'Add \'Calendar\' to the main menu' => 'Adicione \'Calendário\' ao menu principal', 'Adds an snippet with upcoming events to your users dashboard.' => 'Adiciona um fragmento com eventos futuros ao seu painel de usuários.', + 'Basic' => 'Básico', 'Calendar Configuration' => 'Configuração de calendário', 'Calendar default view mode settings' => 'Configurações do modo de visualização padrão do calendário', 'Create new type' => 'Criar novo tipo', @@ -12,6 +13,7 @@ 'Delete' => 'Apagar', 'Do you really want to delte this event type?' => 'Você realmente quer apagar esse tipo de evento?', 'Event Type Configuration' => 'Configuração de Tipo de Evento', + 'Full calendar' => 'Calendário completo', 'Half a year' => 'Metade de um ano', 'Here you can configure default settings for new calendar events.' => 'Aqui você pode definir configurações padrão para novos eventos de calendário.', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Aqui você pode definir configurações padrão para novos eventos de calendário. Essas configurações podem ser sobrescritas em nível de perfil/espaço.', @@ -29,9 +31,11 @@ 'One week' => 'Uma semana', 'One year' => 'Um ano', 'Only show top menu item and snippet if the module is installed in the users profile' => 'Somente exibir o menu superior e o fragmento se o módulo de calendário estiver instalado no perfil do usuário', + 'Participation' => 'Participação', + 'Reminder' => 'Lembrete', 'Reset' => 'Redefinir', 'Show snippet' => 'Exibir fragmento', 'There are currently no event types available.' => 'No momento não há tipos de evento disponíveis.', 'Upcoming events snippet' => 'Fragmento de eventos futuros', 'View mode' => 'Modo de visualização', -); +]; diff --git a/messages/pt-BR/mail.php b/messages/pt-BR/mail.php deleted file mode 100644 index d4674234..00000000 --- a/messages/pt-BR/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Descrição', - 'Location' => 'Local', - 'Organizer' => 'Organizador(a)', - 'Participants info' => 'Informações dos participantes', - 'Starting' => 'Começando', - 'View Online: {url}' => 'Ver online: {url}', -); diff --git a/messages/pt-BR/notification.php b/messages/pt-BR/notification.php new file mode 100644 index 00000000..6f7c0f06 --- /dev/null +++ b/messages/pt-BR/notification.php @@ -0,0 +1,25 @@ + 'Calendário', + 'Calendar: Invite' => 'Calendário: Convidar', + 'Calendar: attend' => 'Calendário: Comparecer', + 'Calendar: decline' => 'Calendário: Recusar', + 'Calendar: maybe' => 'Calendário: Talvez', + 'Description' => 'Descrição', + 'Location' => 'Local', + 'Organizer' => 'Organizador(a)', + 'Participants info' => 'Informações dos participantes', + 'Receive Calendar related Notifications.' => 'Receber notificações de calendário', + 'Starting' => 'Começando', + 'View Online: {url}' => 'Ver online: {url}', + 'Whenever someone declines to participate in an event.' => 'Sempre que alguém se recusa a participar de um evento.', + 'Whenever someone invites to participate in an event.' => 'Sempre que alguém convidar para participar de um evento.', + 'Whenever someone may be participating in an event.' => 'Sempre que alguém estiver participando de um evento.', + 'Whenever someone participates in an event.' => 'Sempre que alguém participa de um evento.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} cancelou o evento "{contentTitle}" no espaço {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} cancelou o evento "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} reabriu o evento "{contentTitle}" no espaço {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} reabriu o evento "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} acabou de atualizar o evento "{contentTitle}" no espaço {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} acabou de atualizar o evento {contentTitle}.', +]; diff --git a/messages/pt-BR/notifications_CalendarNotificationCategory.php b/messages/pt-BR/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 9f325d6c..00000000 --- a/messages/pt-BR/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Calendário', - 'Receive Calendar related Notifications.' => 'Receber notificações de calendário', -); diff --git a/messages/pt-BR/notifications_views_CanceledEvent.php b/messages/pt-BR/notifications_views_CanceledEvent.php deleted file mode 100644 index d9f70ef4..00000000 --- a/messages/pt-BR/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} cancelou o evento "{contentTitle}" no espaço {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} cancelou o evento "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} acabou de atualizar o evento "{contentTitle}" no espaço {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} acabou de atualizar o evento {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} reabriu o evento "{contentTitle}" no espaço {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} reabriu o evento "{contentTitle}".', -]; diff --git a/messages/pt-BR/permissions.php b/messages/pt-BR/permissions.php deleted file mode 100644 index a9b14eff..00000000 --- a/messages/pt-BR/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Permitir que usuários criem novas entradas de calendário', - 'Allows the user to edit/delete existing calendar entries' => 'Permitir que usuários alterem/apaguem entradas de calendário existentes', - 'Create entry' => 'Criar entrada', - 'Manage entries' => 'Administrar entradas', -); diff --git a/messages/pt-BR/recurrence.php b/messages/pt-BR/recurrence.php deleted file mode 100644 index 2a9279b1..00000000 --- a/messages/pt-BR/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Depois de (ocorrências)', - 'Day' => 'Dia', - 'Days' => 'Dias', - 'Delete all events' => 'Apagar todos os eventos', - 'Edit all events' => 'Editar todos os eventos', - 'Edit this and following events' => 'Edite este e os eventos seguintes', - 'Edit this event' => 'Editar esse evento', - 'End' => 'Fim', - 'Invalid day of month given' => 'Dia do mês inválido fornecido', - 'Invalid frequency given' => 'Frequência inválida fornecida', - 'Invalid interval given' => 'Intervalo inválido fornecido', - 'Invalid week day selection' => 'Seleção de dia da semana inválida', - 'Month' => 'Mês', - 'Monthly on day {dayOfMonth}' => 'Mensalmente no dia {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Mensalmente na {position} {dayOfWeek}', - 'Months' => 'Meses', - 'Never' => 'Nunca', - 'On date' => 'Na data', - 'Repeat every' => 'Repita a cada', - 'This event does not support recurrent events' => 'Este evento não suporta eventos recorrentes', - 'Week' => 'Semana', - 'Weeks' => 'Semanas', - 'Year' => 'Ano', - 'Years' => 'Anos', - 'first' => 'primeiro', - 'forth' => 'para frente', - 'last' => 'último', - 'on weekdays' => 'nos dias úteis', - 'second' => 'segundo', - 'third' => 'terceiro', -); diff --git a/messages/pt-BR/reminder.php b/messages/pt-BR/reminder.php deleted file mode 100644 index effde6e0..00000000 --- a/messages/pt-BR/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Lembrete personalizado', - 'Day' => 'Dia', - 'Default reminder settings' => 'Configurações de lembrete padrão', - 'Here you can configure default settings for all calendar events.' => 'Aqui você pode definir as configurações padrão para todos os eventos do calendário.', - 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.' => 'Aqui você pode configurar lembretes padrão globais. Essas configurações podem ser substituídas no nível de 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.' => 'Aqui você pode definir as configurações de lembrete padrão para este evento. Os usuários podem substituir essas configurações por meio do link Definir lembrete .', - 'Hour' => 'Hora', - 'Minute' => 'Minuto', - 'No reminder' => 'Sem lembrete', - 'Upcoming {type}' => 'Próximo {type}', - 'Upcoming {type}: {title}' => 'Próximo {type}: {title}', - 'Use default reminder' => 'Usar lembrete padrão', - 'Week' => 'Semana', - 'You have an {type} coming up' => 'Você tem um {type} chegando', - 'You have an {type} coming up: {title}' => 'Você tem um {type} chegando: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Suas configurações de lembrete para o evento: \'{title}\' ', -); diff --git a/messages/pt-BR/settings.php b/messages/pt-BR/settings.php deleted file mode 100644 index 3ad360e9..00000000 --- a/messages/pt-BR/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Básico', - 'Full calendar' => 'Calendário completo', - 'Participation' => 'Participação', - 'Reminder' => 'Lembrete', -); diff --git a/messages/pt-BR/views.php b/messages/pt-BR/views.php new file mode 100644 index 00000000..1c426a60 --- /dev/null +++ b/messages/pt-BR/views.php @@ -0,0 +1,59 @@ + '% displayName% não pode comparecer a% contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% criou um novo %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '% displayName% está participando de% contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% foi convidado para %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '% displayName% pode estar participando de% contentTitle%.', + ':count Attending' => ':count Comparecendo', + ':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 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' => 'Participar', + 'Attending' => 'Comparecendo', + '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', + 'Filter' => 'Filtro', + 'Filter events' => 'Filtrar eventos', + 'Followed spaces' => 'Espaços seguidos', + 'Followed users' => 'Usuários seguidos', + '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' => 'Fragmento', + 'Title' => 'Título', + 'Undecided' => 'Indeciso', + 'You are invited, please select your role:' => 'Você está convidado, selecione sua função:', + '{count} Participants' => '{count} participantes', +]; diff --git a/messages/pt-BR/views_activities_EntryCreated.php b/messages/pt-BR/views_activities_EntryCreated.php deleted file mode 100644 index a7854126..00000000 --- a/messages/pt-BR/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% criou um novo %contentTitle%.', -); diff --git a/messages/pt-BR/views_activities_EntryResponse.php b/messages/pt-BR/views_activities_EntryResponse.php deleted file mode 100644 index 5dbe56ca..00000000 --- a/messages/pt-BR/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '% displayName% não pode comparecer a% contentTitle%.', - '%displayName% is attending %contentTitle%.' => '% displayName% está participando de% contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% foi convidado para %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '% displayName% pode estar participando de% contentTitle%.', -); diff --git a/messages/pt-BR/views_container-config_typesConfig.php b/messages/pt-BR/views_container-config_typesConfig.php deleted file mode 100644 index 1bd66de8..00000000 --- a/messages/pt-BR/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Criar novo tipo de evento', - 'Edit calendar' => 'Editar calendário', - 'Edit event type' => 'Alterar tipo de evento', -); diff --git a/messages/pt-BR/views_entry_edit.php b/messages/pt-BR/views_entry_edit.php deleted file mode 100644 index dd5b1dde..00000000 --- a/messages/pt-BR/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Criar Evento', - 'Edit Event' => 'Editar Evento', - 'Edit recurring event' => 'Editar evento recorrente', - 'Are you sure want to remove the participant from the event?' => 'Tem certeza que deseja remover o participante do evento?', - 'Attending' => 'Comparecendo', - 'Back' => 'Voltar', - 'Close' => 'Fechar', - 'Declined' => 'Recusado', - 'Everybody can participate' => 'Todos podem participar', - 'General' => 'Geral', - 'Invited' => 'Convidado', - 'Next' => 'Avançar', - 'No participants' => 'Sem participantes', - 'Only by Invite' => 'Somente por convite', - 'Participants' => 'Participantes', - 'Recurrence' => 'Recorrência', - 'Reminder' => 'Lembrete', - 'Select event type...' => 'Selecionar tipo de evento...', - 'Settings' => 'Configurações', - 'Title' => 'Título', - 'Undecided' => 'Indeciso', - '{count} Participants' => '{count} participantes', -); diff --git a/messages/pt-BR/views_entry_view.php b/messages/pt-BR/views_entry_view.php deleted file mode 100644 index e2b92f4b..00000000 --- a/messages/pt-BR/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Informações adicionais', - 'All' => 'Todos', - 'Attend' => 'Participar', - 'Decline' => 'Recusar', - 'Filter' => 'Filtro', - 'Maybe' => 'Talvez', - 'Participants' => 'Participantes', - 'You are invited, please select your role:' => 'Você está convidado, selecione sua função:', -); diff --git a/messages/pt-BR/views_global_index.php b/messages/pt-BR/views_global_index.php deleted file mode 100644 index 3810d4a0..00000000 --- a/messages/pt-BR/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Filtrar eventos', - 'Followed spaces' => 'Espaços seguidos', - 'Followed users' => 'Usuários seguidos', - 'I\'m attending' => 'Estou participando', - 'My events' => 'Meus eventos', - 'My profile' => 'Meu perfil', - 'My spaces' => 'Meus espaços', - 'Select calendars' => 'Selecionar calendários', -); diff --git a/messages/pt-BR/widgets_GlobalConfigMenu.php b/messages/pt-BR/widgets_GlobalConfigMenu.php deleted file mode 100644 index e544fc59..00000000 --- a/messages/pt-BR/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Calendários', - 'Defaults' => 'Padrões', - 'Event Types' => 'Tipos de Eventos', - 'Menu' => 'Menu', - 'Snippet' => 'Fragmento', -); diff --git a/messages/pt-BR/widgets_views_nextEvents.php b/messages/pt-BR/widgets_views_nextEvents.php deleted file mode 100644 index 9f42b518..00000000 --- a/messages/pt-BR/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Próximos eventos', - 'Open Calendar' => 'Abrir Calendário', -); diff --git a/messages/pt-BR/widgets_views_participants.php b/messages/pt-BR/widgets_views_participants.php deleted file mode 100644 index 0dbf3206..00000000 --- a/messages/pt-BR/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count Comparecendo', - ':count Declined' => ':count Recusaram', - ':count Invited' => ':count Convidados', - ':count Undecided' => ':count Indecisos', - 'Participants' => 'Participantes', -); diff --git a/messages/pt/activities.php b/messages/pt/activities.php deleted file mode 100644 index 7fc19fbf..00000000 --- a/messages/pt/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Calendário: Convite', - 'Calendar: attend' => 'Calendário: participar', - 'Calendar: decline' => 'Calendário: recusar', - 'Calendar: maybe' => 'Calendário: talvez', - 'Whenever someone declines to participate in an event.' => 'Sempre que alguém recusar participar num evento.', - 'Whenever someone invites to participate in an event.' => 'Sempre que alguém convidar para participar num evento.', - 'Whenever someone may be participating in an event.' => 'Sempre que alguém talvez participe num evento.', - 'Whenever someone participates in an event.' => 'Sempre que alguém participe num evento.', -); diff --git a/messages/pt/base.php b/messages/pt/base.php index 37cd31ff..7f86fd4f 100644 --- a/messages/pt/base.php +++ b/messages/pt/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Adicionar calendário pessoal', 'Choose target calendar' => 'Escolher calendário alvo', 'Reminder settings' => 'Definições do lembrete', @@ -9,24 +9,37 @@ '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', 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', '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!', @@ -40,21 +53,40 @@ 'Files' => 'Ficheiros', '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.' => 'Aqui podes configurar as definições padrão para o lembrete deste evento. As pessoas podem sobrescrever estas definições por via do link Avisar.', + 'Hour' => 'Hora', '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', + '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' => '', @@ -64,6 +96,7 @@ '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', @@ -72,23 +105,41 @@ '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', '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}', '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' => '', + '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}".', -); +]; diff --git a/messages/pt/calendar.php b/messages/pt/calendar.php deleted file mode 100644 index ee536a81..00000000 --- a/messages/pt/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dia', - 'List' => 'Lista', - 'Month' => 'Mês', - 'Today' => 'Hoje', - 'Week' => 'Semana', - 'Year' => 'Ano', -); diff --git a/messages/pt/config.php b/messages/pt/config.php index a40e9bb2..171b4c7f 100644 --- a/messages/pt/config.php +++ b/messages/pt/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Configuração do módulo de Calendário', - 'Confirm Deletion' => 'Confirmar Eliminação', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Acrescenta um excerto com os próximos eventos ao painel dos utilizadores.', - 'Calendar Configuration' => 'Configuração de Calendário', - 'Create new type' => 'Criar novo tipo', - 'Default participation settings' => 'Configurações de participação padrão', - 'Delete' => 'Eliminar', - 'Do you really want to delte this event type?' => 'Queres mesmo eliminar este tipo de evento?', - 'Event Type Configuration' => 'Configuração do Tipo de Evento', - 'Half a year' => 'Meio ano', - 'Here you can configure default settings for new calendar events.' => 'Aqui podes configurar definições padrão para novos eventos de calendário', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Aqui podes configurar definições-padrão para novos eventos de calendário. Estas definições padrão podem ser sobrescritas ao nível do espaço/perfil.', - 'Here you can manage and disable different calendars.' => 'Aqui podes gerir e desativar diferentes calendários.', - 'Here you can manage your event types.' => 'Aqui podes gerir os teus tipos de evento', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Se ativado, o item \'Calendário\' do menu do topo e o excerto no painel só são visíveis para quem tiver o calendário instalado no seu perfil.', - 'Include birthdays to dashboard snippet' => 'Incluir aniversários no painel', - 'Interval of upcoming events' => 'Intervalo dos próximos eventos', - 'Max event items' => 'Número máximo de eventos', - 'Menu settings' => 'Definições do menu', - 'Name' => 'Nome', - 'One month' => 'Um mês', - 'One week' => 'Uma semana', - 'One year' => 'Um ano', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Só mostrar o item do menu do topo e excerto se o módulo estiver instalado no perfil da pessoa', - 'Reset' => 'Restabelecer padrão', - 'Show snippet' => 'Mostrar excerto', - 'There are currently no event types available.' => 'De momento, não há tipos de eventos disponíveis.', - 'Upcoming events snippet' => 'Excerto com os próximos eventos', - 'Add \'Calendar\' to the main menu' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'View mode' => '', + 'Calendar module configuration' => 'Configuração do módulo de Calendário', + 'Confirm Deletion' => 'Confirmar Eliminação', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Acrescenta um excerto com os próximos eventos ao painel dos utilizadores.', + 'Basic' => 'Básico', + 'Calendar Configuration' => 'Configuração de Calendário', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Criar novo tipo', + 'Default basic settings' => '', + 'Default participation settings' => 'Configurações de participação padrão', + 'Delete' => 'Eliminar', + 'Do you really want to delte this event type?' => 'Queres mesmo eliminar este tipo de evento?', + 'Event Type Configuration' => 'Configuração do Tipo de Evento', + 'Full calendar' => '', + 'Half a year' => 'Meio ano', + 'Here you can configure default settings for new calendar events.' => 'Aqui podes configurar definições padrão para novos eventos de calendário', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Aqui podes configurar definições-padrão para novos eventos de calendário. Estas definições padrão podem ser sobrescritas ao nível do espaço/perfil.', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => 'Aqui podes gerir e desativar diferentes calendários.', + 'Here you can manage your event types.' => 'Aqui podes gerir os teus tipos de evento', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Se ativado, o item \'Calendário\' do menu do topo e o excerto no painel só são visíveis para quem tiver o calendário instalado no seu perfil.', + 'Include birthdays to dashboard snippet' => 'Incluir aniversários no painel', + 'Interval of upcoming events' => 'Intervalo dos próximos eventos', + 'Max event items' => 'Número máximo de eventos', + 'Menu settings' => 'Definições do menu', + 'Name' => 'Nome', + 'One month' => 'Um mês', + 'One week' => 'Uma semana', + 'One year' => 'Um ano', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Só mostrar o item do menu do topo e excerto se o módulo estiver instalado no perfil da pessoa', + 'Participation' => 'Participação', + 'Reminder' => 'Lembrete', + 'Reset' => 'Restabelecer padrão', + 'Show snippet' => 'Mostrar excerto', + 'There are currently no event types available.' => 'De momento, não há tipos de eventos disponíveis.', + 'Upcoming events snippet' => 'Excerto com os próximos eventos', + 'View mode' => '', ]; diff --git a/messages/pt/mail.php b/messages/pt/mail.php deleted file mode 100644 index afe36530..00000000 --- a/messages/pt/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Descrição', - 'Location' => 'Localização', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'Ver Online: {url}', -); diff --git a/messages/pt/notification.php b/messages/pt/notification.php new file mode 100644 index 00000000..a596b581 --- /dev/null +++ b/messages/pt/notification.php @@ -0,0 +1,25 @@ + 'Calendário', + 'Calendar: Invite' => 'Calendário: Convite', + 'Calendar: attend' => 'Calendário: participar', + 'Calendar: decline' => 'Calendário: recusar', + 'Calendar: maybe' => 'Calendário: talvez', + 'Description' => 'Descrição', + 'Location' => 'Localização', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Receber Notificações do Calendário', + 'Starting' => '', + 'View Online: {url}' => 'Ver Online: {url}', + 'Whenever someone declines to participate in an event.' => 'Sempre que alguém recusar participar num evento.', + 'Whenever someone invites to participate in an event.' => 'Sempre que alguém convidar para participar num evento.', + 'Whenever someone may be participating in an event.' => 'Sempre que alguém talvez participe num evento.', + 'Whenever someone participates in an event.' => 'Sempre que alguém participe num evento.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} cancelou o evento "{contentTitle}" no espaço {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} cancelou o evento "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} reabriu o evento "{contentTitle}" no espaço {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} reabriu o evento "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} atualizou o evento "{contentTitle}" no espaço {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} acabou de atualizar o evento {contentTitle}.', +]; diff --git a/messages/pt/notifications_CalendarNotificationCategory.php b/messages/pt/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 88f57967..00000000 --- a/messages/pt/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Calendário', - 'Receive Calendar related Notifications.' => 'Receber Notificações do Calendário', -); diff --git a/messages/pt/notifications_views_CanceledEvent.php b/messages/pt/notifications_views_CanceledEvent.php deleted file mode 100644 index f5dada28..00000000 --- a/messages/pt/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} cancelou o evento "{contentTitle}" no espaço {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} cancelou o evento "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} atualizou o evento "{contentTitle}" no espaço {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} acabou de atualizar o evento {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} reabriu o evento "{contentTitle}" no espaço {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} reabriu o evento "{contentTitle}".', -]; diff --git a/messages/pt/permissions.php b/messages/pt/permissions.php deleted file mode 100644 index 9c853c79..00000000 --- a/messages/pt/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Criar entrada', - 'Manage entries' => 'Gerir entradas', -); diff --git a/messages/pt/recurrence.php b/messages/pt/recurrence.php deleted file mode 100644 index 388f9da7..00000000 --- a/messages/pt/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Após (ocorrências)', - 'Day' => 'Dia', - 'Days' => 'Dias', - 'Delete all events' => 'Apagar todos os eventos', - 'Edit all events' => 'Editar todos os eventos', - 'Edit this and following events' => 'Editar este evento e seguintes', - 'Edit this event' => 'Editar este evento', - 'End' => 'Final', - 'Invalid day of month given' => 'Dia do mês 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', - 'Month' => 'Mês', - 'Monthly on day {dayOfMonth}' => 'Mensalmente no dia {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'Mensalmente na {position} {dayOfWeek}', - 'Months' => 'Meses', - 'Never' => 'Nunca', - 'On date' => 'Na data', - 'Repeat every' => 'Repetir a cada', - 'This event does not support recurrent events' => 'Este evento não permite recorrência', - 'Week' => 'Semana', - 'Weeks' => 'Semanas', - 'Year' => 'Ano', - 'Years' => 'Anos', - 'first' => 'primeira', - 'forth' => 'quarta', - 'last' => 'última', - 'on weekdays' => 'em dias úteis', - 'second' => 'segunda', - 'third' => 'terceira', -); diff --git a/messages/pt/reminder.php b/messages/pt/reminder.php deleted file mode 100644 index f7508787..00000000 --- a/messages/pt/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - 'Lembrete personalizado', - 'Day' => 'Dia', - 'Default reminder settings' => 'Definições padrão para o lembrete', - '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.' => 'Aqui podes configurar as definições padrão para o lembrete deste evento. As pessoas podem sobrescrever estas definições por via do link Avisar.', - 'Hour' => 'Hora', - 'No reminder' => 'Sem lembrete', - 'Upcoming {type}' => 'Próximo {type}', - 'Upcoming {type}: {title}' => 'Próximo {type}: {title}', - 'Use default reminder' => 'Usar lembrete padrão', - 'Week' => 'Semana', - '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}\'', - 'Minute' => '', -]; diff --git a/messages/pt/settings.php b/messages/pt/settings.php deleted file mode 100644 index 19fe9273..00000000 --- a/messages/pt/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Básico', - 'Full calendar' => '', - 'Participation' => 'Participação', - 'Reminder' => 'Lembrete', -); diff --git a/messages/pt/views.php b/messages/pt/views.php new file mode 100644 index 00000000..d57c60ad --- /dev/null +++ b/messages/pt/views.php @@ -0,0 +1,59 @@ + '%displayName% não vai participar em %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% criou um novo %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% vai participar em %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% está convidado a participar em %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% talvez participe em %contentTitle%.', + ':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', + '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', +]; diff --git a/messages/pt/views_activities_EntryCreated.php b/messages/pt/views_activities_EntryCreated.php deleted file mode 100644 index a7854126..00000000 --- a/messages/pt/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% criou um novo %contentTitle%.', -); diff --git a/messages/pt/views_activities_EntryResponse.php b/messages/pt/views_activities_EntryResponse.php deleted file mode 100644 index 33e04a33..00000000 --- a/messages/pt/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% não vai participar em %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% vai participar em %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% está convidado a participar em %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% talvez participe em %contentTitle%.', -); diff --git a/messages/pt/views_container-config_typesConfig.php b/messages/pt/views_container-config_typesConfig.php deleted file mode 100644 index b996cd46..00000000 --- a/messages/pt/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Criar novo tipo de evento', - 'Edit calendar' => 'Editar calendário', - 'Edit event type' => 'Editar tipo de evento', -); diff --git a/messages/pt/views_entry_edit.php b/messages/pt/views_entry_edit.php deleted file mode 100644 index 5965b012..00000000 --- a/messages/pt/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Criar Evento', - 'Edit Event' => 'Editar Event', - 'Edit recurring event' => 'Editar evento recorrente', - 'Are you sure want to remove the participant from the event?' => 'Tens a certeza de que queres remover o participante deste evento?', - 'Attending' => 'Participam', - 'Back' => 'Voltar', - 'Close' => 'Fechar', - 'Declined' => 'Recusaram', - 'Everybody can participate' => 'Todas as pessoas podem participar', - 'General' => 'Geral', - 'Invited' => 'Convidados', - 'Next' => 'Seguinte', - 'No participants' => 'Sem participantes', - 'Only by Invite' => 'Só por Convite', - 'Participants' => 'Participantes', - 'Recurrence' => 'Repetição', - 'Reminder' => 'Lembrete', - 'Select event type...' => 'Seleciona o tipo do evento...', - 'Settings' => 'Definições', - 'Title' => 'Título', - 'Undecided' => 'Indecisos', - '{count} Participants' => '{count} Participantes', -); diff --git a/messages/pt/views_entry_view.php b/messages/pt/views_entry_view.php deleted file mode 100644 index 2008a57a..00000000 --- a/messages/pt/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Informação adicional', - 'All' => 'Todos', - 'Attend' => 'Participar', - 'Decline' => 'Recusar', - 'Filter' => 'Filtro', - 'Maybe' => 'Talvez', - 'Participants' => 'Participantes', - 'You are invited, please select your role:' => 'Estás convidado, por favor seleciona o papel:', -); diff --git a/messages/pt/views_global_index.php b/messages/pt/views_global_index.php deleted file mode 100644 index e1e4a9c0..00000000 --- a/messages/pt/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Espaços seguidos', - 'Followed users' => 'Pessoas seguidas', - 'I\'m attending' => 'Vou', - 'My events' => 'Meus eventos', - 'My profile' => 'Meu perfil', - 'My spaces' => 'Meus espaços', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/pt/widgets_GlobalConfigMenu.php b/messages/pt/widgets_GlobalConfigMenu.php deleted file mode 100644 index 7fbc0724..00000000 --- a/messages/pt/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Calendários', - 'Defaults' => 'Padrões', - 'Event Types' => 'Tipos de Evento', - 'Menu' => 'Menu', - 'Snippet' => 'Excerto', -); diff --git a/messages/pt/widgets_views_nextEvents.php b/messages/pt/widgets_views_nextEvents.php deleted file mode 100644 index 4c4a475b..00000000 --- a/messages/pt/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Próximos eventos', - 'Open Calendar' => 'Abrir o Calendário', -); diff --git a/messages/pt/widgets_views_participants.php b/messages/pt/widgets_views_participants.php deleted file mode 100644 index f9825ec1..00000000 --- a/messages/pt/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count Participam', - ':count Declined' => ':count Recusaram', - ':count Invited' => ':count Convidados', - ':count Undecided' => ':count Indecisos', - 'Participants' => 'Participantes', -); diff --git a/messages/ro/activities.php b/messages/ro/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/ro/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/ro/base.php b/messages/ro/base.php index 67f1a98b..a16e5fba 100644 --- a/messages/ro/base.php +++ b/messages/ro/base.php @@ -1,95 +1,145 @@ '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ă', - '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', - 'ID' => 'ID', - 'Invite' => 'Invită', - 'Location' => 'Locație', - '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' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Birthday' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable' => '', - 'Enable Reminder' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter by types' => '', - 'Friday' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invited: {users}' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - '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.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + 'Attending' => '', + 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', + 'Birthday' => '', + 'Calendar' => 'Calendar', + 'Cancel Event' => '', + 'Cannot remove the participant!' => '', + 'Create entry' => '', + 'Custom reminder' => '', + 'Day' => '', + 'Days' => '', + 'Default reminder settings' => '', + 'Delete all events' => '', + 'Deleted' => '', + 'Description' => 'Descriere', + '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 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' => '', + '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 frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => 'Invită', + 'Invited: {users}' => '', + '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' => '', + 'Set reminder' => '', + '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' => '', + 'User birthdays' => '', + 'Wednesday' => '', + 'Week' => '', + 'Weeks' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/ro/calendar.php b/messages/ro/calendar.php deleted file mode 100644 index bb654365..00000000 --- a/messages/ro/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => 'Listă', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/ro/config.php b/messages/ro/config.php index 1be33797..1950e0ce 100644 --- a/messages/ro/config.php +++ b/messages/ro/config.php @@ -1,38 +1,41 @@ 'Șterge', - 'Name' => 'Nume', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'De bază', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Șterge', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'Nume', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/ro/mail.php b/messages/ro/mail.php deleted file mode 100644 index 78cc20f1..00000000 --- a/messages/ro/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Descriere', - 'Location' => 'Locație', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/ro/notification.php b/messages/ro/notification.php new file mode 100644 index 00000000..ec9a934a --- /dev/null +++ b/messages/ro/notification.php @@ -0,0 +1,25 @@ + 'Calendar', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Descriere', + 'Location' => 'Locație', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/ro/notifications_CalendarNotificationCategory.php b/messages/ro/notifications_CalendarNotificationCategory.php deleted file mode 100644 index ba705cbe..00000000 --- a/messages/ro/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Calendar', - 'Receive Calendar related Notifications.' => '', -); diff --git a/messages/ro/notifications_views_CanceledEvent.php b/messages/ro/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/ro/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/ro/permissions.php b/messages/ro/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/ro/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/ro/recurrence.php b/messages/ro/recurrence.php deleted file mode 100644 index 57639772..00000000 --- a/messages/ro/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Editează acest eveniment', - 'Never' => 'Niciodată', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/ro/reminder.php b/messages/ro/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/ro/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/ro/settings.php b/messages/ro/settings.php deleted file mode 100644 index d3a9ccab..00000000 --- a/messages/ro/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'De bază', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/ro/views.php b/messages/ro/views.php new file mode 100644 index 00000000..141ece43 --- /dev/null +++ b/messages/ro/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '%displayName% a creat un nou %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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 ' => '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', + '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' => '', +]; diff --git a/messages/ro/views_activities_EntryCreated.php b/messages/ro/views_activities_EntryCreated.php deleted file mode 100644 index dbf196e8..00000000 --- a/messages/ro/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% a creat un nou %contentTitle%.', -); diff --git a/messages/ro/views_activities_EntryResponse.php b/messages/ro/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/ro/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/ro/views_container-config_typesConfig.php b/messages/ro/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/ro/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/ro/views_entry_edit.php b/messages/ro/views_entry_edit.php deleted file mode 100644 index 49907abb..00000000 --- a/messages/ro/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'Înapoi', - 'Close' => 'Închide', - 'Declined' => '', - 'Everybody can participate' => 'Oricine poate participa', - 'General' => '', - 'Invited' => '', - 'Next' => 'Inainte', - 'No participants' => 'Fără participanți', - 'Only by Invite' => '', - 'Participants' => 'Participanți', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Impostatii', - 'Title' => 'Titlul', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/ro/views_entry_view.php b/messages/ro/views_entry_view.php deleted file mode 100644 index 4f7b69fd..00000000 --- a/messages/ro/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Toate', - 'Attend' => 'Participă', - 'Decline' => 'Respinge', - 'Filter' => 'Filtrează', - 'Maybe' => 'Probabil', - 'Participants' => 'Participanți', - 'You are invited, please select your role:' => '', -); diff --git a/messages/ro/views_global_index.php b/messages/ro/views_global_index.php deleted file mode 100644 index 04981469..00000000 --- a/messages/ro/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Spații urmărite', - 'Followed users' => 'Utilizatori urmăriți', - 'I\'m attending' => 'Particip', - 'My events' => 'Evenimentele mele', - 'My profile' => 'Profilul meu', - 'My spaces' => 'Spațiile mele', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/ro/widgets_GlobalConfigMenu.php b/messages/ro/widgets_GlobalConfigMenu.php deleted file mode 100644 index 4d2df4b8..00000000 --- a/messages/ro/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'Meniu', - 'Snippet' => '', -); diff --git a/messages/ro/widgets_views_nextEvents.php b/messages/ro/widgets_views_nextEvents.php deleted file mode 100644 index 2bb41d47..00000000 --- a/messages/ro/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Upcoming events ' => 'Viitoare evenimente', -]; diff --git a/messages/ro/widgets_views_participants.php b/messages/ro/widgets_views_participants.php deleted file mode 100644 index 7446ae4c..00000000 --- a/messages/ro/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Participanți', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/ru/activities.php b/messages/ru/activities.php deleted file mode 100644 index cde22d11..00000000 --- a/messages/ru/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Календарь: Пригласить', - 'Calendar: attend' => 'Календарь: участвовать', - 'Calendar: decline' => 'Календарь: отказаться', - 'Calendar: maybe' => 'Календарь: возможно', - 'Whenever someone declines to participate in an event.' => 'Когда кто-то отказывается от участия в событии.', - 'Whenever someone invites to participate in an event.' => 'Когда кто-то приглашает принять участие в событии.', - 'Whenever someone may be participating in an event.' => 'Когда кто-то возможно примет участие в событии.', - 'Whenever someone participates in an event.' => 'Когда кто-то участвует в событии.', -); diff --git a/messages/ru/base.php b/messages/ru/base.php index 9ccde7da..83db14d0 100644 --- a/messages/ru/base.php +++ b/messages/ru/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Добавить календарь профиля', 'Choose target calendar' => 'Выберите целевой календарь', 'Reminder settings' => 'Настройки напоминания', @@ -9,24 +9,37 @@ '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' => 'Email', 'Enable' => 'Включить', 'Enable Reminder' => 'Включить напоминание', + 'End' => 'Конец', 'End Date' => 'Дата окончания', 'End Time' => 'Время окончания', 'End time must be after start time!' => 'Время окончания должно быть позже начала', @@ -40,21 +53,40 @@ '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.' => '', + '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' => '', '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 frequency given' => '', + 'Invalid interval given' => 'Указан неверный интервал', + 'Invalid week day selection' => 'Неверный выбор дня недели', 'Invite' => 'Пригласить', 'Invited: {users}' => 'Приглашены: {users}', + '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' => 'Статус участия', @@ -64,6 +96,7 @@ 'Public' => 'Публично', 'Recurring' => 'Повторяющееся', 'Reopen Event' => 'Повторно открыть событие', + 'Repeat every' => 'Повторять каждые', 'Saturday' => 'Суббота', 'Set reminder' => 'Установить напоминание', 'Start Date' => 'Дата начала', @@ -72,23 +105,41 @@ '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' => '', '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' => '', + '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' => '', + '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}".', -); +]; diff --git a/messages/ru/calendar.php b/messages/ru/calendar.php deleted file mode 100644 index 62ce959e..00000000 --- a/messages/ru/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'День', - 'List' => 'Список', - 'Month' => 'Месяц', - 'Today' => 'Сегодня', - 'Week' => 'Неделя', - 'Year' => 'Год', -); diff --git a/messages/ru/config.php b/messages/ru/config.php index f2fda829..51b4a421 100644 --- a/messages/ru/config.php +++ b/messages/ru/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => 'Календарь настройки модуля', 'Confirm Deletion' => 'Подтвердите удаление', 'Add \'Calendar\' to the main menu' => 'Добавить \\\'Календарь\\\' в главное меню', 'Adds an snippet with upcoming events to your users dashboard.' => 'Добавляет виджет с предстоящими событиями на панель пользователей.', + 'Basic' => 'Основные', 'Calendar Configuration' => '', 'Calendar default view mode settings' => '', 'Create new type' => '', @@ -12,6 +13,7 @@ 'Delete' => 'Удалить', 'Do you really want to delte this event type?' => '', 'Event Type Configuration' => '', + 'Full calendar' => '', 'Half a year' => '', 'Here you can configure default settings for new calendar events.' => 'Здесь вы можете настроить параметры по умолчанию для новых событий календаря.', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Здесь вы можете настроить параметры по умолчанию для новых событий календаря. Эти настройки можно перезаписать на уровне сообщества/профиля.', @@ -29,9 +31,11 @@ 'One week' => 'Одна неделя', 'One year' => 'Один год', 'Only show top menu item and snippet if the module is installed in the users profile' => 'Показывать в боковой панели и верхнем меню только в том случае, если модуль установлен в профиле пользователя.', + 'Participation' => '', + 'Reminder' => 'Напоминание', 'Reset' => 'Сброс', 'Show snippet' => 'Показать виджет', 'There are currently no event types available.' => '', 'Upcoming events snippet' => '', 'View mode' => '', -); +]; diff --git a/messages/ru/mail.php b/messages/ru/mail.php deleted file mode 100644 index a402285e..00000000 --- a/messages/ru/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Описание', - 'Location' => 'Расположение', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/ru/notification.php b/messages/ru/notification.php new file mode 100644 index 00000000..bbeec41a --- /dev/null +++ b/messages/ru/notification.php @@ -0,0 +1,25 @@ + 'Календарь', + 'Calendar: Invite' => 'Календарь: Пригласить', + 'Calendar: attend' => 'Календарь: участвовать', + 'Calendar: decline' => 'Календарь: отказаться', + 'Calendar: maybe' => 'Календарь: возможно', + 'Description' => 'Описание', + 'Location' => 'Расположение', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Получать оповещения связанные с календарем.', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => 'Когда кто-то отказывается от участия в событии.', + 'Whenever someone invites to participate in an event.' => 'Когда кто-то приглашает принять участие в событии.', + 'Whenever someone may be participating in an event.' => 'Когда кто-то возможно примет участие в событии.', + 'Whenever someone participates in an event.' => 'Когда кто-то участвует в событии.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} отменил мероприятие "{contentTitle}" в сообществе {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} отменил мероприятие "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} повторно открыл мероприятие "{contentTitle}" в сообществе {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} повторно открыл мероприятие "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} только что обновил событие "{contentTitle}" в сообществе {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} только что обновил событие {contentTitle}.', +]; diff --git a/messages/ru/notifications_CalendarNotificationCategory.php b/messages/ru/notifications_CalendarNotificationCategory.php deleted file mode 100644 index d6d474c4..00000000 --- a/messages/ru/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Календарь', - 'Receive Calendar related Notifications.' => 'Получать оповещения связанные с календарем.', -); diff --git a/messages/ru/notifications_views_CanceledEvent.php b/messages/ru/notifications_views_CanceledEvent.php deleted file mode 100644 index c3057879..00000000 --- a/messages/ru/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,9 +0,0 @@ - '{displayName} отменил мероприятие "{contentTitle}" в сообществе {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} отменил мероприятие "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} только что обновил событие "{contentTitle}" в сообществе {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} только что обновил событие {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} повторно открыл мероприятие "{contentTitle}" в сообществе {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} повторно открыл мероприятие "{contentTitle}".', -); diff --git a/messages/ru/permissions.php b/messages/ru/permissions.php deleted file mode 100644 index aad4d1d0..00000000 --- a/messages/ru/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Позволить пользователю создавать новые записи в календаре', - 'Allows the user to edit/delete existing calendar entries' => 'Позволить пользователю редактировать/удалять записи в календаре', - 'Create entry' => 'Создать запись', - 'Manage entries' => 'Управление записями', -); diff --git a/messages/ru/recurrence.php b/messages/ru/recurrence.php deleted file mode 100644 index 5b3a3b81..00000000 --- a/messages/ru/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - '', - 'Day' => 'День', - 'Days' => '', - 'Delete all events' => 'Удалить все события', - 'Edit all events' => 'Редактировать все события', - 'Edit this and following events' => 'Редактировать это и последующие события', - 'Edit this event' => 'Редактировать событие', - 'End' => 'Конец', - 'Invalid day of month given' => 'Указан неверный день месяца', - 'Invalid frequency given' => '', - 'Invalid interval given' => 'Указан неверный интервал', - 'Invalid week day selection' => 'Неверный выбор дня недели', - 'Month' => 'Месяц', - 'Monthly on day {dayOfMonth}' => 'Ежемесячно {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => 'Месяцы', - 'Never' => 'Никогда', - 'On date' => 'В назначенную дату', - 'Repeat every' => 'Повторять каждые', - 'This event does not support recurrent events' => 'Это событие не поддерживает повторяющиеся события', - 'Week' => 'Неделя', - 'Weeks' => 'Недели', - 'Year' => 'Год', - 'Years' => 'Годы', - 'first' => 'первый', - 'forth' => '', - 'last' => 'последний', - 'on weekdays' => 'на выходных', - 'second' => '', - 'third' => '', -); diff --git a/messages/ru/reminder.php b/messages/ru/reminder.php deleted file mode 100644 index 4b67bdea..00000000 --- a/messages/ru/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - '', - 'Day' => 'День', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => 'Неделя', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -); diff --git a/messages/ru/settings.php b/messages/ru/settings.php deleted file mode 100644 index b633ec0f..00000000 --- a/messages/ru/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Основные', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => 'Напоминание', -); diff --git a/messages/ru/views.php b/messages/ru/views.php new file mode 100644 index 00000000..a9063533 --- /dev/null +++ b/messages/ru/views.php @@ -0,0 +1,59 @@ + '%displayName% не может посещать %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% создал новое %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% посещает %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% приглашен в %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% может присутствовать на %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' => 'Любой может принять участие', + '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} участников', +]; diff --git a/messages/ru/views_activities_EntryCreated.php b/messages/ru/views_activities_EntryCreated.php deleted file mode 100644 index a1e1fd09..00000000 --- a/messages/ru/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% создал новое %contentTitle%.', -); diff --git a/messages/ru/views_activities_EntryResponse.php b/messages/ru/views_activities_EntryResponse.php deleted file mode 100644 index 1a4ac704..00000000 --- a/messages/ru/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% не может посещать %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% посещает %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% приглашен в %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% может присутствовать на %contentTitle%.', -); diff --git a/messages/ru/views_container-config_typesConfig.php b/messages/ru/views_container-config_typesConfig.php deleted file mode 100644 index fba64803..00000000 --- a/messages/ru/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Создать новый тип события.', - 'Edit calendar' => 'Изменить календарь', - 'Edit event type' => 'Изменить тип события', -); diff --git a/messages/ru/views_entry_edit.php b/messages/ru/views_entry_edit.php deleted file mode 100644 index 31216a11..00000000 --- a/messages/ru/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Создать событие', - 'Edit Event' => 'Изменить событие', - 'Edit recurring event' => 'Изменить повторяющееся событие', - 'Are you sure want to remove the participant from the event?' => 'Вы уверены, что хотите удалить участника с мероприятия?', - 'Attending' => 'Участвует', - 'Back' => 'Назад', - 'Close' => 'Закрыть', - 'Declined' => '', - 'Everybody can participate' => 'Любой может принять участие', - 'General' => 'Основная информация', - 'Invited' => 'Приглашение', - 'Next' => 'Далее', - 'No participants' => 'Нет участников', - 'Only by Invite' => 'Только по приглашению', - 'Participants' => 'Участники', - 'Recurrence' => 'Повторение', - 'Reminder' => 'Напоминание', - 'Select event type...' => 'Выберите тип мероприятия...', - 'Settings' => 'Настройки', - 'Title' => 'Наименование', - 'Undecided' => '', - '{count} Participants' => '{count} участников', -); diff --git a/messages/ru/views_entry_view.php b/messages/ru/views_entry_view.php deleted file mode 100644 index c76aabda..00000000 --- a/messages/ru/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Дополнительная информация', - 'All' => 'Все', - 'Attend' => 'Посетить', - 'Decline' => 'Отказать', - 'Filter' => 'Фильтр', - 'Maybe' => 'Возможно', - 'Participants' => 'Участники', - 'You are invited, please select your role:' => 'Вы приглашены, пожалуйста, выберите свою роль:', -); diff --git a/messages/ru/views_global_index.php b/messages/ru/views_global_index.php deleted file mode 100644 index 6827209a..00000000 --- a/messages/ru/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Фильтр событий', - 'Followed spaces' => 'Пространства, за которыми слежу', - 'Followed users' => 'Пользователи, за которыми слежу', - 'I\'m attending' => 'Я собираюсь посетить', - 'My events' => 'Мои события', - 'My profile' => 'Мой профиль', - 'My spaces' => 'Мои пространства', - 'Select calendars' => 'Выберите календари', -); diff --git a/messages/ru/widgets_GlobalConfigMenu.php b/messages/ru/widgets_GlobalConfigMenu.php deleted file mode 100644 index 3b09b9d8..00000000 --- a/messages/ru/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Календари', - 'Defaults' => 'По-умолчанию', - 'Event Types' => 'Типы событий', - 'Menu' => 'Меню', - 'Snippet' => 'Виджет', -); diff --git a/messages/ru/widgets_views_nextEvents.php b/messages/ru/widgets_views_nextEvents.php deleted file mode 100644 index 24907239..00000000 --- a/messages/ru/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Будущие события', - 'Open Calendar' => 'Открыть календарь', -); diff --git a/messages/ru/widgets_views_participants.php b/messages/ru/widgets_views_participants.php deleted file mode 100644 index 0dad52f7..00000000 --- a/messages/ru/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Участники', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/sk/activities.php b/messages/sk/activities.php deleted file mode 100644 index bab98bb7..00000000 --- a/messages/sk/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Kalendár: Pozvať', - 'Calendar: attend' => 'Kalendár: zúčastniť sa', - 'Calendar: decline' => 'Kalendár: odmietnuť', - 'Calendar: maybe' => 'Kalendár: možno', - 'Whenever someone declines to participate in an event.' => 'Vždy, keď niekto odmietne účasť na udalosti.', - 'Whenever someone invites to participate in an event.' => 'Kedykoľvek niekto pozve na účasť na udalosti.', - 'Whenever someone may be participating in an event.' => 'Kedykoľvek sa niekto môže zúčastniť na udalosti.', - 'Whenever someone participates in an event.' => 'Vždy, keď sa niekto zúčastní nejakej udalosti.', -); diff --git a/messages/sk/base.php b/messages/sk/base.php index b0fb2862..44030318 100644 --- a/messages/sk/base.php +++ b/messages/sk/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Pridať profilový kalendár', 'Choose target calendar' => 'Vyberte cieľový kalendár', 'Reminder settings' => 'Nastavenie Pripomienky', @@ -9,24 +9,37 @@ '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!', @@ -40,21 +53,40 @@ '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.', + '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.' => 'Tu môžete nakonfigurovať predvolené nastavenie pripomienky pre túto udalosť. Používatelia môžu tieto nastavenia prepísať pomocou odkazu Nastaviť pripomienku.', + 'Hour' => 'Hodina', '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', @@ -64,6 +96,7 @@ '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', @@ -72,23 +105,41 @@ '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}“.', -); +]; diff --git a/messages/sk/calendar.php b/messages/sk/calendar.php deleted file mode 100644 index 32af1f98..00000000 --- a/messages/sk/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Deň', - 'List' => 'Zoznam', - 'Month' => 'Mesiac', - 'Today' => 'Dnes', - 'Week' => 'Týždeň', - 'Year' => 'Rok', -); diff --git a/messages/sk/config.php b/messages/sk/config.php index 1391718f..bcb144de 100644 --- a/messages/sk/config.php +++ b/messages/sk/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => 'Konfigurácia modulu Kalendár', 'Confirm Deletion' => 'Potvrdiť Odstránenie', 'Add \'Calendar\' to the main menu' => 'Pridajte „Kalendár“ do hlavnej ponuky', 'Adds an snippet with upcoming events to your users dashboard.' => 'Pridá úryvok s nadchádzajúcimi udalosťami na váš informačný panel používateľov.', + 'Basic' => 'Základné', 'Calendar Configuration' => 'Konfigurácia Kalendára', 'Calendar default view mode settings' => 'Predvolené nastavenia režimu zobrazenia kalendára', 'Create new type' => 'Vytvoriť nový typ', @@ -12,6 +13,7 @@ 'Delete' => 'Odstrániť', 'Do you really want to delte this event type?' => 'Naozaj chcete odstrániť tento typ udalosti?', 'Event Type Configuration' => 'Konfigurácia typu udalosti', + 'Full calendar' => 'Plný kalendár', 'Half a year' => 'Pol roka', 'Here you can configure default settings for new calendar events.' => 'Tu môžete nakonfigurovať predvolené nastavenia pre nové udalosti kalendára.', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Tu môžete nakonfigurovať predvolené nastavenia pre nové udalosti kalendára. Tieto nastavenia je možné prepísať na úrovni priestoru/profilu.', @@ -29,9 +31,11 @@ 'One week' => 'Jeden týždeň', 'One year' => 'Jeden rok', 'Only show top menu item and snippet if the module is installed in the users profile' => 'Zobrazovať položku hornej ponuky a úryvok iba vtedy, ak je modul nainštalovaný v profile používateľa', + 'Participation' => 'Účasť', + 'Reminder' => 'Pripomienka', 'Reset' => 'Resetovať', 'Show snippet' => 'Zobraziť úryvok', 'There are currently no event types available.' => 'Momentálne nie sú k dispozícii žiadne typy udalostí.', 'Upcoming events snippet' => 'Útržok nadchádzajúcej udalosti', 'View mode' => 'Režim zobrazenia', -); +]; diff --git a/messages/sk/mail.php b/messages/sk/mail.php deleted file mode 100644 index a02b9631..00000000 --- a/messages/sk/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Popis', - 'Location' => 'Lokalita', - 'Organizer' => 'Organizátor', - 'Participants info' => 'Informácie o účastníkoch', - 'Starting' => 'Začiatok', - 'View Online: {url}' => 'Zobraziť Online: {url}', -); diff --git a/messages/sk/notification.php b/messages/sk/notification.php new file mode 100644 index 00000000..a6fbe4e9 --- /dev/null +++ b/messages/sk/notification.php @@ -0,0 +1,25 @@ + 'Kalendár', + 'Calendar: Invite' => 'Kalendár: Pozvať', + 'Calendar: attend' => 'Kalendár: zúčastniť sa', + 'Calendar: decline' => 'Kalendár: odmietnuť', + 'Calendar: maybe' => 'Kalendár: možno', + 'Description' => 'Popis', + 'Location' => 'Lokalita', + 'Organizer' => 'Organizátor', + 'Participants info' => 'Informácie o účastníkoch', + 'Receive Calendar related Notifications.' => 'Prijímať upozornenia týkajúce sa kalendára.', + 'Starting' => 'Začiatok', + 'View Online: {url}' => 'Zobraziť Online: {url}', + 'Whenever someone declines to participate in an event.' => 'Vždy, keď niekto odmietne účasť na udalosti.', + 'Whenever someone invites to participate in an event.' => 'Kedykoľvek niekto pozve na účasť na udalosti.', + 'Whenever someone may be participating in an event.' => 'Kedykoľvek sa niekto môže zúčastniť na udalosti.', + 'Whenever someone participates in an event.' => 'Vždy, keď sa niekto zúčastní nejakej udalosti.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} zrušil udalosť „{contentTitle}“ v priestore {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} zrušil udalosť „{contentTitle}“.', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} znovu otvoril udalosť „{contentTitle}“ v priestore {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} znovu otvoril udalosť „{contentTitle}“.', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} aktualizoval udalosť „{contentTitle}“ v priestore {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} aktualizoval udalosť „{contentTitle}“.', +]; diff --git a/messages/sk/notifications_CalendarNotificationCategory.php b/messages/sk/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 975e5eaa..00000000 --- a/messages/sk/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalendár', - 'Receive Calendar related Notifications.' => 'Prijímať upozornenia týkajúce sa kalendára.', -); diff --git a/messages/sk/notifications_views_CanceledEvent.php b/messages/sk/notifications_views_CanceledEvent.php deleted file mode 100644 index 03560f9f..00000000 --- a/messages/sk/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,9 +0,0 @@ - '{displayName} zrušil udalosť „{contentTitle}“ v priestore {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} zrušil udalosť „{contentTitle}“.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} znovu otvoril udalosť „{contentTitle}“ v priestore {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} znovu otvoril udalosť „{contentTitle}“.', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} aktualizoval udalosť „{contentTitle}“ v priestore {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} aktualizoval udalosť „{contentTitle}“.', -); diff --git a/messages/sk/permissions.php b/messages/sk/permissions.php deleted file mode 100644 index 289aac0e..00000000 --- a/messages/sk/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Vytvoriť záznam', - 'Manage entries' => 'Spravovať záznamy', -); diff --git a/messages/sk/recurrence.php b/messages/sk/recurrence.php deleted file mode 100644 index 3c231919..00000000 --- a/messages/sk/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Po (výskyty)', - 'Day' => 'Deň', - 'Days' => 'Dni', - 'Delete all events' => 'Odstrániť všetky udalosti', - '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ť', - 'End' => 'Koniec', - 'Invalid day of month given' => 'Uvedený neplatný deň v mesiaci', - 'Invalid frequency given' => 'Uvedené neplatné opakovanie', - 'Invalid interval given' => 'Zadaný neplatný interval', - 'Invalid week day selection' => 'Neplatný výber dňa v týždni', - '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', - 'On date' => 'Pri dátume', - 'Repeat every' => 'Opakovať každý', - 'This event does not support recurrent events' => 'Táto udalosť nepodporuje opakovanie', - 'Week' => 'Týždeň', - 'Weeks' => 'Týždňov', - 'Year' => 'Rok', - 'Years' => 'Rokov', - 'first' => 'najprv', - 'forth' => 'ďalej', - 'last' => 'posledný', - 'on weekdays' => 'vo všedné dni', - 'second' => 'druhý', - 'third' => 'tretí', -); diff --git a/messages/sk/reminder.php b/messages/sk/reminder.php deleted file mode 100644 index d071f92d..00000000 --- a/messages/sk/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Vlastná pripomienka', - 'Day' => 'Deň', - 'Default reminder settings' => 'Predvolené nastavenie pripomienky', - '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.' => 'Tu môžete nakonfigurovať predvolené nastavenie pripomienky pre túto udalosť. Používatelia môžu tieto nastavenia prepísať pomocou odkazu Nastaviť pripomienku.', - 'Hour' => 'Hodina', - 'Minute' => 'Minúta', - 'No reminder' => 'Žiadna pripomienka', - 'Upcoming {type}' => 'Nadchádzajúce {type}', - 'Upcoming {type}: {title}' => 'Nadchádzajúce {type}: {title}', - 'Use default reminder' => 'Použiť predvolenú pripomienku', - 'Week' => 'Týždeň', - 'You have an {type} coming up' => 'Čaká vás {type}', - 'You have an {type} coming up: {title}' => 'Máte pred sebou {type}: {title}', - 'Your reminder settings for event: \'{title}\'' => 'Vaše nastavenie pripomienky pre udalosť: \'{title}\'', -); diff --git a/messages/sk/settings.php b/messages/sk/settings.php deleted file mode 100644 index b652de86..00000000 --- a/messages/sk/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Základné', - 'Full calendar' => 'Plný kalendár', - 'Participation' => 'Účasť', - 'Reminder' => 'Pripomienka', -); diff --git a/messages/sk/views.php b/messages/sk/views.php new file mode 100644 index 00000000..862b0c70 --- /dev/null +++ b/messages/sk/views.php @@ -0,0 +1,59 @@ + '%displayName% sa nemôže zúčastniť %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% vytvoril nový %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% sa zúčastní %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% je pozvaný do %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% sa možno zúčastní %contentTitle%.', + ':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ý', + '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', +]; diff --git a/messages/sk/views_activities_EntryCreated.php b/messages/sk/views_activities_EntryCreated.php deleted file mode 100644 index ab943a4a..00000000 --- a/messages/sk/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% vytvoril nový %contentTitle%.', -); diff --git a/messages/sk/views_activities_EntryResponse.php b/messages/sk/views_activities_EntryResponse.php deleted file mode 100644 index de49dd36..00000000 --- a/messages/sk/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% sa nemôže zúčastniť %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% sa zúčastní %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% je pozvaný do %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% sa možno zúčastní %contentTitle%.', -); diff --git a/messages/sk/views_container-config_typesConfig.php b/messages/sk/views_container-config_typesConfig.php deleted file mode 100644 index f463ee8f..00000000 --- a/messages/sk/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Vytvoriť nový typ udalosti', - 'Edit calendar' => 'Upraviť kalendár', - 'Edit event type' => 'Upraviť typ udalosti', -); diff --git a/messages/sk/views_entry_edit.php b/messages/sk/views_entry_edit.php deleted file mode 100644 index 0f1b3408..00000000 --- a/messages/sk/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Vytvoriť udalosť', - 'Edit Event' => 'Upraviť udalosť', - 'Edit recurring event' => 'Upraviť opakujúcu sa udalosť', - 'Are you sure want to remove the participant from the event?' => 'Naozaj chcete odstrániť účastníka z udalosti?', - 'Attending' => 'Zúčastniť sa', - 'Back' => 'Späť', - 'Close' => 'Zavrieť', - 'Declined' => 'Odmietnuť', - 'Everybody can participate' => 'Zúčastniť sa môže každý', - 'General' => 'Všeobecné', - 'Invited' => 'Pozvaný', - 'Next' => 'Ďalej', - 'No participants' => 'Žiadni účastníci', - 'Only by Invite' => 'Iba na pozvanie', - 'Participants' => 'Účastníci', - 'Recurrence' => 'Opakovanie', - 'Reminder' => 'Pripomienka', - 'Select event type...' => 'Vyberte typ udalosti...', - 'Settings' => 'Nastavenia', - 'Title' => 'Názov', - 'Undecided' => 'Nerozhodnutý', - '{count} Participants' => '{count} Účastníkov', -); diff --git a/messages/sk/views_entry_view.php b/messages/sk/views_entry_view.php deleted file mode 100644 index f89824c5..00000000 --- a/messages/sk/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Ďalšie Informácie', - 'All' => 'Všetko', - 'Attend' => 'Zúčastniť sa', - 'Decline' => 'Odmietnuť', - 'Filter' => 'Filter', - 'Maybe' => 'Možno', - 'Participants' => 'Účastníci', - 'You are invited, please select your role:' => 'Ste pozvaný, vyberte si svoju rolu:', -); diff --git a/messages/sk/views_global_index.php b/messages/sk/views_global_index.php deleted file mode 100644 index f6ed5be2..00000000 --- a/messages/sk/views_global_index.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Filtrovať udalosti', - 'Followed spaces' => 'Sledované priestory', - 'Followed users' => 'Sledovaní používatelia', - 'I\'m attending' => 'Som účatníkom', - 'My events' => 'Moje udalosti', - 'My profile' => 'Môj profil', - 'My spaces' => 'Moje priestory', - 'Select calendars' => 'Vybrať kalendáre', -); diff --git a/messages/sk/widgets_GlobalConfigMenu.php b/messages/sk/widgets_GlobalConfigMenu.php deleted file mode 100644 index 543cd3c0..00000000 --- a/messages/sk/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Kalendáre', - 'Defaults' => 'Predvolené', - 'Event Types' => 'Typy udalostí', - 'Menu' => 'Ponuka', - 'Snippet' => 'Úryvok', -); diff --git a/messages/sk/widgets_views_nextEvents.php b/messages/sk/widgets_views_nextEvents.php deleted file mode 100644 index 3badfba8..00000000 --- a/messages/sk/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Nadchádzajúce udalosti', - 'Open Calendar' => 'Otvoriť Kalendár', -); diff --git a/messages/sk/widgets_views_participants.php b/messages/sk/widgets_views_participants.php deleted file mode 100644 index 5a708fff..00000000 --- a/messages/sk/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count Zúčastní sa', - ':count Declined' => ':count Odmieta', - ':count Invited' => ':count Pozvaný', - ':count Undecided' => ':count Nerozhodnutý', - 'Participants' => 'Účastníci', -); diff --git a/messages/sl/activities.php b/messages/sl/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/sl/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/sl/base.php b/messages/sl/base.php index c71e31ec..b23f0bde 100644 --- a/messages/sl/base.php +++ b/messages/sl/base.php @@ -1,95 +1,145 @@ 'Naslov', - 'disabled' => 'onemogočeno', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'Next' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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' => 'Naslov', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {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' => '', + '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' => 'onemogočeno', + 'first' => '', + 'forth' => '', + 'global' => '', + '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}".' => '', ]; diff --git a/messages/sl/calendar.php b/messages/sl/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/sl/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/sl/config.php b/messages/sl/config.php index b40a8327..454bbe1a 100644 --- a/messages/sl/config.php +++ b/messages/sl/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Delete' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/sl/mail.php b/messages/sl/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/sl/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/sl/notification.php b/messages/sl/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/sl/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/sl/notifications_CalendarNotificationCategory.php b/messages/sl/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 79acb3f4..00000000 --- a/messages/sl/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/sl/notifications_views_CanceledEvent.php b/messages/sl/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/sl/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/sl/permissions.php b/messages/sl/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/sl/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/sl/recurrence.php b/messages/sl/recurrence.php deleted file mode 100644 index 5fe83811..00000000 --- a/messages/sl/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/sl/reminder.php b/messages/sl/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/sl/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/sl/settings.php b/messages/sl/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/sl/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/sl/views.php b/messages/sl/views.php new file mode 100644 index 00000000..5c8f92c5 --- /dev/null +++ b/messages/sl/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => 'Nastavitve', + 'Snippet' => '', + 'Title' => 'Naslov', + 'Undecided' => '', + 'You are invited, please select your role:' => '', + '{count} Participants' => '', +]; diff --git a/messages/sl/views_activities_EntryResponse.php b/messages/sl/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/sl/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/sl/views_container-config_typesConfig.php b/messages/sl/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/sl/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/sl/views_entry_edit.php b/messages/sl/views_entry_edit.php deleted file mode 100644 index 0e32c6b5..00000000 --- a/messages/sl/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '', - 'Close' => '', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '', - 'Invited' => '', - 'Next' => '', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Nastavitve', - 'Title' => 'Naslov', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/sl/views_entry_view.php b/messages/sl/views_entry_view.php deleted file mode 100644 index 3701c09e..00000000 --- a/messages/sl/views_entry_view.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -]; diff --git a/messages/sl/views_global_index.php b/messages/sl/views_global_index.php deleted file mode 100644 index 42d34833..00000000 --- a/messages/sl/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/sl/widgets_GlobalConfigMenu.php b/messages/sl/widgets_GlobalConfigMenu.php deleted file mode 100644 index 5f306be5..00000000 --- a/messages/sl/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '', - 'Snippet' => '', -]; diff --git a/messages/sl/widgets_views_nextEvents.php b/messages/sl/widgets_views_nextEvents.php deleted file mode 100644 index 870ac23b..00000000 --- a/messages/sl/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/sl/widgets_views_participants.php b/messages/sl/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/sl/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/sq/activities.php b/messages/sq/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/sq/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/sq/base.php b/messages/sq/base.php index c481511a..dabf88b1 100644 --- a/messages/sq/base.php +++ b/messages/sq/base.php @@ -1,95 +1,145 @@ 'Ndrysho', - 'Enable' => 'Aktivizoni', - 'Files' => 'Skedarët', - 'Invite' => 'Fto', - 'Title' => 'Titulli', - 'disabled' => 'me aftësi të kufizuara', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'Next' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + 'Edit' => 'Ndrysho', + 'Edit Event' => '', + 'Edit all events' => '', + 'Edit this and following events' => '', + 'Edit this event' => '', + 'Email' => '', + 'Enable' => 'Aktivizoni', + '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' => 'Skedarët', + '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' => '', + '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' => 'Fto', + 'Invited: {users}' => '', + 'List' => '', + 'Location' => '', + 'Manage entries' => '', + 'Maximum number of participants' => '', + 'Minute' => '', + 'Mode' => '', + 'Monday' => '', + 'Month' => '', + 'Monthly on day {dayOfMonth}' => '', + 'Monthly on the {position} {dayOfWeek}' => '', + 'Months' => '', + 'Never' => 'Kurrë', + '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' => 'Titulli', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {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' => '', + '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' => 'me aftësi të kufizuara', + 'first' => '', + 'forth' => '', + 'global' => '', + '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}".' => '', ]; diff --git a/messages/sq/calendar.php b/messages/sq/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/sq/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/sq/config.php b/messages/sq/config.php index a941bce9..5588495b 100644 --- a/messages/sq/config.php +++ b/messages/sq/config.php @@ -1,38 +1,41 @@ 'Fshij', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'Bazë', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Fshij', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/sq/mail.php b/messages/sq/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/sq/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/sq/notification.php b/messages/sq/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/sq/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/sq/notifications_CalendarNotificationCategory.php b/messages/sq/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 32f067f4..00000000 --- a/messages/sq/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,6 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/sq/notifications_views_CanceledEvent.php b/messages/sq/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/sq/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/sq/permissions.php b/messages/sq/permissions.php deleted file mode 100644 index 139867e9..00000000 --- a/messages/sq/permissions.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/sq/recurrence.php b/messages/sq/recurrence.php deleted file mode 100644 index a8798a9d..00000000 --- a/messages/sq/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => 'Kurrë', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -); diff --git a/messages/sq/reminder.php b/messages/sq/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/sq/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/sq/settings.php b/messages/sq/settings.php deleted file mode 100644 index 3ea1a556..00000000 --- a/messages/sq/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Bazë', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/sq/views.php b/messages/sq/views.php new file mode 100644 index 00000000..65ee2f0b --- /dev/null +++ b/messages/sq/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + 'Filter' => '', + 'Filter events' => '', + 'Followed spaces' => '', + 'Followed users' => '', + 'General' => 'Gjeneral', + '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' => 'Cilësimet', + 'Snippet' => '', + 'Title' => 'Titulli', + 'Undecided' => '', + 'You are invited, please select your role:' => '', + '{count} Participants' => '', +]; diff --git a/messages/sq/views_activities_EntryResponse.php b/messages/sq/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/sq/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/sq/views_container-config_typesConfig.php b/messages/sq/views_container-config_typesConfig.php deleted file mode 100644 index 0bfdc5f2..00000000 --- a/messages/sq/views_container-config_typesConfig.php +++ /dev/null @@ -1,7 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/sq/views_entry_edit.php b/messages/sq/views_entry_edit.php deleted file mode 100644 index a394311f..00000000 --- a/messages/sq/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '', - 'Close' => '', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => 'Gjeneral', - 'Invited' => '', - 'Next' => '', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Cilësimet', - 'Title' => 'Titulli', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/sq/views_entry_view.php b/messages/sq/views_entry_view.php deleted file mode 100644 index 3701c09e..00000000 --- a/messages/sq/views_entry_view.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -]; diff --git a/messages/sq/views_global_index.php b/messages/sq/views_global_index.php deleted file mode 100644 index 42d34833..00000000 --- a/messages/sq/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/sq/widgets_GlobalConfigMenu.php b/messages/sq/widgets_GlobalConfigMenu.php deleted file mode 100644 index 5f306be5..00000000 --- a/messages/sq/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '', - 'Snippet' => '', -]; diff --git a/messages/sq/widgets_views_nextEvents.php b/messages/sq/widgets_views_nextEvents.php deleted file mode 100644 index f8c6da69..00000000 --- a/messages/sq/widgets_views_nextEvents.php +++ /dev/null @@ -1,6 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/sq/widgets_views_participants.php b/messages/sq/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/sq/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/sr/activities.php b/messages/sr/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/sr/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/sr/base.php b/messages/sr/base.php index ad7dd628..857d6f71 100644 --- a/messages/sr/base.php +++ b/messages/sr/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Dodaj profilni kalendar', 'Choose target calendar' => 'Odaberite ciljani kalendar', 'Reminder settings' => 'Postavke podsetnika', @@ -9,24 +9,37 @@ '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', 'Attending' => 'Prisustvuju', 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', 'Birthday' => 'Rođendan', 'Calendar' => 'Kalendar', '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', '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!', @@ -40,21 +53,40 @@ 'Files' => 'Datoteke', '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.' => 'Ovdje možete konfigurirati zadane postavke podsetnika za ovaj događaj. Korisnici su u mogućnosti da prepraviti ove postavke pomoću linka Podesi podsetnik.', + 'Hour' => 'Sat', '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', 'Invited: {users}' => '', + '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' => '', @@ -64,6 +96,7 @@ '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', @@ -72,23 +105,41 @@ '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 ', 'User birthdays' => 'Rođendan korisnika', 'Wednesday' => 'Sreda', + 'Week' => 'Sedemica', + 'Weeks' => 'Nedelja', + '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' => '', + '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}".' => '', -); +]; diff --git a/messages/sr/calendar.php b/messages/sr/calendar.php deleted file mode 100644 index 953e0a3b..00000000 --- a/messages/sr/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dan', - 'List' => 'Lista', - 'Month' => 'Mesec', - 'Today' => 'Danas', - 'Week' => 'Sedemica', - 'Year' => 'Godina', -); diff --git a/messages/sr/config.php b/messages/sr/config.php index e8d6edd3..fd1b549c 100644 --- a/messages/sr/config.php +++ b/messages/sr/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => 'Kalendar postavke modula', 'Confirm Deletion' => 'Potvrdi brisanje', 'Add \'Calendar\' to the main menu' => '', 'Adds an snippet with upcoming events to your users dashboard.' => 'Dodaje se isečak s nadolazećim događajima na upravljačku ploču.', + 'Basic' => 'Osnovno', 'Calendar Configuration' => 'Konfiguracija kalendara', 'Calendar default view mode settings' => '', 'Create new type' => 'Kreiraj novu tip', @@ -12,6 +13,7 @@ 'Delete' => 'Obriši', 'Do you really want to delte this event type?' => 'Želite li zaista da uklonite ovu vrstu događaja?', 'Event Type Configuration' => 'Konfiguracija vrste događaja', + 'Full calendar' => '', 'Half a year' => 'Pola godine', 'Here you can configure default settings for new calendar events.' => 'Ovde možete konfigurirati zadane postavke za nove kalendarske događaje.', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Ovdje možete da konfigurišete podrazumevane postavke za nove kalendarske događaje. Ove postavke mogu da se promene na nivou prostora / profila.', @@ -29,9 +31,11 @@ 'One week' => 'Jedana nedelja', 'One year' => 'Jedna godina', 'Only show top menu item and snippet if the module is installed in the users profile' => 'Prikaži samo gornju stavku izbornika i isečak ako je modul instaliran u korisničkom profilu', + 'Participation' => 'Učestvovanje', + 'Reminder' => 'Podsetnik', 'Reset' => 'Reset', 'Show snippet' => 'Prikaži isečak', 'There are currently no event types available.' => 'Trenutačno nema dostupnih tipova događaja.', 'Upcoming events snippet' => 'Isečak nadolazećih događaja', 'View mode' => '', -); +]; diff --git a/messages/sr/mail.php b/messages/sr/mail.php deleted file mode 100644 index 54b31132..00000000 --- a/messages/sr/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Opis', - 'Location' => 'Lokacija', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'Pregledajte na mreži: {url}', -); diff --git a/messages/sr/notification.php b/messages/sr/notification.php new file mode 100644 index 00000000..28218d6a --- /dev/null +++ b/messages/sr/notification.php @@ -0,0 +1,25 @@ + 'Kalendar', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Opis', + 'Location' => 'Lokacija', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Primajte obaveštenja vezane uz kalendar.', + 'Starting' => '', + 'View Online: {url}' => 'Pregledajte na mreži: {url}', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} otkazan događaj "{contentTitle}" u prostoru {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} otkazan događaj "{contentTitle}"', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ponovno je pokrenuo događaj "{contentTitle}" u prostoru {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} ponovo je porenuo događaj "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} upravo ažurirani događaj "{contentTitle}" u prostoru {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} samo ažurirani događaj {contentTitle}.', +]; diff --git a/messages/sr/notifications_CalendarNotificationCategory.php b/messages/sr/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 2c189f74..00000000 --- a/messages/sr/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalendar', - 'Receive Calendar related Notifications.' => 'Primajte obaveštenja vezane uz kalendar.', -); diff --git a/messages/sr/notifications_views_CanceledEvent.php b/messages/sr/notifications_views_CanceledEvent.php deleted file mode 100644 index 9529c898..00000000 --- a/messages/sr/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} otkazan događaj "{contentTitle}" u prostoru {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} otkazan događaj "{contentTitle}"', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} upravo ažurirani događaj "{contentTitle}" u prostoru {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} samo ažurirani događaj {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ponovno je pokrenuo događaj "{contentTitle}" u prostoru {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} ponovo je porenuo događaj "{contentTitle}".', -]; diff --git a/messages/sr/permissions.php b/messages/sr/permissions.php deleted file mode 100644 index 3ad11841..00000000 --- a/messages/sr/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Kreriaj unos', - 'Manage entries' => 'Upravljaj unosima', -); diff --git a/messages/sr/recurrence.php b/messages/sr/recurrence.php deleted file mode 100644 index f857f06e..00000000 --- a/messages/sr/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Nakon (pojave)', - 'Day' => 'Dan', - 'Days' => 'Dana', - 'Delete all events' => 'Izbriši sve događaje', - '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', - 'End' => 'Završi', - 'Invalid day of month given' => 'Dat je nevažeći dan u mesecu', - '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', - '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', - 'On date' => 'Na datum', - 'Repeat every' => 'Ponovite svaki', - 'This event does not support recurrent events' => 'Ovaj događaj ne podržava ponavljajuće događaje', - 'Week' => 'Sedemica', - 'Weeks' => 'Nedelja', - 'Year' => 'Godina', - 'Years' => 'Godine', - 'first' => 'prvi', - 'forth' => 'unaprijed', - 'last' => 'poslednji', - 'on weekdays' => 'radnim danima', - 'second' => 'drugi', - 'third' => 'treći', -); diff --git a/messages/sr/reminder.php b/messages/sr/reminder.php deleted file mode 100644 index 684fd8e9..00000000 --- a/messages/sr/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Prilagođeni podsetnik', - 'Day' => 'Dan', - 'Default reminder settings' => 'Podrazumevane postavke podsetnika', - '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.' => 'Ovdje možete konfigurirati zadane postavke podsetnika za ovaj događaj. Korisnici su u mogućnosti da prepraviti ove postavke pomoću linka Podesi podsetnik.', - 'Hour' => 'Sat', - 'Minute' => '', - 'No reminder' => 'Nema podsetnika', - 'Upcoming {type}' => 'Predstojeći {type}', - 'Upcoming {type}: {title}' => 'Predstojeći {type}: {title}', - 'Use default reminder' => 'Upotrijebi podrazumevani podsetnik ', - 'Week' => 'Sedemica', - '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}\'', -); diff --git a/messages/sr/settings.php b/messages/sr/settings.php deleted file mode 100644 index e04ef865..00000000 --- a/messages/sr/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Osnovno', - 'Full calendar' => '', - 'Participation' => 'Učestvovanje', - 'Reminder' => 'Podsetnik', -); diff --git a/messages/sr/views.php b/messages/sr/views.php new file mode 100644 index 00000000..d365fea3 --- /dev/null +++ b/messages/sr/views.php @@ -0,0 +1,58 @@ + '%displayName% ne može prisustvovati %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% prisustvuje %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %contentTitle%.' => '%displayName% možda će prisustvovati %contentTitle%.', + ':count Attending' => '', + ':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', + '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' => '', +]; diff --git a/messages/sr/views_activities_EntryResponse.php b/messages/sr/views_activities_EntryResponse.php deleted file mode 100644 index a2f0c0c7..00000000 --- a/messages/sr/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% ne može prisustvovati %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% prisustvuje %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '%displayName% možda će prisustvovati %contentTitle%.', -); diff --git a/messages/sr/views_container-config_typesConfig.php b/messages/sr/views_container-config_typesConfig.php deleted file mode 100644 index 64559a31..00000000 --- a/messages/sr/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Kreiraj novi tip događaja', - 'Edit calendar' => 'Uredi kalendar', - 'Edit event type' => 'Uredi tip događaja', -); diff --git a/messages/sr/views_entry_edit.php b/messages/sr/views_entry_edit.php deleted file mode 100644 index 1ed29e92..00000000 --- a/messages/sr/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => 'Uredi ponavljajući događaj', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Prisustvuju', - 'Back' => 'Nazad', - 'Close' => 'Zatvori', - 'Declined' => '', - 'Everybody can participate' => 'Svi mogu da učestvuju', - 'General' => 'Opšte', - 'Invited' => '', - 'Next' => 'Dalje', - 'No participants' => 'Nema učesnika', - 'Only by Invite' => '', - 'Participants' => 'Učesnici', - 'Recurrence' => 'Ponavljanje', - 'Reminder' => 'Podsetnik', - 'Select event type...' => 'Odaberite tip događaja...', - 'Settings' => 'Postavke', - 'Title' => 'Funkcija', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/sr/views_entry_view.php b/messages/sr/views_entry_view.php deleted file mode 100644 index 26e79654..00000000 --- a/messages/sr/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Dodatne informacije', - 'All' => 'Све', - 'Attend' => 'Prisustvuj', - 'Decline' => 'Odbij', - 'Filter' => 'Filter', - 'Maybe' => 'Možda', - 'Participants' => 'Učesnici', - 'You are invited, please select your role:' => '', -); diff --git a/messages/sr/views_global_index.php b/messages/sr/views_global_index.php deleted file mode 100644 index e9463776..00000000 --- a/messages/sr/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Zapraćeni prostori', - 'Followed users' => 'Zapraćeni korisnici', - 'I\'m attending' => 'Ja prisustvujem', - 'My events' => 'Moji događaji', - 'My profile' => 'Moj profil', - 'My spaces' => 'Moji prostori', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/sr/widgets_GlobalConfigMenu.php b/messages/sr/widgets_GlobalConfigMenu.php deleted file mode 100644 index c46d2fa6..00000000 --- a/messages/sr/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Kalendari', - 'Defaults' => 'Zadano', - 'Event Types' => 'Vrste događaja', - 'Menu' => 'Meni', - 'Snippet' => 'Isečak', -); diff --git a/messages/sr/widgets_views_nextEvents.php b/messages/sr/widgets_views_nextEvents.php deleted file mode 100644 index f07c5456..00000000 --- a/messages/sr/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Predstojeći događaji', - 'Open Calendar' => 'Otvori kalendar', -); diff --git a/messages/sr/widgets_views_participants.php b/messages/sr/widgets_views_participants.php deleted file mode 100644 index a1d93507..00000000 --- a/messages/sr/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => 'Učesnici', -); diff --git a/messages/sv/activities.php b/messages/sv/activities.php deleted file mode 100644 index 9b54e842..00000000 --- a/messages/sv/activities.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Kalender: Bjud in', - 'Calendar: attend' => 'Kalender: delta', - 'Calendar: decline' => 'Kalender: avvisa', - 'Calendar: maybe' => 'Kalender: kanske', - 'Whenever someone declines to participate in an event.' => 'När någon avstår från att delta i ett evenemang.', - 'Whenever someone invites to participate in an event.' => 'När någon bjuder in att delta i ett evenemang.', - 'Whenever someone may be participating in an event.' => 'Närhelst någon kan delta i ett evenemang.', - 'Whenever someone participates in an event.' => 'När någon deltar i ett evenemang.', -); diff --git a/messages/sv/base.php b/messages/sv/base.php index 57520d70..05e5f37e 100644 --- a/messages/sv/base.php +++ b/messages/sv/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Lägg till Profilkalender', 'Choose target calendar' => 'Välj kalender', 'Reminder settings' => 'Påminnelse inställning', @@ -9,24 +9,37 @@ '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.' => '', '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', @@ -40,21 +53,40 @@ '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å', + '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.' => 'Här kan du ställa in standardpåminnelser för det här eventet. Användare har möjlighet att skriva över dessa inställningar genom länken Ställ in påminnelse', + 'Hour' => 'Timma', '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', @@ -64,6 +96,7 @@ 'Public' => 'Publik', 'Recurring' => 'Återkommande', 'Reopen Event' => 'Återöppna Aktivitet', + 'Repeat every' => 'Upprepa varje', 'Saturday' => 'Lördag', 'Set reminder' => 'Påminnelse', 'Start Date' => 'Start datum', @@ -72,23 +105,41 @@ '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}' => '', '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}\'' => '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}".', -); +]; diff --git a/messages/sv/calendar.php b/messages/sv/calendar.php deleted file mode 100644 index ffb7d6a4..00000000 --- a/messages/sv/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Dag', - 'List' => 'Lista', - 'Month' => 'Månad', - 'Today' => 'I dag', - 'Week' => 'Vecka', - 'Year' => 'År', -); diff --git a/messages/sv/config.php b/messages/sv/config.php index 4aa3567f..1b759450 100644 --- a/messages/sv/config.php +++ b/messages/sv/config.php @@ -1,9 +1,10 @@ Calendar module configuration' => 'Kalender inställningar för moduler', 'Confirm Deletion' => 'Bekräfta radering', 'Add \'Calendar\' to the main menu' => 'Lägg till "Kalender" till huvudmenyn', 'Adds an snippet with upcoming events to your users dashboard.' => 'Lägger till en snippet med kommande aktiviteter på användarnas tidslinje.', + 'Basic' => 'Grund', 'Calendar Configuration' => 'Kalenderinställningar', 'Calendar default view mode settings' => 'Standardinställningar för kalenderns visningsläge', 'Create new type' => 'Skapa ny typ', @@ -12,6 +13,7 @@ 'Delete' => 'Radera', 'Do you really want to delte this event type?' => 'Vill du verkligen radera denna aktivitetstyp', 'Event Type Configuration' => 'Konfiguration av aktivitetstyp', + 'Full calendar' => 'Fullständig kalender', 'Half a year' => 'Halvår', 'Here you can configure default settings for new calendar events.' => 'Här kan du konfigurera standardinställningar för nya kalenderhändelser.', 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Här kan du konfigurera standardinställningar för nya kalenderhändelser. Dessa inställningar kan skrivas över på nätverks- / profilnivå.', @@ -29,9 +31,11 @@ 'One week' => 'En vecka', 'One year' => 'Ett år', 'Only show top menu item and snippet if the module is installed in the users profile' => 'Visa endast som toppmeny och snippet om modulen är installerad i användarprofilen', + 'Participation' => 'Deltagande', + 'Reminder' => 'Påminnelse', 'Reset' => 'Återställ', 'Show snippet' => 'Visa snippet', 'There are currently no event types available.' => 'Det finns just nu inga aktivitetstyper', 'Upcoming events snippet' => 'Kommande Snippet händelser', 'View mode' => 'Visningsläge', -); +]; diff --git a/messages/sv/mail.php b/messages/sv/mail.php deleted file mode 100644 index 878e622a..00000000 --- a/messages/sv/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Beskrivning', - 'Location' => 'Plats', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'Visa Online: {url}', -); diff --git a/messages/sv/notification.php b/messages/sv/notification.php new file mode 100644 index 00000000..4b820a48 --- /dev/null +++ b/messages/sv/notification.php @@ -0,0 +1,25 @@ + 'Kalender', + 'Calendar: Invite' => 'Kalender: Bjud in', + 'Calendar: attend' => 'Kalender: delta', + 'Calendar: decline' => 'Kalender: avvisa', + 'Calendar: maybe' => 'Kalender: kanske', + 'Description' => 'Beskrivning', + 'Location' => 'Plats', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Ta emot kalenderrelaterade aviseringar.', + 'Starting' => '', + 'View Online: {url}' => 'Visa Online: {url}', + 'Whenever someone declines to participate in an event.' => 'När någon avstår från att delta i ett evenemang.', + 'Whenever someone invites to participate in an event.' => 'När någon bjuder in att delta i ett evenemang.', + 'Whenever someone may be participating in an event.' => 'Närhelst någon kan delta i ett evenemang.', + 'Whenever someone participates in an event.' => 'När någon deltar i ett evenemang.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} raderade händelsen "{contentTitle}" i forumet {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} raderade händelsen"{contentTitle}"', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} återaktiverade händelsen "{contentTitle}" i forumet {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} återaktiverade händelsen "{contentTitle}"', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} uppdaterade händelsen "{contentTitle}" i forumet {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} uppdaterade {contentTitle}.', +]; diff --git a/messages/sv/notifications_CalendarNotificationCategory.php b/messages/sv/notifications_CalendarNotificationCategory.php deleted file mode 100644 index b097bfd4..00000000 --- a/messages/sv/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Kalender', - 'Receive Calendar related Notifications.' => 'Ta emot kalenderrelaterade aviseringar.', -); diff --git a/messages/sv/notifications_views_CanceledEvent.php b/messages/sv/notifications_views_CanceledEvent.php deleted file mode 100644 index 4548d7a7..00000000 --- a/messages/sv/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} raderade händelsen "{contentTitle}" i forumet {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} raderade händelsen"{contentTitle}"', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} uppdaterade händelsen "{contentTitle}" i forumet {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} uppdaterade {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} återaktiverade händelsen "{contentTitle}" i forumet {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} återaktiverade händelsen "{contentTitle}"', -]; diff --git a/messages/sv/permissions.php b/messages/sv/permissions.php deleted file mode 100644 index c9fbb406..00000000 --- a/messages/sv/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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', - 'Create entry' => 'Skapa inlägg', - 'Manage entries' => 'Hantera inlägg', -); diff --git a/messages/sv/recurrence.php b/messages/sv/recurrence.php deleted file mode 100644 index b89f1c47..00000000 --- a/messages/sv/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'Efter', - 'Day' => 'Dag', - 'Days' => 'Dagar', - 'Delete all events' => 'Ta bort alla händelser', - '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', - 'End' => 'Slut', - 'Invalid day of month given' => 'Ogiltig dag i månaden angiven', - 'Invalid frequency given' => 'Ogiltig frekvens angiven', - 'Invalid interval given' => 'Ogiltigt intervall angivet', - 'Invalid week day selection' => 'Ogiltigt val av veckodag', - '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', - 'On date' => 'På datum', - 'Repeat every' => 'Upprepa varje', - 'This event does not support recurrent events' => 'Den här händelsen stödjer inte återkommande händelser', - 'Week' => 'Vecka', - 'Weeks' => 'Veckor', - 'Year' => 'År', - 'Years' => 'År', - 'first' => 'första', - 'forth' => 'fjärde', - 'last' => 'sista', - 'on weekdays' => 'på vardagar', - 'second' => 'andra', - 'third' => 'tredje', -); diff --git a/messages/sv/reminder.php b/messages/sv/reminder.php deleted file mode 100644 index 2d205ed7..00000000 --- a/messages/sv/reminder.php +++ /dev/null @@ -1,20 +0,0 @@ - 'Anpassad påminnelse', - 'Day' => 'Dag', - 'Default reminder settings' => 'Standardinställningar för påminnelser', - '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.' => 'Här kan du ställa in standardpåminnelser för det här eventet. Användare har möjlighet att skriva över dessa inställningar genom länken Ställ in påminnelse', - 'Hour' => 'Timma', - 'Minute' => 'Minut', - 'No reminder' => 'Ingen påminnelse', - 'Upcoming {type}' => 'Kommande {type}', - 'Upcoming {type}: {title}' => 'Kommande {type}: {title}', - 'Use default reminder' => 'Använd standardpåminnelse', - 'Week' => 'Vecka', - '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}', - 'Your reminder settings for event: \'{title}\'' => 'Din påminnelseinställning för händelse: \'{title}\'', -); diff --git a/messages/sv/settings.php b/messages/sv/settings.php deleted file mode 100644 index 8a4c364d..00000000 --- a/messages/sv/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Grund', - 'Full calendar' => 'Fullständig kalender', - 'Participation' => 'Deltagande', - 'Reminder' => 'Påminnelse', -); diff --git a/messages/sv/views.php b/messages/sv/views.php new file mode 100644 index 00000000..76180f3c --- /dev/null +++ b/messages/sv/views.php @@ -0,0 +1,59 @@ + '%displayName% kan inte delta i %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% skapade %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% deltar i %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '%displayName% är inbjuden till %contentTitle%.', + '%displayName% might be attending %contentTitle%.' => '%displayName% kommer kanske att delta i %contentTitle%.', + ':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', + 'Filter' => 'Filtrera', + 'Filter events' => '', + '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' => '', + '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', +]; diff --git a/messages/sv/views_activities_EntryCreated.php b/messages/sv/views_activities_EntryCreated.php deleted file mode 100644 index 82811742..00000000 --- a/messages/sv/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% skapade %contentTitle%.', -); diff --git a/messages/sv/views_activities_EntryResponse.php b/messages/sv/views_activities_EntryResponse.php deleted file mode 100644 index a1f7f12a..00000000 --- a/messages/sv/views_activities_EntryResponse.php +++ /dev/null @@ -1,7 +0,0 @@ - '%displayName% kan inte delta i %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% deltar i %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '%displayName% är inbjuden till %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% kommer kanske att delta i %contentTitle%.', -); diff --git a/messages/sv/views_container-config_typesConfig.php b/messages/sv/views_container-config_typesConfig.php deleted file mode 100644 index baf0641e..00000000 --- a/messages/sv/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'Skapa ny aktivitetstyp', - 'Edit calendar' => 'Ändra kalender', - 'Edit event type' => 'Ändra aktivitetstyp', -); diff --git a/messages/sv/views_entry_edit.php b/messages/sv/views_entry_edit.php deleted file mode 100644 index b1c8f309..00000000 --- a/messages/sv/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => 'Skapa evenemang', - 'Edit Event' => 'Redigera evenemang', - 'Edit recurring event' => 'Ändra återkommande aktivitet', - '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?', - 'Attending' => 'Närvarar', - 'Back' => 'Tillbaka', - 'Close' => 'Stäng', - 'Declined' => 'Tackade nej', - 'Everybody can participate' => 'Alla kan delta', - 'General' => 'Allmän', - 'Invited' => 'Inbjudna', - 'Next' => 'Nästa', - 'No participants' => 'Inga deltagare', - 'Only by Invite' => 'Endast genom inbjudan', - 'Participants' => 'Deltagare', - 'Recurrence' => 'Återkommande', - 'Reminder' => 'Påminnelse', - 'Select event type...' => 'Välj aktivitetstyp', - 'Settings' => 'Inställningar', - 'Title' => 'Rubrik', - 'Undecided' => 'Osäkra', - '{count} Participants' => '{count} deltagare', -); diff --git a/messages/sv/views_entry_view.php b/messages/sv/views_entry_view.php deleted file mode 100644 index b47c15d3..00000000 --- a/messages/sv/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Ytterligare information', - 'All' => 'Alla', - 'Attend' => 'Deltar', - 'Decline' => 'Avböj', - 'Filter' => 'Filtrera', - 'Maybe' => 'Kanske', - 'Participants' => 'Deltagare', - 'You are invited, please select your role:' => 'Du är inbjuden, välj din roll:', -); diff --git a/messages/sv/views_global_index.php b/messages/sv/views_global_index.php deleted file mode 100644 index bf219aa8..00000000 --- a/messages/sv/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Följda forum', - 'Followed users' => 'Följda användare', - 'I\'m attending' => 'Jag deltar', - 'My events' => 'Mina aktiviteter', - 'My profile' => 'Min profil', - 'My spaces' => 'Mina forum', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/sv/widgets_GlobalConfigMenu.php b/messages/sv/widgets_GlobalConfigMenu.php deleted file mode 100644 index bf2ed1c5..00000000 --- a/messages/sv/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Kalendrar', - 'Defaults' => 'Standardinställning', - 'Event Types' => 'Aktivitetstyper', - 'Menu' => 'Meny', - 'Snippet' => 'Snippet', -); diff --git a/messages/sv/widgets_views_nextEvents.php b/messages/sv/widgets_views_nextEvents.php deleted file mode 100644 index 5bec3614..00000000 --- a/messages/sv/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Kommande aktiviteter', - 'Open Calendar' => 'Öppna kalender', -); diff --git a/messages/sv/widgets_views_participants.php b/messages/sv/widgets_views_participants.php deleted file mode 100644 index 0447ade6..00000000 --- a/messages/sv/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - ':count Närvarar', - ':count Declined' => ':count har avböjt', - ':count Invited' => ':count Inbjudna', - ':count Undecided' => ':count Osäkra', - 'Participants' => 'Deltagare', -); diff --git a/messages/sw/activities.php b/messages/sw/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/sw/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/sw/base.php b/messages/sw/base.php index 5197f1bb..28be3708 100644 --- a/messages/sw/base.php +++ b/messages/sw/base.php @@ -1,95 +1,145 @@ 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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'Next' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Title' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'disabled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/sw/calendar.php b/messages/sw/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/sw/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/sw/config.php b/messages/sw/config.php index b40a8327..454bbe1a 100644 --- a/messages/sw/config.php +++ b/messages/sw/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Delete' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/sw/mail.php b/messages/sw/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/sw/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/sw/notification.php b/messages/sw/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/sw/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/sw/notifications_CalendarNotificationCategory.php b/messages/sw/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 32f067f4..00000000 --- a/messages/sw/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,6 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/sw/notifications_views_CanceledEvent.php b/messages/sw/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/sw/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/sw/permissions.php b/messages/sw/permissions.php deleted file mode 100644 index 139867e9..00000000 --- a/messages/sw/permissions.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/sw/recurrence.php b/messages/sw/recurrence.php deleted file mode 100644 index 5fe83811..00000000 --- a/messages/sw/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/sw/reminder.php b/messages/sw/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/sw/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/sw/settings.php b/messages/sw/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/sw/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/sw/views.php b/messages/sw/views.php new file mode 100644 index 00000000..47894e6f --- /dev/null +++ b/messages/sw/views.php @@ -0,0 +1,58 @@ + '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => '', +]; diff --git a/messages/sw/views_activities_EntryResponse.php b/messages/sw/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/sw/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/sw/views_container-config_typesConfig.php b/messages/sw/views_container-config_typesConfig.php deleted file mode 100644 index 0bfdc5f2..00000000 --- a/messages/sw/views_container-config_typesConfig.php +++ /dev/null @@ -1,7 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/sw/views_entry_edit.php b/messages/sw/views_entry_edit.php deleted file mode 100644 index 33789b49..00000000 --- a/messages/sw/views_entry_edit.php +++ /dev/null @@ -1,26 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '', - 'Close' => '', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '', - 'Invited' => '', - 'Next' => '', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => '', - 'Title' => '', - 'Undecided' => '', - '{count} Participants' => '', -]; diff --git a/messages/sw/views_entry_view.php b/messages/sw/views_entry_view.php deleted file mode 100644 index 3701c09e..00000000 --- a/messages/sw/views_entry_view.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -]; diff --git a/messages/sw/views_global_index.php b/messages/sw/views_global_index.php deleted file mode 100644 index 42d34833..00000000 --- a/messages/sw/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/sw/widgets_GlobalConfigMenu.php b/messages/sw/widgets_GlobalConfigMenu.php deleted file mode 100644 index 5f306be5..00000000 --- a/messages/sw/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '', - 'Snippet' => '', -]; diff --git a/messages/sw/widgets_views_nextEvents.php b/messages/sw/widgets_views_nextEvents.php deleted file mode 100644 index f8c6da69..00000000 --- a/messages/sw/widgets_views_nextEvents.php +++ /dev/null @@ -1,6 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/sw/widgets_views_participants.php b/messages/sw/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/sw/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/th/activities.php b/messages/th/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/th/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/th/base.php b/messages/th/base.php index b81b7a8b..51624a93 100644 --- a/messages/th/base.php +++ b/messages/th/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'เพิ่ม ปฏิทินโปรไฟล์', 'Choose target calendar' => 'เลือก ปฏิทินเป้าหมาย', 'Reminder settings' => 'การแจ้งเตือน การตั้งค่า', @@ -9,24 +9,37 @@ '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' => '', '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!' => 'เวลาสิ้นสุดต้องอยู่หลังเวลาเริ่มต้น!', @@ -40,21 +53,40 @@ '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.' => 'คุณสามารถกำหนดค่าตัวเตือนเริ่มต้นส่วนกลางได้ที่นี่ การตั้งค่าเหล่านี้สามารถเขียนทับได้ในระดับพื้นที่/โปรไฟล์', + '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' => 'ชั่วโมง', '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}' => '', + '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' => '', @@ -64,6 +96,7 @@ 'Public' => 'สาธารณะ', 'Recurring' => 'เกิดซ้ำ', 'Reopen Event' => 'เปิดกิจกรรมอีกครั้ง Re', + 'Repeat every' => 'ทำซ้ำทุก ๆ', 'Saturday' => 'วันเสาร์', 'Set reminder' => 'ตั้งการเตือนความจำ', 'Start Date' => 'วันที่เริ่มต้น', @@ -72,23 +105,41 @@ '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}' => '', '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' => '', + '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}".' => '', -); +]; diff --git a/messages/th/calendar.php b/messages/th/calendar.php deleted file mode 100644 index 39077606..00000000 --- a/messages/th/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'วัน', - 'List' => 'รายการ', - 'Month' => 'เดือน', - 'Today' => 'วันนี้', - 'Week' => 'สัปดาห์', - 'Year' => 'ปี', -); diff --git a/messages/th/config.php b/messages/th/config.php index cecc3160..e3bea74e 100644 --- a/messages/th/config.php +++ b/messages/th/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'ปฏิทิน การกำหนดค่าโมดูล', - 'Confirm Deletion' => 'ยืนยัน การลบ', - 'Adds an snippet with upcoming events to your users dashboard.' => 'เพิ่มข้อมูลโค้ดที่มีเหตุการณ์ที่จะเกิดขึ้นไปยังแดชบอร์ดผู้ใช้ของคุณ', - 'Calendar Configuration' => 'การกำหนดค่าปฏิทิน', - 'Create new type' => 'สร้างประเภทใหม่', - 'Default participation settings' => 'การตั้งค่าการเข้าร่วมเริ่มต้น', - 'Delete' => 'ลบ', - 'Do you really want to delte this event type?' => 'คุณต้องการลบเหตุการณ์ประเภทนี้หรือไม่?', - 'Event Type Configuration' => 'การกำหนดค่าประเภทเหตุการณ์', - 'Half a year' => 'ครึ่งปี', - 'Here you can configure default settings for new calendar events.' => 'คุณสามารถกำหนดการตั้งค่าเริ่มต้นสำหรับกิจกรรมในปฏิทินใหม่ได้ที่นี่', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'คุณสามารถกำหนดการตั้งค่าเริ่มต้นสำหรับกิจกรรมในปฏิทินใหม่ได้ที่นี่ การตั้งค่าเหล่านี้สามารถเขียนทับได้ในระดับพื้นที่/โปรไฟล์', - 'Here you can manage and disable different calendars.' => 'คุณสามารถจัดการและปิดใช้งานปฏิทินต่างๆ ได้ที่นี่', - 'Here you can manage your event types.' => 'คุณสามารถจัดการประเภทกิจกรรมได้ที่นี่', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'หากเปิดใช้งาน รายการเมนูบนสุดของปฏิทินและข้อมูลโค้ดแดชบอร์ดจะมองเห็นได้เฉพาะผู้ใช้ที่ติดตั้งโมดูลปฏิทินในโปรไฟล์ของตน', - 'Include birthdays to dashboard snippet' => 'รวมวันเกิดไปยังข้อมูลโค้ดแดชบอร์ด', - 'Interval of upcoming events' => 'ช่วงเวลาของกิจกรรมที่จะเกิดขึ้น', - 'Max event items' => 'รายการกิจกรรมสูงสุด', - 'Menu settings' => 'การตั้งค่าเมนู', - 'Name' => 'ชื่อ', - 'One month' => 'หนึ่งเดือน', - 'One week' => 'หนึ่งอาทิตย์', - 'One year' => 'หนึ่งปี', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'แสดงรายการเมนูด้านบนและตัวอย่างเท่านั้นหากติดตั้งโมดูลในโปรไฟล์ผู้ใช้', - 'Reset' => 'รีเซ็ต', - 'Show snippet' => 'แสดงตัวอย่าง', - 'There are currently no event types available.' => 'ขณะนี้ไม่มีประเภทเหตุการณ์ที่พร้อมใช้งาน', - 'Upcoming events snippet' => 'ตัวอย่างเหตุการณ์ที่จะเกิดขึ้น', - 'Add \'Calendar\' to the main menu' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'View mode' => '', + 'Calendar module configuration' => 'ปฏิทิน การกำหนดค่าโมดูล', + 'Confirm Deletion' => 'ยืนยัน การลบ', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => 'เพิ่มข้อมูลโค้ดที่มีเหตุการณ์ที่จะเกิดขึ้นไปยังแดชบอร์ดผู้ใช้ของคุณ', + 'Basic' => 'ขั้นพื้นฐาน', + 'Calendar Configuration' => 'การกำหนดค่าปฏิทิน', + 'Calendar default view mode settings' => '', + 'Create new type' => 'สร้างประเภทใหม่', + 'Default basic settings' => '', + 'Default participation settings' => 'การตั้งค่าการเข้าร่วมเริ่มต้น', + 'Delete' => 'ลบ', + 'Do you really want to delte this event type?' => 'คุณต้องการลบเหตุการณ์ประเภทนี้หรือไม่?', + 'Event Type Configuration' => 'การกำหนดค่าประเภทเหตุการณ์', + 'Full calendar' => '', + 'Half a year' => 'ครึ่งปี', + 'Here you can configure default settings for new calendar events.' => 'คุณสามารถกำหนดการตั้งค่าเริ่มต้นสำหรับกิจกรรมในปฏิทินใหม่ได้ที่นี่', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'คุณสามารถกำหนดการตั้งค่าเริ่มต้นสำหรับกิจกรรมในปฏิทินใหม่ได้ที่นี่ การตั้งค่าเหล่านี้สามารถเขียนทับได้ในระดับพื้นที่/โปรไฟล์', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => 'คุณสามารถจัดการและปิดใช้งานปฏิทินต่างๆ ได้ที่นี่', + 'Here you can manage your event types.' => 'คุณสามารถจัดการประเภทกิจกรรมได้ที่นี่', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'หากเปิดใช้งาน รายการเมนูบนสุดของปฏิทินและข้อมูลโค้ดแดชบอร์ดจะมองเห็นได้เฉพาะผู้ใช้ที่ติดตั้งโมดูลปฏิทินในโปรไฟล์ของตน', + 'Include birthdays to dashboard snippet' => 'รวมวันเกิดไปยังข้อมูลโค้ดแดชบอร์ด', + 'Interval of upcoming events' => 'ช่วงเวลาของกิจกรรมที่จะเกิดขึ้น', + 'Max event items' => 'รายการกิจกรรมสูงสุด', + 'Menu settings' => 'การตั้งค่าเมนู', + 'Name' => 'ชื่อ', + 'One month' => 'หนึ่งเดือน', + 'One week' => 'หนึ่งอาทิตย์', + 'One year' => 'หนึ่งปี', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'แสดงรายการเมนูด้านบนและตัวอย่างเท่านั้นหากติดตั้งโมดูลในโปรไฟล์ผู้ใช้', + 'Participation' => 'การเข้าร่วม', + 'Reminder' => 'เตือนความจำ', + 'Reset' => 'รีเซ็ต', + 'Show snippet' => 'แสดงตัวอย่าง', + 'There are currently no event types available.' => 'ขณะนี้ไม่มีประเภทเหตุการณ์ที่พร้อมใช้งาน', + 'Upcoming events snippet' => 'ตัวอย่างเหตุการณ์ที่จะเกิดขึ้น', + 'View mode' => '', ]; diff --git a/messages/th/mail.php b/messages/th/mail.php deleted file mode 100644 index 3e904e17..00000000 --- a/messages/th/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'คำอธิบาย', - 'Location' => 'ที่ตั้ง', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'ดูออนไลน์: {url}', -); diff --git a/messages/th/notification.php b/messages/th/notification.php new file mode 100644 index 00000000..7176dc60 --- /dev/null +++ b/messages/th/notification.php @@ -0,0 +1,25 @@ + 'ปฏิทิน', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'คำอธิบาย', + 'Location' => 'ที่ตั้ง', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'รับการแจ้งเตือนที่เกี่ยวข้องกับปฏิทิน', + 'Starting' => '', + 'View Online: {url}' => 'ดูออนไลน์: {url}', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} ยกเลิกกิจกรรม "{contentTitle}" ในช่องว่าง {spaceName}', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} ยกเลิกกิจกรรม "{contentTitle}"', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} เปิดกิจกรรม "{contentTitle}" อีกครั้งในช่องว่าง {spaceName}', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} เปิดกิจกรรม "{contentTitle}" อีกครั้ง', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} เพิ่งอัปเดตกิจกรรม "{contentTitle}" ในช่องว่าง {spaceName}', + '{displayName} updated the event "{contentTitle}".' => '{displayName} เพิ่งอัปเดตกิจกรรม {contentTitle}', +]; diff --git a/messages/th/notifications_CalendarNotificationCategory.php b/messages/th/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 7b15708f..00000000 --- a/messages/th/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'ปฏิทิน', - 'Receive Calendar related Notifications.' => 'รับการแจ้งเตือนที่เกี่ยวข้องกับปฏิทิน', -); diff --git a/messages/th/notifications_views_CanceledEvent.php b/messages/th/notifications_views_CanceledEvent.php deleted file mode 100644 index 2190a3d0..00000000 --- a/messages/th/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} ยกเลิกกิจกรรม "{contentTitle}" ในช่องว่าง {spaceName}', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} ยกเลิกกิจกรรม "{contentTitle}"', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} เพิ่งอัปเดตกิจกรรม "{contentTitle}" ในช่องว่าง {spaceName}', - '{displayName} updated the event "{contentTitle}".' => '{displayName} เพิ่งอัปเดตกิจกรรม {contentTitle}', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} เปิดกิจกรรม "{contentTitle}" อีกครั้งในช่องว่าง {spaceName}', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} เปิดกิจกรรม "{contentTitle}" อีกครั้ง', -]; diff --git a/messages/th/permissions.php b/messages/th/permissions.php deleted file mode 100644 index e127cbff..00000000 --- a/messages/th/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - 'อนุญาตให้ผู้ใช้สร้างรายการปฏิทินใหม่', - 'Allows the user to edit/delete existing calendar entries' => 'อนุญาตให้ผู้ใช้แก้ไข/ลบรายการปฏิทินที่มีอยู่', - 'Create entry' => 'สร้างรายการ', - 'Manage entries' => 'จัดการรายการ', -); diff --git a/messages/th/recurrence.php b/messages/th/recurrence.php deleted file mode 100644 index 3b4da06b..00000000 --- a/messages/th/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - 'หลัง (ครั้ง)', - 'Day' => 'วัน', - 'Days' => 'วัน', - 'Delete all events' => 'ลบกิจกรรมทั้งหมด', - 'Edit all events' => 'แก้ไขกิจกรรมทั้งหมด', - 'Edit this and following events' => 'แก้ไขเหตุการณ์นี้และติดตาม', - 'Edit this event' => 'แก้ไขกิจกรรมนี้', - 'End' => 'จบ', - 'Invalid day of month given' => 'วันที่ระบุเดือนไม่ถูกต้อง', - 'Invalid frequency given' => 'ระบุความถี่ไม่ถูกต้อง', - 'Invalid interval given' => 'ช่วงเวลาที่ระบุไม่ถูกต้อง', - 'Invalid week day selection' => 'การเลือกวันในสัปดาห์ไม่ถูกต้อง', - 'Month' => 'เดือน', - 'Monthly on day {dayOfMonth}' => 'รายเดือนในวันที่ {dayOfMonth}', - 'Monthly on the {position} {dayOfWeek}' => 'รายเดือนใน {position} {dayOfWeek}', - 'Months' => 'เดือน', - 'Never' => 'ไม่เคย', - 'On date' => 'ในวันที่', - 'Repeat every' => 'ทำซ้ำทุก ๆ', - 'This event does not support recurrent events' => 'สัปดาห์', - 'Week' => 'สัปดาห์', - 'Weeks' => 'สัปดาห์', - 'Year' => 'ปี', - 'Years' => 'ปี', - 'first' => 'ก่อน', - 'forth' => 'มา', - 'last' => 'ล่าสุด', - 'on weekdays' => 'ในวันธรรมดา', - 'second' => 'ที่สอง', - 'third' => 'ที่สาม', -); diff --git a/messages/th/reminder.php b/messages/th/reminder.php deleted file mode 100644 index 826ff928..00000000 --- a/messages/th/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - 'การแจ้งเตือนที่กำหนดเองกำหนดเอง', - 'Day' => 'วัน', - 'Default reminder settings' => 'การตั้งค่าการเตือนเริ่มต้น', - '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' => 'ชั่วโมง', - 'No reminder' => 'ไม่มีการเตือน', - 'Upcoming {type}' => 'กำลังจะมาถึง {type}', - 'Upcoming {type}: {title}' => 'กำลังจะมีขึ้น {type}: {title}', - 'Use default reminder' => 'ใช้ตัวเตือนเริ่มต้น', - 'Week' => 'สัปดาห์', - 'You have an {type} coming up' => 'คุณมี {type} ขึ้นมา', - 'You have an {type} coming up: {title}' => 'คุณมี {type} ขึ้นมา: {title}', - 'Your reminder settings for event: \'{title}\'' => 'การตั้งค่าการแจ้งเตือนสำหรับกิจกรรม: \'{title}\'', - 'Minute' => '', -]; diff --git a/messages/th/settings.php b/messages/th/settings.php deleted file mode 100644 index 0e405fe7..00000000 --- a/messages/th/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'ขั้นพื้นฐาน', - 'Full calendar' => '', - 'Participation' => 'การเข้าร่วม', - 'Reminder' => 'เตือนความจำ', -); diff --git a/messages/th/views.php b/messages/th/views.php new file mode 100644 index 00000000..423b2317 --- /dev/null +++ b/messages/th/views.php @@ -0,0 +1,59 @@ + '%displayName% ไม่สามารถเข้าร่วม %contentTitle%', + '%displayName% created a new %contentTitle%.' => '%displayName% created a new %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% กำลังเข้าร่วม %contentTitle%', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %contentTitle%.' => '%displayName% อาจเข้าร่วม %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' => 'ทุกคนสามารถมีส่วนร่วม', + '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' => '', +]; diff --git a/messages/th/views_activities_EntryCreated.php b/messages/th/views_activities_EntryCreated.php deleted file mode 100644 index 5d0f258e..00000000 --- a/messages/th/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% created a new %contentTitle%.', -); diff --git a/messages/th/views_activities_EntryResponse.php b/messages/th/views_activities_EntryResponse.php deleted file mode 100644 index 512093e5..00000000 --- a/messages/th/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '%displayName% ไม่สามารถเข้าร่วม %contentTitle%', - '%displayName% is attending %contentTitle%.' => '%displayName% กำลังเข้าร่วม %contentTitle%', - '%displayName% might be attending %contentTitle%.' => '%displayName% อาจเข้าร่วม %contentTitle%', - '%displayName% is invited to %contentTitle%.' => '', -]; diff --git a/messages/th/views_container-config_typesConfig.php b/messages/th/views_container-config_typesConfig.php deleted file mode 100644 index 409aea63..00000000 --- a/messages/th/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -Create new event type' => 'สร้าง ประเภทกิจกรรมใหม่', - 'Edit calendar' => 'แก้ไข ปฏิทิน', - 'Edit event type' => 'แก้ไข ประเภทเหตุการณ์', -); diff --git a/messages/th/views_entry_edit.php b/messages/th/views_entry_edit.php deleted file mode 100644 index 25e71f7b..00000000 --- a/messages/th/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => 'แก้ไข เหตุการณ์ที่เกิดซ้ำ', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'เข้าร่วม', - 'Back' => 'กลับ', - 'Close' => 'ปิด', - 'Declined' => '', - 'Everybody can participate' => 'ทุกคนสามารถมีส่วนร่วม', - 'General' => 'ทั่วไป', - 'Invited' => '', - 'Next' => 'ถัดไป', - 'No participants' => 'ไม่มีผู้เข้าร่วม', - 'Only by Invite' => '', - 'Participants' => 'ผู้เข้าร่วม', - 'Recurrence' => 'การเกิดซ้ำ', - 'Reminder' => 'เตือนความจำ', - 'Select event type...' => 'เลือกประเภทเหตุการณ์...', - 'Settings' => 'การตั้งค่า', - 'Title' => 'หัวข้อ', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/th/views_entry_view.php b/messages/th/views_entry_view.php deleted file mode 100644 index a01e7289..00000000 --- a/messages/th/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'ข้อมูลเพิ่มเติม', - 'All' => 'ทั้งหมด', - 'Attend' => 'เข้าร่วม', - 'Decline' => 'ลดลง', - 'Filter' => 'กรอง', - 'Maybe' => 'อาจจะ', - 'Participants' => 'ผู้เข้าร่วม', - 'You are invited, please select your role:' => '', -); diff --git a/messages/th/views_global_index.php b/messages/th/views_global_index.php deleted file mode 100644 index 6452061d..00000000 --- a/messages/th/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'ติดตามช่องว่าง Follow', - 'Followed users' => 'ผู้ใช้ที่ติดตาม', - 'I\'m attending' => 'ฉันกำลังเข้าร่วม', - 'My events' => 'กิจกรรมของฉัน', - 'My profile' => 'ประวัติของฉัน', - 'My spaces' => 'พื้นที่ของฉัน', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/th/widgets_GlobalConfigMenu.php b/messages/th/widgets_GlobalConfigMenu.php deleted file mode 100644 index ea71e471..00000000 --- a/messages/th/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'ปฏิทิน', - 'Defaults' => 'ค่าเริ่มต้น', - 'Event Types' => 'ประเภทงาน', - 'Menu' => 'เมนู', - 'Snippet' => 'Snippet', -); diff --git a/messages/th/widgets_views_nextEvents.php b/messages/th/widgets_views_nextEvents.php deleted file mode 100644 index 082109ac..00000000 --- a/messages/th/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'กำลังจะเกิดขึ้น เหตุการณ์', - 'Open Calendar' => 'เปิดปฏิทิน', -); diff --git a/messages/th/widgets_views_participants.php b/messages/th/widgets_views_participants.php deleted file mode 100644 index 238cdb34..00000000 --- a/messages/th/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'ผู้เข้าร่วม', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/tr/activities.php b/messages/tr/activities.php deleted file mode 100644 index 069bda47..00000000 --- a/messages/tr/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Takvim: katılmak', - 'Calendar: decline' => 'Takvim: reddetmek', - 'Calendar: maybe' => 'Takvim: belki', - 'Whenever someone declines to participate in an event.' => 'Birisi bir etkinliğe katılmayı reddettiğinde.', - 'Whenever someone may be participating in an event.' => 'Birisi ne zaman bir etkinliğe katılabilir.', - 'Whenever someone participates in an event.' => 'Birisi bir etkinliğe katıldığında.', - 'Calendar: Invite' => '', - 'Whenever someone invites to participate in an event.' => '', -]; diff --git a/messages/tr/base.php b/messages/tr/base.php index da0b9a1f..c22db926 100644 --- a/messages/tr/base.php +++ b/messages/tr/base.php @@ -1,5 +1,5 @@ Add profile calendar' => 'Profil takvimi ekle', 'Choose target calendar' => '', 'Reminder settings' => '', @@ -9,24 +9,37 @@ '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' => '', '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ü', 'Calendar' => 'Takvim', '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', '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!', @@ -40,21 +53,40 @@ 'Files' => 'Dosyalar', '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', '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 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}' => '', + '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' => '', @@ -64,6 +96,7 @@ 'Public' => 'Herkese açık', 'Recurring' => '', 'Reopen Event' => 'Etkinliği Yeniden Aç', + 'Repeat every' => '', 'Saturday' => '', 'Set reminder' => '', 'Start Date' => 'Başlangıç tarihi', @@ -72,23 +105,41 @@ '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', 'User birthdays' => '', 'Wednesday' => '', + 'Week' => 'Hafta', + 'Weeks' => 'Haftalar', + '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' => '', + '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}".' => '', -); +]; diff --git a/messages/tr/calendar.php b/messages/tr/calendar.php deleted file mode 100644 index fe9678b7..00000000 --- a/messages/tr/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Gün', - 'List' => 'Liste', - 'Month' => 'Ay', - 'Today' => '', - 'Week' => 'Hafta', - 'Year' => 'Yıl', -); diff --git a/messages/tr/config.php b/messages/tr/config.php index c8094a69..742b1dea 100644 --- a/messages/tr/config.php +++ b/messages/tr/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Takvim modülü ayarları', - 'Calendar Configuration' => 'Takvim ayarları', - 'Create new type' => 'Yeni tür oluştur', - 'Delete' => 'Sil', - 'Here you can configure default settings for new calendar events.' => 'Burada yeni takvim etkinlikleri için varsayılan ayarları yapılandırabilirsiniz.', - 'Name' => 'İsim', - 'One month' => 'Bir ay', - 'One week' => 'Bir hafta', - 'One year' => 'Bir yıl', - 'Reset' => 'Sıfırla', - 'There are currently no event types available.' => 'Şu anda mevcut etkinlik türü yok.', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Show snippet' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => 'Takvim modülü ayarları', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => 'Temel', + 'Calendar Configuration' => 'Takvim ayarları', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Yeni tür oluştur', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Sil', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => 'Burada yeni takvim etkinlikleri için varsayılan ayarları yapılandırabilirsiniz.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'İsim', + 'One month' => 'Bir ay', + 'One week' => 'Bir hafta', + 'One year' => 'Bir yıl', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => 'Katılım', + 'Reminder' => 'Hatırlatıcı', + 'Reset' => 'Sıfırla', + 'Show snippet' => '', + 'There are currently no event types available.' => 'Şu anda mevcut etkinlik türü yok.', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/tr/mail.php b/messages/tr/mail.php deleted file mode 100644 index 4d229eac..00000000 --- a/messages/tr/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Açıklama', - 'Location' => 'Konum', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/tr/notification.php b/messages/tr/notification.php new file mode 100644 index 00000000..2f9b6df8 --- /dev/null +++ b/messages/tr/notification.php @@ -0,0 +1,25 @@ + 'Takvim', + 'Calendar: Invite' => '', + 'Calendar: attend' => 'Takvim: katılmak', + 'Calendar: decline' => 'Takvim: reddetmek', + 'Calendar: maybe' => 'Takvim: belki', + 'Description' => 'Açıklama', + 'Location' => 'Konum', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Takvim ile ilgili Bildirimler alın.', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => 'Birisi bir etkinliğe katılmayı reddettiğinde.', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => 'Birisi ne zaman bir etkinliğe katılabilir.', + 'Whenever someone participates in an event.' => 'Birisi bir etkinliğe katıldığında.', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} etkinlik "{contentTitle}" iptal edildi.', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/tr/notifications_CalendarNotificationCategory.php b/messages/tr/notifications_CalendarNotificationCategory.php deleted file mode 100644 index da014050..00000000 --- a/messages/tr/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Takvim', - 'Receive Calendar related Notifications.' => 'Takvim ile ilgili Bildirimler alın.', -); diff --git a/messages/tr/notifications_views_CanceledEvent.php b/messages/tr/notifications_views_CanceledEvent.php deleted file mode 100644 index 6acc2afd..00000000 --- a/messages/tr/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} etkinlik "{contentTitle}" iptal edildi.', - '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/tr/permissions.php b/messages/tr/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/tr/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/tr/recurrence.php b/messages/tr/recurrence.php deleted file mode 100644 index 357f10df..00000000 --- a/messages/tr/recurrence.php +++ /dev/null @@ -1,33 +0,0 @@ - '', - 'Day' => 'Gün', - 'Days' => 'Günler', - 'Delete all events' => 'Tüm etkinlikleri sil', - 'Edit all events' => 'Tüm etkinlikleri düzenle', - 'Edit this and following events' => '', - 'Edit this event' => 'Etkinliği düzenle', - 'End' => 'Son', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => 'Ay', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => 'Aylar', - 'Never' => 'Asla', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => 'Hafta', - 'Weeks' => 'Haftalar', - 'Year' => 'Yıl', - 'Years' => 'Yıllar', - 'first' => 'İlk', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -); diff --git a/messages/tr/reminder.php b/messages/tr/reminder.php deleted file mode 100644 index 6005c8aa..00000000 --- a/messages/tr/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - 'Özel hatırlatıcı', - 'Day' => 'Gün', - 'Default reminder settings' => 'Varsayılan hatırlatıcı ayarları', - 'Hour' => 'Saat', - 'Use default reminder' => 'Varsayılan hatıralatcıyı kullan', - 'Week' => 'Hafta', - '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.' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/tr/settings.php b/messages/tr/settings.php deleted file mode 100644 index 510e61ce..00000000 --- a/messages/tr/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Temel', - 'Full calendar' => '', - 'Participation' => 'Katılım', - 'Reminder' => 'Hatırlatıcı', -); diff --git a/messages/tr/views.php b/messages/tr/views.php new file mode 100644 index 00000000..3451621d --- /dev/null +++ b/messages/tr/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '%displayName% yeni bir %contentTitle% içerik oluşturdu.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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 ' => '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', + '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' => '', +]; diff --git a/messages/tr/views_activities_EntryCreated.php b/messages/tr/views_activities_EntryCreated.php deleted file mode 100644 index 1c209f32..00000000 --- a/messages/tr/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% yeni bir %contentTitle% içerik oluşturdu.', -); diff --git a/messages/tr/views_activities_EntryResponse.php b/messages/tr/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/tr/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/tr/views_container-config_typesConfig.php b/messages/tr/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/tr/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/tr/views_entry_edit.php b/messages/tr/views_entry_edit.php deleted file mode 100644 index 2380c301..00000000 --- a/messages/tr/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Katılan', - 'Back' => 'Geri', - 'Close' => 'Kapat', - 'Declined' => '', - 'Everybody can participate' => 'Herkes katılabilir', - 'General' => 'Genel', - 'Invited' => '', - 'Next' => 'Devam', - 'No participants' => 'Katılımsız', - 'Only by Invite' => '', - 'Participants' => 'Katılımcılar', - 'Recurrence' => '', - 'Reminder' => 'Hatırlatıcı', - 'Select event type...' => '', - 'Settings' => 'Ayarlar', - 'Title' => 'Başlık', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/tr/views_entry_view.php b/messages/tr/views_entry_view.php deleted file mode 100644 index 9cfdcd68..00000000 --- a/messages/tr/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - 'Ek bilgi', - 'All' => 'Hepsi', - 'Attend' => 'Katılıyorum', - 'Decline' => 'Katılmıyorum', - 'Filter' => 'Filtre', - 'Maybe' => 'Belki', - 'Participants' => 'Katılımcılar', - 'You are invited, please select your role:' => '', -); diff --git a/messages/tr/views_global_index.php b/messages/tr/views_global_index.php deleted file mode 100644 index cb253bbb..00000000 --- a/messages/tr/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Mekan', - 'Followed users' => 'Kullanıcı', - 'I\'m attending' => 'Katılıyorum', - 'My events' => 'Etkinliklerim', - 'My profile' => 'Profilim', - 'My spaces' => 'Mekanım', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/tr/widgets_GlobalConfigMenu.php b/messages/tr/widgets_GlobalConfigMenu.php deleted file mode 100644 index 8fb9bd26..00000000 --- a/messages/tr/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => 'Varsayılan', - 'Event Types' => 'Etkinlik Türleri', - 'Menu' => 'Menü', - 'Snippet' => '', -); diff --git a/messages/tr/widgets_views_nextEvents.php b/messages/tr/widgets_views_nextEvents.php deleted file mode 100644 index b3456ccd..00000000 --- a/messages/tr/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Yakındaki etkinlikler', - 'Open Calendar' => 'Takvimi Aç', -); diff --git a/messages/tr/widgets_views_participants.php b/messages/tr/widgets_views_participants.php deleted file mode 100644 index 03b90d3a..00000000 --- a/messages/tr/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Katılımcılar', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/uk/activities.php b/messages/uk/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/uk/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/uk/base.php b/messages/uk/base.php index 293b943d..d5e10678 100644 --- a/messages/uk/base.php +++ b/messages/uk/base.php @@ -1,95 +1,145 @@ 'День народження', - 'Description' => 'Опис', - 'Edit' => 'Редагувати', - 'Email' => 'Електронна пошта', - 'Enable' => 'Активувати', - 'ID' => 'ID', - 'Location' => 'Розташування', - 'Next' => 'Далі', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Calendar' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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 frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => '', + 'Invited: {users}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/uk/calendar.php b/messages/uk/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/uk/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/uk/config.php b/messages/uk/config.php index d8e30105..74c0762b 100644 --- a/messages/uk/config.php +++ b/messages/uk/config.php @@ -1,38 +1,41 @@ 'Видалити', - 'Name' => 'Назва', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => 'Видалити', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => 'Назва', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/uk/mail.php b/messages/uk/mail.php deleted file mode 100644 index 94315810..00000000 --- a/messages/uk/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Опис', - 'Location' => 'Розташування', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/uk/notification.php b/messages/uk/notification.php new file mode 100644 index 00000000..d469e6d5 --- /dev/null +++ b/messages/uk/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Опис', + 'Location' => 'Розташування', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/uk/notifications_CalendarNotificationCategory.php b/messages/uk/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 79acb3f4..00000000 --- a/messages/uk/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/uk/notifications_views_CanceledEvent.php b/messages/uk/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/uk/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/uk/permissions.php b/messages/uk/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/uk/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/uk/recurrence.php b/messages/uk/recurrence.php deleted file mode 100644 index 5fe83811..00000000 --- a/messages/uk/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/uk/reminder.php b/messages/uk/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/uk/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/uk/settings.php b/messages/uk/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/uk/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/uk/views.php b/messages/uk/views.php new file mode 100644 index 00000000..e2f542c3 --- /dev/null +++ b/messages/uk/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => '', +]; diff --git a/messages/uk/views_activities_EntryCreated.php b/messages/uk/views_activities_EntryCreated.php deleted file mode 100644 index c7c665d4..00000000 --- a/messages/uk/views_activities_EntryCreated.php +++ /dev/null @@ -1,21 +0,0 @@ - '', -); diff --git a/messages/uk/views_activities_EntryResponse.php b/messages/uk/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/uk/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/uk/views_container-config_typesConfig.php b/messages/uk/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/uk/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/uk/views_entry_edit.php b/messages/uk/views_entry_edit.php deleted file mode 100644 index 46bd06fd..00000000 --- a/messages/uk/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => 'Назад', - 'Close' => 'Закрити', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => 'Загальне', - 'Invited' => '', - 'Next' => 'Далі', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Налаштування', - 'Title' => 'Заголовок', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/uk/views_entry_view.php b/messages/uk/views_entry_view.php deleted file mode 100644 index dd5fd2d7..00000000 --- a/messages/uk/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Всі', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -); diff --git a/messages/uk/views_global_index.php b/messages/uk/views_global_index.php deleted file mode 100644 index 195fb9da..00000000 --- a/messages/uk/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Мій профіль', - 'My spaces' => 'Мої спільноти', - 'Filter events' => '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'Select calendars' => '', -]; diff --git a/messages/uk/widgets_GlobalConfigMenu.php b/messages/uk/widgets_GlobalConfigMenu.php deleted file mode 100644 index 0c71ad9e..00000000 --- a/messages/uk/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => 'Меню', - 'Snippet' => '', -); diff --git a/messages/uk/widgets_views_nextEvents.php b/messages/uk/widgets_views_nextEvents.php deleted file mode 100644 index 870ac23b..00000000 --- a/messages/uk/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/uk/widgets_views_participants.php b/messages/uk/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/uk/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/uz/activities.php b/messages/uz/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/uz/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/uz/base.php b/messages/uz/base.php index 4c23bc30..d16ed0e5 100644 --- a/messages/uz/base.php +++ b/messages/uz/base.php @@ -1,95 +1,145 @@ 'Sarlavha', - 'disabled' => 'nogiron', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - '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!' => '', - 'Deleted' => '', - 'Description' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit' => '', - 'Edit Event' => '', - 'Email' => '', - 'Enable' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invite' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'Next' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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' => 'Sarlavha', + 'Today' => '', + 'Tuesday' => '', + 'Upcoming {type}' => '', + 'Upcoming {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' => '', + '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' => 'nogiron', + 'first' => '', + 'forth' => '', + 'global' => '', + '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}".' => '', ]; diff --git a/messages/uz/calendar.php b/messages/uz/calendar.php deleted file mode 100644 index 2d33c528..00000000 --- a/messages/uz/calendar.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'List' => '', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -]; diff --git a/messages/uz/config.php b/messages/uz/config.php index b40a8327..454bbe1a 100644 --- a/messages/uz/config.php +++ b/messages/uz/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Delete' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'Name' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/uz/mail.php b/messages/uz/mail.php deleted file mode 100644 index 47822659..00000000 --- a/messages/uz/mail.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -]; diff --git a/messages/uz/notification.php b/messages/uz/notification.php new file mode 100644 index 00000000..40b14d1b --- /dev/null +++ b/messages/uz/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/uz/notifications_CalendarNotificationCategory.php b/messages/uz/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 79acb3f4..00000000 --- a/messages/uz/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/uz/notifications_views_CanceledEvent.php b/messages/uz/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/uz/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/uz/permissions.php b/messages/uz/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/uz/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/uz/recurrence.php b/messages/uz/recurrence.php deleted file mode 100644 index 5fe83811..00000000 --- a/messages/uz/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'Never' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/uz/reminder.php b/messages/uz/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/uz/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/uz/settings.php b/messages/uz/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/uz/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/uz/views.php b/messages/uz/views.php new file mode 100644 index 00000000..3916bf15 --- /dev/null +++ b/messages/uz/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => 'Sozlamalar', + 'Snippet' => '', + 'Title' => 'Sarlavha', + 'Undecided' => '', + 'You are invited, please select your role:' => '', + '{count} Participants' => '', +]; diff --git a/messages/uz/views_activities_EntryCreated.php b/messages/uz/views_activities_EntryCreated.php deleted file mode 100644 index c7c665d4..00000000 --- a/messages/uz/views_activities_EntryCreated.php +++ /dev/null @@ -1,21 +0,0 @@ - '', -); diff --git a/messages/uz/views_activities_EntryResponse.php b/messages/uz/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/uz/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/uz/views_container-config_typesConfig.php b/messages/uz/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/uz/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/uz/views_entry_edit.php b/messages/uz/views_entry_edit.php deleted file mode 100644 index c849b90a..00000000 --- a/messages/uz/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '', - 'Close' => '', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '', - 'Invited' => '', - 'Next' => '', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => 'Sozlamalar', - 'Title' => 'Sarlavha', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/uz/views_entry_view.php b/messages/uz/views_entry_view.php deleted file mode 100644 index 3701c09e..00000000 --- a/messages/uz/views_entry_view.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'All' => '', - 'Attend' => '', - 'Decline' => '', - 'Filter' => '', - 'Maybe' => '', - 'Participants' => '', - 'You are invited, please select your role:' => '', -]; diff --git a/messages/uz/views_global_index.php b/messages/uz/views_global_index.php deleted file mode 100644 index 42d34833..00000000 --- a/messages/uz/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'My profile' => '', - 'My spaces' => '', - 'Select calendars' => '', -]; diff --git a/messages/uz/widgets_GlobalConfigMenu.php b/messages/uz/widgets_GlobalConfigMenu.php deleted file mode 100644 index 5f306be5..00000000 --- a/messages/uz/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '', - 'Snippet' => '', -]; diff --git a/messages/uz/widgets_views_nextEvents.php b/messages/uz/widgets_views_nextEvents.php deleted file mode 100644 index 870ac23b..00000000 --- a/messages/uz/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/uz/widgets_views_participants.php b/messages/uz/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/uz/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/vi/activities.php b/messages/vi/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/vi/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/vi/base.php b/messages/vi/base.php index f314990c..861e9970 100644 --- a/messages/vi/base.php +++ b/messages/vi/base.php @@ -1,5 +1,5 @@ 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ở', @@ -9,24 +9,37 @@ '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ó', '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', 'Calendar' => 'Lịch', '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ả', '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!', @@ -40,21 +53,40 @@ 'Files' => 'Files', '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.' => 'ở đây bạn có thể thiết lập các cấu hình nhắc nhở tự động cho sự kiện này. Người dùng có thể ghi đè các cấu hình này bằng liên kết Thiết lập nhắc nhở', + 'Hour' => 'Giờ', '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', 'Invited: {users}' => '', + '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' => '', @@ -64,6 +96,7 @@ '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', 'Set reminder' => 'Thiết lập nhắc nhở', 'Start Date' => 'Ngày bắt đầu', @@ -72,23 +105,41 @@ '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', 'User birthdays' => '', 'Wednesday' => 'Thứ tư', + 'Week' => 'Tuần', + 'Weeks' => 'Các tuần', + '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' => '', + '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}".' => '', -); +]; diff --git a/messages/vi/calendar.php b/messages/vi/calendar.php deleted file mode 100644 index 1df955d3..00000000 --- a/messages/vi/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Ngày', - 'List' => 'Danh sách', - 'Month' => 'Tháng', - 'Today' => 'Hôm nay', - 'Week' => 'Tuần', - 'Year' => 'Năm', -); diff --git a/messages/vi/config.php b/messages/vi/config.php index 09c52459..78d2c833 100644 --- a/messages/vi/config.php +++ b/messages/vi/config.php @@ -1,38 +1,41 @@ Calendar module configuration' => 'Cấu hình module Lịch', - 'Confirm Deletion' => 'Xác nhận Xóa', - 'Adds an snippet with upcoming events to your users dashboard.' => 'Thêm block thông tin gồm các sự kiện sắp diễn ra trên trang chính của bạn', - 'Calendar Configuration' => 'Cấu hình lịch', - 'Create new type' => 'Tạo trang mới', - 'Default participation settings' => 'Cấu hình tham gia mặc định', - 'Delete' => 'Xóa', - 'Do you really want to delte this event type?' => 'Bạn có thực sự muốn xóa loại sự kiện này?', - 'Event Type Configuration' => 'Cấu hình loại sự kiện', - 'Half a year' => 'Nửa năm', - 'Here you can configure default settings for new calendar events.' => 'Ở đây bạn có thể thiết lập cấu hình mặc định cho các lịch sự kiện mới.', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Ở đây bạn có thể thiết lập cấu hình mặc định cho các lịch sự kiện mới. Những thiết lập này có thể bị ghi đè ở mức diễn đàn và mức trang cá nhân.', - 'Here you can manage and disable different calendars.' => 'Ở đây bạn có thể quản lý và hủy các lịch khác nhau', - 'Here you can manage your event types.' => 'Ở đây bạn có thể quản lý loại sự kiện của bạn.', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Nếu được kích hoạt, các menu chính của lịch và "block lịch" trên trang chính chỉ hiển thị tới những thành viên cài đặt module lịch trên trang cá nhân của họ.', - 'Interval of upcoming events' => 'Tần suất của những sự kiện sắp tới', - 'Max event items' => 'Số mục sự kiện tối đa', - 'Name' => 'Tên', - 'One month' => 'Một tháng', - 'One week' => 'Một tuần', - 'One year' => 'Một năm', - 'Only show top menu item and snippet if the module is installed in the users profile' => 'Chỉ hiện thị các menu chính và "block lịch" nếu module được cài đặt ở trang cá nhân.', - 'Reset' => 'Đặt lại', - 'Show snippet' => 'Hiển thị "block lịch"', - 'There are currently no event types available.' => 'Hiện không có sự kiện nào', - 'Upcoming events snippet' => 'Block thông tin các sự kiện sắp tới', - 'Add \'Calendar\' to the main menu' => '', - 'Calendar default view mode settings' => '', - 'Default basic settings' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Menu settings' => '', - 'View mode' => '', + 'Calendar module configuration' => 'Cấu hình module Lịch', + 'Confirm Deletion' => 'Xác nhận Xóa', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => 'Thêm block thông tin gồm các sự kiện sắp diễn ra trên trang chính của bạn', + 'Basic' => 'Cơ bản', + 'Calendar Configuration' => 'Cấu hình lịch', + 'Calendar default view mode settings' => '', + 'Create new type' => 'Tạo trang mới', + 'Default basic settings' => '', + 'Default participation settings' => 'Cấu hình tham gia mặc định', + 'Delete' => 'Xóa', + 'Do you really want to delte this event type?' => 'Bạn có thực sự muốn xóa loại sự kiện này?', + 'Event Type Configuration' => 'Cấu hình loại sự kiện', + 'Full calendar' => '', + 'Half a year' => 'Nửa năm', + 'Here you can configure default settings for new calendar events.' => 'Ở đây bạn có thể thiết lập cấu hình mặc định cho các lịch sự kiện mới.', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => 'Ở đây bạn có thể thiết lập cấu hình mặc định cho các lịch sự kiện mới. Những thiết lập này có thể bị ghi đè ở mức diễn đàn và mức trang cá nhân.', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => 'Ở đây bạn có thể quản lý và hủy các lịch khác nhau', + 'Here you can manage your event types.' => 'Ở đây bạn có thể quản lý loại sự kiện của bạn.', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => 'Nếu được kích hoạt, các menu chính của lịch và "block lịch" trên trang chính chỉ hiển thị tới những thành viên cài đặt module lịch trên trang cá nhân của họ.', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => 'Tần suất của những sự kiện sắp tới', + 'Max event items' => 'Số mục sự kiện tối đa', + 'Menu settings' => '', + 'Name' => 'Tên', + 'One month' => 'Một tháng', + 'One week' => 'Một tuần', + 'One year' => 'Một năm', + 'Only show top menu item and snippet if the module is installed in the users profile' => 'Chỉ hiện thị các menu chính và "block lịch" nếu module được cài đặt ở trang cá nhân.', + 'Participation' => 'Tham gia', + 'Reminder' => 'Nhắc nhở', + 'Reset' => 'Đặt lại', + 'Show snippet' => 'Hiển thị "block lịch"', + 'There are currently no event types available.' => 'Hiện không có sự kiện nào', + 'Upcoming events snippet' => 'Block thông tin các sự kiện sắp tới', + 'View mode' => '', ]; diff --git a/messages/vi/mail.php b/messages/vi/mail.php deleted file mode 100644 index 3803d558..00000000 --- a/messages/vi/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Miêu tả', - 'Location' => 'Địa điểm', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => 'Xem trực tuyến: {url}', -); diff --git a/messages/vi/notification.php b/messages/vi/notification.php new file mode 100644 index 00000000..7b46dfcd --- /dev/null +++ b/messages/vi/notification.php @@ -0,0 +1,25 @@ + 'Lịch', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => 'Miêu tả', + 'Location' => 'Địa điểm', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => 'Nhận các thông báo liên quan tới Lịch.', + 'Starting' => '', + 'View Online: {url}' => 'Xem trực tuyến: {url}', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '{displayName} đã hủy sự kiện "{contentTitle}" trong diễn đàn {spaceName}.', + '{displayName} canceled the event "{contentTitle}".' => '{displayName} đã hủy sự kiện "{contentTitle}".', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} đã mở lại sự kiện "{contentTitle}" trong diễn đàn {spaceName}.', + '{displayName} reopened the event "{contentTitle}".' => '{displayName} đã mở lại sự kiện "{contentTitle}".', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} vừa mới cập nhật "{contentTitle}" trong diễn đàn {spaceName}.', + '{displayName} updated the event "{contentTitle}".' => '{displayName} vừa mới cập nhật sự kiện {contentTitle}.', +]; diff --git a/messages/vi/notifications_CalendarNotificationCategory.php b/messages/vi/notifications_CalendarNotificationCategory.php deleted file mode 100644 index f131cca5..00000000 --- a/messages/vi/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - 'Lịch', - 'Receive Calendar related Notifications.' => 'Nhận các thông báo liên quan tới Lịch.', -); diff --git a/messages/vi/notifications_views_CanceledEvent.php b/messages/vi/notifications_views_CanceledEvent.php deleted file mode 100644 index 7491c4ec..00000000 --- a/messages/vi/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '{displayName} đã hủy sự kiện "{contentTitle}" trong diễn đàn {spaceName}.', - '{displayName} canceled the event "{contentTitle}".' => '{displayName} đã hủy sự kiện "{contentTitle}".', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '{displayName} vừa mới cập nhật "{contentTitle}" trong diễn đàn {spaceName}.', - '{displayName} updated the event "{contentTitle}".' => '{displayName} vừa mới cập nhật sự kiện {contentTitle}.', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '{displayName} đã mở lại sự kiện "{contentTitle}" trong diễn đàn {spaceName}.', - '{displayName} reopened the event "{contentTitle}".' => '{displayName} đã mở lại sự kiện "{contentTitle}".', -]; diff --git a/messages/vi/permissions.php b/messages/vi/permissions.php deleted file mode 100644 index c99ffc90..00000000 --- a/messages/vi/permissions.php +++ /dev/null @@ -1,7 +0,0 @@ - '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ó', - 'Create entry' => 'Tạo lịch mới', - 'Manage entries' => 'Quản lý lịch', -); diff --git a/messages/vi/recurrence.php b/messages/vi/recurrence.php deleted file mode 100644 index a0f5f4d6..00000000 --- a/messages/vi/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - 'Sau (sự xảy ra)', - 'Day' => 'Ngày', - 'Days' => 'Những ngày', - 'Delete all events' => 'Xóa mọi sự kiện', - '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', - 'End' => 'Kết thúc', - 'Invalid day of month given' => 'Ngày của tháng không hợp lệ', - '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ệ', - '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ờ', - 'On date' => 'Vào ngày', - 'Repeat every' => 'Lặp lại mỗi', - 'This event does not support recurrent events' => 'Sự kiện này không hỗ trợ lặp lại', - 'Week' => 'Tuần', - 'Weeks' => 'Các tuần', - 'Year' => 'Năm', - 'Years' => 'Các năm', - 'first' => 'Nhứ nhất', - 'forth' => 'Thứ tư', - 'on weekdays' => 'vào các ngày trong tuần', - 'second' => 'Thứ hai', - 'third' => 'Thứ ba', - 'last' => '', -]; diff --git a/messages/vi/reminder.php b/messages/vi/reminder.php deleted file mode 100644 index b0bacb2a..00000000 --- a/messages/vi/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - 'Tùy chỉnh nhắc nhở', - 'Day' => 'Ngày', - 'Default reminder settings' => 'Thiết lập nhắc nhở mặc định', - '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.' => 'ở đây bạn có thể thiết lập các cấu hình nhắc nhở tự động cho sự kiện này. Người dùng có thể ghi đè các cấu hình này bằng liên kết Thiết lập nhắc nhở', - 'Hour' => 'Giờ', - 'No reminder' => 'Không nhắc', - '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', - 'Week' => 'Tuần', - '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}\'', - 'Minute' => '', -]; diff --git a/messages/vi/settings.php b/messages/vi/settings.php deleted file mode 100644 index 39905c20..00000000 --- a/messages/vi/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - 'Cơ bản', - 'Full calendar' => '', - 'Participation' => 'Tham gia', - 'Reminder' => 'Nhắc nhở', -); diff --git a/messages/vi/views.php b/messages/vi/views.php new file mode 100644 index 00000000..cc5f32a2 --- /dev/null +++ b/messages/vi/views.php @@ -0,0 +1,59 @@ + '%displayName% không thể tham dự %contentTitle%.', + '%displayName% created a new %contentTitle%.' => '%displayName% đã tạo mới %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '%displayName% sẽ tham dự %contentTitle%.', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %contentTitle%.' => '%displayName% có thể tham dự %contentTitle%.', + ':count Attending' => '', + ':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', + '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' => '', +]; diff --git a/messages/vi/views_activities_EntryCreated.php b/messages/vi/views_activities_EntryCreated.php deleted file mode 100644 index 1ad53cd5..00000000 --- a/messages/vi/views_activities_EntryCreated.php +++ /dev/null @@ -1,4 +0,0 @@ - '%displayName% đã tạo mới %contentTitle%.', -); diff --git a/messages/vi/views_activities_EntryResponse.php b/messages/vi/views_activities_EntryResponse.php deleted file mode 100644 index 8d6e4e8c..00000000 --- a/messages/vi/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '%displayName% không thể tham dự %contentTitle%.', - '%displayName% is attending %contentTitle%.' => '%displayName% sẽ tham dự %contentTitle%.', - '%displayName% might be attending %contentTitle%.' => '%displayName% có thể tham dự %contentTitle%.', - '%displayName% is invited to %contentTitle%.' => '', -]; diff --git a/messages/vi/views_container-config_typesConfig.php b/messages/vi/views_container-config_typesConfig.php deleted file mode 100644 index 1942d60a..00000000 --- a/messages/vi/views_container-config_typesConfig.php +++ /dev/null @@ -1,6 +0,0 @@ -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', -); diff --git a/messages/vi/views_entry_edit.php b/messages/vi/views_entry_edit.php deleted file mode 100644 index 91677226..00000000 --- a/messages/vi/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => 'Sửa sự kiện lặp lại', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => 'Sẽ tham gia', - 'Back' => 'Trở lại', - 'Close' => 'Đóng', - 'Declined' => '', - 'Everybody can participate' => 'Ai cũng có thể tham gia', - 'General' => 'Chung', - 'Invited' => 'Đã mời', - 'Next' => 'Tiếp theo', - 'No participants' => 'Không có người tham gia', - 'Only by Invite' => '', - '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', - 'Title' => 'Tiêu đề', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/vi/views_entry_view.php b/messages/vi/views_entry_view.php deleted file mode 100644 index 8efc0f07..00000000 --- a/messages/vi/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => 'Tất cả', - 'Attend' => 'Tham dự', - 'Decline' => 'Từ chối', - 'Filter' => 'Lọc', - 'Maybe' => 'Có thể', - 'Participants' => 'Người tham gia', - 'You are invited, please select your role:' => '', -); diff --git a/messages/vi/views_global_index.php b/messages/vi/views_global_index.php deleted file mode 100644 index ccc1c439..00000000 --- a/messages/vi/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - 'Các phòng đã theo dõi', - 'Followed users' => 'Các user đã theo dõi', - 'I\'m attending' => 'Tôi đang tham gia', - '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', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/vi/widgets_GlobalConfigMenu.php b/messages/vi/widgets_GlobalConfigMenu.php deleted file mode 100644 index 836821e6..00000000 --- a/messages/vi/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - 'Lịch', - 'Defaults' => 'Mặc định', - 'Event Types' => 'Loại sự kiện', - 'Menu' => 'Danh mục', - 'Snippet' => 'Khối thông tin', -); diff --git a/messages/vi/widgets_views_nextEvents.php b/messages/vi/widgets_views_nextEvents.php deleted file mode 100644 index b2cb0345..00000000 --- a/messages/vi/widgets_views_nextEvents.php +++ /dev/null @@ -1,5 +0,0 @@ -Upcoming events ' => 'Các sự kiện sắp diễn ra', - 'Open Calendar' => 'Mở lịch', -); diff --git a/messages/vi/widgets_views_participants.php b/messages/vi/widgets_views_participants.php deleted file mode 100644 index 3c5e7132..00000000 --- a/messages/vi/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - 'Thành viên tham gia', - ':count Attending' => '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', -]; diff --git a/messages/zh-CN/activities.php b/messages/zh-CN/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/zh-CN/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/zh-CN/base.php b/messages/zh-CN/base.php index 7f1251dd..f3b41ab3 100644 --- a/messages/zh-CN/base.php +++ b/messages/zh-CN/base.php @@ -1,95 +1,145 @@ '在主菜单和个人属性页为你的私有或公共事件增加一个日历。', - 'Adds an event calendar to this space.' => '为这个版块增加一个事件日历。', - 'All Day' => '全天', - 'Birthday' => '生日', - 'Calendar' => '日历', - 'Description' => '描述', - 'Edit' => '编辑', - 'Email' => '邮箱', - 'Enable' => '生效', - 'End Date' => '结束日期', - 'End time must be after start time!' => '结束时间必须晚于开始时间!', - 'Event' => '事件', - 'Event not found!' => '没找到事件', - 'Files' => '附件设置', - 'ID' => 'ID', - 'Invite' => '邀请', - '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' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - 'End Time' => '', - 'Event Type' => '', - 'Event Types' => '', - 'Event could not be deleted!' => '', - 'Event has been be deleted!' => '', - 'Export as {type}' => '', - 'Filter by types' => '', - 'Friday' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invited: {users}' => '', - 'Location' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - 'No new participants were added.' => '', - 'No new participants were invited.' => '', - 'Notify participants about changes' => '', - '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' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Time Zone' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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 frequency given' => '', + 'Invalid interval given' => '', + 'Invalid week day selection' => '', + 'Invite' => '邀请', + 'Invited: {users}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/zh-CN/calendar.php b/messages/zh-CN/calendar.php deleted file mode 100644 index a7df75b8..00000000 --- a/messages/zh-CN/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => '列表', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/zh-CN/config.php b/messages/zh-CN/config.php index 2406c9b6..1e23abdf 100644 --- a/messages/zh-CN/config.php +++ b/messages/zh-CN/config.php @@ -1,38 +1,41 @@ '删除', - 'Name' => '名字', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '基础', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '删除', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '名字', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/zh-CN/mail.php b/messages/zh-CN/mail.php deleted file mode 100644 index 539e3dca..00000000 --- a/messages/zh-CN/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - '描述', - 'Location' => '', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/zh-CN/notification.php b/messages/zh-CN/notification.php new file mode 100644 index 00000000..7abc79ac --- /dev/null +++ b/messages/zh-CN/notification.php @@ -0,0 +1,25 @@ + '日历', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '描述', + 'Location' => '', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/zh-CN/notifications_CalendarNotificationCategory.php b/messages/zh-CN/notifications_CalendarNotificationCategory.php deleted file mode 100644 index f2d062ec..00000000 --- a/messages/zh-CN/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,5 +0,0 @@ - '日历', - 'Receive Calendar related Notifications.' => '', -); diff --git a/messages/zh-CN/notifications_views_CanceledEvent.php b/messages/zh-CN/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/zh-CN/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/zh-CN/permissions.php b/messages/zh-CN/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/zh-CN/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/zh-CN/recurrence.php b/messages/zh-CN/recurrence.php deleted file mode 100644 index 98323fe4..00000000 --- a/messages/zh-CN/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '编辑事件', - 'Never' => '从不', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/zh-CN/reminder.php b/messages/zh-CN/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/zh-CN/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/zh-CN/settings.php b/messages/zh-CN/settings.php deleted file mode 100644 index b72c7a1a..00000000 --- a/messages/zh-CN/settings.php +++ /dev/null @@ -1,7 +0,0 @@ - '基础', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -); diff --git a/messages/zh-CN/views.php b/messages/zh-CN/views.php new file mode 100644 index 00000000..5b36eabf --- /dev/null +++ b/messages/zh-CN/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '%displayName% 创建了一个新事件 %contentTitle%.', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '所有人能参加', + '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' => '', +]; diff --git a/messages/zh-CN/views_activities_EntryCreated.php b/messages/zh-CN/views_activities_EntryCreated.php deleted file mode 100644 index d166ff93..00000000 --- a/messages/zh-CN/views_activities_EntryCreated.php +++ /dev/null @@ -1,22 +0,0 @@ - '%displayName% 创建了一个新事件 %contentTitle%.', -); diff --git a/messages/zh-CN/views_activities_EntryResponse.php b/messages/zh-CN/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/zh-CN/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/zh-CN/views_container-config_typesConfig.php b/messages/zh-CN/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/zh-CN/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/zh-CN/views_entry_edit.php b/messages/zh-CN/views_entry_edit.php deleted file mode 100644 index 3182bd84..00000000 --- a/messages/zh-CN/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '返回', - 'Close' => '关闭', - 'Declined' => '', - 'Everybody can participate' => '所有人能参加', - 'General' => '一般', - 'Invited' => '', - 'Next' => '下一步', - 'No participants' => '没有参与者', - 'Only by Invite' => '', - 'Participants' => '', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => '设置', - 'Title' => '标题', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/zh-CN/views_entry_view.php b/messages/zh-CN/views_entry_view.php deleted file mode 100644 index ab1399af..00000000 --- a/messages/zh-CN/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => '所有', - 'Attend' => '参加', - 'Decline' => '拒绝', - 'Filter' => '筛选', - 'Maybe' => '可能', - 'Participants' => '', - 'You are invited, please select your role:' => '', -); diff --git a/messages/zh-CN/views_global_index.php b/messages/zh-CN/views_global_index.php deleted file mode 100644 index 702cdb8c..00000000 --- a/messages/zh-CN/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '关注的版块', - 'Followed users' => '关注的用户', - 'I\'m attending' => '我参加', - 'My events' => '我的事件', - 'My profile' => '我的属性', - 'My spaces' => '我的版块', - 'Filter events' => '', - 'Select calendars' => '', -]; diff --git a/messages/zh-CN/widgets_GlobalConfigMenu.php b/messages/zh-CN/widgets_GlobalConfigMenu.php deleted file mode 100644 index 9a65cc52..00000000 --- a/messages/zh-CN/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '默认', - 'Event Types' => '', - 'Menu' => '菜单', - 'Snippet' => '', -); diff --git a/messages/zh-CN/widgets_views_nextEvents.php b/messages/zh-CN/widgets_views_nextEvents.php deleted file mode 100644 index 36000f2f..00000000 --- a/messages/zh-CN/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Upcoming events ' => '即将到来的 事件', -]; diff --git a/messages/zh-CN/widgets_views_participants.php b/messages/zh-CN/widgets_views_participants.php deleted file mode 100644 index 7dec48be..00000000 --- a/messages/zh-CN/widgets_views_participants.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '', -]; diff --git a/messages/zh-TW/activities.php b/messages/zh-TW/activities.php deleted file mode 100644 index 1057a53c..00000000 --- a/messages/zh-TW/activities.php +++ /dev/null @@ -1,12 +0,0 @@ - '', - 'Calendar: attend' => '', - 'Calendar: decline' => '', - 'Calendar: maybe' => '', - 'Whenever someone declines to participate in an event.' => '', - 'Whenever someone invites to participate in an event.' => '', - 'Whenever someone may be participating in an event.' => '', - 'Whenever someone participates in an event.' => '', -]; diff --git a/messages/zh-TW/base.php b/messages/zh-TW/base.php index f0cc55dd..75ad1504 100644 --- a/messages/zh-TW/base.php +++ b/messages/zh-TW/base.php @@ -1,95 +1,145 @@ '生日', - 'Description' => '描述', - 'Edit' => '編輯', - 'Email' => 'E-mail', - 'Enable' => '開啟', - 'Invite' => '邀請', - 'Location' => '地點', - '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.' => '', - 'All Day' => '', - 'Allow option \'Decline\'' => '', - 'Allow option \'Undecided\'' => '', - 'Attending' => '', - 'Before a target calendar can be selected, the module must be activated in at least one Space.' => '', - 'Calendar' => '', - 'Cancel Event' => '', - 'Cannot remove the participant!' => '', - 'Deleted' => '', - 'Do you want to install this module on your profile?' => '', - 'Download ICS' => '', - 'Edit Event' => '', - 'Enable Reminder' => '', - '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 by types' => '', - 'Friday' => '', - 'ID' => '', - 'In order to add events to your profile, you have to enable the calendar module first.' => '', - 'Interested' => '', - 'Invalid date or time format!' => '', - 'Invalid event type id selected.' => '', - 'Invited: {users}' => '', - 'Maximum number of participants' => '', - 'Mode' => '', - 'Monday' => '', - '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.' => '', - 'Profile Calendar' => '', - 'Recurring' => '', - 'Reopen Event' => '', - 'Saturday' => '', - 'Set reminder' => '', - 'Start Date' => '', - 'Start Time' => '', - 'Status cannot be updated.' => '', - 'Status updated.' => '', - 'Sunday' => '', - 'The event has already ended.' => '', - 'Thursday' => '', - 'Tuesday' => '', - 'User birthdays' => '', - 'Wednesday' => '', - 'You cannot invite participants!' => '', - 'You don\'t have permission to delete this event!' => '', - '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}".' => '', - 'canceled' => '', - 'global' => '', - '{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}".' => '', + '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' => '', + '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' => '', + '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 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' => '', + '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}' => '', + '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' => '', + '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}' => '', + 'Upcoming {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' => '', + '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' => '', + '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}".' => '', ]; diff --git a/messages/zh-TW/calendar.php b/messages/zh-TW/calendar.php deleted file mode 100644 index ec20704e..00000000 --- a/messages/zh-TW/calendar.php +++ /dev/null @@ -1,9 +0,0 @@ - '', - 'List' => '清單', - 'Month' => '', - 'Today' => '', - 'Week' => '', - 'Year' => '', -); diff --git a/messages/zh-TW/config.php b/messages/zh-TW/config.php index b418ca61..8a8d461b 100644 --- a/messages/zh-TW/config.php +++ b/messages/zh-TW/config.php @@ -1,38 +1,41 @@ '刪除帳戶', - 'Name' => '名稱', - 'Calendar module configuration' => '', - 'Confirm Deletion' => '', - 'Add \'Calendar\' to the main menu' => '', - 'Adds an snippet with upcoming events to your users dashboard.' => '', - 'Calendar Configuration' => '', - 'Calendar default view mode settings' => '', - 'Create new type' => '', - 'Default basic settings' => '', - 'Default participation settings' => '', - 'Do you really want to delte this event type?' => '', - 'Event Type Configuration' => '', - 'Half a year' => '', - 'Here you can configure default settings for new calendar events.' => '', - 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', - 'Here you can configure default settings for the full calendar.' => '', - 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', - 'Here you can manage and disable different calendars.' => '', - 'Here you can manage your event types.' => '', - 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', - 'Include birthdays to dashboard snippet' => '', - 'Interval of upcoming events' => '', - 'Max event items' => '', - 'Menu settings' => '', - 'One month' => '', - 'One week' => '', - 'One year' => '', - 'Only show top menu item and snippet if the module is installed in the users profile' => '', - 'Reset' => '', - 'Show snippet' => '', - 'There are currently no event types available.' => '', - 'Upcoming events snippet' => '', - 'View mode' => '', + 'Calendar module configuration' => '', + 'Confirm Deletion' => '', + 'Add \'Calendar\' to the main menu' => '', + 'Adds an snippet with upcoming events to your users dashboard.' => '', + 'Basic' => '', + 'Calendar Configuration' => '', + 'Calendar default view mode settings' => '', + 'Create new type' => '', + 'Default basic settings' => '', + 'Default participation settings' => '', + 'Delete' => '刪除帳戶', + 'Do you really want to delte this event type?' => '', + 'Event Type Configuration' => '', + 'Full calendar' => '', + 'Half a year' => '', + 'Here you can configure default settings for new calendar events.' => '', + 'Here you can configure default settings for new calendar events. These settings can be overwritten on space/profile level.' => '', + 'Here you can configure default settings for the full calendar.' => '', + 'Here you can configure default settings for the full calendar. These settings can be overwritten on space/profile level.' => '', + 'Here you can manage and disable different calendars.' => '', + 'Here you can manage your event types.' => '', + 'If activated, the calendar top menu item and dashboard snippet is only visible for users having the calendar module installed in their profile.' => '', + 'Include birthdays to dashboard snippet' => '', + 'Interval of upcoming events' => '', + 'Max event items' => '', + 'Menu settings' => '', + 'Name' => '名稱', + 'One month' => '', + 'One week' => '', + 'One year' => '', + 'Only show top menu item and snippet if the module is installed in the users profile' => '', + 'Participation' => '', + 'Reminder' => '', + 'Reset' => '', + 'Show snippet' => '', + 'There are currently no event types available.' => '', + 'Upcoming events snippet' => '', + 'View mode' => '', ]; diff --git a/messages/zh-TW/mail.php b/messages/zh-TW/mail.php deleted file mode 100644 index d0f9f4cc..00000000 --- a/messages/zh-TW/mail.php +++ /dev/null @@ -1,9 +0,0 @@ - '描述', - 'Location' => '地點', - 'Organizer' => '', - 'Participants info' => '', - 'Starting' => '', - 'View Online: {url}' => '', -); diff --git a/messages/zh-TW/notification.php b/messages/zh-TW/notification.php new file mode 100644 index 00000000..13c6c876 --- /dev/null +++ b/messages/zh-TW/notification.php @@ -0,0 +1,25 @@ + '', + 'Calendar: Invite' => '', + 'Calendar: attend' => '', + 'Calendar: decline' => '', + 'Calendar: maybe' => '', + 'Description' => '描述', + 'Location' => '地點', + 'Organizer' => '', + 'Participants info' => '', + 'Receive Calendar related Notifications.' => '', + 'Starting' => '', + 'View Online: {url}' => '', + 'Whenever someone declines to participate in an event.' => '', + 'Whenever someone invites to participate in an event.' => '', + 'Whenever someone may be participating in an event.' => '', + 'Whenever someone participates in an event.' => '', + '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} canceled the event "{contentTitle}".' => '', + '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} reopened the event "{contentTitle}".' => '', + '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', + '{displayName} updated the event "{contentTitle}".' => '', +]; diff --git a/messages/zh-TW/notifications_CalendarNotificationCategory.php b/messages/zh-TW/notifications_CalendarNotificationCategory.php deleted file mode 100644 index 79acb3f4..00000000 --- a/messages/zh-TW/notifications_CalendarNotificationCategory.php +++ /dev/null @@ -1,22 +0,0 @@ - '', - 'Receive Calendar related Notifications.' => '', -]; diff --git a/messages/zh-TW/notifications_views_CanceledEvent.php b/messages/zh-TW/notifications_views_CanceledEvent.php deleted file mode 100644 index 29e3d504..00000000 --- a/messages/zh-TW/notifications_views_CanceledEvent.php +++ /dev/null @@ -1,10 +0,0 @@ - '', - '{displayName} canceled the event "{contentTitle}".' => '', - '{displayName} updated the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} updated the event "{contentTitle}".' => '', - '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.' => '', - '{displayName} reopened the event "{contentTitle}".' => '', -]; diff --git a/messages/zh-TW/permissions.php b/messages/zh-TW/permissions.php deleted file mode 100644 index 30335c28..00000000 --- a/messages/zh-TW/permissions.php +++ /dev/null @@ -1,24 +0,0 @@ - '', - 'Allows the user to edit/delete existing calendar entries' => '', - 'Create entry' => '', - 'Manage entries' => '', -]; diff --git a/messages/zh-TW/recurrence.php b/messages/zh-TW/recurrence.php deleted file mode 100644 index 613b74bf..00000000 --- a/messages/zh-TW/recurrence.php +++ /dev/null @@ -1,34 +0,0 @@ - '從不', - 'After (occurrences)' => '', - 'Day' => '', - 'Days' => '', - 'Delete all events' => '', - 'Edit all events' => '', - 'Edit this and following events' => '', - 'Edit this event' => '', - 'End' => '', - 'Invalid day of month given' => '', - 'Invalid frequency given' => '', - 'Invalid interval given' => '', - 'Invalid week day selection' => '', - 'Month' => '', - 'Monthly on day {dayOfMonth}' => '', - 'Monthly on the {position} {dayOfWeek}' => '', - 'Months' => '', - 'On date' => '', - 'Repeat every' => '', - 'This event does not support recurrent events' => '', - 'Week' => '', - 'Weeks' => '', - 'Year' => '', - 'Years' => '', - 'first' => '', - 'forth' => '', - 'last' => '', - 'on weekdays' => '', - 'second' => '', - 'third' => '', -]; diff --git a/messages/zh-TW/reminder.php b/messages/zh-TW/reminder.php deleted file mode 100644 index 8259b2f0..00000000 --- a/messages/zh-TW/reminder.php +++ /dev/null @@ -1,21 +0,0 @@ - '', - 'Day' => '', - 'Default reminder settings' => '', - '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' => '', - 'Minute' => '', - 'No reminder' => '', - 'Upcoming {type}' => '', - 'Upcoming {type}: {title}' => '', - 'Use default reminder' => '', - 'Week' => '', - 'You have an {type} coming up' => '', - 'You have an {type} coming up: {title}' => '', - 'Your reminder settings for event: \'{title}\'' => '', -]; diff --git a/messages/zh-TW/settings.php b/messages/zh-TW/settings.php deleted file mode 100644 index 68fee1e1..00000000 --- a/messages/zh-TW/settings.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Full calendar' => '', - 'Participation' => '', - 'Reminder' => '', -]; diff --git a/messages/zh-TW/views.php b/messages/zh-TW/views.php new file mode 100644 index 00000000..81e9dbc3 --- /dev/null +++ b/messages/zh-TW/views.php @@ -0,0 +1,59 @@ + '', + '%displayName% created a new %contentTitle%.' => '', + '%displayName% is attending %contentTitle%.' => '', + '%displayName% is invited to %contentTitle%.' => '', + '%displayName% might be attending %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' => '', + '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' => '', +]; diff --git a/messages/zh-TW/views_activities_EntryCreated.php b/messages/zh-TW/views_activities_EntryCreated.php deleted file mode 100644 index c7c665d4..00000000 --- a/messages/zh-TW/views_activities_EntryCreated.php +++ /dev/null @@ -1,21 +0,0 @@ - '', -); diff --git a/messages/zh-TW/views_activities_EntryResponse.php b/messages/zh-TW/views_activities_EntryResponse.php deleted file mode 100644 index 0c7c13b4..00000000 --- a/messages/zh-TW/views_activities_EntryResponse.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - '%displayName% is attending %contentTitle%.' => '', - '%displayName% is invited to %contentTitle%.' => '', - '%displayName% might be attending %contentTitle%.' => '', -]; diff --git a/messages/zh-TW/views_container-config_typesConfig.php b/messages/zh-TW/views_container-config_typesConfig.php deleted file mode 100644 index c7245f15..00000000 --- a/messages/zh-TW/views_container-config_typesConfig.php +++ /dev/null @@ -1,23 +0,0 @@ -Create new event type' => '', - 'Edit calendar' => '', - 'Edit event type' => '', -]; diff --git a/messages/zh-TW/views_entry_edit.php b/messages/zh-TW/views_entry_edit.php deleted file mode 100644 index a645907a..00000000 --- a/messages/zh-TW/views_entry_edit.php +++ /dev/null @@ -1,25 +0,0 @@ -Create Event' => '', - 'Edit Event' => '', - 'Edit recurring event' => '', - 'Are you sure want to remove the participant from the event?' => '', - 'Attending' => '', - 'Back' => '返回', - 'Close' => '關閉', - 'Declined' => '', - 'Everybody can participate' => '', - 'General' => '一般資訊', - 'Invited' => '', - 'Next' => '下一個', - 'No participants' => '', - 'Only by Invite' => '', - 'Participants' => '參與者', - 'Recurrence' => '', - 'Reminder' => '', - 'Select event type...' => '', - 'Settings' => '设置', - 'Title' => '標題', - 'Undecided' => '', - '{count} Participants' => '', -); diff --git a/messages/zh-TW/views_entry_view.php b/messages/zh-TW/views_entry_view.php deleted file mode 100644 index ad99791f..00000000 --- a/messages/zh-TW/views_entry_view.php +++ /dev/null @@ -1,11 +0,0 @@ - '', - 'All' => '所有結果', - 'Attend' => '', - 'Decline' => '拒絕', - 'Filter' => '篩選條件', - 'Maybe' => '', - 'Participants' => '參與者', - 'You are invited, please select your role:' => '', -); diff --git a/messages/zh-TW/views_global_index.php b/messages/zh-TW/views_global_index.php deleted file mode 100644 index 568d90e2..00000000 --- a/messages/zh-TW/views_global_index.php +++ /dev/null @@ -1,12 +0,0 @@ - '我的個人資料', - 'My spaces' => '我的Space', - 'Filter events' => '', - 'Followed spaces' => '', - 'Followed users' => '', - 'I\'m attending' => '', - 'My events' => '', - 'Select calendars' => '', -]; diff --git a/messages/zh-TW/widgets_GlobalConfigMenu.php b/messages/zh-TW/widgets_GlobalConfigMenu.php deleted file mode 100644 index 0b79987d..00000000 --- a/messages/zh-TW/widgets_GlobalConfigMenu.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - 'Defaults' => '', - 'Event Types' => '', - 'Menu' => '選單', - 'Snippet' => '', -); diff --git a/messages/zh-TW/widgets_views_nextEvents.php b/messages/zh-TW/widgets_views_nextEvents.php deleted file mode 100644 index 870ac23b..00000000 --- a/messages/zh-TW/widgets_views_nextEvents.php +++ /dev/null @@ -1,22 +0,0 @@ -Upcoming events ' => '', - 'Open Calendar' => '', -]; diff --git a/messages/zh-TW/widgets_views_participants.php b/messages/zh-TW/widgets_views_participants.php deleted file mode 100644 index 794de113..00000000 --- a/messages/zh-TW/widgets_views_participants.php +++ /dev/null @@ -1,8 +0,0 @@ - '', - ':count Declined' => '', - ':count Invited' => '', - ':count Undecided' => '', - 'Participants' => '參與者', -); diff --git a/models/forms/CalendarEntryParticipationForm.php b/models/forms/CalendarEntryParticipationForm.php index e2ed0ae8..767dbaf2 100644 --- a/models/forms/CalendarEntryParticipationForm.php +++ b/models/forms/CalendarEntryParticipationForm.php @@ -143,9 +143,9 @@ public function save() public static function getModeItems(): array { return [ - CalendarEntryParticipation::PARTICIPATION_MODE_NONE => Yii::t('CalendarModule.views_entry_edit', 'No participants'), - CalendarEntryParticipation::PARTICIPATION_MODE_INVITE => Yii::t('CalendarModule.views_entry_edit', 'Only by Invite'), - CalendarEntryParticipation::PARTICIPATION_MODE_ALL => Yii::t('CalendarModule.views_entry_edit', 'Everybody can participate'), + CalendarEntryParticipation::PARTICIPATION_MODE_NONE => Yii::t('CalendarModule.views', 'No participants'), + CalendarEntryParticipation::PARTICIPATION_MODE_INVITE => Yii::t('CalendarModule.views', 'Only by Invite'), + CalendarEntryParticipation::PARTICIPATION_MODE_ALL => Yii::t('CalendarModule.views', 'Everybody can participate'), ]; } diff --git a/models/participation/FullCalendarSettings.php b/models/participation/FullCalendarSettings.php index c096b1dc..a375fde6 100644 --- a/models/participation/FullCalendarSettings.php +++ b/models/participation/FullCalendarSettings.php @@ -110,11 +110,11 @@ public function isGlobal() public function getViewModeItems() { return [ - self::SETTING_LIST_YEAR => Yii::t('CalendarModule.calendar', 'Year'), - self::SETTING_GRID_MONTH => Yii::t('CalendarModule.calendar', 'Month'), - self::SETTING_GRID_WEEK => Yii::t('CalendarModule.calendar', 'Week'), - self::SETTING_GRID_DAY => Yii::t('CalendarModule.calendar', 'Day'), - self::SETTING_LIST_WEEK => Yii::t('CalendarModule.calendar', 'List'), + self::SETTING_LIST_YEAR => Yii::t('CalendarModule.base', 'Year'), + self::SETTING_GRID_MONTH => Yii::t('CalendarModule.base', 'Month'), + self::SETTING_GRID_WEEK => Yii::t('CalendarModule.base', 'Week'), + self::SETTING_GRID_DAY => Yii::t('CalendarModule.base', 'Day'), + self::SETTING_LIST_WEEK => Yii::t('CalendarModule.base', 'List'), ]; } } diff --git a/models/reminder/forms/ReminderSettings.php b/models/reminder/forms/ReminderSettings.php index 7f96d298..d37b3721 100644 --- a/models/reminder/forms/ReminderSettings.php +++ b/models/reminder/forms/ReminderSettings.php @@ -133,10 +133,10 @@ public function rules() public static function getUnitSelection() { return [ - CalendarReminder::UNIT_MINUTE => Yii::t('CalendarModule.reminder', 'Minute'), - CalendarReminder::UNIT_HOUR => Yii::t('CalendarModule.reminder', 'Hour'), - CalendarReminder::UNIT_DAY => Yii::t('CalendarModule.reminder', 'Day'), - CalendarReminder::UNIT_WEEK => Yii::t('CalendarModule.reminder', 'Week'), + CalendarReminder::UNIT_MINUTE => Yii::t('CalendarModule.base', 'Minute'), + CalendarReminder::UNIT_HOUR => Yii::t('CalendarModule.base', 'Hour'), + CalendarReminder::UNIT_DAY => Yii::t('CalendarModule.base', 'Day'), + CalendarReminder::UNIT_WEEK => Yii::t('CalendarModule.base', 'Week'), ]; } @@ -399,13 +399,13 @@ public function clear(): bool public function getReminderTypeOptions() { - $result = [static::REMINDER_TYPE_NONE => Yii::t('CalendarModule.reminder', 'No reminder')]; + $result = [static::REMINDER_TYPE_NONE => Yii::t('CalendarModule.base', 'No reminder')]; if ($this->hasDefaults) { - $result[static::REMINDER_TYPE_DEFAULT] = Yii::t('CalendarModule.reminder', 'Use default reminder'); + $result[static::REMINDER_TYPE_DEFAULT] = Yii::t('CalendarModule.base', 'Use default reminder'); } - $result[static::REMINDER_TYPE_CUSTOM] = Yii::t('CalendarModule.reminder', 'Custom reminder'); + $result[static::REMINDER_TYPE_CUSTOM] = Yii::t('CalendarModule.base', 'Custom reminder'); return $result; } diff --git a/notifications/CalendarNotificationCategory.php b/notifications/CalendarNotificationCategory.php index 6fdc077b..b3b94198 100644 --- a/notifications/CalendarNotificationCategory.php +++ b/notifications/CalendarNotificationCategory.php @@ -29,7 +29,7 @@ class CalendarNotificationCategory extends NotificationCategory */ public function getTitle() { - return Yii::t('CalendarModule.notifications_CalendarNotificationCategory', 'Calendar'); + return Yii::t('CalendarModule.notification', 'Calendar'); } /** @@ -37,6 +37,6 @@ public function getTitle() */ public function getDescription() { - return Yii::t('CalendarModule.notifications_CalendarNotificationCategory', 'Receive Calendar related Notifications.'); + return Yii::t('CalendarModule.notification', 'Receive Calendar related Notifications.'); } } diff --git a/notifications/CanceledEvent.php b/notifications/CanceledEvent.php index 26db35a4..4e9463a1 100644 --- a/notifications/CanceledEvent.php +++ b/notifications/CanceledEvent.php @@ -46,7 +46,7 @@ public function category() public function html() { if ($this->source->content->container instanceof Space) { - return Yii::t('CalendarModule.notifications_views_CanceledEvent', '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.', [ + return Yii::t('CalendarModule.notification', '{displayName} canceled the event "{contentTitle}" in the space {spaceName}.', [ 'displayName' => Html::tag('strong', Html::encode($this->originator->displayName)), 'contentTitle' => $this->getContentInfo($this->source, false), 'spaceName' => Html::encode($this->source->content->container->displayName), @@ -64,7 +64,7 @@ public function html() */ public function getMailSubject() { - return Yii::t('CalendarModule.notifications_views_CanceledEvent', '{displayName} canceled the event "{contentTitle}".', [ + return Yii::t('CalendarModule.notification', '{displayName} canceled the event "{contentTitle}".', [ 'displayName' => Html::encode($this->originator->displayName), 'contentTitle' => $this->getContentInfo($this->source, false), ]); diff --git a/notifications/EventUpdated.php b/notifications/EventUpdated.php index 8dfab856..6944134e 100644 --- a/notifications/EventUpdated.php +++ b/notifications/EventUpdated.php @@ -32,7 +32,7 @@ public function html() ]; if ($this->source->content->container instanceof Space) { - return Yii::t('CalendarModule.notifications_views_CanceledEvent', '{displayName} updated the event "{contentTitle}" in the space {spaceName}.', array_merge([ + return Yii::t('CalendarModule.notification', '{displayName} updated the event "{contentTitle}" in the space {spaceName}.', array_merge([ 'spaceName' => Html::encode($this->source->content->container->displayName), ], $params)); } @@ -45,7 +45,7 @@ public function html() */ public function getMailSubject() { - return Yii::t('CalendarModule.notifications_views_CanceledEvent', '{displayName} updated the event "{contentTitle}".', [ + return Yii::t('CalendarModule.notification', '{displayName} updated the event "{contentTitle}".', [ 'displayName' => Html::encode($this->originator->displayName), 'contentTitle' => $this->getContentInfo($this->source, false), ]); diff --git a/notifications/Remind.php b/notifications/Remind.php index a02d3569..e7827795 100644 --- a/notifications/Remind.php +++ b/notifications/Remind.php @@ -52,13 +52,13 @@ public function html() { /* @var $record CalendarEventReminderIF */ if ($this->source instanceof CalendarEventReminderIF) { - return Yii::t('CalendarModule.reminder', 'You have an {type} coming up: {title}', [ + return Yii::t('CalendarModule.base', 'You have an {type} coming up: {title}', [ 'type' => Html::encode($this->getEventType()), 'title' => RichText::preview($this->source->getTitle(), 25), ]); } - return Yii::t('CalendarModule.reminder', 'You have an {type} coming up', ['type' => $this->getEventType()]); + return Yii::t('CalendarModule.base', 'You have an {type} coming up', ['type' => $this->getEventType()]); } public function getEventType() @@ -79,12 +79,12 @@ public function getEventType() public function getMailSubject() { if ($this->source instanceof CalendarEventReminderIF) { - return Yii::t('CalendarModule.reminder', 'Upcoming {type}: {title}', [ + return Yii::t('CalendarModule.base', 'Upcoming {type}: {title}', [ 'type' => $this->getEventType(), 'title' => $this->source->getTitle(), ]); } - return Yii::t('CalendarModule.reminder', 'Upcoming {type}', ['type' => $this->getEventType()]); + return Yii::t('CalendarModule.base', 'Upcoming {type}', ['type' => $this->getEventType()]); } } diff --git a/notifications/ReopenedEvent.php b/notifications/ReopenedEvent.php index 786d3cce..9bf1b8d2 100644 --- a/notifications/ReopenedEvent.php +++ b/notifications/ReopenedEvent.php @@ -37,7 +37,7 @@ public function html() ]; if ($this->source->content->container instanceof Space) { - return Yii::t('CalendarModule.notifications_views_CanceledEvent', '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.', array_merge([ + return Yii::t('CalendarModule.notification', '{displayName} reopened the event "{contentTitle}" in the space {spaceName}.', array_merge([ 'spaceName' => Html::encode($this->source->content->container->displayName), ])); } @@ -50,7 +50,7 @@ public function html() */ public function getMailSubject() { - return Yii::t('CalendarModule.notifications_views_CanceledEvent', '{displayName} reopened the event "{contentTitle}".', [ + return Yii::t('CalendarModule.notification', '{displayName} reopened the event "{contentTitle}".', [ 'displayName' => Html::encode($this->originator->displayName), 'contentTitle' => $this->getContentInfo($this->source, false), ]); diff --git a/permissions/CreateEntry.php b/permissions/CreateEntry.php index ebbf1870..e75c71e0 100644 --- a/permissions/CreateEntry.php +++ b/permissions/CreateEntry.php @@ -47,12 +47,12 @@ class CreateEntry extends \humhub\libs\BasePermission public function getTitle() { - return Yii::t('CalendarModule.permissions', 'Create entry'); + return Yii::t('CalendarModule.base', 'Create entry'); } public function getDescription() { - return Yii::t('CalendarModule.permissions', 'Allows the user to create new calendar entries'); + return Yii::t('CalendarModule.base', 'Allows the user to create new calendar entries'); } } diff --git a/permissions/ManageEntry.php b/permissions/ManageEntry.php index b7501b80..aa4f53f6 100644 --- a/permissions/ManageEntry.php +++ b/permissions/ManageEntry.php @@ -49,12 +49,12 @@ class ManageEntry extends \humhub\libs\BasePermission public function getTitle() { - return Yii::t('CalendarModule.permissions', 'Manage entries'); + return Yii::t('CalendarModule.base', 'Manage entries'); } public function getDescription() { - return Yii::t('CalendarModule.permissions', 'Allows the user to edit/delete existing calendar entries'); + return Yii::t('CalendarModule.base', 'Allows the user to edit/delete existing calendar entries'); } diff --git a/views/common/_settings_reminder.php b/views/common/_settings_reminder.php index 95e8b67f..bcc60700 100644 --- a/views/common/_settings_reminder.php +++ b/views/common/_settings_reminder.php @@ -7,15 +7,15 @@ /* @var $reminderSettings ReminderSettings */ $helpBlock = $reminderSettings->isGlobalSettings() - ? Yii::t('CalendarModule.reminder', 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.') - : Yii::t('CalendarModule.reminder', 'Here you can configure default settings for all calendar events.') ; + ? Yii::t('CalendarModule.base', 'Here you can configure global default reminders. These settings can be overwritten on space/profile level.') + : Yii::t('CalendarModule.base', 'Here you can configure default settings for all calendar events.') ; ?>