Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/data.py
blob: 27fddf84617b349aa3991a0af2bda603254929ff (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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': ''}
           )