You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: translate French comments and code strings to English in EN quests
Code blocks in English quest pages (02-10) contained French comments,
commit messages, echo strings and gitignore comments. Translated all
of them to English for consistency.
Copy file name to clipboardExpand all lines: src/en/quests/03-the-first-scroll.njk
+15-15Lines changed: 15 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ git init</code></pre>
37
37
<p>You can verify that the <code>.git/</code> folder was created:</p>
38
38
39
39
<predata-lang="bash"><code>ls -la
40
-
# Tu verras un dossier .git/</code></pre>
40
+
# You will see a .git/ folder</code></pre>
41
41
42
42
<divclass="tip">
43
43
<p>Never manually touch the contents of the <code>.git/</code> folder. It's Git's vault - let it manage its own affairs.</p>
@@ -70,13 +70,13 @@ git init</code></pre>
70
70
71
71
<p>This command moves a file from the <spanclass="keyword">Working Directory</span> to the <spanclass="keyword">Staging Area</span> (the Preparation Hall, seen in quest 02). It's the preparation step before the final sealing.</p>
72
72
73
-
<predata-lang="bash"><code># Ajouter un fichier spécifique
73
+
<predata-lang="bash"><code># Add a specific file
74
74
git add mission.txt
75
75
76
-
# Ajouter plusieurs fichiers
77
-
git add fichier1.txt fichier2.txt
76
+
# Add multiple files
77
+
git add file1.txt file2.txt
78
78
79
-
# Ajouter TOUS les fichiers modifiés ou nouveaux
79
+
# Add ALL modified or new files
80
80
git add .</code></pre>
81
81
82
82
<p>After a <spanclass="git-cmd">git add</span>, run a <spanclass="git-cmd">git status</span>: the file should switch from red to green.</p>
@@ -92,11 +92,11 @@ git add .</code></pre>
92
92
93
93
<p>The <spanclass="keyword">commit</span> is the act of sealing: you take everything in the <spanclass="keyword">Staging Area</span> and permanently archive it in the <spanclass="keyword">Repository</span> with an explanatory message.</p>
94
94
95
-
<predata-lang="bash"><code>git commit -m "Ajouter le rapport d'observation des frontières nord"</code></pre>
95
+
<predata-lang="bash"><code>git commit -m "Add the northern border observation report"</code></pre>
96
96
97
97
<p>Expected output:</p>
98
98
99
-
<pre><code>[main (root-commit) a1b2c3d] Ajouter le rapport d'observation des frontières nord
99
+
<pre><code>[main (root-commit) a1b2c3d] Add the northern border observation report
100
100
1 file changed, 15 insertions(+)
101
101
create mode 100644 mission.txt</code></pre>
102
102
@@ -201,8 +201,8 @@ git init</code></pre>
201
201
202
202
<p>Copy the file <code>parchemins/mission.txt</code> (provided with this quest) into your <code>mon-archive/</code> repository:</p>
203
203
204
-
<predata-lang="bash"><code># Depuis le dossier mon-archive/, copie le fichier mission.txt
205
-
# Adapte le chemin selon l'emplacement de ta quête
204
+
<predata-lang="bash"><code># From the mon-archive/ folder, copy the mission.txt file
205
+
# Adjust the path based on your quest location
206
206
cp ../parchemins/mission.txt .</code></pre>
207
207
208
208
<p>Verify with <spanclass="git-cmd">git status</span> - the file should appear in <spanclass="highlight-red">red</span> (untracked).</p>
<p>Add the file to the <spanclass="keyword">staging</span> area, then seal it:</p>
216
216
217
217
<predata-lang="bash"><code>git add mission.txt
218
-
git status # mission.txt devrait être en VERT maintenant
219
-
git commit -m "Ajouter l'ordre de mission de la Guilde"</code></pre>
218
+
git status # mission.txt should be GREEN now
219
+
git commit -m "Add the Guild's mission order"</code></pre>
220
220
221
221
<divclass="warning">
222
222
<p>Choose a descriptive <spanclass="keyword">commit</span> message! No <code>"Initial commit"</code> or <code>"test"</code>. Describe what you're actually doing.</p>
@@ -243,9 +243,9 @@ git commit -m "Ajouter l'ordre de mission de la Guilde"</code></pre>
243
243
244
244
<p>Run <spanclass="git-cmd">git status</span> to see the modification, then archive it:</p>
245
245
246
-
<predata-lang="bash"><code>git status # mission.txt en ROUGE (modifié)
246
+
<predata-lang="bash"><code>git status # mission.txt in RED (modified)
247
247
git add mission.txt
248
-
git commit -m "Compléter le rapport d'observation des frontières"</code></pre>
248
+
git commit -m "Complete the border observation report"</code></pre>
249
249
250
250
<divclass="fancy-separator"></div>
251
251
@@ -258,8 +258,8 @@ git commit -m "Compléter le rapport d'observation des frontières"</code></pre>
258
258
259
259
<p>You should see your <strong>two commits</strong>, from newest to oldest:</p>
260
260
261
-
<pre><code>b2c3d4e Compléter le rapport d'observation des frontières
262
-
a1b2c3d Ajouter l'ordre de mission de la Guilde</code></pre>
261
+
<pre><code>b2c3d4e Complete the border observation report
262
+
a1b2c3d Add the Guild's mission order</code></pre>
<p>Since Git is entirely <spanclass="keyword">local</span>, you can <strong><spanclass="highlight">clone a repo without any internet connection</span></strong>. Just point to a folder on your own machine:</p>
72
72
73
-
<predata-lang="bash"><code># Depuis le dossier parent qui contient mon-archive/
73
+
<predata-lang="bash"><code># From the parent folder containing mon-archive/
74
74
git clone ./mon-archive ./ma-copie
75
75
76
-
# Vérifie que l'historique est identique
76
+
# Verify that the history is identical
77
77
cd ma-copie
78
78
git log --oneline</code></pre>
79
79
80
-
<predata-lang="powershell"><code># Depuis le dossier parent qui contient mon-archive\
80
+
<predata-lang="powershell"><code># From the parent folder containing mon-archive\
<p>A <strong><spanclass="keyword">bare repo</span></strong> is a repo that contains <strong>only</strong> the contents of <spanclass="keyword"><code>.git/</code></span> - no working files. It's the format used by <strong>Git servers</strong>.</p>
96
96
97
-
<predata-lang="bash"><code># Créer un bare repo
97
+
<predata-lang="bash"><code># Create a bare repo
98
98
git init --bare ./archive-centrale.git
99
99
100
-
# Ajouter comme remote et pousser
100
+
# Add as remote and push
101
101
cd mon-archive
102
102
git remote add origine ../archive-centrale.git
103
103
git push origine main</code></pre>
104
104
105
-
<predata-lang="powershell"><code># Créer un bare repo
105
+
<predata-lang="powershell"><code># Create a bare repo
106
106
git init --bare .\archive-centrale.git
107
107
108
-
# Ajouter comme remote et pousser
108
+
# Add as remote and push
109
109
cd mon-archive
110
110
git remote add origine ..\archive-centrale.git
111
111
git push origine main</code></pre>
@@ -232,9 +232,9 @@ git push origine main</code></pre>
232
232
233
233
<predata-lang="bash"><code>mkdir mon-archive && cd mon-archive
0 commit comments