Skip to content
This repository was archived by the owner on Mar 4, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -474,47 +474,47 @@
nextStepTitle: "What's Next?",
nextStepDescription: "Hold tight. This challenge will be starting soon.",
nextStepAction: "",
nextBadgeImg: "/mf/i/member-program/peer-badge-big.png",
nextBadgeImg: "/mf/i/member-program/svg/Show-Your-Skills-06.svg",
nextBadgeTitle: "Next badge"
};
} else if (status === 'active' && phase === 'registration') {
return {
nextStepTitle: "What's Next?",
nextStepDescription: "Register to participate by clicking the Register button. Then when you're ready, click Submit to upload your submission. Keep an eye on the time limit!",
nextStepAction: "",
nextBadgeImg: "/mf/i/member-program/peer-badge-big.png",
nextBadgeImg: "/mf/i/member-program/svg/Show-Your-Skills-06.svg",
nextBadgeTitle: "Step One"
};
} else if (status === 'active' && phase === 'submission') {
return {
nextStepTitle: "What's Next?",
nextStepDescription: "Submit to upload your submission. Keep an eye on the time limit!",
nextStepAction: "",
nextBadgeImg: "/mf/i/member-program/peer-badge-big.png",
nextBadgeImg: "/mf/i/member-program/svg/Show-Your-Skills-06.svg",
nextBadgeTitle: "Getting Ready"
};
} else if (status === 'active' && phase === 'review') {
return {
nextStepTitle: "What's Next?",
nextStepDescription: "If you got your submission uploaded in time, then it's time to review your peers.",
nextStepAction: "Click Review to start",
nextBadgeImg: "/mf/i/member-program/peer-badge-big.png",
nextBadgeImg: "/mf/i/member-program/svg/Show-Your-Skills-06.svg",
nextBadgeTitle: "Break the Finish"
};
} else if (status === 'completed' || status.indexOf('cancelled') != -1) {
return {
nextStepTitle: "What's Next?",
nextStepDescription: "This challenge has completed.",
nextStepAction: "",
nextBadgeImg: "/mf/i/member-program/peer-badge-big.png",
nextBadgeImg: "/mf/i/member-program/svg/Show-Your-Skills-06.svg",
nextBadgeTitle: "Break the Finish"
};
} else { // for default show only badge
return {
nextStepTitle: "",
nextStepDescription: "",
nextStepAction: "",
nextBadgeImg: "/mf/i/member-program/peer-badge-big.png",
nextBadgeImg: "/mf/i/member-program/svg/Show-Your-Skills-06.svg",
nextBadgeTitle: "Next badge"
};
}
Expand Down