diff --git a/AUTHORS b/AUTHORS index 4934d9d7a..ffe459fd4 100644 --- a/AUTHORS +++ b/AUTHORS @@ -16,8 +16,8 @@ Ján Ďanovský (Slovak) Unink-Lio (Chinese) Federico Fabiani (Italy) Francesco Marinucci (Italy) -Krzysztof Malinowski (Polish) Jorge Sevilla (Spanish) +Michał Szymanowski (Polish) Special thanks: diff --git a/README.md b/README.md index 21bac65df..b8ddae8e0 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ To install QupZilla, you will have to run this command: (it may be neccessary to Current version ---------------------------------------------------------------------------------------- -The current released version of QupZilla is 1.0.0. You can download precompiled packages +The current released version of QupZilla is 1.1.0. You can download precompiled packages and the sources from the download section. However, if you want the latest revision, just take the latest code snapshot either by downloading a tarball or running: diff --git a/bin/data/default/profiles/default/browsedata.db b/bin/data/default/profiles/default/browsedata.db index 6b95ee7ce..8b42d2d50 100644 Binary files a/bin/data/default/profiles/default/browsedata.db and b/bin/data/default/profiles/default/browsedata.db differ diff --git a/bin/locale/pl_PL.qm b/bin/locale/pl_PL.qm index 9ca0545bc..2080859e5 100644 Binary files a/bin/locale/pl_PL.qm and b/bin/locale/pl_PL.qm differ diff --git a/linux/applications/qupzilla.desktop b/linux/applications/qupzilla.desktop index b716208f3..d8531fd80 100644 --- a/linux/applications/qupzilla.desktop +++ b/linux/applications/qupzilla.desktop @@ -2,7 +2,7 @@ Encoding=UTF-8 Name=QupZilla Type=Application -Icon=qupzilla.png +Icon=qupzilla Categories=Network;WebBrowser; Comment=A fast and secure web browser Comment[es]=Un navegador web rápido y seguro diff --git a/src/app/mainapplication.cpp b/src/app/mainapplication.cpp index 89e060d53..8ee87931f 100644 --- a/src/app/mainapplication.cpp +++ b/src/app/mainapplication.cpp @@ -170,7 +170,13 @@ MainApplication::MainApplication(const QList &cm AutoSaver* saver = new AutoSaver(); connect(saver, SIGNAL(saveApp()), this, SLOT(saveStateSlot())); - if (settings2.value("Web-Browser-Settings/CheckUpdates", true).toBool()) { + if (settings2.value("Web-Browser-Settings/CheckUpdates", + #ifdef Q_WS_WIN + true + #else + false + #endif + ).toBool()) { m_updater = new Updater(qupzilla); } diff --git a/src/app/profileupdater.cpp b/src/app/profileupdater.cpp index f45876076..62b92042e 100644 --- a/src/app/profileupdater.cpp +++ b/src/app/profileupdater.cpp @@ -66,11 +66,18 @@ void ProfileUpdater::updateProfile(const QString ¤t, const QString &profil if (profileVersion == Updater::parseVersionFromString("1.0.0-b4")) { update100b4(); update100rc1(); + update100(); return; } if (profileVersion == Updater::parseVersionFromString("1.0.0-rc1")) { update100rc1(); + update100(); + return; + } + + if (profileVersion == Updater::parseVersionFromString("1.0.0")) { + update100(); return; } @@ -112,3 +119,13 @@ void ProfileUpdater::update100rc1() query.exec("UPDATE bookmarks SET toolbar_position=0"); } + +void ProfileUpdater::update100() +{ + std::cout << "upgrading profile version from 1.0.0..." << std::endl; + mApp->connectDatabase(); + + QSqlQuery query; + query.exec("ALTER TABLE autofill ADD COLUMN last_used NUMERIC"); + query.exec("UPDATE autofill SET last_used=0"); +} diff --git a/src/app/profileupdater.h b/src/app/profileupdater.h index 4dfbeb0d9..18e398af9 100644 --- a/src/app/profileupdater.h +++ b/src/app/profileupdater.h @@ -39,6 +39,7 @@ private: void update100b4(); void update100rc1(); + void update100(); QString m_profilePath; QString m_dataPath; diff --git a/src/app/qupzilla.cpp b/src/app/qupzilla.cpp index b90939ed4..ab7ed89a6 100644 --- a/src/app/qupzilla.cpp +++ b/src/app/qupzilla.cpp @@ -62,7 +62,7 @@ #include "webhistorywrapper.h" #include "menu.h" -const QString QupZilla::VERSION = "1.0.0"; +const QString QupZilla::VERSION = "1.1.0"; const QString QupZilla::BUILDTIME = __DATE__" "__TIME__; const QString QupZilla::AUTHOR = "David Rosca"; const QString QupZilla::COPYRIGHT = "2010-2011"; diff --git a/src/network/qupzillaschemehandler.cpp b/src/network/qupzillaschemehandler.cpp index 990fc1699..36efa386c 100644 --- a/src/network/qupzillaschemehandler.cpp +++ b/src/network/qupzillaschemehandler.cpp @@ -195,8 +195,8 @@ QString QupZillaSchemeReply::aboutPage() authorString("Unink-Lio", "unink4451@163.com") + " (Chinese)
" + authorString("Federico Fabiani", "federico.fabiani85@gmail.com") + " (Italy)
" + authorString("Francesco Marinucci", "framarinucci@gmail.com") + " (Italy)
" + - authorString("Krzysztof Malinowski", "boromil@gmail.com") + " (Polish)
" + - authorString("Jorge Sevilla", "jsevi@ozu.es") + " (Spanish)" + authorString("Jorge Sevilla", "jsevi@ozu.es") + " (Spanish)
" + + authorString("Michał Szymanowski", "tylkobuba@gmail.com") + " (Polish)" ); return page; diff --git a/src/other/aboutdialog.cpp b/src/other/aboutdialog.cpp index 4340395a5..d4b1d3923 100644 --- a/src/other/aboutdialog.cpp +++ b/src/other/aboutdialog.cpp @@ -80,8 +80,8 @@ void AboutDialog::showAuthors() "Unink-Lio (Chinese)
" "Federico Fabiani (Italy)
" "Francesco Marinucci (Italy)
" - "Krzysztof Malinowski (Polish)
" - "Jorge Sevilla (Spanish)" + "Jorge Sevilla (Spanish)
" + "Michał Szymanowski (Polish)" )); m_authorsHtml.append(""); } diff --git a/src/preferences/preferences.cpp b/src/preferences/preferences.cpp index 7f2183511..200d9118e 100644 --- a/src/preferences/preferences.cpp +++ b/src/preferences/preferences.cpp @@ -116,7 +116,13 @@ Preferences::Preferences(QupZilla* mainClass, QWidget* parent) int afterLaunch = settings.value("afterLaunch", 1).toInt(); settings.endGroup(); ui->afterLaunch->setCurrentIndex(afterLaunch); - ui->checkUpdates->setChecked(settings.value("Web-Browser-Settings/CheckUpdates", true).toBool()); + ui->checkUpdates->setChecked(settings.value("Web-Browser-Settings/CheckUpdates", + #ifdef Q_WS_WIN + true + #else + false + #endif + ).toBool()); ui->newTabFrame->setVisible(false); if (m_newTabUrl.isEmpty()) { diff --git a/translations/pl_PL.ts b/translations/pl_PL.ts index b0884db9e..72285294f 100644 --- a/translations/pl_PL.ts +++ b/translations/pl_PL.ts @@ -6,7 +6,7 @@ About QupZilla - O QupZilla + O QupZilli <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> @@ -23,54 +23,62 @@ p, li { white-space: pre-wrap; } Authors - Autorzy + Autorzy Authors and Contributors - Autorzy i Kontrybutorzy + Autorzy i Współpracownicy < About QupZilla - < O QupZilla + < O QupZilli <p><b>Application version %1</b><br/> - <p><b>Wersja aplikacji: %1</b><br/> + <p><b>Wersja programu %1</b><br/> <b>WebKit version %1</b></p> - <b>Wersjia WebKit: %1</b></p> + <b>Wersja WebKita %1</b></p> <p>&copy; %1 %2<br/>All rights reserved.<br/> - <p>&copy; %1 %2<br/>Wszelkie prawa zastrzerzone.<br/> + <p>&copy; %1 %2<br/>Wszystkie prawa zastrzeżone.<br/> <small>Build time: %1 </small></p> - <small>Kompilacja z: %1 </small></p> + <small>Skompilowano: %1 </small></p> <p><b>Main developers:</b><br/>%1 &lt;%2&gt;</p> - <p><b>Główni programiści:</b><br/>%1 &lt;%2&gt;</p> + <p><b>Główny programista:</b><br/>%1 &lt;%2&gt;</p> <p><b>Contributors:</b><br/>%1</p> - <p><b>Kontrybutorzy:</b><br/>%1</p> + <p><b>Współautorzy:</b><br/>%1</p> <p><b>Translators:</b><br/>%1</p> - <p><b>Tłumaczący:</b><br/>%1</p> + <p><b>Tłumacze:</b><br/>%1</p> + + + <p><b>Other contributors:</b><br/>%1</p> + <p><b>Pozostali współautorzy:</b><br/>%1</p> + + + <p><b>Thanks to:</b><br/>%1</p> + <p><b>Podziękowania dla:</b><br/>%1</p> @@ -78,12 +86,12 @@ p, li { white-space: pre-wrap; } Preferred Languages - Języki preferowane + Add... - Dodaj... + @@ -93,18 +101,18 @@ p, li { white-space: pre-wrap; } Up - Do góry + Down - Do dołu + Personal [%1] - Osobiste [%1] + @@ -112,33 +120,33 @@ p, li { white-space: pre-wrap; } AdBlock Configuration - AdBlock Konfiguration + Ustawienia AdBlocka Enable AdBlock - AdBlock aktivieren + Włącz AdBlock Search... - Suchen... + Szukaj... Rule - Regel + Filtry Add Rule - Regel hinzufügen + Dodaj filtr Update EasyList - EasyList aktualisieren + Aktualizuj EasyList @@ -148,32 +156,36 @@ p, li { white-space: pre-wrap; } Delete Rule - Regel löschen + Usuń filtr Update completed - Aktualisierung beendet + Aktualizacja ukończona + + + EasyList has been successfuly updated. + EasyList została zaktualizowana. EasyList has been successfully updated. - EasyList wurde erfolgreich aktualisiert. + Custom Rules - Benutzerdefinierte Regeln + Własne filtry Add Custom Rule - Benutzerdefinierte Regel hinzufügen + Dodaj własny filtr Please write your rule here: - Bitte Regel hier eintragen: + Wpisz swój filtr tutaj: @@ -181,37 +193,37 @@ p, li { white-space: pre-wrap; } AdBlock let you block any unwanted content on pages - AdBlock blockiert unerwünschte Seiteninhalte + AdBlock blokuje reklamy na tej stronie Show AdBlock &Settings - AdBlock &Einstellungen anzeigen + Otwórz &ustawienia AdBlocka No content blocked - Keine Seiteninhalte geblockt + Brak zablokowanej zawartości Blocked URL (AdBlock Rule) - click to edit rule - Geblockte URL (AdBlock Regel) - zum Bearbeiten anklicken + Blokowany adres (AdBlock filtr) - kliknij aby edytować %1 with (%2) - %1 mit (%2) + %1 z (%2) Learn About Writing &Rules - Hilfe zur &Regelerstellung + Dowiedz się o pisaniu &filtrów New tab - Neuer Tab + Nowa karta @@ -219,17 +231,17 @@ p, li { white-space: pre-wrap; } Add Language - Dodaj język + Choose preferred language for web sites - Wybierz jezyk preferowany dla wyświetlanych stron + Personal definition: - Zdefinjuj własne: + @@ -237,13 +249,13 @@ p, li { white-space: pre-wrap; } Passwords - Hasła + Hasło Server - Serwer + Serwer @@ -253,41 +265,41 @@ p, li { white-space: pre-wrap; } Password - Hasło + Hasło Remove - Usuń + Usuń Edit - Edytuj + Edytuj Remove All - Usuń wszytkie + Usuń wszystko Show Passwords - Pokaż hasła + Exceptions - Wyjątki + Wyjątki Are you sure that you want to show all passwords? - Czy jesteś pewien, że chcesz odsłonić wszytkie hasła? + @@ -297,29 +309,29 @@ p, li { white-space: pre-wrap; } Confirmation - Potwierdzenie + Potwierdzenie Are you sure to delete all passwords on your computer? - Jesteś pewien, że chcesz usunąć z tego komutera wszytkie swoje hasła? + Czy na pewno chcesz usunąć wszystkie hasła na komputerze? Edit password - Edytuj hasło + Edytuj hasło Change password: - Zmień hasło: + Zmień hasło: AutoFillNotification Do you want QupZilla to remember password on %1? - Czy chcesz by QupZilla twoje zapamiętała hasło na %1? + Czy chcesz aby QupZilla zapamiętała hasło %1? @@ -332,17 +344,17 @@ p, li { white-space: pre-wrap; } Remember - Zapamiętaj + Zapamiętaj Never For This Site - Nigdy dla tej strony + Nigdy dla tej strony Not Now - Nie teraz + Nie teraz @@ -351,12 +363,12 @@ p, li { white-space: pre-wrap; } Bookmark this Page - Utwórz zakładkę dla tej strony + Dodaj do zakładek Edit this bookmark - Edytuj tą zakładkę + Edytuj zakładki @@ -364,12 +376,12 @@ p, li { white-space: pre-wrap; } Import Bookmarks - Zaimportuj zakładki + <b>Import Bookmarks</b> - <b>Zaimportuj zakładki</b> + @@ -379,47 +391,53 @@ p, li { white-space: pre-wrap; } Choose browser from which you want to import bookmarks: - Wybierz przeglądarkę, z której chcesz zaimportować swoje zakładki: + Choose... - Wybierz... + Fetching icons, please wait... - Proszę czekać, pobieranie ikonek... + Title - Tytuł + Url - Url + Adres Next - Następny + Cancel - Anuluj + <b>Importing from %1</b> - <b>Importowanie z %1</b> + Finish - Zakończ + + + + + + Please press Finish to complete importing process. + @@ -432,7 +450,7 @@ p, li { white-space: pre-wrap; } Choose directory... - Wybierz folder... + @@ -442,17 +460,25 @@ p, li { white-space: pre-wrap; } Mozilla Firefox stores its bookmarks in <b>places.sqlite</b> SQLite database. This file is usually located in - Mozilla Firefox przechowuje swoje zakładki w bazie danych SQLite <b>places.sqlite</b>. Jest ona najczęściej umieszczona w + + + + + + + + Please choose this file to begin importing bookmarks. + Google Chrome stores its bookmarks in <b>Bookmarks</b> text file. This file is usually located in - Google Chrome przechowuje swoje zakładki w <b>Bookmarks</b>. Plik ten zazwyczaj znajduje się w + Opera stores its bookmarks in <b>bookmarks.adr</b> text file. This file is usually located in - Opera speichert die Lesezeichen in der Datei <b>bookmarks.adr</b>. Diese ist gewöhnlich gespeichert unter + @@ -462,26 +488,12 @@ p, li { white-space: pre-wrap; } Internet Explorer stores its bookmarks in <b>Favorites</b> folder. This folder is usually located in - Internet Explorer speichert die Lesezeichen im <b>Favorites</b> Ordner. Dieser Ordner ist gewöhnlich zu finden unter - - - - - - - Please choose this file to begin importing bookmarks. - Bitte wählen Sie diese Datei, um mit dem Import zu beginnen. - - - - - Please press Finish to complete importing process. Please choose this folder to begin importing bookmarks. - Bitte wählen Sie diesen Ordner, um mit dem Import zu beginnen. + @@ -489,65 +501,55 @@ p, li { white-space: pre-wrap; } Bookmarks - Lesezeichen + Zakładki Title - Titel + Nadpis Url - Url + Adres Import Bookmarks - Zaimportuj zakładki - - - - Rename Folder - Ordner umbenennen + Delete - Löschen + Usuń Del - Entf + Del Add Folder - Ordner hinzufügen + Dodaj folder Optimize Database - Datenbank optimieren - - - - Add Subfolder - Unterordner hinzufügen + Optymalizuj baze danych Add new folder - Neuen Ordner hinzufügen + Dodaj nowy folder Choose name for new bookmark folder: - Namen für neues Lesezeichen angeben: + Wybierz nazwę dla nowego folderu zakładek: New Tab - Neuer Tab + Nowa Karta @@ -558,7 +560,17 @@ p, li { white-space: pre-wrap; } Bookmarks In Menu - Lesezeichen im Menü + Zakładki w menu + + + + Add new subfolder + + + + + Choose name for new subfolder in bookmarks toolbar: + @@ -571,7 +583,22 @@ p, li { white-space: pre-wrap; } Bookmarks In ToolBar - Lesezeichen in Werkzeug-Leiste + Pasek Zakładek + + + + Rename Folder + + + + + Choose name for folder: + + + + + Add Subfolder + @@ -586,39 +613,24 @@ p, li { white-space: pre-wrap; } Open link in actual &tab - Link in &aktuellem Tab öffnen - - - - Add new subfolder - Neuen Unterordner hinzufügen - - - - Choose name for new subfolder in bookmarks toolbar: - Namen für neuen Unterordner in Lesezeichen-Leiste auswählen: - - - - Choose name for folder: - Namen für Ordner auswählen: + Otwórz link w &aktualnej karcie Open link in &new tab - Link in &neuem Tab öffnen + Otwórz link w &nowej karcie Move bookmark to &folder - Lesezeichen in &Ordner verschieben + Przenieś zakładkę do &folderu Unsorted Bookmarks - Unsortierte Lesezeichen + Nieposortowane zakładki @@ -628,32 +640,32 @@ p, li { white-space: pre-wrap; } Remove bookmark - Lesezeichen entfernen + <b>Warning: </b>You already have this page bookmarked! - <b>Warnung: </b>Diese Lesezeichen haben Sie bereits hinzugefügt! + <b>Uwaga: </b>Masz już tą stronę w zakładkach! Choose name and location of bookmark. - Namen und Speicherort für Lesezeichen auswählen. + Wybierz nazwe i położenie dla zakładki. Add New Bookmark - Neues Lesezeichen hinzufügen + Dodaj zakładkę Choose folder for bookmarks: - Ordner für Lesezeichen auswählen: + Wybierz folder dla zakładek: Bookmark All Tabs - Lesezeichen für alle geöffneten Tabs hinzufügen + Otwórz wszystkie zakładki w kartach @@ -663,20 +675,20 @@ p, li { white-space: pre-wrap; } Bookmarks In Menu - Lesezeichen im Menü + Zakładki w menu Bookmarks In ToolBar - Lesezeichen in Werkzeug-Leiste + Pasek zakładek Unsorted Bookmarks - Unsortierte Lesezeichen + Nieposortowane zakładki @@ -684,38 +696,50 @@ p, li { white-space: pre-wrap; } Search... - Suchen... + Szukaj... New Tab - Neuer Tab + Nowa karta Open link in actual &tab - Link in &aktuellem Tab öffnen + Otwórz link w &aktualnej karcie Open link in &new tab - Link in &neuem Tab öffnen + Otwórz link w &nowej karcie Copy address - Link-Adresse kopieren + + + + Move bookmark to &folder + Przenieś zakładkę do &folderu + + + Unsorted Bookmarks + Nieposortowane zakładki Bookmarks In Menu - Lesezeichen im Menü + Zakładki w menu + + + Bookmarks In ToolBar + Pasek zakładek &Delete - &Löschen + &Usuń @@ -723,63 +747,67 @@ p, li { white-space: pre-wrap; } &Bookmark Current Page - Lesezeichen für &aktuelle Seite hinzufügen + Dodaj &do zakładek Bookmark &All Tabs - Lesezeichen für alle &geöffneten Tabs hinzufügen + Dodaj &wszystkie karty do zakładek &Organize Bookmarks - Bookmarks &bearbeiten + &Zarządzaj zakładkami Hide Most &Visited - Meistbesuchte &verstecken + Skryť &Najnavštevovanejšie Show Most &Visited - Meistbesuchte &anzeigen + Zobacz &najczęściej odwiedzane &Hide Toolbar - &Werkzeugleiste verstecken + Ukryj& pasek Move right - Nach rechts + Move left - Nach links + Remove bookmark - Lesezeichen entfernen + Most visited - Meistbesuchte + Najnavštevovanejšie Sites you visited the most - Meistbesuchte Seiten + Empty - Leer + + + + Sites You visited the most + Naajczęściej odwiedzane @@ -787,47 +815,47 @@ p, li { white-space: pre-wrap; } Edit This Bookmark - Dieses Lesezeichen bearbeiten + Edytuj tą zakładkę Remove Bookmark - Lesezeichen entfernen + Usuń zakładkę Name: - Name: + Nazwa: Folder: - Ordner: + Folder: Save - Speichern + Uložiť Close - Schließen + Zamknij Bookmarks In Menu - Lesezeichen im Menü + Zakładki w menu Bookmarks In ToolBar - Lesezeichen in Werkzeug-Leiste + Pasek zakładek Unsorted Bookmarks - Unsortierte Lesezeichen + Nieposortowane zakładki @@ -835,22 +863,22 @@ p, li { white-space: pre-wrap; } Library - Bibliothek + Biblioteka Search... - Suchen... + Szukaj... History - Verlauf + Historia Bookmarks - Lesezeichen + Zakładki @@ -860,12 +888,16 @@ p, li { white-space: pre-wrap; } Database Optimized - Datenbank optimiert + Optymalizuj baze danych Database successfully optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Database Size After: </b>%2 - Datenbank erfolgreich optimiert.<br/><br/><b>Datenbankgröße vorher: </b>%1<br/><b>Datenbankgröße nachher: </b>%2 + + + + Database successfuly optimized.<br/><br/><b>Database Size Before: </b>%1<br/><b>Databse Size After: </b>%2 + Baza poprawnie zoptymalizowana.<br/><br/><b>Rozmiar przed: </b>%1<br/><b>Rozmiar po: </b>%2 @@ -873,55 +905,55 @@ p, li { white-space: pre-wrap; } <b>Issued To</b> - <b>Ausgestellt für</b> + <b>Wystawiony dla</b> Common Name (CN): - Allgemeiner Name (CN): + Zwykła nazwa (CN): Organization (O): - Organisation (O): + Organizacja (O): Organizational Unit (OU): - Organisationseinheit (OU): + Jednostka organizacyjna (OU): Serial Number: - Seriennummer: + Numer seryjny: <b>Issued By</b> - <b>Ausgestellt von</b> + <b>Wystawiony przez</b> <b>Validity</b> - <b>Gültigkeit</b> + <b>Ważność</b> Issued On: - Ausgestellt für: + Wydane na: Expires On: - Verfällt am: + Wygasa w dniu: <not set in certificate> - <Im Zertifkat nicht vorhanden> + <nie wpisano w certyfikat> @@ -929,17 +961,17 @@ p, li { white-space: pre-wrap; } No Error - Kein Fehler + Brak Błędów Unable to open file. - Datei kann nicht geöffnet werden. + Cannot evaluate JSON code. - JSON Format kann nicht ausgewertet werden. + @@ -947,62 +979,62 @@ p, li { white-space: pre-wrap; } Clear Recent History - Verlauf löschen + Wyczyść historię Choose what you want to delete: - Zu löschende Elemente wählen: + Wybierz co chcesz usunąć: Clear history - Verlauf löschen + Usuń historie Clear cookies - Cookies löschen + Usuń cisteczka Clear cache - Cache löschen + Usuń cache Clear icons - Symbole löschen + Usuń ikony Clear cookies from Adobe Flash Player - Cookies vom Adobe Flash Player löschen + Usuń cisteczka z Adobe Flash Playera <b>Clear Recent History</b> - <b>Aktuellen Verlauf löschen</b> + <b>Wyczyść historie</b> Later Today - Später + Dzisiejsza Week - Woche + Tydzień Month - Monat + Miesiąć All - Alle + Wszystko @@ -1010,42 +1042,42 @@ p, li { white-space: pre-wrap; } Object blocked by ClickToFlash - Objekt blockiert von ClickToFlash + Objekt zablokowany przez ClickToFlash plugin Show more informations about object - Mehr Informationen anzeigen + Pokaż więcej informacji o objekcie Delete object - Objekt löschen + Usuń obiekt Add %1 to whitelist - %1 zur Whitelist hinzufügen + Dodaj %1 do zaufanej listy Flash Object - Flash Objekt + Objekt Flash <b>Attribute Name</b> - <b>Attribut Name</b> + <b>Nazwa atrybutu</b> <b>Value</b> - <b>Wert</b> + <b>Wartość</b> No more informations available. - Keine weiteren Informationen verfügbar. + Nie ma więcej dostępnych informacji. @@ -1053,12 +1085,12 @@ p, li { white-space: pre-wrap; } There are still open tabs - Es sind noch Tabs geöffnet + Nadal są otwarte karty Don't ask again - Nicht mehr fragen + Nie pytaj mnie ponownie @@ -1066,57 +1098,57 @@ p, li { white-space: pre-wrap; } Cookies - Cookies + Ciasteczka Find: - Suche: + Znajdź: These cookies are stored on your computer: - Folgende Cookies sind auf Ihrem Computer gespeichert: + Te pliki są przechowywane na komputerze: Server - Server + Serwer Cookie name - Name des Cookies + Nazwa ciastka Name: - Name: + Nazwa: Value: - Wert: + Wartość: Server: - Server: + Serwer: Path: - Pfad: + Ścieżka: Secure: - Sicher: + Bezpieczne: Expiration: - Ablaufdatum: + Wygasają: @@ -1132,53 +1164,53 @@ p, li { white-space: pre-wrap; } <cookie not selected> - <Cookie nicht ausgewählt> + <ciasteczka nie wybrane> Remove all cookies - Alle Cookies löschen + usuń wszystkie ciasteczka Remove cookie - Ausgewählten Cookie löschen + Usuń ciasteczko Search - Suchen + Szukaj Confirmation - Bestätigung + Potwierdź Are you sure to delete all cookies on your computer? - Möchten Sie wirklich alle auf Ihrem Computer gespeicherten Cookies löschen? + Czy na pewno chcesz usunąć wszystkie pliki cookie na komputerze? Remove cookies - Cookies löschen + Usuń ciasteczka Secure only - Nur sichere + tylko bezpieczne All connections - Alle Verbindungen + Wszystkie połączenia Session cookie - Sitzungscookie + Ciasteczko sesji @@ -1195,159 +1227,151 @@ p, li { white-space: pre-wrap; } Save file as... - Datei speichern als... + Zapisz plik jako... NoNameDownload - NoNameDownload + Bez nazwy DownloadItem - - A Clockwork Orange.avi - Mechaniczna pomarańcza.avi - - - Remaining 26 minutes - 339MB of 693 MB (350kB/s) - pozostało 26 minut - 339MB z 693 MB (350kB/s) - Remaining time unavailable - Czas pozostały niedostępny + Pozostały czas niedostępny Done - %1 - Zakończone - %1 + Ukończono - %1 Cancelled - Anulowane + Anulowano few seconds - Niewiele sekund + kilka sekund seconds - sekund + sekund minutes - minut + minut hours - godzin + godzin Unknown speed - Prędkość nieznana + Nieznana prędkość Unknown size - Rozmiar nieznay + Nieznany rozmiar %2 - unknown size (%3) - %2 - niezmiany rozmiar (%3) + %2 - nieznany rozmiar (%3) Remaining %1 - %2 of %3 (%4) - Pozostało %1 - %2 z %3 (%4) + Pozostało %1 - %2 z %3 (%4) Cancelled - %1 - Anulowao - %1 + Anulowano - %1 Delete file - Usuń plik + Usuń plik Do you want to also delete dowloaded file? - Czy chcesz też usunąć pliki pobrane? + Czy chcesz także usunąć pobrany plik? Open File - Otwórz plik + Otwórz plik Open Folder - Otwórz folder + Otwórz folder Go to Download Page - Idz do strony pobierania + Przejdz do strony z pobieraniem Copy Download Link - Kopiuj łącze pobierania + Skopiuj Link do pobrania Cancel downloading - Anuluj pobieranie + Anulowano pobieranie Clear - Wyczyść + VWyczyść Error - Błąd + Błąd New tab - Nowa zakładka + Nowa karta Not found - Nie znaleziono + Nie znaleziono Sorry, the file %1 was not found! - Przykro ale pliku + Przepraszamy plik %1 - nie znaleziono! + nie został znaleziony! Error: Cannot write to file! - Błąd: Nie można zpisać do pliku! + Błąd: Nie można zapisać do pliku! Error: - Błąd: + Błąd: @@ -1355,44 +1379,48 @@ p, li { white-space: pre-wrap; } %1% of %2 files (%3) %4 remaining - %1% von %2 Dateien (%3) %4 verbleiben + %1% z %2 plików (%3) %4 pozostało % - Download Manager - % - Download Manager + % - Manager Pobierania Download Finished - Download beendet + Pobieranie Ukończone All files have been successfully downloaded. - Alle Dateien wurden erfolgreich heruntergeladen. + + + + All files have been successfuly downloaded. + Wszystkie pliki zostało poprawnie pobrane. Warning - Warnung + Uwaga Are you sure to quit? All uncompleted downloads will be cancelled! - Möchten Sie QupZilla wirklich beenden?Alle nicht beendeten Downloads werden abgebrochen! + Czy na pewno chcesz zamknąć? Wszystkie pobierane pliki będą anulowane! Download Manager - Download Manager + Manager Pobierania Clear - Leeren + Wyczyść @@ -1400,42 +1428,42 @@ p, li { white-space: pre-wrap; } Opening - Öffnen von + Otwórz which is a: - vom Typ: + która jest: from: - von: + z: What should QupZilla do with this file? - Wie soll QupZilla mit dieser Datei verfahren? + Co QupZilla ma zrobić z tym plikiem? You have chosen to open - Datei zum Öffnen ausgewählt + Wybrano do otwierania Open... - Öffnen... + Otwórz... Save File - Datei speichern + Zapisz plik Opening %1 - Öffnen von %1 + Otwieram %1 @@ -1443,37 +1471,37 @@ p, li { white-space: pre-wrap; } Name: - Name: + Nazwa: Url: - Url: + Shortcut: - Verknüpfung: + Icon: - Symbol: + <b>Note: </b>%s in url represent searched string - <b>Hinweis: </b>%s in der URL entspricht der gesuchten Zeichenkette + Add from file ... - Von Datei hinzufügen ... + Choose icon... - Symbol auswählen... + @@ -1481,17 +1509,17 @@ p, li { white-space: pre-wrap; } No Error - Brak błędów + Brak Błędów File does not exists. - Dane nie istnieją. + Unable to open database. Is Firefox running? - Nie można otworzyć bazy danych. Czy Firefox jest uruchominy? + @@ -1499,79 +1527,79 @@ p, li { white-space: pre-wrap; } History - Verlauf + Historia Title - Titel + Tytuł Url - Url + Adres Delete - Löschen + Usuń Del - Entf + Del Clear All History - Gesamten Verlauf löschen + Wyczyść całą historię Optimize Database - Datenbank optimieren + Optymalizuj bazę danych New Tab - Neuer Tab + Nowa karta Open link in actual tab - Link in aktuellem Tab öffnen + Otvoriť odkaz v aktuálnom panely Open link in new tab - Link in neuem Tab öffnen + Otwórz link w nowej karcie Today - Heute + Dziś This Week - Diese Woche + W tym tygodniu This Month - Dieser Monat + W tym miesiącu Confirmation - Bestätigung + Potwierdź Are you sure to delete all history? - Möchten Sie wirklich den gesamten Verlauf löschen? + Czy na pewno chcesz usunąć całą historię? @@ -1579,72 +1607,72 @@ p, li { white-space: pre-wrap; } Failed loading page - Seite konnte nicht geladen werden + Błąd ładowania strony No Named Page - Unbekannte Seite + Strona bez nazwy January - Januar + Styczeń February - Februar + Luty March - März + Marzec April - April + Kwiecień May - Mai + Maj June - Juni + Czerwiec July - Juli + Lipiec August - August + Sierpień September - September + Wrzesień October - Oktober + Październik November - November + Listopad December - Dezember + Grudzień @@ -1652,50 +1680,50 @@ p, li { white-space: pre-wrap; } Search... - Znajdz... + Szukaj... Title - Tytuł + Tytuł New Tab - Nowa zakłądka + Nowa karta Open link in actual tab - Otwórz łacze w aktualnej zakłądce + Otwórz link w aktualnej karcie Open link in new tab - Otwórz łacze w nowej zakładce + Otwórz link w nowej karcie Copy address - Kopuj adres + Today - Dziś + Dziś This Week - W tym tygodniu + W tym tygodniu This Month - W tym miesiącu + W tym miesiącu @@ -1703,7 +1731,7 @@ p, li { white-space: pre-wrap; } No Error - + Brak Błędów @@ -1716,17 +1744,17 @@ p, li { white-space: pre-wrap; } Show informations about this page - Pokaż informacje o tej stronie + Pokaż informacje o tej stronie Add RSS from this page... - Dodaj kanał RSS z tej strony... + Dodaj kanał RSS... Enter URL address or search on %1 - Wprowadz adres URL lub szukaj dalej %1 + @@ -1734,23 +1762,36 @@ p, li { white-space: pre-wrap; } Append domain name on ALT + Enter = Should be different for every country .pl + + Enter URL address or search on Google.com + Wpisz adres URL by szukać w Google.com + .co.uk Append domain name on ALT key = Should be different for every country .pl + + LocationCompleter + + Search %1 on Google.com +.......... + Szukaj %1 w Google.pl +.......... + + MainApplication Last session crashed - Ostania sesja zakończona nieprawidłowym z zamknięciem aplikacji + Wystąpił błąd w ostatniej sesji <b>QupZilla crashed :-(</b><br/>Oops, last session of QupZilla ends with its crash. We are very sorry. Would you try to restore saved state? - <b>QupZilla zawiesił się :-(</b><br/>Ostania sesja zakończona nieprawidłowym z zamknięciem QupZilli. Bardzo nam przykro. Czy chcesz spróbować przywrócić ostatni, zapisany stan? + <b>QupZilla wywaliła się :-(</b><br/>Oops, ostatnia sesja QupZilly zakończyła się błędem. Przepraszamy za to. Czy przywrócić ostatnia sesje? @@ -1758,39 +1799,39 @@ p, li { white-space: pre-wrap; } Back - Wróć + Cofnij Forward - Do przodu + Dalej Home - Dom + Dom New Tab - Nowa zakłądka + Nowa karta Main Menu - Menu główne + Menu Główne Exit Fullscreen - Wyjdz z trybu pełnoekranowego + Zamknij Pełny Ekran - - + + Clear history - Wyczyść historię + Usuń historie @@ -1798,35 +1839,35 @@ p, li { white-space: pre-wrap; } SSL Certificate Error! - SSL Zertifikatsfehler! + Błąd certyfikatu SSL! The page you trying to access has following errors in SSL Certificate: - Beim Laden dieser Seite sind folgende SSL Zertifikatsfehler aufgetreten:: + Strona, którą próbujesz uzyskać dostęp ma następujące błędy w certyfikacie SSL: <b>Organization: </b> - <b>Organisation: </b> + <b>Organizacja: </b> <b>Domain Name: </b> - <b>Domänen-Name: </b> + <b>Domena: </b> <b>Expiration Date: </b> - <b>Ablaufdatum: </b> + <b>Ważna do: </b> <b>Error: </b> - <b>Fehler: </b> + <b>Błąd: </b> Would you like to make exception for this certificate? - Möchten Sie eine Ausnahme für dieses Zertifkat zulassen? + Chcesz zrobić wyjątek dla tego certyfikatu? @@ -1841,39 +1882,39 @@ p, li { white-space: pre-wrap; } Authorization required - Authentifizierung erforderlich + Wymagana autoryzacja Username: - Nutzername: + Nazwa użytkownika: Password: - Passwort: + Hasło: Save username and password on this site - Nutzername und Passwort für diese Seite speichern + Zapisać użytkownika i hasło dla tej strony A username and password are being requested by %1. The site says: "%2" - Bitte Nutzername und Passwort zur Anmeldung an Server %1 angeben. Statusmeldung: "%2" + Nazwa użytkownika i hasło jest wymagane dla %1. Komentarz: "%2" Proxy authorization required - Anmeldung am Proxy erforderlich + Autoryzacja Proxy wymagana A username and password are being requested by proxy %1. - Bitte Nutzername und Passwort zur Anmeldung an Proxy %1 angeben. + Nazwa użytkownika i hasło są wymagane dla proxy %1. @@ -1881,12 +1922,12 @@ p, li { white-space: pre-wrap; } No Error - Brak błedów + Brak Błędów Unable to open file. - Nie można otworzyć. + @@ -1894,17 +1935,17 @@ p, li { white-space: pre-wrap; } Page Screen - Ekran stony + Obrazek strony Save Page Screen... - Zapisz ekran strony... + Zapisz obraz strony... screen.png - ekran.png + obraz.png @@ -1912,67 +1953,67 @@ p, li { white-space: pre-wrap; } Application Extensions - Rozszerzenia + Rozszerzenia Allow Application Extensions to be loaded - Zazwalaj na ładowanie rozszerzeń + Pozwól na ładowanie rozszerzeń Settings - Ustawienia + Ustawienia Load Plugins - Załaduj wtyczki + Ładuj wtyczki WebKit Plugins - Wtyczki WebKit + Wtyczki WebKita <b>Click To Flash Plugin</b> - <b>Wtyczka Kliknij by Włączyć Flash</b> + <b>Kliknij by uruchomić Flash</b> Click To Flash is a plugin which blocks auto loading of Flash content at page. You can always load it manually by clicking on the Flash play icon. - Kliknij by Włączyć Flash to wtycza blokująca automatyczne ładowanie się na stronie, treści w formacie Flash. Jeśli zajdzie taka potrzeba, zawsze możesz kliknąć ikonę aktywacji Flash i załadować dany element. + Click To Flash jest wtyczką, która blokuje automatyczne uruchamianie Flasha. Zawsze można go załadować ręcznie, klikając na ikonę Flash. Whitelist - Biała lista + Biała lista Add - Dodadj + Dodaj Remove - Usuń + Usuń Allow Click To Flash - Pozwól na używanie Kliknij by Włączyć Flash + Pozwól na Click To Flash Add site to whitelist - Dodaj stronę do białej listy + Dodaj stronę do białej listy Server without http:// (ex. youtube.com) - Adres serwera bez http:// (np. youtube.com) + Serwer bez http:// (np. youtube.com) @@ -1980,12 +2021,12 @@ p, li { white-space: pre-wrap; } Preferences - Einstellungen + Ustawienia General - Allgemein + Główne @@ -1995,48 +2036,58 @@ p, li { white-space: pre-wrap; } Downloads - Downloads + Pobieranie Plugins - Plugins + Wtyczki + + + After launch: + Po uruchomieniu: Open blank page - Leere Seite öffnen + Otwórz pustą stronę Open homepage - Startseite öffnen + Otwórz stronę domową + + + + + Open speed dial + Restore session - Sitzung wiederherstellen + Przywróć sesję Homepage: - Startseite: + Strona domowa: On new tab: - Bei neuem Tab: + W nowej karcie: Open blank tab - Leeren Tab öffnen + Otwórz pustą stronę Open other page... - Andere Seite öffnen... + Otwórz inną stronę... @@ -2046,22 +2097,22 @@ p, li { white-space: pre-wrap; } Startup profile: - Beim Start: + Wybierz profil: Create New - Neues Profil erstellen + Nowy Profil Delete - Löschen + Usuń <b>Launching</b> - <b>Start</b> + <b>Uruchamianie</b> @@ -2071,32 +2122,37 @@ p, li { white-space: pre-wrap; } <b>General</b> - <b>Allgemein</b> + <b>Główne</b> + + + + After launch: + Show StatusBar on start - Status-Leiste nach Programmstart anzeigen + Pokaż StatusBar po uruchomieniu Show Bookmarks ToolBar on start - Lesezeichen Werkzeug-Leiste nach Programmstart anzeigen + Pokaż panel zakładek po uruchomieniu Show Navigation ToolBar on start - Navigations-Leiste nach Programmstart anzeigen + Pokaż panel nawigacyjny po uruchomieniu <b>Navigation ToolBar</b> - <b>Navigations-Leiste</b> + <b>Panel Nawigacyjny</b> Allow storing network cache on disk - Cache-Speicherung auf lokaler Festplatte erlauben + Pozwól na składowanie cache sieciowe na dysku @@ -2106,76 +2162,76 @@ p, li { white-space: pre-wrap; } <b>Address Bar behaviour</b> - <b>Adress-Leisten Verhalten</b> + <b>Zachowanie paska adresu</b> <b>Language</b> - <b>Sprache</b> + <b>Język</b> Show Home button - Startseiten-Schaltfläche anzeigen + Pokaż przycisk Dom Show Back / Forward buttons - Zurück- / Vorwärts-Schaltflächen anzeigen + Pokaż przyciski Cofnij / Dalej <b>Browser Window</b> - <b>Browser-Fenster</b> + <b>Okno przeglądarki</b> Tabs - Tabs + Karty Use actual - Aktuelle verwenden + Użyj aktualnej <b>Background<b/> - <b>Hintergrund<b/> + <b>Tło<b/> Use transparent background - Transparenten Hintergrund benutzen + Użyj przezroczyste tło <b>Tabs behavior</b> - <b>Tab-Verhalten</b> + <b>Zachowanie Kart</b> Make tabs movable - Verschieben von Tabs erlauben + Pozwól na ruchome karty Hide close button if there is only one tab - Beenden-Schaltfläche verstecken, wenn nur ein Tab aktiv + Ukryj przycisk zamykania, jeśli jest tylko jedna karta Hide tabs when if there is only one tab - Tabs verstecken, wenn nur einer aktiv + Ukryj pasek kart gdy otwarta jest tylko jedna Web Configuration - Web Konfiguration + Ustawienia Web Maximum - Maximum + Maksymalnie @@ -2185,12 +2241,12 @@ p, li { white-space: pre-wrap; } Ask everytime for download location - Jedes Mal nach Speicherort fragen + Zawsze pytaj gdzie zapisać pobierane Use defined location: - Definierten Speicherort benutzen: + Użyj zdefiniowanej lokacji: @@ -2198,6 +2254,16 @@ p, li { white-space: pre-wrap; } ... ... + + + Languages + + + + + <b>Preferred language for web sites</b> + + Appearance @@ -2206,138 +2272,131 @@ p, li { white-space: pre-wrap; } Browsing - Im Internet surfen + Przeglądanie Load images - Grafiken laden + Ładuj obrazki Allow JAVA - Java zulassen + Pozwól uruchamiać JAVA + + + Allow JavaScript + Pozwól na JavaScript Allow Plugins (Flash plugin) - Plugins erlauben (Flash plugin) + Uruchamiaj wtyczki (Flash plugin) Maximum pages in cache: - Maximale Seitenanzahl im Cache: + Maksymalna ilość stron w cache: Password Manager - Passwort Manager + Maganger Haseł <b>AutoFill options</b> - <b>Autovervollständigen</b> + <b>Opcje autouzupełniania</b> Allow saving passwords from sites - Speichern von Passwörtern von Seiten erlauben + Pozwól na zapisywanie haseł dla stron Privacy - Privatsphäre + Prywatność Fonts - Schriftarten + Czcionki Note: You cannot delete active profile. - Hinweis: Ein aktives Profil kann nicht gelöscht werden. + Poznámka: Nie można usunąć aktywny profil. Notifications - Benachrichtigungen + Powiadomienia Show Add Tab button - Tab hinzufügen Schaltfläche anzeigen + Pokaż przcisk Nowa Karta Activate last tab when closing active tab - Zuletzt besuchten Tab aktivieren, wenn aktiver Tab geschlossen wird + Aktywuj ostatniej zakładki podczas zamykania aktywnej zakładki Block PopUp windows - PopUp Fenster blockieren + Blokuj wyskakujące okna Allow DNS Prefetch - DNS Prefetch erlauben + Pozwól DNS Prefetch JavaScript can access clipboard - JavaScript darf auf die Zwischenablage zugreifen + JavaScript może uzyskać dostępu do schowka Include links in focus chain - Links in Focus Chain berücksichtigen + Wskazywanie kart referencyjcnych Zoom text only - Nur Text vergrößern + Powiększ tylko tekst Print element background - Hintergrund drucken + Drukuj element tła Send Do Not Track header to servers - Do Not Track Kopfzeile zum Server senden + Wysyłaj serwerom nagłówek Do Not Track Appereance - Erscheinungsbild - - - - After launch: - Nach dem Start: - - - - - Open speed dial - + Wygląd Check for updates on start - Beim Start auf Aktualisierungen überprüfen + Sprawdź aktualizacje podczas uruchamiania Themes - Themen + Motyw Advanced options - Erweiterte Optionen + Zaawansowane Ustawienia @@ -2347,7 +2406,7 @@ p, li { white-space: pre-wrap; } Ask when closing multiple tabs - Fragen, wenn mehrere Tabs geschlossen werden + Zapytaj przy zamykaniu wielu kart @@ -2357,7 +2416,7 @@ p, li { white-space: pre-wrap; } Allow JavaScript - JavaScript erlauben + @@ -2367,67 +2426,67 @@ p, li { white-space: pre-wrap; } Mouse wheel scrolls - Mit dem Mausrad blättern + Przewijanie kółkiem myszy lines on page - Zeilen auf einer Seite + linii na stronie Default zoom on pages: - Standardvergrößerung: + Local Storage - Lokaler Speicherplatz + Lokalna przestrzeń dyskowa Proxy Configuration - Proxy Konfiguration + Ustawienia proxy <b>Font Families</b> - <b>Schriftarten</b> + <b>Rodzaje czcionek</b> Standard - Standard + Standardowe Fixed - Feste Breite + Proporcjonalne Serif - Serif + Szeryfowa Sans Serif - Sans Serif + Sans Szeryfowa Cursive - Kursiv + Kursywa Default Font - Standard-Schriftart + Domyślna czcionka Fixed Font - Schriftart mit fester Breite + Proporcionalna czcionka @@ -2437,129 +2496,119 @@ p, li { white-space: pre-wrap; } <b>Font Sizes</b> - <b>Schriftgrößen</b> + <b>Rozmiar Czcionki</b> <b>Download Location</b> - <b>Download Verzeichnis</b> + <b>Lokalizacja dla pobierania</b> <b>Download Options</b> - <b>Download Optionen</b> + <b>Opcje pobierania</b> Use native system file dialog (may or may not cause problems with downloading SSL secured content) - Nativen System-Dialog verwenden -(kann Probleme beim Herunterladen von mittels SSL geschützten Inhalten verursachen) + Użyj natywnego systemu plików +(może powodować problemy z pobieraniem treści zabezpieczonych protokołem SSL) Close download manager when downloading finishes - Download-Manager schließen, wenn das Herunterladen beendet ist + Filter Tracking Cookies - Seitenfremde Cookies verbieten + Filtruj śledźące cookies Allow storing of cookies - Das Speichern von Cookies erlauben + Pozwól na zapisywanie cookies Delete cookies on close - Cookies beim Beenden löschen + Usuń cookies w momencie zamknięcia przeglądarki Match domain exactly - Genaue Übereinstimmung der Domain + Dopasowuj domeny dokładnie <b>Warning:</b> Match domain exactly and Filter Tracking Cookies options can lead to deny some cookies from sites. If you have problems with cookies, try to disable this options first! - <b>Warnung:</b> Das Einschalten der Optionen "Genaue Übereinstimmung" und "Seitenfremde Inhalte" kann dazu führen, dass Cookies von Webseiten zurückgewiesen werden. Tritt dieses Problem auf, deaktivieren Sie bitte zunächst diese Optionen! + <b>Uwaga:</b> Dokładne dopsaowywanie domen i filtrowanie śledźących cookies może zablokować cookies z niktórych stron. Jeżeli masz problemy z cookies, spróbuj wyłączyć obie opcje! Cookies Manager - Cookie Manager + Zarządzanie cookies <b>Notifications</b> - <b>Benachrichtigungen</b> + <b>Powiadomienia</b> Use OSD Notifications - OSD verwenden + Użyj powiadomień OSD Use Native System Notifications (Linux only) - System-Benachrichtigungen verwenden (nur Linux) + Użyj natywnych systemowych powiadomień (tylko Linux) Do not use Notifications - Keine Benachrichtigungen verwenden + Nie pokazuj powiadomień Expiration timeout: - Zeit: + Czas do wygaśnięcia: seconds - Sekunden + sekund <b>Note: </b>You can change position of OSD Notification by dragging it on the screen. - <b>Hinweis: </b>Sie können die Position des OSD ändern, in dem Sie es auf dem Bildschirm mit der Maus verschieben. + <b>Uwaga: </b>Możesz zmienić położenie powiadomień OSD, przenosząc je po ekranie. <b>User CSS StyleSheet</b> - <b>Benutzerdefiniertes CSS StyleSheet</b> + <b>Styl CSS użytkownika </b> StyleSheet automatically loaded with all websites: - StyleSheet automatisch mit allen Webseiten laden: - - - - Languages - Sprachen - - - - <b>Preferred language for web sites</b> - <b>Bevorzugte Sprache für Webseiten</b> + Styl automatycznie ładowany z wszystkimi stronami: System proxy configuration - Proxy-Einstellungen des Systems verwenden + Ustawienia proxy Do not use proxy - Keinen Proxy benutzen + Nie używaj proxy Manual configuration - Manuelle Konfiguration + Ręczne ustawienia @@ -2579,123 +2628,127 @@ p, li { white-space: pre-wrap; } Username: - Nutzername: + Nazwa użytkownika: Password: - Passwort: + Hasło: Don't use on: - Ausnahme: + Nie używaj na: Allow storing web icons - Speichern von Web-Symbolen erlauben + Pozwól gromadzić ikony witryn Allow saving history - Speichern des Verlaufs erlauben + Pozwól zapisywać historie Delete history on close - Verlauf beim Beenden löschen + Usuń historie w momencie zamykania przeglądarki Other - Andere + Inne Select all text by double clicking in address bar Select all text by clicking at address bar - Ganzen Text mit einem Doppelklick in der Adress-Leiste auswählen + Zaznacz cały tekst klikając podwójnie na pasek adresu Add .com domain by pressing CTRL key - Zum Hinzufügen der .com Domäne drücken Sie bitte die STRG-Taste + Dodaj .com domene po kliknięciu CTRL Add .co.uk domain by pressing ALT key - Zum Hinzufügen der .co.uk Domäne drücken Sie bitte die ALT-Taste + Dodaj .pl domene po kliknięciu w ALT SSL Manager - SSL Manager + Zarządzaj SSL Available translations: - Verfügbare Übersetzungen: + Dostępne tłumaczenia: In order to change language, you must restart browser. - Um die Sprache zu ändern, starten Sie bitte QupZilla neu. + Aby zmienić język należy uruchomić ponownie przeglądarke. OSD Notification - OSD Benachrichtigung + Powiadomienia OSD + + + Drag it on the screen to place it where You want. + Przenieś to w miejsce które chcesz. Drag it on the screen to place it where you want. - Veschieben Sie es auf dem Bildschirm nach Belieben. + Choose download location... - Download-Verzeichnis auswählen... + Wybierz miejsce pobierania... Choose stylesheet location... - Stylesheet-Verzeichnis wählen... + Wybierz położenie stylu... New Profile - Neues Profil + Nowy profil Enter the new profile's name: - Bitte geben Sie den Namen des neuen Profils ein: + Wpisz nową nazwe profilu: Error! - Fehler! + Błąd! This profile already exists! - Dieses Profil existiert bereits! + taki profil już istnieje! Cannot create profile directory! - Verzeichnis kann nicht erstellt werden! + Nie można utworzyć katalogu profilu! Confirmation - Bestätigung + Potwierdzenie Are you sure to permanently delete "%1" profile? This action cannot be undone! - Möchten Sie wirklich das Profil "%1" dauerhaft entfernen? Diese Aktion kann nicht rückgängig gemacht werden! + Czy jesteś pewny że chcesz usunąć profil "%1"? Akcji ten nie będzie można cofnąć! @@ -2703,7 +2756,7 @@ p, li { white-space: pre-wrap; } The file is not an OpenSearch 1.1 file. - Diese Datei besitzt kein gültiges OpenSearch 1.1 Format. + @@ -2711,461 +2764,485 @@ p, li { white-space: pre-wrap; } Open new tab - Neuen Tab öffnen + Otwórz nową kartę Opens a new tab if browser is running - Öffnet einen neuen Tab bei gestartetem Browser + Otwiera nową kartę, jeżeli aplikacja jest uruchomiona Open new window - Neues Fenster öffnen + Otwórz nowe okno Opens a new window if browser is running - Öffnet ein neues Fenster bei gestartetem Browser + Otwiera nowe okno, jeśli aplikacja jest uruchomiona Open download manager - Download Manager öffnen + Otwórz menadżer pobierania Opens a download manager if browser is running - Öffnet den Download Manager bei gestartetem Browser + Otwiera menedżera pobierania, jeżeli aplikacja jest uruchomiona QupZilla - + File + Plik + + + Edit + Edytuj + + + Tools + Narzędzia + + + Help + Pomoc + + + View + Widok + + + Bookmarks - Zakąłdki + Zakładki - + History - Historia + Historia - + Quit - Zakończ - - - - New Tab - Nowa zakładka - - - - Close Tab - Zamknij zakłądkę - - - - IP Address of current page - Adres IP obecnej strony - - - - &Tools - &Narzędzia - - - - &Help - &Pomoc - - - - &Bookmarks - &Zakładki - - - - Hi&story - &Historia - - - - &File - &Plik - - - - &New Window - &Nowe okno - - - - Open &File - Otwórz &plik - - - - &Save Page As... - &Zapisz stronę jako... - - - - &Print - &Wydrukuj - - - - Import bookmarks... - Importuj zakładki... - - - - &Edit - &Edytuj - - - - &Undo - &Cofnij zmianę - - - - &Redo - &Przywróc zmianę - - - - &Cut - &Wytnij - - - - C&opy - &Kopiuj - - - - &Paste - &Wklej - - - - &Delete - &Usuń - - - - Select &All - Zaznacz &Wszystko - - - - &Find - &Szukaj - - - - &View - &Podgląd - - - - &Navigation Toolbar - Pasek narzędziowy &nawigacji - - - - &Bookmarks Toolbar - Pasek narzędziowy &zakładek - - - - Sta&tus Bar - Pasek sta&nu - - - - Toolbars - Paski narzędziowe - - - - Sidebars - Paski poboczne - - - - &Page Source - &Źródło storny - - - - &Menu Bar - &Paski menu głównego - - - - &Fullscreen - &Pełen ekran - - - - &Stop - &Zatrzymaj - - - - &Reload - &Przeładuj - - - - Character &Encoding - Kodowanie &znaków - - - - Zoom &In - &Powiększ - - - - Zoom &Out - &Zmniejsz - - - - Reset - Resetuj - - - - Close Window - Zamknij okno + Zamknij - Open Location - Otwórz adres + New Tab + Nowa karta - - Send Link... - Wyślij łącze... + + Close Tab + Zamknij kartę - - Other - Inne + + IP Address of current page + Adres IP aktualnej strony - - Default - Domyśle + + &Tools + - - Current cookies cannot be accessed. - Obecne pliki cistek nie mogą być zaakceptowane. + + &Help + - - Your session is not stored. - Twoja sesja nie jest zapisywana. + + &Bookmarks + - - Start Private Browsing - Pozpocznij Przeglądanie w Trybie Prywatnym + + Hi&story + - - Private Browsing Enabled - Tryb Prywatny aktywny + + &File + - - Restore &Closed Tab - Przywróc &zakładkę zamkniętą + + &New Window + &Nowe okno - - Bookmarks In ToolBar - Lesezeichen in Werkzeug-Leiste - - - - - - Empty - Leer - - - - - - New tab - Neuer Tab - - - - Bookmark &This Page - &Lesezeichen für diese Seite hinzufügen - - - - Bookmark &All Tabs - Lesezeichen für alle &geöffneten Tabs hinzufügen - - - - Organize &Bookmarks - Bookmarks &bearbeiten - - - - &Back - &Zurück - - - - &Forward - &Vor - - - - &Home - &Startseite - - - - Show &All History - &Vollständigen Verlauf anzeigen - - - - Closed Tabs - Geschlossene Tabs + + Open &File + Otwórz &Plik - Save Page Screen - Bildschirmseite speichern + &Save Page As... + &Zapisz stronę jako... - - - (Private Browsing) - (Privater Modus) + + &Print + &Drukuj - - Restore All Closed Tabs - Alle geschlossenen Tabs wiederherstellen + + Import bookmarks... + - - Clear list - Liste leeren + + &Edit + - - About &Qt - Üb&er Qt + + &Undo + &Cofnij - - &About QupZilla - Über Qup&Zilla + + &Redo + &Dalej - - Informations about application - Informationen über QupZilla + + &Cut + &Wytnij + + C&opy + &Kopiuj + + + + &Paste + &Wklej + + + + &Delete + &Usuń + + + + Select &All + Zaznacz &Wszystko + + + + &Find + &Znajdź + + + + &View + + + + + &Navigation Toolbar + &Pasek nawigacyjny + + + + &Bookmarks Toolbar + Pasek &zakładek + + + + Sta&tus Bar + Pasek &statusu + + + + Toolbars + Paski narzędzi + + + + Sidebars + Pasek boczny + + + + &Page Source + Źródło &strony + + + + &Menu Bar + &Menu + + + + &Fullscreen + &Pełny ekran + + + + &Stop + Zatrzymaj& + + + + &Reload + &Odświerz + + + + Character &Encoding + Kodowanie& znaków + + + + Zoom &In + Powiększ& + + + + Zoom &Out + Oddal& + + + + Reset + Resetuj + + + + Close Window + Zamknij okno + + + + Open Location + Otwórz lokalizację + + + + Send Link... + Wyslij link... + + + + Other + Inne + + + + Default + Domyślne + + + + Current cookies cannot be accessed. + Aktualne cookies nie są dostępne. + + + + Your session is not stored. + Twoja sesja nie jest przechowywana. + + + + Start Private Browsing + Spustiť anonymné prehliadanie + + + + Private Browsing Enabled + Przeglądanie w trybie prywatnym jest włączone + + + + Restore &Closed Tab + Przywróć zamknięte &karty + + + + Bookmarks In ToolBar + Pasek zakładek + + + + + Empty + Pusto + + + + + + New tab + Nowa karta + + + + Bookmark &This Page + Dodaj &stronę do zakładek + + + + Bookmark &All Tabs + Dodaj &wszystkie karty do zakładek + + + + Organize &Bookmarks + &Zarządzaj zakładkami + + + + &Back + &Cofnij + + + + &Forward + &Dalej + + + + &Home + Do&m + + + + Show &All History + Pokaż całą &historię + + + + Closed Tabs + Zamknięte karty + + + + Save Page Screen + Zapisz obraz strony + + + + + (Private Browsing) + (Przeglądanie Prywatne) + + + + Restore All Closed Tabs + Przywróć wszystkie zamknięte karty + + + + Clear list + Wyczyść listę + + + + About &Qt + O &Qt + + + + &About QupZilla + &O QupZilli + + + + Informations about application + Informacje o aplikacji + + + Report &Issue - &Fehlerbericht senden + Zgłoś &błąd - + &Web Search - Web&suche + Szukaj w &sieci - + Page &Info - S&eiteninformationen anzeigen + &Informacje o stronie - + &Download Manager - &Download Manager + Menadżer &pobierania - + &Cookies Manager - &Cookie Manager + Menadżer &cookies - + &AdBlock &AdBlock - + RSS &Reader - RSS &Reader + &Czytnik RSS - + Clear Recent &History - &Verlauf löschen + Wyczyść &historie - + &Private Browsing - &Privater Modus + Tryb prywatny& - - + + Pr&eferences - &Einstellungen + Us&tawienia - + Web Inspector + Web Inspektor + + + Open file... - Datei öffnen... + Otwórz plik... - + Are you sure you want to turn on private browsing? - Möchten Sie wirklich den privaten Modus starten? + Czy na pewno chcesz włączyć tryb prywatny? - + When private browsing is turned on, some actions concerning your privacy will be disabled: - Wenn der private Modus aktiv ist, stehen einige Aktionen nicht zur Verfügung: + Kiedy tryb prywatny jest włączony, niektóre działania naruszające twoją prywatność będą wyłączone: - + Webpages are not added to the history. - Webseiten werden nicht zum Verlauf hinzugefügt. + Strony internetowe nie są dodawane do historii. - + Until you close the window, you can still click the Back and Forward buttons to return to the webpages you have opened. - Solange dieses Fenster geöffnet ist, können Sie über die Symbole "Zurück" und "Vor" zu den Webseiten zurückkehren, die Sie geöffnet haben. + Do zamknięcia okna, możesz używać Wstecz i Dalej aby powrócić do stron jakie miałeś otwarte. - + There are still %1 open tabs and your session won't be stored. Are you sure to quit? - Es sind noch %1 Tabs geöffnet und Ihre Sitzung wird nicht gespeichert. Möchten Sie QupZilla wirklich beenden? + Nadal są otwarte %1 karty które nie zostaną zapisane w sesjii. Czy napewno chcesz wyjść? @@ -3173,124 +3250,194 @@ p, li { white-space: pre-wrap; } No Error - Kein Fehler + Brak Błędów Not Found - Nicht gefunden + Nie znaleziono Report issue - Fehlerbericht senden + Zgłoś błąð - - If you are experiencing problems with QupZilla, please try first disable all plugins. <br/>If it won't help, then please fill this form: - Wenn Sie bei der Nutzung von QupZilla auf Probleme stoßen, deaktivieren Sie bitte zuerst alle Plugins. <br/> Sollte dies das Problem nicht lösen, füllen Sie bitte dieses Formular aus: + If You are experiencing problems with QupZilla, please try first disable all plugins. <br/>If it won't help, then please fill this form: + Jeśli doświadczasz problemów z QupZillą, proszę spróbuj najpierw wyłączyć wszystkie dodatki. <br/> Jeżeli to nie pomogło, prosze wypełnij ten formularz: Your E-mail - Ihre E-Mail Adresse + Twoj E-mail Issue type - Fehlertyp + Typ błędu Priority - Priorität + Priorytet Low - Niedrig + Niski Normal - Normal + Normalny High - Hoch + Wysoki + + + + + Report Issue + + + + + If you are experiencing problems with QupZilla, please try first disable all plugins. <br/>If it won't help, then please fill this form: + Issue description - Fehlerbeschreibung + Opis błędu Send - Senden + Wyślij E-mail is optional - Angabe optional + E-mail jest opcjonalny Please fill all required fields! - Bitte füllen Sie alle erforderlichen Felder aus! + PProszę wypełnić wszystkie wymagane pola! Start Page - Startseite + Strona startowa Google Search - Google Suche + Wyszukaj w Google Search results provided by Google - Suchergebnisse + Pokaż wyniki wyszukiwania w Google About QupZilla - Über QupZilla + O QupZilli Informations about version - Versionsinformationen + Informacje o wersji Browser Identification - Browser Indentifizierung + IIdentyfikacja przeglądarki Paths - Pfade + Ścieżki Copyright - Copyright + Prawa autorskie + + + + Version + Wersja + + + + WebKit version + Wersja WebKit + + + + Build time + Zbudowana + + + + Platform + Platforma + + + + Profile + + + + + Settings + Ustawienia + + + + Saved session + Zapisana sesja + + + + Pinned tabs + Przypięta zakładka + + + + Data + + + + + Themes + Motywy + + + + Plugins + Dodatki + + + + Translations + Tłumaczenia Main developer - Hauptentwickler + Contributors - Mitwirkende + Translators - Übersetzer + @@ -3306,22 +3453,22 @@ p, li { white-space: pre-wrap; } Edit - + Edytuj Remove - + Usuń Reload - Neu laden + Odświerz Url - Url + Adres @@ -3333,174 +3480,108 @@ p, li { white-space: pre-wrap; } New Page - - - Version - Version - - - - - Report Issue - - - - - WebKit version - WebKit Version - - - - Build time - Kompiliert am - - - - Platform - Plattform - - - - Profile - Profile - - - - Settings - Einstellungen - - - - Saved session - Gespeicherte Sitzung - - - - Pinned tabs - Angeheftete Tabs - - - - Data - Daten - - - - Themes - Themen - - - - Plugins - Plugins - - - - Translations - Übersetzungen - RSSManager RSS Reader - RSS Reader + Czytnik RSS Empty - Leer + Pusty You don't have any RSS Feeds.<br/> Please add some with RSS icon in navigation bar on site which offers feeds. - Sie haben noch keine RSS Feeds abonniert.<br/> -Bitte fügen Sie Feeds über das RSS Symbol in der Navigationsleiste hinzu. + Nie masz żadnych kanałów RSS.<br/> +Dodawaj kanały klikając na ikonę RSS pasku nawigacyjnym. Reload - Neu laden + Odświerz Edit feed - Feed bearbeiten + Edytuj RSS Delete feed - Feed Löschen + Usuń kanał Optimize Database - Datenbank optimieren + Optymalizuj bazę danych News - Nachrichten + Aktualności Loading... - Laden... + Ładowanie... Fill title and URL of a feed: - Titel und URL des Feeds eintragen: + Wypełnij tytuł i adres URL kanału: Feed title: - Feed Titel: + Nazwa kanału: Feed URL: - Feed URL: + Adres kanału: Edit RSS Feed - RSS Feed barbeiten + Ustawienia RSS Open link in actual tab - Link in aktuellem Tab öffnen + Otwórz link w aktualnej karcie Open link in new tab - Link in neuem Tab öffnen + Otwórz link w nowej karcie New Tab - Neuer Tab + Nowa karta Error in fetching feed - Feed konnte nicht abonniert werden + Błąd podczas pobierania aktualności RSS feed duplicated - Doppelter RSS Feed vorhanden + Zduplikowane kanały You already have this feed. - Diesen Feed haben Sie bereits abonniert. + Posiadasz już ten kanał. @@ -3508,12 +3589,16 @@ Bitte fügen Sie Feeds über das RSS Symbol in der Navigationsleiste hinzu. Open RSS Manager - RSS Manager öffnen + Otwórz Menadżer RSS + + + You have successfuly added RSS feed "%1". + Kanał "%1". poprawnie dodany. You have successfully added RSS feed "%1". - RSS Feed "%1" erfolgreich hinzugefügt. + @@ -3521,12 +3606,12 @@ Bitte fügen Sie Feeds über das RSS Symbol in der Navigationsleiste hinzu. Add RSS Feeds from this site - RSS Feed von dieser Seite hinzufügen + Dodaj kanał RSS z tej strony Add - Hinzufügen + Dodaj @@ -3534,12 +3619,12 @@ Bitte fügen Sie Feeds über das RSS Symbol in der Navigationsleiste hinzu. Stop - Stop + Zatrzymaj Reload - Neu laden + Odświerz @@ -3547,18 +3632,18 @@ Bitte fügen Sie Feeds über das RSS Symbol in der Navigationsleiste hinzu. SSL Manager - SSL Manager + Ustawienia certyfikatów CA Authorities Certificates - Zertifizierungsstellen + CA Certyfikat Autora Show info - Informationen anzeigen + Informacje @@ -3588,61 +3673,63 @@ After adding or removing certificate paths, it is neccessary to restart QupZilla This is list of CA Authorities Certificates stored in standard system path and in user specified paths. - Dies ist eine Liste von Zertifizierungsstellen, die im Standard-Systempfad und in benutzerdefinierten Pfaden gespeichert sind. + To jest lista certyfikatów CA przechowywanych pod standardową ścieżką systemową oraz ścieżką użytkownika. Local Certificates - Lokale Zertifikate + Lokalne Certyfikaty Remove - Entfernen + Usuń + + + If CA Authorities Certificates were not automatically loaded from system, you can specify manual paths where certificates are stored. + Jeśli certyfikaty CA Autorit nie załadują się automatycznie, możesz ręcznie wskazać ścieżkę gdzie certyfikaty są przechowywane. + + + After adding or removing certificate paths, it is neccessary to restart browser in order to changes take effect. + Po dodaniu lub usunięciu ścieżki certyfikatu, konieczne jest ponowne uruchomienie przeglądarki, aby zmiany odniosły skutek. This is list of Local Certificates stored in user profile. This list also contains all certificates, that have received an exception. - Dies ist eine Liste mit lokal gespeicherten Zertifikaten. Sie enthält auch alle Zertifikate, für die eine Ausnahme gemacht wurde. + Oto lista lokalnych certyfikatów przechowywanych w profilu użytkownika. Lista ta zawiera również wszystkie certyfikaty, które otrzymały wyjątek. Settings - Einstellungen + Ustawienia Add - Hinzufügen + Dodaj - If CA Authorities Certificates were not automatically loaded from system, you can specify manual paths where certificates are stored. - Falls Zertifikatsstellen nicht automatisch vom System geladen werden, können Sie den Pfad, in dem die Zertifikate gespeichert sind, auch manuell angeben. + If CA Authorities Certificates were not automatically loaded from system, You can specify manual paths where certificates are stored. + Jeśli certyfikaty CA Autorit nie załadują się automatycznie, możesz ręcznie wskazać ścieżkę gdzie certyfikaty są przechowywane. <b>NOTE:</b> Setting this option is big security risk! - <b>WARNUNG:</b> Das Einschalten dieser Option birgt ein sehr hohes Sicherheitsrisiko! + <b>Uwaga:</b> Ustawianie tych opcji to bardzo duże zagrożenie dla bezpieczeństwa! Ignore all SSL Warnings - Alle SSL Warnungen ignorieren - - - All certificates must have .crt suffix. -After adding or removing certificate paths, it is neccessary to restart browser in order to changes take effect. - Alle Zertifikate müssen einen .crt suffix besitzen. -Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gestartet werden, um die Änderung wirksam zu machen. + Ignoruj wszystkie ostrzeżenia SSL Choose path... - Pfad auswählen... + Wybierz ścieżkę... Certificate Informations - Informationen zum Zertifikat + Informacje o certyfikacie @@ -3650,47 +3737,47 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Manage Search Engines - Suchmaschinen verwalten + Add... - Hinzufügen... + Remove - Entfernen + Usuń Edit - Bearbeiten + Edytuj Defaults - Standard + Search Engine - Suchmaschine + Shortcut - Verknüpfung + Add Search Engine - Suchmaschine hinzufügen + Edit Search Engine - Suchmaschine bearbeiten + @@ -3698,27 +3785,27 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Search Engine Added - Suchmaschine hinzugefügt + Search Engine "%1" has been successfully added. - Suchmaschine "%1" wurde erfolgreich hinzugefügt. + Search Engine is not valid! - Suchmaschine ist ungültig! + Error - Fehler + Błąd Error while adding Search Engine <br><b>Error Message: </b> %1 - Beim Hinzufügen der Suchmaschine ist ein Fehler aufgetreten <br><b>Fehlermeldung: </b> %1 + @@ -3726,7 +3813,7 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest No results found. - Keine Suchergebnisse vorhanden. + nic nie znaleziono. @@ -3734,22 +3821,22 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Search: - Suchen: + Szukaj: Search... - Suchen... + Szukaj... Highlight - Hervorheben + Wyróżnij Case sensitive - Groß- und Kleinschreibung beachten + Rozróżniaj wielkość @@ -3757,12 +3844,12 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Bookmarks - Lesezeichen + Zakładki History - Verlauf + Historia @@ -3770,32 +3857,32 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Site Info - Seiteninformationen + Informacje o stronie General - Allgemein + Główne Media - Medien + Media Security - Sicherheit + Zabezpieczenia Size: - Größe: + Rozmiar: Encoding: - Kodierung: + Kodowanie: @@ -3805,108 +3892,108 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Value - Wert + Wartość <b>Security information</b> - <b>Sicherheitsinformation</b> + <b>Onformacje o zabezpieczeniachí</b> Details - Details + Detale Image - Grafik + Obrazy Image address - Grafikadresse + Adres obrazków <b>Preview</b> - <b>Vorschau</b> + <b>Podgląd</b> Site address: - Seitenadresse: + Adres strony: Meta tags of site: - Meta Tags dieser Seite: + Meta tagi na stronie: <not set in certificate> - <Im Zertifkat nicht vorhanden> + <brak certyfikatu> <b>Connection is Encrypted.</b> - <b>Verschlüsselte Verbindung.</b> + <b>Połączenie jest szyfrowane.</b> <b>Your connection to this page is secured with this certificate: </b> - <b>Diese Verbindung ist mit diesem Zertifikat verschlüsselt: </b> + <b>Twoje połączenie z tą witryną jest zabezpieczone przez ten certyfikat: </b> <b>Connection Not Encrypted.</b> - <b>Unverschlüsselte Verbindung.</b> + <b>Połączenie nie jest szyfrowane.</b> <b>Your connection to this page is not secured!</b> - <b>Diese Verbindung ist nicht verschlüsselt!</b> + <b>Twoje połączenie z ta stroną nie jest szyfrowane</b> Copy Image Location - Grafikadresse kopieren + Kopiuj adres obrazka Copy Image Name - Grafik kopieren + Kopuj nazwe obrazka Save Image to Disk - Grafik speichern + Zapisz obraz na dysk Error! - Fehler! + Błąd! This preview is not available! - Diese Vorschau ist nicht verfügbar! + Podgląd nie jest dostępny! Save image... - Grafik speichern... + Zapisz obrazek... Cannot write to file! - Datei kann nicht gespeichert werden! + Nie mozna zapisac do pliku! Preview not available - Vorschau nicht verfügbar + Podgląd nie dostępny @@ -3914,43 +4001,51 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest More... - Mehr... + Więcej... Your connection to this site is <b>secured</b>. - Diese Verbindung ist <b>verschlüsselt</b>. + Twoje połączenie z tą stroną jest <b>zabezpieczone</b>. Your connection to this site is <b>unsecured</b>. - Diese Verbindung ist <b>unverschlüsselt</b>. + Twoje połączenie z tą stroną jest <b>nie zabezpieczone</b>. + + + This is Your <b>%1.</b> visit of this site. + To jest twoja <b>%1.</b> wizyta na tej stronie. This is your <b>%1.</b> visit of this site. - Dies ist Ihr <b>%1.</b> Besuch dieser Seite. + first - erster + pierwsza second - zweiter + druga third - dritter + trzecia + + + This is Your <b>%1</b> visit of this site. + Toto je Vaša <b>%1</b> návšteva tejto siete. You have <b>never</b> visited this site before. - Sie haben diese Seite <b>noch nie</b> besucht. + <b>Nigdy</b> nie byłeś na tej stronie. @@ -3958,138 +4053,142 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Source of - Quelltext von + Kod źródłowy File - Datei + Plik Save as... - Speichern als... + Zapisz jako... Close - Schließen + Zamknij Edit - Bearbeiten + Edytuj Undo - Rückgängig + Cofnij Redo - Wiederherstellen + Dalej Cut - Ausschneiden + Wytnij Copy - Kopieren + Kopiuj Paste - Einfügen + Wklej Delete - Löschen + Usuń Select All - Alle markieren + Zaznacz wszystko Find - Suchen + Znajdź Go to Line... - Gehe zu Zeile... + Idź do linii... View - Ansicht + Widok Reload - Neu laden + Odświerz Editable - Editierbar + Modyfikowalne Word Wrap - Zeilenumbruch + Zawijalnie linii Save file... - Datei speichern... + Zapisz plik... Error! - Fehler! + Błąd! Cannot write to file! - Datei kann nicht gespeichert werden! + Nie można zapisać do pliku! Error writing to file - Beim Schreiben der Datei ist ein Fehler aufgetreten + Błąd zapisu do pliku Source successfully saved - Quelltext erfolgreich gespeichert + + + + Source successfuly saved + Kod poprawnie zapisany Source reloaded - Quelltext neu geladen + Kod odświerzony Editable changed - Quelltext geändert + Zezwolenie na modyfikacje Word Wrap changed - Zeilenumbruch geändert + Zawijanie linii zmienione Enter line number - Zeilennummer eingeben + Wpisz numer linii @@ -4097,12 +4196,12 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Search: - Suchen: + Szukaj: Search... - Suchen... + Szukaj... @@ -4111,77 +4210,77 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest New tab - Neuer Tab + Nowa karta &New tab - &Neuer Tab + &Nowa karta &Stop Tab - &Stop Tab + &Zatrzymaj kartę &Reload Tab - Tab neu &laden + &Odświerz kartę &Duplicate Tab - Tab &duplizieren + &Duplikuj kartę Reloa&d All Tabs - Alle Tabs ne&u laden + Odświerz & wszystkie karty &Bookmark This Tab - &Lesezeichen für diesen Tab hinzufügen + Dodaj &kartę do zakładek Un&pin Tab - Tab löse&n + Odepnij& kartę &Pin Tab - Tab an&heften + Przypnij& kartę Re&load All Tabs - Alle Tabs ne&u laden + Odświerz &wszystkie karty Bookmark &All Tabs - Lesezeichen für alle &geöffneten Tabs hinzufügen + Dodaj &wszystkie karty do zakładek Restore &Closed Tab - Geschlossenen Tab &wiederherstellen + Przywróć zamknięte &karty Close Ot&her Tabs - Alle an&deren Tabs schließen + Zam&knij inne karty Cl&ose - S&chließen + Zam&knij Bookmark &All Ta&bs - Lesezeichen für alle &geöffneten Tabs hinzufügen + Dodaj &wszystkie karty do zakładek @@ -4189,28 +4288,32 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Show list of opened tabs - Liste aller geöffneten Tabs anzeigen + Pokaż listę otwartych kart New Tab - Neuer Tab + Loading... - Laden... + Ładowanie... No Named Page - Unbekannte Seite + Strona bez nazwy Actually you have %1 opened tabs - Aktuell sind %1 Tabs geöffnet + + + + Actually You have %1 opened tabs + Aktualnie masz %1 otwartych kart @@ -4218,7 +4321,7 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest New tab - Neuer Tab + Nowa karta @@ -4226,7 +4329,7 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest <b>Name:</b> - <b>Name:</b> + <b>Nazwa:</b> @@ -4236,17 +4339,17 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest <b>Description:</b> - <b>Beschreibung:</b> + <b>Opis:</b> License - Lizenz + Licencja License Viewer - Lizenz anzeigen + Podgląd licencji @@ -4254,17 +4357,17 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Update available - Aktualisierung verfügbar + Dostępna aktualizacja New version of QupZilla is ready to download. - Eine neue Version von QupZilla steht zum Herunterladen bereit. + Nowa wersja QupZilli jest gotowa do pobrania. Update - Aktualisierung + Aktualizuj @@ -4273,102 +4376,106 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Web Inspector - Web Inspector + Web Inspektor WebPage + + To show this page, QupZilla must resend request which do it again +(like searching on making an shoping, witch has been already done.) + Aby wyświetlić tę stronę, QupZilla musi wysłać ponownie żądanie do serwera + To show this page, QupZilla must resend request which do it again (like searching on making an shoping, which has been already done.) - Um diese Seite anzeigen zu können, muss QupZilla eine erneute Abfrage an den Server versenden - + New tab - + Nowa karta Server refused the connection - Der Server hat den Verbindungsversuch abgelehnt + Serwer odrzucił połączenie Server closed the connection - Der Server hat die Verbindung beendet + Serwer przerwał połączenie Server not found - Server nicht gefunden + Serwer nie znaleziony Connection timed out - Zeitüberschreitung der Anfrage + Przekroczono limit czasu połączenia Untrusted connection - Keine vertrauenswürdige Verbindung + Niezaufane połączenie AdBlocked Content - Inhalt von AdBlock blockiert + AdBlock Zablokował Blocked by rule <i>%1</i> - Blockiert von Regel <i>%1</i> + Zablokowano regułą <i>%1</i> Content Access Denied - Zugriff auf Inhalt verweigert + Dostęp zablokowany Error code %1 - Fehler Code %1 + Kod błędu %1 Failed loading page - Seite konnte nicht geladen werden + Błąd ładowania strony QupZilla can't load page from %1. - QupZilla kann Seite von %1 nicht laden. + QupZilla nie może załadować strony z serwera %1. Check the address for typing errors such as <b>ww.</b>example.com instead of <b>www.</b>example.com - Bitte überprüfen Sie die Adresse auf Tippfehler wie <b>ww.</b>example.com anstatt <b>www.</b>example.com + Sprawdź czy adres został wpisnay poprawnie, gdzie zamiast np. <b>ww.</b>serwer.pl powinno być <b>www.</b>serwer.pl If you are unable to load any pages, check your computer's network connection. - Falls Sie keine Webseiten laden können, überprüfen Sie bitte Ihre Netzwerkverbindung. + Jeśli nie możesz otworzyć żadnej strony, sprawdź swoje połączenie z internetem. If your computer or network is protected by a firewall or proxy, make sure that QupZilla is permitted to access the Web. - Falls Ihr Computer über eine Firewall oder Proxy mit dem Internet verbunden ist, vergewissern Sie sich, dass QupZilla der Zugriff zum Internet gestattet ist. + Jeśli twój komputer lub sieć jest zabezpieczona za pomocą firewalla lub proxy, upewnij się że QupZilla ma zezwolenie na dostęp do sieci. Try Again - Erneut versuchen + Spróbuj ponownie Choose file... - Datei wählen... + Wybierz plik... @@ -4376,12 +4483,12 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Manage Search Engines - Suchmaschinen verwalten + Add %1 ... - Hinzufügen von %1 ... + @@ -4389,139 +4496,143 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Loading... - Ładowanie... + Ładowanie... Open link in new &tab - Otwórz łącze w nowej &Zakładce + Otwórz link w &nowej karcie Open link in new &window - Otrórz łącze w nowym &Oknie + Otwórz link w nowym &oknie B&ookmark link - Łącze &Zakładki + Dodaj link do &zakładek &Save link as... - &Zapisz łącze jako... + &Zapisz link jako... &Copy link address - &Kopiuj adres łącza + &Kopiuj adres linku Show i&mage - G&rafik anzeigen + Pokaż &obrazek Copy im&age - Grafik k&opieren + &Kopiuj obraz Copy image ad&dress - Grafika&dresse kopieren + kopiuj adres& obrazka S&top - S&topp + &Zatrzymaj Show info ab&out site - S&eiteninformationen anzeigen + Pokaż &informacje o stronie Show Web &Inspector - Web &Inspector anzeigen + Pokaż Web Inspe&ktora + + + Search "%1 .." on &Google + Szukaj "%1 .." w &Google &Save image as... - Grafik speichern &unter... + &Zapisz obrazek jako... Failed loading page - Seite konnte nicht geladen werden + Błąd ładowania strony &Back - &Zurück + &Cofnij &Forward - &Vor + &Dalej &Reload - &Neu laden + &Odśwież Book&mark page - &Lesezeichen für diese Seite hinzufügen + Dodaj&stronę do zakładek &Save page as... - Seite speichern &unter... + &Zapisz stronę jako... Select &all - Alles au&swählen + Zaznacz &wszystko Show so&urce code - Seitenquelltext &anzeigen + Pokaż kod żródłowy Search "%1 .." with %2 - Suche "%1 .." mit %2 + - + No Named Page - Unbekannte Seite + Strona bez nazwy - + New tab - Neuer Tab + Nowa karta Send link... - Link senden... + Wyślij link... Send image... - Grafik senden... + Wyślij obrazek... Send page... - Seite senden... + Wyślij stronę... @@ -4529,7 +4640,7 @@ Nachdem Speicherpfade hinzugefügt oder gelöscht wurden, muss QupZilla neu gest Prevent this page from creating additional dialogs - Das Ausführen von Skripten auf dieser Seite unterbinden + Zablokowano możliwość tej strony tworzenia dodatkowych okien dialogowych