Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lessons/ne_NP/MAKELESSONS
blob: 71ce8e223d87694ce12d02b49d10d408d6a44e1c (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
74
75
76
#!/bin/bash
#
# Script for generating Nepali lesson content for Typing Turtle.
# Author: Wade Brainerd <wadetb@gmail.com>
#
# See the TypingTurtle.activity/lessons/en_US/MAKELESSONS for more information.
#

# Generate the introductory lesson.
../../lessonbuilder.py --intro-lesson \
    --title="स्वागतम" \
    --desc="कृयाकलाप सुरु गर्न यहाँ थिच ।" \
    --bronze-wpm=0 --silver-wpm=0 --gold-wpm=0 \
    --bronze-acc=25 --silver-acc=50 --gold-acc=100 \
    --locale=ne_NP \
    --order=0 \
    --output=intro.lesson

# Generate the home, top and bottom row lessons.
../../lessonbuilder.py --key-lesson \
    --title="गृह पंक्ति" \
    --desc="यो पाठले तिमीलाई ब, क, म, ा, न, ज, व, प and ि keys \nin the middle of the keyboard.\nThese keys are called the Home Row." \
    --keys="बकमानजवपि" \
    --wordlist=ne_NP.txt --badwordlist=badwords.txt \
    --locale=ne_NP \
    --order=1 \
    --output=homerow.lesson
    
../../lessonbuilder.py --game-lesson \
    --title="Home Row Balloon Practice" \
    --desc="Practice the home row keys in this exciting game!\nDon't let any balloons get by!" \
    --keys="बकमानजवपि" \
    --game='balloon' \
    --wordlist=ne_NP.txt --badwordlist=badwords.txt \
    --locale=ne_NP \
    --order=2 \
    --output=homerowballoon.lesson
    
../../lessonbuilder.py --key-lesson \
    --title="The Top Row" \
    --desc="This lesson teaches you the त्र, ध, भ, च, त, थ, ग, ष, य and उ keys \non the top row of the keyboard." \
    --keys="त्रधभचतथगषयउ" --base-keys="बकमानजवपि" \
    --wordlist=ne_NP.txt --badwordlist=badwords.txt \
    --locale=ne_NP \
    --order=3 \
    --output=toprow.lesson

../../lessonbuilder.py --key-lesson \
    --title="The Bottom Row" \
    --desc="This lesson teaches you the श, ह, अ, ख, द, ल and ः keys \non the bottom row of the keyboard." \
    --keys="शहअखदलः" --base-keys="बकमानजवपित्रधभचतथगषयउ" \
    --wordlist=ne_NP.txt --badwordlist=badwords.txt \
    --locale=ne_NP \
    --order=4 \
    --output=bottomrow.lesson

# Generate left and right hand capital lessons.
../../lessonbuilder.py --key-lesson \
    --title="Left Hand Capitals" \
    --desc="This lesson teaches you the CAPITAL letters which are typed \nby your left hand.\nThese are त्त, ड्ढ, ऐ, द्ब, ट्ट, आ, ङ्क, ङ्ग, ँ, द्द, क्क, ह्य, ऋ, ॐ and ौ." \
    --keys="त्तड्ढऐद्बट्टआङ्कङ्गँद्दक्कह्यऋॐौ" \
    --base-keys="बदअमभानजषवपिःलयउत्रचकतगखधहथश" \
    --wordlist=ne_NP.txt --badwordlist=badwords.txt \
    --locale=ne_NP \
    --order=5 \
    --output=leftcapital.lesson

../../lessonbuilder.py --key-lesson \
    --title="Right Hand Capitals" \
    --desc="This lesson teaches you the CAPITAL letters which are typed \nby your right hand.\nThese are ठ्ठ, ऊ, क्ष, इ, ए, झ, ो, फ, ी, ौ, द्य, and ड्ड." \
    --keys="ठ्ठऊक्षइएझोफीौद्यड्ड" \
    --base-keys="बदअमभानजषवपिःलयउत्रचकतगखधहथशत्तड्ढऐद्बट्टआङ्कङ्गँद्दक्कह्यऋॐौ" \
    --wordlist=ne_NP.txt --badwordlist=badwords.txt \
    --locale=ne_NP \
    --order=6 \
    --output=rightcapital.lesson