---
title: "Lokalizowanie Django"
version: 4.1
locale: pl
source: https://docs.djangoproject.com/pl/4.1/internals/contributing/localizing/
canonical: https://djangodocs.dev/pl/4.1/internals/contributing/localizing/
---
# Lokalizowanie Django

Wiele części Django, takie jak panel administracyjny i powiadomienia o błędach walidacji, jest zinternacjonalizowanych. To znaczy, że wyświetlają się one różnie w zależności od języka lub kraju każdego użytkownika. Aby to zrealizować, Django używa tej samej infrastruktury internacjonalizacji i lokalizacji, która jest dostępna dla aplikacji Django i opisana w [dokumentacji i18n](/pl/4.1/topics/i18n/).

## Tłumaczenia

Tłumaczenia są dokonywane przez użytkowników Django na całym świecie. Praca tłumaczy jest koordynowana na platformie [Transifex](https://www.transifex.com/).

If you find an incorrect translation or want to discuss specific translations,
go to the [Django project page](https://www.transifex.com/django/django/). If you would like to help out with
translating or adding a language that isn’t yet translated, here’s what to do:

- Introduce yourself on the [Django internationalization forum](https://forum.djangoproject.com/c/internals/i18n/14).
- Upewnij się, że przeczytałeś uwagi o [Specialties of Django translation](/pl/4.1/topics/i18n/translation/#specialties-of-django-i18n).
- Zarejestruj się w platformie [Transifex](https://www.transifex.com/) i odwiedź [Django project page](https://www.transifex.com/django/django/).
- Na [Django project page](https://www.transifex.com/django/django/) wybierz język, nad którym chcesz pracować **lub** – w przypadku, gdy język jeszcze nie istnieje – wyślij prośbę o nowy zespół dla języka klikając w link „Request language” i wybierając odpowiedni język.
- Then, click the „Join this Team” button to become a member of this team.
  Every team has at least one coordinator who is responsible to review
  your membership request. You can also contact the team coordinator to clarify
  procedural problems and handle the actual translation process.
- Once you are a member of a team choose the translation resource you
  want to update on the team page. For example, the „core” resource refers
  to the translation catalog that contains all non-contrib translations.
  Each of the contrib apps also has a resource (prefixed with „contrib”).

  > **Note**
  >
  > Więcej informacji o tym, jak używać platformy Transifex znajdziesz w [Transifex User Guide](https://docs.transifex.com/).

Translations from Transifex are only integrated into the Django repository at
the time of a new [feature release](/pl/4.1/internals/release-process/#term-Feature-release). We try to update
them a second time during one of the following [patch release](/pl/4.1/internals/release-process/#term-Patch-release)s, but that depends on the translation manager’s availability.
So don’t miss the string freeze period (between the release candidate and the
feature release) to take the opportunity to complete and fix the translations
for your language!

## Formaty

Możesz również przejrzeć `conf/locale/<locale>/formats.py`. Ten plik opisuje szczegóły formatowania dat, czasu i liczb twojego locale. Szczegóły w [Format localization](/pl/4.1/topics/i18n/formatting/).

Pliki formatów nie są zarządzane przy użyciu Transifeksa. Aby je zmienić, musisz [stworzyć łatę](/pl/4.1/internals/contributing/writing-code/submitting-patches/) w drzewie źródeł Django, jak dla każdej zmiany w kodzie:

- Create a diff against the current Git main branch.
- Otwórz zgłoszenie w systemie zgłoszeń Django, ustaw jego pole `Component` na `Translations` i załącz do niego łatę.

## Dokumentacja

Jest także możliwość tłumaczenia dokumentacji, chociaż jest ogromnym przedsięwzięciem przetłumaczenie jej w całości (zostałeś ostrzeżony!). Używamy tego samego [narzędzia Transifex](https://www.transifex.com/django/django-docs/). Tłumaczenia będą pojawiać się na `https://docs.djangoproject.com/<language_code>/`, kiedy przynajmniej pliki `docs/intro/*` będą w pełni przetłumaczone na twój język.

Once translations are published, updated versions from Transifex will be
irregularly ported to the [django/django-docs-translations](https://github.com/django/django-docs-translations) repository and to the
documentation website. Only translations for the latest stable Django release
are updated.
