-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsiza.html
More file actions
152 lines (124 loc) · 4.01 KB
/
Copy pathsiza.html
File metadata and controls
152 lines (124 loc) · 4.01 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>Siza Challenge</h1>
<div>
<img src="img/siza.png" alt="Siza" width="200"/>
</div>
<div>
<br>
Next 4 challenges are about seasons. This word comes from French "saison" and is similar to Romanian "sezon". Maj word for season represents a noun and is read: /siza/. Also you can refer to a season using the more common word "tepa" = time.
Dictionary:
<ul>
<li>foro-tepa: flourished time = spring</li>
<li>soro-tepa: sunny time = summer</li>
<li>luvo-tepa: rainy time = autumn</li>
<li>nejo-tepa: snowy time = winter</li></ul>
<h3>Challenge 1:</h3>
Translate:
<ul>
<li>The trees were blooming.</li>
<li>It was spring; my favorite season.</li></ul>
Dictionary:
<ul>
<li>Arba = tree</li>
<li>sh floru = to bloom</li>
<li>fevo = favorite</li></ul>
Maj:
<ul>
<li>Le Arbe sonu-pa floro.</li>
<li>Lo sonu-pa foro-tepa; mi fevo siza.</li></ul>
<h3>Challenge 2:</h3>
Translate:
<ul>
<li>Outside it is now suny and all fields are green.</li>
<li>It is the summer. I'm going on vacation.</li></ul>
Dictionary:
<ul>
<li>eksa = outside</li>
<li>felda = field</li>
<li>vatsa = vacation</li>
<li>andu = going</li>
<li>soro = sunny</li>
<li>oma felde = all fields</li>
<li>sonu geno = are green</li></ul>
Maj:
<ul>
<li>eksa oi sonu soro ci oma felde sonu geno;</li>
<li>lo sonu la soro-tepa; ea andu yn vatsa; </li></ul>
<h3>Challenge 3:</h3>
Translate:
<ul>
<li>The leaves of all trees soon will be yellow.</li>
<li>Without any doubt it will be the autumn.</li></ul>
Dictionary:
<ul>
<li>le xoje = the leafs</li>
<li>ome Arbe = all trees</li>
<li>sonu-va = will be</li>
<li>ielo = yellow</li>
<li>seo = soon</li>
<li>uko = without</li>
<li>duda = doubt</li>
<li>oce = any </li></ul>
Maj:
<ul>
<li>le xoje de ome Arbe seo sonu-va ielo;</li>
<li>uko oce duda lo sonu-va luvo-tepa; </li></ul>
Note: In this example we have used the adverb "seo" = soon before the verb sonu-va. The adverb can be placed in front of the verb. Another issue is that ielo is an adjective placed after the verb sonu-va. In this case the adjective is referring to the subject xoje.
<h3>Challenge 4:</h3>
Translate:
<ul>
<li>In the winter there will be a lot of snow.</li>
<li>We must wear warm clothes and gloves.</li></ul>
Dictionary
<ul>
<li>fil = much</li>
<li>neja = snow </li>
<li>vetu= to wear/ to dress</li>
<li>cado = warm</li>
<li>ropa = clothes</li>
<li>gune = gloves</li></ul>
Maj:
<ul>
<li>in la nejo-tepa sonu-va fil neja;</li>
<li>noi dovu sh vetu rope cado cy gune; </li></ul>
<br>
Note:
Observe the order of words in Maj is OA: (Object Adjective): "ropa cado". You can use "cado-ropa". This is a composite word created using the A-O pattern. This is the secret of inversion, you must use dash between the two words
</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>