mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-12 15:44:25 +02:00
43 lines
838 B
JavaScript
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'
|
|
]
|
|
}
|
|
}]
|
|
};
|
|
|