diff --git a/contributing.md b/contributing.md index 6517759b..e2a558cc 100644 --- a/contributing.md +++ b/contributing.md @@ -1,12 +1,12 @@ **English** | [Українська](/contributing_ua.md) | [Русский](/contributing_ru.md) | [Türkçe](/contributing_tr.md) | [Deutsch](/contributing_de.md) | [Français](/contributing_fr.md) -## Lets make bruno better, together !! +## Let's make bruno better, together !! I am happy that you are looking to improve bruno. Below are the guidelines to get started bringing up bruno on your computer. ### Technology Stack -Bruno is built using NextJs and React. We also use electron to ship a desktop version (that supports local collections) +Bruno is built using Next.js and React. We also use electron to ship a desktop version (that supports local collections) Libraries we use @@ -23,7 +23,7 @@ Libraries we use You would need [Node v18.x or the latest LTS version](https://nodejs.org/en/) and npm 8.x. We use npm workspaces in the project -### Lets start coding +### Let's start coding Please reference [development.md](docs/development.md) for instructions on running the local development environment. diff --git a/contributing_de.md b/contributing_de.md index cfb2ed82..26b1ffb6 100644 --- a/contributing_de.md +++ b/contributing_de.md @@ -6,7 +6,7 @@ Ich freue mich, dass Du Bruno verbessern möchtest. Hier findest Du eine Anleitu ### Technologie Stack -Bruno ist mit NextJs und React erstellt. Außerdem benötigen wir electron für die Desktop Version (die lokale Sammlungen unterstützt). +Bruno ist mit Next.js und React erstellt. Außerdem benötigen wir electron für die Desktop Version (die lokale Sammlungen unterstützt). Bibliotheken die wir benutzen diff --git a/contributing_ru.md b/contributing_ru.md index 39a8c55f..62fc5d03 100644 --- a/contributing_ru.md +++ b/contributing_ru.md @@ -6,7 +6,7 @@ ### Стек -Bruno построен с использованием NextJs и React. Мы также используем electron для поставки десктопной версии ( которая поддерживает локальные коллекции ) +Bruno построен с использованием Next.js и React. Мы также используем electron для поставки десктопной версии ( которая поддерживает локальные коллекции ) Библиотеки, которые мы используем diff --git a/contributing_tr.md b/contributing_tr.md index ff7e1321..69d3098a 100644 --- a/contributing_tr.md +++ b/contributing_tr.md @@ -6,7 +6,7 @@ Bruno'yu geliştirmek istemenizden mutluluk duyuyorum. Aşağıda, bruno'yu bilg ### Kullanılan Teknolojiler -Bruno, NextJs ve React kullanılarak oluşturulmuştur. Ayrıca bir masaüstü sürümü (yerel koleksiyonları destekleyen) göndermek için electron kullanıyoruz +Bruno, Next.js ve React kullanılarak oluşturulmuştur. Ayrıca bir masaüstü sürümü (yerel koleksiyonları destekleyen) göndermek için electron kullanıyoruz Kullandığımız kütüphaneler diff --git a/contributing_ua.md b/contributing_ua.md index d9ac8866..de7f3f4e 100644 --- a/contributing_ua.md +++ b/contributing_ua.md @@ -6,7 +6,7 @@ ### Стек технологій -Bruno побудований на NextJs та React. Також для десктопної версії (яка підтримує локальні колекції) використовується Electron +Bruno побудований на Next.js та React. Також для десктопної версії (яка підтримує локальні колекції) використовується Electron Бібліотеки, які ми використовуємо diff --git a/docs/development.md b/docs/development.md index 7c6ef583..af4d5d4a 100644 --- a/docs/development.md +++ b/docs/development.md @@ -2,7 +2,7 @@ ## Development -Bruno is being developed as a desktop app. You need to load the app by running the nextjs app in one terminal and then run the electron app in another terminal. +Bruno is being developed as a desktop app. You need to load the app by running the Next.js app in one terminal and then run the electron app in another terminal. ### Dependencies diff --git a/docs/development_de.md b/docs/development_de.md index 2c260347..0a30383a 100644 --- a/docs/development_de.md +++ b/docs/development_de.md @@ -2,7 +2,7 @@ ## Entwicklung -Bruno wird als Desktop-Anwendung entwickelt. Um die App zu starten, musst Du zuerst die NextJs-App in einem Terminal ausführen und anschließend in einem anderen Terminal die Electron-App. +Bruno wird als Desktop-Anwendung entwickelt. Um die App zu starten, musst Du zuerst die Next.js App in einem Terminal ausführen und anschließend in einem anderen Terminal die Electron-App. ### Abhängigkeiten diff --git a/docs/development_ru.md b/docs/development_ru.md index c55359d8..be1aa887 100644 --- a/docs/development_ru.md +++ b/docs/development_ru.md @@ -2,7 +2,7 @@ ## Разработка -Bruno разрабатывается как десктопное приложение. Необходимо загрузить приложение, запустив приложение nextjs в одном терминале, а затем запустить приложение electron в другом терминале. +Bruno разрабатывается как десктопное приложение. Необходимо загрузить приложение, запустив приложение Next.js в одном терминале, а затем запустить приложение electron в другом терминале. ### Зависимости diff --git a/docs/development_ua.md b/docs/development_ua.md index ab730bb9..c7de38f7 100644 --- a/docs/development_ua.md +++ b/docs/development_ua.md @@ -2,7 +2,7 @@ ## Розробка -Bruno розробляється як декстопний застосунок. Вам потрібно запустити nextjs в одній сесії терміналу, та запустити застосунок Electron в іншій сесії терміналу. +Bruno розробляється як декстопний застосунок. Вам потрібно запустити Next.js в одній сесії терміналу, та запустити застосунок Electron в іншій сесії терміналу. ### Залежності diff --git a/packages/bruno-tauri/src/next-server.js b/packages/bruno-tauri/src/next-server.js index 317dd91b..410f3080 100644 --- a/packages/bruno-tauri/src/next-server.js +++ b/packages/bruno-tauri/src/next-server.js @@ -7,7 +7,7 @@ const devServer = async (dir, port) => { // Build the renderer code and watch the files await next.prepare(); - // NextJS Server + // Next.js Server const server = createServer(requestHandler); server.listen(port || 8000, () => { diff --git a/publishing.md b/publishing.md index f7db8a32..430baa94 100644 --- a/publishing.md +++ b/publishing.md @@ -1,6 +1,6 @@ ### Publishing Bruno to a new package manager -While our code is open source and available for everyone to use, we kindly request that you reach out to us before considering publication on new package managers. As the creator of Bruno, I hold the trademark `Bruno` for this project and would like to manage its distribution. If you'd like to see Bruno on a new package manager, please raise a Github issue. +While our code is open source and available for everyone to use, we kindly request that you reach out to us before considering publication on new package managers. As the creator of Bruno, I hold the trademark `Bruno` for this project and would like to manage its distribution. If you'd like to see Bruno on a new package manager, please raise a GitHub issue. -While, majority of our features are free and open source (which covers REST and GraphQL Apis) -We strive to strike a harmonious balance between open-source principles and sustainability - https://github.com/usebruno/bruno/discussions/269 +While the majority of our features are free and open source (which covers REST and GraphQL Apis), +we strive to strike a harmonious balance between open-source principles and sustainability - https://github.com/usebruno/bruno/discussions/269