diff --git a/.github/README.md b/.github/README.md
index 45f54cda..9dac072d 100644
--- a/.github/README.md
+++ b/.github/README.md
@@ -30,6 +30,9 @@
+
+
+ Fiber, Go için en hızlı HTTP motoru olan Fasthttp üzerine inşa edilmiş, Express den ilham alan bir web çatısıdır. Sıfır bellek ayırma ve performans göz önünde bulundurularak hızlı geliştirme için işleri kolaylaştırmak üzere tasarlandı.
+
+
+
+
+
diff --git a/.github/README_de.md b/.github/README_de.md
index 0c8a6ac5..7f7be585 100644
--- a/.github/README_de.md
+++ b/.github/README_de.md
@@ -30,6 +30,9 @@
+
+
+
diff --git a/.github/README_es.md b/.github/README_es.md
index 4c28aa93..74f46658 100644
--- a/.github/README_es.md
+++ b/.github/README_es.md
@@ -30,6 +30,9 @@
+
+
+
diff --git a/.github/README_fr.md b/.github/README_fr.md
index 9432ff83..f86c314d 100644
--- a/.github/README_fr.md
+++ b/.github/README_fr.md
@@ -30,6 +30,9 @@
+
+
+
@@ -102,15 +105,15 @@ Ces tests sont effectués par [TechEmpower](https://github.com/TechEmpower/Frame
- [Faible empreinte mémoire](https://fiber.wiki/benchmarks)
- [API endpoints](https://fiber.wiki/context)
- Middleware & [Next](https://fiber.wiki/context#next) support
-- Programmation côté serveur [rapide](https://dev.to/koddr/welcome-to-fiber-an-express-js-styled-fastest-web-framework-written-with-on-golang-497)
+- Programmation côté serveur [rapide](https://dev.to/koddr/welcome-to-fiber-an-express-js-styled-fastest-web-framework-written-with-on-golang-497)
- Disponible en [5 langues](https://fiber.wiki/)
- Et plus encore, [explorez Fiber](https://fiber.wiki/)
## 💡 Philosophie
-Les nouveaux gophers qui passent de [Node.js](https://nodejs.org/en/about/) à [Go](https://golang.org/doc/) sont confrontés à une courbe d'apprentissage, avant de pouvoir construire leurs applications web et microservices. Fiber, en tant que **framework web**, a été mis au point avec en tête l'idée de **minimalisme**, tout en suivant l'**UNIX way**, afin que les nouveaux gophers puissent rapidement entrer dans le monde de Go, avec un accueil chaleureux, de confiance.
+Les nouveaux gophers qui passent de [Node.js](https://nodejs.org/en/about/) à [Go](https://golang.org/doc/) sont confrontés à une courbe d'apprentissage, avant de pouvoir construire leurs applications web et microservices. Fiber, en tant que **framework web**, a été mis au point avec en tête l'idée de **minimalisme**, tout en suivant l'**UNIX way**, afin que les nouveaux gophers puissent rapidement entrer dans le monde de Go, avec un accueil chaleureux, de confiance.
-Fiber est **inspiré** par Express, le framework web le plus populaire d'Internet. Nous avons combiné la **facilité** d'Express, et la **performance brute** de Go. Si vous avez déja développé une application web en Node.js (_en utilisant Express ou équivalent_), alors de nombreuses méthodes et principes vous sembleront **familiers**.
+Fiber est **inspiré** par Express, le framework web le plus populaire d'Internet. Nous avons combiné la **facilité** d'Express, et la **performance brute** de Go. Si vous avez déja développé une application web en Node.js (_en utilisant Express ou équivalent_), alors de nombreuses méthodes et principes vous sembleront **familiers**.
## 👀 Exemples
diff --git a/.github/README_ja.md b/.github/README_ja.md
index 76c9cbf4..5d35a86b 100644
--- a/.github/README_ja.md
+++ b/.github/README_ja.md
@@ -30,6 +30,9 @@
+
+
+
diff --git a/.github/README_ko.md b/.github/README_ko.md
index 78e6a80a..80e76ff1 100644
--- a/.github/README_ko.md
+++ b/.github/README_ko.md
@@ -30,6 +30,9 @@
+
+
+
diff --git a/.github/README_pt.md b/.github/README_pt.md
index db732881..3b0b4c55 100644
--- a/.github/README_pt.md
+++ b/.github/README_pt.md
@@ -30,6 +30,9 @@
+
+
+
diff --git a/.github/README_ru.md b/.github/README_ru.md
index 710f2504..2656207a 100644
--- a/.github/README_ru.md
+++ b/.github/README_ru.md
@@ -30,6 +30,9 @@
+
+
+
diff --git a/.github/README_tr.md b/.github/README_tr.md
new file mode 100644
index 00000000..bb40d6f8
--- /dev/null
+++ b/.github/README_tr.md
@@ -0,0 +1,319 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
📚 Daha fazla kod örneği görüntüle
+
+### Özel 404 Cevabı
+
+```go
+func main() {
+ app := fiber.New()
+
+ app.Static("/public")
+ app.Get("/demo", func(c *fiber.Ctx) {
+ c.Send("This is a demo!")
+ })
+ app.Post("/register", func(c *fiber.Ctx) {
+ c.Send("Welcome!")
+ })
+
+ // Last middleware to match anything
+ app.Use(func(c *fiber.Ctx) {
+ c.SendStatus(404) // => 404 "Not Found"
+ })
+
+ app.Listen(3000)
+}
+```
+
+### JSON Cevabı
+
+```go
+func main() {
+ app := fiber.New()
+
+ type User struct {
+ Name string `json:"name"`
+ Age int `json:"age"`
+ }
+
+ // Serialize JSON
+ app.Get("/json", func(c *fiber.Ctx) {
+ c.JSON(&User{"John", 20})
+ // => {"name":"John", "age":20}
+ })
+
+ app.Listen(3000)
+}
+```
+
+
+### Panikten Kurtarma
+
+```go
+func main() {
+ app := fiber.New()
+
+ app.Get("/", func(c *fiber.Ctx) {
+ panic("Something went wrong!")
+ })
+
+ app.Recover(func(c *fiber.Ctx) {
+ c.Status(500).Send(c.Error())
+ // => 500 "Something went wrong!"
+ })
+
+ app.Listen(3000)
+}
+```
+
+
+
+
+
+ |
+
+
+ |
+
+
+ |
+
+
+ |
+