mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-28 08:50:06 +02:00
57 lines
1.2 KiB
JavaScript
57 lines
1.2 KiB
JavaScript
exports.dialog = {
|
|
'en_US': [{
|
|
type: 'ModalAlert',
|
|
options: {
|
|
markdowns: [
|
|
'## Great Job!!',
|
|
'',
|
|
'You solved the level in *{numCommands}* command(s); ',
|
|
'our solution uses {best}.'
|
|
]
|
|
}
|
|
}],
|
|
'ja': [{
|
|
type: 'ModalAlert',
|
|
options: {
|
|
markdowns: [
|
|
'## 完成!',
|
|
'',
|
|
'あなたは*{numCommands}*回のコマンドでこの課題をクリアしました; ',
|
|
'模範解答では{best}回です。'
|
|
]
|
|
}
|
|
}],
|
|
'zh_CN': [{
|
|
type: 'ModalAlert',
|
|
options: {
|
|
markdowns: [
|
|
'## 碉堡了!',
|
|
'',
|
|
'你用 *{numCommands}* 条命令搞定了这一关;我们的答案要用 {best}。'
|
|
]
|
|
}
|
|
}],
|
|
'zh_TW': [{
|
|
type: 'ModalAlert',
|
|
options: {
|
|
markdowns: [
|
|
'## 太棒了!',
|
|
'',
|
|
'您用了 *{numCommands}* 個指令完成這一關,',
|
|
'我們的解答用了 {best} 個。'
|
|
]
|
|
}
|
|
}],
|
|
'fr_FR': [{
|
|
type: 'ModalAlert',
|
|
options: {
|
|
markdowns: [
|
|
'## Beau Travail!!',
|
|
'',
|
|
'Vous avez résolu le niveau en *{numCommands}* commande(s); ',
|
|
'notre solution le fait en {best}.'
|
|
]
|
|
}
|
|
}]
|
|
};
|
|
|