mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-17 19:42:15 +00:00
fix(ui): clarify Habits don't have "streaks"
This commit is contained in:
parent
72b9642ed5
commit
268f25e42c
3 changed files with 7 additions and 3 deletions
|
|
@ -260,7 +260,8 @@
|
|||
class="d-flex align-items-center"
|
||||
>
|
||||
<div
|
||||
v-b-tooltip.hover.bottom="$t('streakCounter')"
|
||||
v-b-tooltip.hover.bottom="task.type === 'daily'
|
||||
? $t('streakCounter') : $t('counter')"
|
||||
class="svg-icon streak"
|
||||
v-html="icons.streak"
|
||||
></div>
|
||||
|
|
|
|||
|
|
@ -434,7 +434,7 @@
|
|||
<div class="form-group">
|
||||
<lockable-label
|
||||
:locked="challengeAccessRequired || groupAccessRequiredAndOnPersonalPage"
|
||||
:text="$t('resetStreak')"
|
||||
:text="$t('resetCounter')"
|
||||
/>
|
||||
<select-translated-array
|
||||
:disabled="challengeAccessRequired || groupAccessRequiredAndOnPersonalPage"
|
||||
|
|
@ -549,7 +549,7 @@
|
|||
<label
|
||||
v-once
|
||||
class="mb-1"
|
||||
>{{ $t('restoreStreak') }}</label>
|
||||
>{{ $t('adjustCounter') }}</label>
|
||||
<div
|
||||
class="row streak-inputs"
|
||||
:class="{'both': task.up && task.down}"
|
||||
|
|
|
|||
|
|
@ -48,6 +48,9 @@
|
|||
"days": "Days",
|
||||
"restoreStreak": "Adjust Streak",
|
||||
"resetStreak": "Reset Streak",
|
||||
"counter": "Counter",
|
||||
"adjustCounter": "Adjust Counter",
|
||||
"resetCounter": "Reset Counter",
|
||||
"todo": "To Do",
|
||||
"todos": "To Do's",
|
||||
"todosDesc": "To Do's need to be completed once. Add checklists to your To Do's to increase their value.",
|
||||
|
|
|
|||
Loading…
Reference in a new issue