-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoka.html
More file actions
152 lines (128 loc) · 3.41 KB
/
Copy pathmoka.html
File metadata and controls
152 lines (128 loc) · 3.41 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
<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>Moka Challenge</h1>
<div>
<img src="img/moka.png" alt="Moka" width="200"/>
</div>
<div>
<h3>Challenge 1:</h3>
Translate: When is the time to eat?
<br>
Dictionary:
<ul>
<li>ut = when</li>
<li>sonu = is</li>
<li>tepa = time</li>
<li>moku = to eat</li></ul>
Maj: Ut sonu el tepa sh moku?
<h3>Challenge 2:</h3>
Translate:
<ul>
<li>If one is hungry, he must eat something.</li>
<li>There are people who suffer from hunger.</li></ul>
Dictionary:
<ul>
<li>si = if</li>
<li>su = he</li>
<li>ki = who</li>
<li>una = one</li>
<li>xaga = hunger</li>
<li>dovu = must</li>
<li>sh moku = to eat</li>
<li>algo = something</li>
<li>aka = there</li>
<li>Xete = people</li></ul>
Maj:
<ul>
<li>Si un sonu hago, su dovu sh moku algo.</li>
<li>Aka sonu Xete ki sofu de xaga.</li></ul>
<h3>Challenge 3:</h3>
Translate:
<ul>
<li>Which is your favorite food?</li>
<li>My favorite food is omelette with cheese.</li></ul>
Dictionary:
<ul>
<li>uk = which</li>
<li>fevo = favorite</li></li>
<li>mia = my</li>
<li>fevo = favorite</li>
<li>moka = food</li>
<li>omla = omelette</li>
<li>de = from</li>
<li>kesa = cheese</li></ul>
Maj:
<ul>
<li>Uk sonu toa moka fevo? </li>
<li>Mia moka fevo sonu la omla de kesa. </li></ul>
<h3>Challenge 4:</h3>
Translate:
<ul>
<li>Do you like toast with butter?</li>
<li>I don-t like it. I prefer to eat without bread.</li></ul>
Dictionary
<ul>
<li>tsie = to you </li>
<li>te paju = you like</li>
<li>pana = bread</li>
<li>fejo = fried</li>
<li>ku = with</li>
<li>buta = butter</li>
<li>og = without</li></ul>
Maj:
<ul>
<li>tsie te paju la pana fejo ku buta? </li>
<li>no lo paju; moa favu sh moku og pana. </li></ul>
<h3>Challenge 5:</h3>
Translate:
<ul>
<li>Do you like boiled eggs?</li>
<li>Yes, I like to eat two boiled eggs with mustard for breakfast;</li></ul>
Dictionary:
<li>te = to you</li>
<li>la ueva = the egg (singular)</li>
<li>le ueve = eggs (plural) </li>
<li>geko = boiled </li>
<li>sefa = mustard</li>
<li>deja = breakfast</li></ul>
Maj:
<ul>
<li>te paju le ueve geko?</li>
<li>xa, ym paju sh moku bie weve geko ku sefa po deja;</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>