Skip to content

Commit 6498206

Browse files
authored
Merge pull request #475 from AbdulrehmanSuliman/translate-Installation
[DONE]: Translation of Installation
2 parents b1af333 + 14885fc commit 6498206

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

src/content/learn/installation.md

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
---
2-
title: Installation
2+
title: التثبيت
33
---
44

55
<Intro>
66

7-
React has been designed from the start for gradual adoption. You can use as little or as much React as you need. Whether you want to get a taste of React, add some interactivity to an HTML page, or start a complex React-powered app, this section will help you get started.
7+
تم تصميم React من البداية ليكون قابلاً للتبني التدريجي. يمكنك استخدام جزء قليل أو كثير من React، حسب الحاجة. سواء كنت ترغب في الحصول على تجربة من React، أو إضافة بعض التفاعلية إلى صفحة HTML، أو بدء تطبيق معقد يعتمد على React، فهذا القسم سيساعدك على البدء.
88

99
</Intro>
1010

1111
<YouWillLearn isChapter={true}>
1212

13-
* [How to start a new React project](/learn/start-a-new-react-project)
14-
* [How to add React to an existing project](/learn/add-react-to-an-existing-project)
15-
* [How to set up your editor](/learn/editor-setup)
16-
* [How to install React Developer Tools](/learn/react-developer-tools)
13+
* [كيفية بدء مشروع React جديد](/learn/start-a-new-react-project)
14+
* [كيفية إضافة React إلى مشروع موجود](/learn/add-react-to-an-existing-project)
15+
* [كيفية إعداد محرر النصوص الخاص بك](/learn/editor-setup)
16+
* [كيفية تثبيت أدوات مطور React](/learn/react-developer-tools)
1717

1818
</YouWillLearn>
1919

20-
## Try React {/*try-react*/}
20+
## جرب React {/*try-react*/}
2121

22-
You don't need to install anything to play with React. Try editing this sandbox!
22+
لا يلزم تثبيت أي شيء لتجربة React. جرب تعديل هذا الـsandbox!
2323

2424
<Sandpack>
2525

@@ -33,25 +33,26 @@ export default function App() {
3333
}
3434
```
3535

36+
3637
</Sandpack>
3738

38-
You can edit it directly or open it in a new tab by pressing the "Fork" button in the upper right corner.
39+
يمكنك تعديله مباشرةً أو فتحه في علامة تبويب جديدة عن طريق الضغط على زر "Fork" (تفريع) في الزاوية العلوية اليمنى.
3940

40-
Most pages in the React documentation contain sandboxes like this. Outside of the React documentation, there are many online sandboxes that support React: for example, [CodeSandbox](https://codesandbox.io/s/new), [StackBlitz](https://stackblitz.com/fork/react), or [CodePen.](https://codepen.io/pen?&editors=0010&layout=left&prefill_data_id=3f4569d1-1b11-4bce-bd46-89090eed5ddb)
41+
تحتوي معظم الصفحات في توثيق React على sandboxes مثل هذا. وفيما عدا توثيق React، هناك العديد من الـsandboxes المتاحة عبر الإنترنت التي تدعم React: على سبيل المثال، [CodeSandbox](https://codesandbox.io/s/new)، [StackBlitz](https://stackblitz.com/fork/react)، أو [CodePen.](https://codepen.io/pen?&editors=0010&layout=left&prefill_data_id=3f4569d1-1b11-4bce-bd46-89090eed5ddb)
4142

42-
### Try React locally {/*try-react-locally*/}
43+
### جرب React محلياً {/*try-react-locally*/}
4344

44-
To try React locally on your computer, [download this HTML page.](https://gist.githubusercontent.com/gaearon/0275b1e1518599bbeafcde4722e79ed1/raw/db72dcbf3384ee1708c4a07d3be79860db04bff0/example.html) Open it in your editor and in your browser!
45+
لتجربة React محلياً على جهازك، [حمّل صفحة ال HTML هذه.](https://gist.githubusercontent.com/gaearon/0275b1e1518599bbeafcde4722e79ed1/raw/db72dcbf3384ee1708c4a07d3be79860db04bff0/example.html) افتحها في محرر النصوص الخاص بك وفي متصفحك!
4546

46-
## Start a new React project {/*start-a-new-react-project*/}
47+
## ابدأ مشروع React جديد {/*start-a-new-react-project*/}
4748

48-
If you want to build an app or a website fully with React, [start a new React project.](/learn/start-a-new-react-project)
49+
إذا كنت ترغب في بناء تطبيق أو موقع ويب بالكامل باستخدام React، [ابدأ مشروع React جديد.](/learn/start-a-new-react-project)
4950

50-
## Add React to an existing project {/*add-react-to-an-existing-project*/}
51+
## إضافة React إلى مشروع موجود {/*add-react-to-an-existing-project*/}
5152

52-
If want to try using React in your existing app or a website, [add React to an existing project.](/learn/add-react-to-an-existing-project)
53+
إذا كنت تريد تجربة استخدام React في تطبيق أو موقع ويب موجود، [إضافة React إلى مشروع موجود.](/learn/add-react-to-an-existing-project)
5354

54-
## Next steps {/*next-steps*/}
55+
## الخطوات التالية {/*next-steps*/}
5556

56-
Head to the [Quick Start](/learn) guide for a tour of the most important React concepts you will encounter every day.
57+
انتقل إلى دليل [البدء السريع](/learn) لجولة في أهم مفاهيم React التي ستواجهها يومياً.
5758

src/sidebarLearn.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
]
2222
},
2323
{
24-
"title": "Installation",
24+
"title": "التثبيت",
2525
"path": "/learn/installation",
2626
"routes": [
2727
{

0 commit comments

Comments
 (0)