diff --git a/README.md b/README.md index 7b3b7902..f50ab253 100644 --- a/README.md +++ b/README.md @@ -22,3 +22,4 @@ Head over to [contribution guide](https://github.com/Roshanjossey/code-contribut [Vietnam](docs/translations/vn/README.es.md) [Polish](docs/translations/pl/README.pl.md) [Russian](docs/translations/ru/README.ru.md) +[Français](docs/translations/fr/README.fr.md) \ No newline at end of file diff --git a/contributors/OceanePez.html b/contributors/OceanePez.html new file mode 100644 index 00000000..a3249167 --- /dev/null +++ b/contributors/OceanePez.html @@ -0,0 +1,119 @@ +
+

OceanePez

+

A french developer who wants to contribute to open source projects.

+

Programming languages I use

+
+
+ JavaScript +
+
+ Python +
+
+ Java +
+
SQL
+
PHP
+
+ HTML5 +
+
+ CSS3 +
+
+ SASS +
+
+ TailwindCSS +
+
+ Bootstrap +
+
+ React +
+
+ Markdown +
+
+ +

Tools I use

+
+ + + + + + + + + + + + + + +
+
+ diff --git a/docs/translations/Translations.md b/docs/translations/Translations.md index 94d690d8..44b1c77d 100644 --- a/docs/translations/Translations.md +++ b/docs/translations/Translations.md @@ -1,14 +1,15 @@ # Translations -| | Translated Link | -| ------------------------------------------------------------ | ------------------------------------------- | -| 日本語 | [日本語](ja/README.ja.md) | -| Deutsch | [Deutsch](de/README.de.md) | +| | Translated Link | +| ------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------- | +| 日本語 | [日本語](ja/README.ja.md) | +| Deutsch | [Deutsch](de/README.de.md) | | Português (Brasil) | [Português (Brasil)](pt_br/README.pt_br.md) | -| Bahasa Indonesia | [Bahasa Indonesia](id/README.id.md) | -| 中文 | [中文](cn/README.cn.md) | -| Türkiye | [Türkiye](tr/README.tr.md) | -| Italiano | [Italiano](it/README.it.md) | -| Spain | [Spain](es/README.es.md) | -| العربية | [العربية](ar/README.ar.md) | -| 한국어 | [한국어](kr/README.kr.md) | +| Bahasa Indonesia | [Bahasa Indonesia](id/README.id.md) | +| 中文 | [中文](cn/README.cn.md) | +| Türkiye | [Türkiye](tr/README.tr.md) | +| Italiano | [Italiano](it/README.it.md) | +| Spain | [Spain](es/README.es.md) | +| العربية | [العربية](ar/README.ar.md) | +| 한국어 | [한국어](kr/README.kr.md) | +| French | [French](fr/README.fr.md) | diff --git a/docs/translations/fr/CONTRIBUTING.fr.md b/docs/translations/fr/CONTRIBUTING.fr.md new file mode 100644 index 00000000..1adffd77 --- /dev/null +++ b/docs/translations/fr/CONTRIBUTING.fr.md @@ -0,0 +1,152 @@ +# Étapes pour contribuer + +fork le repository + +## Fork le repository en cliquant sur le bouton fork + +## Clone le repository "forké". + +Dans le repository que vous avez forké, cliquez sur le bouton code. +Sélectionnez l'onglet SSH puis cliquez sur le bouton `copier dans le presse-papiers`. + +clone le repository + +Ouvrez un terminal et exécutez la commande `git clone`. + +```bash +git clone "Url que vous avez copié" +``` + +> [!IMPORTANT] +> Dans les étapes suivantes, lorsque vous voyez ``, vous devez le remplacer par votre identifiant/pseudo GitHub. +> Par exemple, si votre identifiant/pseudo GitHub est `aaronsw`, +> `git switch -c add-` devient `git switch -c add-aaronsw` +> `contributors/.html` devient `contributors/aaronsw.html` + +copiez l'URL dans le presse-papiers + +## Création de votre branche + +Allez dans le répertoire du dépôt si vous n'y êtes pas déjà. + +```bash +cd code-contributions +``` + +Créez une branche avec la commande `git switch`. + +```bash +git switch -c add- +``` + +## Créez votre carte + +Vous pouvez ajouter votre carte en tant que fichier HTML dans le répertoire contributors. +Créez un fichier avec votre nom d'utilisateur dans le répertoire contributors. + +Vous pouvez copier le modèle suivant pour commencer. +(L'idéal est de faire une carte de présentation en anglais afin que tout le monde puisse la comprendre.) + +`contributors/.html` + +```html +
+

Votre pseudo

+

Votre résumé (Optionnel)

+

+ Programming languages I use (ou "Les langages de programmation que + j'utilise") +

+
+
+ Python +
+
+ JavaScript +
+
+ +

Tools I use (ou "Les outils que j'utilise")

+
+ + +
+
+ +``` + +## Ajoutez votre carte à la liste des contributeurs + +Ajoutez le nom du fichier que vous avez créé dans le fichier `scripts/contributors.js`. + +`scripts/contributors.js` + +```js +const contributorFiles = [ + ".html", // Ajoutez votre nom de fichier ici + "roshanjossey.html", + "gokultp.html", +]; +``` + +## Observez vos modifications dans un navigateur web + +Vous pouvez voir vos modifications en ouvrant `index.html` dans un navigateur web. +Vous devriez pouvoir voir la nouvelle carte que vous avez ajoutée dans les étapes précédentes. +Vous pouvez voir vos modifications dans un navigateur web en ouvrant le fichier `index.html` dans le navigateur web. +Vous devrez pouvoir voir la nouvelle carte que vous avez ajoutée dans les étapes précédentes. + +Vous pouvez continuer à apporter des modifications à votre carte et actualiser l'onglet du navigateur web pour voir ces modifications. + +## Commit vos modifications + +Tout d'abord, mettez vos modifications en scène avec la commande `git add` + +```bash +git add contributors/.html +``` + +Maintenant, commitez vos modifications avec la commande `git commit` + +````bash +git commit -m "add-" + +## Push vos modifications sur GitHub + +```bash +git push -u origin add- +```` + +## Créez une Pull Request + +Si vous allez sur votre repository sur GitHub, vous verrez un bouton `Compare & pull request`. Cliquez sur ce bouton. + +create a pull request + +Maintenant, soumettez la pull request. + +submit pull request + +Vous recevrez un e-mail de notification une fois les modifications fusionnées. diff --git a/docs/translations/fr/README.fr.md b/docs/translations/fr/README.fr.md new file mode 100644 index 00000000..d7ef8067 --- /dev/null +++ b/docs/translations/fr/README.fr.md @@ -0,0 +1,24 @@ +# code contributions + +C'est un projet pour vous entraîner à contribuer à des projets open source avec du code. +Nous assumerons que vous avez déjà terminé le tutoriel sur [first contributions](https://github.com/firstcontributions/first-contributions) + +Allez sur [le guide de contribution](CONTRIBUTING.fr.md) pour commencer. + +#### _Read this in [other languages](docs/translations/Translations.md)._ + +[Deutsch](../de/README.de.md) +[Português (Brasil)](../pt_br/README.pt_br.md) +[日本語](../ja/README.ja.md) +[Bahasa Indonesia](../id/README.id.md) +[中文](../cn/README.cn.md) +[Spain](../es/README.es.md) +[Türkiye](../tr/README.tr.md) +[Farsi](../fa/README.fa.md) +[Italiano](../it/README.it.md) +[العربية](../ar/README.ar.md) +[한국어](../kr/README.kr.md) +[Vietnam](../vn/README.es.md) +[Polish](../pl/README.pl.md) +[Russian](../ru/README.ru.md) +[France](../fr/README.fr.md)