Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix name validation consistency #349

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions docs/contributing/contributing_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ Bruno 基于 NextJs 和 React 构建。我们使用 Electron 来封装桌面版

您需要 [Node v18.x 或最新的 LTS 版本](https://nodejs.org/en/) 和 npm 8.x。我们在这个项目中也使用 npm 工作区(_npm workspaces_)。


## 开发

Bruno 是作为一个 _client lourd(重客户端)_ 应用程序开发的。您需要在一个终端中启动 nextjs 来加载应用程序,然后在另一个终端中启动 Electron 应用程序。
Expand Down Expand Up @@ -68,7 +67,6 @@ done
find . -type f -name "package-lock.json" -delete
```


### 测试

```bash
Expand All @@ -79,12 +77,11 @@ npm test --workspace=packages/bruno-schema
npm test --workspace=packages/bruno-lang
```


### 提交 Pull Request

- 请保持 PR 精简并专注于单一目标
- 请遵循分支命名格式:
- feature/[feature name]:该分支应包含特定功能
- 例如:feature/dark-mode
- bugfix/[bug name]:该分支应仅包含特定 bug 的修复
- 例如:bugfix/bug-1
- 例如:bugfix/bug-1
5 changes: 1 addition & 4 deletions docs/contributing/contributing_fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ Vous aurez besoin de [Node v18.x ou la dernière version LTS](https://nodejs.org

Bruno est développé comme une application _client lourd_. Vous devrez charger l'application en démarrant nextjs dans un premier terminal, puis démarre l'application Electron dans un second.


### Dépendances

- NodeJS v18
Expand Down Expand Up @@ -68,7 +67,6 @@ done
find . -type f -name "package-lock.json" -delete
```


### Tests

```bash
Expand All @@ -79,12 +77,11 @@ npm test --workspace=packages/bruno-schema
npm test --workspace=packages/bruno-lang
```


### Ouvrir une Pull Request

- Merci de conserver les PR minimes et focalisées sur un seul objectif
- Merci de suivre le format de nom des branches :
- feature/[feature name]: Cette branche doit contenir une fonctionnalité spécifique
- Exemple: feature/dark-mode
- bugfix/[bug name]: Cette branche doit contenir seulement une solution pour un bug spécifique
- Exemple: bugfix/bug-1
- Exemple: bugfix/bug-1
4 changes: 2 additions & 2 deletions docs/contributing/contributing_pl.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Bruno jest rozwijane jako aplikacja desktopowa. Musisz załadować aplikację, u

### Lokalny Rozwój

```bash
````bash
# użyj wersji nodejs 18
nvm use

Expand Down Expand Up @@ -66,7 +66,7 @@ done
# Usuń package-lock w podkatalogach
find . -type f -name "package-lock.json" -delete

```
````

### Testowanie

Expand Down
4 changes: 2 additions & 2 deletions docs/contributing/contributing_tr.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[English](../../contributing.md) | [Українська](docs/contributing/contributing_ua.md) | [Русский](docs/contributing/contributing_ru.md) | **Türkçe** | [Deutsch](docs/contributing/contributing_de.md) | [Français](docs/contributing/contributing_fr.md) | [Português (BR)](docs/contributing/contributing_pt_br.md) | [বাংলা](docs/contributing/contributing_bn.md) | [Español](docs/contributing/contributing_es.md) | [Română](docs/contributing/contributing_ro.md) | [Polski](docs/contributing/contributing_pl.md)
| [简体中文](docs/contributing/contributing_cn.md)
| [简体中文](docs/contributing/contributing_cn.md)

## Bruno'yu birlikte daha iyi hale getirelim!!!

bruno'yu geliştirmek istemenizden mutluluk duyuyoruz. Aşağıda, bruno'yu bilgisayarınıza getirmeye başlamak için yönergeler bulunmaktadır.
Expand Down Expand Up @@ -57,7 +58,6 @@ npm run dev:electron

`npm install`'ı çalıştırdığınızda `Unsupported platform` hatası ile karşılaşabilirsiniz. Bunu düzeltmek için `node_modules` ve `package-lock.json` dosyalarını silmeniz ve `npm install` dosyasını çalıştırmanız gerekecektir. Bu, uygulamayı çalıştırmak için gereken tüm gerekli paketleri yüklemelidir.


```shell
# Alt dizinlerdeki node_modules öğelerini silme
find ./ -type d -name "node_modules" -print0 | while read -d $'\0' dir; do
Expand Down
4 changes: 0 additions & 4 deletions docs/contributing/contributing_zhtw.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,10 @@ Bruno 使用 Next.js 和 React 構建。我們使用 Electron 來封裝及發佈

您需要使用 [Node v18.x 或最新的 LTS 版本](https://nodejs.org/en/) 和 npm 8.x。我們在這個專案中使用 npm 工作區(_npm workspaces_)。


## 開發

Bruno 正以桌面應用程式的形式開發。您需要在一個終端機中執行 Next.js 來載入應用程式,然後在另一個終端機中執行 electron 應用程式。


### 開發依賴

- NodeJS v18
Expand Down Expand Up @@ -69,7 +67,6 @@ done
find . -type f -name "package-lock.json" -delete
```


### 測試

```bash
Expand All @@ -80,7 +77,6 @@ npm test --workspace=packages/bruno-schema
npm test --workspace=packages/bruno-lang
```


### 發送 Pull Request

- 請保持 PR 精簡並專注於一個目標
Expand Down
10 changes: 4 additions & 6 deletions docs/readme/readme_cn.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<br />
<img src="../../assets/images/logo-transparent.png" width="80"/>

### Bruno - 开源IDE,用于探索和测试API
### Bruno - 开源 IDE,用于探索和测试 API

[![GitHub version](https://badge.fury.io/gh/usebruno%2Fbruno.svg)](https://badge.fury.io/gh/usebruno%bruno)
[![CI](https://github.com/usebruno/bruno/actions/workflows/unit-tests.yml/badge.svg?branch=main)](https://github.com/usebruno/bruno/workflows/unit-tests.yml)
Expand All @@ -12,16 +12,14 @@

[English](../../readme.md) | [Українська](./readme_ua.md) | [Русский](./readme_ru.md) | [Türkçe](./readme_tr.md) | [Deutsch](./readme_de.md) | [Français](./readme_fr.md) | [Português (BR)](./readme_pt_br.md) | [한국어](./readme_kr.md) | [বাংলা](./readme_bn.md) | [Español](./readme_es.md) | [Italiano](./readme_it.md) | [Română](./readme_ro.md) | [Polski](./readme_pl.md) | [简体中文](./readme_cn.md)


Bruno 是一款全新且创新的 API 客户端,旨在颠覆 Postman 和其他类似工具。

Bruno 直接在您的电脑文件夹中存储您的 API 信息。我们使用纯文本标记语言 Bru 来保存有关 API 的信息。

您可以使用 Git 或您选择的任何版本控制系统来对您的API信息进行版本控制和协作
您可以使用 Git 或您选择的任何版本控制系统来对您的 API 信息进行版本控制和协作

Bruno 仅限离线使用。我们计划永不向 Bruno 添加云同步功能。我们重视您的数据隐私,并认为它应该留在您的设备上。阅读我们的长期愿景 [点击查看](https://github.com/usebruno/bruno/discussions/269)


📢 观看我们在印度 FOSS 3.0 会议上的最新演讲 [点击查看](https://www.youtube.com/watch?v=7bSMFpbcPiY)

![bruno](../../assets/images/landing-2.png) <br /><br />
Expand Down Expand Up @@ -97,9 +95,9 @@ sudo apt install bruno

### 贡献 👩‍💻🧑‍💻

我很高兴您希望改进bruno。请查看 [贡献指南](../../contributing.md)。
我很高兴您希望改进 bruno。请查看 [贡献指南](../../contributing.md)。

即使您无法通过代码做出贡献,我们仍然欢迎您提出BUG和新的功能需求
即使您无法通过代码做出贡献,我们仍然欢迎您提出 BUG 和新的功能需求

### 作者

Expand Down
2 changes: 1 addition & 1 deletion docs/readme/readme_es.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ O cualquier otro sistema de control de versiones que prefieras
- [Precios](https://www.usebruno.com/pricing)
- [Descargas](https://www.usebruno.com/downloads)

### Casos de uso 🎥
### Casos de uso 🎥

- [Testimonios](https://github.com/usebruno/bruno/discussions/343)
- [Centro de Conocimiento](https://github.com/usebruno/bruno/discussions/386)
Expand Down
7 changes: 2 additions & 5 deletions docs/readme/readme_fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
[![Website](https://img.shields.io/badge/Website-Visit-blue)](https://www.usebruno.com)
[![Download](https://img.shields.io/badge/Download-Latest-brightgreen)](https://www.usebruno.com/downloads)


[English](/readme.md) | [Українська](docs/readme/readme_ua.md) | [Русский](docs/readme/readme_ru.md) | [Türkçe](docs/readme/readme_tr.md) | [Deutsch](docs/readme/readme_de.md) | **Français** | [Português (BR)](docs/readme/readme_pt_br.md) | [한국어](docs/readme/readme_kr.md) | [বাংলা](docs/readme/readme_bn.md) | [Español](docs/readme/readme_es.md) | [Italiano](docs/readme/readme_it.md) | [Română](docs/readme/readme_ro.md) | [Polski](docs/readme/readme_pl.md)

Bruno est un nouveau client API, innovant, qui a pour but de révolutionner le _status quo_ que représente Postman et les autres outils.
Expand All @@ -21,17 +20,15 @@ Vous pouvez utiliser git ou tout autre gestionnaire de version pour travailler d

Bruno ne fonctionne qu'en mode déconnecté. Il n'y a pas de d'abonnement ou de synchronisation avec le cloud Bruno, il n'y en aura jamais. Nous sommes conscients de la confidentialité de vos données et nous sommes convaincus qu'elles doivent rester sur vos appareils. Vous pouvez lire notre vision à long terme [ici (en anglais)](https://github.com/usebruno/bruno/discussions/269).


📢 Regarder notre présentation récente lors de la conférence India FOSS 3.0 (en anglais) [ici](https://www.youtube.com/watch?v=7bSMFpbcPiY)

📢 Regarder notre présentation récente lors de la conférence India FOSS 3.0 (en anglais) [ici](https://www.youtube.com/watch?v=7bSMFpbcPiY)

![bruno](/assets/images/landing-2.png) <br /><br />

### Installation

Bruno est disponible au téléchargement [sur notre site web](https://www.usebruno.com/downloads), pour Mac, Windows et Linux.

Vous pouvez aussi installer Bruno via un gestionnaire de paquets, comme Homebrew, Chocolatey, Scoop, Snap et Apt.
Vous pouvez aussi installer Bruno via un gestionnaire de paquets, comme Homebrew, Chocolatey, Scoop, Snap et Apt.

```sh
# Mac via Homebrew
Expand Down
2 changes: 1 addition & 1 deletion docs/readme/readme_kr.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ sudo apt install bruno

![bruno](assets/images/run-anywhere.png) <br /><br />

### Git과 연동하세요. 👩‍💻🧑‍💻
### Git과 연동하세요. 👩‍💻🧑‍💻

또는 원하는 버전 관리 시스템을 선택하세요.

Expand Down
1 change: 0 additions & 1 deletion docs/readme/readme_ru.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
[![Website](https://img.shields.io/badge/Website-Visit-blue)](https://www.usebruno.com)
[![Download](https://img.shields.io/badge/Download-Latest-brightgreen)](https://www.usebruno.com/downloads)


[English](/readme.md) | [Українська](/readme_ua.md) | **Русский** | [Türkçe](/readme_tr.md) | [Deutsch](/readme_de.md) | [Français](/readme_fr.md) | [বাংলা](docs/readme/readme_bn.md)

Bruno - новый и инновационный клиент API, направленный на революцию в установившейся ситуации, представленной Postman и подобными инструментами.
Expand Down
Loading
Loading