diff --git a/src/components/date/datemathHelp.vue b/src/components/date/datemathHelp.vue
index eeda712f..89e20a06 100644
--- a/src/components/date/datemathHelp.vue
+++ b/src/components/date/datemathHelp.vue
@@ -36,35 +36,35 @@
s |
- {{ $t('time.seconds') }} |
+ {{ $tc('time.seconds', 2) }} |
m |
- {{ $t('time.minutes') }} |
+ {{ $tc('time.minutes', 2) }} |
h |
- {{ $t('time.hours') }} |
+ {{ $tc('time.hours', 2) }} |
H |
- {{ $t('time.hours') }} |
+ {{ $tc('time.hours', 2) }} |
d |
- {{ $t('time.days') }} |
+ {{ $tc('time.days', 2) }} |
w |
- {{ $t('time.weeks') }} |
+ {{ $tc('time.weeks', 2) }} |
M |
- {{ $t('time.months') }} |
+ {{ $tc('time.months', 2) }} |
y |
- {{ $t('time.years') }} |
+ {{ $tc('time.years', 2) }} |
diff --git a/src/components/tasks/partials/repeatAfter.vue b/src/components/tasks/partials/repeatAfter.vue
index e0e7b200..14744155 100644
--- a/src/components/tasks/partials/repeatAfter.vue
+++ b/src/components/tasks/partials/repeatAfter.vue
@@ -48,11 +48,11 @@
@change="updateData"
:disabled="disabled || undefined"
>
-
-
-
-
-
+
+
+
+
+
diff --git a/src/i18n/lang/en.json b/src/i18n/lang/en.json
index 0dd088db..43206c59 100644
--- a/src/i18n/lang/en.json
+++ b/src/i18n/lang/en.json
@@ -589,20 +589,13 @@
}
},
"time": {
- "seconds": "Seconds",
- "second": "Second",
- "minutes": "Minutes",
- "minute": "Minute",
- "hours": "Hours",
- "hour": "Hour",
- "days": "Days",
- "day": "Day",
- "weeks": "Weeks",
- "week": "Week",
- "months": "Months",
- "month": "Month",
- "years": "Years",
- "year": "Year"
+ "seconds": "Second | Seconds",
+ "minutes": "Minute | Minutes",
+ "hours": "Hour | Hours",
+ "days": "Day | Days",
+ "weeks": "Week | Weeks",
+ "months": "Month | Months",
+ "years": "Year | Years"
},
"task": {
"task": "Task",
diff --git a/src/views/user/settings/General.vue b/src/views/user/settings/General.vue
index c6305a81..bc3cffb8 100644
--- a/src/views/user/settings/General.vue
+++ b/src/views/user/settings/General.vue
@@ -44,16 +44,16 @@