From 721708635c2a17f741fa3e4d1f6e01349c49e252 Mon Sep 17 00:00:00 2001 From: Florian LEFEBVRE Date: Sat, 1 May 2021 19:27:48 +0200 Subject: [PATCH 1/3] translate into french --- README.md | 1 + i18n/README.fr.md | 87 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 i18n/README.fr.md diff --git a/README.md b/README.md index 1c981365c1..c086c2d4a7 100644 --- a/README.md +++ b/README.md @@ -79,6 +79,7 @@ Our client library is modular. Each sub-library is a standalone implementation f - [Japanese](https://github.com/supabase/supabase/blob/master/i18n/README.jp.md) - [English](https://github.com/supabase/supabase) - [Turkish](https://github.com/supabase/supabase/blob/master/i18n/README.tr.md) +- [French](https://github.com/supabase/supabase/blob/master/i18n/README.fr.md) --- diff --git a/i18n/README.fr.md b/i18n/README.fr.md new file mode 100644 index 0000000000..b0b2ea67d8 --- /dev/null +++ b/i18n/README.fr.md @@ -0,0 +1,87 @@ +

+ +

+ +--- + +# Supabase + +[Supabase](https://supabase.io) est une alternative open source à Firebase. Nous développons les fonctionnalités de Firebase en utilisant des outils open source de qualité professionnelle. + +- [x] Base de données Postgres hébergée +- [x] Abonnements en temps réel +- [x] Authentification et autorisation +- [x] API générées automatiquement +- [x] Tableau de bord +- [x] Stockage +- [ ] Fonctions (à venir) + +## Documentation + +Pour une documentation complète, visitez [supabase.io/docs](https://supabase.io/docs) + +## Communauté et Support + +- [Forum communautaire](https://github.com/supabase/supabase/discussions). Idéal pour : aide à la construction, discussion sur les meilleures pratiques en matière de bases de données. +- [GitHub Issues](https://github.com/supabase/supabase/issues). Idéal pour : les bugs et les erreurs que vous rencontrez en utilisant Supabase. +- [Support par e-mail](https://supabase.io/docs/support#business-support). Idéal pour : les problèmes avec votre base de données ou votre infrastructure. + +## Statut + +- [x] Alpha : Nous testons Supabase avec un groupe fermé de clients. +- [X] Alpha publique : Tout le monde peut s'inscrire sur [app.supabase.io]((https://app.supabase.io)). Mais allez-y doucement, il y a quelques problèmes. +- [x] Bêta publique : Assez stable pour la plupart des cas d'utilisation hors entreprise +- [ ] Public : Prêt pour la production + +Nous sommes actuellement en version bêta publique. Surveillez les "releases" de ce repo pour être informé des mises à jour majeures. + +Watch this repo + +--- + +## Comment ça marche + +Supabase est une combinaison d'outils open source. Nous développons les fonctionnalités de Firebase en utilisant des produits open source de qualité professionnelle. Si les outils et les communautés existent, avec une licence ouverte MIT, Apache 2 ou équivalente, nous utiliserons et soutiendrons cet outil. Si l'outil n'existe pas, nous le construisons et l'exploitons nous-mêmes. Supabase n'est pas une correspondance 1 à 1 de Firebase. Notre objectif est de donner aux développeurs une expérience similaire à celle de Firebase en utilisant des outils open source. + +**Architecture actuelle** + +Supabase est une [plateforme hébergée](https://app.supabase.io). Vous pouvez vous inscrire et commencer à utiliser Supabase sans rien installer. Nous sommes toujours en train de créer l'expérience de développement local - c'est maintenant notre objectif principal, ainsi que la stabilité de la plateforme. + +![Architecture](https://supabase.io/assets/images/supabase-architecture-9050a7317e9ec7efb7807f5194122e48.png) + +- [PostgreSQL](https://www.postgresql.org/) est un système de base de données relationnel-objet dont le développement actif depuis plus de 30 ans lui a valu une solide réputation de fiabilité, de robustesse des fonctionnalités et de performance. +- [Realtime](https://github.com/supabase/realtime) est un serveur Elixir qui vous permet d'écouter les insertions, mises à jour et suppressions PostgreSQL à l'aide de websockets. Supabase écoute la fonctionnalité de réplication intégrée de Postgres, convertit le flux d'octets de réplication en JSON, puis diffuse le JSON sur des websockets. +- [PostgREST](http://postgrest.org/) est un serveur web qui transforme votre base de données PostgreSQL en une API RESTful. +- [Storage](https://github.com/supabase/storage-api) fournit une interface RESTful pour gérer les fichiers stockés dans S3, en utilisant Postgres pour gérer les permissions. +- [postgres-meta](https://github.com/supabase/postgres-meta) est une API RESTful pour la gestion de votre Postgres, qui vous permet d'extraire des tables, d'ajouter des rôles, d'exécuter des requêtes, etc. +- [GoTrue](https://github.com/netlify/gotrue) est une API basée sur SWT pour gérer les utilisateurs et émettre des jetons SWT. +- [Kong](https://github.com/Kong/kong) est une passerelle API native cloud. + +#### Bibliothèques clients + +Notre bibliothèque client est modulaire. Chaque sous-bibliothèque est une implémentation autonome pour un seul système externe. C'est l'une des façons dont nous soutenons les outils existants. + +- **`supabase-{lang}`**: Combine les bibliothèques et ajoute des enrichissements. + - `postgrest-{lang}`: Bibliothèque client pour travailler avec [PostgREST](https://github.com/postgrest/postgrest) + - `realtime-{lang}`: Bibliothèque client pour travailler avec [Realtime](https://github.com/supabase/realtime) + - `gotrue-{lang}`: Bibliothèque client pour travailler avec [GoTrue](https://github.com/netlify/gotrue) + +| Repo | Officiel | Communauté | +| --------------------- | ------------------------------------------------ | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| **`supabase-{lang}`** | [`JS`](https://github.com/supabase/supabase-js) | [`C#`](https://github.com/supabase/supabase-csharp) \| [`Dart`](https://github.com/supabase/supabase-dart) \| [`Python`](https://github.com/supabase/supabase-py) \| `Rust` | +| `postgrest-{lang}` | [`JS`](https://github.com/supabase/postgrest-js) | [`C#`](https://github.com/supabase/postgrest-csharp) \| [`Dart`](https://github.com/supabase/postgrest-dart) \| [`Python`](https://github.com/supabase/postgrest-py) \| [`Rust`](https://github.com/supabase/postgrest-rs) | +| `realtime-{lang}` | [`JS`](https://github.com/supabase/realtime-js) | [`C#`](https://github.com/supabase/realtime-csharp) \| [`Dart`](https://github.com/supabase/realtime-dart) \| [`Python`](https://github.com/supabase/realtime-py) \| `Rust` | +| `gotrue-{lang}` | [`JS`](https://github.com/supabase/gotrue-js) | [`C#`](https://github.com/supabase/gotrue-csharp) \| [`Dart`](https://github.com/supabase/gotrue-dart) \| [`Python`](https://github.com/supabase/gotrue-py) \| `Rust` | + +## Traductions + +- [Allemand](https://github.com/supabase/supabase/blob/master/i18n/README.de.md) +- [Japonais](https://github.com/supabase/supabase/blob/master/i18n/README.jp.md) +- [Anglais](https://github.com/supabase/supabase) +- [Turque](https://github.com/supabase/supabase/blob/master/i18n/README.tr.md) + +--- + +## Sponsors + +[![New Sponsor](https://user-images.githubusercontent.com/10214025/90518111-e74bbb00-e198-11ea-8f88-c9e3c1aa4b5b.png)](https://github.com/sponsors/supabase) From 6dd5519bdf185c5461f9a99f85a5c8aa982a1755 Mon Sep 17 00:00:00 2001 From: dshukertjr <18113850+dshukertjr@users.noreply.github.com> Date: Sun, 2 May 2021 08:05:40 +0900 Subject: [PATCH 2/3] Swapped all readme.md logo with the one with white background --- README.md | 2 +- i18n/README.de.md | 2 +- i18n/README.jp.md | 9 +++++- i18n/README.tr.md | 2 +- web/static/supabase-light-with-background.svg | 31 +++++++++++++++++++ 5 files changed, 42 insertions(+), 4 deletions(-) create mode 100644 web/static/supabase-light-with-background.svg diff --git a/README.md b/README.md index 1c981365c1..48bdf844fb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- +

--- diff --git a/i18n/README.de.md b/i18n/README.de.md index 31958756cc..6a80ee8144 100644 --- a/i18n/README.de.md +++ b/i18n/README.de.md @@ -1,5 +1,5 @@

- +

--- diff --git a/i18n/README.jp.md b/i18n/README.jp.md index 929c90cc3a..cbdc935d94 100644 --- a/i18n/README.jp.md +++ b/i18n/README.jp.md @@ -1,5 +1,5 @@

- +

--- @@ -74,6 +74,13 @@ Supabaseクライアント・ライブラリはモジュール化されていま | `realtime-{lang}` | [`JS`](https://github.com/supabase/realtime-js) | [`C#`](https://github.com/supabase/realtime-csharp) \| [`Dart`](https://github.com/supabase/realtime-dart) \| [`Python`](https://github.com/supabase/realtime-py) \| `Rust` | | `gotrue-{lang}` | [`JS`](https://github.com/supabase/gotrue-js) | [`C#`](https://github.com/supabase/gotrue-csharp) \| [`Dart`](https://github.com/supabase/gotrue-dart) \| [`Python`](https://github.com/supabase/gotrue-py) \| `Rust` | +## 翻訳 + +- [ドイツ語](https://github.com/supabase/supabase/blob/master/i18n/README.de.md) +- [日本語](https://github.com/supabase/supabase/blob/master/i18n/README.jp.md) +- [英語](https://github.com/supabase/supabase) +- [トルコ語](https://github.com/supabase/supabase/blob/master/i18n/README.tr.md) + --- ## スポンサー diff --git a/i18n/README.tr.md b/i18n/README.tr.md index fc25f48737..2c89f8c10f 100644 --- a/i18n/README.tr.md +++ b/i18n/README.tr.md @@ -1,5 +1,5 @@

- +

--- diff --git a/web/static/supabase-light-with-background.svg b/web/static/supabase-light-with-background.svg new file mode 100644 index 0000000000..2123e6bb9f --- /dev/null +++ b/web/static/supabase-light-with-background.svg @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From 39c3f8cb820be2fee09507ee3ade26e62645c0ba Mon Sep 17 00:00:00 2001 From: dshukertjr <18113850+dshukertjr@users.noreply.github.com> Date: Sun, 2 May 2021 10:57:31 +0900 Subject: [PATCH 3/3] Fixed 404 on Supabase logo --- README.md | 2 +- i18n/README.de.md | 2 +- i18n/README.jp.md | 2 +- i18n/README.tr.md | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 48bdf844fb..059f67534e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- +

--- diff --git a/i18n/README.de.md b/i18n/README.de.md index 6a80ee8144..8ca668dffd 100644 --- a/i18n/README.de.md +++ b/i18n/README.de.md @@ -1,5 +1,5 @@

- +

--- diff --git a/i18n/README.jp.md b/i18n/README.jp.md index cbdc935d94..863fcc79e3 100644 --- a/i18n/README.jp.md +++ b/i18n/README.jp.md @@ -1,5 +1,5 @@

- +

--- diff --git a/i18n/README.tr.md b/i18n/README.tr.md index 2c89f8c10f..e13eb7094c 100644 --- a/i18n/README.tr.md +++ b/i18n/README.tr.md @@ -1,5 +1,5 @@

- +

---