forked from GopeedLab/gopeed
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Polish translation (GopeedLab#534)
- Loading branch information
Showing
2 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
const pl_PL = { | ||
'en_US': { | ||
'label': 'Polski', | ||
'error': 'Błąd', | ||
'tip': 'Tip', | ||
'confirm': 'Potwierdź', | ||
'cancel': 'Anuluj', | ||
'on': 'Włącz', | ||
'off': 'Wyłącz', | ||
'selectAll': 'Zaznacz wszystko', | ||
'task': 'Zadania', | ||
'downloading': 'Pobierane', | ||
'downloaded': 'Pobrane', | ||
'setting': 'Ustawienia', | ||
'donate': 'Wesprzyj', | ||
'exit': 'Wyjście', | ||
'create': 'Utwórz zadanie', | ||
'directDownload': 'Pobieranie bezpośrednie', | ||
'advancedOptions': 'Zaawansowane', | ||
'downloadLink': 'Pobierz z linku', | ||
'downloadLinkValid': 'Otwórz link pobierania', | ||
'downloadLinkHit': | ||
'Otwórz link pobierania, HTTP/HTTPS/MAGNET supported@append', | ||
'downloadLinkHitDesktop': ', lub przenieś bezpośrednio plik torrent', | ||
'download': 'Pobiers', | ||
'noFileSelected': 'Wybierz conajmniej jeden plik aby kontynuować.', | ||
'noStoragePermission': 'Przyznaj uprawnienia do zapisu', | ||
'selectFile': 'Wybierz plik', | ||
'rename': 'Zmień nazwę', | ||
'basic': 'Zwykły', | ||
'advanced': 'Zaawansowane', | ||
'general': 'Ogólne', | ||
'downloadDir': 'Folder Pobierania', | ||
'downloadDirValid': 'Wskaż folder pobierania', | ||
'connections': 'Połączenia', | ||
'useServerCtime': 'Użyj czasu serwera do utworzenia pliku', | ||
'maxRunning': 'Maksymalna liczba zadań', | ||
'items': '@count items', | ||
'subscribeTracker': 'Subskrybuj tracker', | ||
'subscribeFail': | ||
'Błąd subskrypcji, sprawdź łączność z internetem', | ||
'update': 'Aktualizacja', | ||
'updateDaily': 'Aktualizuj codziennie', | ||
'lastUpdate': 'Ostatnia aktualizacja: @time', | ||
'addTracker': 'Dodaj tracker', | ||
'addTrackerHit': 'Wpisz adres trackera w jednej linii', | ||
'ui': 'Wygląd', | ||
'theme': 'Schemat kolorów', | ||
'themeSystem': 'Systemowy', | ||
'themeLight': 'Jasny', | ||
'themeDark': 'Ciemny', | ||
'locale': 'Język', | ||
'about': 'Info', | ||
'homepage': 'Strona WWW', | ||
'version': 'Wersja', | ||
'protocol': 'Protokół', | ||
'port': 'Port', | ||
'apiToken': 'API Token', | ||
'notSet': 'NS', | ||
'set': 'SET', | ||
'portInUse': 'Port [@port] w użyciu, proszę zmień port', | ||
'effectAfterRestart': 'Zmiany po restarcie', | ||
'show': 'Pokaż', | ||
'startAll': 'Zacznij wszystkie', | ||
'pauseAll': 'Zatrzymaj wszystkie', | ||
'deleteTask': 'Usuń zadanie', | ||
'deleteTaskTip': 'Zachowaj pobrane pliki', | ||
'delete': 'Usuń', | ||
'newVersionTitle': 'Sprawdź aktualizację @version', | ||
'newVersionUpdate': 'Aktualizuj teraz', | ||
'newVersionLater': 'Później', | ||
'extensions': 'Wtyczki', | ||
'extensionInstallUrl': 'Instaluj z url', | ||
'extensionInstallSuccess': 'Instalacja zakończona', | ||
'extensionUpdateSuccess': 'Aktualizacja zakończona', | ||
'extensionDelete': 'Usuń wtyczkę', | ||
'extensionAlreadyLatest': 'Wtyczka w aktualnej wersji', | ||
'extensionFind': 'Wyszukaj wtyczkę', | ||
'extensionDevelop': 'Stwórz wtyczkę', | ||
'history': 'Historia', | ||
'clearHistory': 'Wyczyść historię', | ||
'noHistoryFound': 'Brak historii', | ||
'serviceTitle': 'Usługa pobierania', | ||
'serviceText': 'Trwa', | ||
'network': 'Sieć', | ||
'proxy': 'Proxy', | ||
'noProxy': 'Bez Proxy', | ||
'systemProxy': 'Systemowe Proxy', | ||
'customProxy': 'Własne Proxy', | ||
'server': 'Serwer', | ||
'username': 'Użytkownik', | ||
'password': 'Hasło', | ||
'thanks': 'Dzięki', | ||
'thanksDesc': | ||
'Dziękuję wszystkim za pomoc przy powstawaniu aplikacji Gopeed!', | ||
'browserExtension': 'Wtyczka dla przeglądarki', | ||
'launchAtStartup': 'Uruchom na starcie', | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,5 +23,6 @@ class _Messages extends Translations { | |
...jaJP, | ||
...viVN, | ||
...trTR, | ||
...plPL, | ||
}; | ||
} |