From 4f3a7b5992b5aed67cced46d5d8c8c2f052dfb66 Mon Sep 17 00:00:00 2001 From: Peter Yard Date: Tue, 27 Apr 2010 10:35:48 +1000 Subject: Docs Changes to start page. Minor change to Elements doc. See also added to some elements docs. --- doc/src/declarative/declarativeui.qdoc | 17 +++++++++++++---- doc/src/declarative/elements.qdoc | 2 +- examples/declarative/animations/easing.qml | 4 ++-- src/declarative/qml/qdeclarativecomponent.cpp | 2 ++ src/declarative/util/qdeclarativeanimation.cpp | 2 ++ src/declarative/util/qdeclarativebehavior.cpp | 2 ++ src/declarative/util/qdeclarativebind.cpp | 2 ++ src/declarative/util/qdeclarativeconnections.cpp | 2 ++ src/declarative/util/qdeclarativelistmodel.cpp | 2 +- src/declarative/util/qdeclarativepackage.cpp | 1 + src/declarative/util/qdeclarativepropertychanges.cpp | 2 +- src/declarative/util/qdeclarativestate.cpp | 2 +- src/declarative/util/qdeclarativestategroup.cpp | 2 +- src/declarative/util/qdeclarativetimer.cpp | 2 ++ src/declarative/util/qdeclarativetransition.cpp | 2 +- src/declarative/util/qdeclarativexmllistmodel.cpp | 4 ++++ 16 files changed, 38 insertions(+), 12 deletions(-) diff --git a/doc/src/declarative/declarativeui.qdoc b/doc/src/declarative/declarativeui.qdoc index a2a5283..2d646b9 100644 --- a/doc/src/declarative/declarativeui.qdoc +++ b/doc/src/declarative/declarativeui.qdoc @@ -40,19 +40,28 @@ ****************************************************************************/ /*! -\title Declarative UI (QML) +\title Declarative UI Using QML \page declarativeui.html \brief The Qt Declarative module provides a declarative framework for building highly dynamic, custom user interfaces. +\section1 \l{QML Elements}{Fast QML Elements Reference Page} + +\raw HTML +
+\endraw + +\section1 Preamble + Qt Declarative UI provides a declarative framework for building highly dynamic, custom user interfaces. Declarative UI helps programmers and designers collaborate to build the animation rich, fluid user interfaces that are becoming common in portable consumer devices, such as mobile phones, media players, set-top boxes and netbooks. -The Qt Declarative module provides an engine for interpreting the declarative QML -language, and a rich set of \l {QML Elements}{QML elements} that can be used -from QML. + +The Qt Declarative module provides an engine for interpreting the declarative +QML language, and a rich set of \bold { \l {QML Elements}{QML elements} } +that can be used from QML. QML is an extension to \l {http://www.ecma-international.org/publications/standards/Ecma-262.htm} {JavaScript}, that provides a mechanism to declaratively build an object tree diff --git a/doc/src/declarative/elements.qdoc b/doc/src/declarative/elements.qdoc index ce3a6e3..8318392 100644 --- a/doc/src/declarative/elements.qdoc +++ b/doc/src/declarative/elements.qdoc @@ -44,7 +44,7 @@ \target elements \title QML Elements -The following table lists the QML elements provided by the Qt Declarative module. +The following table lists the QML elements provided by the \l {QtDeclarative}{Qt Declarative} module. \bold {Standard Qt Declarative Elements} diff --git a/examples/declarative/animations/easing.qml b/examples/declarative/animations/easing.qml index bed4b5f9..b0f9669 100644 --- a/examples/declarative/animations/easing.qml +++ b/examples/declarative/animations/easing.qml @@ -79,10 +79,10 @@ Rectangle { } transitions: Transition { - ParallelAnimation { + // ParallelAnimation { NumberAnimation { properties: "x"; easing.type: type; duration: 1000 } ColorAnimation { properties: "color"; easing.type: type; duration: 1000 } - } + // } } } } diff --git a/src/declarative/qml/qdeclarativecomponent.cpp b/src/declarative/qml/qdeclarativecomponent.cpp index 3e4651c..f41d867 100644 --- a/src/declarative/qml/qdeclarativecomponent.cpp +++ b/src/declarative/qml/qdeclarativecomponent.cpp @@ -140,6 +140,8 @@ Item { } } \endqml + + \sa QtDeclarative */ /*! diff --git a/src/declarative/util/qdeclarativeanimation.cpp b/src/declarative/util/qdeclarativeanimation.cpp index 7e20428..f38f66c 100644 --- a/src/declarative/util/qdeclarativeanimation.cpp +++ b/src/declarative/util/qdeclarativeanimation.cpp @@ -834,6 +834,8 @@ QAbstractAnimation *QDeclarativeScriptAction::qtAnimation() The PropertyAction is immediate - the target property is not animated to the selected value in any way. + + \sa QtDeclarative */ /*! \internal diff --git a/src/declarative/util/qdeclarativebehavior.cpp b/src/declarative/util/qdeclarativebehavior.cpp index a6c578e..1089d31 100644 --- a/src/declarative/util/qdeclarativebehavior.cpp +++ b/src/declarative/util/qdeclarativebehavior.cpp @@ -90,6 +90,8 @@ public: Currently only a single Behavior may be specified for a property; this Behavior can be enabled and disabled via the \l{enabled} property. + + \sa QtDeclarative */ diff --git a/src/declarative/util/qdeclarativebind.cpp b/src/declarative/util/qdeclarativebind.cpp index b7bd4e8..5516628 100644 --- a/src/declarative/util/qdeclarativebind.cpp +++ b/src/declarative/util/qdeclarativebind.cpp @@ -92,6 +92,8 @@ public: If the binding target or binding property is changed, the bound value is immediately pushed onto the new target. + + \sa QtDeclarative */ /*! \internal diff --git a/src/declarative/util/qdeclarativeconnections.cpp b/src/declarative/util/qdeclarativeconnections.cpp index 596b306..c392c74 100644 --- a/src/declarative/util/qdeclarativeconnections.cpp +++ b/src/declarative/util/qdeclarativeconnections.cpp @@ -116,6 +116,8 @@ public: onClicked: foo(...) } \endqml + + \sa QtDeclarative */ /*! diff --git a/src/declarative/util/qdeclarativelistmodel.cpp b/src/declarative/util/qdeclarativelistmodel.cpp index 2616ccf..0c2c2a4 100644 --- a/src/declarative/util/qdeclarativelistmodel.cpp +++ b/src/declarative/util/qdeclarativelistmodel.cpp @@ -244,7 +244,7 @@ QDeclarativeListModelParser::ListInstruction *QDeclarativeListModelParser::ListM In addition, the WorkerScript cannot add any list data to the model. - \sa {qmlmodels}{Data Models}, WorkerScript + \sa {qmlmodels}{Data Models}, WorkerScript, QtDeclarative */ diff --git a/src/declarative/util/qdeclarativepackage.cpp b/src/declarative/util/qdeclarativepackage.cpp index ac0788f..20e9907 100644 --- a/src/declarative/util/qdeclarativepackage.cpp +++ b/src/declarative/util/qdeclarativepackage.cpp @@ -70,6 +70,7 @@ QT_BEGIN_NAMESPACE \snippet examples/declarative/package/view.qml 0 + \sa QtDeclarative */ diff --git a/src/declarative/util/qdeclarativepropertychanges.cpp b/src/declarative/util/qdeclarativepropertychanges.cpp index 9c3ee9f..81b83c3 100644 --- a/src/declarative/util/qdeclarativepropertychanges.cpp +++ b/src/declarative/util/qdeclarativepropertychanges.cpp @@ -128,7 +128,7 @@ QT_BEGIN_NAMESPACE Changes to an Item's parent or anchors should be done using the associated change elements (ParentChange and AnchorChanges, respectively) rather than PropertyChanges. - \sa {qmlstate}{States} + \sa {qmlstate}{States}, QtDeclarative */ /*! diff --git a/src/declarative/util/qdeclarativestate.cpp b/src/declarative/util/qdeclarativestate.cpp index 78813fa..d27fc51 100644 --- a/src/declarative/util/qdeclarativestate.cpp +++ b/src/declarative/util/qdeclarativestate.cpp @@ -141,7 +141,7 @@ QDeclarativeStateOperation::QDeclarativeStateOperation(QObjectPrivate &dd, QObje \note setting the state of an object from within another state of the same object is not allowed. - \sa {qmlstates}{States}, {state-transitions}{Transitions} + \sa {qmlstates}{States}, {state-transitions}{Transitions}, QtDeclarative */ /*! diff --git a/src/declarative/util/qdeclarativestategroup.cpp b/src/declarative/util/qdeclarativestategroup.cpp index ff78c60..79bc677 100644 --- a/src/declarative/util/qdeclarativestategroup.cpp +++ b/src/declarative/util/qdeclarativestategroup.cpp @@ -109,7 +109,7 @@ public: } \endqml - \sa {qmlstate}{States} {state-transitions}{Transitions} + \sa {qmlstate}{States} {state-transitions}{Transitions}, {QtDeclarative} */ QDeclarativeStateGroup::QDeclarativeStateGroup(QObject *parent) diff --git a/src/declarative/util/qdeclarativetimer.cpp b/src/declarative/util/qdeclarativetimer.cpp index 76e6d5e..53a9d83 100644 --- a/src/declarative/util/qdeclarativetimer.cpp +++ b/src/declarative/util/qdeclarativetimer.cpp @@ -98,6 +98,8 @@ public: 1000ms has its \e repeat property changed 500ms after starting, the elapsed time will be reset to 0, and the Timer will be triggered 1000ms later. + + \sa {QtDeclarative} */ QDeclarativeTimer::QDeclarativeTimer(QObject *parent) diff --git a/src/declarative/util/qdeclarativetransition.cpp b/src/declarative/util/qdeclarativetransition.cpp index 815dc4c..f284156 100644 --- a/src/declarative/util/qdeclarativetransition.cpp +++ b/src/declarative/util/qdeclarativetransition.cpp @@ -56,7 +56,7 @@ QT_BEGIN_NAMESPACE \since 4.7 \brief The Transition element defines animated transitions that occur on state changes. - \sa {qmlstates}{States}, {state-transitions}{Transitions} + \sa {qmlstates}{States}, {state-transitions}{Transitions}, {QtDeclarative} */ /*! diff --git a/src/declarative/util/qdeclarativexmllistmodel.cpp b/src/declarative/util/qdeclarativexmllistmodel.cpp index 7f8b962..c9f7fee 100644 --- a/src/declarative/util/qdeclarativexmllistmodel.cpp +++ b/src/declarative/util/qdeclarativexmllistmodel.cpp @@ -74,6 +74,8 @@ typedef QPair QDeclarativeXmlListRange; \qmlclass XmlRole QDeclarativeXmlListModelRole \since 4.7 \brief The XmlRole element allows you to specify a role for an XmlListModel. + + \sa {QtDeclarative} */ /*! @@ -502,6 +504,8 @@ void QDeclarativeXmlListModelPrivate::clear_role(QDeclarativeListProperty Date: Mon, 26 Apr 2010 12:45:48 +0200 Subject: Mac: improve mac native events autotest API Make it possible to add a delay between two events --- tests/auto/macnativeevents/nativeeventlist.cpp | 5 ----- tests/auto/macnativeevents/nativeeventlist.h | 1 - 2 files changed, 6 deletions(-) diff --git a/tests/auto/macnativeevents/nativeeventlist.cpp b/tests/auto/macnativeevents/nativeeventlist.cpp index d5d7b95..1a90ee0 100644 --- a/tests/auto/macnativeevents/nativeeventlist.cpp +++ b/tests/auto/macnativeevents/nativeeventlist.cpp @@ -88,11 +88,6 @@ void NativeEventList::append(int waitMs, QNativeEvent *event) eventList.append(QPair(waitMs, event)); } -void NativeEventList::append(int waitMs) -{ - eventList.append(QPair(waitMs, 0)); -} - void NativeEventList::play(Playback playback) { waitNextEvent(); diff --git a/tests/auto/macnativeevents/nativeeventlist.h b/tests/auto/macnativeevents/nativeeventlist.h index 688665d..efcca43 100644 --- a/tests/auto/macnativeevents/nativeeventlist.h +++ b/tests/auto/macnativeevents/nativeeventlist.h @@ -57,7 +57,6 @@ class NativeEventList : public QObject void append(QNativeEvent *event); void append(int waitMs, QNativeEvent *event = 0); - void append(int waitMs); void play(Playback playback = WaitUntilFinished); void stop(); -- cgit v0.12 From 09c6d182a70f25626e12a739a9b7c3db937f47ce Mon Sep 17 00:00:00 2001 From: Richard Moe Gustavsen Date: Tue, 27 Apr 2010 09:01:36 +0200 Subject: Cocoa: Native QFileDialog has problems selecting name filter The problem occured if you told the dialog to not show name filter details, then tried to select a filter specifying those details. The patch makes sure that we accept a filter as found in the drop down list if it matches the specified filter with or without details Task-number: QTBUG-8439 Reviewed-by: msorvig --- src/gui/dialogs/qfiledialog_mac.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/dialogs/qfiledialog_mac.mm b/src/gui/dialogs/qfiledialog_mac.mm index 14a5f15..28acf24 100644 --- a/src/gui/dialogs/qfiledialog_mac.mm +++ b/src/gui/dialogs/qfiledialog_mac.mm @@ -493,7 +493,7 @@ QT_USE_NAMESPACE for (int i=0; isize(); ++i) { QString filter = hideDetails ? [self removeExtensions:filters->at(i)] : filters->at(i); [mPopUpButton addItemWithTitle:QT_PREPEND_NAMESPACE(qt_mac_QStringToNSString)(filter)]; - if (filters->at(i) == selectedFilter) + if (filters->at(i).startsWith(selectedFilter)) [mPopUpButton selectItemAtIndex:i]; } } -- cgit v0.12 From 530092bc0b1710504a7e98950eab8d545af42b50 Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Mon, 26 Apr 2010 13:30:17 +0200 Subject: Update Polish translation --- translations/qt_pl.ts | 2496 +++++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 2112 insertions(+), 384 deletions(-) diff --git a/translations/qt_pl.ts b/translations/qt_pl.ts index db7d2c5..dd8a160 100644 --- a/translations/qt_pl.ts +++ b/translations/qt_pl.ts @@ -2,6 +2,27 @@ + CloseButton + + + Close Tab + Zamknij kartę + + + + FakeReply + + + Fake error ! + Fałszywy błąd! + + + + Invalid URL + Niepoprawny URL + + + MAC_APPLICATION_MENU @@ -40,27 +61,6 @@ - CloseButton - - - Close Tab - Zamknij kartę - - - - FakeReply - - - Fake error ! - - - - - Invalid URL - Niepoprawny URL - - - Phonon:: @@ -96,25 +96,32 @@ Phonon::AudioOutput - + + <html>The audio playback device <b>%1</b> does not work.<br/>Falling back to <b>%2</b>.</html> <html>Urządzenie dźwiękowe <b>%1</b> nie działa.<br/>Przywracanie do <b>%2</b>.</html> - + <html>Switching to the audio playback device <b>%1</b><br/>which just became available and has higher preference.</html> <html>Przełączanie na urządzenie dźwiękowe <b>%1</b><br/>które właśnie stało się dostępne i ma wyższy priorytet.</html> + Revert back to device '%1' Przywróć do urządzenia '%1' + + + <html>Switching to the audio playback device <b>%1</b><br/>which has higher preference or is specifically configured for this stream.</html> + + Phonon::Gstreamer::Backend - + Warning: You do not seem to have the package gstreamer0.10-plugins-good installed. Some video features have been disabled. Ostrzeżenie: Wygląda na to, że pakiet gstreamer0.10-plugins-good nie jest zainstalowany w tym systemie. @@ -131,7 +138,7 @@ Obsługa dźwięku i wideo została wyłączona Phonon::Gstreamer::MediaObject - + Cannot start playback. Check your GStreamer installation and make sure you @@ -142,29 +149,39 @@ Sprawdź instalację Gstreamer i upewnij się że zainstalowałeś libgstreamer-plugins-base. - + + Missing codec helper script assistant. + + + + + Plugin codec installation failed for codec: %0 + + + + A required codec is missing. You need to install the following codec(s) to play this content: %0 Brak wymaganego kodeka. Aby odtworzyć zawartość musisz zainstalować poniższy kodek: %0 - - - - + - - + + + + + Could not open media source. Nie można otworzyć źródła mediów. - + Invalid source type. Niepoprawny typ źródła. - + Could not locate media source. Nie można znaleźć źródła mediów. @@ -182,7 +199,7 @@ zainstalowałeś libgstreamer-plugins-base. Phonon::MMF - + Audio Output Wyjście dźwięku @@ -191,60 +208,341 @@ zainstalowałeś libgstreamer-plugins-base. The audio output device Wyjściowe urządzenie dźwiękowe - - - Phonon::MMF::AudioEqualizer - - Frequency band, %1 Hz - Częstotliwość środkowa, %1 Hz + + No error + Brak błędu - - - Phonon::MMF::EffectFactory - - Audio Equalizer - Korektor graficzny + + Not found + Nie znaleziono - Bass Boost - Wzmocnienie basów + Out of memory + Brak pamięci - Distance Attenuation - + Not supported + Nieobsługiwane + + + + Overflow + Przepełnienie + Underflow + Niedopełnienie + + - Environmental Reverb - Pogłos środowiskowy + Already exists + Już istnieje - Loudness - Głośność + Path not found + Nie znaleziono ścieżki - Source Orientation - + In use + W użyciu - Stereo Widening - + Not ready + Brak gotowości + + + + Access denied + Odmowa dostępu + + + + Could not connect + Nie można połączyć + + + + Disconnected + Rozłączono + + + + Permission denied + Brak uprawnień + + + + Insufficient bandwidth + Niewystarczająca szerokość pasma + + + + Network unavailable + Sieć niedostępna + + + + Network communication error + Błąd komunikacji sieciowej + + + + Streaming not supported + Transmisje strumieniowe nie są obsługiwane + + + + Server alert + Ostrzeżenie serwera + + + + Invalid protocol + Nieprawidłowy protokół + + + + Invalid URL + Nieprawidłowy adres URL + + + + Multicast error + Błąd multiemisji + + + + Proxy server error + Błąd serwera pośredniczącego + + + + Proxy server not supported + Nieobsługiwany serwer pośredniczący + + + + Audio output error + Błąd wyjściowego sygnału dźwiękowego + + + + Video output error + Błąd wyjściowego sygnału wideo + + + + Decoder error + Błąd dekodera + + + + Audio or video components could not be played + Nie można odtworzyć dźwięku lub wideo + + + + DRM error + Błąd DRM + + + + Unknown error (%1) + Nieznany błąd (%1) + + + + Phonon::MMF::AbstractMediaPlayer + + + Not ready to play + Brak gotowości odtwarzania + + + + + Error opening file + Błąd otwierania pliku + + + + Error opening URL + Błąd otwierania adresu URL + + + + Setting volume failed + Ustawienie głośności zakończone błędem + + + + Loading clip failed + Załadowanie klipu zakończone błędem + + + + Playback complete + Zakończono odtwarzanie + + + + Phonon::MMF::AbstractVideoPlayer + + + Pause failed + Zatrzymanie zakończone błędem + + + + Seek failed + Wyszukiwanie zakończone błędem + + + + Getting position failed + Ustalanie pozycji zakończone błędem + + + + Opening clip failed + Otwieranie klipu zakończone błędem + + + + Phonon::MMF::AudioEqualizer + + + %1 Hz + %1 Hz + + + + Phonon::MMF::AudioPlayer + + + Getting position failed + Ustalanie pozycji zakończone błędem + + + + Phonon::MMF::DsaVideoPlayer + + + + + + + Video display error + Błąd wyświetlacza wideo + + + + Phonon::MMF::EffectFactory + + + Enabled + Włączono + + + + Phonon::MMF::EnvironmentalReverb + + + Decay HF ratio (%) + DecayHFRatio: Ratio of high-frequency decay time to the value specified by DecayTime. + Współczynnik zanikania HF (%) + + + + Decay time (ms) + DecayTime: Time over which reverberation is diminished. + Czas zanikania (ms) + + + + Density (%) + Density Delay between first and subsequent reflections. Note that the S60 platform documentation does not make clear the distinction between this value and the Diffusion value. + Gęstość (%) + + + + Diffusion (%) + Diffusion: Delay between first and subsequent reflections. Note that the S60 platform documentation does not make clear the distinction between this value and the Density value. + Rozpraszanie (%) + + + + Reflections delay (ms) + ReflectionsDelay: Amount of delay between the arrival the direct path from the source and the arrival of the first reflection. + Opóźnienie odbić (ms) + + + + Reflections level (mB) + ReflectionsLevel: Amplitude of reflections. This value is corrected by the RoomLevel to give the final reflection amplitude. + Poziom odbić (mB) + + + + Reverb delay (ms) + ReverbDelay: Amount of time between arrival of the first reflection and start of the late reverberation. + Opóźnienie pogłosu (ms) + + + + Reverb level (mB) + ReverbLevel Amplitude of reverberations. This value is corrected by the RoomLevel to give the final reverberation amplitude. + Poziom pogłosu (mB) + + + + Room HF level + RoomHFLevel: Amplitude of low-pass filter used to attenuate the high frequency component of reflected sound. + Poziom HF pomieszczenia + + + + Room level (mB) + RoomLevel: Master volume control for all reflected sound. + Poziom pomieszczenia (mB) Phonon::MMF::MediaObject - - Media type could not be determined - Nie można określić typu mediów + + Error opening source: type not supported + Błąd otwierania źródła: typ źródła nie jest obsługiwany + + + + Error opening source: media type could not be determined + Błąd otwierania źródła: nie można określić typu multimediów + + + + Phonon::MMF::StereoWidening + + + Level (%) + Poziom (%) + + + + Phonon::MMF::SurfaceVideoPlayer + + + + Video display error + Błąd wyświetlacza wideo @@ -314,7 +612,7 @@ zainstalowałeś libgstreamer-plugins-base. Q3FileDialog - + %1 File not found. Check path and filename. @@ -585,7 +883,7 @@ Sprawdź ścieżkę i nazwę pliku. Symlink to Special - Specjalny dowiązanie symboliczne + Dowiązanie symboliczne do pliku specjalnego @@ -951,8 +1249,8 @@ na QAbstractSocket - - + + Connection refused Połączenie odrzucone @@ -971,19 +1269,20 @@ na Przekroczony czas połączenia - - - + + + Operation on socket is not supported - Operacja na gnieździe nieobsługiwana + Operacja na gnieździe nie jest obsługiwana - + Socket is not connected Gniazdo nie jest podłączone - + + Socket operation timed out Przekroczony czas operacji gniazda @@ -996,7 +1295,7 @@ na QAbstractSpinBox - + Step &down Krok w &dół @@ -1042,7 +1341,7 @@ na Niekompatybilność biblioteki Qt - + QT_LAYOUT_DIRECTION Translate this string to the string 'LTR' in left-to-right languages or to 'RTL' in right-to-left languages (such as Hebrew and Arabic) to get proper widget layout. LTR @@ -1092,12 +1391,12 @@ na QColorDialog - + &Add to Custom Colors &Dodaj do własnych kolorów - + A&lpha channel: Kanał &alfa: @@ -1107,22 +1406,22 @@ na Wybierz kolor - + &Basic colors &Kolory podstawowe - + Bl&ue: Błęki&t: - + &Custom colors Wła&sne kolory - + &Green: &Zieleń: @@ -1150,7 +1449,7 @@ na QComboBox - + Open Otwórz @@ -1186,114 +1485,1177 @@ na %1: nie istnieje - - %1: out of resources - QSystemSemaphore - %1: zasoby wyczerpane + + %1: out of resources + QSystemSemaphore + %1: zasoby wyczerpane + + + + %1: unknown error %2 + QSystemSemaphore + %1: nieznany błąd %2 + + + + %1: key is empty + QSystemSemaphore + %1: klucz jest pusty + + + + %1: unable to make key + QSystemSemaphore + %1: nie można utworzyć klucza + + + + %1: ftok failed + QSystemSemaphore + %1: wystąpił błąd w funkcji ftok() + + + + QDB2Driver + + + Unable to connect + Nie można nawiązać połączenia + + + + Unable to commit transaction + Nie można dokonać transakcji + + + + Unable to rollback transaction + Nie można wycofać transakcji + + + + Unable to set autocommit + Nie można ustawić trybu automatycznego dokonywania transakcji + + + + QDB2Result + + + + Unable to execute statement + Nie można wykonać polecenia + + + + Unable to prepare statement + Nie można przygotować polecenia + + + + Unable to bind variable + Nie można powiązać zmiennej + + + + Unable to fetch record %1 + Nie można pobrać rekordu %1 + + + + Unable to fetch next + Nie można pobrać kolejnego wiersza danych + + + + Unable to fetch first + Nie można pobrać pierwszego wiersza danych + + + + QDateTimeEdit + + + am + am + + + + AM + AM + + + + pm + pm + + + + PM + PM + + + + QDeclarativeAbstractAnimation + + + Cannot animate non-existent property "%1" + + + + + Cannot animate read-only property "%1" + + + + + Animation is an abstract class + + + + + QDeclarativeAnchorAnimation + + + Cannot set a duration of < 0 + + + + + QDeclarativeAnchors + + + Possible anchor loop detected on fill. + + + + + Possible anchor loop detected on centerIn. + + + + + + + + Cannot anchor to an item that isn't a parent or sibling. + + + + + Possible anchor loop detected on vertical anchor. + + + + + Possible anchor loop detected on horizontal anchor. + + + + + Cannot specify left, right, and hcenter anchors. + + + + + + Cannot anchor to a null item. + + + + + Cannot anchor a horizontal edge to a vertical edge. + + + + + + Cannot anchor item to self. + + + + + Cannot specify top, bottom, and vcenter anchors. + + + + + Baseline anchor cannot be used in conjunction with top, bottom, or vcenter anchors. + + + + + Cannot anchor a vertical edge to a horizontal edge. + + + + + QDeclarativeAnimatedImage + + + Qt was built without support for QMovie + + + + + QDeclarativeBehavior + + + Cannot change the animation assigned to a Behavior. + + + + + QDeclarativeBinding + + + Binding loop detected for property "%1" + + + + + QDeclarativeCompiledBindings + + + Binding loop detected for property "%1" + + + + + QDeclarativeCompiler + + + + + + + + Invalid property assignment: "%1" is a read-only property + + + + + Invalid property assignment: unknown enumeration + + + + + Invalid property assignment: string expected + + + + + Invalid property assignment: url expected + + + + + Invalid property assignment: unsigned int expected + + + + + Invalid property assignment: int expected + + + + + Invalid property assignment: float expected + + + + + Invalid property assignment: double expected + + + + + Invalid property assignment: color expected + + + + + Invalid property assignment: date expected + + + + + Invalid property assignment: time expected + + + + + Invalid property assignment: datetime expected + + + + + Invalid property assignment: point expected + + + + + Invalid property assignment: size expected + + + + + Invalid property assignment: rect expected + + + + + Invalid property assignment: boolean expected + + + + + Invalid property assignment: 3D vector expected + + + + + Invalid property assignment: unsupported type "%1" + + + + + Element is not creatable. + + + + + Component elements may not contain properties other than id + + + + + Invalid component id specification + + + + + + id is not unique + + + + + Invalid component body specification + + + + + Component objects cannot declare new properties. + + + + + Component objects cannot declare new signals. + + + + + Component objects cannot declare new functions. + + + + + Cannot create empty component specification + + + + + Incorrectly specified signal assignment + + + + + Empty signal assignment + + + + + Empty property assignment + + + + + Attached properties cannot be used here + + + + + + Non-existent attached object + + + + + + Invalid attached object assignment + + + + + Cannot assign to non-existent default property + + + + + + Cannot assign to non-existent property "%1" + + + + + Invalid use of namespace + + + + + Not an attached property name + + + + + Invalid use of id property + + + + + + Property has already been assigned a value + + + + + + Invalid grouped property access + + + + + Cannot assign a value directly to a grouped property + + + + + Invalid property use + + + + + Property assignment expected + + + + + Single property assignment expected + + + + + Unexpected object assignment + + + + + Cannot assign object to list + + + + + Can only assign one binding to lists + + + + + Cannot assign primitives to lists + + + + + Cannot assign multiple values to a script property + + + + + Invalid property assignment: script expected + + + + + Cannot assign object to property + + + + + "%1" cannot operate on "%2" + + + + + Duplicate default property + + + + + Duplicate property name + + + + + Property names cannot begin with an upper case letter + + + + + Duplicate signal name + + + + + Signal names cannot begin with an upper case letter + + + + + Duplicate method name + + + + + Method names cannot begin with an upper case letter + + + + + Property value set multiple times + + + + + Invalid property nesting + + + + + Cannot override FINAL property + + + + + Invalid property type + + + + + Invalid empty ID + + + + + IDs cannot start with an uppercase letter + + + + + IDs must start with a letter or underscore + + + + + IDs must contain only letters, numbers, and underscores + + + + + ID illegally masks global JavaScript property + + + + + + No property alias location + + + + + + Invalid alias location + + + + + Invalid alias reference. An alias reference must be specified as <id> or <id>.<property> + + + + + Invalid alias reference. Unable to find id "%1" + + + + + QDeclarativeComponent + + + Invalid empty URL + + + + + QDeclarativeCompositeTypeManager + + + + Resource %1 unavailable + + + + + Namespace %1 cannot be used as a type + + + + + %1 is not a type + + + + + Type %1 unavailable + + + + + QDeclarativeConnections + + + + + Cannot assign to non-existent property "%1" + + + + + Connections: nested objects not allowed + + + + + Connections: syntax error + + + + + Connections: script expected + + + + + QDeclarativeEngine + + + module "%1" definition "%2" not readable + + + + + plugin cannot be loaded for module "%1": %2 + + + + + module "%1" plugin "%2" not found + + + + + + module "%1" version %2.%3 is not installed + + + + + module "%1" is not installed + + + + + + "%1": no such directory + + + + + import "%1" has no qmldir and no namespace + + + + + executeSql called outside transaction() + + + + + Read-only Transaction + + + + + Version mismatch: expected %1, found %2 + + + + + SQL transaction failed + + + + + transaction: missing callback + + + + + + SQL: database version mismatch + + + + + QDeclarativeFlipable + + + front is a write-once property + + + + + back is a write-once property + + + + + QDeclarativeKeyNavigationAttached + + + KeyNavigation is only available via attached properties + + + + + QDeclarativeKeysAttached + + + Keys is only available via attached properties + + + + + QDeclarativeListModel + + + remove: index %1 out of range + + + + + insert: value is not an object + + + + + insert: index %1 out of range + + + + + move: out of range + + + + + append: value is not an object + + + + + get: index %1 out of range + + + + + set: value is not an object + + + + + + set: index %1 out of range + + + + + + ListElement: cannot contain nested elements + + + + + ListElement: cannot use reserved "id" property + + + + + ListElement: cannot use script for property value + + + + + ListModel: undefined property '%1' + + + + + QDeclarativeLoader + + + Loader does not support loading non-visual elements. + + + + + QDeclarativeParentAnimation + + + Unable to preserve appearance under complex transform + + + + + + Unable to preserve appearance under non-uniform scale + + + + + Unable to preserve appearance under scale of 0 + + + + + QDeclarativeParentChange + + + Unable to preserve appearance under complex transform + + + + + + Unable to preserve appearance under non-uniform scale + + + + + Unable to preserve appearance under scale of 0 + + + + + QDeclarativeParser + + + + + Illegal unicode escape sequence + + + + + Illegal character + + + + + Unclosed string at end of line + + + + + Illegal escape squence + + + + + Unclosed comment at end of file + + + + + Illegal syntax for exponential number + + + + + Identifier cannot start with numeric literal + + + + + Unterminated regular expression literal + + + + + Invalid regular expression flag '%0' + + + + + + Unterminated regular expression backslash sequence + + + + + Unterminated regular expression class + + + + + + Syntax error + Błąd składni + + + + Unexpected token `%1' + + + + + + Expected token `%1' + + + + + + + Property value set multiple times + + + + + Expected type name + + + + + Invalid import qualifier ID + + + + + Script import qualifiers must be unique. + + + + + Script import requires a qualifier + + + + + Library import requires a version + + + + + Expected parameter type + + + + + Invalid property type modifier + + + + + Unexpected property type modifier + + + + + Expected property type + + + + + Readonly not yet supported + + + + + JavaScript declaration outside Script element + + + + + QDeclarativePauseAnimation + + + Cannot set a duration of < 0 + + + + + QDeclarativePixmapCache + + + Error decoding: %1: %2 + + + + + Failed to get image from provider: %1 + + + + + + Cannot open: %1 + + + + + Unknown Error loading %1 + + + + QDeclarativePropertyAnimation - - %1: unknown error %2 - QSystemSemaphore - %1: nieznany błąd %2 + + Cannot set a duration of < 0 + + + + QDeclarativePropertyChanges - - %1: key is empty - QSystemSemaphore - %1: klucz jest pusty + + PropertyChanges does not support creating state-specific objects. + - - %1: unable to make key - QSystemSemaphore - %1: nie można utworzyć klucza + + Cannot assign to non-existent property "%1" + - - %1: ftok failed - QSystemSemaphore - %1: wystąpił błąd w funkcji ftok() + + Cannot assign to read-only property "%1" + - QDB2Driver + QDeclarativeTextInput - - Unable to connect - Nie można nawiązać połączenia + + + Could not load cursor delegate + - - Unable to commit transaction - Nie można dokonać transakcji + + Could not instantiate cursor delegate + + + + QDeclarativeVME - - Unable to rollback transaction - Nie można wycofać transakcji + + Unable to create object of type %1 + - - Unable to set autocommit - Nie można ustawić trybu automatycznego dokonywania transakcji + + Cannot assign value %1 to property %2 + - - - QDB2Result - - - Unable to execute statement - Nie można wykonać polecenia + + Cannot assign object type %1 with no default method + - - Unable to prepare statement - Nie można przygotować polecenia + + Cannot connect mismatched signal/slot %1 %vs. %2 + - - Unable to bind variable - Nie można powiązać zmiennej + + Cannot assign an object to signal property %1 + - - Unable to fetch record %1 - Nie można pobrać rekordu %1 + + Cannot assign object to list + - - Unable to fetch next - Nie można pobrać kolejnego wiersza danych + + Cannot assign object to interface property + - - Unable to fetch first - Nie można pobrać pierwszego wiersza danych + + Unable to create attached object + + + + + Cannot set properties on %1 as it is null + - QDateTimeEdit + QDeclarativeVisualDataModel - - am - am + + Delegate component must be Item type. + + + + QDeclarativeXmlListModel - - AM - AM + + + Qt was built without support for xmlpatterns + + + + QDeclarativeXmlListModelRole - - pm - pm + + An XmlRole query must not start with '/' + + + + QDeclarativeXmlRoleList - - PM - PM + + An XmlListModel query must start with '/' or "//" + @@ -1317,12 +2679,12 @@ na QDialog - + What's This? Co to jest? - + Done Wykonano @@ -1330,7 +2692,7 @@ na QDialogButtonBox - + Abort Przerwij @@ -1400,7 +2762,7 @@ na Ni&e dla wszystkich - + OK @@ -1544,7 +2906,7 @@ na QFile - + Destination file exists Plik wyjściowy już istnieje @@ -1583,7 +2945,7 @@ na QFileDialog - + %1 already exists. Do you want to replace it? %1 już istnieje. @@ -1637,7 +2999,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Nie można skasować katalogu. - + &Delete &Skasuj @@ -1648,18 +3010,18 @@ Proszę o sprawdzenie podanej nazwy pliku. Szczegóły - + Directories Katalogi - - + + Directory: Katalog: - + Drive Urządzenie @@ -1712,8 +3074,8 @@ Proszę o sprawdzenie podanej nazwy pliku. - - + + &Open &Otwórz @@ -1724,18 +3086,18 @@ Proszę o sprawdzenie podanej nazwy pliku. Katalog wyżej - + &Rename &Zmień nazwę - - + + &Save &Zachowaj - + Show &hidden files Pokaż &ukryte pliki @@ -1760,7 +3122,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Znajdź katalog - + All Files (*.*) Wszystkie pliki (*.*) @@ -1776,18 +3138,18 @@ Proszę o sprawdzenie podanej nazwy pliku. Do przodu - + New Folder Nowy katalog - + &New Folder &Nowy katalog - - + + &Choose &Wybierz @@ -1797,14 +3159,14 @@ Proszę o sprawdzenie podanej nazwy pliku. Usuń - - + + All Files (*) Wszystkie pliki (*) - - + + File &name: Nazwa &pliku: @@ -1820,12 +3182,42 @@ Proszę o sprawdzenie podanej nazwy pliku. Create New Folder Utwórz nowy katalog + + + Go back + + + + + Go forward + + + + + Go to the parent directory + + + + + Create a New Folder + + + + + Change to list view mode + + + + + Change to detail view mode + + QFileSystemModel - - + + %1 TB %1 TB @@ -1853,7 +3245,7 @@ Proszę o sprawdzenie podanej nazwy pliku. %1 bajtów - + Invalid filename Niepoprawna nazwa pliku @@ -1890,7 +3282,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Data modyfikacji - + My Computer Mój komputer @@ -2132,7 +3524,7 @@ Proszę o sprawdzenie podanej nazwy pliku. QFontDialog - + Effects Efekty @@ -2152,13 +3544,12 @@ Proszę o sprawdzenie podanej nazwy pliku. Przykład - - + Select Font Wybierz czcionkę - + &Size &Rozmiar @@ -2181,7 +3572,7 @@ Proszę o sprawdzenie podanej nazwy pliku. QFtp - + Changing directory failed: %1 @@ -2194,14 +3585,14 @@ Proszę o sprawdzenie podanej nazwy pliku. Podłączony do hosta - + Connected to host %1 Podłączony do hosta %1 - + Connecting to host failed: %1 @@ -2216,7 +3607,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Połączenie zamknięte - + Connection refused for data connection Połączenie do przesyłu danych odrzucone @@ -2233,7 +3624,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Połączenie do %1 zakończone - + Creating directory failed: %1 @@ -2254,7 +3645,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Host %1 znaleziony - + Host %1 not found Host %1 nie znaleziony @@ -2265,7 +3656,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Host znaleziony - + Listing directory failed: %1 @@ -2277,11 +3668,11 @@ Proszę o sprawdzenie podanej nazwy pliku. Login failed: %1 - Logowanie nie powiodło się: + Logowanie zakończone błędem: %1 - + Not connected Nie podłączony @@ -2292,7 +3683,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Przekroczony czas połączenia do hosta %1 - + Removing directory failed: %1 @@ -2308,7 +3699,7 @@ Proszę o sprawdzenie podanej nazwy pliku. %1 - + @@ -2316,7 +3707,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Nieznany błąd - + Uploading file failed: %1 @@ -2325,19 +3716,33 @@ Proszę o sprawdzenie podanej nazwy pliku. + QGstreamerPlayerSession + + + + Unable to play %1 + + + + QHostInfo - + Unknown error Nieznany błąd + + + No host name given + Nie podano nazwy hosta + QHostInfoAgent - + - + Host not found Host nie znaleziony @@ -2358,12 +3763,14 @@ Proszę o sprawdzenie podanej nazwy pliku. Nieznany błąd + No host name given Nie podano nazwy hosta - + + Invalid hostname Niepoprawna nazwa hosta @@ -2381,7 +3788,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Podłączony do hosta %1 - + Connection closed Połączenie zakończone @@ -2416,8 +3823,6 @@ Proszę o sprawdzenie podanej nazwy pliku. - - HTTP request failed Komenda HTTP zakończona błędem @@ -2494,7 +3899,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Błąd zapisywania odpowiedzi do urządzenia - + Proxy requires authentication Pośrednik wymaga autoryzacji @@ -2516,7 +3921,7 @@ Proszę o sprawdzenie podanej nazwy pliku. SSL handshake failed - Nawiązanie sesji SSL nie powiodło się + Nawiązanie sesji SSL zakończone błędem @@ -2688,7 +4093,7 @@ Proszę o sprawdzenie podanej nazwy pliku. QIODevice - + No space left on device Brak wolnego miejsca na urządzeniu @@ -2700,7 +4105,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Permission denied - Brak dostępu + Brak uprawnień @@ -2708,7 +4113,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Zbyt wiele otwartych plików - + Unknown error Nieznany błąd @@ -2716,7 +4121,7 @@ Proszę o sprawdzenie podanej nazwy pliku. QInputContext - + Mac OS X input method Metoda wprowadzania Mac OS X @@ -2772,7 +4177,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Błąd podczas weryfikacji danych we wtyczce '%1' - + The plugin '%1' uses incompatible Qt library. (%2.%3.%4) [%5] Wtyczka '%1' używa niepoprawnej wersji biblioteki QT. (%2.%3.%4) [%5] @@ -2787,7 +4192,8 @@ Proszę o sprawdzenie podanej nazwy pliku. Nieznany błąd - + + The shared library was not found. Biblioteka współdzielona niedostępna. @@ -2824,7 +4230,7 @@ Proszę o sprawdzenie podanej nazwy pliku. QLineEdit - + &Copy S&kopiuj @@ -2870,7 +4276,7 @@ Proszę o sprawdzenie podanej nazwy pliku. %1: Permission denied - %1: Brak dostępu + %1: Brak uprawnień @@ -2900,8 +4306,8 @@ Proszę o sprawdzenie podanej nazwy pliku. - - + + %1: Invalid name %1: Niepoprawna nazwa @@ -2932,7 +4338,7 @@ Proszę o sprawdzenie podanej nazwy pliku. - + %1: Connection error %1: Błąd połączenia @@ -2957,7 +4363,7 @@ Proszę o sprawdzenie podanej nazwy pliku. QMYSQLDriver - + Unable to begin transaction Nie można rozpocząć transakcji @@ -3145,6 +4551,39 @@ Proszę o sprawdzenie podanej nazwy pliku. + QMediaPlayer + + + The QMediaPlayer object does not have a valid service + + + + + QMediaPlaylist + + + + Could not add items to read only playlist. + + + + + + Playlist format is not supported + + + + + The file could not be accessed. + + + + + Playlist format is not supported. + + + + QMenu @@ -3169,7 +4608,7 @@ Proszę o sprawdzenie podanej nazwy pliku. QMenuBar - + Actions Akcje @@ -3187,12 +4626,12 @@ Proszę o sprawdzenie podanej nazwy pliku. Pomoc - + Hide Details... Ukryj szczegóły... - + @@ -3207,10 +4646,10 @@ Proszę o sprawdzenie podanej nazwy pliku. <p>Qt is a C++ toolkit for cross-platform application development.</p><p>Qt provides single-source portability across MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux, and all major commercial Unix variants. Qt is also available for embedded devices as Qt for Embedded Linux and Qt for Windows CE.</p><p>Qt is available under three different licensing options designed to accommodate the needs of our various users.</p><p>Qt licensed under our commercial license agreement is appropriate for development of proprietary/commercial software where you do not want to share any source code with third parties or otherwise cannot comply with the terms of the GNU LGPL version 2.1 or GNU GPL version 3.0.</p><p>Qt licensed under the GNU LGPL version 2.1 is appropriate for the development of Qt applications (proprietary or open source) provided you can comply with the terms and conditions of the GNU LGPL version 2.1.</p><p>Qt licensed under the GNU General Public License version 3.0 is appropriate for the development of Qt applications where you wish to use such applications in combination with software subject to the terms of the GNU GPL version 3.0 or where you are otherwise willing to comply with the terms of the GNU GPL version 3.0.</p><p>Please see <a href="http://qt.nokia.com/products/licensing">qt.nokia.com/products/licensing</a> for an overview of Qt licensing.</p><p>Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).</p><p>Qt is a Nokia product. See <a href="http://qt.nokia.com/">qt.nokia.com</a> for more information.</p> - + <p>Qt jest zestawem narzędzi programistycznych dedykowanym dla języka C++. Służy on do opracowywania aplikacji międzyplatformowych.</p><p>Qt umożliwia jednoźródłowe przenoszenie między systemami MS&nbsp;Windows, Mac&nbsp;OS&nbsp;X, Linux i wszystkimi głównymi wersjami komercyjnymi systemu Unix. Środowisko Qt jest dostępne dla urządzeń wbudowanych opartych na systemie Linux ( Qt dla wbudowanego systemu Linux) oraz Windows CE.</p><p>Zestaw Qt jest dostępny w trzech różnych opcjach licencjonowania stworzonych w celu zadowolenia naszych różnych użytkowników.</p><p>Qt podlegający licencji zgodnie z naszą komercyjną umową licencyjną jest odpowiedni do opracowywania oprogramowań własnościowych/komercyjnych, dzięki czemu kod źródłowy nie jest udostępniany osobom trzecim. W przeciwnym razie zestaw Qt jest niezgodny z warunkami licencji GNU LGPL w wersji 2.1 lub GNU GPL w wersji 3.0.</p><p>Środowisko Qt objęte licencją GNU LGPL w wersji 2.1 nadaje się do tworzenia aplikacji Qt (własnościowych lub oprogramowań otwartych) tylko wtedy, gdy przestrzegane są warunki licencji GNU LGPL w wersji 2.1.</p><p>Qt objęty Powszechną Licencją Publiczną GNU w wersji 3.0 jest odpowiedni do opracowywania aplikacji QT, aby móc korzystać z aplikacji w połączeniu z oprogramowaniem podlegającym warunkom licencji GNU GPL w wersji 3.0 lub aby przestrzegać warunków licencji GNU GPL w wersji 3.0.</p><p>Więcej informacji na temat licencji Qt można znaleźć na stronie <a href="http://qt.nokia.com/products/licensing">qt.nokia.com/products/licensing</a>.</p><p>Copyright (C) 2010 Nokia Corporation i/lub oddziały firmy.</p><p>Qt jest produktem firmy Nokia. Dodatkowe informacje znajdują się na stronie <a href="http://qt.nokia.com/">qt.nokia.com</a> </p> - + Show Details... Pokaż szczegóły... @@ -3239,7 +4678,7 @@ Proszę o sprawdzenie podanej nazwy pliku. QNativeSocketEngine - + Another socket is already listening on the same port Inne gniazdo nasłuchuje już na tym porcie @@ -3301,7 +4740,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Permission denied - Brak dostępu + Brak uprawnień @@ -3378,23 +4817,46 @@ Proszę o sprawdzenie podanej nazwy pliku. + QNetworkAccessDataBackend + + + Operation not supported on %1 + Operacja nieobsługiwana na %1 + + + + Invalid URI: %1 + Niepoprawny URI: %1 + + + QNetworkAccessDebugPipeBackend Write error writing to %1: %2 Błąd w trakcie zapisywania do %1: %2 + + + Socket error on %1: %2 + Błąd gniazda na %1: %2 + + + + Remote host closed the connection prematurely on %1 + Zdalny host przedwcześnie zakończył połączenie na %1 + QNetworkAccessFileBackend - + Request for opening non-local file %1 Żądanie otwarcia zdalnego pliku %1 - + Error opening %1: %2 Błąd otwierania %1: %2 @@ -3405,7 +4867,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Błąd w trakcie zapisywania do %1: %2 - + Cannot open %1: Path is a directory Nie można otworzyć %1: Ścieżka jest katalogiem @@ -3447,37 +4909,111 @@ Proszę o sprawdzenie podanej nazwy pliku. QNetworkAccessHttpBackend - + No suitable proxy found Nie odnaleziono odpowiedniego pośrednika + QNetworkAccessManager + + + Network access is disabled. + + + + QNetworkReply - + Error downloading %1 - server replied: %2 Błąd podczas pobierania %1 - odpowiedź serwera: %2 - + Protocol "%1" is unknown Protokół "%1" nie jest znany + + + Network session error. + + + + + Temporary network failure. + + QNetworkReplyImpl - + Operation canceled Operacja anulowana + QNetworkSession + + + Invalid configuration. + + + + + QNetworkSessionPrivateImpl + + + Roaming error + Błąd roamingu + + + + Session aborted by user or system + + + + + Unidentified Error + Niezidentyfikowany błąd + + + + + Unknown session error. + Nieznany błąd sesji. + + + + + The session was aborted by the user or system. + + + + + + The requested operation is not supported by the system. + + + + + + The specified configuration cannot be used. + + + + + + Roaming was aborted or is not possible. + + + + QOCIDriver - + Unable to initialize QOCIDriver Nie można dokonać inicjalizacji @@ -3551,17 +5087,17 @@ Proszę o sprawdzenie podanej nazwy pliku. QODBCDriver - + Unable to commit transaction Nie można potwierdzić transakcji - + Unable to connect Nie można nawiązać połączenia - + Unable to disable autocommit Nie można wyłączyć trybu automatycznego dokonywania transakcji @@ -3576,7 +5112,7 @@ Proszę o sprawdzenie podanej nazwy pliku. Nie można wycofać transakcji - + Unable to connect - Driver doesn't support all functionality required Nie można nawiązać połączenia - sterownik nie obsługuje całej potrzebnej funkcjonalności @@ -3584,24 +5120,24 @@ Proszę o sprawdzenie podanej nazwy pliku. QODBCResult - - + + QODBCResult::reset: Unable to set 'SQL_CURSOR_STATIC' as statement attribute. Please check your ODBC driver configuration QODBCResult::reset: Nie można ustawić 'SQL_CURSOR_STATIC' jako atrybutu polecenia. Proszę sprawdzić konfiguracje sterownika ODBC - + Unable to bind variable Nie można powiązać zmiennej - - + + Unable to execute statement Nie można wykonać polecenia - + Unable to fetch next Nie można pobrać kolejnych danych @@ -3613,12 +5149,12 @@ Proszę o sprawdzenie podanej nazwy pliku. - + Unable to fetch last Nie można pobrać ostatnich danych - + Unable to fetch Nie można pobrać @@ -3636,41 +5172,21 @@ Proszę o sprawdzenie podanej nazwy pliku. QObject - - Invalid hostname - Niepoprawna nazwa hosta - - - - Operation not supported on %1 - Operacja nieobsługiwana na %1 - - - - Invalid URI: %1 - Niepoprawny URI: %1 - - - - Socket error on %1: %2 - Błąd gniazda na %1: %2 - - - - Remote host closed the connection prematurely on %1 - Zdalny host przedwcześnie zakończył połączenie na %1 + + + PulseAudio Sound Server + - - - No host name given - Nie podano nazwy hosta + + "%1" duplicates a previous role name and will be disabled. + QPPDOptionsModel - + Name Nazwa @@ -3845,7 +5361,7 @@ Proszę o sprawdzenie podanej nazwy pliku. QPrintDialog - + A0 (841 x 1189 mm) A0 (841 x 1189 mm) @@ -3895,13 +5411,18 @@ Proszę o sprawdzenie podanej nazwy pliku. A9 (37 x 52 mm) - + + Print current page + + + + Aliases: %1 Aliasy: %1 - + B0 (1000 x 1414 mm) B0 (1000 x 1414 mm) @@ -3971,7 +5492,7 @@ Proszę o sprawdzenie podanej nazwy pliku. podłączony lokalnie - + OK OK @@ -4027,14 +5548,14 @@ Proszę o sprawdzenie podanej nazwy pliku. US Common #10 Envelope (105 x 241 mm) - + Print Drukowanie - + Print To File ... Drukuj do pliku ... @@ -4060,7 +5581,7 @@ Please choose a different file name. Proszę wybrać inną nazwę pliku. - + File exists Plik istnieje @@ -4070,7 +5591,7 @@ Proszę wybrać inną nazwę pliku. <qt>Czy chcesz nadpisać?</qt> - + Print selection Drukuj zaznaczone @@ -4230,7 +5751,7 @@ Proszę wybrać inną nazwę pliku. Niestandardowy - + &Options >> &Opcje >> @@ -4246,7 +5767,7 @@ Proszę wybrać inną nazwę pliku. &Opcje << - + Print to File (PDF) Drukuj do pliku (PDF) @@ -4274,12 +5795,12 @@ Proszę wybrać inną nazwę pliku. QPrintPreviewDialog - + %1% %1% - + Print Preview Podgląd wydruku @@ -4359,7 +5880,12 @@ Proszę wybrać inną nazwę pliku. Ustawienia strony - + + Close + Zamknij + + + Export to PDF Wyeksportuj do PDF @@ -4490,6 +6016,11 @@ Proszę wybrać inną nazwę pliku. Short side Krótka strona + + + Current Page + + QPrintWidget @@ -4572,7 +6103,7 @@ Proszę wybrać inną nazwę pliku. Przekroczony czas operacji procesu - + @@ -4687,7 +6218,7 @@ Proszę wybrać inną nazwę pliku. QSQLite2Driver - + Error opening database Błąd otwierania bazy danych @@ -4715,7 +6246,7 @@ Proszę wybrać inną nazwę pliku. Nie można wykonać polecenia - + Unable to fetch results Nie można pobrać wyników @@ -4723,7 +6254,7 @@ Proszę wybrać inną nazwę pliku. QSQLiteDriver - + Error closing database Błąd zamykania bazy danych @@ -4751,7 +6282,7 @@ Proszę wybrać inną nazwę pliku. QSQLiteResult - + Parameter count mismatch Niezgodna liczba parametrów @@ -5009,7 +6540,7 @@ Proszę wybrać inną nazwę pliku. QScriptDebuggerLocalsModel - + Name Nazwa @@ -5229,7 +6760,7 @@ Proszę wybrać inną nazwę pliku. %1: permission denied - %1: brak dostępu + %1: brak uprawnień @@ -5310,7 +6841,7 @@ Proszę wybrać inną nazwę pliku. %1: size query failed - %1: zapytanie o rozmiar nie powiodło się + %1: zapytanie o rozmiar zakończone błędem @@ -5321,7 +6852,7 @@ Proszę wybrać inną nazwę pliku. QShortcut - + + + @@ -5332,7 +6863,7 @@ Proszę wybrać inną nazwę pliku. Alt - + Back Back @@ -5389,27 +6920,27 @@ Proszę wybrać inną nazwę pliku. Keyboard Light On/Off - + Włącz/wyłącz podświetlenie klawiatury Keyboard Brightness Up - + Zwiększ jasność klawiatury Keyboard Brightness Down - + Zmniejsz jasność klawiatury Power Off - + Wyłącz zasilanie Wake Up - + Przebudzenie @@ -5429,12 +6960,12 @@ Proszę wybrać inną nazwę pliku. Sleep - + Uśpienie LightBulb - + Żarówka @@ -5454,17 +6985,17 @@ Proszę wybrać inną nazwę pliku. Hot Links - + Popularne łącza Adjust Brightness - + Ustaw jasność Finance - + Finanse @@ -5474,7 +7005,7 @@ Proszę wybrać inną nazwę pliku. Audio Rewind - + Przewijanie do tyłu @@ -5534,7 +7065,7 @@ Proszę wybrać inną nazwę pliku. Display - + Wyświetlacz @@ -5549,7 +7080,7 @@ Proszę wybrać inną nazwę pliku. Spreadsheet - + Arkusz kalkulacyjny @@ -5559,7 +7090,7 @@ Proszę wybrać inną nazwę pliku. Game - + Gra @@ -5574,7 +7105,7 @@ Proszę wybrać inną nazwę pliku. Logoff - + Wyloguj @@ -5589,12 +7120,12 @@ Proszę wybrać inną nazwę pliku. Keyboard Menu - + Menu klawiatury Menu PB - + Menu PB @@ -5609,7 +7140,7 @@ Proszę wybrać inną nazwę pliku. Home Office - + Biuro domowe @@ -5644,12 +7175,12 @@ Proszę wybrać inną nazwę pliku. Rotation PB - + Obrót PB Rotation KB - + Obrót KB @@ -5664,7 +7195,7 @@ Proszę wybrać inną nazwę pliku. Spellchecker - + Sprawdzanie pisowni @@ -5679,7 +7210,7 @@ Proszę wybrać inną nazwę pliku. Task Panel - + Panel zadań @@ -5704,12 +7235,12 @@ Proszę wybrać inną nazwę pliku. Word Processor - + Procesor tekstu XFer - + XFer @@ -5729,7 +7260,7 @@ Proszę wybrać inną nazwę pliku. Messenger - + Komunikator @@ -5739,7 +7270,7 @@ Proszę wybrać inną nazwę pliku. Mail Forward - + Przekazanie poczty @@ -5769,22 +7300,22 @@ Proszę wybrać inną nazwę pliku. Ultra Wide Band - + Ultraszerokie pasmo Audio Forward - + Przewijanie do przodu Audio Repeat - + Powtarzanie Audio Random Play - + Odtwarzanie losowe @@ -5814,12 +7345,12 @@ Proszę wybrać inną nazwę pliku. Suspend - + Wstrzymanie Hibernate - + Hibernacja @@ -5842,13 +7373,163 @@ Proszę wybrać inną nazwę pliku. Kontekst4 - + + Kanji + + + + + Muhenkan + + + + + Henkan + + + + + Romaji + + + + + Hiragana + + + + + Katakana + + + + + Hiragana Katakana + + + + + Zenkaku + + + + + Hankaku + + + + + Zenkaku Hankaku + + + + + Touroku + + + + + Massyo + + + + + Kana Lock + + + + + Kana Shift + + + + + Eisu Shift + + + + + Eisu toggle + + + + + Code input + + + + + Multiple Candidate + + + + + Previous Candidate + + + + + Hangul + + + + + Hangul Start + + + + + Hangul End + + + + + Hangul Hanja + + + + + Hangul Jamo + + + + + Hangul Romaja + + + + + Hangul Jeonja + + + + + Hangul Banja + + + + + Hangul PreHanja + + + + + Hangul PostHanja + + + + + Hangul Special + + + + Ctrl Ctrl - + Del Del @@ -5883,12 +7564,12 @@ Proszę wybrać inną nazwę pliku. Escape - + F%1 F%1 - + Favorites Ulubione @@ -6058,13 +7739,13 @@ Proszę wybrać inną nazwę pliku. Menu - + Meta Meta - + No Nie @@ -6160,13 +7841,13 @@ Proszę wybrać inną nazwę pliku. Wybierz - + Shift Shift - + Space Spacja @@ -6335,7 +8016,7 @@ Proszę wybrać inną nazwę pliku. QSoftKeyManager - + Ok OK @@ -6360,7 +8041,7 @@ Proszę wybrać inną nazwę pliku. Anuluj - + Exit Wyjście @@ -6438,12 +8119,17 @@ Proszę wybrać inną nazwę pliku. QSslSocket - + Unable to write data: %1 - Nie można zapisać danych: %1 + - + + Unable to decrypt data: %1 + Nie można odszyfrować danych: %1 + + + Error while reading: %1 Błąd podczas czytania: %1 @@ -6453,7 +8139,7 @@ Proszę wybrać inną nazwę pliku. Błąd podczas nawiązania sesji SSL: %1 - + Error creating SSL context (%1) Błąd tworzenia kontekstu (%1) @@ -6463,7 +8149,7 @@ Proszę wybrać inną nazwę pliku. Niepoprawna lub pusta lista szyfrów (%1) - + Private key does not certify public key, %1 Prywatny klucz nie uwiarygodnia publicznego, %1 @@ -6478,7 +8164,7 @@ Proszę wybrać inną nazwę pliku. Błąd tworzenia sesji SSL: %1 - + Cannot provide a certificate with no key, %1 Nie można dostarczyć certyfikatu bez klucza, %1 @@ -6488,7 +8174,7 @@ Proszę wybrać inną nazwę pliku. Błąd ładowania lokalnego certyfikatu, %1 - + Error loading private key, %1 Błąd ładowania prywatnego klucza, %1 @@ -6540,67 +8226,67 @@ Proszę wybrać inną nazwę pliku. The certificate is self-signed, and untrusted - + Niewiarygodny certyfikat z podpisem własnym The root certificate of the certificate chain is self-signed, and untrusted - + Główny certyfikat łańcucha zaufania ma własny podpis i jest niewiarygodny The issuer certificate of a locally looked up certificate could not be found - + Nie można odnaleźć certyfikatu wydawcy wyszukanego lokalnie certyfikatu No certificates could be verified - + Nie można zweryfikować żadnych certyfikatów One of the CA certificates is invalid - + Jeden z certyfikatów urzędu certyfikacji jest nieprawidłowy The basicConstraints path length parameter has been exceeded - + Długość ścieżki określona w podstawowych warunkach ograniczających została przekroczona The supplied certificate is unsuitable for this purpose - + Dostarczony certyfikat jest nieodpowiedni dla tego przeznaczenia The root CA certificate is not trusted for this purpose - + Główny certyfikat urzędu certyfikacji nie jest wiarygodny dla tego przeznaczenia The root CA certificate is marked to reject the specified purpose - + Główny certyfikat urzędu certyfikacji jest wyznaczony do odrzucania podanego przeznaczenia The current candidate issuer certificate was rejected because its subject name did not match the issuer name of the current certificate - + Certyfikat wydawcy obecnego kandydata został odrzucony, ponieważ nazwa podmiotu nie odpowiadała nazwie wydawcy obecnego certyfikatu The current candidate issuer certificate was rejected because its issuer name and serial number was present and did not match the authority key identifier of the current certificate - + Certyfikat wydawcy obecnego kandydata został odrzucony, ponieważ nazwa wydawcy i przedstawiony numer seryjny nie odpowiadały identyfikatorowi klucza urzędu certyfikacji obecnego certyfikatu The peer did not present any certificate - + Element równorzędny nie przedstawił żadnego certyfikatu The host name did not match any of the valid hosts for this certificate - + Nazwa hosta nie odpowiadała żadnemu z poprawnych hostów dla tego certyfikatu @@ -6613,17 +8299,17 @@ Proszę wybrać inną nazwę pliku. Missing initial state in compound state '%1' - Brak stanu początkowego w stanie złożonym '%1' + Brak stanu początkowego w stanie złożonym "%1" Missing default state in history state '%1' - Brak domyślnego stanu w historycznym stanie '%1' + Brak domyślnego stanu w historycznym stanie "%1" No common ancestor for targets and source of transition from state '%1' - Brak wspólnego przodka dla stanów docelowych i stanu źródłowego w przejściu ze stanu '%1' + Brak wspólnego przodka dla stanów docelowych i stanu źródłowego w przejściu ze stanu "%1" @@ -6643,7 +8329,7 @@ Proszę wybrać inną nazwę pliku. %1: permission denied - %1: brak dostępu + %1: brak uprawnień @@ -6691,7 +8377,7 @@ Proszę wybrać inną nazwę pliku. QTcpServer - + Operation on socket is not supported Operacja na gnieździe nieobsługiwana @@ -6699,7 +8385,7 @@ Proszę wybrać inną nazwę pliku. QTextControl - + &Copy S&kopiuj @@ -6711,7 +8397,7 @@ Proszę wybrać inną nazwę pliku. Cu&t - &Wytnij + W&ytnij @@ -6757,7 +8443,7 @@ Proszę wybrać inną nazwę pliku. QUdpSocket - + This platform does not support IPv6 Ta platforma nie obsługuje IPv6 @@ -6857,7 +8543,7 @@ Proszę wybrać inną nazwę pliku. QWebFrame - + Request cancelled Prośba anulowana @@ -6890,7 +8576,7 @@ Proszę wybrać inną nazwę pliku. QWebPage - + Submit default label for Submit buttons in forms on web pages Wyślij @@ -7130,7 +8816,13 @@ Proszę wybrać inną nazwę pliku. Domyślny - + + Missing Plug-in + Label text to be used when a plug-in is missing + + + + Loading... Media controller status message when the media is loading Ładowanie... @@ -7271,7 +8963,7 @@ Proszę wybrać inną nazwę pliku. Pause playback Media controller element - Wstrzymaj odtwarzanie + Zatrzymaj odtwarzanie @@ -7364,7 +9056,7 @@ Proszę wybrać inną nazwę pliku. %1 sekund - + Inspect Inspect Element context menu item Zwiedzaj @@ -7388,23 +9080,23 @@ Proszę wybrać inną nazwę pliku. Wyczyść ostatnie wyszukiwania - + Unknown Unknown filesize FTP directory listing item Nieznany - + Web Inspector - %2 Wizytator sieciowy - %2 - + Bad HTTP request Niepoprawna komenda HTTP - + This is a searchable index. Enter search keywords: text that appears at the start of nearly-obsolete web pages in the form of a 'searchable index' To jest indeks wyszukiwawczy. Podaj słowa do wyszukania: @@ -7422,7 +9114,7 @@ Proszę wybrać inną nazwę pliku. Z prawej na lewą - + %1 (%2x%3 pixels) Title string for images %1 (%2x%3 piksli) @@ -7503,22 +9195,22 @@ Proszę wybrać inną nazwę pliku. - + JavaScript Alert - %1 Ostrzeżenie JavaScript - %1 - + JavaScript Confirm - %1 Potwierdzenie JavaScript - %1 - + JavaScript Prompt - %1 Zachęta JavaScript - %1 - + JavaScript Problem - %1 Problem JavaScript - %1 @@ -7528,7 +9220,7 @@ Proszę wybrać inną nazwę pliku. Skrypt na tej stronie nie działa poprawnie. Czy chcesz przerwać ten skrypt? - + Move the cursor to the next character Przesuń kursor do następnego znaku @@ -7749,7 +9441,7 @@ Proszę wybrać inną nazwę pliku. QWidget - + * * @@ -7757,7 +9449,7 @@ Proszę wybrać inną nazwę pliku. QWizard - + Go Back Wróć @@ -8001,6 +9693,34 @@ Proszę wybrać inną nazwę pliku. + QXmlPatternistCLI + + + Warning in %1, at line %2, column %3: %4 + Ostrzeżenie w %1, wiersz %2, kolumna %3: %4 + + + + Warning in %1: %2 + Ostrzeżenie w %1: %2 + + + + Unknown location + Nieznane położenie + + + + Error %1 in %2, at line %3, column %4: %5 + Błąd %1 w %2, wiersz %3, kolumna %4: %5 + + + + Error %1 in %2: %3 + Błąd %1 w %2: %3 + + + QXmlStream @@ -9834,7 +11554,7 @@ Proszę wybrać inną nazwę pliku. Brak podelementu w tym zakresie, możliwymi podelementami są: %1. - + Document is not a XML schema. Dokument nie jest schematem XML. @@ -9860,7 +11580,7 @@ Proszę wybrać inną nazwę pliku. Docelowa przestrzeń nazw %1 zaimportowanego schematu jest różna od docelowej przestrzeni nazw %2 która jest zdefiniowana w schemacie importującym. - + %1 element is not allowed to have the same %2 attribute value as the target namespace %3. Element %1 nie może zawierać tej samej wartości atrybutu %2 co docelowa przestrzeń nazw %3. @@ -9870,7 +11590,7 @@ Proszę wybrać inną nazwę pliku. Element %1 bez atrybutu %2 jest niedozwolony wewnątrz schematu bez docelowej przestrzeni nazw. - + %1 element is not allowed inside %2 element if %3 attribute is present. Element %1 jest niedozwolony wewnątrz elementu %2 jeśli jest obecny atrybut %3. @@ -10555,4 +12275,12 @@ Proszę wybrać inną nazwę pliku. Atrybut "%1" zawiera niepoprawną zawartość QName: %2. + + Widget + + + about:blank + + + -- cgit v0.12 From 13dff164d2ab13b1258d31693b67acebc8636890 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Tue, 27 Apr 2010 10:14:44 +0200 Subject: changes-4.7.0 updated --- dist/changes-4.7.0 | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/dist/changes-4.7.0 b/dist/changes-4.7.0 index d5b4672..4fd7fdb 100644 --- a/dist/changes-4.7.0 +++ b/dist/changes-4.7.0 @@ -56,6 +56,10 @@ QtGui functions, and replaced them with setCopyCount(), copyCount() and supportsMultipleCopies(). + - QCommonStyle + * Fixed a bug that led to missing text pixels in QTabBar when using + small font sizes. (QTBUG-7137) + **************************************************************************** * Database Drivers * **************************************************************************** @@ -72,6 +76,13 @@ Qt for Linux/X11 Qt for Windows -------------- + - QLocalSocket + * Pipe handle leak fixed, when closing a QLocalSocket that still has + unwritten data. (QTBUG-7815) + * Fixed closing state for local sockets with unwritten data. (QTBUG-9681) + * Detection of Windows mobile 6.5 fixed. (QTBUG-8418) + * Improved performance of writing to QLocalSocket. + Qt for Mac OS X --------------- @@ -84,6 +95,17 @@ Qt for Embedded Linux Qt for Windows CE ----------------- + - Core changes + * Fixed menu handling on Windows mobile. (QTBUG-8754) + * Fixed a crash when receiving a certain type of WM_SETTINGSCHANGE + message. (QTBUG-7943) + + - QWindowsMobileStyle + * Huge performance penalty for QTabWidget fixed for + Windows mobile 6.5. (QTBUG-8419) + * QTabBar scroll button size has been fixed. (QTBUG-8757) + + **************************************************************************** * Compiler Specific Changes * @@ -96,6 +118,9 @@ Qt for Windows CE - Build System + - "configure -fast" on Windows now also works for other make tools than + nmake. (QTBUG-8562) + - Assistant -- cgit v0.12