|
1 | 1 | import { navDictionary } from '../../util/navDictionary'; |
2 | 2 |
|
3 | 3 | export default navDictionary({ |
4 | | - // Add translations of English labels here |
| 4 | + start: 'Start', // Start |
| 5 | + 'start.welcome': 'Witaj, świecie!', // Welcome, world! |
| 6 | + 'start.newProject': 'Rozpocznij nowy projekt', // Start a new project |
| 7 | + 'start.config': 'Konfiguracja', // Configuration |
| 8 | + 'start.migrate': 'Migracja do Astro', // Migrate to Astro |
| 9 | + |
| 10 | + guides: 'Przewodniki i przykłady', // Guides and recipes |
| 11 | + 'guides.routing': 'Routing i nawigacja', // Routing and navigation |
| 12 | + 'guides.ui': 'Zbuduj swój interfejs użytkownika', // Build your UI |
| 13 | + 'guides.content': 'Dodaj treści do swojej strony', // Add content to your site |
| 14 | + 'guides.serverRendering': 'Renderowanie po stronie serwera', // Server rendering |
| 15 | + 'guides.upgrade': 'Aktualizacje', // Upgrade |
| 16 | + 'guides.upgrade.major': 'Przewodniki po ważnych aktualizacjach', // Major upgrade guides |
| 17 | + 'guides.recipes': 'Przykłady zastosowań', // How-to recipes |
| 18 | + |
| 19 | + reference: 'Odniesienia', // Reference |
| 20 | + 'reference.runtime': 'API Runtime', // Runtime API |
| 21 | + 'reference.other': 'Inne API dla programistów', // Other development APIs |
| 22 | + 'reference.syntax': 'Składnia szablonów Astro', // Astro Template Syntax |
| 23 | + 'reference.experimental': 'Funkcje eksperymentalne', // Experimental features |
| 24 | + |
| 25 | + integrations: 'Integracje', // Integrations |
| 26 | + 'integrations.ui': 'Frameworki UI', // UI frameworks |
| 27 | + 'integrations.adapters': 'Adaptery', // Adapters |
| 28 | + 'integrations.other': 'Inne oficjalne integracje', // Other official integrations |
| 29 | + |
| 30 | + thirdParty: 'Usługi stron trzecich', // Third-party services |
| 31 | + 'thirdParty.deployment': 'Przewodniki wdrażania', // Deployment guides |
| 32 | + 'thirdParty.cms': 'Systemy zarządzania treściami', // Content management systems |
| 33 | + 'thirdParty.backend': 'Usługi backendowe', // Backend services |
| 34 | + 'thirdParty.media': 'Hostowanie obrazów i wideo', // Image and video hosting |
5 | 35 | }); |
0 commit comments