diff --git a/package-lock.json b/package-lock.json index a5a4be16b4..fba4d0cea6 100644 --- a/package-lock.json +++ b/package-lock.json @@ -5052,7 +5052,7 @@ "version": "github:nextcloud/cdav-library#1cefd176749fc7a75e47b98b50bd0140393f147a", "from": "github:nextcloud/cdav-library", "requires": { - "@babel/polyfill": "^7.6.0" + "@babel/polyfill": "^7.7.0" } }, "chalk": { diff --git a/src/components/AppNavigation/CalendarList/CalendarListItem.vue b/src/components/AppNavigation/CalendarList/CalendarListItem.vue index b2400c8377..77af3dd335 100644 --- a/src/components/AppNavigation/CalendarList/CalendarListItem.vue +++ b/src/components/AppNavigation/CalendarList/CalendarListItem.vue @@ -62,7 +62,8 @@ - {{ $t('calendar', 'Saving name ...') }} + + {{ $t('calendar', 'Saving name …') }} - {{ $t('calendar', 'Saving color ...') }} + + {{ $t('calendar', 'Saving color …') }} - {{ $t('calendar', 'Sending email ...') }} + + {{ $t('calendar', 'Sending email …') }} - {{ $t('calendar', 'Copying link …') }} + + {{ $t('calendar', 'Copying link …') }} - {{ $t('calendar', 'Copying code ...') }} + + {{ $t('calendar', 'Copying code …') }} - {{ $t('calendar', 'Deleting share link ...') }} + + {{ $t('calendar', 'Deleting share link …') }} diff --git a/src/components/AppNavigation/CalendarList/CalendarListNew.vue b/src/components/AppNavigation/CalendarList/CalendarListNew.vue index d95cceaf85..ce500b7d70 100644 --- a/src/components/AppNavigation/CalendarList/CalendarListNew.vue +++ b/src/components/AppNavigation/CalendarList/CalendarListNew.vue @@ -41,7 +41,8 @@ - {{ $t('calendar', 'Creating calendar ...') }} + + {{ $t('calendar', 'Creating calendar …') }} - {{ $t('calendar', 'Creating calendar ...') }} + + {{ $t('calendar', 'Creating calendar …') }} - {{ $t('calendar', 'Creating subscription ...') }} + + {{ $t('calendar', 'Creating subscription …') }} diff --git a/src/components/AppNavigation/CalendarList/PublicCalendarListItem.vue b/src/components/AppNavigation/CalendarList/PublicCalendarListItem.vue index 7d4fa1df0e..137b2c6d1a 100644 --- a/src/components/AppNavigation/CalendarList/PublicCalendarListItem.vue +++ b/src/components/AppNavigation/CalendarList/PublicCalendarListItem.vue @@ -49,7 +49,8 @@ - {{ $t('calendar', 'Copying link ...') }} + + {{ $t('calendar', 'Copying link …') }}

- {{ $t('calendar', 'Please select a calendar to import into …') }} + + {{ $t('calendar', 'Please select a calendar to import into …') }}

diff --git a/src/store/calendarObjects.js b/src/store/calendarObjects.js index 197b0d9b71..8a644c3139 100644 --- a/src/store/calendarObjects.js +++ b/src/store/calendarObjects.js @@ -122,13 +122,13 @@ const actions = { const oldCalendarId = calendarObject.calendarId if (oldCalendarId === newCalendarId) { - logger.error('Old calendar Id and new calendar Id are the same, nothing to move ...') + logger.error('Old calendar Id and new calendar Id are the same, nothing to move …') return } const newCalendarObject = context.getters.getCalendarById(newCalendarId) if (!newCalendarObject) { - logger.error('Calendar to move to not found, aborting ...') + logger.error('Calendar to move to not found, aborting …') return }