-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnime.html
More file actions
138 lines (110 loc) · 3.4 KB
/
Copy pathnime.html
File metadata and controls
138 lines (110 loc) · 3.4 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
<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>Nime Challenge</h1>
<div>
<img src="img/nime.png" alt="Nime" width="520"/>
</div>
<div>
Notes: <br>
Names of animals, persons or plants are starting with uppercase.
Most names for animals are equal or longer than 4 characters.
<h3>Animals</h3>
<ul>
<li>nime de agra = farm animals</li>
<li>nime de kasa = domestic animals</li>
<li>sajo-nime = wild animals</li>
<li>tamo-nime = domestic animals</li>
<li>agro-nime = farm animals</li></ul>
<table class="table table-border table-striped">
<tr><td><img src="img/vaka.png" alt="Vaka" width="240"/></td><td>Vaka = cow</td><td><img src="img/cava.png" alt="Cava" width="240"/></td><td>Cava = horse</td></tr>
<tr><td><img src="img/koika.png" alt="Koika" width="240"/></td><td>Koika = dog</td><td><img src="img/mytsa.png" alt="Mytsa" width="240"/></td><td>Mytsa = cat</td></tr>
</table>
<h3>Challenge 1:</h3>
Translate:
<ul>
<li>Where can I see some animals?</li>
<li>You can see domestic animals near home;</li>
<li>You must go to the zoo to see wild animals;</li></ul>
<br>
Dictionary:
<ul>
<li>ud = where </li>
<li>vivo = alive </li>
<li>Orsa = bear </li>
<li>zola = zoo</li>
<li>vhzu = to see</li>
<li>nime = animals</li></ul>
Maj:
<ul>
<li>ud posu ea sh vhzu algo nime;</li>
<li>ta posu sh vhzu tamo-nime naxo de kasa; </li>
<li>ta dovu sh andu la zoda sh vhzu savo-nime;</li></ul>
<h3>Challenge 2:</h3>
Translate:
<ul>
<li>Can I see a monkey?</li>
<li>How about some horses?</li></ul>
Dictionary:
<ul>
<li>Monka = monkey</li>
<li>Cave = horses</li>
<li>bo = but</li></ul>
Maj:
<ul>
<li>posu-ea sh vhzu una Monka?</li>
<li>vi bo algo Cave?</li></ul>
<h3>Challenge 3:</h3>
Translate:
<ul>
<li>Can you run faster than a bear who follows you?</li>
<li>I can not, but I will have to run faster than you.</li></ul>
Dictionary:
<ul>
<li>Orsa = bear</li>
<li>posu-tsa = can you</li>
<li>fogu = run</li>
<li>cnelo = fast</li>
<li>cnelh = faster</li>
<li>do = than</li>
<li>ormu = follow</li></ul>
Maj:
<ul>
<li>posu-ta sh fogu cnelh ca una Orsa do ta ormu?</li>
<li>ea no posu; bo ma va dovu sh fogu cnelh do ta.</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>