Update hint texts
parent
de66acf48c
commit
21f705a0e8
|
@ -1218,7 +1218,11 @@
|
||||||
"HINT1_TITLE": "Did you know you can import and export projects?",
|
"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.",
|
"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_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": {
|
"TIMELINE": {
|
||||||
"UPLOAD_ATTACHMENT": "{{username}} has uploaded a new attachment in {{obj_name}}",
|
"UPLOAD_ATTACHMENT": "{{username}} has uploaded a new attachment in {{obj_name}}",
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
class ProfileHints
|
class ProfileHints
|
||||||
maxHints: 2
|
maxHints: 4
|
||||||
supportUrls: [
|
supportUrls: [
|
||||||
"https://taiga.io/support/import-export-projects/",
|
"https://taiga.io/support/import-export-projects/", #HINT1
|
||||||
"https://taiga.io/support/custom-fields/"
|
"https://taiga.io/support/custom-fields/" #HINT2
|
||||||
|
"#" #HINT3
|
||||||
|
"#" #HINT4
|
||||||
]
|
]
|
||||||
constructor: (@translate) ->
|
constructor: (@translate) ->
|
||||||
hintKey = Math.floor(Math.random() * @.maxHints) + 1
|
hintKey = Math.floor(Math.random() * @.maxHints) + 1
|
||||||
|
|
Loading…
Reference in New Issue