@syllst/ka 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/dist/{index-D9QQnpu5.js → index-D7wYzNIf.js} +18 -40
  2. package/dist/index-D7wYzNIf.js.map +1 -0
  3. package/dist/index-Dx8CaIyS.js +42 -0
  4. package/dist/index-Dx8CaIyS.js.map +1 -0
  5. package/dist/index.js +17 -11
  6. package/dist/index.js.map +1 -1
  7. package/dist/lesson-01-CXuaNjfX.js +196 -0
  8. package/dist/lesson-01-CXuaNjfX.js.map +1 -0
  9. package/dist/lesson-01-Cjq5zM3G.js +169 -0
  10. package/dist/lesson-01-Cjq5zM3G.js.map +1 -0
  11. package/dist/lesson-02-CW2iIZWk.js +242 -0
  12. package/dist/lesson-02-CW2iIZWk.js.map +1 -0
  13. package/dist/lesson-02-DEX5_pni.js +184 -0
  14. package/dist/lesson-02-DEX5_pni.js.map +1 -0
  15. package/dist/lesson-03-Cc9VcHwa.js +310 -0
  16. package/dist/lesson-03-Cc9VcHwa.js.map +1 -0
  17. package/dist/lesson-03-DIsrN1SX.js +192 -0
  18. package/dist/lesson-03-DIsrN1SX.js.map +1 -0
  19. package/dist/lesson-04-D3NM9z0Z.js +220 -0
  20. package/dist/lesson-04-D3NM9z0Z.js.map +1 -0
  21. package/dist/lesson-05-Dp2ZUMvn.js +227 -0
  22. package/dist/lesson-05-Dp2ZUMvn.js.map +1 -0
  23. package/dist/lesson-06-C_aRLClN.js +224 -0
  24. package/dist/lesson-06-C_aRLClN.js.map +1 -0
  25. package/dist/shared-DADMaTE7.js +27 -0
  26. package/dist/shared-DADMaTE7.js.map +1 -0
  27. package/dist/syllabi/alphabet/index.js +6 -5
  28. package/dist/syllabi/alphabet/index.js.map +1 -1
  29. package/dist/syllabi/essentials/index.d.ts +7 -0
  30. package/dist/syllabi/essentials/index.js +40 -0
  31. package/dist/syllabi/essentials/index.js.map +1 -0
  32. package/dist/syllabi/numbers/index.d.ts +7 -0
  33. package/dist/syllabi/numbers/index.js +10 -0
  34. package/dist/syllabi/numbers/index.js.map +1 -0
  35. package/package.json +23 -9
  36. package/src/syllabi/essentials/lessons/lesson-01.mdx +164 -0
  37. package/src/syllabi/essentials/lessons/lesson-02.mdx +179 -0
  38. package/src/syllabi/essentials/lessons/lesson-03.mdx +187 -0
  39. package/src/syllabi/essentials/lessons/lesson-04.mdx +215 -0
  40. package/src/syllabi/essentials/lessons/lesson-05.mdx +222 -0
  41. package/src/syllabi/essentials/lessons/lesson-06.mdx +219 -0
  42. package/src/syllabi/essentials/meta.mdx +87 -0
  43. package/src/syllabi/numbers/lessons/lesson-01.mdx +191 -0
  44. package/src/syllabi/numbers/lessons/lesson-02.mdx +237 -0
  45. package/src/syllabi/numbers/lessons/lesson-03.mdx +305 -0
  46. package/dist/index-D9QQnpu5.js.map +0 -1
@@ -1,27 +1,5 @@
1
- function a(n, r) {
2
- return {
3
- config: n,
4
- async loadLesson(e) {
5
- if (e < 1 || e > n.lessonCount)
6
- throw new Error(`Lesson ${e} not found. Valid range: 1-${n.lessonCount}`);
7
- const t = await r(e);
8
- return {
9
- number: e,
10
- rawContent: t.default
11
- };
12
- },
13
- async loadAllLessons() {
14
- const e = [];
15
- for (let t = 1; t <= n.lessonCount; t++)
16
- e.push(await this.loadLesson(t));
17
- return e;
18
- },
19
- getAvailableLessons() {
20
- return Array.from({ length: n.lessonCount }, (e, t) => t + 1);
21
- }
22
- };
23
- }
24
- const s = {
1
+ import { c as n } from "./shared-DADMaTE7.js";
2
+ const t = {
25
3
  id: "ka-alphabet",
26
4
  title: "ქართული ანბანი (Georgian Alphabet)",
27
5
  description: "Learn the Georgian Mkhedruli script - vowels and consonants",
@@ -33,8 +11,8 @@ const s = {
33
11
  icon: "alphabet",
34
12
  version: "0.1.0"
35
13
  };
36
- async function l(n) {
37
- switch (n) {
14
+ async function r(o) {
15
+ switch (o) {
38
16
  case 1:
39
17
  return import("./lesson-01-Dx39ahX1.js");
40
18
  case 2:
@@ -56,23 +34,23 @@ async function l(n) {
56
34
  case 10:
57
35
  return import("./lesson-10-BxDf0Pp3.js");
58
36
  default:
59
- throw new Error(`Lesson ${n} not found`);
37
+ throw new Error(`Lesson ${o} not found`);
60
38
  }
61
39
  }
62
- const o = a(s, l), i = o.loadLesson.bind(o), c = o.loadAllLessons.bind(o), u = o.getAvailableLessons.bind(o), d = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
40
+ const e = n(t, r), s = e.loadLesson.bind(e), a = e.loadAllLessons.bind(e), i = e.getAvailableLessons.bind(e), l = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
63
41
  __proto__: null,
64
- config: s,
65
- getAvailableLessons: u,
66
- loadAllLessons: c,
67
- loadLesson: i,
68
- loader: o
42
+ config: t,
43
+ getAvailableLessons: i,
44
+ loadAllLessons: a,
45
+ loadLesson: s,
46
+ loader: e
69
47
  }, Symbol.toStringTag, { value: "Module" }));
70
48
  export {
71
- c as a,
72
- i as b,
73
- s as c,
74
- u as g,
75
- d as i,
76
- o as l
49
+ a,
50
+ s as b,
51
+ t as c,
52
+ i as g,
53
+ l as i,
54
+ e as l
77
55
  };
78
- //# sourceMappingURL=index-D9QQnpu5.js.map
56
+ //# sourceMappingURL=index-D7wYzNIf.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-D7wYzNIf.js","sources":["../src/syllabi/alphabet/index.ts"],"sourcesContent":["/**\n * Georgian Alphabet syllabus\n */\n\nimport { createContentLoader, type SyllabusConfig, type ContentLoader } from '../../shared.js';\n\nexport const config: SyllabusConfig = {\n id: 'ka-alphabet',\n title: 'ქართული ანბანი (Georgian Alphabet)',\n description: 'Learn the Georgian Mkhedruli script - vowels and consonants',\n language: 'ka',\n locale: 'ka-GE',\n lessonCount: 10,\n difficulty: 'beginner',\n cefrLevel: 'A1',\n icon: 'alphabet',\n version: '0.1.0',\n};\n\nasync function loadLessonMDX(lessonNumber: number) {\n switch (lessonNumber) {\n case 1: return import('./lessons/lesson-01.mdx?raw');\n case 2: return import('./lessons/lesson-02.mdx?raw');\n case 3: return import('./lessons/lesson-03.mdx?raw');\n case 4: return import('./lessons/lesson-04.mdx?raw');\n case 5: return import('./lessons/lesson-05.mdx?raw');\n case 6: return import('./lessons/lesson-06.mdx?raw');\n case 7: return import('./lessons/lesson-07.mdx?raw');\n case 8: return import('./lessons/lesson-08.mdx?raw');\n case 9: return import('./lessons/lesson-09.mdx?raw');\n case 10: return import('./lessons/lesson-10.mdx?raw');\n default: throw new Error(`Lesson ${lessonNumber} not found`);\n }\n}\n\nexport const loader: ContentLoader = createContentLoader(config, loadLessonMDX);\nexport const loadLesson = loader.loadLesson.bind(loader);\nexport const loadAllLessons = loader.loadAllLessons.bind(loader);\nexport const getAvailableLessons = loader.getAvailableLessons.bind(loader);\n"],"names":["config","loadLessonMDX","lessonNumber","loader","createContentLoader","loadLesson","loadAllLessons","getAvailableLessons"],"mappings":";AAMO,MAAMA,IAAyB;AAAA,EACpC,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,aAAa;AAAA,EACb,UAAU;AAAA,EACV,QAAQ;AAAA,EACR,aAAa;AAAA,EACb,YAAY;AAAA,EACZ,WAAW;AAAA,EACX,MAAM;AAAA,EACN,SAAS;AACX;AAEA,eAAeC,EAAcC,GAAsB;AACjD,UAAQA,GAAA;AAAA,IACN,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAI,aAAO,OAAO,yBAA6B;AAAA,IACpD;AAAS,YAAM,IAAI,MAAM,UAAUA,CAAY,YAAY;AAAA,EAAA;AAE/D;AAEO,MAAMC,IAAwBC,EAAoBJ,GAAQC,CAAa,GACjEI,IAAaF,EAAO,WAAW,KAAKA,CAAM,GAC1CG,IAAiBH,EAAO,eAAe,KAAKA,CAAM,GAClDI,IAAsBJ,EAAO,oBAAoB,KAAKA,CAAM;;;;;;;;"}
@@ -0,0 +1,42 @@
1
+ import { c as s } from "./shared-DADMaTE7.js";
2
+ const o = {
3
+ id: "ka-numbers",
4
+ title: "ქართული რიცხვები (Georgian Numbers)",
5
+ description: "Learn Georgian number words and the vigesimal counting system",
6
+ language: "ka",
7
+ locale: "ka-GE",
8
+ lessonCount: 3,
9
+ difficulty: "beginner",
10
+ cefrLevel: "A1",
11
+ icon: "numbers",
12
+ version: "0.1.0"
13
+ };
14
+ async function a(n) {
15
+ switch (n) {
16
+ case 1:
17
+ return import("./lesson-01-CXuaNjfX.js");
18
+ case 2:
19
+ return import("./lesson-02-CW2iIZWk.js");
20
+ case 3:
21
+ return import("./lesson-03-Cc9VcHwa.js");
22
+ default:
23
+ throw new Error(`Lesson ${n} not found`);
24
+ }
25
+ }
26
+ const e = s(o, a), t = e.loadLesson.bind(e), r = e.loadAllLessons.bind(e), i = e.getAvailableLessons.bind(e), c = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
27
+ __proto__: null,
28
+ config: o,
29
+ getAvailableLessons: i,
30
+ loadAllLessons: r,
31
+ loadLesson: t,
32
+ loader: e
33
+ }, Symbol.toStringTag, { value: "Module" }));
34
+ export {
35
+ r as a,
36
+ t as b,
37
+ o as c,
38
+ i as g,
39
+ c as i,
40
+ e as l
41
+ };
42
+ //# sourceMappingURL=index-Dx8CaIyS.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index-Dx8CaIyS.js","sources":["../src/syllabi/numbers/index.ts"],"sourcesContent":["/**\n * Georgian Numbers syllabus\n */\n\nimport { createContentLoader, type SyllabusConfig, type ContentLoader } from '../../shared.js';\n\nexport const config: SyllabusConfig = {\n id: 'ka-numbers',\n title: 'ქართული რიცხვები (Georgian Numbers)',\n description: 'Learn Georgian number words and the vigesimal counting system',\n language: 'ka',\n locale: 'ka-GE',\n lessonCount: 3,\n difficulty: 'beginner',\n cefrLevel: 'A1',\n icon: 'numbers',\n version: '0.1.0',\n};\n\nasync function loadLessonMDX(lessonNumber: number) {\n switch (lessonNumber) {\n case 1: return import('./lessons/lesson-01.mdx?raw');\n case 2: return import('./lessons/lesson-02.mdx?raw');\n case 3: return import('./lessons/lesson-03.mdx?raw');\n default: throw new Error(`Lesson ${lessonNumber} not found`);\n }\n}\n\nexport const loader: ContentLoader = createContentLoader(config, loadLessonMDX);\nexport const loadLesson = loader.loadLesson.bind(loader);\nexport const loadAllLessons = loader.loadAllLessons.bind(loader);\nexport const getAvailableLessons = loader.getAvailableLessons.bind(loader);\n"],"names":["config","loadLessonMDX","lessonNumber","loader","createContentLoader","loadLesson","loadAllLessons","getAvailableLessons"],"mappings":";AAMO,MAAMA,IAAyB;AAAA,EACpC,IAAI;AAAA,EACJ,OAAO;AAAA,EACP,aAAa;AAAA,EACb,UAAU;AAAA,EACV,QAAQ;AAAA,EACR,aAAa;AAAA,EACb,YAAY;AAAA,EACZ,WAAW;AAAA,EACX,MAAM;AAAA,EACN,SAAS;AACX;AAEA,eAAeC,EAAcC,GAAsB;AACjD,UAAQA,GAAA;AAAA,IACN,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD,KAAK;AAAG,aAAO,OAAO,yBAA6B;AAAA,IACnD;AAAS,YAAM,IAAI,MAAM,UAAUA,CAAY,YAAY;AAAA,EAAA;AAE/D;AAEO,MAAMC,IAAwBC,EAAoBJ,GAAQC,CAAa,GACjEI,IAAaF,EAAO,WAAW,KAAKA,CAAM,GAC1CG,IAAiBH,EAAO,eAAe,KAAKA,CAAM,GAClDI,IAAsBJ,EAAO,oBAAoB,KAAKA,CAAM;;;;;;;;"}
package/dist/index.js CHANGED
@@ -1,16 +1,22 @@
1
- import { c as t } from "./index-D9QQnpu5.js";
2
- import { i as l, l as p } from "./index-D9QQnpu5.js";
3
- const i = [
4
- t
1
+ import { c as r } from "./index-D7wYzNIf.js";
2
+ import { i as p, l as g } from "./index-D7wYzNIf.js";
3
+ import { c as n } from "./index-Dx8CaIyS.js";
4
+ import { i as b, l as c } from "./index-Dx8CaIyS.js";
5
+ const e = [
6
+ r,
7
+ n
5
8
  ];
6
- function e(a) {
7
- return i.find((o) => o.id === a);
9
+ function f(o) {
10
+ return e.find((a) => a.id === o);
8
11
  }
9
12
  export {
10
- i as allConfigs,
11
- l as alphabet,
12
- t as alphabetConfig,
13
- p as alphabetLoader,
14
- e as getConfigById
13
+ e as allConfigs,
14
+ p as alphabet,
15
+ r as alphabetConfig,
16
+ g as alphabetLoader,
17
+ f as getConfigById,
18
+ b as numbers,
19
+ n as numbersConfig,
20
+ c as numbersLoader
15
21
  };
16
22
  //# sourceMappingURL=index.js.map
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["/**\n * @syllst/ka\n *\n * Georgian SYLLST content package.\n * Contains Georgian language syllabi: alphabet (Mkhedruli script).\n */\n\n// Re-export all syllabi\nexport * as alphabet from './syllabi/alphabet/index.js';\n\n// Re-export configs for convenience\nexport { config as alphabetConfig } from './syllabi/alphabet/index.js';\n\n// Re-export loaders for convenience\nexport { loader as alphabetLoader } from './syllabi/alphabet/index.js';\n\n// Re-export types from shared\nexport type { SyllabusConfig, ContentLoader, LoadedLesson } from './shared.js';\n\n// Export all configs as array for iteration\nimport { config as alphabetConfig } from './syllabi/alphabet/index.js';\n\nimport type { SyllabusConfig } from './shared.js';\n\n/**\n * All Georgian syllabi configurations\n */\nexport const allConfigs: SyllabusConfig[] = [\n alphabetConfig,\n];\n\n/**\n * Get a syllabus config by ID\n */\nexport function getConfigById(id: string): SyllabusConfig | undefined {\n return allConfigs.find(c => c.id === id);\n}\n"],"names":["allConfigs","alphabetConfig","getConfigById","id","c"],"mappings":";;AA2BO,MAAMA,IAA+B;AAAA,EAC1CC;AACF;AAKO,SAASC,EAAcC,GAAwC;AACpE,SAAOH,EAAW,KAAK,CAAAI,MAAKA,EAAE,OAAOD,CAAE;AACzC;"}
1
+ {"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["/**\n * @syllst/ka\n *\n * Georgian SYLLST content package.\n * Contains Georgian language syllabi: alphabet (Mkhedruli script), numbers.\n */\n\n// Re-export all syllabi\nexport * as alphabet from './syllabi/alphabet/index.js';\nexport * as numbers from './syllabi/numbers/index.js';\n\n// Re-export configs for convenience\nexport { config as alphabetConfig } from './syllabi/alphabet/index.js';\nexport { config as numbersConfig } from './syllabi/numbers/index.js';\n\n// Re-export loaders for convenience\nexport { loader as alphabetLoader } from './syllabi/alphabet/index.js';\nexport { loader as numbersLoader } from './syllabi/numbers/index.js';\n\n// Re-export types from shared\nexport type { SyllabusConfig, ContentLoader, LoadedLesson } from './shared.js';\n\n// Export all configs as array for iteration\nimport { config as alphabetConfig } from './syllabi/alphabet/index.js';\nimport { config as numbersConfig } from './syllabi/numbers/index.js';\n\nimport type { SyllabusConfig } from './shared.js';\n\n/**\n * All Georgian syllabi configurations\n */\nexport const allConfigs: SyllabusConfig[] = [\n alphabetConfig,\n numbersConfig,\n];\n\n/**\n * Get a syllabus config by ID\n */\nexport function getConfigById(id: string): SyllabusConfig | undefined {\n return allConfigs.find(c => c.id === id);\n}\n"],"names":["allConfigs","alphabetConfig","numbersConfig","getConfigById","id","c"],"mappings":";;;;AA+BO,MAAMA,IAA+B;AAAA,EAC1CC;AAAAA,EACAC;AACF;AAKO,SAASC,EAAcC,GAAwC;AACpE,SAAOJ,EAAW,KAAK,CAAAK,MAAKA,EAAE,OAAOD,CAAE;AACzC;"}
@@ -0,0 +1,196 @@
1
+ const n = `---
2
+ type: lesson
3
+ id: georgian-numbers-lesson-01
4
+ title: "გაკვეთილი 1 — ციფრები 0-9"
5
+ description: "Georgian numerals 0-9: Learning the basic number words"
6
+ order: 1
7
+ parentId: georgian-numbers
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - numbers
12
+ - vocabulary
13
+ - basics
14
+ metadata:
15
+ estimatedTime: 20
16
+ prerequisites: []
17
+ learningObjectives:
18
+ - id: obj-recognize-numbers-0-9
19
+ description: "Recognize Georgian number words 0-9"
20
+ skill: word-recognition
21
+ references: []
22
+ - id: obj-pronounce-numbers-0-9
23
+ description: "Pronounce Georgian numbers 0-9 correctly"
24
+ skill: word-pronunciation
25
+ references: []
26
+ - id: obj-produce-numbers-0-9
27
+ description: "Write and produce Georgian number words 0-9"
28
+ skill: word-production
29
+ references: []
30
+ ---
31
+
32
+ # გაკვეთილი 1 (Lesson 1) — Georgian Numbers 0-9
33
+
34
+ ## Introduction
35
+
36
+ Numbers are essential for daily communication, whether you're shopping, telling time, or giving your phone number. Georgian has its own number words that follow predictable patterns. Modern Georgia uses Arabic numerals (0-9) in writing, but you pronounce them using Georgian number words.
37
+
38
+ In this lesson, you'll learn the basic digits 0-9 in Georgian.
39
+
40
+ ## The Ten Basic Numbers
41
+
42
+ :::vocabulary-set{id="georgian-numbers-0-9" title="Numbers 0-9"}
43
+
44
+ ::vocab{id="num-zero" word="ნული" transliteration="nuli" translation="zero" category="number"}
45
+
46
+ ::vocab{id="num-one" word="ერთი" transliteration="erti" translation="one" category="number"}
47
+
48
+ ::vocab{id="num-two" word="ორი" transliteration="ori" translation="two" category="number"}
49
+
50
+ ::vocab{id="num-three" word="სამი" transliteration="sami" translation="three" category="number"}
51
+
52
+ ::vocab{id="num-four" word="ოთხი" transliteration="otkhi" translation="four" category="number"}
53
+
54
+ ::vocab{id="num-five" word="ხუთი" transliteration="khuti" translation="five" category="number"}
55
+
56
+ ::vocab{id="num-six" word="ექვსი" transliteration="ekvsi" translation="six" category="number"}
57
+
58
+ ::vocab{id="num-seven" word="შვიდი" transliteration="shvidi" translation="seven" category="number"}
59
+
60
+ ::vocab{id="num-eight" word="რვა" transliteration="rva" translation="eight" category="number"}
61
+
62
+ ::vocab{id="num-nine" word="ცხრა" transliteration="tskhra" translation="nine" category="number"}
63
+
64
+ :::
65
+
66
+ ## Pronunciation Guide
67
+
68
+ Georgian number words each have their own unique sound. Here are tips for pronunciation:
69
+
70
+ | Number | Georgian | Transliteration | Pronunciation Notes |
71
+ |--------|----------|-----------------|---------------------|
72
+ | 0 | ნული | nuli | "NOO-lee" — stress on first syllable |
73
+ | 1 | ერთი | erti | "ER-tee" — roll the R slightly |
74
+ | 2 | ორი | ori | "OH-ree" — simple two syllables |
75
+ | 3 | სამი | sami | "SAH-mee" — like "salami" without the L |
76
+ | 4 | ოთხი | otkhi | "OT-khee" — the KH is a soft guttural |
77
+ | 5 | ხუთი | khuti | "KHOO-tee" — KH is aspirated like German "ch" |
78
+ | 6 | ექვსი | ekvsi | "EKV-see" — quick consonant cluster |
79
+ | 7 | შვიდი | shvidi | "SHVEE-dee" — SHV blend together |
80
+ | 8 | რვა | rva | "R-va" — two sounds only, rolled R |
81
+ | 9 | ცხრა | tskhra | "TSKH-ra" — complex cluster, TS+KH+R |
82
+
83
+ ## Pattern Recognition
84
+
85
+ Notice these patterns in Georgian numbers:
86
+
87
+ 1. **Most numbers end in -ი**: ერთი, ორი, სამი, ოთხი, ხუთი, ექვსი, შვიდი
88
+ 2. **Exceptions**: რვა (8) and ცხრა (9) end in -ა
89
+ 3. **Consonant clusters**: Georgian loves complex clusters (ექვსი, შვიდი, ცხრა)
90
+ 4. **No tone system**: Unlike Thai, Georgian has no tones — stress is consistent
91
+
92
+ ## Cultural Context
93
+
94
+ In everyday Georgian life:
95
+
96
+ - **Shopping**: Prices are shown as Arabic numerals but spoken as Georgian words
97
+ - **Phone numbers**: Read digit by digit using Georgian number words
98
+ - **Dates**: Mix of Georgian and international systems
99
+ - **Addresses**: Building numbers spoken in Georgian
100
+ - **Age**: Always expressed with Georgian number words
101
+
102
+ ## Memory Tips
103
+
104
+ - **ერთი (one)**: Think "Earth has ONE moon"
105
+ - **ორი (two)**: Sounds like "OR-ee" — choose one OR the other (two options)
106
+ - **სამი (three)**: "SAH-mee" — three syllables in "salami"
107
+ - **ოთხი (four)**: Has FOUR letters
108
+ - **რვა (eight)**: Shortest word, easy to remember
109
+ - **ცხრა (nine)**: Most complex, saved for last
110
+
111
+ ## Writing Numbers
112
+
113
+ Georgians write numbers using Arabic numerals (0, 1, 2, 3...), just like English. However, when you see these digits, you read them using the Georgian words:
114
+
115
+ - 5 → read as "ხუთი" (khuti)
116
+ - 27 → read as "ოცდაშვიდი" (otsdashvidi) — you'll learn this in Lesson 2
117
+ - 100 → read as "ასი" (asi) — you'll learn this in Lesson 3
118
+
119
+ ## Key Points
120
+
121
+ 1. **Georgian uses Arabic numerals**: When writing, use 0-9
122
+ 2. **Speak Georgian words**: When reading, pronounce in Georgian
123
+ 3. **No gender or case changes**: Numbers stay the same form
124
+ 4. **Stress is predictable**: Usually on the first syllable
125
+ 5. **Build foundation**: These 10 words are essential for all larger numbers
126
+
127
+ ## Practice Exercises
128
+
129
+ :::exercise{id="ka-num-01-recognition" type="matching" title="Match Numbers to Words" skill="word-recognition" tests="" objectiveId="obj-recognize-numbers-0-9"}
130
+
131
+ **Question:** Match each Arabic numeral to its Georgian word
132
+
133
+ - 0
134
+ - 3
135
+ - 5
136
+ - 7
137
+ - 9
138
+
139
+ **Answer:**
140
+
141
+ - 0 = ნული (nuli)
142
+ - 3 = სამი (sami)
143
+ - 5 = ხუთი (khuti)
144
+ - 7 = შვიდი (shvidi)
145
+ - 9 = ცხრა (tskhra)
146
+
147
+ **Explanation:** Georgian number words are written with Mkhedruli script, but when you see Arabic numerals in Georgian text or signs, you pronounce them using these Georgian words.
148
+
149
+ :::
150
+
151
+ :::exercise{id="ka-num-01-pronunciation" type="fill-in-blank" title="Number Pronunciation" skill="word-pronunciation" tests="" objectiveId="obj-pronounce-numbers-0-9"}
152
+
153
+ **Question:** How do you pronounce these numbers in Georgian?
154
+
155
+ - 1 = ___
156
+ - 2 = ___
157
+ - 4 = ___
158
+ - 6 = ___
159
+ - 8 = ___
160
+
161
+ **Answer:**
162
+
163
+ - 1 = ერთი (erti) — "ER-tee"
164
+ - 2 = ორი (ori) — "OH-ree"
165
+ - 4 = ოთხი (otkhi) — "OT-khee"
166
+ - 6 = ექვსი (ekvsi) — "EKV-see"
167
+ - 8 = რვა (rva) — "R-va"
168
+
169
+ **Explanation:** Practice saying each number out loud. Notice that most end in -ი, except რვა (8) and ცხრა (9), which end in -ა.
170
+
171
+ :::
172
+
173
+ :::exercise{id="ka-num-01-production" type="multiple-choice" title="Write the Number" skill="word-production" tests="" objectiveId="obj-produce-numbers-0-9"}
174
+
175
+ **Question:** Which Georgian word represents the number 7?
176
+
177
+ **Options:**
178
+ - შვიდი
179
+ - ექვსი
180
+ - რვა
181
+ - ხუთი
182
+
183
+ **Answer:** 1
184
+
185
+ **Explanation:** The correct answer is შვიდი (shvidi), which means "seven." The consonant cluster შვ- is characteristic of Georgian and appears in this number word.
186
+
187
+ :::
188
+
189
+ ## What's Next
190
+
191
+ In Lesson 2, you'll learn how to count from 10 to 100 in Georgian, including the special system for teens (11-19) and the unique vigesimal (base-20) counting pattern that Georgian uses for larger numbers.
192
+ `;
193
+ export {
194
+ n as default
195
+ };
196
+ //# sourceMappingURL=lesson-01-CXuaNjfX.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lesson-01-CXuaNjfX.js","sources":["../src/syllabi/numbers/lessons/lesson-01.mdx?raw"],"sourcesContent":["export default \"---\\ntype: lesson\\nid: georgian-numbers-lesson-01\\ntitle: \\\"გაკვეთილი 1 — ციფრები 0-9\\\"\\ndescription: \\\"Georgian numerals 0-9: Learning the basic number words\\\"\\norder: 1\\nparentId: georgian-numbers\\ndifficulty: beginner\\ncefrLevel: A1\\ncategories:\\n - numbers\\n - vocabulary\\n - basics\\nmetadata:\\n estimatedTime: 20\\n prerequisites: []\\n learningObjectives:\\n - id: obj-recognize-numbers-0-9\\n description: \\\"Recognize Georgian number words 0-9\\\"\\n skill: word-recognition\\n references: []\\n - id: obj-pronounce-numbers-0-9\\n description: \\\"Pronounce Georgian numbers 0-9 correctly\\\"\\n skill: word-pronunciation\\n references: []\\n - id: obj-produce-numbers-0-9\\n description: \\\"Write and produce Georgian number words 0-9\\\"\\n skill: word-production\\n references: []\\n---\\n\\n# გაკვეთილი 1 (Lesson 1) — Georgian Numbers 0-9\\n\\n## Introduction\\n\\nNumbers are essential for daily communication, whether you're shopping, telling time, or giving your phone number. Georgian has its own number words that follow predictable patterns. Modern Georgia uses Arabic numerals (0-9) in writing, but you pronounce them using Georgian number words.\\n\\nIn this lesson, you'll learn the basic digits 0-9 in Georgian.\\n\\n## The Ten Basic Numbers\\n\\n:::vocabulary-set{id=\\\"georgian-numbers-0-9\\\" title=\\\"Numbers 0-9\\\"}\\n\\n::vocab{id=\\\"num-zero\\\" word=\\\"ნული\\\" transliteration=\\\"nuli\\\" translation=\\\"zero\\\" category=\\\"number\\\"}\\n\\n::vocab{id=\\\"num-one\\\" word=\\\"ერთი\\\" transliteration=\\\"erti\\\" translation=\\\"one\\\" category=\\\"number\\\"}\\n\\n::vocab{id=\\\"num-two\\\" word=\\\"ორი\\\" transliteration=\\\"ori\\\" translation=\\\"two\\\" category=\\\"number\\\"}\\n\\n::vocab{id=\\\"num-three\\\" word=\\\"სამი\\\" transliteration=\\\"sami\\\" translation=\\\"three\\\" category=\\\"number\\\"}\\n\\n::vocab{id=\\\"num-four\\\" word=\\\"ოთხი\\\" transliteration=\\\"otkhi\\\" translation=\\\"four\\\" category=\\\"number\\\"}\\n\\n::vocab{id=\\\"num-five\\\" word=\\\"ხუთი\\\" transliteration=\\\"khuti\\\" translation=\\\"five\\\" category=\\\"number\\\"}\\n\\n::vocab{id=\\\"num-six\\\" word=\\\"ექვსი\\\" transliteration=\\\"ekvsi\\\" translation=\\\"six\\\" category=\\\"number\\\"}\\n\\n::vocab{id=\\\"num-seven\\\" word=\\\"შვიდი\\\" transliteration=\\\"shvidi\\\" translation=\\\"seven\\\" category=\\\"number\\\"}\\n\\n::vocab{id=\\\"num-eight\\\" word=\\\"რვა\\\" transliteration=\\\"rva\\\" translation=\\\"eight\\\" category=\\\"number\\\"}\\n\\n::vocab{id=\\\"num-nine\\\" word=\\\"ცხრა\\\" transliteration=\\\"tskhra\\\" translation=\\\"nine\\\" category=\\\"number\\\"}\\n\\n:::\\n\\n## Pronunciation Guide\\n\\nGeorgian number words each have their own unique sound. Here are tips for pronunciation:\\n\\n| Number | Georgian | Transliteration | Pronunciation Notes |\\n|--------|----------|-----------------|---------------------|\\n| 0 | ნული | nuli | \\\"NOO-lee\\\" — stress on first syllable |\\n| 1 | ერთი | erti | \\\"ER-tee\\\" — roll the R slightly |\\n| 2 | ორი | ori | \\\"OH-ree\\\" — simple two syllables |\\n| 3 | სამი | sami | \\\"SAH-mee\\\" — like \\\"salami\\\" without the L |\\n| 4 | ოთხი | otkhi | \\\"OT-khee\\\" — the KH is a soft guttural |\\n| 5 | ხუთი | khuti | \\\"KHOO-tee\\\" — KH is aspirated like German \\\"ch\\\" |\\n| 6 | ექვსი | ekvsi | \\\"EKV-see\\\" — quick consonant cluster |\\n| 7 | შვიდი | shvidi | \\\"SHVEE-dee\\\" — SHV blend together |\\n| 8 | რვა | rva | \\\"R-va\\\" — two sounds only, rolled R |\\n| 9 | ცხრა | tskhra | \\\"TSKH-ra\\\" — complex cluster, TS+KH+R |\\n\\n## Pattern Recognition\\n\\nNotice these patterns in Georgian numbers:\\n\\n1. **Most numbers end in -ი**: ერთი, ორი, სამი, ოთხი, ხუთი, ექვსი, შვიდი\\n2. **Exceptions**: რვა (8) and ცხრა (9) end in -ა\\n3. **Consonant clusters**: Georgian loves complex clusters (ექვსი, შვიდი, ცხრა)\\n4. **No tone system**: Unlike Thai, Georgian has no tones — stress is consistent\\n\\n## Cultural Context\\n\\nIn everyday Georgian life:\\n\\n- **Shopping**: Prices are shown as Arabic numerals but spoken as Georgian words\\n- **Phone numbers**: Read digit by digit using Georgian number words\\n- **Dates**: Mix of Georgian and international systems\\n- **Addresses**: Building numbers spoken in Georgian\\n- **Age**: Always expressed with Georgian number words\\n\\n## Memory Tips\\n\\n- **ერთი (one)**: Think \\\"Earth has ONE moon\\\"\\n- **ორი (two)**: Sounds like \\\"OR-ee\\\" — choose one OR the other (two options)\\n- **სამი (three)**: \\\"SAH-mee\\\" — three syllables in \\\"salami\\\"\\n- **ოთხი (four)**: Has FOUR letters\\n- **რვა (eight)**: Shortest word, easy to remember\\n- **ცხრა (nine)**: Most complex, saved for last\\n\\n## Writing Numbers\\n\\nGeorgians write numbers using Arabic numerals (0, 1, 2, 3...), just like English. However, when you see these digits, you read them using the Georgian words:\\n\\n- 5 → read as \\\"ხუთი\\\" (khuti)\\n- 27 → read as \\\"ოცდაშვიდი\\\" (otsdashvidi) — you'll learn this in Lesson 2\\n- 100 → read as \\\"ასი\\\" (asi) — you'll learn this in Lesson 3\\n\\n## Key Points\\n\\n1. **Georgian uses Arabic numerals**: When writing, use 0-9\\n2. **Speak Georgian words**: When reading, pronounce in Georgian\\n3. **No gender or case changes**: Numbers stay the same form\\n4. **Stress is predictable**: Usually on the first syllable\\n5. **Build foundation**: These 10 words are essential for all larger numbers\\n\\n## Practice Exercises\\n\\n:::exercise{id=\\\"ka-num-01-recognition\\\" type=\\\"matching\\\" title=\\\"Match Numbers to Words\\\" skill=\\\"word-recognition\\\" tests=\\\"\\\" objectiveId=\\\"obj-recognize-numbers-0-9\\\"}\\n\\n**Question:** Match each Arabic numeral to its Georgian word\\n\\n- 0\\n- 3\\n- 5\\n- 7\\n- 9\\n\\n**Answer:**\\n\\n- 0 = ნული (nuli)\\n- 3 = სამი (sami)\\n- 5 = ხუთი (khuti)\\n- 7 = შვიდი (shvidi)\\n- 9 = ცხრა (tskhra)\\n\\n**Explanation:** Georgian number words are written with Mkhedruli script, but when you see Arabic numerals in Georgian text or signs, you pronounce them using these Georgian words.\\n\\n:::\\n\\n:::exercise{id=\\\"ka-num-01-pronunciation\\\" type=\\\"fill-in-blank\\\" title=\\\"Number Pronunciation\\\" skill=\\\"word-pronunciation\\\" tests=\\\"\\\" objectiveId=\\\"obj-pronounce-numbers-0-9\\\"}\\n\\n**Question:** How do you pronounce these numbers in Georgian?\\n\\n- 1 = ___\\n- 2 = ___\\n- 4 = ___\\n- 6 = ___\\n- 8 = ___\\n\\n**Answer:**\\n\\n- 1 = ერთი (erti) — \\\"ER-tee\\\"\\n- 2 = ორი (ori) — \\\"OH-ree\\\"\\n- 4 = ოთხი (otkhi) — \\\"OT-khee\\\"\\n- 6 = ექვსი (ekvsi) — \\\"EKV-see\\\"\\n- 8 = რვა (rva) — \\\"R-va\\\"\\n\\n**Explanation:** Practice saying each number out loud. Notice that most end in -ი, except რვა (8) and ცხრა (9), which end in -ა.\\n\\n:::\\n\\n:::exercise{id=\\\"ka-num-01-production\\\" type=\\\"multiple-choice\\\" title=\\\"Write the Number\\\" skill=\\\"word-production\\\" tests=\\\"\\\" objectiveId=\\\"obj-produce-numbers-0-9\\\"}\\n\\n**Question:** Which Georgian word represents the number 7?\\n\\n**Options:**\\n- შვიდი\\n- ექვსი\\n- რვა\\n- ხუთი\\n\\n**Answer:** 1\\n\\n**Explanation:** The correct answer is შვიდი (shvidi), which means \\\"seven.\\\" The consonant cluster შვ- is characteristic of Georgian and appears in this number word.\\n\\n:::\\n\\n## What's Next\\n\\nIn Lesson 2, you'll learn how to count from 10 to 100 in Georgian, including the special system for teens (11-19) and the unique vigesimal (base-20) counting pattern that Georgian uses for larger numbers.\\n\""],"names":["lesson01"],"mappings":"AAAA,MAAAA,IAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}
@@ -0,0 +1,169 @@
1
+ const e = `---
2
+ type: lesson
3
+ id: georgian-essentials-lesson-01
4
+ title: "გაკვეთილი 1 — მოკითხვა და გამოთხოვება"
5
+ description: "Greetings and Farewells: გამარჯობა and meeting people"
6
+ order: 1
7
+ parentId: georgian-essentials
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - greetings
12
+ - farewells
13
+ - basics
14
+ metadata:
15
+ estimatedTime: 30
16
+ prerequisites: []
17
+ learningObjectives:
18
+ - id: obj-greetings-hello-goodbye
19
+ description: "Say hello and goodbye in Georgian"
20
+ skill: word-production
21
+ - id: obj-greetings-time-of-day
22
+ description: "Use time-appropriate greetings"
23
+ skill: situational-response
24
+ - id: obj-greetings-formal-informal
25
+ description: "Distinguish formal and informal registers"
26
+ skill: polite-register
27
+ ---
28
+
29
+ # გაკვეთილი 1 (Lesson 1) — Greetings and Farewells
30
+
31
+ ## Introduction
32
+
33
+ The first word you will use in Georgian is გამარჯობა (gamarjoba) — hello. Georgian greetings reflect the culture's warmth and hospitality. Unlike some languages, Georgian greetings vary by time of day and by the number of people you are addressing, which makes them rich and expressive.
34
+
35
+ ## The Universal Greeting
36
+
37
+ :::vocabulary-set{id="ka-greetings-core" title="Core Greetings"}
38
+
39
+ ::vocab-item{id="gamarjoba" word="გამარჯობა" pronunciation="ga-mar-jo-ba" meaning="Hello (to one person)"}
40
+
41
+ ::vocab-item{id="gamarjobat" word="გამარჯობათ" pronunciation="ga-mar-jo-bat" meaning="Hello (to multiple people, or formal)"}
42
+
43
+ ::vocab-item{id="nakhvamdis" word="ნახვამდის" pronunciation="nakh-vam-dis" meaning="Goodbye"}
44
+
45
+ ::vocab-item{id="monaximet" word="მოგვნახეთ" pronunciation="mo-gv-na-khet" meaning="Come and visit us (warm farewell)"}
46
+
47
+ :::
48
+
49
+ ## Time-Specific Greetings
50
+
51
+ Georgian has distinct greetings for different parts of the day:
52
+
53
+ | Georgian | Pronunciation | Meaning |
54
+ |----------|---------------|---------|
55
+ | დილა მშვიდობისა | di-la mshvi-do-bi-sa | Good morning |
56
+ | შუადღე მშვიდობისა | shua-dghe mshvi-do-bi-sa | Good afternoon |
57
+ | საღამო მშვიდობისა | sa-gha-mo mshvi-do-bi-sa | Good evening |
58
+ | ღამე მშვიდობისა | gha-me mshvi-do-bi-sa | Good night |
59
+
60
+ The word **მშვიდობისა** (mshvidobisa) means "of peace" — so every time-specific Georgian greeting literally wishes the other person peace.
61
+
62
+ ## Formal vs Informal
63
+
64
+ Georgian distinguishes between talking to one person and talking to a group or showing respect:
65
+
66
+ | Situation | Georgian | Notes |
67
+ |-----------|----------|-------|
68
+ | Greeting a friend | გამარჯობა | Singular, informal |
69
+ | Greeting a stranger or elder | გამარჯობათ | Plural/formal, shows respect |
70
+ | Greeting multiple people | გამარჯობათ | Always use plural form |
71
+
72
+ ## Parting Words
73
+
74
+ :::vocabulary-set{id="ka-farewells" title="Farewells"}
75
+
76
+ ::vocab-item{id="nakhvamdis-2" word="ნახვამდის" pronunciation="nakh-vam-dis" meaning="Goodbye (until we meet again)"}
77
+
78
+ ::vocab-item{id="kargad-iyavi" word="კარგად იყავი" pronunciation="kar-gad i-ya-vi" meaning="Take care (to one person)"}
79
+
80
+ ::vocab-item{id="kargad-iyavit" word="კარგად იყავით" pronunciation="kar-gad i-ya-vit" meaning="Take care (to multiple, or formal)"}
81
+
82
+ ::vocab-item{id="tsudi-ar-iyos" word="ცუდი არ იყოს" pronunciation="tsu-di ar i-yos" meaning="May nothing bad happen (warm farewell)"}
83
+
84
+ :::
85
+
86
+ ## Sample Conversation
87
+
88
+ **A**: გამარჯობა! (Hello!)
89
+ **B**: გამარჯობა! როგორ ხარ? (Hello! How are you?)
90
+ **A**: კარგად, გმადლობთ. შენ? (Fine, thank you. And you?)
91
+ **B**: მეც კარგად. (I'm also fine.)
92
+ **A**: ნახვამდის! (Goodbye!)
93
+ **B**: კარგად იყავი! (Take care!)
94
+
95
+ ## Cultural Note: გამარჯობა
96
+
97
+ The word გამარჯობა literally derives from **გამარჯვება** (gamarjveba), meaning "victory." The traditional greeting is thus a wish: "May you be victorious!" This reflects Georgia's long history of defending its culture and independence.
98
+
99
+ ## Key Points
100
+
101
+ 1. **გამარჯობა works for hello**: Use it any time of day
102
+ 2. **Add -თ for formality or groups**: გამარჯობა → გამარჯობათ
103
+ 3. **ნახვამდის for goodbye**: Literally "until we see each other again"
104
+ 4. **Time greetings all end in მშვიდობისა**: The word for "peace"
105
+
106
+ ## Practice Exercises
107
+
108
+ :::exercise{id="ka-ess-01-greetings-match" type="matching" title="Match Greetings to Situations" skill="situational-response" objectiveId="obj-greetings-time-of-day"}
109
+
110
+ **Question:** Match each greeting to the correct time of day
111
+
112
+ - დილა მშვიდობისა
113
+ - შუადღე მშვიდობისა
114
+ - საღამო მშვიდობისა
115
+ - ღამე მშვიდობისა
116
+
117
+ **Answer:**
118
+
119
+ - დილა მშვიდობისა = Good morning (დილა means morning)
120
+ - შუადღე მშვიდობისა = Good afternoon (შუადღე means midday)
121
+ - საღამო მშვიდობისა = Good evening (საღამო means evening)
122
+ - ღამე მშვიდობისა = Good night (ღამე means night)
123
+
124
+ **Explanation:** Every Georgian time greeting uses მშვიდობისა, which means "of peace." The first word changes to indicate the time of day.
125
+
126
+ :::
127
+
128
+ :::exercise{id="ka-ess-01-formal-informal" type="multiple-choice" title="Formal or Informal?" skill="polite-register" objectiveId="obj-greetings-formal-informal"}
129
+
130
+ **Question:** You are greeting an elderly Georgian woman you have just met. Which greeting do you use?
131
+
132
+ **Options:**
133
+ - გამარჯობა
134
+ - გამარჯობათ
135
+ - ნახვამდის
136
+ - კარგად იყავი
137
+
138
+ **Answer:** 2
139
+
140
+ **Explanation:** Use გამარჯობათ (with -თ) to show respect to elders, strangers, or when addressing more than one person. The -თ suffix marks formality and plurality in Georgian.
141
+
142
+ :::
143
+
144
+ :::exercise{id="ka-ess-01-hello-goodbye" type="fill-in-blank" title="Hello and Goodbye" skill="word-production" objectiveId="obj-greetings-hello-goodbye"}
145
+
146
+ **Question:** Complete each exchange with the correct Georgian word
147
+
148
+ 1. Meeting a friend: ___ (hello)
149
+ 2. Leaving a friend: ___ (goodbye)
150
+ 3. Wishing someone well: კარგად ___ (take care, singular)
151
+
152
+ **Answer:**
153
+
154
+ 1. გამარჯობა
155
+ 2. ნახვამდის
156
+ 3. კარგად **იყავი**
157
+
158
+ **Explanation:** გამარჯობა is the standard hello, ნახვამდის is goodbye, and კარგად იყავი means "be well" or "take care" — a warm way to part from someone.
159
+
160
+ :::
161
+
162
+ ## What's Next
163
+
164
+ In Lesson 2, you will learn the essential polite expressions — please, thank you, and sorry — that are the foundation of courteous Georgian interaction.
165
+ `;
166
+ export {
167
+ e as default
168
+ };
169
+ //# sourceMappingURL=lesson-01-Cjq5zM3G.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"lesson-01-Cjq5zM3G.js","sources":["../src/syllabi/essentials/lessons/lesson-01.mdx?raw"],"sourcesContent":["export default \"---\\ntype: lesson\\nid: georgian-essentials-lesson-01\\ntitle: \\\"გაკვეთილი 1 — მოკითხვა და გამოთხოვება\\\"\\ndescription: \\\"Greetings and Farewells: გამარჯობა and meeting people\\\"\\norder: 1\\nparentId: georgian-essentials\\ndifficulty: beginner\\ncefrLevel: A1\\ncategories:\\n - greetings\\n - farewells\\n - basics\\nmetadata:\\n estimatedTime: 30\\n prerequisites: []\\n learningObjectives:\\n - id: obj-greetings-hello-goodbye\\n description: \\\"Say hello and goodbye in Georgian\\\"\\n skill: word-production\\n - id: obj-greetings-time-of-day\\n description: \\\"Use time-appropriate greetings\\\"\\n skill: situational-response\\n - id: obj-greetings-formal-informal\\n description: \\\"Distinguish formal and informal registers\\\"\\n skill: polite-register\\n---\\n\\n# გაკვეთილი 1 (Lesson 1) — Greetings and Farewells\\n\\n## Introduction\\n\\nThe first word you will use in Georgian is გამარჯობა (gamarjoba) — hello. Georgian greetings reflect the culture's warmth and hospitality. Unlike some languages, Georgian greetings vary by time of day and by the number of people you are addressing, which makes them rich and expressive.\\n\\n## The Universal Greeting\\n\\n:::vocabulary-set{id=\\\"ka-greetings-core\\\" title=\\\"Core Greetings\\\"}\\n\\n::vocab-item{id=\\\"gamarjoba\\\" word=\\\"გამარჯობა\\\" pronunciation=\\\"ga-mar-jo-ba\\\" meaning=\\\"Hello (to one person)\\\"}\\n\\n::vocab-item{id=\\\"gamarjobat\\\" word=\\\"გამარჯობათ\\\" pronunciation=\\\"ga-mar-jo-bat\\\" meaning=\\\"Hello (to multiple people, or formal)\\\"}\\n\\n::vocab-item{id=\\\"nakhvamdis\\\" word=\\\"ნახვამდის\\\" pronunciation=\\\"nakh-vam-dis\\\" meaning=\\\"Goodbye\\\"}\\n\\n::vocab-item{id=\\\"monaximet\\\" word=\\\"მოგვნახეთ\\\" pronunciation=\\\"mo-gv-na-khet\\\" meaning=\\\"Come and visit us (warm farewell)\\\"}\\n\\n:::\\n\\n## Time-Specific Greetings\\n\\nGeorgian has distinct greetings for different parts of the day:\\n\\n| Georgian | Pronunciation | Meaning |\\n|----------|---------------|---------|\\n| დილა მშვიდობისა | di-la mshvi-do-bi-sa | Good morning |\\n| შუადღე მშვიდობისა | shua-dghe mshvi-do-bi-sa | Good afternoon |\\n| საღამო მშვიდობისა | sa-gha-mo mshvi-do-bi-sa | Good evening |\\n| ღამე მშვიდობისა | gha-me mshvi-do-bi-sa | Good night |\\n\\nThe word **მშვიდობისა** (mshvidobisa) means \\\"of peace\\\" — so every time-specific Georgian greeting literally wishes the other person peace.\\n\\n## Formal vs Informal\\n\\nGeorgian distinguishes between talking to one person and talking to a group or showing respect:\\n\\n| Situation | Georgian | Notes |\\n|-----------|----------|-------|\\n| Greeting a friend | გამარჯობა | Singular, informal |\\n| Greeting a stranger or elder | გამარჯობათ | Plural/formal, shows respect |\\n| Greeting multiple people | გამარჯობათ | Always use plural form |\\n\\n## Parting Words\\n\\n:::vocabulary-set{id=\\\"ka-farewells\\\" title=\\\"Farewells\\\"}\\n\\n::vocab-item{id=\\\"nakhvamdis-2\\\" word=\\\"ნახვამდის\\\" pronunciation=\\\"nakh-vam-dis\\\" meaning=\\\"Goodbye (until we meet again)\\\"}\\n\\n::vocab-item{id=\\\"kargad-iyavi\\\" word=\\\"კარგად იყავი\\\" pronunciation=\\\"kar-gad i-ya-vi\\\" meaning=\\\"Take care (to one person)\\\"}\\n\\n::vocab-item{id=\\\"kargad-iyavit\\\" word=\\\"კარგად იყავით\\\" pronunciation=\\\"kar-gad i-ya-vit\\\" meaning=\\\"Take care (to multiple, or formal)\\\"}\\n\\n::vocab-item{id=\\\"tsudi-ar-iyos\\\" word=\\\"ცუდი არ იყოს\\\" pronunciation=\\\"tsu-di ar i-yos\\\" meaning=\\\"May nothing bad happen (warm farewell)\\\"}\\n\\n:::\\n\\n## Sample Conversation\\n\\n**A**: გამარჯობა! (Hello!)\\n**B**: გამარჯობა! როგორ ხარ? (Hello! How are you?)\\n**A**: კარგად, გმადლობთ. შენ? (Fine, thank you. And you?)\\n**B**: მეც კარგად. (I'm also fine.)\\n**A**: ნახვამდის! (Goodbye!)\\n**B**: კარგად იყავი! (Take care!)\\n\\n## Cultural Note: გამარჯობა\\n\\nThe word გამარჯობა literally derives from **გამარჯვება** (gamarjveba), meaning \\\"victory.\\\" The traditional greeting is thus a wish: \\\"May you be victorious!\\\" This reflects Georgia's long history of defending its culture and independence.\\n\\n## Key Points\\n\\n1. **გამარჯობა works for hello**: Use it any time of day\\n2. **Add -თ for formality or groups**: გამარჯობა → გამარჯობათ\\n3. **ნახვამდის for goodbye**: Literally \\\"until we see each other again\\\"\\n4. **Time greetings all end in მშვიდობისა**: The word for \\\"peace\\\"\\n\\n## Practice Exercises\\n\\n:::exercise{id=\\\"ka-ess-01-greetings-match\\\" type=\\\"matching\\\" title=\\\"Match Greetings to Situations\\\" skill=\\\"situational-response\\\" objectiveId=\\\"obj-greetings-time-of-day\\\"}\\n\\n**Question:** Match each greeting to the correct time of day\\n\\n- დილა მშვიდობისა\\n- შუადღე მშვიდობისა\\n- საღამო მშვიდობისა\\n- ღამე მშვიდობისა\\n\\n**Answer:**\\n\\n- დილა მშვიდობისა = Good morning (დილა means morning)\\n- შუადღე მშვიდობისა = Good afternoon (შუადღე means midday)\\n- საღამო მშვიდობისა = Good evening (საღამო means evening)\\n- ღამე მშვიდობისა = Good night (ღამე means night)\\n\\n**Explanation:** Every Georgian time greeting uses მშვიდობისა, which means \\\"of peace.\\\" The first word changes to indicate the time of day.\\n\\n:::\\n\\n:::exercise{id=\\\"ka-ess-01-formal-informal\\\" type=\\\"multiple-choice\\\" title=\\\"Formal or Informal?\\\" skill=\\\"polite-register\\\" objectiveId=\\\"obj-greetings-formal-informal\\\"}\\n\\n**Question:** You are greeting an elderly Georgian woman you have just met. Which greeting do you use?\\n\\n**Options:**\\n- გამარჯობა\\n- გამარჯობათ\\n- ნახვამდის\\n- კარგად იყავი\\n\\n**Answer:** 2\\n\\n**Explanation:** Use გამარჯობათ (with -თ) to show respect to elders, strangers, or when addressing more than one person. The -თ suffix marks formality and plurality in Georgian.\\n\\n:::\\n\\n:::exercise{id=\\\"ka-ess-01-hello-goodbye\\\" type=\\\"fill-in-blank\\\" title=\\\"Hello and Goodbye\\\" skill=\\\"word-production\\\" objectiveId=\\\"obj-greetings-hello-goodbye\\\"}\\n\\n**Question:** Complete each exchange with the correct Georgian word\\n\\n1. Meeting a friend: ___ (hello)\\n2. Leaving a friend: ___ (goodbye)\\n3. Wishing someone well: კარგად ___ (take care, singular)\\n\\n**Answer:**\\n\\n1. გამარჯობა\\n2. ნახვამდის\\n3. კარგად **იყავი**\\n\\n**Explanation:** გამარჯობა is the standard hello, ნახვამდის is goodbye, and კარგად იყავი means \\\"be well\\\" or \\\"take care\\\" — a warm way to part from someone.\\n\\n:::\\n\\n## What's Next\\n\\nIn Lesson 2, you will learn the essential polite expressions — please, thank you, and sorry — that are the foundation of courteous Georgian interaction.\\n\""],"names":["lesson01"],"mappings":"AAAA,MAAAA,IAAe;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;"}