From a97cafbaa03578a2757e6034b5ac333d6115d7ae Mon Sep 17 00:00:00 2001 From: Nat Alison Date: Wed, 19 Feb 2020 14:50:44 -0800 Subject: [PATCH 1/9] Commit git conflicts --- docs/contributing/code-of-conduct.md | 49 ++++++++++++ docs/docs/quick-start.md | 30 ++++++++ docs/tutorial/index.md | 4 + docs/tutorial/part-one/index.md | 32 ++++++++ docs/tutorial/part-three/index.md | 8 +- docs/tutorial/part-two/index.md | 24 ++++++ docs/tutorial/part-zero/index.md | 107 +++++++++++++++++++++++++++ 7 files changed, 253 insertions(+), 1 deletion(-) diff --git a/docs/contributing/code-of-conduct.md b/docs/contributing/code-of-conduct.md index 58ec2d0..d888e54 100644 --- a/docs/contributing/code-of-conduct.md +++ b/docs/contributing/code-of-conduct.md @@ -2,6 +2,7 @@ title: Gatsby Contributor Covenant Code of Conduct --- +<<<<<<< HEAD ## تَعهُدنا من أجل تعزيز بيئة مفتوحة وترحيبية، نحن المساهمون والمشرفون نتعهد بجعل المشاركة في مشروعنا ومجتمعنا تجربة خالية من المضايقات للجميع، بغض النظر عن العمر، أو الجسد ، أو الإعاقة، أو العرق، أو الخصائص الجنسية، أو الهوية الجندرية وطريقة التعبير عنها، أو مستوى الخبرة والتعليم، أو الوضع الاجتماعي والاقتصادي، أو الجنسية، أو المظهر، أو العرق، أو الدين. @@ -46,3 +47,51 @@ title: Gatsby Contributor Covenant Code of Conduct - الصفحة الرئيسية: https://contributor-covenant.org - الإصدار: https://contributor-covenant.org/version/1/4/ +======= +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment include: + +- Using welcoming and inclusive language +- Being respectful of differing viewpoints and experiences +- Gracefully accepting constructive criticism +- Focusing on what is best for the community +- Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +- The use of sexualized language or imagery and unwelcome sexual attention or advances +- Trolling, insulting/derogatory comments, and personal or political attacks +- Public or private harassment +- Publishing others' private information, such as a physical or electronic address, without explicit permission +- Other conduct which could reasonably be considered inappropriate in a professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned with this code of conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, divisive, threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at [conduct@gatsbyjs.com](mailto:conduct@gatsbyjs.com). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. + +When faced with repeated bad faith comments or harassment after an earnest attempt to mediate an issue, the Gatsby team reserves the right to remove someone from the GitHub repository and/or block them on social media. This decision will always be made with consensus from more than one team member. + +## Attribution + +This Code of Conduct is adapted from the Contributor Covenant, version 1.4. + +- homepage: https://contributor-covenant.org +- version: https://contributor-covenant.org/version/1/4/ +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc diff --git a/docs/docs/quick-start.md b/docs/docs/quick-start.md index 3cc42d8..76bbc7d 100644 --- a/docs/docs/quick-start.md +++ b/docs/docs/quick-start.md @@ -13,35 +13,61 @@ title: بداية سريعة **ملاحظة**: يستخدم هذا الفيديو `npx` ، وهي أداة لتنفيذ حزمة npm دون تثبيتها أولاً على جهازك. إن تشغيل الأمر `npx gatsby new` هو نفسه تشغيل `gatsby new` بعد تثبيت gatsby-cli على جهاز الكمبيوتر الخاص بك. +<<<<<<< HEAD ### تثبيت Gatsby CLI. +======= +### Install the Gatsby CLI +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc ```shell npm install -g gatsby-cli ``` +<<<<<<< HEAD ### انشاء موقع جديد. +======= +> The above command installs Gatsby CLI globally on your machine. + +### Create a new site +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc ```shell gatsby new gatsby-site ``` +<<<<<<< HEAD ### تغيير الدلائل إلى مجلد الموقع. +======= +### Change directories into site folder +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc ```shell cd gatsby-site ``` +<<<<<<< HEAD ### بدء خادم التطوير. +======= +### Start development server +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc ```shell gatsby develop ``` +<<<<<<< HEAD سيبدأ Gatsby في بيئة تطوير سريعة التحميل (hot-reloading) يمكن الوصول إليها افتراضيًا على `localhost:8000`. +======= +Gatsby will start a hot-reloading development environment accessible by default at `http://localhost:8000`. +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc حاول تحرير صفحات JavaScript في `src / pages`. سيتم حفظ التغييرات بشكل مباشر في المتصفح. +<<<<<<< HEAD ### إنشاء بناء الإنتاج. +======= +### Create a production build +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc ```shell gatsby build @@ -49,7 +75,11 @@ gatsby build ستعمل Gatsby على إنشاء إنتاج مُحسّن لموقعك ، من خلال إنشاء حزم HTML ثابتة وحزم شفرة JavaScript. +<<<<<<< HEAD ### خدمة إنتاج البناء محليا. +======= +### Serve the production build locally +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc ```shell gatsby serve diff --git a/docs/tutorial/index.md b/docs/tutorial/index.md index f639754..268b782 100644 --- a/docs/tutorial/index.md +++ b/docs/tutorial/index.md @@ -28,7 +28,11 @@ disableTableOfContents: true تقوم ثيمات Gatsby باختصار جميع الإعدادت الافتراضية (الدَوَالّ المشتركة ، البحث عن مصادر البيانات ، التصميم) خارج موقعك وفي حزمة قابلة للتثبيت. +<<<<<<< HEAD هذا يعني أن الإعدادت والدَوَالّ لم تتم كتابتهما مباشرةً في مشروعك ، ولكنهما تداران مركزيًا وتثبتهما كتبعية (dependency). يمكنك تحديث ثيمة بسلاسة ، وإنشاء الثيمات معًا ، وحتى تبديل ثيمة متوافقة لأخرى. +======= +This means that the configuration and functionality aren’t directly written into your project, but rather versioned, centrally managed, and installed as a dependency. You can seamlessly update a theme, compose themes together, and even swap out one compatible theme for another. +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc تعلم اكثر حول استخدام وبناء الثيمات باستخدام [الدليل التطبيقي لثيمات Gatsby](/tutorial/theme-tutorials/). diff --git a/docs/tutorial/part-one/index.md b/docs/tutorial/part-one/index.md index 3ca5b9c..8aeb7f1 100644 --- a/docs/tutorial/part-one/index.md +++ b/docs/tutorial/part-one/index.md @@ -20,7 +20,11 @@ gatsby new hello-world https://github.com/gatsbyjs/gatsby-starter-hello-world gatsby new [SITE_DIRECTORY_NAME] [URL_OF_STARTER_GITHUB_REPO] ``` +<<<<<<< HEAD إذا حذفت عنوان URL من النهاية، سيتم تلقائيا إنشاء موقع Gatsby لك بإستخدام [**عدة البدء الإفتراضية**](https://github.com/gatsbyjs/gatsby-starter-default). بالنسبة إلى هذا القسم من الدليل التطبيقي، سنستمر بموقع “Hello World” الذي قمت بإنشائه بالفعل في الدليل التطبيقي السابق. +======= +If you omit a URL from the end, Gatsby will automatically generate a site for you based on the [**default starter**](https://github.com/gatsbyjs/gatsby-starter-default). For this section of the tutorial, stick with the “Hello World” site you already created in tutorial part zero. You can learn more about [modifying starters](/docs/modifying-a-starter) in the docs. +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc ### ✋ افتح الشيفرة @@ -165,7 +169,11 @@ export default () => ( ) ``` +<<<<<<< HEAD 2. انتقل إلى http://localhost:8000/about/. +======= +2. Navigate to `http://localhost:8000/about/` +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc ![صفحة عن الجديدة](05-about-page.png) @@ -230,7 +238,11 @@ export default () => ( ### ماذا تكون الخصائص “props”? +<<<<<<< HEAD لقد قمت في وقت سابق بتعريف مكونات React على أنها أجزاء قابلة لإعادة الاستخدام من الشيفرة تصف واجهة المستخدم. لجعل هذه القطع القابلة لإعادة الاستخدام ديناميكية، يجب أن تكون قادرًا على تزويدها ببيانات مختلفة. يمكنك القيام بذلك مع إدخال يسمى الخصائص “props". الخصائص (appropriately enough) المقدمة لمكونات React. +======= +Earlier, you defined React components as reusable pieces of code describing a UI. To make these reusable pieces dynamic you need to be able to supply them with different data. You do that with input called "props". Props are (appropriately enough) properties supplied to React components. +>>>>>>> 90932a06db2e297cf416552b84e48b4b82e56fbc في ملف `about.js` لقد مررت الخاصية `headerText` prop مع قيمة `"عن Gatsby"` إلى المكون الفرعي المستوردة `Header`: @@ -324,20 +336,34 @@ export default () => ( ) ``` +<<<<<<< HEAD بعد أن تقوم بحفظ الملف، يجب أن ترى صفحة الاتصال وتكون قادرًا على الارتباط بينها وبين الصفحة الرئيسية.