```
diff --git a/translations/README.ur.md b/translations/README.ur.md
index 94655e6d055..67de3091818 100644
--- a/translations/README.ur.md
+++ b/translations/README.ur.md
@@ -41,7 +41,7 @@
ایک ٹرمینل کھولیں اور مندرجہ ذیل گٹ کمانڈ چلائیں:
-```
+```bash
git clone "یو آر ایل جو آپ نے ابھی کاپی کیا"
```
@@ -51,7 +51,7 @@ git clone "یو آر ایل جو آپ نے ابھی کاپی کیا"
مثال کے طور پر:
-```
+```bash
git clone https://github.com/this-is-you/first-contributions.git
```
@@ -61,19 +61,19 @@ git clone https://github.com/this-is-you/first-contributions.git
اپنے کمپیوٹر پر ریپوزٹری کی ڈائرکٹری تبدیل کریں (اگرآپ پہلے سے وہاں نہیں ہیں):
-```
+```bash
cd first-contributions
```
اب git checkout
کمانڈاستعمال کرتے ہوئے ایک شاخ تشکیل دیں :
-```
+```bash
git checkout -b
```
مثال کے طور پر:
-```
+```bash
git checkout -b add-alonzo-church
```
@@ -85,13 +85,13 @@ git checkout -b add-alonzo-church
اب Contributors.md
فائل کو ٹیکسٹ ایڈیٹر پر کھولیں، اپنا نام اس میں شامل کریں، اور پھر فائل کو محفوظ کریں. اگر آپ پراجیکٹ ڈائرکٹری میں جاتے ہیں اور کمانڈ git status
کو چلاتے ہیں، تو آپ دیکھیں گے کہ تبدیلیاں موجود ہیں. ان تبدیلیوں کو اس شاخ میں git add
کمانڈ استعمال کرتے ہوئے شامل کریں، جسے ابھی آپ نے بنایا تھا۔ :
-```
+```bash
git add Contributors.md
```
اب git commit
کمانڈ کا استعمال کرتے ہوئے ان تبدیلیوں کو سونپ دیں:
-```
+```bash
git commit -m "Add to Contributors list"
```
@@ -101,7 +101,7 @@ git commit -m "Add to Contributors list"
git push
کمانڈ کے ذریعے اپنی تبدیلیوں کو پش کریں:
-```
+```bash
git push origin
```
diff --git a/translations/README.uz.md b/translations/README.uz.md
index d86654b6b91..b3e08c0e961 100644
--- a/translations/README.uz.md
+++ b/translations/README.uz.md
@@ -28,7 +28,7 @@ Endi fork qilingan repositoryni kompyuteringizga klon qiling. Github akkountingi
Terminalni oching va quyidagi git buyruqlarini yurg'izing:
-```
+```bash
git clone "siz horizgina ko'chirib olgan url"
```
@@ -38,7 +38,7 @@ bu yerda "siz horizgina ko'chirib olgan url" (qo'shtirnoqlarsiz) ushbu repositor
Misol uchun:
-```
+```bash
git clone https://github.com/bu-siz/first-contributions.git
```
@@ -49,19 +49,19 @@ ko'chiryapsiz.
Kompyuteringizda repository papkasiga kiring (agar u yerda bo'lmasangiz)
-```
+```bash
cd first-contributions
```
Endi `git switch` buyrug'i orqali branch yarating:
-```
+```bash
git switch -c yangi-branch-nomingiz
```
Misol uchun:
-```
+```bash
git switch -c add-aliml92
```
@@ -75,13 +75,13 @@ Agar proyekt papkasiga o'tsangiz va `git status` buyrug'ini yurg'izsangiz, o'zga
`git add` buyrug'i yordamida hosil qilgan branchingizga o'zgarishlarni qo'shing:
-```
+```bash
git add Contributors.md
```
Endi `git commit` buyrug'i yordamida bu o'zgarishlarni commit qiling:
-```
+```bash
git commit -m "Contributors royxatiga ismingiz-ni kiritish"
```
`ismingiz-` ni o'rniga o'zingizni ismingizni yozing.
@@ -90,7 +90,7 @@ git commit -m "Contributors royxatiga ismingiz-ni kiritish"
`git push` buyrug'i bilan o'zgartishlaringizni push qiling:
-```
+```bash
git push origin -u yangi-branch-nomingiz
```
diff --git a/translations/README.vn.md b/translations/README.vn.md
index 14090269c79..b484d60d124 100644
--- a/translations/README.vn.md
+++ b/translations/README.vn.md
@@ -30,7 +30,7 @@ Bây giờ sao chép kho mã nguồn này vào máy của bạn. Nhấn vào nú
Mở một bộ xử lý terminal và chạy lệnh git sau đây:
-```
+```bash
git clone "url bạn vừa sao chép"
```
Trong đó "url bạn vừa sao chép" (không có dấu ngoặc kép) là url dẫn vào kho mã nguồn này. Xem các bước trước đó để có được url.
@@ -38,7 +38,7 @@ Trong đó "url bạn vừa sao chép" (không có dấu ngoặc kép) là url d
Ví dụ:
-```
+```bash
git clone https://github.com/tên-bạn/first-contributions.git
```
Trong đó `tên-bạn` là tên người dùng github của bạn. Ở đây bạn đang sao chép nội dung của kho mã nguồn "first-contributions" trong github vào máy tính của bạn
@@ -47,16 +47,16 @@ Trong đó `tên-bạn` là tên người dùng github của bạn. Ở đây b
Thay đổi môi trường làm việc bằng thư mục của kho mã nguồn trên máy tính của bạn.
-```
+```bash
cd first-contributions
```
Bây giờ tạo ra một chi nhánh sử dụng lệnh `git checkout`
-```
+```bash
git checkout -b
```
Ví dụ:
-```
+```bash
git checkout -b thêm-Tran-Ly-Vu
```
(Tên của chi nhánh không cần phải có từ *thêm* trong đó, nhưng nó được dùng vì mục đích của chi nhánh này là thêm tên của bạn vào danh sách.)
@@ -72,12 +72,12 @@ Nếu bạn vào thư mục hiện tại của project và thực hiện lệnh
Thêm những thay đổi vào chi nhánh bạn vừa tạo bằng lệnh `git add`:
-```
+```bash
git add Contributors.md
```
Bây giờ chấp nhận những thay đổi bằng cách sử dụng dòng lệnh `git commit` dưới đây.
-```
+```bash
git commit -m "Them vào danh sách Cộng tác viên"
```
@@ -86,7 +86,7 @@ Thay thế `` với tên của bạn
## Đẩy thay đổi lên github
Đẩy những thay đổi của bạn sử dụng `git push`
-```
+```bash
git push origin
```
Thay thế `` với tên của chi nhánh bạn tạo ra trước đó
diff --git a/translations/README.yor.md b/translations/README.yor.md
index b971c66de5b..0ad759adae3 100644
--- a/translations/README.yor.md
+++ b/translations/README.yor.md
@@ -28,7 +28,7 @@ oya e de ibi ipamọ yi si account yin, e lo si githubu accounti yin, e te 'clon
e sii ebute in ero ise yin, e te pipaṣẹ to be a labe oro yi si:
-```
+```bash
git clone "ọna asopọ ' te daakọ"
```
@@ -38,7 +38,7 @@ ibi, "ọna asopọ ' te daakọ" (lai awọn ' quote iṣmiṣ) lo je ono asopo
oye ko ri bi:
-```
+```bash
git clone https://github.com/oruko yin/first-contributions.git
```
@@ -48,19 +48,19 @@ ibi `oruko yin` ni oruko githubu accounti yin. ni bi yi en didako awon akoonu '
seda eka si ero, amo ko to sebe te pipaṣẹ yi si ibe
-```
+```bash
cd first-contributions
```
oya seda eka si pelu ' `git checkout` pipase:
-```
+```bash
git checkout -b
```
fun apere:
-```
+```bash
git checkout -b add-luke-oliff
```
@@ -76,13 +76,13 @@ to ba te pipase `git status` si ebute re, wa re awon ayipada ti ose
fi won mo eka ti ode pelu pipase yii `git add`:
-```
+```bash
git add Contributors.md
```
oya dawon papop pelu pipase yi `git commit`:
-```
+```bash
git commit -m "Add to Contributors list"
```
@@ -92,7 +92,7 @@ yi `` pada si oruko re.
te pipase yi `git push`:
-```
+```bash
git push origin
```
diff --git a/translations/README.zh-cn.md b/translations/README.zh-cn.md
index 95c3fc976ab..19f03889389 100644
--- a/translations/README.zh-cn.md
+++ b/translations/README.zh-cn.md
@@ -34,8 +34,8 @@ git clone "刚才复制的 url 链接"
譬如:
-```
-git clone https://github.com/Github用户名/first-contributions.git
+```bash
+git clone https://github.com//first-contributions.git
```
'Github 用户名' 指的是你的 Github 用户名。这一步,这个操作将会克隆你账户名下 first-contributions 这个代码仓库到本地电脑上。
@@ -44,16 +44,16 @@ git clone https://github.com/Github用户名/first-contributions.git
在命令行窗口中把目录切换到 first-contributions
-```
+```bash
cd first-contributions
```
接下来使用 `git switch` 命令新建一个代码分支
-```
+```bash
git switch -c <新分支的名称>
```
譬如:
-```
+```bash
git switch -c add-myname
```
@@ -65,12 +65,12 @@ git switch -c add-myname
-```
+```bash
git add Contributors.md
```
现在就可以使用 `git commit` 命令 commit 你的修改了。
-```
+```bash
git commit -m "Add <你的名字> to Contributors list"
```
将 `<你的名字>` 替换成你的名字
@@ -78,7 +78,7 @@ git commit -m "Add <你的名字> to Contributors list"
## 将改动 Push(推送)到 GitHub
使用 `git push` 命令推送代码
-```
+```bash
git push origin <分支的名称>
```
将 `<分支的名称>` 替换为之前新建的分支名称。
diff --git a/translations/README.zh-tw.md b/translations/README.zh-tw.md
index 7e0ed19a74f..044a4a3cde9 100644
--- a/translations/README.zh-tw.md
+++ b/translations/README.zh-tw.md
@@ -28,7 +28,7 @@
隨後打開命令列視窗,鍵入如下 git 命令:
-```
+```bash
git clone "url you just copied"
```
"url you just copied"(去掉雙引號)就是複製到妳/你帳戶名下的儲存庫地址。取得這鏈接地址的方法請見上一步。
@@ -36,8 +36,8 @@ git clone "url you just copied"
譬如:
-```
-git clone https://github.com/this-is-you/first-contributions.git
+```bash
+git clone https://github.com//first-contributions.git
```
'this-is-you' 指的就是你/妳自己的 GitHub 用戶名。這一步,會將你/妳的 first-contributions 儲存庫複製到你的電腦上。
@@ -46,16 +46,16 @@ git clone https://github.com/this-is-you/first-contributions.git
下面的命令能在命令行窗口中,把目錄切換到 first-contributions。
-```
+```bash
cd first-contributions
```
接下來使用 `git switch` 命令建立一個程式碼分支:
-```
+```bash
git switch -c
```
譬如:
-```
+```bash
git switch -c add-david
```
@@ -67,12 +67,12 @@ git switch -c add-david
-```
+```bash
git add Contributors.md
```
現在就可以使用 `git commit` 命令 commit(提交)你/妳的修改了。
-```
+```bash
git commit -m "Add to Contributors list"
```
將 `` 替換為自己的名字
@@ -80,7 +80,7 @@ git commit -m "Add to Contributors list"
## 將更動發佈(Push)到 GitHub
使用 `git push` 命令發佈代碼
-```
+```bash
git push origin
```
將 `` 替換為之前新建的分支名稱。
diff --git a/translations/README.zul.md b/translations/README.zul.md
index 120cfff338d..ed3c6c39c74 100644
--- a/translations/README.zul.md
+++ b/translations/README.zul.md
@@ -31,7 +31,7 @@ Manje faka i-repo efakwe emshini wakho kumshini wakho. Yiya ku-akhawunti yakho y
Vula i-console bese ugijima umyalo we-git:
-```
+```bash
git clone "url you just copied"
```
lapho "u-url osuvele ukopishe khona" (ngaphandle kwama-quote marks) yi-url kule ndawo yokugcina (ifomu lakho lephrojekthi). Bona izinyathelo zangaphambilini ukuthola i-url.
@@ -41,7 +41,7 @@ lapho "u-url osuvele ukopishe khona" (ngaphandle kwama-quote marks) yi-url kule
Ngokwesibonelo:
-```
+```bash
git clone https://github.com/this-is-you/first-contributions.git
```
@@ -51,19 +51,19 @@ iphi this-is-youigama lomsebenzisi lakho le-GitHub. Lapha ukopisha okuqukethwe k
Shintsha kwirekhodi lokugcina ekhompyutheni yakho (uma ungasekho kakade):
-```
+```bash
cd first-contributions
```
Manje dala igatsha usebenzisa `git checkout` umyalo:
-```
+```bash
git checkout -b
```
Ngokwesibonelo
-```
+```bash
git checkout -b engeza-adam-kowalski
```
(Igama legatsha ayidingi ukuba izwi engeza kuwo, kodwa into enengqondo ukufaka ngoba inhloso yaleli gatsha ukwengeza igama lakho uhlu.)
@@ -79,13 +79,13 @@ Uma uya encwadini yomhlahlandlela bese wenza umyalo `git status`, uzobona kukho
Engeza lezo zinguquko egatsheni owake wadala usebenzisa `git add` umyalo:
-```
+```bash
git add Contributors.md
```
Manje yenza lezo zinguquko usebenzisa `git commit` umyalo:
-```
+```bash
git commit -m "Add to Contributors list"
```
@@ -95,7 +95,7 @@ ukufaka esikhundleni `` ngegama lakho.
Pushisa izinguquko zakho usebenzisa umyalo `git push`:
-```
+```bash
git push origin
```