feat: unify time units and use the same ones everywhere
This commit is contained in:
parent
3d5f50ccd4
commit
5b4fe9176e
4 changed files with 37 additions and 37 deletions
|
@ -36,35 +36,35 @@
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>s</code></td>
|
<td><code>s</code></td>
|
||||||
<td>{{ $t('input.datemathHelp.units.seconds') }}</td>
|
<td>{{ $t('time.seconds') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>m</code></td>
|
<td><code>m</code></td>
|
||||||
<td>{{ $t('input.datemathHelp.units.minutes') }}</td>
|
<td>{{ $t('time.minutes') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>h</code></td>
|
<td><code>h</code></td>
|
||||||
<td>{{ $t('input.datemathHelp.units.hours') }}</td>
|
<td>{{ $t('time.hours') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>H</code></td>
|
<td><code>H</code></td>
|
||||||
<td>{{ $t('input.datemathHelp.units.hours') }}</td>
|
<td>{{ $t('time.hours') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>d</code></td>
|
<td><code>d</code></td>
|
||||||
<td>{{ $t('input.datemathHelp.units.days') }}</td>
|
<td>{{ $t('time.days') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>w</code></td>
|
<td><code>w</code></td>
|
||||||
<td>{{ $t('input.datemathHelp.units.weeks') }}</td>
|
<td>{{ $t('time.weeks') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>M</code></td>
|
<td><code>M</code></td>
|
||||||
<td>{{ $t('input.datemathHelp.units.months') }}</td>
|
<td>{{ $t('time.months') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><code>y</code></td>
|
<td><code>y</code></td>
|
||||||
<td>{{ $t('input.datemathHelp.units.years') }}</td>
|
<td>{{ $t('time.years') }}</td>
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -48,11 +48,11 @@
|
||||||
@change="updateData"
|
@change="updateData"
|
||||||
:disabled="disabled || undefined"
|
:disabled="disabled || undefined"
|
||||||
>
|
>
|
||||||
<option value="hours">{{ $t('task.repeat.hours') }}</option>
|
<option value="hours">{{ $t('time.hours') }}</option>
|
||||||
<option value="days">{{ $t('task.repeat.days') }}</option>
|
<option value="days">{{ $t('time.days') }}</option>
|
||||||
<option value="weeks">{{ $t('task.repeat.weeks') }}</option>
|
<option value="weeks">{{ $t('time.weeks') }}</option>
|
||||||
<option value="months">{{ $t('task.repeat.months') }}</option>
|
<option value="months">{{ $t('time.months') }}</option>
|
||||||
<option value="years">{{ $t('task.repeat.years') }}</option>
|
<option value="years">{{ $t('time.years') }}</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -551,19 +551,16 @@
|
||||||
"fromto": "{from} to {to}",
|
"fromto": "{from} to {to}",
|
||||||
"ranges": {
|
"ranges": {
|
||||||
"today": "Today",
|
"today": "Today",
|
||||||
|
|
||||||
"thisWeek": "This Week",
|
"thisWeek": "This Week",
|
||||||
"restOfThisWeek": "The Rest of This Week",
|
"restOfThisWeek": "The Rest of This Week",
|
||||||
"nextWeek": "Next Week",
|
"nextWeek": "Next Week",
|
||||||
"next7Days": "Next 7 Days",
|
"next7Days": "Next 7 Days",
|
||||||
"lastWeek": "Last Week",
|
"lastWeek": "Last Week",
|
||||||
|
|
||||||
"thisMonth": "This Month",
|
"thisMonth": "This Month",
|
||||||
"restOfThisMonth": "The Rest of This Month",
|
"restOfThisMonth": "The Rest of This Month",
|
||||||
"nextMonth": "Next Month",
|
"nextMonth": "Next Month",
|
||||||
"next30Days": "Next 30 Days",
|
"next30Days": "Next 30 Days",
|
||||||
"lastMonth": "Last Month",
|
"lastMonth": "Last Month",
|
||||||
|
|
||||||
"thisYear": "This Year",
|
"thisYear": "This Year",
|
||||||
"restOfThisYear": "The Rest of This Year"
|
"restOfThisYear": "The Rest of This Year"
|
||||||
}
|
}
|
||||||
|
@ -580,15 +577,6 @@
|
||||||
"roundDay": "Round down to the nearest day",
|
"roundDay": "Round down to the nearest day",
|
||||||
"supportedUnits": "Supported time units are:",
|
"supportedUnits": "Supported time units are:",
|
||||||
"someExamples": "Some examples of time expressions:",
|
"someExamples": "Some examples of time expressions:",
|
||||||
"units": {
|
|
||||||
"seconds": "Seconds",
|
|
||||||
"minutes": "Minutes",
|
|
||||||
"hours": "Hours",
|
|
||||||
"days": "Days",
|
|
||||||
"weeks": "Weeks",
|
|
||||||
"months": "Months",
|
|
||||||
"years": "Years"
|
|
||||||
},
|
|
||||||
"examples": {
|
"examples": {
|
||||||
"now": "Right now",
|
"now": "Right now",
|
||||||
"in24h": "In 24h",
|
"in24h": "In 24h",
|
||||||
|
@ -600,6 +588,22 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"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"
|
||||||
|
},
|
||||||
"task": {
|
"task": {
|
||||||
"task": "Task",
|
"task": "Task",
|
||||||
"new": "Create a new task",
|
"new": "Create a new task",
|
||||||
|
|
|
@ -43,21 +43,17 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="control select">
|
<div class="control select">
|
||||||
<select v-model="defaultReminderAmountType">
|
<select v-model="defaultReminderAmountType">
|
||||||
<option value="minutes">{{
|
<option value="minutes">
|
||||||
$t('task.repeat.minute' + (defaultReminderAmount === 1 ? '' : 's'))
|
{{ $t('time.minute' + (defaultReminderAmount === 1 ? '' : 's')) }}
|
||||||
}}
|
|
||||||
</option>
|
</option>
|
||||||
<option value="hours">{{
|
<option value="hours">
|
||||||
$t('task.repeat.hour' + (defaultReminderAmount === 1 ? '' : 's'))
|
{{ $t('time.hour' + (defaultReminderAmount === 1 ? '' : 's')) }}
|
||||||
}}
|
|
||||||
</option>
|
</option>
|
||||||
<option value="days">{{
|
<option value="days">
|
||||||
$t('task.repeat.day' + (defaultReminderAmount === 1 ? '' : 's'))
|
{{ $t('time.day' + (defaultReminderAmount === 1 ? '' : 's')) }}
|
||||||
}}
|
|
||||||
</option>
|
</option>
|
||||||
<option value="months">{{
|
<option value="months">
|
||||||
$t('task.repeat.month' + (defaultReminderAmount === 1 ? '' : 's'))
|
{{ $t('time.month' + (defaultReminderAmount === 1 ? '' : 's')) }}
|
||||||
}}
|
|
||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue