diff --git a/app/locales/locale-en.json b/app/locales/locale-en.json index 843160ea..6d74d528 100644 --- a/app/locales/locale-en.json +++ b/app/locales/locale-en.json @@ -1218,7 +1218,11 @@ "HINT1_TITLE": "Did you know you can import and export projects?", "HINT1_TEXT": "This allow you to extract all your data from one Taiga and move it to another one.", "HINT2_TITLE": "Did you know you can create custom fields?", - "HINT2_TEXT": "This will provide teams with a flexible input to fit in their workflow." + "HINT2_TEXT": "Teams can now create custom fields as a flexible means to enter specific data useful for their particular workflow", + "HINT3_TITLE": "Reorder your projects to feature those most relevant to you", + "HINT3_TEXT": "The top 10 project will be in your top bar direct access", + "HINT4_TITLE": "Did you forgot what were you working on?", + "HINT4_TEXT": "Don't worry, on your dashboard you'll find your open tasks issues and user stories in the order you worked on them." }, "TIMELINE": { "UPLOAD_ATTACHMENT": "{{username}} has uploaded a new attachment in {{obj_name}}", diff --git a/app/modules/profile/profile-hints/profile-hints.controller.coffee b/app/modules/profile/profile-hints/profile-hints.controller.coffee index 657656b1..83d74c8f 100644 --- a/app/modules/profile/profile-hints/profile-hints.controller.coffee +++ b/app/modules/profile/profile-hints/profile-hints.controller.coffee @@ -1,8 +1,10 @@ class ProfileHints - maxHints: 2 + maxHints: 4 supportUrls: [ - "https://taiga.io/support/import-export-projects/", - "https://taiga.io/support/custom-fields/" + "https://taiga.io/support/import-export-projects/", #HINT1 + "https://taiga.io/support/custom-fields/" #HINT2 + "#" #HINT3 + "#" #HINT4 ] constructor: (@translate) -> hintKey = Math.floor(Math.random() * @.maxHints) + 1