Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/recursos/comun/datos/commons.py
blob: 6f7718c9c41effe73fd0e1fabeaebb00fb7e1c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-

from gettext import gettext as _

BEGIN = [
    _('Do you like to know about Robot? Lets start!')
]

LEARNING = [
            _('Do you know about Robot?'),
            _('Choose from images the once"s that shows Robots'),
            _('Can you show me where are Robots?'),
            _('Find the sensors in the images'),
            _('Choose the actuators in the images'),
            _('Which of these tasks can make a robot?')
           ]
REWARDS = [
           _('Perfect, you are becoming an expert!'),
           _('You have done very well! Continue like that'),
           _('Well done!'),
           _('Brilliant!')
          ]
MISTAKES = [
            _('Try again, you can do it!'),
            _('No, that is not correct. Try again!'),
            _('No, it is not a Robot'),
            _('No, it is not a sensor'),
            _('No, it is not an actuator'),
           ]
BYE = [
        _("Better luck next time\nI'll rest a while..."),
        _("The next time will be better\nI'm going to play with my friends."),
        _("Please try again")
]
       ]
CREDITS = [
    _("Author: Rolo, Seba, Sil"),
    _("Send corrections, comments or suggestions to: grupo-proyecto-butia-2012@googlegroups.com"),
    "",
    _("This program is free software developed by the community")
    ]