-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguta.html
More file actions
179 lines (146 loc) · 3.63 KB
/
Copy pathguta.html
File metadata and controls
179 lines (146 loc) · 3.63 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<html lang="en" data-bs-theme="dark"><head>
<meta charset="utf-8">
<meta name="description" content="Introduction to Maj language.">
<meta name="author" content="Elucian Moise">
<meta name="keywords" content="sage, code, maj, akara, grammar, auxiliary, language, conlang">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Website title -->
<title>SC Maj</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<!-- Icon -->
<link rel="icon" type="image/png" href="../images/favicon.ico">
<!-- Prism Highlighter -->
<link rel="stylesheet" href="../prism.css">
<!-- custom css -->
<link rel="stylesheet" href="https://sagecode.net/sage.css">
</head>
<body>
<div class="container">
<!-- header -->
<div class="row">
<div class="col">
<a href="https://sagecode.net"><img src="https://sagecode.net/images/sage-logo.svg" alt="Sage-Code Laboratory" height="80"/></a>
</div>
<div class="col bottom-right">
<a href="index.html#lang-index" rel="nofollow">index</a><--
</div>
</div><hr>
<h1>Guta Challenge</h1>
<div>
<img src="img/guta.png" alt="Guta" width="200"/>
</div>
<div>
<h3>Challenge 1:</h3>
Translate:
<ul>
<li>How do you like your soup?</li>
<li>I like it a lot. It is warm and tasty.</li></ul>
<br>
Dictionary:
<ul>
<li>vi = how</li>
<li> paju = like</li>
<li> zupa = soup</li>
<li> guto = tasty</li>
<li>lo sonu = it is</li>
<li>filo = much</li></ul>
Maj:
<ul>
<li>Vi te paju toa zupa?</li>
<li>Lo paju filo. Lo sonu xado cy guto.</li></ul>
<h3>Challenge 2:</h3>
Translate:
<ul>
<li>My soup is very pungent. I do not like it!</li></ul>
Dictionary:
<ul>
<li>zupa = soup</li>
<li>mui = very</li>
<li>akro = pungent</li>
<li>no paju=pa = not liking</li></ul>
Maj:
<ul>
<li>Mi zupa sonu mui akro; ea no lo paju-pa! </li></ul>
<h3>Challenge 3:</h3>
Translate:
<ul>
<li> My soup is more salty than usual. I hate it!</li></ul>
Dictionary:
<ul>
<li>plu = more </li>
<li>salo = salty </li></li>
<li> do = than</li>
<li> iujo = usual</li>
<li> xasu = hate</li></ul>
Maj:
<ul>
<li> Mi zupa sonu plu salo do iujo. Ea lo xasu!</li></ul>
<h3>Challenge 4:</h3>
Translate:
<ul>
<li>What do you wish to have for desert?</li></ul>
Dictionary
<ul>
<li>ke = what </li>
<li>fo = for</li>
<li>doru = wish </li>
<li> sevu = serve</li>
<li>doca = dessert</li></ul>
Maj:
<ul>
<li> Ke doru-toa sh sevu fo doca?</li></ul>
<h3>Challenge 5:</h3>
Translate:
<ul><li> I wish to take a slice of fruit pie.</li></ul>
Dictionary:
<li>sh lotu = to take</li>
<li>al = of</li>
<li>ut = with </li>
<li> poma = fruit</li>
<li>tarta = pie</li>
<li>feta= slice</li></ul>
Maj:
<ul>
<li>Ea doru sh lotu una feta al tarta ku poma.</li></ul>
<h3>Challenge 6:</h3>
Translate:
<ul> <li>How was your pie?</li>
<li>My pie was sweet and soft.</li></ul>
Dictionary:
<li>vi = how</li>
<li>sonu-pa = it was</li>
<li>ci = and </li>
<li> dulo = soft</li></ul>
<br>
Maj:
<ul>
<li>Vi sonu-pa toa tarta? </li>
<li>Mia tarta sonu-pa duco ci dulo. </li></ul>
<h3>Challenge 7:</h3>
Translate:
<ul> <li>How often do you eat in a day?</li>
<li>How often do you eat in a day?</li></ul>
Dictionary:
<li>ofh = often</li>
<li>ogi = each</li>
<li>iujo = usually </li>
<li>ore = times </li>
<li>bo = but</li>
<li>djo = only</li></ul>
Maj:
<ul>
<li> Vi ofh toa moku oni djya?</li>
<li>Iujo du-ore da algo-tepa djo un-ora.</li>
</ul>
</div>
<hr>
<p><b>Read next:</b>
<a href="index.html">Index</a></p>
<!-- Footer -->
<footer class="footer">
<div class="footer-copyright text-center"></div>
</footer>
</div>
</body>
</html>