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

Started Polish translation and translated index.md #845

Merged
merged 1 commit into from
Jul 4, 2023
Merged
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
1 change: 1 addition & 0 deletions .github/workflows/translation-issue-template.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ Languages:
- [ ] Dutch
- [ ] Italian
- [ ] Spanish
- [ ] Polish

Assigned to @vapor/translators - please submit a PR with the relevant updates and check the box once merged. Please ensure you tag your PR with the `translation-update` so it doesn't create a new issue!
27 changes: 27 additions & 0 deletions docs/index.pl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
Witaj w dokumentacji Vapor! Vapor jest frameworkiem do tworzenia aplikacji internetowych z wykorzystaniem języka Swift. Pozwala na pisanie serwisów backendowych, API internetowych i serwerów HTTP w Swifcie.

## Jak zacząć

Jeśli to jest twój pierwszy raz z Vapor, kieruj się do [Instalacja → macOS](install/macos.md) aby, zainstalować Swift i Vapor.
Kiedy już zainstalujesz Vapor, sprawdź [Jak zacząć → Witaj, świecie](getting-started/hello-world.md) aby stworzyć twoja pierwsza aplikacje z użyciem Vapor!

## Inne źródła

Tutaj znajdziesz inne świetne źródła informacji o Vapor.

| nazwa | opis | link |
|----------------|--------------------------------------------------|-------------------------------------------------------------------|
| Vapor Discord | Rozmawiaj z tysiącami deweloperów. | [zobacz →](https://vapor.team) |
| Dokumentacja API | Samo generująca się dokumentacja z komentarzy do kodu. | [zobacz →](https://api.vapor.codes) |
| Stack Overflow | Zadawaj i odpowiadaj na pytania z tagiem `vapor`. | [zobacz →](https://stackoverflow.com/questions/tagged/vapor) |
| Forum Swift | Zapostuj w sekcji Vapor na forum Swift.org. | [zobacz →](https://forums.swift.org/c/related-projects/vapor) |
| Kod źródłowy | Naucz się jak Vapor działa pod maską. | [zobacz →](https://github.com/vapor/vapor) |
| GitHub Issues | Zgłaszaj błędy oraz prośby na GitHub. | [zobacz →](https://github.com/vapor/vapor/issues) |

## Stara dokumentacja

Dokumentacja dla wcześniejszych wersji Vapor, które osiągnęły swój koniec życia można znaleźć na [https://legacy.docs.vapor.codes/](https://legacy.docs.vapor.codes/).

## Autorzy

The Vapor Core Team, oraz setki członków społeczności wokoło Vapor.
56 changes: 55 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ plugins:
name: Español
site_name: Documentación de Vapor
build: true
pl:
name: Polski
site_name: Dokumentacja Vapor
build: true
# Add navigation translations here
nav_translations:
nl:
Expand Down Expand Up @@ -352,7 +356,57 @@ plugins:
Version (4.0): Versión (4.0)
Legacy Docs: Documentación Legacy
Upgrading: Actualizar

pl:
Welcome: Witaj
Install: Instalacja
Getting Started: Jak zacząć
Hello, world: Witaj, świecie
Folder Structure: Struktura folderów
SwiftPM: SwiftPM
Xcode: Xcode
Basics: Podstawy
Routing: Kierowanie ruchem
Content: Kontent
Client: Klient
Validation: Walidacja
Async: Asynchroniczność
Logging: Logowanie
Environment: Środowisko
Errors: Błędy
Fluent: Fluent
Overview: Prezentacja
Model: Model
Relations: Relacje
Migrations: Migracje
Query: Zapytania
Transactions: Transakcje
Schema: Schematy
Leaf: Leaf
Custom Tags: Własne tagi
Redis: Redis
Advanced: Zaawansowane
Middleware: Middleware
Testing: Testowanie
Server: Serwer
Files: Pliki
Commands: Komendy
Queues: Kolejki
WebSockets: WebSockety
Sessions: Sesje
Services: Serwisy
Security: Bezpieczeństwo
APNS: APNS
Deploy: Wdrożenie
Authentication: Autentykacja
Crypto: Kryptografia
Passwords: Hasła
JWT: JWT
Contributing: Kontrybucja
Contributing Guide: Przewodnik do kontrybucji
Version (4.0): Wersja (4.0)
Legacy Docs: Przestażała dokumentacja
Upgrading: Aktualizacja
Release Notes: Informacja o wersji
nav:
- Welcome: "index.md"
- Install:
Expand Down