pcottle.learnGitBranching/src/js/dialogs/confirmShowSolution.js
2017-05-05 16:45:45 +08:00

109 lines
2.4 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: [
'## 确定要看答案吗?',
'',
'相信自己,你可以的!'
]
}
}],
'zh_TW': [{
type: 'ModalAlert',
options: {
markdowns: [
'## 確定偷看解答嗎?',
'',
'我相信你!你可以的'
]
}
}],
'es_AR': [{
type: 'ModalAlert',
options: {
markdowns: [
'## ¿Estás seguro de que querés ver la solución?',
'',
'¡Creo en vos! ¡Dale que podés!'
]
}
}],
'pt_BR': [{
type: 'ModalAlert',
options: {
markdowns: [
'## Tem certeza que quer ver a solução?',
'',
'Vamos lá, acredito que você consegue!'
]
}
}],
'fr_FR': [{
type: 'ModalAlert',
options: {
markdowns: [
'## Êtes-vous sûr de vouloir voir la solution ?',
'',
'Je crois en vous ! Vous pouvez le faire'
]
}
}],
'ja': [{
type: 'ModalAlert',
options: {
markdowns: [
'## どうしても正解がみたいですか?',
'',
'頑張れ頑張れできるできる絶対できる頑張れもっとやれるって',
'',
'やれる気持ちの問題だ頑張れ頑張れそこだ!',
'',
'そこで諦めるな絶対に頑張れ積極的にポジティブに頑張る頑張る',
'',
'北京だって頑張ってるんだから!'
]
}
}],
'ru_RU': [{
type: 'ModalAlert',
options: {
markdowns: [
'## Уверен, что хочешь посмотреть решение?',
'',
'Мы верим в тебя! Не прыгай! Ты сможешь!'
]
}
}],
'uk': [{
type: 'ModalAlert',
options: {
markdowns: [
'## Впевнений, що хошеш побачити розв’язок?',
'',
'Я вірю в тебе! Ти впораєшся!'
]
}
}]
};