Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/recursos/comun/datos/commons.py
diff options
context:
space:
mode:
Diffstat (limited to 'recursos/comun/datos/commons.py')
-rw-r--r--recursos/comun/datos/commons.py41
1 files changed, 41 insertions, 0 deletions
diff --git a/recursos/comun/datos/commons.py b/recursos/comun/datos/commons.py
new file mode 100644
index 0000000..6f7718c
--- /dev/null
+++ b/recursos/comun/datos/commons.py
@@ -0,0 +1,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")
+ ] \ No newline at end of file