diff --git a/dictionary.json b/dictionary.json index 4c4430e..1d1dfbf 100644 --- a/dictionary.json +++ b/dictionary.json @@ -1,9 +1,38 @@ { - "apbiţeх": "winter", + "A": "🥭", + "B": "🥭", + "C": "🥭", + "Ĉ": "🥭", + "G": "🥭", + "S": "🥭", + "Н": "🥭", + "І": "🥭", + "Ţ": "🥭", + "Ø": "🥭", + "K": "🥭", + "Р": "🥭", + "Ř": "🥭", + "Х": "🥭", + "У": "🥭", + "Ÿ": "🥭", + "Ñ": "🥭", + "Ш": "🥭", + "Д": "🥭", + "Е": "🥭", + "Ω": "🥭", + "Ы": "🥭", + "Q": "🥭", + "Ж": "🥭", + "Ψ": "🥭", + "M": "🥭", + "П": "🥭", + "Ə": "🥭", + "Λ": "🥭", + "Σ": "🥭", + "aпbiţех": "winter", "ba": "with", "cы": "you(more pesone)", "gi": "you(one persone)", - "saţi": "cute", "ţÿ": "tea", "øнa": "she", "øн": "he", @@ -19,11 +48,24 @@ "жəkiλ": "dog", "ψiţ": "a lot", "ψiţпунk": "language", - "ψeț": "eat", + "ψeț": "eat, drink", "пaţařøm": "cat", "пунk": "word", "пəĉa": "true", "əλam": "life", "əλameп": "human", - "ς": "in" + "acəψøн":"noun", + "qыхĉ":"adjective", + "ωλøδ":"verb", + "ς": "in", + "рəmøп" : "question", + "δеñ": "place", + "møнi": "if", + "igac": "fire", + "ωaba": "water", + "руţ": "air", + "λÿc": "letter", + "δøωəñ": "fraction", + "sañøнaрa": "goodbye", + "miпøi": "hello" } \ No newline at end of file diff --git a/index.html b/index.html index 77433de..f7d3417 100644 --- a/index.html +++ b/index.html @@ -23,7 +23,7 @@

Alphabet

Tţ [t]
Øø [ɒ]
Kk [k]
-Ьь [ ' ]
+ь [ ' ]
Рр [r]
Řř [r̥]
Хх [х]
@@ -47,7 +47,23 @@

Alphabet

Grammatical

-

Numbers(Λьmіны)

+

Letters (Λÿcы)

+ +Vowels: a, і, ø, ÿ, е, ы, ə, ς
+Consonants: b, c, ĉ, g, s, н, ţ, k, р, ř, х, ñ, ш, δ, ω, q, ж, ψ, m, п, λ
+Auxiliary letters: ь
+Ψλaţςж: Ξ
+ +

Nouns (Acəψøны)

+ +Nouns in Elamep have only number: Singular and Plural. +
+To make Plural:
+ — add "ы" if the word ends in a consonant.
+ — add "i" if the word ends in a vowel or "ñ". + + +

Numbers(Λьmіны)

@@ -186,16 +202,33 @@

Numbers(Λьmіны)

- "ø" for connecting bits
- Form 10 when something is connecteded to it
- The first two letters of the first numbers
- -

Nouns (Acəψøны)

+ "ø" for connecting bits.
+ Form 10 when something is connecteded to it.
+ The first two letters of the first numbers.
+ +

Fractions:

+

Common fractions(δøωəñi)

+Numerator + ␣ + denominator + change "ø" or "əø" to "a".
+Examples:
+1/2 its "ĉasø δaψəрa"
+2/3 its "δaψəрəø ţeřa"
+

Decimal fractions(δøωəñi)

+0.1 — qəрəøĉ ĉasøbøpim
+0.12 — qəрəøĉ bøpøδaψəрəøшamim
+ + +

Adjectives (Qыхĉы)

+ +

Verbs(Qыхĉы)

Dictionary(Əλm to Eng)

+ +   diff --git a/script.js b/script.js index dec735d..d62bd9d 100644 --- a/script.js +++ b/script.js @@ -3,7 +3,8 @@ function playSound(button) { const audio = new Audio(soundFile); audio.play(); } -const order = 'abcĉgsнiţøkьрřхуÿñшδеωыqжψmпəλςΞ'; +const order = "AaBbCcĈĉGgSsНнІiŢţØøKkЬьРрŘřХхУуŸÿÑñШшДδЕеΩωЫыQqЖжΨψMmПпƏəΛλΣςΞΞ"; +const orderBig = "ABCĈGSНІŢØKРŘХУŸÑШДЕΩЫQЖΨMПƏΛΣ"; function customSort(words, customOrder) { function compareStrings(a, b) { @@ -31,7 +32,11 @@ fetch('dictionary.json') let term = key; let definition = data[key]; let entry = document.createElement('p'); + if(orderBig.includes(term)) { + entry.textContent = term; + } else { entry.textContent = `${term} — ${definition}`; + } dictionaryContent.appendChild(entry); }); }) diff --git a/style.css b/style.css index 044da53..a357394 100644 --- a/style.css +++ b/style.css @@ -33,7 +33,7 @@ body { @media (max-width: 768px) { body { - font-size: 16px; + font-size: 15px; } h1 { font-size: 25px; @@ -74,5 +74,16 @@ span2 { span3 { color: #EC132C; } - + +.footer { + border-top: 1px solid black; + color: gray; + padding: 10px; + text-decoration: none; +} + +.footer a { + color: gray; + text-decoration: none; +} \ No newline at end of file