Start trad fr

This commit is contained in:
vanadar
2014-02-04 22:27:00 +01:00
parent 8ad2f82fd0
commit f986e0323e
9 changed files with 690 additions and 688 deletions
+13 -13
View File
@@ -3,33 +3,33 @@
**/
Events.Global = [
{ /* The Thief */
title: 'The Thief',
title: _('The Thief'),
isAvailable: function() {
return (Engine.activeModule == Room || Engine.activeModule == Outside) && $SM.get('game.thieves') == 1;
},
scenes: {
'start': {
text: [
'the villagers haul a filthy man out of the store room.',
"say his folk have been skimming the supplies.",
'say he should be strung up as an example.'
_('the villagers haul a filthy man out of the store room.'),
_("say his folk have been skimming the supplies."),
_('say he should be strung up as an example.')
],
notification: 'a thief is caught',
notification: _('a thief is caught'),
buttons: {
'kill': {
text: 'hang him',
text: _('hang him'),
nextScene: {1: 'hang'}
},
'spare': {
text: 'spare him',
text: _('spare him'),
nextScene: {1: 'spare'}
}
}
},
'hang': {
text: [
'the villagers hang the thief high in front of the store room.',
'the point is made. in the next few days, the missing supplies are returned.'
_('the villagers hang the thief high in front of the store room.'),
_('the point is made. in the next few days, the missing supplies are returned.')
],
onLoad: function() {
$SM.set('game.thieves', 2);
@@ -38,15 +38,15 @@ Events.Global = [
},
buttons: {
'leave': {
text: 'leave',
text: _('leave'),
nextScene: 'end'
}
}
},
'spare': {
text: [
"the man says he's grateful. says he won't come around any more.",
"shares what he knows about sneaking before he goes."
_("the man says he's grateful. says he won't come around any more."),
_("shares what he knows about sneaking before he goes.")
],
onLoad: function() {
$SM.set('game.thieves', 2);
@@ -55,7 +55,7 @@ Events.Global = [
},
buttons: {
'leave': {
text: 'leave',
text: _('leave'),
nextScene: 'end'
}
}