From 00986ba995a3937400db25fd1dbe392a53838c0f Mon Sep 17 00:00:00 2001 From: Emir Date: Mon, 4 Mar 2024 19:05:25 +0300 Subject: [PATCH 1/6] Make the sentence more understandable --- .github/README_tr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README_tr.md b/.github/README_tr.md index c45b870fc3..4e820ba04d 100644 --- a/.github/README_tr.md +++ b/.github/README_tr.md @@ -128,7 +128,7 @@ Bu testler [TechEmpower](https://www.techempower.com/benchmarks/#section=data-r1 ## ⚙️ Kurulum -Go'nun `1.20` sürümü ([indir](https://go.dev/dl/)) veya daha yüksek bir sürüm gerekli. +Go'nun yüklü olduğundan emin olun ([indir](https://go.dev/dl/)). `1.20` veya veya daha yüksek bir sürüme sahip olmanız gerekmektedir. Bir dizin oluşturup dizinin içinde `go mod init github.com/your/repo` komutunu yazarak projenizi geliştirmeye başlayın ([daha fazla öğren](https://go.dev/blog/using-go-modules)). Ardından Fiber'ı kurmak için [`go get`](https://pkg.go.dev/cmd/go/#hdr-Add_dependencies_to_current_module_and_install_them) komutunu çalıştırın: From 0252b9baecb4a6738f7455844df0b39c51aa6023 Mon Sep 17 00:00:00 2001 From: Emir Date: Mon, 4 Mar 2024 19:12:59 +0300 Subject: [PATCH 2/6] Add the English version of the words as the Turkish version is difficult to understand. --- .github/README_tr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README_tr.md b/.github/README_tr.md index 4e820ba04d..a8831f1adc 100644 --- a/.github/README_tr.md +++ b/.github/README_tr.md @@ -142,7 +142,7 @@ go get -u github.com/gofiber/fiber/v3 - [Statik dosya](https://docs.gofiber.io/api/app#static) sunumu - Olağanüstü [performans](https://docs.gofiber.io/extra/benchmarks) - [Düşük bellek](https://docs.gofiber.io/extra/benchmarks) kullanımı -- [API uç noktaları](https://docs.gofiber.io/api/ctx) +- [API uç noktaları (endpoints)](https://docs.gofiber.io/api/ctx) - Middleware'lar & [Next](https://docs.gofiber.io/api/ctx#next) desteği - [Hızlı](https://dev.to/koddr/welcome-to-fiber-an-express-js-styled-fastest-web-framework-written-with-on-golang-497) sunucu taraflı programlama - [Template motorları](https://github.com/gofiber/template) From c2b6257b7a57d735e3cb75a0d2fbbd7e4fd164e7 Mon Sep 17 00:00:00 2001 From: Emir Date: Mon, 4 Mar 2024 23:00:58 +0300 Subject: [PATCH 3/6] Improve translation --- .github/README_tr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README_tr.md b/.github/README_tr.md index a8831f1adc..2dde66f0b6 100644 --- a/.github/README_tr.md +++ b/.github/README_tr.md @@ -318,7 +318,7 @@ func main() { Views: pug.New("./views", ".pug"), }) - // Ve şimdi `./views/home.pug` templateni şu şekilde çağırabilirsiniz: + // Ve şimdi `./views/home.pug` template'ini şu şekilde çağırabilirsiniz: app.Get("/", func(c fiber.Ctx) error { return c.Render("home", fiber.Map{ "title": "Homepage", From 449765f852b918cd10bf6c4ae75fe0144085f57c Mon Sep 17 00:00:00 2001 From: Emir Date: Mon, 4 Mar 2024 23:03:49 +0300 Subject: [PATCH 4/6] Correct the meaningless sentence --- .github/README_tr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README_tr.md b/.github/README_tr.md index 2dde66f0b6..a2a80a7c63 100644 --- a/.github/README_tr.md +++ b/.github/README_tr.md @@ -582,7 +582,7 @@ Fiber'a dahil edilen middlewareların bir listesi aşağıda verilmiştir. | Middleware | Açıklama | | :------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [basicauth](https://github.com/gofiber/fiber/tree/master/middleware/basicauth) | Basic auth middleware'ı, bir HTTP Basic auth sağlar. Geçerli kimlik bilgileri için sonraki handlerı ve eksik veya geçersiz kimlik bilgileri için 401 döndürür. | +| [basicauth](https://github.com/gofiber/fiber/tree/master/middleware/basicauth) | Basic auth middleware'ı, bir HTTP Basic authentication sağlar. Geçerli kimlik bilgileri için sonraki handlerı çağırır, eksik veya geçersiz kimlik bilgileri içinse 401 döndürür. | | [cache](https://github.com/gofiber/fiber/tree/master/middleware/cache) | Reponseları durdur ve önbelleğe al. | | [compress](https://github.com/gofiber/fiber/tree/master/middleware/compress) | Fiber için sıkıştırma middleware, varsayılan olarak `deflate`, `gzip` ve `brotli`yi destekler. | | [cors](https://github.com/gofiber/fiber/tree/master/middleware/cors) | Çeşitli seçeneklerle başlangıçlar arası kaynak paylaşımını \(CORS\) etkinleştirin. | From f7297980530a566bb1254aafc03143151331ec1d Mon Sep 17 00:00:00 2001 From: Emir Date: Mon, 4 Mar 2024 23:06:00 +0300 Subject: [PATCH 5/6] Convert first letter to uppercase --- .github/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README.md b/.github/README.md index c2fae086b7..493aebf8ab 100644 --- a/.github/README.md +++ b/.github/README.md @@ -562,7 +562,7 @@ func main() { } ``` -### Recover middleware +### Recover Middleware 📖 [Recover](https://docs.gofiber.io/api/middleware/recover) From 809ed65c8d91023ea0e4cbb547f7bf77287ca615 Mon Sep 17 00:00:00 2001 From: Emir Date: Mon, 4 Mar 2024 23:52:50 +0300 Subject: [PATCH 6/6] Delete repeated word --- .github/README_tr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/README_tr.md b/.github/README_tr.md index a2a80a7c63..2bf4714eec 100644 --- a/.github/README_tr.md +++ b/.github/README_tr.md @@ -128,7 +128,7 @@ Bu testler [TechEmpower](https://www.techempower.com/benchmarks/#section=data-r1 ## ⚙️ Kurulum -Go'nun yüklü olduğundan emin olun ([indir](https://go.dev/dl/)). `1.20` veya veya daha yüksek bir sürüme sahip olmanız gerekmektedir. +Go'nun yüklü olduğundan emin olun ([indir](https://go.dev/dl/)). `1.20` veya daha yüksek bir sürüme sahip olmanız gerekmektedir. Bir dizin oluşturup dizinin içinde `go mod init github.com/your/repo` komutunu yazarak projenizi geliştirmeye başlayın ([daha fazla öğren](https://go.dev/blog/using-go-modules)). Ardından Fiber'ı kurmak için [`go get`](https://pkg.go.dev/cmd/go/#hdr-Add_dependencies_to_current_module_and_install_them) komutunu çalıştırın: