pcottle.learnGitBranching/src/js/dialogs/confirmShowSolution.js
2013-12-18 16:33:45 +01:00

43 lines
838 B
JavaScript

exports.dialog = {
'en_US': [{
type: 'ModalAlert',
options: {
markdowns: [
'## Are you sure you want to see the solution?',
'',
'I believe in you! You can do it'
]
}
}],
'de_DE': [{
type: 'ModalAlert',
options: {
markdowns: [
'## Bist du sicher, dass du die Auflösung sehen willst?',
'',
'Ich glaube an dich! Du schaffst das!'
]
}
}],
'zh_CN': [{
type: 'ModalAlert',
options: {
markdowns: [
'## 确定要看答案吗?',
'',
'哥相信你!你可以的'
]
}
}],
'fr_FR': [{
type: 'ModalAlert',
options: {
markdowns: [
'## Êtes-vous sûr de vouloir voir la solution ?',
'',
'Je crois en vous ! Vous pouvez le faire'
]
}
}]
};