Skip to content

Commit 9d02c7e

Browse files
authored
Update sidebarLearn.json
1 parent c2c463b commit 9d02c7e

1 file changed

Lines changed: 39 additions & 39 deletions

File tree

src/sidebarLearn.json

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@
44
"routes": [
55
{
66
"hasSectionHeader": true,
7-
"sectionHeader": "ابدأ"
7+
"sectionHeader": "البدأ"
88
},
99
{
10-
"title": "البدء السريع",
10+
"title": "بداية سريعة",
1111
"path": "/learn",
1212
"routes": [
1313
{
1414
"title": "شرح تطبيقي: لعبة تيك تاك تو",
1515
"path": "/learn/tutorial-tic-tac-toe"
1616
},
1717
{
18-
"title": "التفكير بطريقة React",
18+
"title": "التفكير على طريقة React",
1919
"path": "/learn/thinking-in-react"
2020
}
2121
]
@@ -25,15 +25,15 @@
2525
"path": "/learn/installation",
2626
"routes": [
2727
{
28-
"title": "ابدأ مشروع React جديدًا",
28+
"title": "ابدأ مشروع React جديد",
2929
"path": "/learn/start-a-new-react-project"
3030
},
3131
{
32-
"title": "أضف React إلى مشروع موجود",
32+
"title": "إضافة React إلى مشروع موجود بالفعل",
3333
"path": "/learn/add-react-to-an-existing-project"
3434
},
3535
{
36-
"title": "تجهيز المحرر الخاص بك",
36+
"title": "تجهيز المحرر",
3737
"path": "/learn/editor-setup"
3838
},
3939
{
@@ -47,110 +47,110 @@
4747
"sectionHeader": "تعلم React"
4848
},
4949
{
50-
"title": "وصف واجهة المستخدم",
50+
"title": "وصف واجهة المستخدم UI",
5151
"tags": [],
5252
"path": "/learn/describing-the-ui",
5353
"routes": [
5454
{
55-
"title": "أول مُكوِّن لك",
55+
"title": "مكوّنك الأول",
5656
"path": "/learn/your-first-component"
5757
},
5858
{
5959
"title": "استيراد وتصدير المكونات",
6060
"path": "/learn/importing-and-exporting-components"
6161
},
6262
{
63-
"title": "كتابة البنية بـ JSX",
63+
"title": "كتابة ترميز البناء بـ JSX",
6464
"path": "/learn/writing-markup-with-jsx"
6565
},
6666
{
67-
"title": "JavaScript في JSX بالأقواس المنحنية",
67+
"title": "JavaScript in JSX with Curly Braces",
6868
"path": "/learn/javascript-in-jsx-with-curly-braces"
6969
},
7070
{
71-
"title": "تمرير الخصائص إلى المكونات",
71+
"title": "Passing Props to a Component",
7272
"path": "/learn/passing-props-to-a-component"
7373
},
7474
{
75-
"title": "التصيير الشرطي",
75+
"title": "Conditional Rendering",
7676
"path": "/learn/conditional-rendering"
7777
},
7878
{
79-
"title": "تصيير القوائم",
79+
"title": "Rendering Lists",
8080
"path": "/learn/rendering-lists"
8181
},
8282
{
83-
"title": "حافظ على المكونات نظيفة",
83+
"title": "Keeping Components Pure",
8484
"path": "/learn/keeping-components-pure"
8585
}
8686
]
8787
},
8888
{
89-
"title": "إضافة تفاعلية",
89+
"title": "Adding Interactivity",
9090
"path": "/learn/adding-interactivity",
9191
"tags": [],
9292
"routes": [
9393
{
94-
"title": "التفاعل مع الأحداث",
94+
"title": "Responding to Events",
9595
"path": "/learn/responding-to-events"
9696
},
9797
{
98-
"title": "الحالة: ذاكرة المكونات",
98+
"title": "State: A Component's Memory",
9999
"path": "/learn/state-a-components-memory"
100100
},
101101
{
102-
"title": "التصيير والالتزام",
102+
"title": "التصيير والتأكيد",
103103
"path": "/learn/render-and-commit"
104104
},
105105
{
106-
"title": "الحالة مثل اللقطة",
106+
"title": "State as a Snapshot",
107107
"path": "/learn/state-as-a-snapshot"
108108
},
109109
{
110-
"title": "انتظار سلسلة من التحديثات",
110+
"title": "Queueing a Series of State Updates",
111111
"path": "/learn/queueing-a-series-of-state-updates"
112112
},
113113
{
114-
"title": "تحديث الكائنات في الحالة",
114+
"title": "Updating Objects in State",
115115
"path": "/learn/updating-objects-in-state"
116116
},
117117
{
118-
"title": "تحديث المصفوفات في الحالة",
118+
"title": "Updating Arrays in State",
119119
"path": "/learn/updating-arrays-in-state"
120120
}
121121
]
122122
},
123123
{
124-
"title": "إدارة الحالة",
124+
"title": "Managing State",
125125
"path": "/learn/managing-state",
126126
"tags": ["intermediate"],
127127
"routes": [
128128
{
129-
"title": "الاستجابة للإدخال باستخدام الحالة",
129+
"title": "Reacting to Input with State",
130130
"path": "/learn/reacting-to-input-with-state"
131131
},
132132
{
133-
"title": "اختيار هيكل الحالة",
133+
"title": "Choosing the State Structure",
134134
"path": "/learn/choosing-the-state-structure"
135135
},
136136
{
137-
"title": "مشاركة الحالة بين المكونات",
137+
"title": "Sharing State Between Components",
138138
"path": "/learn/sharing-state-between-components"
139139
},
140140
{
141-
"title": "الحفاظ على الحال، وإعادة تعيينها",
141+
"title": "Preserving and Resetting State",
142142
"path": "/learn/preserving-and-resetting-state"
143143
},
144144
{
145-
"title": "استخراج منطق الحالة إلى مُخفِّض (Reducer)",
145+
"title": "Extracting State Logic into a Reducer",
146146
"path": "/learn/extracting-state-logic-into-a-reducer"
147147
},
148148
{
149-
"title": "التمرير العميق للبيانات باستخدام السياق (Context)",
149+
"title": "Passing Data Deeply with Context",
150150
"path": "/learn/passing-data-deeply-with-context"
151151
},
152152
{
153-
"title": "التوسع باستخدام المُخفِّض (Reducer) والسياق (Context)",
153+
"title": "Scaling Up with Reducer and Context",
154154
"path": "/learn/scaling-up-with-reducer-and-context"
155155
}
156156
]
@@ -161,35 +161,35 @@
161161
"tags": ["advanced"],
162162
"routes": [
163163
{
164-
"title": "الإشارة إلى القيم باستخدام المراجع (Refs)",
164+
"title": "Referencing Values with Refs",
165165
"path": "/learn/referencing-values-with-refs"
166166
},
167167
{
168-
"title": "التحكم بـDOM باستخدام المراجع (Refs)",
168+
"title": "Manipulating the DOM with Refs",
169169
"path": "/learn/manipulating-the-dom-with-refs"
170170
},
171171
{
172-
"title": "المزامنة مع التأثيرات (Effects)",
172+
"title": "Synchronizing with Effects",
173173
"path": "/learn/synchronizing-with-effects"
174174
},
175175
{
176-
"title": "ربما لا تحتاج إلى تأثير (Effect)",
176+
"title": "You Might Not Need an Effect",
177177
"path": "/learn/you-might-not-need-an-effect"
178178
},
179179
{
180-
"title": "دورة حياة الآثار الردّيّة",
180+
"title": "Lifecycle of Reactive Effects",
181181
"path": "/learn/lifecycle-of-reactive-effects"
182182
},
183183
{
184-
"title": "فصل الأحداث عن التأثيرات",
184+
"title": "Separating Events from Effects",
185185
"path": "/learn/separating-events-from-effects"
186186
},
187187
{
188-
"title": "إزالة تبعيات التأثيرات",
189-
"path": "/learn/removing-effect-dependencies"
188+
"title": "Removing Effect Dependencies",
189+
"path": "/learn/removing-effect-dependencies"
190190
},
191191
{
192-
"title": "إعادة استخدام المنطق باستخدام الخطافات المخصصة",
192+
"title": "Reusing Logic with Custom Hooks",
193193
"path": "/learn/reusing-logic-with-custom-hooks"
194194
}
195195
]

0 commit comments

Comments
 (0)