mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
Added help text for startDate
This commit is contained in:
parent
e6ed0c961d
commit
c8ed73f685
2 changed files with 6 additions and 1 deletions
|
|
@ -66,6 +66,8 @@
|
|||
"hideTags": "Hide",
|
||||
"showTags": "Show",
|
||||
"startDate": "Start Date",
|
||||
"startDateHelpTitle": "When should this task start?",
|
||||
"startDateHelp": "Set the date for which this task takes effect. Will not be due on earlier days.",
|
||||
"streakName": "Streak Achievements",
|
||||
"streakText": "Has performed <%= streaks %> 21-day streaks on Dailies",
|
||||
"streakSingular": "Streaker",
|
||||
|
|
|
|||
|
|
@ -6,7 +6,10 @@ div(ng-if='::task.type!="reward"')
|
|||
div(ng-show='task._advanced')
|
||||
div(ng-if='::task.type == "daily"')
|
||||
.form-group
|
||||
legend.option-title=env.t('startDate')
|
||||
legend.option-title
|
||||
span.hint(popover-title=env.t('startDateHelpTitle'), popover=env.t("startDateHelp"), popover-trigger='mouseenter')
|
||||
=env.t('startDate')
|
||||
|
||||
input.form-control(type='text', ng-model='task.startDate',
|
||||
datepicker-popup='{{::user.preferences.dateFormat}}', is-open='datepickerOpened',
|
||||
ng-click='datepickerOpened = true')
|
||||
|
|
|
|||
Loading…
Reference in a new issue