Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data.py
diff options
context:
space:
mode:
Diffstat (limited to 'data.py')
-rw-r--r--data.py73
1 files changed, 73 insertions, 0 deletions
diff --git a/data.py b/data.py
new file mode 100644
index 0000000..27fddf8
--- /dev/null
+++ b/data.py
@@ -0,0 +1,73 @@
+# This file have data to display
+from gettext import gettext as _
+
+DAT_DIC = ({'name': 'Butterfly', 'icon_name': 'butterflies',
+ 'video': 'Butterflies.mp4', 'icon_position': (-0.7, 0.1),
+ 'text': _('The monarch butterfly is famous for its southward '
+ 'migration and northward return in summer from '
+ 'Canada to Mexico and Baja California which spans '
+ 'the life of three to four generations of the '
+ 'butterfly. \n\n'
+ 'The journey is 3000 miles and take 6 months')},
+ {'name': 'Chimps', 'icon_name': 'chimps',
+ 'video': 'Chimps.mp4', 'icon_position': (-0.1, -0.1),
+ 'text_easy': [
+ _('Chimpanzees are great apes that live in western and '
+ 'central Africa.'),
+ _('Chimpanzees have very long arms. Chimpanzees can hold '
+ 'things with their hands and with their feet.'),
+ _('Chimpanzees eat plants and meat. They are very clever '
+ 'animals. They often use tools to get food or to scare away '
+ 'other animals.'),
+ _('They live in groups. Each night they curl up in sleeping '
+ 'nests in trees.'),
+ _('Chimpanzees live about 40 years in the forest.'),
+ _('Chimpanzees are very noisy creatures.')],
+ 'text_middle': [
+ _('Chimpanzees are great apes that live in western and '
+ 'central Africa. They are under threat from deforestation, '
+ 'human diseases and hunting as a food source.'),
+ _('Chimpanzees are covered in hair and have very long arms '
+ 'and can hold things with their hands as well as holding '
+ 'things with their feet.'),
+ _('Chimpanzees eat plants and meat. They are a very clever '
+ 'animal and are able to plan a course of action, such as '
+ 'using a stick to gather termites to eat. They also use '
+ 'tools to scare away other animals.'),
+ _('They live in community groups with each group having a '
+ 'leader. Each night they curl up in sleeping nests in '
+ 'trees.'),
+ _('Chimpanzees live about 40 years in the forest. It is '
+ 'estimated that there are 250000 chimpanzees in the wild '
+ 'at present.'),
+ _('Chimpanzees are very noisy creatures. Their danger call '
+ 'can be heard for several kilometres in the jungle or in '
+ 'the forest.')]
+ },
+ {'name': 'Polar bears', 'icon_name': 'polar-bears',
+ 'video': 'PolarBears.mp4', 'icon_position': (0.0, 0.95),
+ 'text': _('Polar bears have two types of fur- a top layer and '
+ 'an under layer. The top layer is made up of long '
+ 'oily hairs and the under layer is soft and fine.\n\n'
+ 'When the bears swim the top layer keeps the under '
+ 'layer from getting wet and afterwards they can '
+ 'shake off all of the water just like a dog.')},
+ {'name': 'Pandas', 'icon_name': 'pandas',
+ 'video': 'Pandas.mp4', 'icon_position': (0.5, 0.3),
+ 'text': _('The giant panda lives in the mountain ranges in '
+ 'central China. The giant panda has a black and '
+ 'white coat. Adults measure around 1.2 to 1.8 meters '
+ 'in length. \n\n'
+ 'Pandas eat any of 25 bamboos species in the wild')},
+ {'name': 'Whales', 'icon_name': 'whales',
+ 'video': 'Whales.mp4', 'icon_position': (0.1, -0.8),
+ 'text': _('Humpback Whales are giants amongst sea voyagers, '
+ 'they spend their year roaming the oceans between '
+ 'feeding and breading grounds.\n\n '
+ 'They follow the coast of Mexico and Nort America all '
+ 'the way to the Arctic, travelling day and night '
+ 'without pause covering over 500 miles a week')},
+ {'name': 'Kangaroos', 'icon_name': 'kangaroos',
+ 'video': None, 'icon_position': (0.6, -0.3),
+ 'text': ''}
+ )