Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

l10n: Triple dot ellipsis #1658

Merged
merged 4 commits into from
Nov 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@
<ActionText
v-if="showRenameSaving"
icon="icon-loading-small">
{{ $t('calendar', 'Saving name ...') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Saving name …') }}
</ActionText>
<ActionButton
v-if="showColorLabel"
Expand All @@ -79,7 +80,8 @@
<ActionText
v-if="showColorSaving"
icon="icon-loading-small">
{{ $t('calendar', 'Saving color ...') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Saving color …') }}
</ActionText>
<ActionButton
icon="icon-clippy"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@
<ActionText
v-if="showEMailSending"
icon="icon-loading-small">
{{ $t('calendar', 'Sending email ...') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Sending email …') }}
</ActionText>

<ActionButton
Expand All @@ -77,7 +78,8 @@
<ActionText
v-if="showCopySubscriptionLinkSpinner"
icon="icon-loading-small">
{{ $t('calendar', 'Copying link …') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Copying link …') }}
</ActionText>
<ActionText
v-if="showCopySubscriptionLinkSuccess"
Expand All @@ -99,7 +101,8 @@
<ActionText
v-if="showCopyEmbedCodeLinkSpinner"
icon="icon-loading-small">
{{ $t('calendar', 'Copying code ...') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Copying code …') }}
</ActionText>
<ActionText
v-if="showCopyEmbedCodeLinkSuccess"
Expand All @@ -121,7 +124,8 @@
<ActionText
v-if="unpublishingCalendar"
icon="icon-loading-small">
{{ $t('calendar', 'Deleting share link ...') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Deleting share link …') }}
</ActionText>
</template>
</AppNavigationItem>
Expand Down
9 changes: 6 additions & 3 deletions src/components/AppNavigation/CalendarList/CalendarListNew.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
<ActionText
v-if="showCreateCalendarSaving"
icon="icon-loading-small">
{{ $t('calendar', 'Creating calendar ...') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Creating calendar …') }}
</ActionText>

<ActionButton
Expand All @@ -57,7 +58,8 @@
<ActionText
v-if="showCreateCalendarTaskListSaving"
icon="icon-loading-small">
{{ $t('calendar', 'Creating calendar ...') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Creating calendar …') }}
</ActionText>

<ActionButton
Expand All @@ -73,7 +75,8 @@
<ActionText
v-if="showCreateSubscriptionSaving"
icon="icon-loading-small">
{{ $t('calendar', 'Creating subscription ...') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Creating subscription …') }}
</ActionText>
</template>
</AppNavigationItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@
<ActionText
v-if="showCopySubscriptionLinkSpinner"
icon="icon-loading-small">
{{ $t('calendar', 'Copying link ...') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Copying link …') }}
</ActionText>
<ActionText
v-if="showCopySubscriptionLinkSuccess"
Expand Down
3 changes: 2 additions & 1 deletion src/components/AppNavigation/Settings/ImportScreen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
{{ $t('calendar', 'Import calendars') }}
</h2>
<h4 class="import-modal__subtitle">
{{ $t('calendar', 'Please select a calendar to import into …') }}
<!-- eslint-disable-next-line no-irregular-whitespace -->
{{ $t('calendar', 'Please select a calendar to import into …') }}
</h4>

<transition-group class="import-modal__file-list" tag="ul">
Expand Down
4 changes: 2 additions & 2 deletions src/store/calendarObjects.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down