mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-07-14 07:52:15 +00:00
remove commented-out default task code and unused default task locale strings - fixes https://github.com/HabitRPG/habitrpg/issues/5631#issuecomment-130619901 (comment by GitHubSphinx)
This commit is contained in:
parent
2821e25451
commit
7f0889f405
3 changed files with 1 additions and 45 deletions
|
|
@ -8,48 +8,13 @@
|
|||
"defaultHabit3Text": "Take the Stairs/Elevator (Click the pencil to edit)",
|
||||
"defaultHabit3Notes": "Sample Good or Bad Habits: +/- Took Stairs/Elevator ; +/- Drank Water/Soda",
|
||||
|
||||
"defaultDaily1Text": "1h Personal Project",
|
||||
"defaultDaily1Notes": "All tasks default to yellow when they are created. This means you will take only moderate damage when they are missed and will gain only a moderate reward when they are completed.",
|
||||
|
||||
"defaultDaily2Text": "Clean your apartment",
|
||||
"defaultDaily2Notes": "Dailies you complete consistently will turn from yellow to green to blue, helping you track your progress. The higher you move up the ladder, the less damage you take for missing and less reward you receive for completing the goal.",
|
||||
|
||||
"defaultDaily3Text": "45m Reading",
|
||||
"defaultDaily3Notes": "If you miss a Daily frequently, it will turn darker shades of orange and red. The redder the task is, the more experience and gold it grants for success and the more damage you take for failure. This encourages you to focus on your shortcomings, the reds.",
|
||||
|
||||
"defaultDaily4Text": "Exercise",
|
||||
"defaultDaily4Notes": "You can add checklists to Dailies and To-Dos. As you progress through the checklist, you will get a proportionate reward.",
|
||||
"defaultDaily4Checklist1": "Stretching",
|
||||
"defaultDaily4Checklist2": "Sit-ups",
|
||||
"defaultDaily4Checklist3": "Push-ups",
|
||||
|
||||
"defaultTodoNotes": "You can either complete this To-Do, edit it, or remove it.",
|
||||
|
||||
"defaultTodo1Text": "Join Habitica (Check me off!)",
|
||||
|
||||
"defaultTodo2Text": "Set up a Habit",
|
||||
"defaultTodo2Checklist1": "create a Habit",
|
||||
"defaultTodo2Checklist2": "make it \"+\" only, \"-\" only, or \"+/-\" under Edit",
|
||||
"defaultTodo2Checklist3": "set difficulty under Advanced Options",
|
||||
|
||||
"defaultTodo3Text": "Set up a Daily",
|
||||
"defaultTodo3Checklist1": "decide whether to use Dailies (they hurt you if you don't do them every day)",
|
||||
"defaultTodo3Checklist2": "if so, add a Daily (don't add too many at first!)",
|
||||
"defaultTodo3Checklist3": "set its due days under Edit",
|
||||
|
||||
"defaultTodo4Text": "Set up a To-Do (can be checked off without ticking all checkboxes!)",
|
||||
"defaultTodo4Checklist1": "create a To-Do",
|
||||
"defaultTodo4Checklist2": "set difficulty under Advanced Options",
|
||||
"defaultTodo4Checklist3": "optional: set a Due Date",
|
||||
|
||||
"defaultTodo5Text": "Start a Party (private group) with your friends (Social > Party)",
|
||||
|
||||
"defaultReward1Text": "15 minute break",
|
||||
"defaultReward1Notes": "Custom rewards can come in many forms. Some people will hold off watching their favorite show unless they have the gold to pay for it.",
|
||||
|
||||
"defaultReward2Text": "Cake",
|
||||
"defaultReward2Notes": "Other people just want to enjoy a nice piece of cake. Try to create rewards that will motivate you best.",
|
||||
|
||||
"defaultTag1": "morning",
|
||||
"defaultTag2": "afternoon",
|
||||
"defaultTag3": "evening"
|
||||
|
|
|
|||
|
|
@ -2219,23 +2219,14 @@ api.userDefaults =
|
|||
]
|
||||
|
||||
dailys: [
|
||||
# {type: 'daily', text: t('defaultDaily1Text'), notes: t('defaultDaily1Notes'), value: 0, completed: false, repeat: repeat, attribute: 'per' }
|
||||
# {type: 'daily', text: t('defaultDaily2Text'), notes: t('defaultDaily2Notes'), value: 3, completed: false, repeat: repeat, attribute: 'con' }
|
||||
# {type: 'daily', text: t('defaultDaily3Text'), notes: t('defaultDaily3Notes'), value: -10, completed: false, repeat: repeat, attribute: 'int' }
|
||||
# {type: 'daily', text: t('defaultDaily4Text'), notes: t('defaultDaily4Notes'), checklist: [{completed: true, text: t('defaultDaily4Checklist1') }, {completed: false, text: t('defaultDaily4Checklist2')}, {completed: false, text: t('defaultDaily4Checklist3')}], completed: false, repeat: repeat, attribute: 'str' }
|
||||
]
|
||||
|
||||
todos: [
|
||||
{type: 'todo', text: t('defaultTodo1Text'), notes: t('defaultTodoNotes'), completed: false, attribute: 'int' }
|
||||
# {type: 'todo', text: t('defaultTodo2Text'), notes: t('defaultTodoNotes'), checklist: [{completed: false, text: t('defaultTodo2Checklist1') }, {completed: false, text: t('defaultTodo2Checklist2')}, {completed: false, text: t('defaultTodo2Checklist3')}], completed: false, attribute: 'per' }
|
||||
# {type: 'todo', text: t('defaultTodo3Text'), notes: t('defaultTodoNotes'), checklist: [{completed: false, text: t('defaultTodo3Checklist1') }, {completed: false, text: t('defaultTodo3Checklist2')}, {completed: false, text: t('defaultTodo3Checklist3')}], completed: false, attribute: 'per' }
|
||||
# {type: 'todo', text: t('defaultTodo4Text'), notes: t('defaultTodoNotes'), checklist: [{completed: false, text: t('defaultTodo4Checklist1') }, {completed: false, text: t('defaultTodo4Checklist2')}, {completed: false, text: t('defaultTodo4Checklist3')}], completed: false, attribute: 'per' }
|
||||
# {type: 'todo', text: t('defaultTodo5Text'), notes: t('defaultTodoNotes'), completed: false, attribute: 'per' }
|
||||
]
|
||||
|
||||
rewards: [
|
||||
{type: 'reward', text: t('defaultReward1Text'), value: 10 }
|
||||
# {type: 'reward', text: t('defaultReward2Text'), notes: t('defaultReward2Notes'), value: 10 }
|
||||
]
|
||||
|
||||
tags: [
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue