From 97417c626abba9e7030a5413b638ee272f15aa1b Mon Sep 17 00:00:00 2001 From: Rick Kasten Date: Thu, 8 Sep 2016 21:26:34 -0400 Subject: [PATCH] Fixes #7933 - Change Default tags to match types, not times of day (#7954) * Fixes #7933 Changes Default tags changed to - "Work" - "Exercise" - "Health + Wellness" - "School" - "Teams" - "Chores" - "Creativity" Changes made only to the en and en_GB locales UUID: 30983c37-52c3-415d-977c-38af6c7db91c * Reverting changes to en_GB locale * Reverting format change --- common/locales/en/defaultTasks.json | 10 +++++++--- common/locales/en_GB/defaulttasks.json | 2 +- common/script/content/index.js | 8 ++++++++ 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/common/locales/en/defaultTasks.json b/common/locales/en/defaultTasks.json index eea5d86611..4353943456 100644 --- a/common/locales/en/defaultTasks.json +++ b/common/locales/en/defaultTasks.json @@ -15,7 +15,11 @@ "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.", - "defaultTag1": "morning", - "defaultTag2": "afternoon", - "defaultTag3": "evening" + "defaultTag1": "Work", + "defaultTag2": "Exercise", + "defaultTag3": "Health + Wellness", + "defaultTag4": "School", + "defaultTag5": "Teams", + "defaultTag6": "Chores", + "defaultTag7": "Creativity" } diff --git a/common/locales/en_GB/defaulttasks.json b/common/locales/en_GB/defaulttasks.json index 7a4fa7b603..d1446688da 100644 --- a/common/locales/en_GB/defaulttasks.json +++ b/common/locales/en_GB/defaulttasks.json @@ -12,4 +12,4 @@ "defaultTag1": "morning", "defaultTag2": "afternoon", "defaultTag3": "evening" -} \ No newline at end of file +} diff --git a/common/script/content/index.js b/common/script/content/index.js index 20a57d6eaa..7a50da147b 100644 --- a/common/script/content/index.js +++ b/common/script/content/index.js @@ -2940,6 +2940,14 @@ api.userDefaults = { name: t('defaultTag2') }, { name: t('defaultTag3') + }, { + name: t('defaultTag4') + }, { + name: t('defaultTag5') + }, { + name: t('defaultTag6') + }, { + name: t('defaultTag7') } ] };