From fa9b331f03587c265747fc70ef57df17eac8d507 Mon Sep 17 00:00:00 2001 From: Amin Arria Date: Tue, 3 Nov 2015 13:15:55 -0430 Subject: [PATCH 1/8] Created route for overview --- website/src/routes/pages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/routes/pages.js b/website/src/routes/pages.js index b88393301b..c396754397 100644 --- a/website/src/routes/pages.js +++ b/website/src/routes/pages.js @@ -18,7 +18,7 @@ router.get('/', i18n.getUserLanguage, locals, function(req, res) { // -------- Marketing -------- -var pages = ['front', 'privacy', 'terms', 'api', 'features', 'videos', 'contact', 'plans', 'new-stuff', 'community-guidelines', 'old-news', 'press-kit', 'faq']; +var pages = ['front', 'privacy', 'terms', 'api', 'features', 'videos', 'contact', 'plans', 'new-stuff', 'community-guidelines', 'old-news', 'press-kit', 'faq', 'overview']; _.each(pages, function(name){ router.get('/static/' + name, i18n.getUserLanguage, locals, function(req, res) { From 167af1afd4454591a6a54802eb8a9babd21b0375 Mon Sep 17 00:00:00 2001 From: Amin Arria Date: Tue, 3 Nov 2015 13:35:14 -0430 Subject: [PATCH 2/8] New static page: overview --- common/locales/en/overview.json | 19 ++++++++++++++++++ website/views/static/overview.jade | 32 ++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) create mode 100644 common/locales/en/overview.json create mode 100644 website/views/static/overview.jade diff --git a/common/locales/en/overview.json b/common/locales/en/overview.json new file mode 100644 index 0000000000..c8c68e1336 --- /dev/null +++ b/common/locales/en/overview.json @@ -0,0 +1,19 @@ +{ + "needTips": "Need some tips on how to begin? Here's a straightforward guide!", + "step1": "Step 1: Enter Tasks", + "step1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them!", + "step1a": "1a. Set up To-Dos", + "step1aText": "Enter tasks you do once or rarely in the To-Dos column, one at a time. You can click the pencil to edit them and add checklists, due dates, and more!", + "step1b": "1b. Set up Dailies", + "step1bText": "Enter activities you need to do daily or on a particular day of the week in the Dailies column. Click the item's pencil icon to 'edit' the day(s) of the week it will be due. You can also make it due on a repeating basis, for example, every 3 days.", + "step1c": "1c. Set up Habits", + "step1cText": "Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit (+) or a bad habit (-).", + "step1d": "1d. Set up Rewards", + "step1dText": "In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!", + "step1Bonus": "If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).", + "step2": "Step 2: Gain Points by Doing Things in Real Life", + "step2Text": "Now, start tackling your goals from the list! As you complete activities, you will gain experience points (XP), which help you level-up, and gain gold points (GP), which allow you to purchase Rewards. If you fall into bad habits, or miss your Dailies you will lose health points (HP). In that way, the Habitica experience and health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.", + "step3": "Step 3: Customize and Explore Habitica", + "step3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with tags (edit a task to add them).\n * Customize your avatar under User > Avatar.\n * Buy your equipment under Rewards and change it under Inventory > Equipment.\n * Connect with other users via the Tavern.\n * Starting at Level 3, hatch pets by collecting eggs and hatching potions. Feed them to create mounts.\n * At level 10: Choose a particular class and then use class-specific skills (levels 11 to 14).\n * Form a party with your friends under Social > Party to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on quests (you will be given a quest at level 15).", + "overviewQuestions": "Have questions? Check out the [FAQ](https://habitica.com/static/faq/)! If your question isn't mentioned there, you can ask for further help in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a).\n\nGood luck with your tasks!" +} \ No newline at end of file diff --git a/website/views/static/overview.jade b/website/views/static/overview.jade new file mode 100644 index 0000000000..fe8baac0ef --- /dev/null +++ b/website/views/static/overview.jade @@ -0,0 +1,32 @@ +extends ./layout +//-Trick needed to pass 'env' to ./layout +block vars + - var layoutEnv = env + +block title + title=env.t('overview') + +block content + .row + .col-md-12 + .page-header + h1=env.t('overview') + p + =env.t('needTips') + + - var stepsNum = ['1', '2', '3'] + - var substeps = ['a', 'b', 'c', 'd'] + - for step in stepsNum + h3=env.t('step'+step) + !=marked(env.t('step'+step+'Text')) + if step == 1 + ul + - for substep in substeps + li.h4=env.t('step'+step+substep) + p + =env.t('step'+step+substep+'Text') + br + !=marked(env.t('step'+step+'Bonus')) + br + br + !=marked(env.t('overviewQuestions')) \ No newline at end of file From f79110d6d2deafe899a3ecfbaacaadb117c77997 Mon Sep 17 00:00:00 2001 From: Amin Arria Date: Tue, 3 Nov 2015 22:03:24 -0430 Subject: [PATCH 3/8] Changed to be more like the FAQ --- common/locales/en/overview.json | 22 +++++++++------------- website/views/static/overview.jade | 16 ++++------------ 2 files changed, 13 insertions(+), 25 deletions(-) diff --git a/common/locales/en/overview.json b/common/locales/en/overview.json index c8c68e1336..bf9f3bbd0f 100644 --- a/common/locales/en/overview.json +++ b/common/locales/en/overview.json @@ -1,19 +1,15 @@ { "needTips": "Need some tips on how to begin? Here's a straightforward guide!", + "step1": "Step 1: Enter Tasks", - "step1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them!", - "step1a": "1a. Set up To-Dos", - "step1aText": "Enter tasks you do once or rarely in the To-Dos column, one at a time. You can click the pencil to edit them and add checklists, due dates, and more!", - "step1b": "1b. Set up Dailies", - "step1bText": "Enter activities you need to do daily or on a particular day of the week in the Dailies column. Click the item's pencil icon to 'edit' the day(s) of the week it will be due. You can also make it due on a repeating basis, for example, every 3 days.", - "step1c": "1c. Set up Habits", - "step1cText": "Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit (+) or a bad habit (-).", - "step1d": "1d. Set up Rewards", - "step1dText": "In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!", - "step1Bonus": "If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).", + "webStep1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them!

\n * **Set up To-Dos:**\n\n Enter tasks you do once or rarely in the To-Dos column, one at a time. You can click the pencil to edit them and add checklists, due dates, and more!

\n * **Set up Dailies:**\n\n Enter activities you need to do daily or on a particular day of the week in the Dailies column. Click the item's pencil icon to 'edit' the day(s) of the week it will be due. You can also make it due on a repeating basis, for example, every 3 days.

\n * **Set up Habits:**\n\n Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit (+) or a bad habit (-).

\n * **Set up Rewards:**\n\n In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!", + "webStep1Bonus": "If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).", + "step2": "Step 2: Gain Points by Doing Things in Real Life", - "step2Text": "Now, start tackling your goals from the list! As you complete activities, you will gain experience points (XP), which help you level-up, and gain gold points (GP), which allow you to purchase Rewards. If you fall into bad habits, or miss your Dailies you will lose health points (HP). In that way, the Habitica experience and health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.", + "webStep2Text": "Now, start tackling your goals from the list! As you complete activities, you will gain experience points (XP), which help you level-up, and gain gold points (GP), which allow you to purchase Rewards. If you fall into bad habits, or miss your Dailies you will lose health points (HP). In that way, the Habitica experience and health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.", + "step3": "Step 3: Customize and Explore Habitica", - "step3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with tags (edit a task to add them).\n * Customize your avatar under User > Avatar.\n * Buy your equipment under Rewards and change it under Inventory > Equipment.\n * Connect with other users via the Tavern.\n * Starting at Level 3, hatch pets by collecting eggs and hatching potions. Feed them to create mounts.\n * At level 10: Choose a particular class and then use class-specific skills (levels 11 to 14).\n * Form a party with your friends under Social > Party to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on quests (you will be given a quest at level 15).", + "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with tags (edit a task to add them).\n * Customize your avatar under User > Avatar.\n * Buy your equipment under Rewards and change it under Inventory > Equipment.\n * Connect with other users via the Tavern.\n * Starting at Level 3, hatch pets by collecting eggs and hatching potions. Feed them to create mounts.\n * At level 10: Choose a particular class and then use class-specific skills (levels 11 to 14).\n * Form a party with your friends under Social > Party to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on quests (you will be given a quest at level 15).", + "overviewQuestions": "Have questions? Check out the [FAQ](https://habitica.com/static/faq/)! If your question isn't mentioned there, you can ask for further help in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a).\n\nGood luck with your tasks!" -} \ No newline at end of file +} diff --git a/website/views/static/overview.jade b/website/views/static/overview.jade index fe8baac0ef..705e5c88d9 100644 --- a/website/views/static/overview.jade +++ b/website/views/static/overview.jade @@ -15,18 +15,10 @@ block content =env.t('needTips') - var stepsNum = ['1', '2', '3'] - - var substeps = ['a', 'b', 'c', 'd'] - for step in stepsNum h3=env.t('step'+step) - !=marked(env.t('step'+step+'Text')) - if step == 1 - ul - - for substep in substeps - li.h4=env.t('step'+step+substep) - p - =env.t('step'+step+substep+'Text') - br - !=marked(env.t('step'+step+'Bonus')) + p + !=marked(env.t('step'+step+'Text')) + br br - br - !=marked(env.t('overviewQuestions')) \ No newline at end of file + !=marked(env.t('overviewQuestions')) From 7342735b1bae9c39a629f2d8388a93a38ec5b644 Mon Sep 17 00:00:00 2001 From: Amin Arria Date: Tue, 3 Nov 2015 22:18:41 -0430 Subject: [PATCH 4/8] Fix error missing web in webStep --- website/views/static/overview.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/views/static/overview.jade b/website/views/static/overview.jade index 705e5c88d9..28ea476ca3 100644 --- a/website/views/static/overview.jade +++ b/website/views/static/overview.jade @@ -18,7 +18,7 @@ block content - for step in stepsNum h3=env.t('step'+step) p - !=marked(env.t('step'+step+'Text')) + !=marked(env.t('webStep'+step+'Text')) br br !=marked(env.t('overviewQuestions')) From 5278a08c938e39436663c0b2131f58e278040e28 Mon Sep 17 00:00:00 2001 From: Amin Arria Date: Tue, 3 Nov 2015 22:32:23 -0430 Subject: [PATCH 5/8] Added horizontal line --- website/views/static/overview.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/views/static/overview.jade b/website/views/static/overview.jade index 28ea476ca3..2f98fe6b3c 100644 --- a/website/views/static/overview.jade +++ b/website/views/static/overview.jade @@ -19,6 +19,6 @@ block content h3=env.t('step'+step) p !=marked(env.t('webStep'+step+'Text')) - br + hr br !=marked(env.t('overviewQuestions')) From 8611c00201162d300f23c3f1f340a531ac078cfe Mon Sep 17 00:00:00 2001 From: Amin Arria Date: Tue, 3 Nov 2015 22:38:55 -0430 Subject: [PATCH 6/8] Added links --- common/locales/en/overview.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/common/locales/en/overview.json b/common/locales/en/overview.json index bf9f3bbd0f..a60398ed16 100644 --- a/common/locales/en/overview.json +++ b/common/locales/en/overview.json @@ -2,14 +2,13 @@ "needTips": "Need some tips on how to begin? Here's a straightforward guide!", "step1": "Step 1: Enter Tasks", - "webStep1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them!

\n * **Set up To-Dos:**\n\n Enter tasks you do once or rarely in the To-Dos column, one at a time. You can click the pencil to edit them and add checklists, due dates, and more!

\n * **Set up Dailies:**\n\n Enter activities you need to do daily or on a particular day of the week in the Dailies column. Click the item's pencil icon to 'edit' the day(s) of the week it will be due. You can also make it due on a repeating basis, for example, every 3 days.

\n * **Set up Habits:**\n\n Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit (+) or a bad habit (-).

\n * **Set up Rewards:**\n\n In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!", - "webStep1Bonus": "If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).", + "webStep1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them!

\n * **Set up [To-Dos](http://habitica.wikia.com/wiki/To-Dos):**\n\n Enter tasks you do once or rarely in the To-Dos column, one at a time. You can click the pencil to edit them and add checklists, due dates, and more!

\n * **Set up [Dailies](http://habitica.wikia.com/wiki/Dailies):**\n\n Enter activities you need to do daily or on a particular day of the week in the Dailies column. Click the item's pencil icon to 'edit' the day(s) of the week it will be due. You can also make it due on a repeating basis, for example, every 3 days.

\n * **Set up [Habits](http://habitica.wikia.com/wiki/Habits):**\n\n Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit or a bad habit .

\n * **Set up [Rewards](http://habitica.wikia.com/wiki/Rewards):**\n\n In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!

If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).", "step2": "Step 2: Gain Points by Doing Things in Real Life", - "webStep2Text": "Now, start tackling your goals from the list! As you complete activities, you will gain experience points (XP), which help you level-up, and gain gold points (GP), which allow you to purchase Rewards. If you fall into bad habits, or miss your Dailies you will lose health points (HP). In that way, the Habitica experience and health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.", + "webStep2Text": "Now, start tackling your goals from the list! As you complete activities, you will gain [experience points (XP)](http://habitica.wikia.com/wiki/Experience_Points), which help you level-up, and gain [gold points (GP)](http://habitica.wikia.com/wiki/Gold_Points), which allow you to purchase Rewards. If you fall into bad habits, or miss your Dailies you will lose [health points (HP)](http://habitica.wikia.com/wiki/Health_Points). In that way, the Habitica experience and health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.", "step3": "Step 3: Customize and Explore Habitica", - "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with tags (edit a task to add them).\n * Customize your avatar under User > Avatar.\n * Buy your equipment under Rewards and change it under Inventory > Equipment.\n * Connect with other users via the Tavern.\n * Starting at Level 3, hatch pets by collecting eggs and hatching potions. Feed them to create mounts.\n * At level 10: Choose a particular class and then use class-specific skills (levels 11 to 14).\n * Form a party with your friends under Social > Party to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on quests (you will be given a quest at level 15).", + "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with [tags](http://habitica.wikia.com/wiki/Tags) (edit a task to add them).\n * Customize your [avatar](http://habitica.wikia.com/wiki/Avatar) under User > Avatar.\n * Buy your [equipment](http://habitica.wikia.com/wiki/Equipment) under Rewards and change it under Inventory > Equipment.\n * Connect with other users via the [Tavern](http://habitica.wikia.com/wiki/Tavern).\n * Starting at Level 3, hatch [pets](http://habitica.wikia.com/wiki/Pets) by collecting [eggs](http://habitica.wikia.com/wiki/Eggs) and [hatching potions](http://habitica.wikia.com/wiki/Hatching_Potions). [Feed](http://habitica.wikia.com/wiki/Food) them to create [mounts](http://habitica.wikia.com/wiki/Mounts).\n * At level 10: Choose a particular [class](http://habitica.wikia.com/wiki/Class_System) and then use class-specific [skills](http://habitica.wikia.com/wiki/Skills) (levels 11 to 14).\n * Form a party with your friends under Social > Party to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [quests](http://habitica.wikia.com/wiki/Quests) (you will be given a quest at level 15).", "overviewQuestions": "Have questions? Check out the [FAQ](https://habitica.com/static/faq/)! If your question isn't mentioned there, you can ask for further help in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a).\n\nGood luck with your tasks!" } From 6d93356967bff9b57e17444f53ae2777a6f841ff Mon Sep 17 00:00:00 2001 From: Amin Arria Date: Tue, 3 Nov 2015 22:56:47 -0430 Subject: [PATCH 7/8] Changed overview link --- website/views/shared/header/menu.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/views/shared/header/menu.jade b/website/views/shared/header/menu.jade index d2c60dda01..5d73d51468 100644 --- a/website/views/shared/header/menu.jade +++ b/website/views/shared/header/menu.jade @@ -58,7 +58,7 @@ nav.toolbar(ng-controller='MenuCtrl') li a(target='_blank' href='https://habitica.com/static/faq/')=env.t('FAQ') li - a(target='_blank' href='http://habitica.wikia.com/wiki/')=env.t('overview') + a(target='_blank' href='https://habitica.com/static/overview')=env.t('overview') li a(target='_blank' href='https://github.com/HabitRPG/habitrpg/issues/2760')=env.t('reportBug') li @@ -157,7 +157,7 @@ nav.toolbar(ng-controller='MenuCtrl') li a(target='_blank' href='https://habitica.com/static/faq/')=env.t('FAQ') li - a(target='_blank' href='http://habitica.wikia.com/wiki/')=env.t('overview') + a(target='_blank' href='https://habitica.com/static/overview')=env.t('overview') li a(target='_blank' href='https://github.com/HabitRPG/habitrpg/issues/2760')=env.t('reportBug') li From 18c2279be425fcdd5c18d19028d1a6d9f22a0eed Mon Sep 17 00:00:00 2001 From: Sabe Jones Date: Thu, 5 Nov 2015 14:07:22 -0500 Subject: [PATCH 8/8] fix(overview): Wording and layout tweaks --- common/locales/en/overview.json | 4 ++-- website/views/static/overview.jade | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/common/locales/en/overview.json b/common/locales/en/overview.json index a60398ed16..5cae0afa4f 100644 --- a/common/locales/en/overview.json +++ b/common/locales/en/overview.json @@ -5,10 +5,10 @@ "webStep1Text": "Habitica is nothing without real-world goals, so enter a few tasks. You can add more later as you think of them!

\n * **Set up [To-Dos](http://habitica.wikia.com/wiki/To-Dos):**\n\n Enter tasks you do once or rarely in the To-Dos column, one at a time. You can click the pencil to edit them and add checklists, due dates, and more!

\n * **Set up [Dailies](http://habitica.wikia.com/wiki/Dailies):**\n\n Enter activities you need to do daily or on a particular day of the week in the Dailies column. Click the item's pencil icon to 'edit' the day(s) of the week it will be due. You can also make it due on a repeating basis, for example, every 3 days.

\n * **Set up [Habits](http://habitica.wikia.com/wiki/Habits):**\n\n Enter habits you want to establish in the Habits column. You can edit the Habit to change it to just a good habit or a bad habit .

\n * **Set up [Rewards](http://habitica.wikia.com/wiki/Rewards):**\n\n In addition to the in-game Rewards offered, add activities or treats which you want to use as a motivation to the Rewards column. It's important to give yourself a break or allow some indulgence in moderation!

If you need inspiration for which tasks to add, you can look at the wiki's pages on [Sample Habits](http://habitica.wikia.com/wiki/Sample_Habits), [Sample Dailies](http://habitica.wikia.com/wiki/Sample_Dailies), [Sample To-Dos](http://habitica.wikia.com/wiki/Sample_To-Dos), and [Sample Rewards](http://habitica.wikia.com/wiki/Sample_Custom_Rewards).", "step2": "Step 2: Gain Points by Doing Things in Real Life", - "webStep2Text": "Now, start tackling your goals from the list! As you complete activities, you will gain [experience points (XP)](http://habitica.wikia.com/wiki/Experience_Points), which help you level-up, and gain [gold points (GP)](http://habitica.wikia.com/wiki/Gold_Points), which allow you to purchase Rewards. If you fall into bad habits, or miss your Dailies you will lose [health points (HP)](http://habitica.wikia.com/wiki/Health_Points). In that way, the Habitica experience and health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.", + "webStep2Text": "Now, start tackling your goals from the list! As you complete tasks and check them off in Habitica, you will gain [Experience](http://habitica.wikia.com/wiki/Experience_Points), which helps you level up, and [Gold](http://habitica.wikia.com/wiki/Gold_Points), which allows you to purchase Rewards. If you fall into bad habits or miss your Dailies, you will lose [Health](http://habitica.wikia.com/wiki/Health_Points). In that way, the Habitica Experience and Health bars serve as a fun indicator of your progress toward your goals. You'll start seeing your real life improve as your character advances in the game.", "step3": "Step 3: Customize and Explore Habitica", - "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with [tags](http://habitica.wikia.com/wiki/Tags) (edit a task to add them).\n * Customize your [avatar](http://habitica.wikia.com/wiki/Avatar) under User > Avatar.\n * Buy your [equipment](http://habitica.wikia.com/wiki/Equipment) under Rewards and change it under Inventory > Equipment.\n * Connect with other users via the [Tavern](http://habitica.wikia.com/wiki/Tavern).\n * Starting at Level 3, hatch [pets](http://habitica.wikia.com/wiki/Pets) by collecting [eggs](http://habitica.wikia.com/wiki/Eggs) and [hatching potions](http://habitica.wikia.com/wiki/Hatching_Potions). [Feed](http://habitica.wikia.com/wiki/Food) them to create [mounts](http://habitica.wikia.com/wiki/Mounts).\n * At level 10: Choose a particular [class](http://habitica.wikia.com/wiki/Class_System) and then use class-specific [skills](http://habitica.wikia.com/wiki/Skills) (levels 11 to 14).\n * Form a party with your friends under Social > Party to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [quests](http://habitica.wikia.com/wiki/Quests) (you will be given a quest at level 15).", + "webStep3Text": "Once you're familiar with the basics, you can get even more out of Habitica with these nifty features:\n * Organize your tasks with [tags](http://habitica.wikia.com/wiki/Tags) (edit a task to add them).\n * Customize your [avatar](http://habitica.wikia.com/wiki/Avatar) under [User > Avatar](/#/options/profile/avatar).\n * Buy your [equipment](http://habitica.wikia.com/wiki/Equipment) under Rewards and change it under [Inventory > Equipment](/#/options/inventory/equipment).\n * Connect with other users via the [Tavern](http://habitica.wikia.com/wiki/Tavern).\n * Starting at Level 3, hatch [pets](http://habitica.wikia.com/wiki/Pets) by collecting [eggs](http://habitica.wikia.com/wiki/Eggs) and [hatching potions](http://habitica.wikia.com/wiki/Hatching_Potions). [Feed](http://habitica.wikia.com/wiki/Food) them to create [mounts](http://habitica.wikia.com/wiki/Mounts).\n * At level 10: Choose a particular [class](http://habitica.wikia.com/wiki/Class_System) and then use class-specific [skills](http://habitica.wikia.com/wiki/Skills) (levels 11 to 14).\n * Form a party with your friends under [Social > Party](/#/options/groups/party) to stay accountable and earn a Quest scroll.\n * Defeat monsters and collect objects on [quests](http://habitica.wikia.com/wiki/Quests) (you will be given a quest at level 15).", "overviewQuestions": "Have questions? Check out the [FAQ](https://habitica.com/static/faq/)! If your question isn't mentioned there, you can ask for further help in the [Newbies Guild](https://habitica.com/#/options/groups/guilds/5481ccf3-5d2d-48a9-a871-70a7380cee5a).\n\nGood luck with your tasks!" } diff --git a/website/views/static/overview.jade b/website/views/static/overview.jade index 2f98fe6b3c..c66fcce3b7 100644 --- a/website/views/static/overview.jade +++ b/website/views/static/overview.jade @@ -20,5 +20,4 @@ block content p !=marked(env.t('webStep'+step+'Text')) hr - br !=marked(env.t('overviewQuestions'))