We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6a76cc commit 6fc731aCopy full SHA for 6fc731a
src/components/Editor/Alarm/AlarmTimeUnitSelect.vue
@@ -71,28 +71,28 @@ export default {
71
72
if (this.unit === 'seconds') {
73
options.push({
74
- label: this.$n('calendar', 'second', 'seconds', this.count),
+ label: this.$t('calendar', 'seconds'),
75
unit: 'seconds',
76
})
77
}
78
79
if (!this.isAllDay || ['minutes', 'hours'].indexOf(this.unit) !== -1) {
80
81
- label: this.$n('calendar', 'minute', 'minutes', this.count),
+ label: this.$t('calendar', 'minutes'),
82
unit: 'minutes',
83
84
85
- label: this.$n('calendar', 'hour', 'hours', this.count),
+ label: this.$t('calendar', 'hours'),
86
unit: 'hours',
87
88
89
90
91
- label: this.$n('calendar', 'day', 'days', this.count),
+ label: this.$t('calendar', 'days'),
92
unit: 'days',
93
94
95
- label: this.$n('calendar', 'week', 'weeks', this.count),
+ label: this.$t('calendar', 'weeks'),
96
unit: 'weeks',
97
98
0 commit comments