@polyglot-bundles/fr-syllabi 0.1.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 (38) hide show
  1. package/dist/index.d.ts +80 -0
  2. package/dist/index.js +92 -0
  3. package/dist/index.js.map +1 -0
  4. package/dist/lesson-01-CKlUAQ-l.js +73 -0
  5. package/dist/lesson-01-CKlUAQ-l.js.map +1 -0
  6. package/dist/lesson-02-Sg_0WpK1.js +76 -0
  7. package/dist/lesson-02-Sg_0WpK1.js.map +1 -0
  8. package/dist/lesson-03-BFuDIIZH.js +75 -0
  9. package/dist/lesson-03-BFuDIIZH.js.map +1 -0
  10. package/dist/lesson-04-DOobkbMZ.js +74 -0
  11. package/dist/lesson-04-DOobkbMZ.js.map +1 -0
  12. package/dist/lesson-05-bDgswwl9.js +74 -0
  13. package/dist/lesson-05-bDgswwl9.js.map +1 -0
  14. package/dist/lesson-06-CkchAanW.js +77 -0
  15. package/dist/lesson-06-CkchAanW.js.map +1 -0
  16. package/dist/lesson-07-BJh9y1Qk.js +78 -0
  17. package/dist/lesson-07-BJh9y1Qk.js.map +1 -0
  18. package/dist/lesson-08-BepauIPO.js +77 -0
  19. package/dist/lesson-08-BepauIPO.js.map +1 -0
  20. package/dist/lesson-09-CeGc0fz7.js +76 -0
  21. package/dist/lesson-09-CeGc0fz7.js.map +1 -0
  22. package/dist/lesson-10-A9U08tSq.js +77 -0
  23. package/dist/lesson-10-A9U08tSq.js.map +1 -0
  24. package/dist/syllabi/basics/index.d.ts +7 -0
  25. package/dist/syllabi/basics/index.js +70 -0
  26. package/dist/syllabi/basics/index.js.map +1 -0
  27. package/package.json +57 -0
  28. package/src/syllabi/basics/lessons/lesson-01.mdx +68 -0
  29. package/src/syllabi/basics/lessons/lesson-02.mdx +71 -0
  30. package/src/syllabi/basics/lessons/lesson-03.mdx +70 -0
  31. package/src/syllabi/basics/lessons/lesson-04.mdx +69 -0
  32. package/src/syllabi/basics/lessons/lesson-05.mdx +69 -0
  33. package/src/syllabi/basics/lessons/lesson-06.mdx +72 -0
  34. package/src/syllabi/basics/lessons/lesson-07.mdx +73 -0
  35. package/src/syllabi/basics/lessons/lesson-08.mdx +72 -0
  36. package/src/syllabi/basics/lessons/lesson-09.mdx +71 -0
  37. package/src/syllabi/basics/lessons/lesson-10.mdx +72 -0
  38. package/src/syllabi/basics/meta.mdx +81 -0
@@ -0,0 +1,71 @@
1
+ ---
2
+ type: lesson
3
+ id: french-basics-lesson-02
4
+ title: "Leçon 2 — Les Nombres"
5
+ description: "Numbers 1-12: un, deux, trois, quatre, cinq..."
6
+ order: 2
7
+ parentId: french-basics-vocabulary
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - numbers
12
+ metadata:
13
+ estimatedTime: 15
14
+ prerequisites: [french-basics-lesson-01]
15
+ objectives:
16
+ - "Count from 1 to 12 in French"
17
+ - "Understand French number pronunciation"
18
+ ---
19
+
20
+ # Leçon 2 (Lesson 2) — Les Nombres
21
+
22
+ ## Introduction
23
+
24
+ Numbers are essential for everyday life - shopping, telling time, and giving phone numbers.
25
+
26
+ ## Vocabulary
27
+
28
+ :::vocabulary-set{id="french-numbers" title="Numbers (Les Nombres)"}
29
+
30
+ ::vocab{id="fr-un" word="un" translation="one (1)" partOfSpeech="numeral" gender="masculine"}
31
+ ::
32
+
33
+ ::vocab{id="fr-deux" word="deux" translation="two (2)" partOfSpeech="numeral"}
34
+ ::
35
+
36
+ ::vocab{id="fr-trois" word="trois" translation="three (3)" partOfSpeech="numeral"}
37
+ ::
38
+
39
+ ::vocab{id="fr-quatre" word="quatre" translation="four (4)" partOfSpeech="numeral"}
40
+ ::
41
+
42
+ ::vocab{id="fr-cinq" word="cinq" translation="five (5)" partOfSpeech="numeral"}
43
+ ::
44
+
45
+ ::vocab{id="fr-six" word="six" translation="six (6)" partOfSpeech="numeral"}
46
+ ::
47
+
48
+ ::vocab{id="fr-sept" word="sept" translation="seven (7)" partOfSpeech="numeral"}
49
+ ::
50
+
51
+ ::vocab{id="fr-huit" word="huit" translation="eight (8)" partOfSpeech="numeral"}
52
+ ::
53
+
54
+ ::vocab{id="fr-neuf" word="neuf" translation="nine (9)" partOfSpeech="numeral"}
55
+ ::
56
+
57
+ ::vocab{id="fr-dix" word="dix" translation="ten (10)" partOfSpeech="numeral"}
58
+ ::
59
+
60
+ ::vocab{id="fr-onze" word="onze" translation="eleven (11)" partOfSpeech="numeral"}
61
+ ::
62
+
63
+ ::vocab{id="fr-douze" word="douze" translation="twelve (12)" partOfSpeech="numeral"}
64
+ ::
65
+
66
+ :::
67
+
68
+ ## Key Points
69
+
70
+ 1. **One is gendered**: "un" (masculine), "une" (feminine)
71
+ 2. **Pronunciation changes**: Final consonants often silent or change
@@ -0,0 +1,70 @@
1
+ ---
2
+ type: lesson
3
+ id: french-basics-lesson-03
4
+ title: "Leçon 3 — Les Couleurs"
5
+ description: "Colors: rouge, bleu, vert, jaune, noir, blanc..."
6
+ order: 3
7
+ parentId: french-basics-vocabulary
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - colors
12
+ - adjectives
13
+ metadata:
14
+ estimatedTime: 15
15
+ prerequisites: [french-basics-lesson-01]
16
+ objectives:
17
+ - "Learn basic color names in French"
18
+ - "Understand color agreement with nouns"
19
+ ---
20
+
21
+ # Leçon 3 (Lesson 3) — Les Couleurs
22
+
23
+ ## Introduction
24
+
25
+ Colors are adjectives in French and change form based on the gender of the noun they describe.
26
+
27
+ ## Vocabulary
28
+
29
+ :::vocabulary-set{id="french-colors" title="Colors (Les Couleurs)"}
30
+
31
+ ::vocab{id="fr-rouge" word="rouge" translation="red" partOfSpeech="adjective"}
32
+ ::
33
+
34
+ ::vocab{id="fr-bleu" word="bleu" translation="blue" partOfSpeech="adjective" gender="masculine"}
35
+ ::
36
+
37
+ ::vocab{id="fr-vert" word="vert" translation="green" partOfSpeech="adjective" gender="masculine"}
38
+ ::
39
+
40
+ ::vocab{id="fr-jaune" word="jaune" translation="yellow" partOfSpeech="adjective"}
41
+ ::
42
+
43
+ ::vocab{id="fr-orange" word="orange" translation="orange" partOfSpeech="adjective"}
44
+ ::
45
+
46
+ ::vocab{id="fr-noir" word="noir" translation="black" partOfSpeech="adjective" gender="masculine"}
47
+ ::
48
+
49
+ ::vocab{id="fr-blanc" word="blanc" translation="white" partOfSpeech="adjective" gender="masculine"}
50
+ ::
51
+
52
+ ::vocab{id="fr-gris" word="gris" translation="gray" partOfSpeech="adjective" gender="masculine"}
53
+ ::
54
+
55
+ ::vocab{id="fr-rose" word="rose" translation="pink" partOfSpeech="adjective"}
56
+ ::
57
+
58
+ ::vocab{id="fr-violet" word="violet" translation="purple" partOfSpeech="adjective" gender="masculine"}
59
+ ::
60
+
61
+ ::vocab{id="fr-marron" word="marron" translation="brown" partOfSpeech="adjective"}
62
+ ::
63
+
64
+ :::
65
+
66
+ ## Key Points
67
+
68
+ 1. **Gender agreement**: Most colors change for feminine (add -e)
69
+ 2. **Invariable colors**: rouge, jaune, orange, rose, marron stay the same
70
+ 3. **Position**: Colors usually come after the noun
@@ -0,0 +1,69 @@
1
+ ---
2
+ type: lesson
3
+ id: french-basics-lesson-04
4
+ title: "Leçon 4 — La Famille"
5
+ description: "Family: mère, père, frère, soeur, fils, fille..."
6
+ order: 4
7
+ parentId: french-basics-vocabulary
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - family
12
+ - nouns
13
+ metadata:
14
+ estimatedTime: 15
15
+ prerequisites: [french-basics-lesson-01]
16
+ objectives:
17
+ - "Learn family member vocabulary"
18
+ - "Understand masculine/feminine pairs"
19
+ ---
20
+
21
+ # Leçon 4 (Lesson 4) — La Famille
22
+
23
+ ## Introduction
24
+
25
+ Family vocabulary is essential for introducing yourself and talking about your loved ones.
26
+
27
+ ## Vocabulary
28
+
29
+ :::vocabulary-set{id="french-family" title="Family (La Famille)"}
30
+
31
+ ::vocab{id="fr-mere" word="mère" translation="mother" partOfSpeech="noun" gender="feminine"}
32
+ ::
33
+
34
+ ::vocab{id="fr-pere" word="père" translation="father" partOfSpeech="noun" gender="masculine"}
35
+ ::
36
+
37
+ ::vocab{id="fr-frere" word="frère" translation="brother" partOfSpeech="noun" gender="masculine"}
38
+ ::
39
+
40
+ ::vocab{id="fr-soeur" word="sœur" translation="sister" partOfSpeech="noun" gender="feminine"}
41
+ ::
42
+
43
+ ::vocab{id="fr-fils" word="fils" translation="son" partOfSpeech="noun" gender="masculine"}
44
+ ::
45
+
46
+ ::vocab{id="fr-fille" word="fille" translation="daughter" partOfSpeech="noun" gender="feminine"}
47
+ ::
48
+
49
+ ::vocab{id="fr-grandmere" word="grand-mère" translation="grandmother" partOfSpeech="noun" gender="feminine"}
50
+ ::
51
+
52
+ ::vocab{id="fr-grandpere" word="grand-père" translation="grandfather" partOfSpeech="noun" gender="masculine"}
53
+ ::
54
+
55
+ ::vocab{id="fr-ami" word="ami" translation="friend (male)" partOfSpeech="noun" gender="masculine"}
56
+ ::
57
+
58
+ ::vocab{id="fr-enfant" word="enfant" translation="child" partOfSpeech="noun" gender="masculine"}
59
+ ::
60
+
61
+ ::vocab{id="fr-famille" word="famille" translation="family" partOfSpeech="noun" gender="feminine"}
62
+ ::
63
+
64
+ :::
65
+
66
+ ## Key Points
67
+
68
+ 1. **Masculine/Feminine pairs**: père/mère, frère/sœur, fils/fille
69
+ 2. **Possessive adjectives**: mon (my, m.), ma (my, f.), mes (my, pl.)
@@ -0,0 +1,69 @@
1
+ ---
2
+ type: lesson
3
+ id: french-basics-lesson-05
4
+ title: "Leçon 5 — Les Animaux"
5
+ description: "Animals: chat, chien, oiseau, poisson, cheval..."
6
+ order: 5
7
+ parentId: french-basics-vocabulary
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - animals
12
+ - nouns
13
+ metadata:
14
+ estimatedTime: 15
15
+ prerequisites: [french-basics-lesson-01]
16
+ objectives:
17
+ - "Learn common animal names"
18
+ - "Practice noun genders with animals"
19
+ ---
20
+
21
+ # Leçon 5 (Lesson 5) — Les Animaux
22
+
23
+ ## Introduction
24
+
25
+ Animals are a fun way to practice French nouns and their genders.
26
+
27
+ ## Vocabulary
28
+
29
+ :::vocabulary-set{id="french-animals" title="Animals (Les Animaux)"}
30
+
31
+ ::vocab{id="fr-chat" word="chat" translation="cat" partOfSpeech="noun" gender="masculine"}
32
+ ::
33
+
34
+ ::vocab{id="fr-chien" word="chien" translation="dog" partOfSpeech="noun" gender="masculine"}
35
+ ::
36
+
37
+ ::vocab{id="fr-oiseau" word="oiseau" translation="bird" partOfSpeech="noun" gender="masculine"}
38
+ ::
39
+
40
+ ::vocab{id="fr-poisson" word="poisson" translation="fish" partOfSpeech="noun" gender="masculine"}
41
+ ::
42
+
43
+ ::vocab{id="fr-cheval" word="cheval" translation="horse" partOfSpeech="noun" gender="masculine"}
44
+ ::
45
+
46
+ ::vocab{id="fr-vache" word="vache" translation="cow" partOfSpeech="noun" gender="feminine"}
47
+ ::
48
+
49
+ ::vocab{id="fr-cochon" word="cochon" translation="pig" partOfSpeech="noun" gender="masculine"}
50
+ ::
51
+
52
+ ::vocab{id="fr-mouton" word="mouton" translation="sheep" partOfSpeech="noun" gender="masculine"}
53
+ ::
54
+
55
+ ::vocab{id="fr-lapin" word="lapin" translation="rabbit" partOfSpeech="noun" gender="masculine"}
56
+ ::
57
+
58
+ ::vocab{id="fr-souris" word="souris" translation="mouse" partOfSpeech="noun" gender="feminine"}
59
+ ::
60
+
61
+ ::vocab{id="fr-canard" word="canard" translation="duck" partOfSpeech="noun" gender="masculine"}
62
+ ::
63
+
64
+ :::
65
+
66
+ ## Key Points
67
+
68
+ 1. **Grammatical gender**: Each animal has a fixed gender
69
+ 2. **Irregular plurals**: cheval → chevaux, oiseau → oiseaux
@@ -0,0 +1,72 @@
1
+ ---
2
+ type: lesson
3
+ id: french-basics-lesson-06
4
+ title: "Leçon 6 — Le Corps"
5
+ description: "Body Parts: tête, main, pied, œil, bouche..."
6
+ order: 6
7
+ parentId: french-basics-vocabulary
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - body
12
+ - nouns
13
+ metadata:
14
+ estimatedTime: 15
15
+ prerequisites: [french-basics-lesson-01]
16
+ objectives:
17
+ - "Learn body part vocabulary"
18
+ - "Practice irregular plurals"
19
+ ---
20
+
21
+ # Leçon 6 (Lesson 6) — Le Corps
22
+
23
+ ## Introduction
24
+
25
+ Body parts are essential vocabulary for describing people and health situations.
26
+
27
+ ## Vocabulary
28
+
29
+ :::vocabulary-set{id="french-body" title="Body Parts (Le Corps)"}
30
+
31
+ ::vocab{id="fr-tete" word="tête" translation="head" partOfSpeech="noun" gender="feminine"}
32
+ ::
33
+
34
+ ::vocab{id="fr-main" word="main" translation="hand" partOfSpeech="noun" gender="feminine"}
35
+ ::
36
+
37
+ ::vocab{id="fr-pied" word="pied" translation="foot" partOfSpeech="noun" gender="masculine"}
38
+ ::
39
+
40
+ ::vocab{id="fr-bras" word="bras" translation="arm" partOfSpeech="noun" gender="masculine"}
41
+ ::
42
+
43
+ ::vocab{id="fr-jambe" word="jambe" translation="leg" partOfSpeech="noun" gender="feminine"}
44
+ ::
45
+
46
+ ::vocab{id="fr-oeil" word="œil" translation="eye" partOfSpeech="noun" gender="masculine"}
47
+ ::
48
+
49
+ ::vocab{id="fr-yeux" word="yeux" translation="eyes" partOfSpeech="noun" gender="masculine"}
50
+ ::
51
+
52
+ ::vocab{id="fr-bouche" word="bouche" translation="mouth" partOfSpeech="noun" gender="feminine"}
53
+ ::
54
+
55
+ ::vocab{id="fr-nez" word="nez" translation="nose" partOfSpeech="noun" gender="masculine"}
56
+ ::
57
+
58
+ ::vocab{id="fr-oreille" word="oreille" translation="ear" partOfSpeech="noun" gender="feminine"}
59
+ ::
60
+
61
+ ::vocab{id="fr-cheveux" word="cheveux" translation="hair" partOfSpeech="noun" gender="masculine"}
62
+ ::
63
+
64
+ ::vocab{id="fr-dos" word="dos" translation="back" partOfSpeech="noun" gender="masculine"}
65
+ ::
66
+
67
+ :::
68
+
69
+ ## Key Points
70
+
71
+ 1. **Irregular plural**: œil → yeux (completely different!)
72
+ 2. **Article usage**: Use le/la/les with body parts instead of possessives
@@ -0,0 +1,73 @@
1
+ ---
2
+ type: lesson
3
+ id: french-basics-lesson-07
4
+ title: "Leçon 7 — La Nourriture"
5
+ description: "Food & Drink: pain, eau, café, fromage, viande..."
6
+ order: 7
7
+ parentId: french-basics-vocabulary
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - food
12
+ - drink
13
+ - nouns
14
+ metadata:
15
+ estimatedTime: 15
16
+ prerequisites: [french-basics-lesson-01]
17
+ objectives:
18
+ - "Learn essential food vocabulary"
19
+ - "Order food and drinks"
20
+ ---
21
+
22
+ # Leçon 7 (Lesson 7) — La Nourriture
23
+
24
+ ## Introduction
25
+
26
+ France is famous for its cuisine! Learn food vocabulary for restaurants and daily life.
27
+
28
+ ## Vocabulary
29
+
30
+ :::vocabulary-set{id="french-food" title="Food & Drink (Nourriture et Boissons)"}
31
+
32
+ ::vocab{id="fr-pain" word="pain" translation="bread" partOfSpeech="noun" gender="masculine"}
33
+ ::
34
+
35
+ ::vocab{id="fr-eau" word="eau" translation="water" partOfSpeech="noun" gender="feminine"}
36
+ ::
37
+
38
+ ::vocab{id="fr-cafe" word="café" translation="coffee" partOfSpeech="noun" gender="masculine"}
39
+ ::
40
+
41
+ ::vocab{id="fr-the" word="thé" translation="tea" partOfSpeech="noun" gender="masculine"}
42
+ ::
43
+
44
+ ::vocab{id="fr-lait" word="lait" translation="milk" partOfSpeech="noun" gender="masculine"}
45
+ ::
46
+
47
+ ::vocab{id="fr-fromage" word="fromage" translation="cheese" partOfSpeech="noun" gender="masculine"}
48
+ ::
49
+
50
+ ::vocab{id="fr-viande" word="viande" translation="meat" partOfSpeech="noun" gender="feminine"}
51
+ ::
52
+
53
+ ::vocab{id="fr-poisson-food" word="poisson" translation="fish (food)" partOfSpeech="noun" gender="masculine"}
54
+ ::
55
+
56
+ ::vocab{id="fr-legumes" word="légumes" translation="vegetables" partOfSpeech="noun" gender="masculine"}
57
+ ::
58
+
59
+ ::vocab{id="fr-fruit" word="fruit" translation="fruit" partOfSpeech="noun" gender="masculine"}
60
+ ::
61
+
62
+ ::vocab{id="fr-vin" word="vin" translation="wine" partOfSpeech="noun" gender="masculine"}
63
+ ::
64
+
65
+ ::vocab{id="fr-sucre" word="sucre" translation="sugar" partOfSpeech="noun" gender="masculine"}
66
+ ::
67
+
68
+ :::
69
+
70
+ ## Key Points
71
+
72
+ 1. **Partitive articles**: du/de la/des for "some" (du pain = some bread)
73
+ 2. **Ordering phrases**: "Je voudrais..." (I would like...)
@@ -0,0 +1,72 @@
1
+ ---
2
+ type: lesson
3
+ id: french-basics-lesson-08
4
+ title: "Leçon 8 — Les Lieux"
5
+ description: "Places: maison, école, rue, ville, magasin..."
6
+ order: 8
7
+ parentId: french-basics-vocabulary
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - places
12
+ - nouns
13
+ metadata:
14
+ estimatedTime: 15
15
+ prerequisites: [french-basics-lesson-01]
16
+ objectives:
17
+ - "Learn common location vocabulary"
18
+ - "Ask for and give directions"
19
+ ---
20
+
21
+ # Leçon 8 (Lesson 8) — Les Lieux
22
+
23
+ ## Introduction
24
+
25
+ Place vocabulary helps you navigate and describe where you live.
26
+
27
+ ## Vocabulary
28
+
29
+ :::vocabulary-set{id="french-places" title="Places (Les Lieux)"}
30
+
31
+ ::vocab{id="fr-maison" word="maison" translation="house, home" partOfSpeech="noun" gender="feminine"}
32
+ ::
33
+
34
+ ::vocab{id="fr-ecole" word="école" translation="school" partOfSpeech="noun" gender="feminine"}
35
+ ::
36
+
37
+ ::vocab{id="fr-rue" word="rue" translation="street" partOfSpeech="noun" gender="feminine"}
38
+ ::
39
+
40
+ ::vocab{id="fr-ville" word="ville" translation="city, town" partOfSpeech="noun" gender="feminine"}
41
+ ::
42
+
43
+ ::vocab{id="fr-pays" word="pays" translation="country" partOfSpeech="noun" gender="masculine"}
44
+ ::
45
+
46
+ ::vocab{id="fr-magasin" word="magasin" translation="store, shop" partOfSpeech="noun" gender="masculine"}
47
+ ::
48
+
49
+ ::vocab{id="fr-restaurant" word="restaurant" translation="restaurant" partOfSpeech="noun" gender="masculine"}
50
+ ::
51
+
52
+ ::vocab{id="fr-hopital" word="hôpital" translation="hospital" partOfSpeech="noun" gender="masculine"}
53
+ ::
54
+
55
+ ::vocab{id="fr-gare" word="gare" translation="train station" partOfSpeech="noun" gender="feminine"}
56
+ ::
57
+
58
+ ::vocab{id="fr-aeroport" word="aéroport" translation="airport" partOfSpeech="noun" gender="masculine"}
59
+ ::
60
+
61
+ ::vocab{id="fr-bibliotheque" word="bibliothèque" translation="library" partOfSpeech="noun" gender="feminine"}
62
+ ::
63
+
64
+ ::vocab{id="fr-jardin" word="jardin" translation="garden" partOfSpeech="noun" gender="masculine"}
65
+ ::
66
+
67
+ :::
68
+
69
+ ## Key Points
70
+
71
+ 1. **Prepositions**: à (to/at), dans (in), en (in/to for countries)
72
+ 2. **Contractions**: à + le = au, à + les = aux
@@ -0,0 +1,71 @@
1
+ ---
2
+ type: lesson
3
+ id: french-basics-lesson-09
4
+ title: "Leçon 9 — Les Verbes"
5
+ description: "Common Verbs: être, avoir, aller, faire, vouloir..."
6
+ order: 9
7
+ parentId: french-basics-vocabulary
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - verbs
12
+ metadata:
13
+ estimatedTime: 20
14
+ prerequisites: [french-basics-lesson-01]
15
+ objectives:
16
+ - "Learn the most essential French verbs"
17
+ - "Understand basic conjugation patterns"
18
+ ---
19
+
20
+ # Leçon 9 (Lesson 9) — Les Verbes Essentiels
21
+
22
+ ## Introduction
23
+
24
+ Verbs are the heart of French sentences. The most common verbs are irregular but essential.
25
+
26
+ ## Vocabulary
27
+
28
+ :::vocabulary-set{id="french-verbs" title="Essential Verbs (Verbes Essentiels)"}
29
+
30
+ ::vocab{id="fr-etre" word="être" translation="to be" partOfSpeech="verb"}
31
+ ::
32
+
33
+ ::vocab{id="fr-avoir" word="avoir" translation="to have" partOfSpeech="verb"}
34
+ ::
35
+
36
+ ::vocab{id="fr-aller" word="aller" translation="to go" partOfSpeech="verb"}
37
+ ::
38
+
39
+ ::vocab{id="fr-faire" word="faire" translation="to do, to make" partOfSpeech="verb"}
40
+ ::
41
+
42
+ ::vocab{id="fr-vouloir" word="vouloir" translation="to want" partOfSpeech="verb"}
43
+ ::
44
+
45
+ ::vocab{id="fr-pouvoir" word="pouvoir" translation="can, to be able to" partOfSpeech="verb"}
46
+ ::
47
+
48
+ ::vocab{id="fr-aimer" word="aimer" translation="to love, to like" partOfSpeech="verb"}
49
+ ::
50
+
51
+ ::vocab{id="fr-manger" word="manger" translation="to eat" partOfSpeech="verb"}
52
+ ::
53
+
54
+ ::vocab{id="fr-boire" word="boire" translation="to drink" partOfSpeech="verb"}
55
+ ::
56
+
57
+ ::vocab{id="fr-parler" word="parler" translation="to speak" partOfSpeech="verb"}
58
+ ::
59
+
60
+ ::vocab{id="fr-voir" word="voir" translation="to see" partOfSpeech="verb"}
61
+ ::
62
+
63
+ ::vocab{id="fr-venir" word="venir" translation="to come" partOfSpeech="verb"}
64
+ ::
65
+
66
+ :::
67
+
68
+ ## Key Points
69
+
70
+ 1. **Irregular verbs**: être, avoir, aller, faire are irregular but essential
71
+ 2. **Regular -er verbs**: Follow predictable patterns (aimer, parler, manger)
@@ -0,0 +1,72 @@
1
+ ---
2
+ type: lesson
3
+ id: french-basics-lesson-10
4
+ title: "Leçon 10 — Le Temps"
5
+ description: "Time & Weather: jour, semaine, soleil, pluie, chaud, froid..."
6
+ order: 10
7
+ parentId: french-basics-vocabulary
8
+ difficulty: beginner
9
+ cefrLevel: A1
10
+ categories:
11
+ - time
12
+ - weather
13
+ metadata:
14
+ estimatedTime: 15
15
+ prerequisites: [french-basics-lesson-01]
16
+ objectives:
17
+ - "Learn time vocabulary"
18
+ - "Describe the weather"
19
+ ---
20
+
21
+ # Leçon 10 (Lesson 10) — Le Temps
22
+
23
+ ## Introduction
24
+
25
+ "Le temps" in French means both "time" and "weather" - two essential topics.
26
+
27
+ ## Vocabulary
28
+
29
+ :::vocabulary-set{id="french-time-weather" title="Time & Weather (Le Temps)"}
30
+
31
+ ::vocab{id="fr-jour" word="jour" translation="day" partOfSpeech="noun" gender="masculine"}
32
+ ::
33
+
34
+ ::vocab{id="fr-semaine" word="semaine" translation="week" partOfSpeech="noun" gender="feminine"}
35
+ ::
36
+
37
+ ::vocab{id="fr-mois" word="mois" translation="month" partOfSpeech="noun" gender="masculine"}
38
+ ::
39
+
40
+ ::vocab{id="fr-annee" word="année" translation="year" partOfSpeech="noun" gender="feminine"}
41
+ ::
42
+
43
+ ::vocab{id="fr-soleil" word="soleil" translation="sun" partOfSpeech="noun" gender="masculine"}
44
+ ::
45
+
46
+ ::vocab{id="fr-pluie" word="pluie" translation="rain" partOfSpeech="noun" gender="feminine"}
47
+ ::
48
+
49
+ ::vocab{id="fr-neige" word="neige" translation="snow" partOfSpeech="noun" gender="feminine"}
50
+ ::
51
+
52
+ ::vocab{id="fr-nuage" word="nuage" translation="cloud" partOfSpeech="noun" gender="masculine"}
53
+ ::
54
+
55
+ ::vocab{id="fr-chaud" word="chaud" translation="hot, warm" partOfSpeech="adjective" gender="masculine"}
56
+ ::
57
+
58
+ ::vocab{id="fr-froid" word="froid" translation="cold" partOfSpeech="adjective" gender="masculine"}
59
+ ::
60
+
61
+ ::vocab{id="fr-vent" word="vent" translation="wind" partOfSpeech="noun" gender="masculine"}
62
+ ::
63
+
64
+ ::vocab{id="fr-temps" word="temps" translation="time, weather" partOfSpeech="noun" gender="masculine"}
65
+ ::
66
+
67
+ :::
68
+
69
+ ## Key Points
70
+
71
+ 1. **"Il fait" + adjective**: Used for weather (Il fait chaud = It's hot)
72
+ 2. **"J'ai chaud/froid"**: Use "avoir" for personal feelings of temperature