]> source.dussan.org Git - nextcloud-server.git/commitdiff
enh: en dash
authorChristopher Ng <chrng8@gmail.com>
Tue, 8 Aug 2023 22:47:29 +0000 (15:47 -0700)
committerChristopher Ng <chrng8@gmail.com>
Wed, 9 Aug 2023 17:41:18 +0000 (10:41 -0700)
Signed-off-by: Christopher Ng <chrng8@gmail.com>
apps/files_reminders/src/components/SetReminderActions.vue

index 17e742d125e0c4381e075d6587f5f795b29b9442..d705f309ea03f5a1da0abd05b569be98e9853cb5 100644 (file)
@@ -36,7 +36,7 @@
                        <template #icon>
                                <CloseCircleOutline :size="20" />
                        </template>
-                       {{ t('files_reminders', 'Clear reminder') }} â\80\94 {{ getDateString(dueDate) }}
+                       {{ t('files_reminders', 'Clear reminder') }} â\80\93 {{ getDateString(dueDate) }}
                </NcActionButton>
 
                <NcActionSeparator />
@@ -45,7 +45,7 @@
                        :key="label"
                        :aria-label="ariaLabel"
                        @click="action">
-                       {{ label }} â\80\94 {{ dateString }}
+                       {{ label }} â\80\93 {{ dateString }}
                </NcActionButton>
 
                <NcActionSeparator />
@@ -180,14 +180,14 @@ export default Vue.extend({
                },
 
                clearAriaLabel(): string {
-                       return `${t('files_reminders', 'Clear reminder')} â\80\94 ${getVerboseDateString(this.dueDate as Date)}`
+                       return `${t('files_reminders', 'Clear reminder')} â\80\93 ${getVerboseDateString(this.dueDate as Date)}`
                },
 
                customAriaLabel(): null | string {
                        if (this.customDueDate === '') {
                                return null
                        }
-                       return `${t('files_reminders', 'Set reminder at custom date & time')} â\80\94 ${getVerboseDateString(this.customDueDate)}`
+                       return `${t('files_reminders', 'Set reminder at custom date & time')} â\80\93 ${getVerboseDateString(this.customDueDate)}`
                },
 
                options(): ReminderOption[] {
@@ -195,7 +195,7 @@ export default Vue.extend({
                                const dateTime = getDateTime(option.dateTimePreset)
                                return {
                                        ...option,
-                                       ariaLabel: `${option.ariaLabel} â\80\94 ${getVerboseDateString(dateTime)}`,
+                                       ariaLabel: `${option.ariaLabel} â\80\93 ${getVerboseDateString(dateTime)}`,
                                        dateString: getDateString(dateTime),
                                        action: () => this.set(dateTime),
                                }