From 044baf5cb13a2a732884f280d4336c8a121b4237 Mon Sep 17 00:00:00 2001 From: rakekniven Date: Sat, 4 May 2019 22:55:16 +0200 Subject: [PATCH] l10n: Change triple dot ellipsis (#385) * Update Task.vue * Update General.vue * Update TheList.vue --- src/components/Task.vue | 2 +- src/components/TheCollections/General.vue | 8 ++++---- src/components/TheList.vue | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/components/Task.vue b/src/components/Task.vue index d4b6022d..59b7368f 100644 --- a/src/components/Task.vue +++ b/src/components/Task.vue @@ -216,7 +216,7 @@ export default { * @returns {String} the placeholder string to show */ subtasksCreationPlaceholder: function() { - return t('tasks', 'Add a subtask to "{task}"...', { task: this.task.summary }) + return t('tasks', 'Add a subtask to "{task}"…', { task: this.task.summary }) }, /** diff --git a/src/components/TheCollections/General.vue b/src/components/TheCollections/General.vue index 2125144d..fcbf86ab 100644 --- a/src/components/TheCollections/General.vue +++ b/src/components/TheCollections/General.vue @@ -113,13 +113,13 @@ export default { inputString: function() { switch (this.collectionId) { case 'starred': - return t('tasks', 'Add an important task to "{calendar}"...', { calendar: this.calendar.displayName }) + return t('tasks', 'Add an important task to "{calendar}"…', { calendar: this.calendar.displayName }) case 'today': - return t('tasks', 'Add a task due today to "{calendar}"...', { calendar: this.calendar.displayName }) + return t('tasks', 'Add a task due today to "{calendar}"…', { calendar: this.calendar.displayName }) case 'current': - return t('tasks', 'Add a current task to "{calendar}"...', { calendar: this.calendar.displayName }) + return t('tasks', 'Add a current task to "{calendar}"…', { calendar: this.calendar.displayName }) default: - return t('tasks', 'Add a task to "{calendar}"...', { calendar: this.calendar.displayName }) + return t('tasks', 'Add a task to "{calendar}"…', { calendar: this.calendar.displayName }) } }, ...mapGetters({ diff --git a/src/components/TheList.vue b/src/components/TheList.vue index 4155b341..f39c58a1 100644 --- a/src/components/TheList.vue +++ b/src/components/TheList.vue @@ -134,7 +134,7 @@ License along with this library. If not, see . @click="startCreate($event)" > - {{ t('tasks', 'Add List...') }} + {{ t('tasks', 'Add List…') }}