diff --git a/dist/changes-2.2.0 b/dist/changes-2.2.0 index bd551b9ff0a..b50191d2a29 100644 --- a/dist/changes-2.2.0 +++ b/dist/changes-2.2.0 @@ -1,145 +1,157 @@ -The QtCreator 2.2 release contains bug fixes and new features. +Qt Creator version 2.2 contains bug fixes and new features. -Below is a list of relevant changes. You can find a complete list of changes -within the logs of Qt Creator sources. Simply check it out from the public git -repository. For example: +The most important changes are listed in this document. For a complete +list of changes, see the Git log for the Qt Creator sources that +you can check out from the public Git repository. For example: git clone git://gitorious.org/qt-creator/qt-creator.git git log --cherry-pick --pretty=oneline origin/2.1...origin/2.2 General - * Added support for running user defined external tools (Tools->External) - * Moved toolchain definitions out of Qt versions. - * You can now define toolchains in Tools->Options->ToolChains - * Creator now supports more than one instance of each kind of toolchain - * Support for MIME type customization through editing of patterns and - magic matchers. + * Add support for running user defined external tools (Tools > External) + * Move tool chain definitions out of Qt versions: + * You can now define tool chains in Tools > Options > Tool Chains + * Qt Creator now supports more than one instance of a tool chain + * Add support for customizing MIME types by editing patterns and + magic headers + * Integrate the memcheck tool from Valgrind for Linux and Mac OS X + * Create the infrastructure to set up "soft dependencies" between plugins + * Add the qtpromaker tool that has the same functionality as + "qmake -project", but is much faster. It provides a way to easily set up + dummy .pro files that you need to quickly inspect and navigate "alien" + codebases with Qt Creator + * Document Qt Creator coding style Editing - * Add new Inkpot color scheme - * Moved 'Open in External Editor' to Tools->External->Text + * Add an Inkpot color scheme * Add UTF-8 BOM support - * GLSL Support with: - - syntax checking - - highlighting - - code completion - * Add 'expand/collapse all' context menu entry to Outline pane - * Support for user defined macros was contributed by Nicolas Arnaud-Cormos - * Snippet editor with syntax highlighting, indentation, and basic auto - completion for C++ and QML. + * Move the Open in External Editor item to Tools > External > Text + * Add the Expand/Collapse All context menu item to the Outline pane + * Add support for user-defined macros (contributed by Nicolas Arnaud-Cormos) + * Add a snippet editor with syntax highlighting, indentation, and basic + auto-completion for C++ and QML + * Add GLSL support with: + - Syntax checking + - Highlighting + - Code completion + * Binary editor: + - Visualize data differences after updates + - Fix selection if cursor is left of anchor + - Allow copying also if selection is "backwards" + - Do not draw blinking cursor when there is a selection + FakeVim: + - Implement Ctrl-N/Ctrl-P + - Implement 's' in visual block mode + - Fix Alt-Gr handling on Windows + - Handle more Ctrl-W + commands -Project Support - * QMake project support should be more robust against syntax errors - * Treatment of command line arguments of processes started from build - and run configurations underwent heavy modifications: - - argument lists use native shell syntax; this affects quoting and +Managing Projects + * Improve the robustness of qmake project support against syntax errors + * Change the handling of command line arguments of processes that are + started from build and run configurations: + - Argument lists use native shell syntax; this affects quoting and environment variable expansion most - - the SOURCEDIR and BUILDDIR environment variables were replaced - with %{sourceDir} and %{buildDir} macros - - this affects working directories and executable paths as well - * CMake: Add Ui completion, changes in .ui files are picked up without - a rebuild. - * Syntax highlighting and completion for QMake project files - * Text editor behavior settings now avaiable on a per-project basis. + - The SOURCEDIR and BUILDDIR environment variables were replaced + with %{sourceDir} and %{buildDir} variables + - This affects working directories and executable paths as well + * Support syntax highlighting and completion for qmake project files + * CMake: Add UI completion, changes in .ui files are picked up without + a rebuild + * Specify text editor behavior settings per project + * New project and file wizards: + - Support new keywords %MONTH% and %DAY% for C++ template file + - Add wizards for creating OpenGL fragment and vertex shaders + - Add a wizard for creating HTML5 based applications + - Add a wizard for creating JavaScript files, QTCREATORBUG-3070 Debugging - * Rewrote debugging engine using the Microsoft Console Debugger (CDB) + * Rewrite debugging engine using the Microsoft Console Debugger (CDB) for debugging executables built with Microsoft Visual Studio, resulting in significant speed-up and better display of data - types, supporting both 32bit and 64bit versions of the + types, supporting both 32-bit and 64-bit versions of the Debugging Tools for Windows - * Made it possible to pin debugger tooltips. - * Reworked global architecture to allow multiple debugging sessions (for - different projects, combined Qml/C++ debugging, project 'snapshots', ...) - * Reworked breakpoint handling: new special breakpoint types for "break - on throw", "break on main", data breakpoints - * Introduce combined c++/qml debugging (combined stack, cross-step) (gdb only) + * Make it possible to pin debugger tooltips + * Rework global architecture to allow multiple debugging sessions (for + different projects, combined QML/C++ debugging, project snapshots, + and so on) + * Rework breakpoint handling: add special breakpoint types for break + on throw and break on main, as well as data breakpoints + * Introduce combined QML/C++ debugging (combined stack, cross-step) (GDB only) * Rework per-type and per-item selection of display formats - * New dumpers for QTextCursor, QTextDocument, __m128, QScriptValue - QBasicAtomicPointer, bit fields, boost::shared_ptr (gdb only) + * Add dumpers for QTextCursor, QTextDocument, __m128, QScriptValue + QBasicAtomicPointer, bit fields, boost::shared_ptr (GDB only) * Improve dumpers for QRegion, QVariant (custom types), QSharedPointer, QMultiMap (QTCREATORBUG-3122), QObject, QWeakPointer * Make alphabetic structure member sorting optional * Make dumpers robust in case of missing debug information - * Improve python dumper profiling support + * Improve Python dumper profiling support * Improve stepping performance * Enable breakpoint setting from a disassembler view, QTCREATORBUG-3667 - * Fix display of shadowed variables. + * Fix display of shadowed variables * Fix display of data containing quote characters, QTCREATORBUG-3084 - * Fix display of C style 'typedef struct X { ... } X; + * Fix display of C-style typedef struct X { ... } X; * Fix stack/break view updates after manual module loading, QTCREATORBUG-3427 - * Fix 'Jump To/Run to' when in instruction-wise mode - * Several fixed to the "watcher" handling + * Fix Jump To/Run To when in instruction-wise mode + * Fix the watcher handling * Allow re-running debugger engines, QTCREATORBUG-3073 * Robust process control after -exec-interrupt errors, QTCREATORBUG-2850 * Robust detection of Qt-in-namespace builds * Handle "live updates" in the memory view - * Make memory view writable (gdb only) + * Make memory view writable (GDB only) * Improve starting debugger session directly from the command line - * Improve debugging helpers dialog - -BinEditor: - * Visualize data differences after updates - * Fix selection if cursor is left of anchor - * Allow copying also if selection is "backwards" - * Do not draw blinking cursor when there is a selection + * Improve Debugging Helpers dialog -Help +Debugging QML/JS + * Compile qmljsdebugger code as static library, and link it according to the + setting in the qmake step (replaces QMLJSDEBUGGER_PATH / QMLJSDEBUGGER define) + * Qt Quick Application: Allow debugging also in release builds, improve error + diagnostics + * GUI cosmetics in JS debugger: Show stack frame level, only valid + line numbers in stack view, do not show function code, show dummy + child entry for empty arrays + * Added QML tooltips for property inspection at debug time + * Extend QML Observer for inspection and tweaking of item properties + * Add navigation of the object tree in the QML Observer through a crumble path + * Add the Show Application on Top option + * Move the toolbar from the Observer tab to the main toolbar + * Support setting of breakpoints in .qml files embedded as qrc resources + * Improve linking of QML errors in Application Output pane C++ Support - * Add QuickFix for implementing setters/getters for a Q_PROPERTY - * Add documentation about QuickFixes + * Add a refactoring action for implementing setters and getters for + a Q_PROPERTY + * Add documentation for refactoring actions * Fix switch statement indentation for GNU and Whitesmiths style, QTCREATORBUG-2994 * Fix indentation of labels - * Highlighting for virtual functions - * Navigate to correct overloaded function/method + * Support highlighting for virtual functions + * Navigate to correct overloaded function or method QML/JS Support - * Add wizard for creating JavaScript files, QTCREATORBUG-3070 - * Add local-file completion for url properties, QTCREATORBUG-2619 - * Add warning about invalid files in url properties + * Add local-file completion for URL properties, QTCREATORBUG-2619 + * Add warning about invalid files in URL properties * Add file name completion in imports, QTCREATORBUG-3067 * Add a locator filter for JS functions, QTCREATORBUG-2607 * Add JSlint-style warnings about common JS pitfalls, QTCREATORBUG-3071 * Add completion for attached properties like Component.onCompleted - * Allow QML modules to ship predumped type description files. + * Allow QML modules to ship predumped type description files * Reenable instantiating component scope detection, QTCREATORBUG-2835 * Improve error reporting of failed plugin dumps * Complete a trailing '{' for 'A on b' object bindings, QTCREATORBUG-2642 * Highlight capitalized types, QTCREATORBUG-2658 - * Re-dump a plugin if the shared library/dll changes, QTCREATORBUG-3047 + * Re-dump a plugin if the shared library/DLL changes, QTCREATORBUG-3047 * Build qmldump in debug and release version on Windows, QTCREATORBUG-3549 * Change qmldump to output QML instead of XML * Fix automatic '.' import to also pick up QML modules, QTCREATORBUG-3768 * Fix code model update when files are renamed, QTCREATORBUG-2986 - * Fix incorrect completion when brace is on separate line, QTCREATORBUG-2658 + * Fix incorrect completion when brace is on a separate line, QTCREATORBUG-2658 * Fix quote autoinsertion in string literals, QTCREATORBUG-2155, QTCREATORBUG-3244 * Fix '{' not being an electric character, QTCREATORBUG-3405 * Fix indentation of 'foo: Namesp.Type {', QTCREATORBUG-3371 * .qmlproject format: Allow specifying the 'mainFile' qml file, bump version to 1.1 * Qt Quick UI project: allow user to change run environment - -QML/JS Debugging: - * Compile qmljsdebugger code as static library, and link it based on checkbox in qmake step - (replaces QMLJSDEBUGGER_PATH / QMLJSDEBUGGER define) - * Qt Quick Application: Allow debugging also in release builds, improve error diagnostics - * Gui cosmetics in JS debugger: Show stack frame level, only valid - line numbers in stack view, do not show function code, show dummy - child entry for empty arrays - * Added qml tooltips for property inspection at debug time - * Extended QML Observer for inspection and tweaking of item's properties - * Added navigation of the object tree in the QML Observer through a crumble path - * Add 'show app on top' option - * Move toolbar from Observer tab to the main toolbar space - * Support setting of breakpoints in .qml files embedded as qrc resources - * Improve 'linkification' of QML errors in Application Output pane -FakeVim: - * Implement Ctrl-N/Ctrl-P - * Implement 's' in visual block mode - * Fix Alt-Gr handling on Windows - * Handle more Ctrl-W + commands +Help Platform Specific @@ -150,34 +162,23 @@ Linux (GNOME and KDE) Windows Symbian Target - * Added support for the new on-device debugging agent (CODA) + * Add support for the new on-device debugging agent (CODA) Maemo Target - * Added Meego support. - * Added a device configuration wizard. - * Added a publishing wizard for Fremantle/extras-devel. - * On-demand creation of Desktop files. - * For Fremantle, it's possible to disable packaging again. + * Add MeeGo support + * Add a wizard for configuring connections to Maemo and MeeGo devices + * Add a wizard for publishing applications to Fremantle/extras-devel + * Create desktop files on demand + * Allow disabling packaging for Fremantle -Designer +Qt Designer Version control plugins - * Bazaar support was contributed by Hugues Delorme - -Wizards - * Support new keywords %MONTH% and %DAY% for C++ template file - -Misc - * MemCheck (from Valgrind) integration (Linux, Mac) - * Create infrastructure to setup "soft dependencies" between plugins - * Add a little tool 'qtpromaker' doing the job of 'qmake -project', but - much faster to make Qt Creator usable to quickly inspect and navigate - "alien" codebases a way to easily set up dummy .pro files is needed - * Start documenting Qt Creator's coding style guidelines + * Support Bazaar (contributed by Hugues Delorme) Additional credits go to: * The Inkpot color scheme was based on the Vim color scheme by Ciaran McCreesh, adapted for Qt Creator by Jan Kundrát and subsequently updated by Campbell Barton - * Hugues Delorme for the bazaar plugin which he continues to improve + * Hugues Delorme for the Bazaar plugin which he continues to improve * Nicolas Arnaud-Cormos for the Macro plugin diff --git a/doc/config/qtcreator-project.qdocconf b/doc/config/qtcreator-project.qdocconf index ea4b9edc3e4..9e9d8c18240 100644 --- a/doc/config/qtcreator-project.qdocconf +++ b/doc/config/qtcreator-project.qdocconf @@ -13,7 +13,7 @@ include(macros.qdocconf) include(qt-cpp-ignore.qdocconf) include(qt-defines.qdocconf) -sources.fileextensions = "qtcreator.qdoc maemodev.qdoc symbiandev.qdoc addressbook-sdk.qdoc" +sources.fileextensions = "qtcreator.qdoc maemodev.qdoc symbiandev.qdoc addressbook-sdk.qdoc qtcreator-faq.qdoc" qhp.projects = QtCreator diff --git a/doc/images/qmldesigner-new-project-qt-versions.png b/doc/images/qmldesigner-new-project-qt-versions.png index e3f1f06871e..fb040d7543b 100644 Binary files a/doc/images/qmldesigner-new-project-qt-versions.png and b/doc/images/qmldesigner-new-project-qt-versions.png differ diff --git a/doc/images/qmldesigner-new-project.png b/doc/images/qmldesigner-new-project.png index 9acad09c20b..2a5d4c77a0f 100644 Binary files a/doc/images/qmldesigner-new-project.png and b/doc/images/qmldesigner-new-project.png differ diff --git a/doc/images/qtcreator-custom-project-wizards.png b/doc/images/qtcreator-custom-project-wizards.png index e201501c690..183b7ffacba 100644 Binary files a/doc/images/qtcreator-custom-project-wizards.png and b/doc/images/qtcreator-custom-project-wizards.png differ diff --git a/doc/images/qtcreator-locator-open.png b/doc/images/qtcreator-locator-open.png index 9f2255baaae..b3c18bc3d39 100644 Binary files a/doc/images/qtcreator-locator-open.png and b/doc/images/qtcreator-locator-open.png differ diff --git a/doc/images/qtcreator-locator.png b/doc/images/qtcreator-locator.png index f0f23c525dd..7649feccb49 100644 Binary files a/doc/images/qtcreator-locator.png and b/doc/images/qtcreator-locator.png differ diff --git a/doc/images/qtcreator-mobile-project-qt-versions.png b/doc/images/qtcreator-mobile-project-qt-versions.png index bd2f6ec64c7..2ed565e4547 100644 Binary files a/doc/images/qtcreator-mobile-project-qt-versions.png and b/doc/images/qtcreator-mobile-project-qt-versions.png differ diff --git a/doc/images/qtcreator-new-project-qt-versions-qt-gui.png b/doc/images/qtcreator-new-project-qt-versions-qt-gui.png index fa52ed70075..8e234843f7c 100644 Binary files a/doc/images/qtcreator-new-project-qt-versions-qt-gui.png and b/doc/images/qtcreator-new-project-qt-versions-qt-gui.png differ diff --git a/doc/images/qtcreator-session-manager.png b/doc/images/qtcreator-session-manager.png index d20c531936e..369a74ed37d 100644 Binary files a/doc/images/qtcreator-session-manager.png and b/doc/images/qtcreator-session-manager.png differ diff --git a/doc/images/qtcreator-welcome-session.png b/doc/images/qtcreator-welcome-session.png index ba2ede1e7c8..b4d87839f68 100644 Binary files a/doc/images/qtcreator-welcome-session.png and b/doc/images/qtcreator-welcome-session.png differ diff --git a/doc/qtcreator-faq.qdoc b/doc/qtcreator-faq.qdoc new file mode 100644 index 00000000000..a3da396138a --- /dev/null +++ b/doc/qtcreator-faq.qdoc @@ -0,0 +1,276 @@ +/**************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** No Commercial Usage +** +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Free Documentation License +** +** Alternatively, this file may be used under the terms of the GNU Free +** Documentation License version 1.3 as published by the Free Software +** Foundation and appearing in the file included in the packaging of this +** file. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +****************************************************************************/ + +/*! + \contentspage index.html + \previouspage creator-os-supported-platforms.html + \page creator-faq.html + \nextpage creator-getting-started.html + + \title FAQ + + This section contains answers to some frequently asked questions about Qt + Creator. You might also find answers to your questions in the + \l{Known Issues} and \l{Tips and Tricks} sections, or the Troubleshooting + sections for a special area, such as + \l{Troubleshooting Debugger}{debugging}. + + \section1 General Questions + + \bold {How do I reset all Qt Creator settings?} + + Qt Creator creates two files and a directory: + + \list + + \o QtCreator.db + + \o QtCreator.ini + + \o qtcreator + + \endlist + + The location depends on the platform. On Linux, Unix, and Mac OS, the files + are located in \c{~/.config/Nokia}. + + On Windows XP, the files are located in + \c{:\Documents and Settings\\Application Data\Nokia}, and + on Windows Vista and Windows 7 in + \c {:\Users\\AppData\Roaming\Nokia}. + For all versions, try the path \c{APPDATA\Nokia}. + + \bold {Qt Creator comes with MinGW, should I use this version with Qt?} + + Use the version that was built against the Qt version. + + \bold {Qt Creator does not find a helper application, such as Git or a + compiler. What should I do?} + + Make sure that the application is in your system PATH when starting Qt + Creator. Also select \gui {Tools > Options} to check the settings specified + for the application. Many plugins specify either the path to the tool they + need or the environment they run in. + + This is especially relevant for the Mac OS where \c {/usr/local/bin} might + not be in the path when Qt Creator is started. + + \bold {How do I change the interface language for Qt Creator?} + + Qt Creator has been localized into several languages. If the system + language is one of the supported languages, it is automatically selected. + To change the language, select \gui {Tools > Options > Environment} and + select a language in the \gui Language field. The change takes effect after + you restart Qt Creator. + + \bold {Has a reported issue been addressed?} + + You can look up any issue in the + \l{http://bugreports.qt.nokia.com/}{Qt bug tracker}. + + \section1 Qt Designer Integration Questions + + \bold {Why are custom widgets not loaded in Design mode even though it + works in standalone Qt Designer?} + + Qt Designer fetches plugins from standard locations and loads the plugins + that match its build key. The locations are different for standalone and + integrated Qt Designer. + + For more information, see \l{Adding Qt Designer Plugins}. + + \section1 Help Questions + + \bold {The Qt API Reference Documentation is missing and context help does + not find topics. What can I do?} + + Qt Creator comes fully integrated with Qt documentation and examples using + the Qt Help plugin. The integrated Qt Reference Documentation is available + for Qt 4.4 and later. Qt Creator, \QSDK, and other Qt deliverables contain + documentation as .qch files. All the documentation is accessible in the + \gui Help mode. + + To view the documentation that is available and to add documentation, + select \gui {Tools > Options... > Help > Documentation}. For more + information, see \l{Adding External Documentation}. + + \section1 Debugger Questions + + For information on troubleshooting debugger, see + \l{Troubleshooting Debugger}. + + \bold {If I have a choice of GDB versions, which should I use?} + + On Linux and Windows, use the Python-enabled GDB versions that are + installed when you install Qt Creator and Qt SDK. On Mac OS X, use the GDB + provided with Xcode. For a custom target, you can build your own + Python-enabled GDB. Follow the instructions in + \l{http://developer.qt.nokia.com/wiki/QtCreatorBuildGdb}{Building GDB}. + + You must use at least Python version 2.5, but we recommend that you use + version 2.6. + + For more information on setting up debugger, see \l{Setting Up Debugger}. + + \section1 Code Editor Questions + + \bold {How can I get code-completion to work on the standard headers and + phonon?} + + Install a build from March 31, 2009, or later. + + \section1 Compiler Questions + + \bold {How can I make use of my multi-core CPU with Qt Creator?} + + On Linux and Mac OS X, go to \gui Project mode, select your configuration + in the \gui {Build Settings}, locate the \gui {Build Steps}, and add the + following value, where \c{} is the amount of cores in your CPU: + \c{-j } + + On Windows, nmake does not support the \c{-j} parameter. Instead, we + provide a drop-in replacement called jom. You can download a precompiled + version of jom from \l{ftp://ftp.qt.nokia.com/jom/}{Qt FTP server}. + Put jom.exe in a location in the %PATH%. Go to the \gui {Build Settings} + and set jom.exe as the make command. + + \note: Unlike GNU make, jom automatically detects your cores and spawns as + many parallel processes as your CPU has cores. You can override this + behavior by using the \c{-j} parameter as described above. + + \section1 Qt SDK Questions + + \bold {I cannot use QSslSocket with the SDK. What should I do?} + + The Qt build in the SDK is built with QT_NO_OPENSSL defined. Rebuilding it + is possible. For more information, see + \l{http://www.qtcentre.org/forum/f-qt-programming-2/t-qssl-19222-post94842.html}. + + \bold {Which development packages from the distribution are needed on + Ubuntu or Debian?} + + \code + @ + sudo apt-get install libglib2.0-dev libSM-dev libxrender-dev libfontconfig1-dev libxext-dev + @ + \endcode + + If you use QtOpenGL, you also need: + + \code + @ + sudo apt-get install libgl-dev libglu-dev + @ + \endcode + + \section1 Platform Releated Questions + + \bold {Can I develop Qt for Symbian applications with Qt Creator?} + + Qt Creator comes with support for developing Qt applications that target + the Symbian platform. For more information, see + \l{Creating a Mobile Application with Qt SDK}. + + \section1 Questions about New Features + + \bold {Will a requested feature be implemented?} + + If it is a scheduled feature, you can see this in the task tracker. If a + feature already has been implemented, it is mentioned in the + \l{http://qt.gitorious.org/qt-creator/qt-creator/trees/master/dist}{changes file} + for the upcoming release. + + \bold {Why does Qt Creator not use tabs for editors?} + + This question comes up from time to time, so we have considered it + carefully. Here are our main reasons for not using tabs: + + \list + + \o Tabs do not scale. They work fine if you have 5 to 6 editors open, + they become cumbersome with 10, and if you need more horizontal + space than the tab bar, the interface does not work at all. + + \o Tabs do not adapt to your working set. + + \o The common solution is to give the user the ability to reorder + tabs. Now user has to manage tabs instead of writing code. + + \o Tabs force you to limit the amount of open editors, because + otherwise you get confused. + + \endlist + + Consider the following use case: \e {Developers want to switch editors.} + + In fact, developers do not want to switch editors, but might have to do so + to accomplish their tasks. We need to figure out what the tasks are to + provide developers with better ways to navigate while performing the tasks. + + One common factor in many use cases is switching editors while working on a + set of open files. While working on files A and B, users sometimes need to + look at file C. They can press \key Ctrl+Tab to move between the files and + have the files open in the correct editor according to file type. The list + is sorted by last used. + + Typically, users also work on multiple classes or functions that are + related, even though they are defined or declared in different files. + Qt Creator provides two shortcuts for that: \key F2 to follow the symbol + and \key Ctrl+Shift+U to find usages. + + In addition, developers can: + + \list + + \o Press \key F4 to switch between header and source. + + \o Press \key Alt+Left to move backwards in the navigation history. + + \o Use the locator (Ctrl+K) to simply tell Qt Creator where to go. + + \endlist + + The locator can be used to open files, but opening files is also just a + step on the way to accomplish a task. For example, consider the following + use case: \e {Fix AMethod in SomeClass which comes from + someclass.cpp/someclass.h}. + + With a tabbed user interface, developers would search for someclass.cpp in + the tab bar, and then search for \c {::AMethod}, only to find out that the + method is not located in that file. They would then search for someclass.h + in the tab bar, find our that the function is inline, fix the problem, and + forget where they came from. + + With Qt Creator, developers can type \c {Ctrl+K m AMet} to find the method. + Typically, they only need to type 3 to 4 characters of the method name. + They can then fix the problem and press \key Alt+Back to go back to where + they were. + + Other locator filters include \c c for classes, \c : for all symbols, and + (thanks to a community contribution) \c . for symbols in the current file. + +*/ diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc index a59d7f249b6..4aaa8ff6125 100644 --- a/doc/qtcreator.qdoc +++ b/doc/qtcreator.qdoc @@ -153,8 +153,9 @@ \o \l{Showing Task List Files in the Build Issues Pane} \o \l{Using Command Line Options} \o \l{Getting Help} - \o \l{Tips and Tricks} \o \l{Keyboard Shortcuts} + \o \l{FAQ} + \o \l{Tips and Tricks} \o \l{Known Issues} \o \l{Glossary} \o \l{Acknowledgements} @@ -370,7 +371,7 @@ \list - \o GNU Symbolic Debugger (gdb) + \o GNU Symbolic Debugger (GDB) \o Microsoft Console Debugger (CDB) @@ -406,7 +407,7 @@ plugin understands the internal layout of several Qt classes, for example, QString, the Qt containers, and most importantly QObject (and classes derived from it), as well as most containers of the C++ - Standard Library and some gcc and Symbian extensions. This + Standard Library and some GCC and Symbian extensions. This deeper understanding is used to present objects of such classes in a useful way. @@ -1719,7 +1720,7 @@ and remove snippets in the snippet editor. To open the editor, select \gui {Tools > Options... > Text Editor > Snippets}. - \image qtcreator-edit-code-snippets "Snippet options" + \image qtcreator-edit-code-snippets.png "Snippet options" Qt Creator provides you with built-in snippets in the following categories: @@ -3195,8 +3196,10 @@ In a class wizard, you can allow developers to specify the class name, base class, and header and source files for the class. - To see how this works, rename wizard_example.xml as wizard.xml in the helloworld - and listmodels folders. After you restart Qt Creator, the \gui {Custom Classes} + To see how this works, rename wizard_sample.xml as wizard.xml in the + \c {\share\qtcreator\templates\wizards\listmodel\helloworld} and + \c {\share\qtcreator\templates\wizards\listmodel\listmodels} folders. After + you restart Qt Creator, the \gui {Custom Classes} and \gui {Custom Projects} categories appear in the \gui New dialog. \image qtcreator-custom-project-wizards.png "The New dialog with custom projects and classes" @@ -3902,7 +3905,7 @@ \endlist For more information about the project file settings, see - \l{http://doc.qt.nokia.com/4.7/qmake-project-files.html#declaring-other-libraries}{Declaring other Libraries}. + \l{http://doc.qt.nokia.com/4.7/qmake-project-files.html#declaring-other-libraries}{Declaring Other Libraries}. \section1 Example of Adding Internal Libraries @@ -4591,9 +4594,9 @@ By default, Qt Creator runs the remote gdbserver daemon on the device for debugging. However, if the sysroot does not match that of the device, you - can run remote gdb, instead. Select the \gui {Run remote gdb} option in + can run remote GDB, instead. Select the \gui {Use remote GDB} option in \gui {Debugging details}. Select the \gui {Set debugger} link to specify - settings for gdb. + settings for GDB. When you run the application on the \gui{Maemo} target, Qt Creator generates a Debian installation package in the build directory by default. You can deliver @@ -5435,7 +5438,8 @@ \image qtcreator-mobile-project-qt-versions.png "Target Setup dialog" - \o Select \gui Maemo, \gui {Qt Simulator}, and \gui {Symbian Device} targets, + \o Select \gui {Maemo5}, \gui {Qt Simulator}, and \gui {Symbian + Device} targets, and click \gui{Next}. \note Targets are listed if you installed the appropriate development @@ -5868,7 +5872,8 @@ \o In the \gui Id field, enter \e middleRightRect. - \o In \gui {Layout}, select the right and vertical center anchor buttons to + \o In \gui {Layout}, select the vertical center anchor button and + then the right anchor button to anchor the rectangle to the middle right margin of the screen. \o In the \gui Margin field, select 10 for the right anchor and 0 for @@ -6996,7 +7001,11 @@ \title Managing Sessions When you exit Qt Creator, a snapshot of your current workspace is stored - as a \e session. A session is an arbitrary collection of: + as a \e session. To restore the session automatically when you start Qt + Creator, select \gui {File > Session Manager > Restore last session on + startup}. + + A session is an arbitrary collection of: \list \o Open projects with their dependencies (including SUBDIRS projects) @@ -7015,12 +7024,12 @@ to return to working on the first project later. To create a new session or remove existing sessions, select \gui File > - \gui Sessions > \gui{Session Manager}. + \gui{Session Manager}. \image qtcreator-session-manager.png To switch between sessions, choose - \gui File > \gui Session. If you do not create or select a session, + \gui {File > Session Manager}. If you do not create or select a session, Qt Creator always uses the default session, which was created the last time you exited Qt Creator. @@ -7042,7 +7051,7 @@ Qt Creator provides a debugger plugin that acts as an interface between the Qt Creator core and external native debuggers - such as the GNU Symbolic Debugger (gdb), the Microsoft Console Debugger (CDB), + such as the GNU Symbolic Debugger (GDB), the Microsoft Console Debugger (CDB), and a QML/JavaScript debugger. The following sections describe debugging with Qt Creator: @@ -7203,7 +7212,7 @@ Typically, the interaction between Qt Creator and the native debugger is set up automatically and you do not need to do anything. However, you might have an - unsupported gdb version installed, your Linux environment might not have gdb + unsupported GDB version installed, your Linux environment might not have GDB installed at all, or you might want to use the debugging tools for Windows. \note To use the debugging tools for Windows, you must install them and add the @@ -7216,7 +7225,7 @@ \section1 Supported Native Debugger Versions - The debugger plugin supports different builds of the gdb debugger, both + The debugger plugin supports different builds of the GDB debugger, both with and without the ability to use Python scripting. The Python enabled versions are preferred, but they are not available on Mac and on older versions of Linux. @@ -7229,7 +7238,7 @@ The Python version uses a script version of the debugging helpers that does not need any special setup. - The CDB native debugger has similar funtionality to the non-Python gdb debugger + The CDB native debugger has similar funtionality to the non-Python GDB debugger engine. Specifically, it also uses compiled C++ code for the debugging helper library. @@ -7244,26 +7253,26 @@ \o Debugger Modes \row \o Linux - \o gcc - \o gdb + \o GCC + \o GDB \o Yes \o Plain, Terminal, Attach, Remote, Core \row \o Unix - \o gcc - \o gdb + \o GCC + \o GDB \o Yes \o Plain, Terminal, Attach, Remote, Core \row \o Mac OS - \o gcc - \o gdb + \o GCC + \o GDB \o No \o Plain, Terminal, Attach, Core \row \o Windows/MinGW - \o gcc - \o gdb + \o GCC + \o GDB \o Yes \o Plain, Terminal, Attach, Remote, Core \row @@ -7274,14 +7283,14 @@ \o Plain, Terminal, Attach, Post-Mortem \row \o Symbian - \o gcc - \o gdb + \o GCC + \o GDB \o Yes \o On-device \row \o Maemo - \o gcc - \o gdb + \o GCC + \o GDB \o Yes \o On-device \endtable @@ -7294,9 +7303,9 @@ [Advanced Topic] - The gdb native debugger used internally by the debugger plugin runs in + The GDB native debugger used internally by the debugger plugin runs in different adapter modes to cope with the variety - of supported platforms and environments. All gdb adapters inherit from + of supported platforms and environments. All GDB adapters inherit from AbstractGdbAdapter: \list @@ -7314,8 +7323,8 @@ \o RemoteGdbAdapter interacts with the gdbserver running on Linux. - \o CodaGdbAdapter interacts with Symbian devices. The gdb protocol and - the gdb serial protocol are used between gdb and the adapter. The + \o CodaGdbAdapter interacts with Symbian devices. The GDB protocol and + the GDB serial protocol are used between GDB and the adapter. The target communication framework (TCF) protocol is used between the adapter and the CODA debugging agent running on the device. @@ -7339,10 +7348,10 @@ \o Notes \row \o Gdb - \o On Linux and Windows, use the Python-enabled gdb versions that + \o On Linux and Windows, use the Python-enabled GDB versions that are installed when you install Qt Creator and Qt SDK. On Mac OS X, - use the gdb provided with Xcode. - For a custom target, you can build your own Python-enabled gdb. + use the GDB provided with Xcode. + For a custom target, you can build your own Python-enabled GDB. Follow the instructions on \l{http://developer.qt.nokia.com/wiki/QtCreatorBuildGdb}{Building Gdb}. You must use at least Python version 2.5, but we recommend that you @@ -7626,7 +7635,7 @@ causing the \gui{Locals and Watchers} view to show unexpected data. \row - \i The debug information provided by gcc does not include enough + \i The debug information provided by GCC does not include enough information about the time when a variable is initialized. Therefore, Qt Creator can not tell whether the contents of a local variable contains "real data", or "initial noise". If a @@ -7679,7 +7688,7 @@ \note Usually, you do not need this feature, because Qt Creator provides you with better ways to handle the task. For example, instead of using the - gdb \c print command from the command line, you can create a watcher item + GDB \c print command from the command line, you can create a watcher item in the \gui{Locals and Watchers} view and examine the expression there. \section1 Debugging C++ Based Applications @@ -7902,7 +7911,7 @@ \section1 Debugging Helpers Based on Python - Qt Creator uses gdb builds that enable Python scripting to display + Qt Creator uses GDB builds that enable Python scripting to display information in the \gui {Locals and Watchers} view. When Python scripting is used, code (Debugging helpers) does not need to be injected into the debugged process to nicely display QStringList or \c std::map contents, for @@ -7917,14 +7926,14 @@ \list - \o There is no Python-enabled gdb for Mac OS. Mac OS continues + \o There is no Python-enabled GDB for Mac OS. Mac OS continues injection with C++ based debugging helpers. \o On the Symbian platform, an on-device debugging agent restricts the - communication between gdb and the device. Therefore, extracting + communication between GDB and the device. Therefore, extracting QObject properties, for example, is not possible. - \o There is no gdb to communicate with MSVC compiled applications on + \o There is no GDB to communicate with MSVC compiled applications on Windows. So information can be displayed nicely only in a limited fashion by using a cdb extension DLL. @@ -7932,7 +7941,7 @@ \section2 Extending the Python Based Debugging Helpers - On platforms featuring a Python-enabled version of the gdb debugger, + On platforms featuring a Python-enabled version of the GDB debugger, the data extraction is done by a Python script. This is more robust as the script execution is separated from the debugged process. It is also easier to extend as the script is less dependent on the @@ -7940,7 +7949,7 @@ To extend the shipped Python based debugging helpers for custom types, define one Python function per user defined type in the - gdb startup file. By default, the following startup file is used: + GDB startup file. By default, the following startup file is used: \c{~/.gdbinit}. To use another file, select \gui {Tools > Options... > Gdb} and specify a filename in the \gui {Gdb startup script} field. @@ -8148,7 +8157,7 @@ raise an exception. \o \gui{putCallItem(self, name, item, func)} - - Uses gdb to call the function \c func on the value specified by + Uses GDB to call the function \c func on the value specified by \a {item.value} and output the resulting item. This function is not available when debugging core dumps and it is not available on the Symbian platform due to restrictions imposed by the on-device @@ -11077,7 +11086,7 @@ \row \o -disable-gdb - \o Debugger plugin: disable the GNU Symbolic Debugger (gdb) engine. + \o Debugger plugin: disable the GNU Symbolic Debugger (GDB) engine. \row \o -disable-sdb @@ -11208,6 +11217,9 @@ \o Make sure you use at least Qt Creator 2.1. + \o Make sure the debugger is set up properly. For more information, + see \l{Setting Up Debugger}. + \o In the \gui Debug mode, select \gui {Windows > Views > Debugger Log} to open the \gui {Debugger Log} view. Browse the contents of the pane on the right hand side to find out what went wrong. @@ -11230,18 +11242,18 @@ \section1 Built-in Debugger Is Slow During Startup and Runtime - The Qt Creator for Windows installation packages install gdb from MinGW. - Unfortunately, gdb is quite slow on Windows. Qt Creator does not cause - this, as it interacts with gdb and adds custom dumpers for Qt types. + The Qt Creator for Windows installation packages install GDB from MinGW. + Unfortunately, GDB is quite slow on Windows. Qt Creator does not cause + this, as it interacts with GDB and adds custom dumpers for Qt types. \note You can use Qt Creator with MSVC on Windows for debugging. \section1 Debugger Displays Message The message is created by the debugging helpers. Qt Creator posts an - expression to the gdb command line to invoke the debugging helpers. + expression to the GDB command line to invoke the debugging helpers. The expression includes the address of the object to examine. This - address might be modified by gdb before the helper function is called. It + address might be modified by GDB before the helper function is called. It is unclear why and when this happens, but if it happens, the debugging helpers operate on wrong data and come to wrong conclusions. Most likely, they find garbage and declare the variable to be . diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index af161f1e4da..c106c6fce01 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -1440,7 +1440,7 @@ def qdump__QTextDocument(d, item): def qdump__QUrl(d, item): try: data = item.value["d"].dereference() - d.putStringValue(data["encodedOriginal"]) + d.putByteArrayValue(data["encodedOriginal"]) except: d.putPlainChildren(item) return diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/AnchorButtons.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/AnchorButtons.qml index c2a607d10b7..3f4b8fbf4a9 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/AnchorButtons.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/AnchorButtons.qml @@ -131,6 +131,7 @@ QWidget { styleSheetFile: "anchorfill.css"; toolTip: enabled ? qsTr("Fill to parent") : qsTr("Setting anchors in states is not supported.") checkable: true + checked: anchorBackend.isFilled; onReleased: { if (checked) { diff --git a/share/qtcreator/qmldesigner/propertyeditor/Qt/Transformation.qml b/share/qtcreator/qmldesigner/propertyeditor/Qt/Transformation.qml index aa1a724d364..cdffbfb4aa6 100644 --- a/share/qtcreator/qmldesigner/propertyeditor/Qt/Transformation.qml +++ b/share/qtcreator/qmldesigner/propertyeditor/Qt/Transformation.qml @@ -69,14 +69,14 @@ GroupBox { backendValue: backendValues.scale; property variant pureValue: backendValues.scale.value; onPureValueChanged: { - if (value != pureValue * 100) + if (value != pureValue * 10) value = pureValue * 10; } minimum: 1; - maximum: 100; + maximum: 10; singleStep: 1; onValueChanged: { - if ((value > 5) && (value < 100)) + if ((value > 0) && (value < 11)) backendValues.scale.value = value / 10; } } diff --git a/share/qtcreator/templates/mobileapp/mainwindow.cpp b/share/qtcreator/templates/mobileapp/mainwindow.cpp index f8cffe1c254..939f07247ab 100644 --- a/share/qtcreator/templates/mobileapp/mainwindow.cpp +++ b/share/qtcreator/templates/mobileapp/mainwindow.cpp @@ -1,11 +1,3 @@ -/* - This file was generated by the Mobile Qt Application wizard of Qt Creator. - MainWindow is a convenience class containing mobile device specific code - such as screen orientation handling. - It is recommended not to modify this file, since newer versions of Qt Creator - may offer an updated version of it. -*/ - #include "mainwindow.h" #include "ui_mainwindow.h" diff --git a/share/qtcreator/templates/mobileapp/mainwindow.h b/share/qtcreator/templates/mobileapp/mainwindow.h index 71b20fda37a..eb446748ecc 100644 --- a/share/qtcreator/templates/mobileapp/mainwindow.h +++ b/share/qtcreator/templates/mobileapp/mainwindow.h @@ -1,11 +1,3 @@ -/* - This file was generated by the Mobile Qt Application wizard of Qt Creator. - MainWindow is a convenience class containing mobile device specific code - such as screen orientation handling. - It is recommended not to modify this file, since newer versions of Qt Creator - may offer an updated version of it. -*/ - #ifndef MAINWINDOW_H #define MAINWINDOW_H diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts index 141432b800c..fd398fa5e40 100644 --- a/share/qtcreator/translations/qtcreator_de.ts +++ b/share/qtcreator/translations/qtcreator_de.ts @@ -318,18 +318,6 @@ Arguments Argumente - - Please specify the path to the CMake executable. No CMake executable was found in the path. - Bitte geben Sie den Pfad zu der ausführbaren Datei von cmake an. Sie konnte nicht im Pfad gefunden werden. - - - The CMake executable (%1) does not exist. - Die ausführbaren Datei von cmake (%1) existiert nicht. - - - The path %1 is not a valid CMake. - Der Pfad %1 ist keine gültige CMake-Installation. - The directory %1 does not contain a cbp file. Qt Creator needs to create this file by running CMake. Some projects require command line arguments to the initial CMake call. Das Verzeichnis %1 enthält keine cbp-Datei. Qt Creator muss die Datei durch einen cmake-Aufruf erzeugen. Für einige Projekte sind dazu Kommandozeilenargumente erforderlich. @@ -354,22 +342,34 @@ MinGW Generator (%1) MinGW-Generator (%1) + + No valid cmake executable specified. + Es wurde keine ausführbare cmake-Datei angegeben. + + + CMake exited with errors. Please check CMake output. + CMake wurde mit einem Fehler beendet. Bitte prüfen Sie die Ausgabe von CMake. + NMake Generator (%1) NMake-Generator (%1) + + Please specify the path to the cmake executable. No cmake executable was found in the path. + Bitte geben Sie den Pfad zu der ausführbaren Datei von cmake an. Sie konnte nicht im Pfad gefunden werden. + + + The cmake executable (%1) does not exist. + Die ausführbaren Datei von cmake (%1) existiert nicht. + + + The path %1 is not a valid cmake. + Der Pfad %1 ist keine gültige CMake-Installation. + The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used tool chain here and rerun CMake. Or simply finish the wizard directly. Der Ordner %1 enthält bereits eine hinreichend aktuelle cbp-Datei. Sie können spezielle Argumente angeben oder die Toolchain ändern und cmake noch einmal ausführen. Oder,. beenden Sie den Wizard an dieser Stelle. - - No valid CMake executable specified. - Es wurde keine ausführbare cmake-Datei angegeben. - - - CMake exited with errors. Please check cmake output. - CMake wurde mit einem Fehler beendet. Bitte prüfen Sie die Ausgabe von cmake. - CMakeProjectManager::Internal::CMakeSettingsPage @@ -2645,10 +2645,6 @@ Qt Creator kann sich nicht anhängen. Skip Known Frames Bekannte Stellen überspringen - - Selecting this results in well-known but usually not interesting frames belonging to reference counting and signal emission being skipped while single-stepping. - Bewirkt, dass nicht relevante Aufrufe (wie zum Beispiel zur Referenzzählung und zur Signalübermittlung gehörige Aufrufe) beim Einzelschritt übersprungen werden. - Enable Reverse Debugging Rückwärts Debuggen aktivieren @@ -2696,22 +2692,10 @@ Qt Creator kann sich nicht anhängen. Debugger::Internal::GdbEngine - - The Gdb process crashed some time after starting successfully. - Der Gdb-Prozess ist einige Zeit nach dem Start abgestürzt. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. Zeitüberschreitung bei der letzten waitFor...()-Funktion. Der Status des QProcess ist unverändert, und waitFor...() kann noch einmal gerufen. - - An error occurred when attempting to write to the Gdb process. For example, the process may not be running, or it may have closed its input channel. - Ein Fehler trat beim Versuch des Schreibens zum Gdb-Prozess auf. Wahrscheinlich läuft der Prozess nicht, oder hat seinen Eingabekanal geschlossen. - - - An error occurred when attempting to read from the Gdb process. For example, the process may not be running. - Ein Fehler trat beim Versuch des Lesens vom Gdb-Prozess auf. Wahrscheinlich läuft der Prozess nicht. - Reading %1... Lese %1... @@ -2740,6 +2724,36 @@ Qt Creator kann sich nicht anhängen. Execution Error Fehler bei der Ausführung + + The gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. +%2 + Der Start des Gdb-Prozesses schlug fehl. Entweder fehlt die ausführbare Datei '%1' oder die Berechtigungen sind nicht ausreichend. +%2 + + + The gdb process crashed some time after starting successfully. + Der Gdb-Prozess ist einige Zeit nach dem Start abgestürzt. + + + An error occurred when attempting to write to the gdb process. For example, the process may not be running, or it may have closed its input channel. + Ein Fehler trat beim Versuch des Schreibens zum Gdb-Prozess auf. Wahrscheinlich läuft der Prozess nicht, oder hat seinen Eingabekanal geschlossen. + + + An error occurred when attempting to read from the gdb process. For example, the process may not be running. + Ein Fehler trat beim Versuch des Lesens vom gdb-Prozess auf. Wahrscheinlich läuft der Prozess nicht. + + + An unknown error in the gdb process occurred. + Im gdb-Prozess trat ein unbekannter Fehler auf. + + + GDB not responding + GDB antwortet nicht + + + Give GDB more time + GDB mehr Zeit geben + Cannot continue debugged process: @@ -2798,10 +2812,6 @@ This might yield incorrect results. Version der Ausgabe-Hilfsbibliothek: %1, %n unterstützte Datentypen. - - An unknown error in the Gdb process occurred. - Im Gdb-Prozess trat ein unbekannter Fehler auf. - An exception was triggered. Eine Ausnahme wurde ausgelöst. @@ -2856,14 +2866,6 @@ You can choose between waiting longer or abort debugging. Der Gdb-Prozess hat nach %1 Sekunde nicht auf das Kommando reagiert. Das könnte bedeuten, dass er sich in einer Endlosschleife befinded oder für die Operation mehr Zeit benötigt. Sie haben die Wahl zwischen Abwarten oder Abbrechen. - - Gdb not responding - Gdb antwortet nicht - - - Give gdb more time - Fortsetzen - Stop debugging Debuggen beenden @@ -2936,12 +2938,6 @@ Sie haben die Wahl zwischen Abwarten oder Abbrechen. Running requested... Fortsetzung angefordert... - - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. -%2 - Der Start des Gdb-Prozesses schlug fehl. Entweder fehlt die ausführbare Datei '%1' oder die Berechtigungen sind nicht ausreichend. -%2 - Raw structure Rohdaten @@ -3016,6 +3012,16 @@ Sie haben die Wahl zwischen Abwarten oder Abbrechen. Could not find a widget. Es konnte kein Widget gefunden werden. + + The GDB installed at %1 cannot find a valid python installation in its %2 subdirectory. +You may set the environment variable PYTHONPATH to point to your installation. + Der GDB aus %1 konnte keine Python-Installation in dem Unterverzeichnis %2 finden. +Sie können die Umgebungsvariable PYTHONPATH setzen, um auf die Installation zu verweisen. + + + GDB I/O Error + GDB Ein/Ausgabefehler + The gdb process crashed. Der gdb-Prozess ist abgestürzt. @@ -3024,6 +3030,10 @@ Sie haben die Wahl zwischen Abwarten oder Abbrechen. The gdb process exited unexpectedly (code %1) Der Gdb-Prozess wurde plötzlich beendet (%1) + + Unexpected GDB Exit + GDB unerwartet beendet + Failed to start application: Die Anwendung konnte nicht gestartet werden: @@ -3062,20 +3072,6 @@ Sie haben die Wahl zwischen Abwarten oder Abbrechen. The gdb location must be given as an absolute path in the debugger settings (%1). Es muss ein absoluter Pfad für die ausführbare gdb-Datei in den Debugger-Einstellungen angegeben werden (%1). - - The gdb installed at %1 cannot find a valid python installation in its %2 subdirectory. -You may set the environment variable PYTHONPATH to point to your installation. - Der gdb aus %1 konnte keine Python-Installation in dem Unterverzeichnis %2 finden. -Sie können die Umgebungsvariable PYTHONPATH setzen, um auf die Installation zu verweisen. - - - Gdb I/O Error - Gdb Ein/Ausgabefehler - - - Unexpected Gdb Exit - Gdb unerwartet beendet - Adapter start failed Der Start des Adapters schlug fehl @@ -3096,8 +3092,8 @@ Sie können die Umgebungsvariable PYTHONPATH setzen, um auf die Installation zu Debugger::Internal::GdbOptionsPage - Gdb - Gdb + GDB + GDB Choose Location of Startup Script File @@ -3697,10 +3693,18 @@ Sie können die Umgebungsvariable PYTHONPATH setzen, um auf die Installation zu Locals and Watchers Lokale Variablen und Überwachte Ausdrücke + + Change Display for Type "%1": + Anzeigeformat für den Typ '%1' ändern: + Automatic Automatisch + + Change Display for Object Named "%1": + Format der Anzeige für das Objekt mit dem Namen "%1" ändern: + Insert New Watch Item Neuen Überwachten Ausdruck einfügen @@ -3753,18 +3757,14 @@ Sie können die Umgebungsvariable PYTHONPATH setzen, um auf die Installation zu Show Unprintable Characters as Hexadecimal Nicht druckbare Zeichen hexadezimal anzeigen - - Change Display for Type "%1" - Anzeigeformat für den Typ '%1' ändern - - - Change Display for Object Named "%1" - Format der Anzeige für das Objekt mit dem Namen "%1" ändern - Use Display Format Based on Type Anzeigeformat per Typ verwenden' + + Change Display for Type or Item... + Anzeigeformat für Typ oder Element ändern... + Add Watchpoint at Object's Address (0x%1) Beim Speicherzugriff auf die Adresse des Objekts (0x%1) anhalten @@ -3809,6 +3809,14 @@ Sie können die Umgebungsvariable PYTHONPATH setzen, um auf die Installation zu Close Editor Tooltips Editor-Tooltips schließen + + Enter watch expression + Überwachten Ausdruck eingeben + + + Expression: + Ausdruck: + Locals & Watchers Lokale Variablen und Überwachte Ausdrücke @@ -4805,21 +4813,13 @@ Add, modify, and remove document filters, which determine the documentation set GdbOptionsPage - - This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. - Ein Skript mit Kommandos, die unmittelbar nach dem Gdb-Start ausgeführt werden (optional). - - - Gdb startup script: - Gdb-Startskript: - This is the slowest but safest option. Die sicherste Einstellung, zugleich aber auch die langsamste. Try to set breakpoints in plugins always automatically. - Versuche, Haltepunkte in Plugins automatisch zu setzen. + Versuche, Haltepunkte in Plugins automatisch zu setzen. Try to set breakpoints in selected plugins @@ -4833,31 +4833,18 @@ Add, modify, and remove document filters, which determine the documentation set Never set breakpoints in plugins automatically Haltepunkte in Plugins niemals automatisch setzen - - Gdb timeout: - Gdb-Timeout: - This is the number of seconds Qt Creator will wait before it terminates non-responsive gdb process. The default value of 20 seconds should be sufficient for most applications, but there are situations when loading big libraries or listing source files takes much longer than that on slow machines. In this case, the value should be increased. - Anzahl der Sekunden, die Qt Creator abwartet, bevor gdb-Prozesse abgebrochen werden, die nicht mehr reagieren. Die Vorgabe von 20 Sekunden sollte für die meisten Anwendungsfälle ausreichen, aber es können Situationen auftreten, in denen das Laden großer Bibliotheken oder das Auflisten der Quelldateien viel länger dauert (auf langsamen Maschinen). In diesem Falle sollte der Wert erhöht werden. - - - Gdb - Gdb + Anzahl der Sekunden, die Qt Creator abwartet, bevor gdb-Prozesse abgebrochen werden, die nicht mehr reagieren. Die Vorgabe von 20 Sekunden sollte für die meisten Anwendungsfälle ausreichen, aber es können Situationen auftreten, in denen das Laden großer Bibliotheken oder das Auflisten der Quelldateien viel länger dauert (auf langsamen Maschinen). In diesem Falle sollte der Wert erhöht werden. Enable reverse debugging Rückwärts Debuggen aktivieren - - When this option is checked, 'Step Into' compresses several steps into one in certain situations, leading to 'less noisy' debugging. So will, e.g., the atomic - reference counting code be skipped, and a single 'Step Into' for a signal emission will end up directly in the slot connected to it. - Diese Option bewirkt, dass 'Einzelschritt in' in bestimmten Situationen mehrere Schritte zusammenfasst, was das Debuggen beschleunigt. Zum Beispiel wird der Code des atomaren Referenzzählung übersprungen; und bei der Emission eines Signals gelangt man zum verbundenen Slot. - Skip known frames when stepping Bekannte Stellen beim Einzelschritt überspringen @@ -4882,6 +4869,59 @@ on slow machines. In this case, the value should be increased. Use asynchronous mode to control the inferior Asynchronen Modus zur Steuerung des zu debuggenden Prozesses verwenden + + When this option is checked, 'Step Into' compresses several steps into one in certain situations, leading to 'less noisy' debugging. So will, e.g., the atomic reference counting code be skipped, and a single 'Step Into' for a signal emission will end up directly in the slot connected to it. + Diese Option bewirkt, dass 'Einzelschritt in' in bestimmten Situationen mehrere Schritte zusammenfasst, was das Debuggen beschleunigt. Zum Beispiel wird der Code des atomaren Referenzzählung übersprungen; und bei der Emission eines Signals gelangt man direkt zum verbundenen Slot. + + + This will show a message box as soon as your application receives a signal like SIGSEGV during debugging. + Zeigt ein Benachrichtigungsfenster an, wenn die Anwendung während des Debuggens ein Signal wie SIGSEGV erhält. + + + This allows or inhibits reading the user's default .gdbinit file on debugger startup. + Gestattet oder unterdrückt das Lesen der Vorgabe-.gdbinit-Datei des Nutzers beim Starten des Debuggers. + + + GDB + GDB + + + This is either empty or points to a file containing GDB commands that will be executed immediately after GDB starts up. + Ein Skript mit Kommandos, die unmittelbar nach dem GDB-Start ausgeführt werden (optional). + + + GDB startup script: + GDB-Startskript: + + + GDB timeout: + GDB-Timeout: + + + GDB allows setting breakpoints on source lines for which no code was generated. In such situations the breakpoint is shifted to the next source code line for which code was actually generated. This option reflects such temporary change by moving the breakpoint markers in the source code editor. + Nicht alle Quellcode-Zeilen bewirken die Erzeugung von ausführbarem Code. GDB gestattet es dennoch, auf solche Zeilen einen Haltepunkt zu setzen. Dieser wird dann auf die nächste Zeile, für die Code erzeugt wurde, verschoben. Diese Einstellung bewirkt, dass die Haltepunkt-Marke im Quellcode-Editor entsprechend verschoben wird. + + + Enable reverse debugging Selecting this enables reverse debugging. NOTE: This feature is very slow and unstable on the GDB side. It exhibits unpredictable behaviour when going backwards over system calls and is very likely to destroy your debugging session. + Rückwärts-Debuggen aktivieren. Hinweis: Diese Funktionalität ist sehr instabil und langsam auf der GDB-Seite. Es kann unvorhersehbares Verhalten auftreten, wenn man rückwärts über einen Systemaufruf geht, und die Debugger-Sitzung kann leicht zerstört werden. + + + This is the number of seconds Qt Creator will wait before +it terminates a non-responsive GDB process. The default value of 20 seconds +should be sufficient for most applications, but there are situations when +loading big libraries or listing source files takes much longer than that +on slow machines. In this case, the value should be increased. + Anzahl der Sekunden, die Qt Creator abwartet, bevor GDB-Prozesse abgebrochen werden, die nicht mehr reagieren. Die Vorgabe von 20 Sekunden sollte für die meisten Anwendungsfälle ausreichen, aber es können Situationen auftreten, in denen das Laden großer Bibliotheken oder das Auflisten der Quelldateien viel länger dauert (auf langsamen Maschinen). In diesem Falle sollte der Wert erhöht werden. + + + Allows 'Step Into' to compress several steps into one step for less noisy debugging. For example, the atomic reference + counting code is skipped, and a single 'Step Into' for a signal emission ends up directly in the slot connected to it. + Diese Option bewirkt, dass 'Einzelschritt in' in bestimmten Situationen mehrere Schritte zusammenfasst, was das Debuggen beschleunigt. Zum Beispiel wird der Code des atomaren Referenzzählung übersprungen; und bei der Emission eines Signals gelangt man direkt zum verbundenen Slot. + + + Try to set breakpoints in plugins always automatically + Versuche, Haltepunkte in Plugins automatisch zu setzen. + GeneralSettingsPage @@ -6139,14 +6179,6 @@ rückgängig machen? Bookmarks Lesezeichen - - &Index - &Index - - - &Contents - &Inhalt - Home Startseite @@ -6203,6 +6235,14 @@ rückgängig machen? Next Nächste + + Index + Index + + + Contents + Inhalt + Add Bookmark Lesezeichen hinzufügen @@ -7662,10 +7702,6 @@ Fehler: %2 Save all files before build Alle Dateien vor Erstellen speichern - - Show compiler output on building - Compiler-Ausgabe beim Erstellen anzeigen - Clear old application output on a new run Ausgabe vorangegangener Ausführungen löschen @@ -7695,8 +7731,12 @@ Fehler: %2 Nachfrage beim Stoppen von Anwendungen - Pop up application output pane on running - Ausgabepanel bei der Ausgeführung von Anwendungen zeigen + Open compiler output pane when building + Compiler-Ausgabe beim Erstellen anzeigen + + + Open application output pane when running + Ausgabepanel bei der Ausführung von Anwendungen zeigen @@ -8188,16 +8228,6 @@ konnte dem Projekt '%2' nicht hinzugefügt werden. Title of dialog Neues Projekt - - Failed to open project - Das Projekt konnte nicht geöffnet werden - - - Failed to open project: -%1 - Das Projekt konnte nicht geöffnet werden: -%1 - Cancel Build && Close Erstellen abbrechen und schließen @@ -9135,6 +9165,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü %1 build directory Im Ordner %1 existiert ein inkompatibler Build, der überschrieben wird. + + <No tool chain selected> + <Keine Toolchain ausgewählt> + Manage Verwaltung @@ -9444,6 +9478,18 @@ S60 emulator run configuration default display name, %1 is base pro-File nameQt4 MakeStep display name. Make + + Qt Creator needs a tool chain set up to build. Please configure a tool chain in Project mode. + Qt Creator benötigt eine Toolchain zum Erstellen des Projekts. Bitte richten Sie eine Toolchain im Projektmodus ein. + + + Makefile not found. Please check your build settings + Die Makefile-Datei konnte nicht gefunden werden. Bitte überprüfen Sie die Einstellungen zur Erstellung. + + + Configuration is faulty, please check the Build Issues view for details. + Die Konfiguration ist fehlerhaft. Details befinden sich in der Ansicht "Build-Probleme". + Qt4ProjectManager::MakeStepConfigWidget @@ -9528,14 +9574,6 @@ S60 emulator run configuration default display name, %1 is base pro-File nameMinGW from %1 MinGW aus %1 - - WINSCW from %1 - WINSCW aus %1 - - - GCCE from %1 - GCCE aus %1 - <not found> <nicht gefunden> @@ -10053,10 +10091,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich &Architecture: &Architektur: - - &GNU target - &GNU-Zielplattform - Sys&root: Sys&root: @@ -10066,8 +10100,12 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Server-Startskript &benutzen: - Server st&art script: - Server-&Startskript: + &GNU target: + &GNU-Zielplattform: + + + &Server start script: + &Server-Startskript: @@ -11179,6 +11217,10 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: Cannot create temporary file: %1 Es konnte keine temporäre Datei erstellt werden: %1 + + Cannot write temporary file. Disk full? + Es konnte keine temporäre Datei erstellt werden. Möglicherweise ist kein Speicherplatz mehr auf der Festplatte vorhanden? + Unexpected output from helper program (%1). Die Ausgabe des Hilfsprogrammes (%1) kann nicht ausgewertet werden. @@ -11895,9 +11937,9 @@ p, li { white-space: pre-wrap; } Debugger::Internal::AbstractGdbAdapter - The Gdb process could not be stopped: + The gdb process could not be stopped: %1 - Der Gdb-Prozess konnte nicht angehalten werden: + Der gdb-Prozess konnte nicht angehalten werden: %1 @@ -13375,6 +13417,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen.%1 is an invalid id %1 ist keine gültige ID + + %1 already exists + %1 existiert bereits + Warning Warnung @@ -13701,13 +13747,9 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen.Debugging type: Debuggen: - - Use remote gdb - gdb-Kommandozeilenprogramm benutzen - Use remote gdbserver - Gdb-Server benutzen + Gdb-Server benutzen Base environment for this run configuration: @@ -13729,13 +13771,9 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen.Choose directory to mount Ordner für mount-Vorgang auswählen - - <b>Debugging details:</b> Use gdb - <b>Debuggereinstellung:</b> Benutze gdb - <b>Debugging details:</b> Use gdbserver - <b>Debuggereinstellung:</b> Benutze Gdb-Server + <b>Debuggereinstellung:</b> Benutze Gdb-Server Cancel Fetch Operation @@ -13761,6 +13799,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen.No local directories to be mounted on the device. Es existieren keine lokalen Ordner, die auf dem Mobilgerät angehängt werden können (mount). + + Use remote GDB + Entfernten GDB benutzen + + + Use remote GDB server + GDB-Server benutzen + + + <b>Debugging details:</b> Use GDB + <b>Debuggereinstellung:</b> Benutze GDB + + + <b>Debugging details:</b> Use GDB server + <b>Debuggereinstellung:</b> Benutze GDB-Server + One local directory to be mounted on the device. Es existiert ein lokaler Ordner, der auf dem Mobilgerät angehängt werden kann (mount). @@ -14288,8 +14342,8 @@ Vorheriger vorzeichenbehafteter Dezimalwert (Big Endian): %4 QmlProjectManager::QmlProject - Error while loading project file! - Fehler beim Laden der Projektdatei! + Error while loading project file %1. + Fehler beim Laden der Projektdatei %1. @@ -14699,8 +14753,12 @@ Haben Sie Qemu gestartet? Die Überprüfung der Qt-Version schlug fehl! Auf dem Gerät muss Qt-Version 4.6.2 oder neuer installiert sein. - Mad Developer is not installed.<br>You will not be able to deploy to this device. - Mad Developer ist nicht installiert.<br>Ein Deployment auf dieses Mobilgerät ist nicht möglich. + %1 is not installed.<br>You will not be able to deploy to this device. + %1 ist nicht installiert.<br>Ein Deployment auf dieses Mobilgerät ist nicht möglich. + + + Please switch the device to developer mode via Settings -> Security. + Bitte schalten sie das Mobilgerät über Einstellungen -> Sicherheit in den Entwicklermodus. Error retrieving list of used ports: %1 @@ -16262,6 +16320,10 @@ Es wird versucht eine Paketdatei zu erstellen, es können aber Probleme auftrete %1 is an invalid id %1 ist keine gültige ID + + %1 already exists + %1 existiert bereits + emptyPane @@ -16611,29 +16673,6 @@ IDs müssen außerdem mit einem Kleinbuchstaben beginnen. Untergeordnete Projekte anzeigen - - AttachTcfDialog - - Start Debugger - Debugger starten - - - Host and port: - Host und Portnummer: - - - Architecture: - Architektur: - - - Use server start script: - Server-Startskript benutzen: - - - Server start script: - Server-Startskript: - - Help::Internal::RemoteFilterOptions @@ -16816,10 +16855,6 @@ IDs müssen außerdem mit einem Kleinbuchstaben beginnen. <b>Files to install for subproject:</b> <b>Zu installierende Dateien des Unterprojektes:</b> - - <a href=irrelevant>Manage device configurations</a> - <a href=irrelevant>Gerätekonfigurationen verwalten</a> - Edit the project file to add or remove entries. Projektdatei bearbeiten, um Einträge hinzuzufügen oder zu löschen. @@ -16832,6 +16867,10 @@ IDs müssen außerdem mit einem Kleinbuchstaben beginnen. Add Launcher Icon ... Icon für Starter hinzufügen... + + <a href="irrelevant">Manage device configurations</a> + <a href=irrelevant>Gerätekonfigurationen verwalten</a> + QtQuickAppWizardSourcesPage @@ -17210,13 +17249,6 @@ Server: %2. Der Ordner %1 konnte nicht angelegt werden. - - Debugger::Internal::AttachTcfDialog - - Select Executable - Ausführbare Datei auswählen - - Debugger::DebuggerPlugin @@ -17319,12 +17351,12 @@ Das Setzen von Haltepunkten nach Dateinamen und Zeilennummern könnte nicht funk Das Lesen der Ausgabe der Anwendung wurde plötzlich abgebrochen. - Remote gdb failed to start. - Der entfernte gdb-Prozess konnte nicht gestartet werden. + Remote GDB failed to start. + Der entfernte GDB-Prozess konnte nicht gestartet werden. - Remote gdb crashed. - Der entfernte gdb-Prozess ist abgestürzt. + Remote GDB crashed. + Der entfernte GDB-Prozess ist abgestürzt. @@ -17355,21 +17387,6 @@ Das Setzen von Haltepunkten nach Dateinamen und Zeilennummern könnte nicht funk Vollständiger Name - - Debugger::Internal::TcfEngine - - %1. - %1. - - - Running requested... - Fortsetzung angefordert... - - - Stopped. - Angehalten. - - Git::Internal::SettingsPageWidget @@ -19233,36 +19250,32 @@ Sie können diese Anwendung sowohl auf Desktop- als auch auf mobilen Plattformen Funktionsname: - Function "main()" - Funktion "main()" + Break when C++ Exception is Thrown + Halte beim Auftreten einer C++-Ausnahme an - throw - throw + Break when C++ Exception is Caught + Halte beim der Behandlung einer C++-Ausnahme an - catch - catch + Break when Function "main()" Starts + Halte bei Erreichen der Funktion "main()" an - fork - fork + Break when a new Process is Forked + Halte beim Starten eines neuen Prozesses an - exec - exec + Break when a new Process is Executed + Halte beim Beginn der Ausführung eines neuen Prozesses an - vfork - vfork + Break when a System Call is Executed + Halte bei Systemaufruf an - syscall - syscall - - - Address (Watchpoint) - Adresse (Watchpoint) + Break on Data Access (Watchpoint) + Halte bei Datenzugriff an (Watchpoint) Specifying the module (base name of the library or executable) @@ -19274,13 +19287,13 @@ erheblich reduzieren (CDB, LLDB). Debugger command to be executed when the breakpoint is hit. -gdb allows for specifying a sequence of commands separated by the delimiter '\n'. +GDB allows for specifying a sequence of commands separated by the delimiter '\n'. Debugger-Kommando zur Ausführung beim Auslösen des Haltepunkts. -Bei gdb kann eine durch '\n' getrennte Kommandosequenz angegeben werden. +Bei GDB kann eine durch '\n' getrennte Kommandosequenz angegeben werden. - <html><head/><body><p>Determines how the path is specified when setting breakpoints:</p><ul><li><i>Use Engine Default</i>: Preferred setting of the debugger engine.</li><li><i>Use Full Path</i>: Pass full path, avoiding ambiguities should files of the same name exist in several modules. This is the engine default for CDB and LLDB.</li><li><i>Use File Name</i>: Pass the file name only. This is useful when using a source tree whose location does not match the one used when building the modules. It is the engine default for gdb as using full paths can be slow with this engine.</li></ul></body></html> - <html><head/><body><p>Bestimmt, wie der Pfad beim Setzen von Haltepunkten angegeben wird:</p><ul><li><i>Engine-Vorgabe verwenden</i>: Vorgabeeinstellung des Engine.</li><li><i>Vollständigen Pfad verwenden</i>: Der vollständige Pfadname wird übergeben. Dadurch werden Zweideutigkeiten vermieden, wenn in verschiedenenen Modulen Quelldateien gleichen Namens vorkommen. Dies ist die Vorgabeeinstellung bei CDB und LLDB.</li><li><i>Dateinamen verwenden</i>: Es wird lediglich der Dateiname übergeben. Diese Einstellung kann verwendet werden, wenn sich die Quellen in einem anderen Verzeichnisbaum befinden, als es beim Erstellen der Module der Fall war. Es ist die Vorgabeeinstellung beim gdb-Engine, da die Verwendung vollständiger Pfade bei diesem Engine unter Umständen langsam ist.</li></ul></body></html> + <html><head/><body><p>Determines how the path is specified when setting breakpoints:</p><ul><li><i>Use Engine Default</i>: Preferred setting of the debugger engine.</li><li><i>Use Full Path</i>: Pass full path, avoiding ambiguities should files of the same name exist in several modules. This is the engine default for CDB and LLDB.</li><li><i>Use File Name</i>: Pass the file name only. This is useful when using a source tree whose location does not match the one used when building the modules. It is the engine default for GDB as using full paths can be slow with this engine.</li></ul></body></html> + <html><head/><body><p>Bestimmt, wie der Pfad beim Setzen von Haltepunkten angegeben wird:</p><ul><li><i>Engine-Vorgabe verwenden</i>: Vorgabeeinstellung des Engine.</li><li><i>Vollständigen Pfad verwenden</i>: Der vollständige Pfadname wird übergeben. Dadurch werden Zweideutigkeiten vermieden, wenn in verschiedenenen Modulen Quelldateien gleichen Namens vorkommen. Dies ist die Vorgabeeinstellung bei CDB und LLDB.</li><li><i>Dateinamen verwenden</i>: Es wird lediglich der Dateiname übergeben. Diese Einstellung kann verwendet werden, wenn sich die Quellen in einem anderen Verzeichnisbaum befinden, als es beim Erstellen der Module der Fall war. Es ist die Vorgabeeinstellung beim GDB-Engine, da die Verwendung vollständiger Pfade bei diesem Engine unter Umständen langsam ist.</li></ul></body></html> Address @@ -19657,8 +19670,12 @@ Fehler: %2 LLDB aktivieren - Use Gdb python dumpers - Gdb Python Dumper verwenden + Use GDB python dumpers + GDB-Python Dumper verwenden + + + Use GDB Python dumpers + GDB-Python Dumper verwenden @@ -19759,14 +19776,6 @@ Fehler: %2 Qt4ProjectManager::Internal::DebuggingHelper - - Helps showing content of Qt types. Only used in older versions of gdb. - Hilft bei der Anzeige des Inhalts von Qt-Datentypen. Wird nur von älteren Versionen von gdb benutzt. - - - Gdb Helper: - Gdb-Hilfsbibliothek: - Used to extract QML type information from library-based plugins. Wird zur Bestimmung von QML-Typinformationen für bibliotheksbasierte Plugins benutzt. @@ -19807,6 +19816,14 @@ Fehler: %2 QML Debugging Library: QML-Debugbibliothek: + + Helps showing content of Qt types. Only used in older versions of GDB. + Hilft bei der Anzeige des Inhalts von Qt-Datentypen. Wird nur von älteren Versionen von GDB benutzt. + + + GDB Helper: + GDB-Hilfsbibliothek: + MaemoDeviceConfigurationsSettingsWidget @@ -19964,24 +19981,6 @@ Fehler: %2 WizardPage WizardPage - - To deploy the public key to your device, please execute the following steps: -<ul> -<li>Connect the device to your computer (unless you plan to connect via WLAN).</li> -<li>On the device, start the "Mad Developer" application.</li> -<li>In "Mad Developer", configure the device's IP address to the one shown below (or edit the field below to match the address you have configured).</li> -<li>In "Mad Developer", press "Developer Password" and enter it in the field below.</li> -<li>Click "Deploy Key"</li> - - Um den Schlüssel zum Mobilgerät zu senden, führen Sie bitte die folgenden Schritte aus: -<ul> -<li>Verbinden Sie das Mobilgerät mit dem Computer (sofern kein WLAN verwendet wird).</li> -<li>Starten Sie den Anwendung "Mad Developer" auf dem Mobilgerät.</li> -<li>Stellen Sie die unten angezeigte IP-Adresse in der Anwendung "Mad Developer" ein (oder passen Sie die unten angezeigte Adresse der von Ihnen konfigurierten Adresse an).</li> -<li>Betätigen Sie "Developer Password" in der Anwendung "Mad Developer" und tragen Sie es in das unten gezeigte Feld "Passwort" ein.</li> -<li>Betätigen Sie "Schlüssel senden".</li> - - Device address: Adresse des Geräts: @@ -19994,6 +19993,24 @@ Fehler: %2 Deploy Key Schlüssel senden + + To deploy the public key to your device, please execute the following steps: +<ul> +<li>Connect the device to your computer (unless you plan to connect via WLAN).</li> +<li>On the device, start the "%%%maddev%%%" application.</li> +<li>In "%%%maddev%%%", configure the device's IP address to the one shown below (or edit the field below to match the address you have configured).</li> +<li>In "%%%maddev%%%", press "Developer Password" and enter it in the field below.</li> +<li>Click "Deploy Key"</li> + + Um den Schlüssel zum Mobilgerät zu senden, führen Sie bitte die folgenden Schritte aus: +<ul> +<li>Verbinden Sie das Mobilgerät mit dem Computer (sofern kein WLAN verwendet wird).</li> +<li>Starten Sie den Anwendung "%%%maddev%%%" auf dem Mobilgerät.</li> +<li>Stellen Sie die unten angezeigte IP-Adresse in der Anwendung "%%%maddev%%%" ein (oder passen Sie die unten angezeigte Adresse der von Ihnen konfigurierten Adresse an).</li> +<li>Betätigen Sie "Developer Password" in der Anwendung "%%%maddev%%%" und tragen Sie es in das unten gezeigte Feld "Passwort" ein.</li> +<li>Betätigen Sie "Schlüssel senden".</li> + + MaemoDeviceConfigWizardCheckPreviousKeySetupPage @@ -20347,6 +20364,38 @@ Fehler: %2 Flickable Flickable + + Content Size + Größe des Inhalts + + + Flickable Direction + Richtung der Flickable-Interaktion + + + Bounds Behavior + Verhalten der Begrenzungen + + + Interactive + Interaktiv + + + Max. Velocity + Maximale Geschwindigkeit + + + Maximum Flick Velocity + Maximale Geschwindigkeit der Flick-Interaktion + + + Deceleration + Abbremsung + + + Flick Deceleration + Abbremsung der Flick-Interaktion + QmlJS::TypeDescriptionReader @@ -20706,14 +20755,6 @@ Hinweis: Unter Umständen wird die lokale Datei gelöscht. Attach to Core... Debugge core-Datei - - Attach to Running Tcf Agent... - Verbinde zu Tcf-Agent... - - - This attaches to a running 'Target Communication Framework' agent. - Verbindet zu einem laufenden Agenten, der das 'Target Communication Framework'-Protokoll verwendet. - Start and Attach to Remote Application... An entfernte Anwendung anhängen... @@ -20815,10 +20856,6 @@ Hinweis: Unter Umständen wird die lokale Datei gelöscht. Fatal engine shutdown. Incompatible binary or IPC error. Die Engine wurde wegen einem kritischen Fehler gestoppt (inkompatible ausführbare Datei oder IPC-Fehler). - - Fatal engine shutdown. Incompatible binary or ipc error. - Die Engine wurde wegen einem kritischen Fehler gestoppt (inkompatible ausführbare Datei oder IPC-Fehler). - Debugger::Internal::LldbEngineHost @@ -20972,7 +21009,7 @@ Soll es noch einmal versucht werden? Git::Internal::BaseGitDiffArgumentsWidget - Use the patience algorithmn for calculating the diff + Use the patience algorithm for calculating the diff "patience diff"-Algorithmus verwenden @@ -21544,14 +21581,18 @@ Bitte erstellen Sie die Debugger-Hilfskomponenten auf der Einstellungsseite der Key Creation Schlüssel erzeugen - - You have not entered a writable directory. - Der angegebene Ordner ist nicht schreibbar. - Cannot Create Keys Fehler beim Erzeugen der Schlüssel + + The path you have entered is not a directory. + Der angegebene Pfad ist kein Ordner. + + + The directory you have entered does not exist and cannot be created. + Der angegebene Ordner existiert nicht und kann nicht angelegt werden. + Creating keys ... Erzeuge Schlüssel... @@ -21592,8 +21633,8 @@ Bitte erstellen Sie die Debugger-Hilfskomponenten auf der Einstellungsseite der Schlüssel gesendet - The key was successfully deployed. You may now close the "Mad Developer" application and continue. - Der Schlüssel wurde erfolgreich gesendet. Sie können nun die Anwendung "Mad Developer" schließen und fortfahren. + The key was successfully deployed. You may now close the "%1" application and continue. + Der Schlüssel wurde erfolgreich gesendet. Sie können nun die Anwendung "%1" schließen und fortfahren. Done. @@ -21611,8 +21652,8 @@ Bitte erstellen Sie die Debugger-Hilfskomponenten auf der Einstellungsseite der Die neue Gerätekonfiguration wird nun erstellt und eine Testprozedur ausgeführt, die prüft, ob Qt Creator eine Verbindung zum Gerät herstellen kann und einige Informationen zum Gerät bereitstellt. - Please make sure that Qemu is running, otherwise the test will fail. - Bitte stellen Sie sicher, dass Qemu läuft, da andernfalls der Test fehlschlägt. + The new device configuration will now be created. + Die neue Gerätekonfiguration wird nun erzeugt. @@ -21644,6 +21685,14 @@ Ist das Gerät verbunden und für Netzwerkzugriff eingerichtet? (No device) (Kein Gerät) + + SDK Connectivity + SDK-Verbindungen + + + Mad Developer + Mad Developer + Failed to remove directory '%1'. Der Ordner '%1' konnte nicht gelöscht werden. @@ -21827,16 +21876,16 @@ Ist das Gerät verbunden und für Netzwerkzugriff eingerichtet? Die Desktop-Datei '%1' konnte nicht angepasst werden. - The package description is empty. - Die Beschreibung des Pakets ist leer. + The package description is empty. You must set one in Projects -> Run -> Create Package -> Details. + Die Paketbeschreibung ist leer. Sie muss unter Projekte -> Ausführung -> Paketerzeugung -> Details angegeben werden. - The package description is '%1', which is probably not what you want. - Die Beschreibung des Pakets lautet '%1', was wahrscheinlich nicht beabsichtigt war. + The package description is '%1', which is probably not what you want. Please change it in Projects -> Run -> Create Package -> Details. + Die Paketbeschreibung ist gegenwärtig '%1', was wahrscheinlich nicht beabsichtigt ist. Bitte ändern Sie sie unter Projekte -> Ausführung -> Paketerzeugung -> Details. - You have not set an icon for the package manager. - Sie haben noch kein Icon für die Paketverwaltung gesetzt. + You have not set an icon for the package manager. The icon must be set in Projects -> Run -> Create Package -> Details. + Sie haben kein Icon für die Paketverwaltung angegeben werden. Es muss unter Projekte -> Ausführung -> Paketerzeugung -> Details angegeben werden. @@ -21953,12 +22002,12 @@ Fehlerausgabe: %1 Klicken Sie hier, um den OpenGL-Modus zu ändern. - <p>You have configured Qemu to use OpenGL hardware acceleration, which might not be supported by your system. You could try using software rendering instead. - <p>Sie haben in Qemu OpenGL-Hardwarebeschleunigung eingestellt, was von Ihrem System nicht unterstützt sein könnte. Sie könnten stattdessen Software-Rendering verwenden. + You have configured Qemu to use OpenGL hardware acceleration, which might not be supported by your system. You could try using software rendering instead. + Sie haben in Qemu OpenGL-Hardwarebeschleunigung eingestellt, was von Ihrem System nicht unterstützt sein könnte. Sie könnten stattdessen Software-Rendering verwenden. - <p>Qemu is currently configured to auto-detect the OpenGL mode, which is known to not work in some cases.You might want to use software rendering instead. - <p>Sie haben in Qemu die automatische Bestimmung des OpenGL-Modus eingestellt, was nicht immer funktioniert. Sie könnten stattdessen Software-Rendering verwenden. + Qemu is currently configured to auto-detect the OpenGL mode, which is known to not work in some cases. You might want to use software rendering instead. + Sie haben in Qemu die automatische Bestimmung des OpenGL-Modus eingestellt, was nicht immer funktioniert. Sie könnten stattdessen Software-Rendering verwenden. @@ -22266,7 +22315,7 @@ Verwenden Sie ein Entwicklerzertifikat oder eine andere Form der Signierung, um Bitte beenden Sie die Installation auf dem Mobilgerät. - <html><head/><body><center><i>%1</i> is still running on the device.<center/><center>Terminating it can leave the target in an inconsistent state.</center><center>Would you still like to terminate it?</center></body></html> + <html><head/><body><center><i>%1</i> is still running on the device.</center><center>Terminating it can leave the target in an inconsistent state.</center><center>Would you still like to terminate it?</center></body></html> <html><head/><body><center><i>%1</i> läuft noch auf dem Mobilgerät.<center/><center>Ein Abbruch kann zu einem inkonsistenten Zustand des Gerätes führen.</center><center>Möchten Sie dennoch abbrechen?</center></body></html> @@ -23163,6 +23212,10 @@ Die Einstellung gestattet es, unter diesem Umständen fortzusetzen Remove Löschen + + Clone + Klonen + Qt4ProjectManager::Internal::RvctToolChainConfigWidget @@ -23754,7 +23807,7 @@ Bestimmt das Verhalten bezüglich der Einrückung von Fortsetzungszeilen. CMakeProjectManager::Internal::CMakeManager - Run cmake + Run CMake CMake ausführen @@ -24021,10 +24074,6 @@ Bestimmt das Verhalten bezüglich der Einrückung von Fortsetzungszeilen. Tool Chains Toolchains - - Clone ... - Kopie erstellen... - QmlJSEditor::QmlJSTextEditorWidget @@ -24092,8 +24141,8 @@ Fehler: %2 Qt4ProjectManager::Internal::MaemoToolChainConfigWidget - MADDE Root: %1<br>Target Root: %2 - MADDE Wurzelverzeichnis: %1<br>Wurzelverzeichnis des Ziels: %2 + <html><head/><body><table><tr><td>Path to MADDE:</td><td>%1</td></tr><tr><td>Path to MADDE target:</td><td>%2</td></tr><tr><td>Debugger:</td/><td>%3</td></tr></body></html> + <html><head/><body><table><tr><td>Pfad zu MADDE:</td><td>%1</td></tr><tr><td>Pfad zu MADDE-Ziel:</td><td>%2</td></tr><tr><td>Debugger:</td/><td>%3</td></tr></body></html> @@ -24102,6 +24151,10 @@ Fehler: %2 GCCE GCCE + + GCCE from Qt version + GCCE aus Qt-Version + GCCE (%1) GCCE (%1) @@ -24133,6 +24186,10 @@ Fehler: %2 WINSCW WINSCW + + WINSCW from Qt version + WINSCW aus Qt-Version + Qt4ProjectManager::Qt4DefaultTargetSetupWidget @@ -25010,6 +25067,10 @@ Außerdem wird die Anwendung bei Verwendung einer nicht freigegebenen Qt-Version Invalid Frees Ungültige Verwendung von free + + These suppression files were used in the last memory analyzer run. + Die Ausschlussdateien wurden beim letzten Lauf der Speicheranalyse verwendet. + External Errors Externe Fehler @@ -25022,10 +25083,6 @@ Außerdem wird die Anwendung bei Verwendung einer nicht freigegebenen Qt-Version Suppressions Ausschlüsse - - These suppression files where used in the last memory analyzer run. - Die Ausschlussdateien wurden beim letzten Lauf der Speicheranalyse verwendet. - Internal Error Interner Fehler diff --git a/share/qtcreator/translations/qtcreator_pl.ts b/share/qtcreator/translations/qtcreator_pl.ts index f1bf8708d62..a4bbcf96da2 100644 --- a/share/qtcreator/translations/qtcreator_pl.ts +++ b/share/qtcreator/translations/qtcreator_pl.ts @@ -1,29 +1,6 @@ - - mainClass - - main - main - - - Text1: - Tekst1: - - - N/A - Niedostępne - - - Text2: - Tekst2: - - - Text3: - Tekst3: - - ExtensionSystem::Internal::PluginDetailsView @@ -317,18 +294,10 @@ Reset to default Przywróć domyślne - - R - R - Terminal: Terminal: - - External editor: - Zewnętrzny edytor: - ? ? @@ -377,10 +346,6 @@ External file browser: Zewnętrzna przeglądarka plików: - - Default file encoding: - Domyślne kodowanie plików: - Always Ask Zawsze pytaj @@ -393,6 +358,10 @@ Ignore Modifications Zignoruj modyfikacje + + Reset + Reset + PasteBinComSettingsWidget @@ -405,12 +374,12 @@ Przedrostek serwera: - <html><head/><body> -<p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> -<p>Note that the plugin will use this for posting as well as fetching.</p></body></html> - <html><head/><body> -<p><a href="http://pastebin.com">pastebin.com</a> pozwala wysyłać fragmenty kodu do własnych poddomen (np. creator.pastebin.com). Podaj przedrostek serwera.</p> -<p>Zwróć uwagę że wtyczka użyje go zarówno do wysyłania jak i odbierania fragmentów kodu.</p></body></html> + <a href="http://pastebin.com">pastebin.com</a> allows for sending posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix. + <a href="http://pastebin.com">pastebin.com</a> pozwala wysyłać fragmenty kodu do własnych poddomen (np. creator.pastebin.com). Podaj przedrostek serwera. + + + <i>Note: The plugin will use this for posting as well as fetching.</i> + <i>Zwróć uwagę że wtyczka użyje go zarówno do wysyłania jak i odbierania fragmentów kodu.</i> @@ -562,7 +531,7 @@ p, li { white-space: pre-wrap; } When Triggered - Tylko na żądanie + Po wyzwoleniu Always @@ -642,12 +611,16 @@ p, li { white-space: pre-wrap; } Uruchom debugger - Executable: - Plik wykonywalny: + &Executable: + Plik &wykonywalny: - Core file: - Plik zrzutu: + &Core file: + Plik &zrzutu: + + + &Tool chain: + Zestaw &narzędzi: @@ -657,67 +630,12 @@ p, li { white-space: pre-wrap; } Uruchom debugger - Attach to process ID: - Dołącz do procesu o identyfikatorze: - - - - BreakCondition - - Condition: - Warunek: + Attach to &process ID: + Dołącz do &procesu o identyfikatorze: - Ignore count: - Licznik pominięć: - - - Thread specification: - Specyfikacja wątku: - - - - CdbOptionsPageWidget - - These options take effect at the next start of Qt Creator. - Te opcje zostaną zastosowanie po ponownym uruchomieniu Qt Creatora. - - - Path: - Ścieżka: - - - Debugger Paths - Ścieżki debuggera - - - Symbol paths: - Ścieżki do symboli: - - - Source paths: - Ścieżki do źródeł: - - - CDB - Placeholder - CDB - - - Other Options - Inne opcje - - - Verbose symbol loading - Gadatliwe ładowania symboli - - - Fast loading of debugging helpers - Szybkie ładowanie asystentów debuggera - - - Break on exception - Przerwij w wyjątku + &Tool chain: + Zestaw &narzędzi: @@ -750,10 +668,6 @@ p, li { white-space: pre-wrap; } Register Qt Creator for debugging crashed applications. Zarejestruj Qt Creatora do debugowania aplikacji zakończonych błędem. - - GUI Behavior - Zachowanie GUI - Use Qt Creator for post-mortem debugging Używaj Creatora do pośmiertnego debugowania @@ -774,6 +688,10 @@ p, li { white-space: pre-wrap; } Switch to previous mode on debugger exit Przełącz do poprzedniego trybu po zakończeniu debugowania + + Behavior + Zachowanie + DebuggingHelperOptionPage @@ -785,10 +703,6 @@ p, li { white-space: pre-wrap; } Location: Położenie: - - Debug debugging helper - Debuguj asystenta debuggera - Makes use of Qt Creator's code model to find out if a variable has already been assigned a value at the point the debugger interrupts. Korzysta z modelu kodu Qt Creatora w celu zbadania czy wartość została już przypisana do zmiennej w chwili przerwania debuggera. @@ -797,40 +711,34 @@ p, li { white-space: pre-wrap; } Use code model Używaj modelu kodu - - <html><head/><body> -<p>The debugging helper is only used to produce a nice display of objects of certain types like QString or std::map in the &quot;Locals and Watchers&quot; view.</p> -<p> It is not strictly necessary for debugging with Qt Creator. </p></body></html> - <html><head/><body> -<p>Asystent debuggera jest używany do ładnego formatowania danych w widoku &quot;Zmienne lokalne i obserwowane&quot; dla obiektów niektórych typów takich jak QString lub std::map.</p> -<p>Nie jest on niezbędny do debugowania w Qt Creatorze.</p></body></html> - Use Debugging Helper Używaj asystenta debuggera + + <html><head/><body> +<p>The debugging helper is only used to produce a nice display of objects of certain types like QString or std::map in the &quot;Locals and Watchers&quot; view. It is not strictly necessary for debugging with Qt Creator. </p></body></html> + <html><head/><body> +<p>Asystent debuggera jest używany do ładnego formatowania danych w widoku &quot;Zmienne lokalne i obserwowane&quot; dla obiektów niektórych typów takich jak QString lub std::map. Nie jest on niezbędny do debugowania w Qt Creatorze.</p></body></html> + + + Displays names of QThread based threads. + Wyświetlaj nazwy wątków wywiedzionych z QThread. + + + Display thread names + Wyświetlaj nazwy wątków + GdbOptionsPage - - Environment: - Środowisko: - - - This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. - Może wskazywać plik zawierający komendy gdb które będą wykonane zaraz po uruchomieniu gdb. - - - Gdb startup script: - Skrypt startowy gdb: - This is the slowest but safest option. To jest najwolniejsza ale i zarazem najbezpieczniejsza opcja. Try to set breakpoints in plugins always automatically. - Zawsze próbuj automatycznie ustawiać pułapki we wtyczkach. + Zawsze próbuj automatycznie ustawiać pułapki we wtyczkach. Try to set breakpoints in selected plugins @@ -844,38 +752,22 @@ p, li { white-space: pre-wrap; } Never set breakpoints in plugins automatically Nigdy automatycznie nie ustawiaj pułapek we wtyczkach - - Gdb timeout: - Czas oczekiwania: - This is the number of seconds Qt Creator will wait before it terminates non-responsive gdb process. The default value of 20 seconds should be sufficient for most applications, but there are situations when loading big libraries or listing source files takes much longer than that on slow machines. In this case, the value should be increased. - Jest to czas wyrażony w sekundach przez który Qt Creator będzie oczekiwał na odpowiedź + Jest to czas wyrażony w sekundach przez który Qt Creator będzie oczekiwał na odpowiedź od procesu gdb zanim go zakończy. Domyślna wartość 20 sekund powinna być wystarczająca dla większości aplikacji, lecz mogą zdarzyć się sytuacje że ładowanie bibliotek o dużych rozmiarach lub wyświetlanie plików źródłowych zajmie dużo więcej czasu na powolnych maszynach. W takich przypadkach wartość ta powinna zostać zwiększona. - - Gdb - Gdb - Enable reverse debugging Włącz debugowanie wsteczne - - When this option is checked, 'Step Into' compresses several steps into one in certain situations, leading to 'less noisy' debugging. So will, e.g., the atomic - reference counting code be skipped, and a single 'Step Into' for a signal emission will end up directly in the slot connected to it. - Kiedy ta opcja jest zaznaczona "Wskocz do wnętrza" kompresuje w pewnych sytuacjach -kilka kroków w jeden, co prowadzi do przejrzystszego debugowania. I tak np. -kod atomowego licznika referencji będzie pominięty, a pojedyncze "Wskocz do wnętrza" -dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. - Skip known frames when stepping Pomijaj znane kroki @@ -889,9 +781,70 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Ustawianie pułapek we wtyczkach - Adjust Breakpoint Locations + Adjust breakpoint locations Poprawiaj położenia pułapek + + Load .gdbinit file on startup + Ładuj plik .gdbinit przy uruchamianiu + + + Use asynchronous mode to control the inferior + Użyj trybu asynchronicznego do kontrolowania podprocesu + + + GDB + GDB + + + This is either empty or points to a file containing GDB commands that will be executed immediately after GDB starts up. + Może wskazywać plik zawierający komendy GDB które będą wykonane zaraz po uruchomieniu gdb. + + + GDB startup script: + Skrypt startowy GDB: + + + GDB timeout: + Czas oczekiwania GDB: + + + When this option is checked, 'Step Into' compresses several steps into one in certain situations, leading to 'less noisy' debugging. So will, e.g., the atomic reference counting code be skipped, and a single 'Step Into' for a signal emission will end up directly in the slot connected to it. + Kiedy ta opcja jest zaznaczona "Wskocz do wnętrza" kompresuje w pewnych sytuacjach kilka kroków w jeden, co prowadzi do przejrzystszego debugowania. I tak np. kod atomowego licznika referencji będzie pominięty, a pojedyncze "Wskocz do wnętrza" dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. + + + This will show a message box as soon as your application receives a signal like SIGSEGV during debugging. + Okno z komunikatem zostanie wyświetlone zaraz po otrzymaniu przez aplikację sygnału SIGSEGV lub innego podobnego. + + + This allows or inhibits reading the user's default .gdbinit file on debugger startup. + Zaznaczenie tego umożliwia debuggerowi przeczytanie domyślnego pliku użytkownika .gdbinit przy uruchamianiu. + + + GDB allows setting breakpoints on source lines for which no code was generated. In such situations the breakpoint is shifted to the next source code line for which code was actually generated. This option reflects such temporary change by moving the breakpoint markers in the source code editor. + GDB umożliwia ustawianie pułapek w liniach źródłowych dla których nie został wygenerowany żaden kod wykonywalny. W takich przypadkach pułapki są przesuwane do następnej linii dla której kod wygenerowano. Zaznaczenie tej opcji odzwierciedli takie sytuacje poprzez przesunięcie znaczników pułapek w edytorze kodu źródłowego. + + + Enable reverse debugging Selecting this enables reverse debugging. NOTE: This feature is very slow and unstable on the GDB side. It exhibits unpredictable behaviour when going backwards over system calls and is very likely to destroy your debugging session. + Zaznaczenie tego włącza debugowanie wsteczne. Uwaga: ta funkcja jest bardzo wolna i niestabilna po stronie GDB. Kroczenie wstecz nad wywołaniami systemowymi zachowuje się w sposób nieprzewidywalny i może łatwo zniszczyć sesję debugową. + + + This is the number of seconds Qt Creator will wait before +it terminates a non-responsive GDB process. The default value of 20 seconds +should be sufficient for most applications, but there are situations when +loading big libraries or listing source files takes much longer than that +on slow machines. In this case, the value should be increased. + + + + Allows 'Step Into' to compress several steps into one step for less noisy debugging. For example, the atomic reference + counting code is skipped, and a single 'Step Into' for a signal emission ends up directly in the slot connected to it. + + + + Try to set breakpoints in plugins always automatically + + StartExternalDialog @@ -900,20 +853,24 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Uruchom debugger - Executable: - Plik wykonywalny: + &Executable: + Plik &wykonywalny: - Arguments: - Argumenty: + &Arguments: + &Argumenty: - Break at 'main': - Przerwij w "main": + &Working directory: + Katalog &roboczy: - Working directory: - Katalog roboczy: + Break at '&main': + &Przerwij w "main": + + + &Tool chain: + Zestaw &narzędzi: @@ -923,32 +880,36 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Uruchom debugger - Host and port: - Host i port: + &Debugger: + &Debugger: - Architecture: - Architektura: + Local &executable: + Lokalny plik &wykonywalny: - Use server start script: - Użyj startowego skryptu serwera: + &Host and port: + &Host i port: - Server start script: - Startowy skrypt serwera: + &Architecture: + &Architektura: - Debugger: - Debugger: + Sys&root: + Główny &katalog systemu: - Local executable: - Lokalny plik wykonywalny: + &Use server start script: + &Użyj startowego skryptu serwera: - Sysroot: - Główny katalog systemu: + &GNU target: + Produkt docelowy &GNU: + + + &Server start script: + Startowy skrypt &serwera: @@ -1441,10 +1402,6 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Prompt on submit Pytaj przed wysłaniem zmian do serwera - - Use "patience diff" algorithm - Używaj algorytmu "patience diff" - Pull with rebase Ciągnij z opcją "rebase" @@ -1469,14 +1426,6 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Arguments: Argumenty: - - Omit date from blame output - Pomijaj daty w rezultatach z "blame" - - - Ignore whitespace changes in blame and diff - Ignoruj zmiany spacji w rezultatach z "blame" oraz "diff" - DocSettingsPage @@ -1484,10 +1433,6 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Registered Documentation Zarejestrowana dokumentacja - - Add... - Dodaj... - Remove Usuń @@ -1496,6 +1441,10 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Add and remove compressed help files, .qch. Dodaje i usuwa skompresowane pliki pomocy .qch. + + Add + Dodaj + FilterSettingsPage @@ -1576,10 +1525,6 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Use &Blank Page Użyj &pustej strony - - Restore to Default - Przywróć domyślną - Help Bookmarks Zakładki pomocy @@ -1636,6 +1581,14 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Return to editor on closing the last page Powracaj do edytora po zamknięciu ostatniej strony + + Reset to default + Przywróć domyślną + + + Reset + Przywróć + Perforce::Internal::ChangeNumberDialog @@ -1759,8 +1712,12 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum ProjectExplorer::Internal::EditorSettingsPropertiesPage - Default file encoding: - Domyślne kodowanie plików: + Use global settings + Użyj ustawień globalnych + + + Restore Global Values + Przywróć wartości globalne @@ -1812,10 +1769,6 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Save all files before build Zachowuj wszystkie pliki przed budowaniem - - Show compiler output on building - Pokazuj komunikaty kompilatora w trakcie budowania - Clear old application output on a new run Czyść wyjście aplikacji przed uruchomieniem @@ -1836,6 +1789,22 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Word-wrap application output Zawijaj komunikaty aplikacji + + Open compiler output pane when building + Otwieraj panel wyjściowy kompilatora podczas budowania + + + Open application output pane when running + Otwieraj panel wyjściowy aplikacji podczas uruchamiania + + + Ask before terminating the running application in response to clicking the stop button in Application Output. + Pytaj przed zakończeniem aplikacji w odpowiedzi na naciśnięcie przycisku stop w panelu wyjściowym aplikacji. + + + Always ask before stopping applications + Zawsze pytaj przed zatrzymaniem aplikacji + ProjectExplorer::Internal::ProjectWelcomePageWidget @@ -2384,36 +2353,9 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Debug and release Debug i release - - - Qt4ProjectManager::Internal::S60DevicesPreferencePane - Form - Formularz - - - Refresh - Odśwież - - - S60 SDKs - SDK S60 - - - Error - Błąd - - - Add - Dodaj - - - Change Qt version - Zmień wersję Qt - - - Remove - Usuń + Link QML debugging library: + Dowiąż bibliotekę debugującą QML: @@ -2442,6 +2384,10 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> używa wersji: <b>%1</b><br>z zestawem narzędzi: <b>%2</b><br>zbudowane w: <b>%3</b> + + <Invalid tool chain> + <Niepoprawny zestaw narzędzi> + General Ogólne @@ -2450,6 +2396,11 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Invalid Qt version Niepoprawna wersja Qt + + An build for a different project exists in %1, which will be overwritten. + %1 build directory + W katalogu "%1" istnieje zbudowana wersja innego projektu, która zostanie nadpisana. + Error: Błąd: @@ -2463,6 +2414,10 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum %1 build directory Niekompatybilna wersja w %1 będzie nadpisana. + + <No tool chain selected> + <Nie wybrano zestawu narzędzi> + problemLabel problematycznaEtykietka @@ -2486,73 +2441,21 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Qt4ProjectManager::Internal::QtVersionManager - - + - + - - - - - - - - - Show &Log - Pokaż &log - - - &Rebuild - P&rzebuduj - Name Nazwa - - Debugging Helper - Asystent debuggera - - - S60 SDK: - S60 SDK: - qmake Location Położenie qmake - Toolchain: - Zestaw narzędzi: + Add + Dodaj - Version name: - Nazwa wersji: - - - qmake location: - Położenie qmake: - - - MinGW directory: - Katalog MinGW: - - - CSL/GCCE directory: - Katalog CSL/GCCE: - - - Carbide directory: - Katalog Carbide: - - - Unable to detect MSVC version. - Nie można określić wersji MSVC. - - - Debugging helpers: - Asystenci debuggera: - - - SBS v2 directory: - Katalog SBS v2: + Remove + Usuń @@ -2598,7 +2501,7 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Ignore whitespace changes in annotation - Ignoruj zmiany w spacjach w adnotacjach + Ignoruj zmiany w białych znakach w adnotacjach Log count: @@ -2613,271 +2516,6 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Nazwa użytkownika: - - TextEditor::BehaviorSettingsPage - - Tabs and Indentation - Tabulatory i wcięcia - - - Insert &spaces instead of tabs - Wstawiaj &spacje zamiast tabulatorów - - - Enable automatic &indentation - Włącz automatyczne wc&ięcia - - - Backspace will go back one indentation level instead of one space. - Klawisz "Backspace" skasuje spacje aż do poprzedniego wcięcia zamiast jednej spacji. - - - &Backspace follows indentation - Klawisz "&Backspace" podąża za wcięciami - - - Ta&b size: - Rozmiar ta&bulatorów: - - - &Indent size: - Rozmiar wc&ięć: - - - Tab key performs auto-indent: - Klawisz "Tab" wykonuje automatyczne wcięcia: - - - Never - Nigdy - - - Always - Zawsze - - - Storage - Składowanie - - - Removes trailing whitespace on saving. - Usuwa białe znaki na końcu linii podczas zachowywania. - - - &Clean whitespace - Wy&czyść białe znaki - - - Clean whitespace in entire document instead of only for changed parts. - Wyczyść białe znaki w całym dokumencie zamiast tylko w zmienionych częściach. - - - In entire &document - W całym &dokumencie - - - Correct leading whitespace according to tab settings. - Popraw białe znaki stosownie do ustawień tabulatorów. - - - Clean indentation - Wyczyść wcięcia - - - &Ensure newline at end of file - Wstawiaj znak now&ej linii na końcu pliku - - - Automatically determine based on the nearest indented line (previous line preferred over next line) - Określa automatycznie wzorując się na najbliższej wciętej linii (poprzednia linia preferowana nad następną) - - - Based on the surrounding lines - Wzorując się na sąsiednich liniach - - - Mouse - Mysz - - - Enable &mouse navigation - Włącz nawigację &myszy - - - Enable scroll &wheel zooming - Włącz powiększanie poprzez obracanie &kółkiem myszy (wraz z przyciśniętym CTRL) - - - Block indentation style: - Styl wcięć blokowych: - - - Exclude Braces - Nie uwzględniaj nawiasów - - - Include Braces - Uwzględniaj nawiasy - - - GNU Style - Styl GNU - - - In Leading White Space - Jeśli poprzedzony jest spacją - - - <html><head/><body> -Controls the indentation style of curly brace blocks. - -<ul> -<li>Exclude Braces: The braces are not indented. -<pre> -void foo() -{ - if (a) - { - bar(); - } -} -</pre> -</li> - -<li>Include Braces: The braces are indented. The contents of the block are on the same level as the braces. -<pre> -void foo() - { - if (a) - { - bar(); - } - } -</pre> -</li> - -<li>GNU Style: Indent the braces for blocks in statements. The contents are indented twice. -<pre> -void foo() -{ - if (a) - { - bar(); - } -} -</pre> -</li> -</ul></body></html> - <html><head/><body> -Steruje stylem wcięć bloków ograniczonych nawiasami klamrowymi. - -<ul> -<li>Nie uwzględniaj nawiasów: Nawiasy nie są wcięte. -<pre> -void foo() -{ - if (a) - { - bar(); - } -} -</pre> -</li> - -<li>Uwzględniaj nawiasy: Nawiasy są wcięte. Zawartość bloku jest na tym samym poziomie co nawiasy. -<pre> -void foo() - { - if (a) - { - bar(); - } - } -</pre> -</li> - -<li>Styl GNU: Nawiasy są wcięte dla bloków w wyrażeniach. Zawartość jest wcięta dwukrotnie. -<pre> -void foo() -{ - if (a) - { - bar(); - } -} -</pre> -</li> -</ul></body></html> - - - Align continuation lines: - Wyrównanie przeniesionych linii: - - - <html><head/><body> -Influences the indentation of continuation lines. - -<ul> -<li>Not At All: Do not align at all. Lines will only be indented to the current logical indentation depth. -<pre> -(tab)int i = foo(a, b -(tab)c, d); -</pre> -</li> - -<li>With Spaces: Always use spaces for alignment, regardless of the other indentation settings. -<pre> -(tab)int i = foo(a, b -(tab) c, d); -</pre> -</li> - -<li>With Regular Indent: Use tabs and/or spaces for alignment, as configured above. -<pre> -(tab)int i = foo(a, b -(tab)(tab)(tab) c, d); -</pre> -</li> -</ul></body></html> - <html><head/><body> -Wpływa na wcięcia przeniesionych linii. - -<ul> -<li>Brak: Nie wyrównuje. Linie będą wyrównane tylko do bieżącej logicznej głębokości wcięcia. -<pre> -(tab)int i = foo(a, b -(tab)c, d); -</pre> -</li> - -<li>Ze spacjami: Zawsze używa spacji do wyrównywania, bez względu na inne ustawienia wcięć. -<pre> -(tab)int i = foo(a, b -(tab) c, d); -</pre> -</li> - -<li>Z regularnymi wcięciami: Używa tabulatorów albo spacji do wyrównywania, zależnie od konfiguracji powyżej. -<pre> -(tab)int i = foo(a, b -(tab)(tab)(tab) c, d); -</pre> -</li> -</ul></body></html> - - - Not At All - Brak - - - With Spaces - Ze spacjami - - - With Regular Indent - Z regularnymi wcięciami - - TextEditor::Internal::ColorSchemeEdit @@ -3013,10 +2651,6 @@ Wpływa na wcięcia przeniesionych linii. WizardPage StronaKreatora - - Checkout Directory: - Katalog z kopią roboczą: - Branch: Gałąź: @@ -3031,11 +2665,11 @@ Wpływa na wcięcia przeniesionych linii. The remote repository to check out. - + Zdalne repozytorium dla kopii roboczej. The development branch in the remote repository to check out. - + Gałąź w zdalnym repozytorium dla kopii roboczej. Retrieve list of branches in repository. @@ -3047,15 +2681,19 @@ Wpływa na wcięcia przeniesionych linii. The path in which the directory containing the checkout will be created. - - - - Checkout Path: - + Ścieżka, w której zostanie utworzony katalog zawierający kopię roboczą. The local directory that will contain the code after the checkout. - + Lokalny katalog, który będzie zawierał kod po utworzeniu kopii roboczej. + + + Checkout path: + Ścieżka kopii roboczej: + + + Checkout directory: + Katalog kopii roboczej: @@ -3518,6 +3156,10 @@ Przyczyna: %3 Cannot create temporary file: %1 Nie można utworzyć tymczasowego pliku: %1 + + Cannot write temporary file. Disk full? + Nie można zapisać pliku tymczasowego. Być może brak wolnego miejsca na dysku? + Cannot create temporary directory '%1': %2 Nie można utworzyć tymczasowego katalogu "%1": %2 @@ -3534,6 +3176,22 @@ Przyczyna: %3 Cannot execute '%1': %2 Nie można uruchomić "%1": %2 + + Quoting error in command. + Błąd w cytacie komendy. + + + Debugging complex shell commands in a terminal is currently not supported. + Debugowanie złożonych komend powłoki w terminalu nie jest obecnie obsługiwane. + + + Quoting error in terminal command. + Błąd w cytacie komendy terminala. + + + Terminal command may not be a shell command. + Komenda terminala nie musi być komendą powłoki. + Cannot start the terminal emulator '%1'. Nie można uruchomić emulatora terminala "%1". @@ -3634,11 +3292,6 @@ Przyczyna: %3 Choose File Wybierz plik - - <not valid> - Selected path is not valid: - <niepoprawny> - Full path: <b>%1</b> Pełna ścieżka: <b>%1</b> @@ -3850,20 +3503,20 @@ Przyczyna: %3 Argumenty - Please specify the path to the CMake executable. No CMake executable was found in the path. - Podaj ścieżkę do programu CMake. Programu CMake nie wykryto w ścieżce. + Please specify the path to the cmake executable. No cmake executable was found in the path. + Podaj ścieżkę do programu cmake. Programu cmake nie wykryto w ścieżce. - The CMake executable (%1) does not exist. - Program CMake (%1) nie istnieje. + The cmake executable (%1) does not exist. + Program cmake (%1) nie istnieje. - The path %1 is not a valid CMake. - Ścieżka %1 nie pokazuje na poprawny program CMake. + The path %1 is not a valid cmake. + Ścieżka %1 nie pokazuje na poprawny program cmake. - The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun CMake. Or simply finish the wizard directly. - Katalog %1 zawiera już uaktualniony plik cbp. Możesz przekazać specjalne argumenty lub zmienić istniejący zestaw narzędzi i ponownie uruchomić CMake. Możesz również bezpośrednio zakończyć kreatora. + The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used tool chain here and rerun CMake. Or simply finish the wizard directly. + Katalog %1 zawierający już plik cbp jest wystarczająco aktualny. Możesz przekazać specialne argumenty lub zmienić używany zestaw narzędzi i ponownie uruchomić CMake. Możesz również bezpośrednio zakończyć kreatora. The directory %1 does not contain a cbp file. Qt Creator needs to create this file by running CMake. Some projects require command line arguments to the initial CMake call. @@ -3886,21 +3539,21 @@ Przyczyna: %3 Odświeżanie pliku cbp w "%1". - NMake Generator - Generator NMake + MinGW Generator (%1) + Generator MinGW (%1) + + + No valid cmake executable specified. + Brak poprawnego pliku wykonywalnego cmake. + + + CMake exited with errors. Please check CMake output. + CMake zakończony błędem. Sprawdź komunikaty wyjściowe CMake. NMake Generator (%1) Generator NMake (%1) - - MinGW Generator - Generator MinGW - - - No valid CMake executable specified. - Brak poprawnego pliku wykonywalnego CMake. - CMakeProjectManager::Internal::CMakeBuildConfigurationFactory @@ -3998,11 +3651,7 @@ Przyczyna: %3 Make - <b>Make:</b> %1 %2 - <b>Make:</b> %1 %2 - - - <b>Unknown Toolchain</b> + <b>Unknown tool chain</b> <b>Nieznany zestaw narzędzi</b> @@ -4112,6 +3761,10 @@ Czy chcesz je nadpisać? Image Viewer Przeglądarka plików graficznych + + GLSL Editor + Edytor GLSL + Core::Internal::OpenWithDialog @@ -4222,10 +3875,6 @@ Czy chcesz je nadpisać? Go Forward W przód - - Open in External Editor - Otwórz w zewnętrznym edytorze - Revert File to Saved Odwróć zmiany w pliku @@ -4319,8 +3968,24 @@ Czy chcesz je nadpisać? Przejdź do kolejnego podzielonego okna - The file <i>%1</i> is read only. - Plik <i>%1</i> jest plikiem tylko do odczytu. + Ad&vanced + Zaa&wansowane + + + Full path of the current document including file name. + Pełna ścieżka aktualnego dokumentu wraz z nazwą pliku. + + + Full path of the current document excluding file name. + Pełna ścieżka aktualnego dokumentu bez nazwy pliku. + + + X-coordinate of the current editor's upper left corner, relative to screen. + Współrzędna X lewego górnego rogu bieżącego edytora, względem ekranu. + + + Y-coordinate of the current editor's upper left corner, relative to screen. + Współrzędna Y lewego górnego rogu bieżącego edytora, względem ekranu. Save %1 &As... @@ -4330,14 +3995,6 @@ Czy chcesz je nadpisać? %1,o %1,o - - &Advanced - Z&aawansowane - - - Alt+V,Alt+I - Alt+V,Alt+I - Opening File Otwieranie pliku @@ -4346,22 +4003,10 @@ Czy chcesz je nadpisać? Cannot open file %1! Nie można otworzyć pliku %1! - - File is Read Only - Plik tylko do odczytu - - - Open with VCS (%1) - Otwórz przy pomocy VCS (%1) - Make writable Uczyń plik zapisywalnym - - Save as ... - Zachowaj jako ... - Failed! Niepomyślnie zakończone! @@ -4374,6 +4019,10 @@ Czy chcesz je nadpisać? Could not set permissions to writable. Nie można ustawić prawa do zapisu. + + Qt Creator + Qt Creator + <b>Warning:</b> You are changing a read-only file. <b>Ostrzeżenie:</b> Zmieniasz plik który jest tylko do odczytu. @@ -4406,69 +4055,6 @@ Czy chcesz je nadpisać? Cancel Anuluj - - <table border=1 cellspacing=0 cellpadding=3><tr><th>Variable</th><th>Expands to</th></tr><tr><td>%f</td><td>file name</td></tr><tr><td>%l</td><td>current line number</td></tr><tr><td>%c</td><td>current column number</td></tr><tr><td>%x</td><td>editor's x position on screen</td></tr><tr><td>%y</td><td>editor's y position on screen</td></tr><tr><td>%w</td><td>editor's width in pixels</td></tr><tr><td>%h</td><td>editor's height in pixels</td></tr><tr><td>%W</td><td>editor's width in characters</td></tr><tr><td>%H</td><td>editor's height in characters</td></tr><tr><td>%%</td><td>%</td></tr></table> - <table border=1 cellspacing=0 cellpadding=3><tr><th>Zmienna</th><th>Znaczenie</th></tr><tr><td>%f</td><td>nazwa pliku </td></tr><tr><td>%l</td><td>numer bieżącej linii</td></tr><tr><td>%c</td><td>numer bieżącej kolumny</td></tr><tr><td>%x</td><td>pozycja x edytora na ekranie</td></tr><tr><td>%y</td><td>pozycja y edytora na ekranie</td></tr><tr><td>%w</td><td>szerokość edytora w pikselach</td></tr><tr><td>%h</td><td>wysokość edytora w pikselach</td></tr><tr><td>%W</td><td>szerokość edytora w znakach</td></tr><tr><td>%H</td><td>wysokość edytora w znakach</td></tr><tr><td>%%</td><td>%</td></tr></table> - - - - Core::Internal::EditorSplitter - - Split Left/Right - Podziel lewo / prawo - - - Split Top/Bottom - Podziel góra / dół - - - Unsplit - Usuń podział - - - Default Splitter Layout - Domyślne rozmieszczenie podziału - - - Save Current as Default - Zachowaj bieżący jako domyślny - - - Restore Default Layout - Przywróć domyślne rozmieszczenie - - - Previous Document - Poprzedni dokument - - - Alt+Left - Alt+Left - - - Next Document - Następny dokument - - - Alt+Right - Alt+Right - - - Previous Group - Poprzednia grupa - - - Next Group - Następna grupa - - - Move Document to Previous Group - Przenieś dokument do poprzedniej grupy - - - Move Document to Next Group - Przenieś dokument do następnej grupy - Core::Internal::EditorView @@ -4487,17 +4073,17 @@ Czy chcesz je nadpisać? Open Documents Otwarte dokumenty - - Close %1 - Zamknij %1 - Close Editor Zamknij edytor - Close All Except %1 - Zamknij wszystko oprócz %1 + Close "%1" + Zamknij "%1" + + + Close All Except "%1" + Zamknij wszystko z wyjątkiem "%1" Close Other Editors @@ -4517,14 +4103,6 @@ Czy chcesz je nadpisać? Core::FileManager - - Cannot save file - Nie można zachować pliku - - - Cannot save changes to '%1'. Do you want to continue and lose your changes? - Nie można zachować zmian w "%1". Czy chcesz kontynuować tracąc przy tym swoje zmiany? - Overwrite? Nadpisać? @@ -4541,6 +4119,26 @@ Czy chcesz je nadpisać? Open File Otwórz plik + + File is Read Only + Plik tylko do odczytu + + + The file <i>%1</i> is read only. + Plik <i>%1</i> jest plikiem tylko do odczytu. + + + Open with VCS (%1) + Otwórz przy pomocy VCS (%1) + + + Make writable + Uczyń plik zapisywalnym + + + Save as ... + Zachowaj jako ... + Core::Internal::MainWindow @@ -4633,7 +4231,7 @@ Czy chcesz je nadpisać? Wk&lej - &Select All + Select &All Zaznacz &wszystko @@ -4808,19 +4406,6 @@ Czy chcesz je nadpisać? Zamknij - - VCSManager - - Version Control - System kontroli wersji - - - Would you like to remove this file from the version control system (%1)? -Note: This might remove the local file. - Czy chcesz usunąć ten plik z systemu kontroli wersji (%1)? -Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. - - Core::Internal::VersionDialog @@ -4867,8 +4452,8 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Serwer: - Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). - Uwaga: Podaj nazwę hosta dla serwisu CodePaster bez podawania protokołu (np. codepaster.mycompany.com). + <i>Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com).</i> + <i>Uwaga: Podaj nazwę hosta dla serwisu CodePaster bez podawania protokołu (np. codepaster.mycompany.com).</i> @@ -4931,25 +4516,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Błąd podczas generowania zawartości. - - CppEditor::Internal::CPPEditor - - Sort Alphabetically - Posortuj alfabetycznie - - - This change cannot be undone. - Ta zmiana nie może być cofnięta. - - - Yes, I know what I am doing. - Tak, wiem co robię. - - - Unused variable - Nieużywana zmienna - - CppEditor::Internal::CppPlugin @@ -5056,8 +4622,8 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. - Edit... - Zmodyfikuj... + Edit + Zmodyfikuj Choose Location for New License Template File @@ -5103,6 +4669,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Parsing Parsowanie + + unnamed + nienazwany + CppTools @@ -5455,18 +5025,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Breakpoint Type: Typ pułapki: - - Breakpoint - Pułapka - Watchpoint Warunkowa pułapka - - Unknown breakpoint type - Nieznany typ pułapki - State: Stan: @@ -5491,6 +5053,26 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Function Name: Nazwa funkcji: + + Enabled + Włączona + + + Disabled + Wyłączona + + + , pending + , oczekująca + + + Engine: + Silnik: + + + Extra Information: + Dodatkowe informacje: + Line Number: Numer linii: @@ -5499,6 +5081,18 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Corrected Line Number: Numer poprawionej linii: + + Module: + Moduł: + + + Multiple Addresses: + Wielokrotne adresy: + + + Command: + Komenda: + Condition: Warunek: @@ -5515,6 +5109,71 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Number Numer + + New + Nowy + + + Insertion requested + Zażądano wstawienia + + + Insertion proceeding + Przetwarzanie wstawienia + + + Change requested + Zażądano zmiany + + + Change proceeding + Przetwarzanie zmiany + + + Breakpoint inserted + Wstawiono pułapkę + + + Removal requested + Zażądano usunięcia + + + Removal proceeding + Przetwarzanie usunięcia + + + Dead + Martwa + + + <invalid state> + Invalid breakpoint state. + <niepoprawny stan> + + + Breakpoint at "%1" + Pułapka w "%1" + + + Breakpoint by File and Line + Pułapki w plikach na liniach + + + Breakpoint by Function + Pułapki w funkcjach + + + Breakpoint by Address + Pułapki pod adresami + + + Breakpoint at Function "main()" + Pułapka w funkcji "main()" + + + Unknown Breakpoint Type + Nieznany typ pułapki + Function Funkcja @@ -5543,6 +5202,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Threads Wątki + + Watchpoint at 0x%1 + Warunkowa pułapka pod 0x%1 + Breakpoint will only be hit if this condition is met. Program przerwie działanie w pułapce tylko gdy ten warunek będzie spełniony. @@ -5587,8 +5250,8 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents - Zawsze wyrównuj szerokości kolumn do ich zawartości + Add Breakpoint + Dodaj pułapkę Edit Breakpoint... @@ -5606,10 +5269,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Add Breakpoint... Dodaj pułapkę... - - Edit Breakpoint Properties - Zmodyfikuj właściwości pułapki - Synchronize Breakpoints Zsynchronizuj pułapki @@ -5630,116 +5289,33 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Enable Breakpoint Włącz pułapkę - - Set Breakpoint at "throw" - Ustaw pułapkę w "throw" - - - Set Breakpoint at "catch" - Ustaw pułapkę w "catch" - - - - Debugger::Internal::CdbDumperHelper - - injection - wstrzyknięcie - - - debugger call - wywołanie debuggera - - - Loading the custom dumper library '%1' (%2) ... - Ładowanie biblioteki z własnymi zrzutami "%1" (%2) ... - - - Loading of the custom dumper library '%1' (%2) failed: %3 - Błąd ładowania biblioteki z własnymi zrzutami "%1" (%2) : %3 - - - Loaded the custom dumper library '%1' (%2). - Załadowano własną bibliotekę zrzutów "%1" (%2). - - - Stopped / Custom dumper library initialized. - Zatrzymano / Biblioteka z własnymi zrzutami zainicjalizowana. - - - The custom dumper library could not be initialized: %1 - Nie można zainicjalizować biblioteki z własnymi zrzutami: %1 - - - The debuggee does not appear to be Qt application. - Debugowany proces nie wygląda na aplikację Qt. - - - Initializing dumpers... - Inicjalizacja zrzutów... - - - Disabling dumpers due to debuggee crash... - Wyłączanie zrzutów z powodu zakończenia pracy debugowanego programu... - - - Querying dumpers for '%1'/'%2' (%3) - Odpytywanie zrzutów "%1"/"%2" (%3) - Debugger::Internal::CdbOptionsPageWidget - <html><body><p>Specify the path to the <a href="%1">Debugging Tools for Windows</a> (%2) here.</p><p><b>Note:</b> Restarting Qt Creator is required for these settings to take effect.</p></p></body></html> - Label text for path configuration. %2 is "x-bit version". - <html><body><p>Określ tutaj ścieżkę do <a href="%1">Narzędzi debugowania dla Windows</a> (%2).</p><p><b>Uwaga:</b> żeby zmiany odniosły skutek, konieczne jest ponowne uruchomienie programu.</p></p></body></html> + Startup + Placeholder + Uruchamianie - 64-bit version - Wersja 64 bitowa + Additional &arguments: + Dodatkowe &argumenty: - 32-bit version - Wersja 32 bitowa + Debugger Paths + Ścieżki debuggera - Autodetect - Wykryj automatycznie + &Symbol paths: + Ścieżki do &symboli: - "Debugging Tools for Windows" could not be found. - "Narzędzia debugowe dla Windows" nie mogą zostać odnalezione. + S&ource paths: + Ścieżki do ź&ródeł: - Checked: -%1 - Sprawdzono w: -%1 - - - Autodetection - Automatyczne wykrywanie - - - - CdbStackFrameContext - - <Unknown Type> - <Nieznany typ> - - - <Unknown Value> - <Nieznana wartość> - - - <Unknown> - <Nieznany> - - - - SymbolGroup - - Out of scope - Poza zakresem + Break on: + Przerwij w: @@ -5752,6 +5328,18 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. Dodaje serwer z symbolami Microsoft dostarczający symboli dla bibliotek systemu operacyjnego. Wymaga podania katalogu dla lokalnego cache. + + <html><head/><body><p>The debugger is not configured to use the public <a href="%1">Microsoft Symbol Server</a>. This is recommended for retrieval of the symbols of the operating system libraries.</p><p><i>Note:</i> A fast internet connection is required for this to work smoothly. Also, a delay might occur when connecting for the first time.</p><p>Would you like to set it up?</p></br></body></html> + <html><head/><body><p>Debugger nie jest skonfigurowany do użycia publicznego <a href="%1">Microsoft Symbol Server</a>. Zalecane jest pobranie symboli dla bibliotek systemu operacyjnego. </p><p><i>Uwaga:</i> Wymagane jest szybkie połączenie z internetem do płynnego działania. Może wystąpić opóźnienie przy pierwszej próbie połączenia</p><p>Czy skonfigurować?</p></br></body></html> + + + Symbol Server + Serwer z symbolami + + + Do not ask again + Nie pytaj ponownie + Debugger::Internal::DebuggerSettings @@ -5763,10 +5351,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger Properties... Właściwości debuggera... - - Adjust Column Widths to Contents - Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents Zawsze wyrównuj szerokości kolumn do ich zawartości @@ -5811,10 +5395,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Use Debugging Helpers Używaj asystenta debuggera - - Debug Debugging Helpers - Debuguj asystenta debuggera - Use Code Model Używaj modelu kodu @@ -5883,10 +5463,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Skip Known Frames Pomijaj znane kroki - - Selecting this results in well-known but usually not interesting frames belonging to reference counting and signal emission being skipped while single-stepping. - Wybranie tej opcji spowoduje opuszczanie dobrze znanych kroków w kodzie licznika referencji i emisji sygnału. - Enable Reverse Debugging Włącz debugowanie wsteczne @@ -5903,10 +5479,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Create Full Backtrace Utwórz pełny zrzut stosu - - Execute Line - Wykonaj linię - Checking this will enable tooltips in the locals view during debugging. Zaznaczenie tej opcji włączy podpowiedzi w widoku ze zmiennymi lokalnymi podczas debugowania. @@ -5924,21 +5496,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Zaznaczenie tej opcji spowoduje pokazanie kolumny z adresami w widoku stosu podczas debugowania. - - Debugger::Internal::MemoryViewAgent - - Memory $ - Pamięć $ - - - No memory viewer available - Brak dostępnej przeglądarki pamięci - - - The memory contents cannot be shown as no viewer plugin for binary data has been loaded. - Zawartość pamięci nie może zostać pokazana ponieważ nie załadowano żadnej wtyczki z przeglądarką dla binarnego edytora. - - Debugger @@ -5953,6 +5510,18 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. <Encoding error> <Błąd kodowania> + + Debugging Helper + Asystent debuggera + + + Choose DebuggingHelper Location + Wybierz położenie asystenta debuggera + + + Ctrl+Shift+F11 + Ctrl+Shift+F11 + Debugger::Internal::AttachExternalDialog @@ -6004,14 +5573,6 @@ Qt Creator nie może się do niego podłączyć. Select Working Directory Wybierz katalog roboczy - - Executable: - Plik wykonywalny: - - - Arguments: - Argumenty: - Debugger::Internal::StartRemoteDialog @@ -6043,32 +5604,10 @@ Qt Creator nie może się do niego podłączyć. Podaj adres: - - Debugger::Internal::DebugMode - - Debug - Debugowanie - - - - Debugger::Internal::DebuggingHelperOptionPage - - Debugging Helper - Asystent debuggera - - - Choose DebuggingHelper Location - Wybierz położenie asystenta debuggera - - - Ctrl+Shift+F11 - Ctrl+Shift+F11 - - Debugger::Internal::AbstractGdbAdapter - The Gdb process could not be stopped: + The gdb process could not be stopped: %1 Nie można zatrzymać procesu gdb: %1 @@ -6145,26 +5684,10 @@ Qt Creator nie może się do niego podłączyć. Debugger::Internal::GdbEngine - - The Gdb process crashed some time after starting successfully. - Proces Gdb zakończony błędem po poprawnym uruchomieniu. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. Ostatnie wywołanie funkcji waitFor...() zakończyło się niepowodzeniem po określonym czasie. Stan QProcess się nie zmienił, możesz ponownie spróbować wywołać waitFor...(). - - An error occurred when attempting to write to the Gdb process. For example, the process may not be running, or it may have closed its input channel. - Wystąpił błąd podczas próby pisania do procesu Gdb. Być może proces nie jest uruchomiony lub zamknął on swój kanał wejściowy. - - - An error occurred when attempting to read from the Gdb process. For example, the process may not be running. - Wystąpił błąd podczas próby czytania z procesu Gdb. Być może proces nie jest uruchomiony. - - - An unknown error in the Gdb process occurred. - Wystąpił nieznany błąd w procesie Gdb. - Reading %1... Wczytywanie %1... @@ -6185,22 +5708,10 @@ Qt Creator nie może się do niego podłączyć. Loading %1... Ładowanie %1... - - <p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table> - <p>Podproces zatrzymany ponieważ otrzymał on sygnał z systemu operacyjnego.<p><table><tr><td>Nazwa sygnału: </td><td>%1</td></tr><tr><td>Znaczenie sygnału: </td><td>%2</td></tr></table> - - - Signal received - Otrzymano sygnał - Stopped. Zatrzymano. - - Stopped: "%1" - Zatrzymano: "%1" - Continuing after temporary stop... Kontynuowanie po tymczasowym zatrzymaniu... @@ -6209,18 +5720,22 @@ Qt Creator nie może się do niego podłączyć. Running requested... Zażądano uruchomienia... - - Watchpoint %1 at %2 triggered: - Monitor pamięci %1 został wyzwolony pod %2: - - - Stopped at breakpoint %1 in thread %2 - Zatrzymano w pułapce %1 w wątku %2. {1 ?} {2?} - Raw structure Surowa struktura + + Normal + Normalny + + + Displayed + Wyświetlony + + + There is no gdb binary available for binaries in format '%1' + Brak dostępnego pliku binarnego gdb dla pliku binarnego w formacie "%1" + Step requested... Zażądano wykonania kroku... @@ -6249,10 +5764,6 @@ Qt Creator nie może się do niego podłączyć. Run to function %1 requested... Zażądano wykonania do osiągnięcia funkcji %1... - - Unable to run '%1': %2 - Nie można uruchomić "%1": %2 - Retrieving data for stack view thread 0x%1... Pobieranie danych dla widoku stosu w wątku 0x%1... @@ -6330,18 +5841,6 @@ Może to spowodować uzyskanie błędnych rezultatów. Disassembler failed: %1 Błąd deasemblera: %1 - - Gdb I/O Error - Błąd wejścia / wyjścia Gdb - - - Unexpected Gdb Exit - Nieoczekiwanie zakończenie Gdb - - - The gdb process exited unexpectedly (%1). - Proces gdb nieoczekiwanie zakończył się (%1). - Snapshot Creation Error Błąd tworzenia zrzutu @@ -6360,14 +5859,6 @@ Może to spowodować uzyskanie błędnych rezultatów. Finished retrieving data Zakończono pobieranie danych - - crashed - zakończył pracę błędem - - - code %1 - kod %1 - Adapter start failed Nie można uruchomić adaptera @@ -6377,10 +5868,12 @@ Może to spowodować uzyskanie błędnych rezultatów. Nie można odnaleźć skryptu inicjalizującego dla debuggera - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. -%2 - Nie można rozpocząć procesu Gdb. Brak programu "%1" albo brak wymaganych uprawnień aby go uruchomić. -%2 + An exception was triggered. + Rzucono wyjątek. + + + An exception was triggered: + Rzucono wyjątek: Library %1 loaded @@ -6425,12 +5918,34 @@ You can choose between waiting longer or abort debugging. Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie. - Gdb not responding - Gdb nie odpowiada + The gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. +%2 + Nie można rozpocząć procesu gdb. Brak programu "%1" albo brak wymaganych uprawnień aby go uruchomić. +%2 - Give gdb more time - Poczekaj dłużej na gdb + The gdb process crashed some time after starting successfully. + Proces gdb zakończony błędem po poprawnym uruchomieniu. + + + An error occurred when attempting to write to the gdb process. For example, the process may not be running, or it may have closed its input channel. + Wystąpił błąd podczas próby pisania do procesu gdb. Być może proces nie jest uruchomiony lub zamknął on swój kanał wejściowy. + + + An error occurred when attempting to read from the gdb process. For example, the process may not be running. + Wystąpił błąd podczas próby czytania z procesu gdb. Być może proces nie jest uruchomiony. + + + An unknown error in the gdb process occurred. + Wystąpił nieznany błąd w procesie gdb. + + + GDB not responding + GDB nie odpowiada + + + Give GDB more time + Poczekaj dłużej na GDB Stop debugging @@ -6440,6 +5955,14 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Process failed to start Nie można uruchomić procesu + + Setting breakpoints failed + Nie można ustawić pułapek + + + Executable Failed + Nieudane uruchomienie + <unknown> <nieznany> @@ -6465,18 +5988,22 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Aplikacja zakończona prawidłowo - <Unknown> - name - nieznana + Value changed from %1 to %2. + Wartość zmieniona z %1 na %2. - <Unknown> - meaning - nieznane + Cannot Read Symbols + Nie można odczytać symboli - Stopped: %1 by signal %2 - Zatrzymano: %1 przez sygnał %2 + Cannot read symbols for module "%1". + Nie można odczytać symboli dla modułu "%1". + + + The GDB installed at %1 cannot find a valid python installation in its %2 subdirectory. +You may set the environment variable PYTHONPATH to point to your installation. + GDB zainstalowany w %1 nie może odnaleźć poprawnej instalacji pythona w jego podkatalogu %2. +Można ustawić zmienną środowiskową PYTHONPATH wskazującą na instalację. Execution Error @@ -6492,24 +6019,38 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Failed to shut down application Nie można zamknąć aplikacji - - There is no gdb binary available for '%1' - Brak dostępnego pliku binarnego gdb dla "%1" - Immediate return from function requested... Zażądano natychmiastowego powrotu z funkcji... - - <unknown> - address - End address of loaded module - nieznany - Jumping out of bogus frame... Wyskakiwanie z błędnej ramki... + + Cannot read widget data: %1 + Nie można odczytać danych widżetu: %1 + + + Could not find a widget. + Nie można odnaleźć widżetu. + + + The gdb location must be given as an absolute path in the debugger settings (%1). + Położenie gdb musi być podane jako ścieżka absolutna w ustawieniach debuggera (%1). + + + The gdb process crashed. + Proces gdb zakończył pracę błędem. + + + The gdb process exited unexpectedly (code %1) + Proces gdb nieoczekiwanie zakończył pracę (kod %1) + + + Unexpected GDB Exit + Nieoczekiwanie zakończenie GDB + Setting up inferior... Ustawianie podprocesu... @@ -6530,6 +6071,10 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.The debugger settings point to a script file at '%1' which is not accessible. If a script file is not needed, consider clearing that entry to avoid this warning. Ustawienia debuggera pokazują na skrypt "%1" który nie jest dostępny. Jeśli plik ze skryptem nie jest potrzebny rozważ usunięcie go z ustawień w celu uniknięcia tego ostrzeżenia. + + GDB I/O Error + Błąd wejścia / wyjścia GDB + Setting breakpoints... Ustawianie pułapek... @@ -6542,8 +6087,8 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie. Debugger::Internal::GdbOptionsPage - Gdb - Gdb + GDB + GDB Choose Location of Startup Script File @@ -6621,6 +6166,12 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.fast szybkie + + <unknown> + address + End address of loaded module + <nieznany> + Debugger::Internal::ModulesWindow @@ -6656,6 +6207,10 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Show Symbols Pokaż symbole + + Show Dependencies + Pokaż zależności + Load Symbols for Module "%1" Załaduj symbole z modułu "%1" @@ -6668,145 +6223,14 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Show Symbols in File "%1" Pokaż symbole z pliku "%1" + + Show Dependencies of "%1" + Pokaż zależności dla "%1" + Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - - Always Adjust Column Widths to Contents - Zawsze wyrównuj szerokości kolumn do ich zawartości - - - - NameDemanglerPrivate - - Premature end of input - Przedwczesny koniec danych wejściowych - - - Invalid encoding - Niepoprawne kodowanie - - - Invalid name - Niepoprawna nazwa - - - Invalid nested-name - Niepoprawna zagnieżdżona nazwa - - - Invalid template args - Niepoprawne argumenty szablonu - - - Invalid template-param - Niepoprawny parametr szablonu - - - Invalid qualifiers: unexpected 'volatile' - Niepoprawne kwalifikatory: nieoczekiwany "volatile" - - - Invalid qualifiers: 'const' appears twice - Niepoprawne kwalifikatory: "const" wystąpił dwukrotnie - - - Invalid non-negative number - Niepoprawna liczba naturalna - - - Invalid template-arg - Niepoprawny argument szablonu - - - Invalid expression - Niepoprawnie wyrażenie - - - Invalid primary expression - Niepoprawne wyrażenie główne - - - Invalid expr-primary - Niepoprawne wyrażenie główne - - - Invalid type - Niepoprawny typ - - - Invalid built-in type - Niepoprawny typ wbudowany - - - Invalid builtin-type - Niepoprawny typ wbudowany - - - Invalid function type - Niepoprawny typ funkcji - - - Invalid unqualified-name - Niesprecyzowana nazwa - - - Invalid operator-name '%s' - Niepoprawna nazwa operatora "%s" - - - Invalid array-type - Niepoprawny typ tablicowy - - - Invalid pointer-to-member-type - Niepoprawny wskaźnik do typu składnika - - - Invalid substitution - Niepoprawne zastąpienie - - - Invalid substitution: element %1 was requested, but there are only %2 - Niepoprawne zastąpienie: zażądano elementu %1 podczas gdy wszystkich elementów jest %2 - - - Invalid substitution: There are no elements - Niepoprawne zastąpienie: brak elementów - - - Invalid special-name - Niepoprawna nazwa specjalna - - - Invalid local-name - Niepoprawna nazwa lokalna - - - Invalid discriminator - Niepoprawny dyskryminator - - - Invalid ctor-dtor-name - Niepoprawna nazwa konstruktora / destruktora - - - Invalid call-offset - Niepoprawny offset wywołania - - - Invalid v-offset - Niepoprawny v-offset - - - Invalid digit - Niepoprawna cyfra - - - At position %1: - W miejscu %1: - Debugger::Internal::OutputCollector @@ -6872,10 +6296,6 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - - Always Adjust Column Widths to Contents - Zawsze wyrównuj szerokości kolumn do ich zawartości - Debugger::Internal::ScriptEngine @@ -6929,30 +6349,6 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie. Debugger::Internal::StackHandler - - Address: - Adres: - - - Function: - Funkcja: - - - File: - Plik: - - - Line: - Linia: - - - From: - Od: - - - To: - Do: - ... ... @@ -7068,12 +6464,12 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Otwórz deasembler - Adjust Column Widths to Contents - Wyrównaj szerokości kolumn do ich zawartości + Try to Load Unknown Symbols + Spróbuj załadować nieznane symbole - Always Adjust Column Widths to Contents - Zawsze wyrównuj szerokości kolumn do ich zawartości + Adjust Column Widths to Contents + Wyrównaj szerokości kolumn do ich zawartości @@ -7086,10 +6482,6 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - - Always Adjust Column Widths to Contents - Zawsze wyrównuj szerokości kolumn do ich zawartości - Debugger::Internal::WatchData @@ -7110,10 +6502,6 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Expression Wyrażenie - - Type - Typ - ... <cut off> ... <odcięte> @@ -7130,6 +6518,14 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Name Nazwa + + Internal Type + Typ wewnętrzny + + + Displayed Type + Typ wyświetlony + Internal ID Wewnętrzny identyfikator @@ -7174,6 +6570,14 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.<not accessible> <niedostępny> + + <more than %n items> + + <więcej niż %n element> + <więcej niż %n elementy> + <więcej niż %n elementów> + + <%n items> @@ -7190,10 +6594,6 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.%1 Object at Unknown Address Obiekt %1 pod nieznanym adresem - - Locals & Watchers - Zmienne lokalne i obserwowane - <Edit> <Zmodyfikuj> @@ -7279,22 +6679,10 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Locals and Watchers Zmienne lokalne i obserwowane - - Change Format for Type "%1" - Zmień format typu "%1" - Automatic Automatyczny - - Change Format for Type - Zmień format typu - - - Change Format for Object Named "%1" - Zmień format obiektu o nazwie %1 - Open Memory Editor at Object's Address (0x%1) Otwórz edytor pamięci z adresem obiektu (0x%1) @@ -7303,18 +6691,6 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Open Memory Editor at Referenced Address (0x%1) Otwórz edytor pamięci ze wskazanym adresem (0x%1) - - Break on Changes at Object's Address (0x%1) - Zatrzymano na zmianie obiektu pod adresem 0x%1 - - - Break on Changes at Referenced Address (0x%1) - Zatrzymano na zmianie danych pod adresem 0x%1 - - - Break on Changing Contents - Zatrzymano na zmianie zawartości - Watch Expression Obserwuj wyrażenie @@ -7332,8 +6708,36 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Usuń obserwowanie wyrażenia "%1" - Change Format for Object - Zmień format obiektu + Change Display Format... + Zmień format wyświetlania... + + + Treat All Characters as Printable + Traktuj wszytkie znaki jako do druku + + + Show Unprintable Characters as Octal + Wyświetlaj niedrukowalne znaki w formacie ósemkowym + + + Show Unprintable Characters as Hexadecimal + Wyświetlaj niedrukowalne znaki w formacie szesnastkowym + + + Change Display for Type "%1": + Zmień wyświetlanie dla typu "%1": + + + Change Display for Object Named "%1": + Zmień wyświetlanie dla obiektu o nazwie "%1": + + + Use Display Format Based on Type + Używaj formatu wyświetlania bazując na typie + + + Change Display for Type or Item... + Zmień wyświetlanie dla typu lub elementu... Insert New Watch Item @@ -7343,10 +6747,42 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Select Widget to Watch Wybierz widżet do obserwacji + + Add Watchpoint at Object's Address (0x%1) + Dodaj pułapkę warunkową pod adresem obiektu (0x%1) + + + Add Watchpoint at Referenced Address (0x%1) + Dodaj pułapkę warunkową pod wskazanym adresem (0x%1) + + + Add Watchpoint + Dodaj pułapkę warunkową + + + Setting a watchpoint on an address will cause the program to stop when the data at the address it modified. + Ustawienie pułapki warunkowej pod adresem spowoduje zatrzymanie programu gdy dane pod tym adresem zostaną zmodyfikowane. + + + Remove All Watch Items + Usuń wszystkie obserwowane elementy + Open Memory Editor... Otwórz edytor pamięci... + + Open Memory Editor at Object's Address + Otwórz edytor pamięci z adresem obiektu + + + Open Memory Editor at Referenced Address + Otwórz edytor pamięci ze wskazanym adresem + + + Copy Contents to Clipboard + Skopiuj zawartość do schowka + Refresh Code Model Snapshot Odśwież kopię modelu danych @@ -7356,12 +6792,24 @@ Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie.Pokaż zawartość widoku w edytorze - Adjust Column Widths to Contents - Wyrównaj szerokości kolumn do ich zawartości + Close Editor Tooltips + Zamknij podpowiedzi edytora - Always Adjust Column Widths to Contents - Zawsze wyrównuj szerokości kolumn do ich zawartości + Enter watch expression + Wprowadź warunek dla pułapki + + + Expression: + Wyrażenie: + + + Locals & Watchers + Zmienne lokalne i obserwowane + + + Adjust Column Widths to Contents + Wyrównaj szerokości kolumn do ich zawartości @@ -7425,12 +6873,12 @@ Spróbuj ponownie przebudować projekt. Formularz Qt Designer - Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt C++ Project. - Tworzy formularz Qt Designera wraz z klasą implementującą (plik nagłówkowy i źródłowy C++). Utworzony formularz i klasę można dodać do istniejącego projektu Qt C++. + Creates a Qt Designer form that you can add to a Qt Widget Project. This is useful if you already have an existing class for the UI business logic. + Tworzy formularz Qt Designera który można dodać do projektu Qt Widget. Jest to przydatne gdy istnieje już klasa implementująca logikę UI. - Creates a Qt Designer form that you can add to a Qt C++ project. This is useful if you already have an existing class for the UI business logic. - Tworzy formularz Qt Designera który można dodać do projektu Qt C++. Jest to przydatne gdy istnieje już klasa implementująca logikę UI. + Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt Widget Project. + Tworzy formularz Qt Designera wraz z klasą implementującą (plik nagłówkowy i źródłowy C++). Utworzony formularz i klasę można dodać do istniejącego projektu Qt Widget. Qt Designer Form Class @@ -7826,6 +7274,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Replace Zastąp + + Collapse All + Zwiń wszystko + Search Results Wyniki wyszukiwań @@ -7842,10 +7294,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Override %1: Zastąpienie %1: - - <b>Make:</b> %1 %2 - <b>Make:</b> %1 %2 - GenericProjectManager::Internal::GenericBuildConfigurationFactory @@ -7876,6 +7324,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Generic Manager Ogólne zarządzanie + + <Invalid tool chain> + <niepoprawny zestaw narzędzi> + GenericProjectManager::Internal::GenericProjectWizardDialog @@ -8024,7 +7476,7 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Unable to checkout %1 of %2: %3 Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message - + Nie można utworzyć kopii roboczej gałęzi %1 z repozytorium %2: %3 Unable to add %n file(s) to %1: %2 @@ -8061,12 +7513,12 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Unable to checkout %1 of %2 in %3: %4 Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message - + Nie można utworzyć kopii roboczej z %1 dla %2 z repozytorium %3: %4 Unable to find parent revisions of %1 in %2: %3 Failed to find parent revisions of a SHA1 for "annotate previous" - + Nie można odnaleźć macierzystej poprawki dla %1 w %2: %3 Invalid revision @@ -8078,11 +7530,11 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Unable to retrieve top revision of %1: %2 - Nie można pobrać głównej gałęzi w %1: %2 + Nie można pobrać głównej poprawki w %1: %2 Unable to describe revision %1 in %2: %3 - Nie można opisać poprawki %1 w %2: %3 + Nie można opisać poprawki %1 w %2: %3 Description: @@ -8091,7 +7543,7 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Unable to resolve stash message '%1' in %2 Look-up of a stash via its descriptive message failed. - + Nie można rozwiązać komunikatu odłożonej zmiany "%1" w %2 Unable to run a 'git branch' command in %1: %2 @@ -8145,15 +7597,15 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Unable to restore stash %1: %2 - Nie można przywrócić odłożonej zmiany%1: %2 + Nie można przywrócić odłożonej zmiany %1: %2 Unable to restore stash %1 to branch %2: %3 - Nie można przywrócić odłożonej zmiany%1 w gałęzi %2: %3 + Nie można przywrócić odłożonej zmiany %1 w gałęzi %2: %3 Unable to remove stashes of %1: %2 - Nie można usunąć odłożonych zmian%1: %2 + Nie można usunąć odłożonych zmian %1: %2 Unable to remove stash %1 of %2: %3 @@ -8501,6 +7953,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Closing Git Editor Zamykanie Git Editor + + Git will not accept this commit. Do you want to continue to edit it? + + Unable to retrieve file list Nie można uzyskać listy plików @@ -8597,10 +8053,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Do you want to commit the change? Czy chcesz wysłać zmianę? - - The commit message check failed. Do you want to commit the change? - - Git::Internal::GitSettings @@ -8745,42 +8197,14 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Increase Font Size Zwiększ rozmiar czcionki - - Ctrl++ - Ctrl++ - Decrease Font Size Zmniejsz rozmiar czcionki - - Ctrl+- - Ctrl+- - Reset Font Size Przywróć domyślny rozmiar czcionki - - Ctrl+0 - Ctrl+0 - - - Alt+Tab - Alt+Tab - - - Alt+Shift+Tab - Alt+Shift+Tab - - - Ctrl+Tab - Ctrl+Tab - - - Ctrl+Shift+Tab - Ctrl+Shift+Tab - Activate Search in Help mode Uaktywnij przeszukiwanie w trybie pomocy @@ -9116,7 +8540,7 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. p4 submit failed: %1 - + Błąd p4 submit: %1 Error running "where" on %1: %2 @@ -9415,10 +8839,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Current Project Bieżący projekt - - File &pattern: - &Wzorzec pliku: - ProjectExplorer::Internal::CustomExecutableConfigurationWidget @@ -9543,31 +8963,6 @@ Powód: %2 Utworzyłoby to cykliczną zależność. - - ProjectExplorer::EnvironmentModel - - <UNSET> - <SKASUJ> - - - Variable - Zmienna - - - Value - Wartość - - - <VALUE> - Value when inserting a new variable - <WARTOŚĆ> - - - <VARIABLE> - Name when inserting a new variable - <ZMIENNA> - - ProjectExplorer::EnvironmentWidget @@ -9648,10 +9043,6 @@ Powód: %2 ProjectExplorer::ProjectFileFactory display name. Fabryka plików projektu - - Could not open the following project: '%1' - Nie można otworzyć projektu: "%1" - All Projects Wszystkie projekty @@ -9673,20 +9064,17 @@ Powód: %2 ProjectExplorer::Internal::ProcessStepConfigWidget - <b>%1</b> %2 %3 %4 - <b>%1</b> %2 %3 %4 + Custom Process Step + Własny krok procesu - (disabled) - (nieaktywny) + %1 (disabled) + %1 is the custom process step summary + %1 (wyłączony) ProjectExplorer::ProjectExplorerPlugin - - Projects - Projekty - &Build &Budowanie @@ -9727,6 +9115,10 @@ Powód: %2 Open File Otwórz plik + + Recent Sessions + Ostatnie sesje + Close Project Zamknij projekt @@ -9739,10 +9131,6 @@ Powód: %2 Close All Projects Zamknij wszystkie projekty - - Session - Sesja - Build All Zbuduj wszystko @@ -9791,6 +9179,14 @@ Powód: %2 Deploy Project "%1" Zainstaluj projekt "%1" + + Publish Project... + Publikuj projekt... + + + Publish Project "%1"... + Publikuj projekt "%1"... + Clean Project Wyczyść projekt @@ -9823,6 +9219,10 @@ Powód: %2 Ctrl+R Ctrl+R + + New Subproject... + Nowy podprojekt... + Remove Project... Remove project from parent profile (Project explorer view); will not physically delete any files. @@ -9836,6 +9236,14 @@ Powód: %2 Set as Startup Project Ustaw jako projekt startowy + + Full path of the current project's main file, including file name. + Pełna ścieżka pliku głównego bieżącego projektu wraz z nazwą pliku. + + + Full path of the current project's main file, excluding file name. + Pełna ścieżka pliku głównego bieżącego projektu bez nazwy pliku. + Cancel Build && Close Anuluj budowanie i zamknij @@ -9856,6 +9264,11 @@ Powód: %2 Do you want to cancel the build process and close Qt Creator anyway? Czy chcesz anulować proces budowania i zamknąć Qt Creatora? + + New Subproject + Title of dialog + Nowy podprojekt + Adding Files to Project Failed Nie można dodać plików do projektu @@ -9896,10 +9309,6 @@ Powód: %2 Cancel Build Anuluj budowanie - - Start Debugging - Rozpocznij debugowanie - Add New... Dodaj nowy... @@ -9937,14 +9346,6 @@ Powód: %2 Always save files before build Zawsze zachowuj pliki przed budowaniem - - Cannot run without a project. - Nie można uruchamiać bez wybranego projektu. - - - Cannot debug without a project. - Nie można debugować bez wybranego projektu. - New File Title of dialog @@ -9987,45 +9388,6 @@ do systemu kontroli wersji (%2)? Nie można usunąć pliku %1. - - ProjectExplorer::Internal::BuildConfigDialog - - Change build configuration && continue - Zmień konfigurację budowania i kontynuuj - - - Cancel - Anuluj - - - Continue anyway - Kontynuuj - - - Run configuration does not match build configuration - Konfiguracja uruchamiania nie jest zgodna z konfiguracją budowania - - - This can happen if the active build configuration uses the wrong Qt version and/or tool chain for the active run configuration (for example, running in Symbian emulator requires building with the WINSCW tool chain). - To się może zdarzyć gdy aktywna konfiguracja budowania używa innej wersji Qt lub innego zestawu narzędzi od tych użytych w aktywnej konfiguracji uruchamiania (np. uruchamianie w symulatorze Symbiana wymaga zbudowania z zestawem narzędzi WINSCW). - - - The active build configuration builds a target that cannot be used by the active run configuration. - Aktywna konfiguracja budowania tworzy produkt który nie może zostać użyty przez aktywną konfigurację uruchamiania. - - - Active run configuration - Aktywna konfiguracja uruchamiania - - - Choose build configuration: - Wybierz konfigurację budowania: - - - No valid build configuration found. - Nie znaleziono poprawnej konfiguracji budowania. - - ProjectExplorer::Internal::ProjectExplorerSettingsPage @@ -10193,10 +9555,6 @@ do projektu "%2". Could not save session to file %1 Nie można zachować sesji w pliku %1 - - Qt Creator - Qt Creator - Untitled Nienazwany @@ -10209,74 +9567,11 @@ do projektu "%2". Brak pliku: %1 - - ToolChain - - GCC - GCC - - - Intel C++ Compiler (Linux) - Kompilator Intel C++ (Linux) - - - Microsoft Visual C++ - Microsoft Visual C++ - - - Windows CE - Windows CE - - - WINSCW - WINSCW - - - GCCE - GCCE - - - GCCE/GnuPoc - GCCE/GnuPoc - - - RVCT (ARMV6)/GnuPoc - RVCT (ARMV6)/GnuPoc - - - RVCT (ARMV5) - RVCT (ARMV5) - - - RVCT (ARMV6) - RVCT (ARMV6) - - - GCC for Maemo - GCC dla Maemo - - - Other - Inne - - - <Invalid> - <Niepoprawny> - - - <Unknown> - <Nieznany> - - ProjectExplorer::Internal::WinGuiProcess - The process could not be started! - Proces nie może zostać rozpoczęty! - - - Cannot retrieve debugging output! - Nie można pobrać komunikatów debuggera! + The process could not be started: %1 + Proces nie może zostać rozpoczęty: %1 @@ -10379,8 +9674,16 @@ do projektu "%2". Make - Could not find make command: %1 in the build environment - Nie można odnaleźć komendy make: %1 w środowisku procesu budowania + Qt Creator needs a tool chain set up to build. Please configure a tool chain in Project mode. + Qt Creator potrzebuje ustawionego zestawu narzędzi, który można skonfigurować w trybie "Projekty". + + + Makefile not found. Please check your build settings + Brak Makefile, sprawdź ustawienia budowania + + + Configuration is faulty, please check the Build Issues view for details. + Konfiguracja jest błędna, sprawdź szczegóły w widoku "Problemy budowania". @@ -10393,10 +9696,6 @@ do projektu "%2". <b>Make:</b> %1 not found in the environment. <b>Make:</b> Nie odnaleziono %1 w środowisku. - - <b>Make:</b> %1 %2 in %3 - <b>Make:</b> %1 %2 in %3 - Qt4ProjectManager::Internal::MakeStepFactory @@ -10408,7 +9707,7 @@ do projektu "%2". Qt4ProjectManager::Internal::ProjectLoadWizard - Project setup + Project Setup Ustawienia projektu @@ -10427,9 +9726,25 @@ do projektu "%2". Configuration unchanged, skipping qmake step. Konfiguracja niezmieniona, krok qmake opuszczony. + + Invalid Qt version. + Niepoprawna wersja Qt. + + + Requires Qt 4.7.1 or newer. + Wymaga Qt 4.7.1 lub nowszego. + + + Library not available. <a href='compile'>Compile...</a> + Biblioteka nie jest dostępna. <a href='compile'>Kompiluj...</a> + Qt4ProjectManager::QMakeStepConfigWidget + + Building helpers + Budowanie asystentów + <b>qmake:</b> No Qt version set. Cannot run qmake. <b>qmake:</b> Brak ustawionej wersji Qt. Nie można uruchomić qmake. @@ -10473,67 +9788,6 @@ do projektu "%2". %1 na urządzeniu Symbian - - Qt4ProjectManager::Internal::S60DeviceRunControl - - Launching - Uruchamianie - - - There is no device plugged in. - Brak podłączonego urządzenia. - - - Executable file: %1 - Plik wykonywalny: %1 - - - Debugger for Symbian Platform - Debugger dla platformy Symbian - - - Could not connect to phone on port '%1': %2 -Check if the phone is connected and App TRK is running. - Nie można nawiązać połączenia z telefonem na porcie "%1": %2 -Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. - - - Could not connect to App TRK on device: %1. Restarting App TRK might help. - Nie można ustanowić połączenia z aplikacją TRK w urządzeniu: %1. Spróbuj ponownie uruchomić aplikację TRK. - - - Waiting for App TRK - Oczekiwanie na aplikację TRK - - - Qt Creator is waiting for the TRK application to connect.<br>Please make sure the application is running on your mobile phone and the right port is configured in the project settings. - Qt Creator oczekuje na połączenie od aplikacji TRK.<br>Sprawdź czy aplikacja jest uruchomiona na telefonie komórkowym i czy właściwy port jest skonfigurowany w ustawieniach projektu. - - - Canceled. - Anulowano. - - - The device '%1' has been disconnected - Urządzenie "%1" zostało odłączone - - - Finished. - Zakończono. - - - Starting application... - Uruchamianie aplikacji... - - - Application running with pid %1. - Aplikacja wykonuje się z pid %1. - - - Could not start application: %1 - Nie można uruchomić aplikacji: %1 - - Qt4ProjectManager::Internal::S60DeviceDebugRunControl @@ -10545,8 +9799,8 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona.Debugger dla platformy Symbian - Debugging - Debugowanie + Debug on Device + Zdebuguj na urządzeniu Launching debugger... @@ -10607,10 +9861,6 @@ S60 emulator run configuration default display name, %1 is base pro-File nameRun on Device Uruchom na urządzeniu - - Debug on Device - Zdebuguj na urządzeniu - Qt4ProjectManager::Internal::Qt4PriFileNode @@ -10676,6 +9926,18 @@ S60 emulator run configuration default display name, %1 is base pro-File name Qt4ProjectManager::Qt4Manager + + Full path to the bin/ install directory of the current project's Qt version. + Pełna ścieżka do podkatalogu bin/ katalogu instalacji bieżącej wersji Qt. + + + Update of Generated Files + Uaktualnienie wygenerowanych plików + + + The following files are either outdated or have been modified:<br><br>%1<br><br>Do you want Qt Creator to update the files? Any changes will be lost. + Następujące pliki są albo nieaktualne albo zostały zmodyfikowane: <br><br>%1<br><br>Czy chcesz odświeżyć te pliki? Jakiekolwiek zmiany zostaną utracone. + Failed opening project '%1': Project file does not exist Nie można otworzyć projektu "%1": projekt nie istnieje @@ -10703,6 +9965,10 @@ S60 emulator run configuration default display name, %1 is base pro-File nameClean Wyczyść + + Jump to File Under Cursor + Skocz do pliku pod kursorem + Add Library... Dodaj bibliotekę... @@ -10863,22 +10129,10 @@ S60 emulator run configuration default display name, %1 is base pro-File nameSelect qmake Executable Wskaż plik wykonywalny qmake - - Select the MinGW Directory - Wskaż katalog MinGW - - - Select Carbide Install Directory - Wskaż katalog z zainstalowanym Carbide - Select S60 SDK Root Wskaż katalog główny S60 SDK - - Select the CSL ARM Toolchain (GCCE) Directory - Wskaż katalog zestawu narzędzi CSL ARM (GCCE) - Auto-detected Automatycznie wykryte @@ -10896,50 +10150,33 @@ S60 emulator run configuration default display name, %1 is base pro-File nameLog budowania asystenta debuggera dla "%1" - Binary not found - Nie znaleziono pliku binarnego + Helpers: None available + Asystenci: Nie są dostępni - <html><body><table><tr><td colspan="2"><b>GDB debugging helpers</b></td></tr><tr><td>File:</td><td><pre>%1</pre></td></tr><tr><td>Last&nbsp;modified:</td><td>%2</td></tr><tr><td>Size:</td><td>%3 Bytes</td></tr><tr><td colspan="2"><b>QML type dumper</b></td></tr><tr><td>File:</td><td><pre>%4</pre></td></tr><tr><td>Last&nbsp;modified:</td><td>%5</td></tr><tr><td>Size:</td><td>%6 Bytes</td></tr><tr><td colspan="2"><b>QML observer</b></td></tr><tr><td>File:</td><td><pre>%7</pre></td></tr><tr><td>Last&nbsp;modified:</td><td>%8</td></tr><tr><td>Size:</td><td>%9 Bytes</td></tr></table></body></html> - Tooltip showing the debugging helper library file. - <html><body><table><tr><td colspan="2"><b>Asystenci debuggera GDB</b></td></tr><tr><td>Plik:</td><td><pre>%1</pre></td></tr><tr><td>Ostatnio&nbsp;zmodyfikowany:</td><td>%2</td></tr><tr><td>Rozmiar:</td><td>%3 Bajtów</td></tr><tr><td colspan="2"><b>Zrzut typu QML</b></td></tr><tr><td>Plik:</td><td><pre>%4</pre></td></tr><tr><td>Ostatnio&nbsp;zmodyfikowany:</td><td>%5</td></tr><tr><td>Rozmiar:</td><td>%6 Bajtów</td></tr><tr><td colspan="2"><b>QML observer</b></td></tr><tr><td>Plik:</td><td><pre>%7</pre></td></tr><tr><td>Ostatnio&nbsp;zmodyfikowany:</td><td>%8</td></tr><tr><td>Rozmiar:</td><td>%9 Bajtów</td></tr></table></body></html> + Helpers: %1. + %1 is list of tool names. + Asystenci: %1. - This Qt Version has a unknown toolchain. - Ta wersja Qt posiada nieznany zestaw narzędzi. + <i>Not yet built.</i> + <i>Jeszcze nie zbudowany.</i> - Desktop - Qt Version is meant for the desktop - Desktop + <i>Not needed.</i> + <i>Niepotrzebny</i> - Symbian - Qt Version is meant for Symbian - Symbian - - - Maemo - Qt Version is meant for Maemo - Maemo - - - Qt Simulator - Qt Version is meant for Qt Simulator - Symulator Qt - - - unkown - No idea what this Qt Version is meant for! - nieznana - - - Found Qt version %1, using mkspec %2 (%3) - Znaleziono wersję Qt %1 używającą mkspec %2 (%3) + <i>Cannot be compiled.</i> + <i>Nie może zostać skompilowany.</i> Qt4ProjectManager::QtVersionManager + + MinGW from %1 + MinGW z %1 + <not found> <nie znaleziony> @@ -10952,6 +10189,14 @@ S60 emulator run configuration default display name, %1 is base pro-File nameName: Nazwa: + + Invalid Qt version + Niepoprawna wersja Qt + + + ABI: + ABI: + Source: Źródło: @@ -10972,10 +10217,6 @@ S60 emulator run configuration default display name, %1 is base pro-File nameVersion: Wersja: - - Debugging helper: - Asystent debuggera: - Qt4ProjectManager::Internal::ConsoleAppWizard @@ -11125,8 +10366,8 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos ResourceEditor::Internal::ResourceEditorPlugin - Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. - Tworzy plik z zasobami Qt (.qrc) który można dodać do projektu Qt C++. + Creates a Qt Resource file (.qrc) that you can add to a Qt Widget Project. + Tworzy plik z zasobami Qt (.qrc) który można dodać do projektu Qt Widget. Qt Resource file @@ -11417,42 +10658,19 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos nienazwany - <em>Binary data</em> - <em>Dane binarne</em> + Opening file + Otwieranie pliku TextEditor::BaseTextEditor - - CTRL+D - Ctrl+D - - - Print Document - Wydruk dokumentu - - - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. - <b>Błąd:</b> Nie można odkodować "%1" używając kodowania "%2". Edycja nie jest możliwa. - - - Select Encoding - Wybierz kodowanie - - - The text is too large to be displayed (%1 MB). - Tekst jest zbyt obszerny aby mógł zostać wyświetlony (%1 MB). - - - - TextEditor::BaseTextEditorEditable Line: %1, Col: %2 Linia: %1, kolumna: %2 - Line: %1, Col: 999 - Linia: %1, kolumna: 999 + Line: 9999, Col: 999 + Linia: 9999, kolumna: 999 @@ -11800,6 +11018,22 @@ Następujące kodowania będą najprawdopodobniej pasowały: Ctrl+Return Ctrl+Return + + Uppercase Selection + + + + Alt+Shift+U + Alt+Shift+U + + + Lowercase Selection + + + + Alt+U + Alt+U + Goto Line Start Przejdź do początku linii @@ -11832,6 +11066,14 @@ Następujące kodowania będą najprawdopodobniej pasowały: Goto Next Word Przejdź do następnego słowa + + Goto Previous Word Camel Case + + + + Goto Next Word Camel Case + + Goto Line Start With Selection Zaznacz do początku linii @@ -11864,6 +11106,14 @@ Następujące kodowania będą najprawdopodobniej pasowały: Goto Next Word With Selection Zaznacz do następnego słowa + + Goto Previous Word Camel Case With Selection + + + + Goto Next Word Camel Case With Selection + + <line number> <numer linii> @@ -11903,6 +11153,30 @@ Następujące kodowania będą najprawdopodobniej pasowały: Alt+Return Alt+Return + + Selected text within the current document. + Zaznacz tekst w bieżącym dokumencie. + + + Line number of the text cursor position in current document (starts with 1). + Numer linii kursora tekstu w bieżącym dokumencie (poczynając od 1). + + + Column number of the text cursor position in current document (starts with 0). + Numer kolumny kursora tekstu w bieżącym dokumencie (poczynając od 0). + + + Number of lines visible in current document. + Liczba widocznych linii w bieżącym dokumencie. + + + Number of columns visible in current document. + Liczba widocznych kolumn w bieżącym dokumencie. + + + Current document's font size in points. + Rozmiar czcionki bieżącego dokumentu w punktach. + TextEditor::TextEditorSettings @@ -12161,21 +11435,6 @@ Następujące kodowania będą najprawdopodobniej pasowały: Projekt z systemu kontroli wersji - - VCSBase::VCSBaseEditor - - Annotate "%1" - Dołącz adnotację do "%1" - - - Copy "%1" - Skopiuj "%1" - - - Describe change %1 - Opisz zmianę %1 - - VCSBase::VCSBaseOutputWindow @@ -12329,8 +11588,8 @@ Następujące kodowania będą najprawdopodobniej pasowały: <title>o:pusty</title> - <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> - <title>Błąd 404...</title><div align="center"><br><br><h1>Strona nie została znaleziona</h1><br><h3>'%1'</h3></div> + <html><head><meta http-equiv="content-type" content="text/html; charset=UTF-8"><title>Error 404...</title></head><body><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div></body> + <html><head><meta http-equiv="content-type" content="text/html; charset=UTF-8"><title>Błąd 404...</title></head><body><div align="center"><br><br><h1>Nie znaleziono strony</h1><br><h3>'%1'</h3></div></body> @@ -12540,6 +11799,26 @@ Następujące kodowania będą najprawdopodobniej pasowały: Qt Script file Plik ze skryptem Qt + + GLSL Shader file + Plik shadera GLSL + + + GLSL Fragment Shader file + Plik fragment shadera GLSL + + + GLSL/ES Fragment Shader file + Plik fragment shadera GLSL/ES + + + GLSL Vertex Shader file + Plik vertex shadera GLSL + + + GLSL/ES Vertex Shader file + Plik vertex shadera GLSL/ES + BMP image Plik graficzny BMP @@ -12626,7 +11905,7 @@ Następujące kodowania będą najprawdopodobniej pasowały: Qt Creator Generic Assembler - + Ogólny asembler Qt Creatora Differences between files @@ -12658,14 +11937,6 @@ Aby uaktywnić ten filtr wpisz w lokalizatorze powyższy skrót i po spacji poda Ogranicz aktywność filtru: aktywny tylko po wpisaniu przedrostka - - Add... - Dodaj... - - - Edit... - Zmodyfikuj... - Remove Usuń @@ -12678,6 +11949,14 @@ aktywny tylko po wpisaniu przedrostka File types: Typy plików: + + Add + Dodaj + + + Edit + Zmodyfikuj + Locator::Internal::FileSystemFilterOptions @@ -12853,29 +12132,6 @@ aktywny tylko po wpisaniu przedrostka %1 (przedrostek: %2) - - Qt4ProjectManager::Internal::S60Devices::Device - - Id: - Identyfikator: - - - Name: - Nazwa: - - - EPOC: - EPOC: - - - Tools: - Narzędzia: - - - Qt: - Qt: - - trk::BluetoothListener @@ -12918,12 +12174,12 @@ aktywny tylko po wpisaniu przedrostka Niedomknięty ciąg na końcu linii - Illegal escape squence - Niepoprawna sekwencja specjalna + Illegal unicode escape sequence + Niepoprawna unikodowa sekwencja escape - Illegal unicode escape sequence - Niepoprawna unikodowa sekwencja specjalna + Illegal escape sequence + Niepoprawna sekwencja escape Unclosed comment at end of file @@ -13061,10 +12317,6 @@ aktywny tylko po wpisaniu przedrostka Target Produkt docelowy - - Defaults - Domyślne - Import... Importuj... @@ -13085,6 +12337,18 @@ aktywny tylko po wpisaniu przedrostka Reset Przywróć + + Reset all to default + Przywróć wszystkie domyślne + + + Reset All + Przywróć wszystkie + + + Reset to default + Przywróć domyślne + Git::Internal::StashDialog @@ -13401,548 +12665,6 @@ Możesz odłożyć zmiany lub je porzucić. Nazwa właściwości: - - GradientDialog - - Edit Gradient - Zmodyfikuj gradient - - - - GradientEditor - - Form - Formularz - - - Gradient Editor - Edytor gradientu - - - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. - Ten obszar pokazuje podgląd edytowanego gradientu. Możesz tutaj również zmieniać parametry specyficzne dla typu gradientu, takie jak: punkt początkowy i końcowy, promień, itp... poprzez przeciągnięcie i upuszczenie uchwytu. - - - 1 - 1 - - - 2 - 2 - - - 3 - 3 - - - 4 - 4 - - - 5 - 5 - - - Gradient Stops Editor - Edytor punktów gradientu - - - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. - Ten obszar pozwala na edycję punktów gradientu. Aby skopiować istniejący punkt kliknij dwukrotnie na jego uchwyt. W celu stworzenia nowego punktu kliknij dwukrotnie poza istniejącymi uchwytami punków. Przeciągnij i upuść uchwyt aby go przesunąć. Naciśnij prawy przycisk myszy aby pokazać menu z dodatkowymi akcjami. - - - Zoom - Powiększ - - - Reset Zoom - Normalny rozmiar - - - Position - Pozycja - - - Hue - Barwa - - - H - H - - - Saturation - Nasycenie - - - S - S - - - Sat - Nasycenie - - - Value - Wartość - - - V - V - - - Val - Wartość - - - Alpha - Kanał alfa - - - A - A - - - Type - Typ - - - Spread - Rozciąganie - - - Color - Kolor - - - Current stop's color - Kolor bieżącego punktu - - - Show HSV specification - Pokaż specyfikację HSV - - - HSV - HSV - - - Show RGB specification - Pokaż specyfikację RGB - - - RGB - RGB - - - Current stop's position - Pozycja bieżącego punktu - - - % - % - - - Zoom In - Powiększ - - - Zoom Out - Pomniejsz - - - Toggle details extension - Przełącz rozszerzenie ze szczegółami - - - > - > - - - Linear Type - Typ liniowy - - - ... - ... - - - Radial Type - Typ radialny - - - Conical Type - Typ stożkowy - - - Pad Spread - Powtarzaj punkt brzegowy - - - Repeat Spread - Powtarzaj cały zakres - - - Reflect Spread - Powtarzaj z odbiciami - - - Start X - Początek X - - - Start Y - Początek Y - - - Final X - Koniec X - - - Final Y - Koniec Y - - - Central X - Środek X - - - Central Y - Środek Y - - - Focal X - Ogniskowa X - - - Focal Y - Ogniskowa Y - - - Radius - Promień - - - Angle - Kąt - - - Linear - Liniowy - - - Radial - Radialny - - - Conical - Stożkowy - - - Pad - Brak - - - Repeat - Powtórzone - - - Reflect - Odbite - - - - QtGradientDialog - - Edit Gradient - Zmodyfikuj gradient - - - - QtGradientEditor - - Form - Formularz - - - Gradient Editor - Edytor gradientu - - - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. - Ten obszar pokazuje podgląd edytowanego gradientu. Możesz tutaj również zmieniać parametry specyficzne dla typu gradientu, takie jak: punkt początkowy i końcowy, promień, itp... poprzez przeciągnięcie i upuszczenie uchwytu. - - - 1 - 1 - - - 2 - 2 - - - 3 - 3 - - - 4 - 4 - - - 5 - 5 - - - Gradient Stops Editor - Edytor punktów gradientu - - - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. - Ten obszar pozwala na edycję punktów gradientu. Aby skopiować istniejący punkt kliknij dwukrotnie na jego uchwyt. W celu stworzenia nowego punktu kliknij dwukrotnie poza istniejącymi uchwytami punków. Przeciągnij i upuść uchwyt aby go przesunąć. Naciśnij prawy przycisk myszy aby pokazać menu z dodatkowymi akcjami. - - - Zoom - Powiększ - - - Reset Zoom - Normalny rozmiar - - - Position - Pozycja - - - Hue - Barwa - - - H - H - - - Saturation - Nasycenie - - - S - S - - - Sat - Nasycenie - - - Value - Wartość - - - V - V - - - Val - Wartość - - - Alpha - Kanał alfa - - - A - A - - - Type - Typ - - - Spread - Rozciąganie - - - Color - Kolor - - - Current stop's color - Kolor bieżącego punktu - - - Show HSV specification - Pokaż specyfikację HSV - - - HSV - HSV - - - Show RGB specification - Pokaż specyfikację RGB - - - RGB - RGB - - - Current stop's position - Pozycja bieżącego punktu - - - % - % - - - Zoom In - Powiększ - - - Zoom Out - Pomniejsz - - - Toggle details extension - Przełącz rozszerzenie ze szczegółami - - - > - > - - - Linear Type - Typ liniowy - - - ... - ... - - - Radial Type - Typ radialny - - - Conical Type - Typ stożkowy - - - Pad Spread - Powtarzaj punkt brzegowy - - - Repeat Spread - Powtarzaj cały zakres - - - Reflect Spread - Powtarzaj z odbiciami - - - Start X - Początek X - - - Start Y - Początek Y - - - Final X - Koniec X - - - Final Y - Koniec Y - - - Central X - Środek X - - - Central Y - Środek Y - - - Focal X - Ogniskowa X - - - Focal Y - Ogniskowa Y - - - Radius - Promień - - - Angle - Kąt - - - Linear - Liniowy - - - Radial - Radialny - - - Conical - Stożkowy - - - Pad - Brak - - - Repeat - Powtórzone - - - Reflect - Odbite - - - - QtGradientView - - Gradient View - Widok gradientów - - - New... - Nowy... - - - Edit... - Zmodyfikuj... - - - Rename - Zmień nazwę - - - Remove - Usuń - - - Grad - Grad - - - Remove Gradient - Usuń gradient - - - Are you sure you want to remove the selected gradient? - Czy chcesz usunąć zaznaczony gradient? - - - - QtGradientViewDialog - - Select Gradient - Wybierz gradient - - QmlDesigner::Internal::SettingsPage @@ -13953,18 +12675,30 @@ Możesz odłożyć zmiany lub je porzucić. Snapping Przyciąganie - - Item spacing - Odstępy - - - Snap margin - Margines - Qt Quick Designer Qt Quick Designer + + Snap margin: + Margines: + + + Item spacing: + Odstępy: + + + Canvas + Płótno + + + Width + Szerokość + + + Height + Wysokość + MaemoConfigTestDialog @@ -13973,113 +12707,6 @@ Możesz odłożyć zmiany lub je porzucić. Test konfiguracji urządzenia - - MaemoSettingsWidget - - Maemo Device Configurations - Konfiguracje urządzenia Maemo - - - Device type: - Typ urządzenia: - - - Authentication type: - Typ autoryzacji: - - - Password - Hasło - - - Key - Klucz - - - Password: - Hasło: - - - Private key file: - Plik z prywatnym kluczem: - - - Add - Dodaj - - - Remove - Usuń - - - Test - Przetestuj - - - Configuration: - Konfiguracja: - - - Name - Nazwa - - - IP or host name of the device - IP lub nazwa hosta urządzenia - - - s - s - - - Generate SSH Key ... - Generuj klucz SSH... - - - Deploy Public Key ... - Instaluj klucz publiczny... - - - Remote device - Zdalne urządzenie - - - Maemo emulator - Emulator Maemo - - - Host name: - Nazwa hosta: - - - Connection timeout: - Czas oczekiwania na połączenie: - - - Username: - Nazwa użytkownika: - - - SSH port: - Port SSH: - - - Free ports: - Wolne porty: - - - You can enter lists and ranges like this: 1024,1026-1028,1030 - Można wprowadzać listy i zakresy, np.: 1024,1026-1028,1030 - - - TextLabel - Etykieta - - - Show password - Pokaż hasło - - Qt4ProjectManager::Internal::S60CreatePackageStepWidget @@ -14090,10 +12717,6 @@ Możesz odłożyć zmiany lub je porzucić. Custom certificate: Własny certyfikat: - - Choose certificate file (.cer) - Wybierz certyfikat (.cer) - Key file: Plik z kluczem: @@ -14114,6 +12737,14 @@ Możesz odłożyć zmiany lub je porzucić. Not signed Niepodpisany + + Choose certificate file + Wybierz plik z certyfikatem + + + Certificate's details + Szczegóły certyfikatu + Qt4ProjectManager::Internal::TestWizardPage @@ -14249,6 +12880,54 @@ Możesz odłożyć zmiany lub je porzucić. unknown value for enum nieznana wartość typu wyliczeniowego + + ids must be lower case or start with underscore + identyfikatory muszą składać się z małych liter lub rozpoczynać się podkreśleniem + + + ids must be unique + identyfikatory muszą być unikatowe + + + unknown identifier + nieznany identyfikator + + + could not resolve + nie można rozwiązać + + + does not have members + nie posiada składników + + + unknown member + nieznany składnik + + + == and != perform type coercion, use === or !== instead to avoid + == i != wymuszają typ, użyj === lub !== aby tego uniknąć + + + blocks do not introduce a new scope, avoid + bloki nie wprowadzają nowego zakresu, nie stosować + + + use of the with statement is not recommended, use a var instead + używanie instrukcji "with" nie jest zalecane, zaleca się używanie "var" + + + use of void is usually confusing and not recommended + używanie "void" jest zwykle mylące i nie jest zalecane + + + avoid comma expressions + unikaj wyrażeń przecinkowych + + + expression statements should be assignments, calls or delete expressions only + składnikami wyrażenia mogą być tylko przypisania, wywołania lub detele + '%1' does not have members "%1" nie posiada składników @@ -14257,10 +12936,6 @@ Możesz odłożyć zmiany lub je porzucić. '%1' is not a member of '%2' "%1" nie jest składnikiem "%2" - - value might be 'undefined' - wartość może być "niezdefiniowana" - enum value is not a string or number wartość typu wyliczeniowego nie jest ciągiem ani liczbą @@ -14277,6 +12952,14 @@ Możesz odłożyć zmiany lub je porzucić. string value expected Oczekiwano wartości typu ciąg + + not a valid url + niepoprawny url + + + file or directory does not exist + plik lub katalog nie istnieje + not a valid color niepoprawny kolor @@ -14285,6 +12968,38 @@ Możesz odłożyć zmiany lub je porzucić. expected anchor line oczekiwano linii kotwicznej + + declarations should be at the start of a function + deklaracje powinny znajdować się na początku funkcji + + + already a formal parameter + już jest parametrem formalnym + + + already declared as function + już zadeklarowany jako funkcja + + + duplicate declaration + powielona deklaracja + + + variable is used before being declared + zmienna użyta przed jej deklaracją + + + already declared as var + już zadeklarowany jako "var" + + + function is used before being declared + funkcja użyta przed jej deklaracją + + + properties can only be assigned once + właściwości mogą być podstawione tylko raz + expected id oczekiwany identyfikator @@ -14294,8 +13009,12 @@ Możesz odłożyć zmiany lub je porzucić. używanie stałych znakowych dla identyfikatorów nie jest zalecane - ids must be lower case - Identyfikatory muszą składać się z małych liter + avoid assignments in conditions + unikaj podstawień w warunkach + + + case does not end with return, break, continue or throw + warunek nie kończy się instrukcją "return", "break", "continue" ani "throw" @@ -14316,10 +13035,6 @@ Możesz odłożyć zmiany lub je porzucić. <%1> has no valid %2 attribute <%1> nie posiada poprawnego atrybutu %2 - - %1: %2 - %1: %2 - QmlJS::Link @@ -14327,6 +13042,10 @@ Możesz odłożyć zmiany lub je porzucić. package not found pakiet nie został odnaleziony + + Library contains C++ plugins, type dump is in progress. + Biblioteka zawiera wtyczki C++, trwa zrzut typów. + Utils::FileWizardDialog @@ -14394,6 +13113,16 @@ Decimal signed value (big endian): %4 Wartość dziesiętna bez znaku (big endian): %2 Wartość dziesiętna ze znakiem (little endian): %3 Wartość dziesiętna ze znakiem (big endian): %4 + + + Previous decimal unsigned value (little endian): %1 +Previous decimal unsigned value (big endian): %2 +Previous decimal signed value (little endian): %3 +Previous decimal signed value (big endian): %4 + Poprzednia wartość dziesiętna bez znaku (little endian): %1 +Poprzednia wartość dziesiętna bez znaku (big endian): %2 +Poprzednia wartość dziesiętna ze znakiem (little endian): %3 +Poprzednia wartość dziesiętna ze znakiem (big endian): %4 Copying Failed @@ -14563,35 +13292,35 @@ Wartość dziesiętna ze znakiem (big endian): %4 CVS Command Log Editor - + Edytor komend loga CVS CVS File Log Editor - + Edytor pliku loga CVS CVS Annotation Editor - + Edytor adnotacji CVS CVS Diff Editor - + Edytor różnic CVS Git Command Log Editor - + Edytor komend loga Git Git File Log Editor - + Edytor pliku loga Git Git Annotation Editor - + Edytor adnotacji Git Git Diff Editor - + Edytor różnic Git Git Submit Editor @@ -14599,19 +13328,19 @@ Wartość dziesiętna ze znakiem (big endian): %4 Mercurial Command Log Editor - + Edytor komend loga Mercurial Mercurial File Log Editor - + Edytor pliku loga Mercurial Mercurial Annotation Editor - + Edytor adnotacji Mercurial Mercurial Diff Editor - + Edytor różnic Mercurial Mercurial Commit Log Editor @@ -14623,23 +13352,23 @@ Wartość dziesiętna ze znakiem (big endian): %4 Perforce CommandLog Editor - + Edytor komend loga Perforce Perforce Log Editor - + Edytor pliku loga Perforce Perforce Diff Editor - + Edytor różnic Perforce Perforce Annotation Editor - + Edytor adnotacji Perforce Subversion Editor - + Edytor Subversion Subversion Commit Editor @@ -14647,18 +13376,38 @@ Wartość dziesiętna ze znakiem (big endian): %4 Subversion Command Log Editor - + Edytor komend loga Subversion Subversion File Log Editor - + Edytor pliku loga Subversion Subversion Annotation Editor - + Edytor adnotacji Subversion Subversion Diff Editor + Edytor różnic Subversion + + + Bazaar Command Log Editor + Edytor komend loga Bazaar + + + Bazaar File Log Editor + Edytor pliku loga Bazaar + + + Bazaar Annotation Editor + Edytor adnotacji Bazaar + + + Bazaar Diff Editor + Edytor różnic Bazaar + + + Bazaar Commit Log Editor @@ -14676,58 +13425,6 @@ Wartość dziesiętna ze znakiem (big endian): %4 CDB - - CdbSymbolGroupContext - - <Unknown Type> - <Nieznany typ> - - - <Unknown Value> - <Nieznana wartość> - - - <Unknown> - <Nieznany> - - - - Debugger::Cdb - - Unable to load the debugger engine library '%1': %2 - Nie udało się załadować biblioteki silnika debuggera '%1': %2 - - - Unable to resolve '%1' in the debugger engine library '%2' - Nie udało się rozwiązać symbolu '%1' w bibliotece silnika debuggera '%2' - - - - CdbCore::CoreEngine - - Unable to set the image path to %1: %2 - Nie można ustawić ścieżki do obrazu na %1: %2 - - - Unable to create a process '%1': %2 - Nie można utworzyć procesu "%1": %2 - - - Attaching to a process failed for process id %1: %2 - Dołączenie do procesu o identyfikatorze %1 nie powiodło się: %2 - - - - Debugger::DebuggerUISwitcher - - Memory... - Pamięć... - - - Debugger Toolbar - Pasek narzędzi debuggera - - Debugger::Internal::SnapshotHandler @@ -14757,10 +13454,6 @@ Wartość dziesiętna ze znakiem (big endian): %4 Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - - Always Adjust Column Widths to Contents - Zawsze wyrównuj szerokości kolumn do ich zawartości - Designer::Internal::FormEditorFactory @@ -14844,11 +13537,11 @@ Wartość dziesiętna ze znakiem (big endian): %4 Git::Internal::GitEditor Blame %1 - + Blame %1 Blame parent revision %1 - + Blame poprawki macierzystej %1 @@ -14936,24 +13629,12 @@ Wartość dziesiętna ze znakiem (big endian): %4 Mercurial::Internal::MercurialClient Unable to find parent revisions of %1 in %2: %3 - + Nie można odnaleźć macierzystej poprawki dla %1 w %2: %3 Cannot parse output: %1 Nie można przetworzyć komunikatu: %1 - - Hg Annotate %1 - Hg Annotate %1 - - - Hg diff %1 - Hg diff %1 - - - Hg log %1 - Hg log %1 - Hg incoming %1 Hg incoming %1 @@ -14962,10 +13643,6 @@ Wartość dziesiętna ze znakiem (big endian): %4 Hg outgoing %1 Hg outgoing %1 - - Working... - Przetwarzanie... - Mercurial::Internal::MercurialControl @@ -14982,18 +13659,7 @@ Wartość dziesiętna ze znakiem (big endian): %4 Annotate parent revision %1 - - - - - Mercurial::Internal::MercurialJobRunner - - Unable to start mercurial process '%1': %2 - Nie można rozpocząć procesu mercurial "%1": %2 - - - Timed out after %1s waiting for mercurial process to finish. - Przekroczono czas oczekiwania %1s na ukończenie procesu mercuriala. + Dołącz adnotację do poprawki macierzystej "%1" @@ -15166,10 +13832,6 @@ Wartość dziesiętna ze znakiem (big endian): %4 Unable to create an editor for the commit. - - Unable to create a commit editor. - - Commit changes for "%1". @@ -15254,12 +13916,12 @@ Wartość dziesiętna ze znakiem (big endian): %4 Build Display name of the build build step list. Used as part of the labels in the project window. - Budowanie + Budowanie Clean Display name of the clean build step list. Used as part of the labels in the project window. - Wyczyść + Czyszczenie System Environment @@ -15322,6 +13984,10 @@ Wartość dziesiętna ze znakiem (big endian): %4 Object Class-name: Nazwa klasy: + + URI: + URI: + The project name and the object class-name cannot be the same. Nazwa klasy oraz projektu nie mogą być identyczne. @@ -15460,7 +14126,7 @@ Wartość dziesiętna ze znakiem (big endian): %4 Show Containing Folder... - Pokaż zawierający katalog... + Pokaż katalog zawierający... Open Command Prompt Here... @@ -15652,28 +14318,6 @@ Wartość dziesiętna ze znakiem (big endian): %4 Qt4 Maemo Device target display name Urządzenie Maemo - - Maemo - Qt4 Maemo target display name - Maemo - - - Qt Simulator - Qt4 Simulator target display name - Symulator Qt - - - <b>Device:</b> Not connected - <b>Urządzenie:</b> Nie podłączone - - - <b>Device:</b> %1 - <b>Urządzenie:</b> %1 - - - <b>Device:</b> %1, %2 - <b>Urządzenie:</b> %1, %2 - QmlDesigner::DesignDocumentController @@ -15717,29 +14361,6 @@ Wartość dziesiętna ze znakiem (big endian): %4 Wszystkie pliki (*) - - QmlDesigner::ItemLibrary - - Library - Title of library view - Biblioteka - - - Items - Title of library items view - Elementy - - - Resources - Title of library resources view - Zasoby - - - <Filter> - Library search input hint text - <Filtr> - - QmlDesigner::NavigatorWidget @@ -15786,128 +14407,6 @@ Wartość dziesiętna ze znakiem (big endian): %4 Właściwości - - qdesigner_internal::QtGradientStopsController - - H - H - - - S - S - - - V - V - - - Hue - Barwa - - - Sat - Nasycenie - - - Val - Wartość - - - Saturation - Nasycenie - - - Value - Wartość - - - R - R - - - G - G - - - B - B - - - Red - Czerwień - - - Green - Zieleń - - - Blue - Błękit - - - - QtGradientStopsWidget - - New Stop - Nowy punkt - - - Delete - Usuń - - - Flip All - Odwróć wszystko - - - Select All - Zaznacz wszystko - - - Zoom In - Powiększ - - - Zoom Out - Pomniejsz - - - Reset Zoom - Normalny rozmiar - - - - QmlDesigner::Internal::StatesEditorModel - - base state - Implicit default state - Stan bazowy - - - Invalid state name - Niepoprawna nazwa stanu - - - The empty string as a name is reserved for the base state. - Pusta nazwa jest zarezerwowana dla stanu bazowego. - - - Name already used in another state - Nazwa jest już użyta w innym stanie - - - - QmlDesigner::Internal::StatesEditorWidgetPrivate - - base state - Stan bazowy - - - State%1 - Default name for newly created states - Stan%1 - - QmlDesigner::StatesEditorWidget @@ -15916,13 +14415,6 @@ Wartość dziesiętna ze znakiem (big endian): %4 Stany - - QmlDesigner::Internal::SubComponentManagerPrivate - - QML Components - Komponenty QML - - QmlDesigner::RewriterView @@ -16071,33 +14563,6 @@ Wartość dziesiętna ze znakiem (big endian): %4 Zamknij inne - - QmlJSEditor::Internal::QmlJSTextEditor - - Show Qt Quick ToolBar - Pokaż pasek narzędzi Qt Quick - - - Rename... - Zmień nazwę... - - - New id: - Nowy identyfikator: - - - Unused variable - Nieużywana zmienna - - - Refactoring - Refaktoryzacja - - - Rename id '%1'... - Zmień nazwę identyfikatora "%1"... - - QmlJSEditor::Internal::QmlJSEditorFactory @@ -16122,7 +14587,7 @@ Wartość dziesiętna ze znakiem (big endian): %4 Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'. - + Czy chcesz włączyć eksperymentalny Qt Quick Designer? Po włączeniu możliwy jest dostęp do edytora graficznego przechodząc w tryb Design. Może to mieć wpływ na ogólną stabilność Qt Creatora. W menu "%1" można ponownie wyłączyć Qt Quick Designer naciskając "QmlDesigner". Cancel @@ -16147,6 +14612,14 @@ Wartość dziesiętna ze znakiem (big endian): %4 QML File Plik QML + + Creates a JavaScript file. + Tworzy plik JavaScript. + + + JS File + Plik JS + QML QML sub-menu in the Tools menu @@ -16169,25 +14642,11 @@ Wartość dziesiętna ze znakiem (big endian): %4 Podąż za symbolem pod kursorem - - QmlJSEditor::Internal::ModelManager - - Indexing - Indeksowanie - - - Type dump of QML plugin in %0 failed. -Errors: -%1 - - - - QmlProjectManager::QmlProject - Error while loading project file! - Błąd podczas ładowania pliku z projektem! + Error while loading project file %1. + Błąd podczas ładowania pliku projektu %1. @@ -16215,24 +14674,6 @@ You can review Qt Quick UI projects in the QML Viewer and you need not build the Możesz przeglądać projekty przy pomocy QML Viewera bez ich uprzedniego budowania. Nie musisz posiadać zainstalowanego środowiska na swoim komputerze aby uruchamiać tego typu projekty. - - File generated by QtCreator - qmlproject Template - Comment added to generated .qmlproject file - Plik wygenerowany przez QtCreatora - - - Include .qml, .js, and image files from current directory and subdirectories - qmlproject Template - Comment added to generated .qmlproject file - Włącz .qml, .js i pliki graficzne z bieżącego katalogu i jego podkatalogów - - - List of plugin directories passed to QML runtime - qmlproject Template - Comment added to generated .qmlproject file - Lista katalogów z wtyczkami przekazywana do środowiska QML - QmlProjectManager @@ -16255,30 +14696,6 @@ Możesz przeglądać projekty przy pomocy QML Viewera bez ich uprzedniego budowa QMLRunConfiguration display name. QML Viewer - - Manage Qt versions - Zarządzanie wersjami Qt - - - Qt version: - Wersja Qt: - - - Arguments: - Argumenty: - - - Debugger: - Debugger: - - - Main QML file: - Główny plik QML: - - - Invalid Qt version - Niepoprawna wersja Qt - QmlManager @@ -16334,6 +14751,10 @@ Możesz przeglądać projekty przy pomocy QML Viewera bez ich uprzedniego budowa Qt4ProjectManager::Internal::MaemoConfigTestDialog + + Testing configuration. This may take a while. + Testowanie konfiguracji. To może chilę potrwać. + Testing configuration... Testowanie konfiguracji... @@ -16361,8 +14782,24 @@ Czy uruchomiłeś Qemu? Niezgodność wersji Qt. Oczekiwano wersji 4.6.2 lub późniejszej dla urządzenia. - Mad Developer is not installed.<br>You will not be able to deploy to this device. - Mad Developer nie jest zainstalowany.<br>Nie będzie można dokonać instalacji na tym urządzeniu. + %1 is not installed.<br>You will not be able to deploy to this device. + %1 nie jest zainstalowany.<br> Nie będzie można zainstalować na urządzeniu. + + + Please switch the device to developer mode via Settings -> Security. + Przełącz urządzenie w tryb developerski poprzez Settings -> Security. + + + Error retrieving list of used ports: %1 + Błąd podczas pobierania listy używanych portów: %1 + + + All specified ports are available. + Wszystkie podane porty są dostępne. + + + The following supposedly free ports are being used on the device: + Następujące rzekomo wolne porty są używane przez urządzenie: Device configuration okay. @@ -16454,12 +14891,20 @@ Czy uruchomiłeś Qemu? Typ debugowania: - Use remote gdb - Użyj zdalnego gdb + Use remote GDB server + Użyj zdalnego serwera GDB + + + <b>Debugging details:</b> Use GDB + <b>Szczegóły debugowania:</b> Użyj GDB + + + <b>Debugging details:</b> Use GDB server + <b>Szczegóły debugowania:</b> Użyj serwera GDB Use remote gdbserver - Użyj zdalnego gdbserver + Użyj zdalnego gdbserver Base environment for this run configuration: @@ -16477,17 +14922,17 @@ Czy uruchomiłeś Qemu? Fetch Device Environment Pobierz środowisko urządzenia + + Use remote GDB + Użyj zdalnego GDB + Choose directory to mount Wybierz katalog do zamontowania - - <b>Debugging details:</b> Use gdb - <b>Szczegóły debugowania:</b> Użyj gdb - <b>Debugging details:</b> Use gdbserver - <b>Szczegóły debugowania:</b> Użyj gdbserver + <b>Szczegóły debugowania:</b> Użyj gdbserver Cancel Fetch Operation @@ -16546,58 +14991,6 @@ Czy uruchomiłeś Qemu? Uruchom na urządzeniu - - Qt4ProjectManager::Internal::MaemoSettingsWidget - - Deployment Failed - Błąd instalacji - - - New Device Configuration %1 - Standard Configuration name with number - Nowa konfiguracja urządzenia %1 - - - Choose Public Key File - Wybierz plik z kluczem publicznym - - - Public Key Files(*.pub);;All Files (*) - Pliki z kluczami publicznymi (*.pub); Wszystkie pliki (*) - - - Could not read public key file '%1'. - Nie można odczytać pliku z publicznym kluczem "%1". - - - Could not connect to host: %1 - Nie można połączyć się z hostem: %1 - - - You will need at least one port. - Wymagany jest przynajmniej jeden port. - - - Stop Deploying - Zatrzymaj instalowanie - - - Deployment Succeeded - Instalacja zakończona pomyślnie - - - Key was successfully deployed. - Klucz został pomyślnie zainstalowany. - - - Key deployment failed: %1. - Błąd instalacji klucza: %1. - - - Deploy Public Key ... - Zainstaluj klucz publiczny... - - Qt4ProjectManager::Internal::S60CreatePackageStep @@ -16609,6 +15002,50 @@ Czy uruchomiłeś Qemu? Could not find make command '%1' in the build environment Nie można odnaleźć komendy make "%1" w środowisku budowania + + Package Modified + Pakiet zmodyfikowany + + + <p>Qt modified your package <b>%1</b>.</p> + <p>Qt zmodyfikował pakiet <b>%1</b>.</p> + + + Packages Modified + Pakiety zmodyfikowane + + + <p>Qt modified some of your packages.</p> + <p>Qt zmodyfikował niektóre pakiety.</p> + + + %1<p><em>These changes were not part of your build system</em> but are required to make sure the <em>self-signed</em> package can be installed successfully on a device.</p><p>Check the Build Issues pane for more details on the modifications made.</p><p>Please see the <a href="%2">documentation</a> for other signing options which remove the need for this patching.</p> + %1<p><em>Te zmiany nie były częścią systemu budowania,</em> ale są wymagane aby upewnić się, że <em>własnoręcznie podpisany</em> pakiet może zostać zainstalowany na urządzeniu.</p><p> Sprawdź szczegóły dokonanych modyfikacji w panelu z "Problemami podczas budowania"</p><p>W celu eliminacji kroku łatania pakietu zapoznaj się z <a href="%2">dokumentacją</a> opisującą inne warianty podpisywania.</p> + + + Ignore patching for this packaging step. + Zignoruj łatanie dla tego kroku pakowania. + + + No certificate file specified. Please specify one in the project settings. + Nie podano pliku z certyfikatem. Podaj go w ustawieniach projektu. + + + Certificate file "%1" does not exist. Please specify an existing certificate file in the project settings. + Plik z certyfikatem "%1" nie istnieje. Podaj istniejący plik z certyfikatem w ustawieniach projektu. + + + No key file specified. Please specify one in the project settings. + Brak pliku z kluczem. Podaj go w ustawieniach projektu. + + + Key file "%1" does not exist. Please specify an existing key file in the project settings. + Plik z kluczem "%1" nie istnieje. Podaj istniejący plik z kluczem w ustawieniach projektu. + + + The package created will not install on a device as some of the defined capabilities are not supported by the certificate: %1 + Utworzony pakiet nie zainstaluje się na urządzeniu, ponieważ niektóre ze definiowanych "capabilities" nie są wspierane przez certyfikat: %1 + The process "%1" exited normally. Proces "%1" zakończył się normalnie. @@ -16649,6 +15086,14 @@ Czy uruchomiłeś Qemu? Do you want to reset all passphrases saved for keys used? Czy chcesz usunąć hasła dla wszystkich użytych kluczy? + + signed with the certificate "%1" using the key "%2" + podpisany certyfikatem "%1" oraz kluczem "%2" + + + signed with a certificate and a key that need to be specified + będzie podpisany certyfikatem oraz kluczem, który musi zostać podany + not signed bez podpisu @@ -16657,10 +15102,6 @@ Czy uruchomiłeś Qemu? self-signed własnoręcznie podpisany - - signed with certificate %1 and key file %2 - podpisany certyfikatem %1 i kluczem %2 - <b>Create SIS Package:</b> %1, using Smart Installer <b>Utwórz pakiet SIS:</b> %1, używając Smart Installera @@ -16686,10 +15127,12 @@ Czy uruchomiłeś Qemu? %1 Debug + Debug build configuration. We recommend not translating it. %1 Debug %1 Release + Release build configuration. We recommend not translating it. %1 Release @@ -16704,19 +15147,12 @@ Czy uruchomiłeś Qemu? Wersje Qt - Qt C++ Project - Projekt Qt C++ - - - - Qt4ProjectManager::Internal::Qt4TargetFactory - - Debug - Debug + Qt Widget Project + Projekt Qt Widget - Release - Release + Maemo + Maemo @@ -16725,6 +15161,10 @@ Czy uruchomiłeś Qemu? No qmake path set Nie ustawiono ścieżki do qmake + + qmake does not exist or is not executable + Brak qmake lub nie jest on plikiem wykonywalnym + Qt version has no name Brak nazwy wersji Qt @@ -16737,12 +15177,63 @@ Czy uruchomiłeś Qemu? Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong? Nie można określić ścieżki do plików binarnych instalacji Qt. Sprawdź ścieżkę do qmake. + + The default mkspec symlink is broken. + Domyślne dowiązanie symboliczne mkspec jest zepsute. + + + Failed to detect the ABI(s) used by the Qt version. + Nie można wykryć ABI używanego przez tę wersję Qt. + + + The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured + "Open C/C++ plugin" nie jest zainstalowany w Symbian SDK albo ścieżka do Symbian SDK jest niepoprawnie skonfigurowana + + + Desktop + Qt Version is meant for the desktop + Desktop + + + Symbian + Qt Version is meant for Symbian + Symbian + + + Maemo + Qt Version is meant for Maemo5 + Maemo + + + Harmattan + Qt Version is meant for Harmattan + Harmattan + + + Meego + Qt Version is meant for Meego + Meego + + + Qt Simulator + Qt Version is meant for Qt Simulator + Symulator Qt + + + unkown + No idea what this Qt Version is meant for! + nieznana + + + Qt version %1, using mkspec %2 (%3) + Wersja Qt %1, używa mkspec %2 (%3) + Cannot determine the installation path for Qt version '%1'. Nie można określić ścieżki instalacji Qt wersji "%1". - The Qt Version has no toolchain. + The Qt Version has no tool chain. Ta wersja Qt nie posiada zestawu narzędzi. @@ -16753,8 +15244,8 @@ Czy uruchomiłeś Qemu? Moduły - Qt Versions - Wersje Qt + Targets + Produkty docelowe @@ -16763,111 +15254,13 @@ Czy uruchomiłeś Qemu? Qt Creator can set up the following targets: Qt Creator może ustawić następujące wersje: - - Qt Version - Wersja Qt - - - Status - Stan - - - Qt Creator can set up the following targets for<br>project <b>%1</b>: - %1: Project name - Qt Creator może ustawić następujące wersje dla<br>projektu <b>%1</b>: - - - Choose a directory to scan for additional shadow builds - Wybierz katalog w którym przeszukiwać dodatkowych wersji zbudowanych na zewnątrz - - - No builds found - Brak zbudowanych wersji - - - No builds for project file "%1" were found in the folder "%2". - %1: pro-file, %2: directory that was checked. - Brak zbudowanych wersji dla projektu "%1" w katalogu "%2". - - - Check All - Zaznacz wszystko - - - Check all Qt versions - Zaznacz wszystkie wersje Qt - - - Check only this version - Zaznacz tylko tą wersję - - - Check all versions - Zaznacz wszystkie wersje - - - Uncheck all versions - Usuń zaznaczenia - - - <b>Error:</b> - Severity is Task::Error - <b>Błąd:</b> - - - <b>Warning:</b> - Severity is Task::Warning - <b>Ostrzeżenie:</b> - - - debug and release - We are going to build debug and release - debug i release - - - debug - Debug build - debug - - - release - release build - release - - - <br>using %1 (%2) - %1: qmake used (incl. full path), %2: "debug", "release" or "debug and release" - <br>używając %1 (%2) - - - Import - Is this an import of an existing build or a new one? - Import - - - New - Is this an import of an existing build or a new one? - Nowy - Setup targets for your project Ustaw produkty docelowe dla projektu - Build Directory - Katalog wersji - - - Import Existing Shadow Build... - Zaimportuj wersję zbudowaną w innym miejscu... - - - Uncheck all Qt versions - - - - Uncheck All - Odznacz wszystko + <b>No valid qt versions found.</b><br> Please add a qt version in Tools/Options or via the maintenance tool of the SDK. + <b>Brak poprawnej wersji Qt.</b><br>Dodaj wersję Qt w Narzędzia/Opcje lub poprzez narzędzie utrzymania SDK. @@ -16955,6 +15348,10 @@ Czy uruchomiłeś Qemu? Cannot open '%1': %2 Nie można otworzyć "%1": %2 + + No device is connected. Please connect a device and try again. + Brak podłączonego urządzenia. Podłącz je i spróbuj ponownie. + Unable to acquire a device for port '%1'. It appears to be in use. Nie można pozyskać urządzenia na porcie "%1". Wygląda że jest w użyciu. @@ -17005,21 +15402,41 @@ Czy uruchomiłeś Qemu? Patch: Łata: - - <b>Version number:</b> - <b>Numer wersji:</b> - - - <b>Adapt Debian file:</b> - <b>Przyswój plik Debiana:</b> - Edit Zmodyfikuj - <b>Package Manager icon:</b> - <b>Ikona menadżera pakietu:</b> + Package name: + Nazwa pakietu: + + + Package version: + Wersja pakietu: + + + Short package description: + Krótki opis pakietu: + + + Name to be displayed in Package Manager: + Wyświetlana nazwa w menedżerze pakietu: + + + Icon to be displayed in Package Manager: + Wyświetlana ikona w menedżerze pakietu: + + + Size is 48x48 pixels + Rozmiar 48x48 w pikselach + + + Adapt Debian file: + Przyswój plik Debiana: + + + Edit spec file + Zmodyfikuj plik spec @@ -17032,41 +15449,41 @@ Czy uruchomiłeś Qemu? Options Opcje - - Key size: - Rozmiar klucza: - Key algorithm: Algorytm klucza: - - RSA - RSA - - - DSA - DSA - Key Klucz - Generate SSH Key - Generuj klucz SSH + Key &size: + Rozmiar &klucza: - Close - Zamknij + &RSA + &RSA - Save Public Key... - Zachowaj klucz publiczny... + &DSA + &DSA - Save Private Key... - Zachowaj klucz prywatny... + &Generate SSH Key + Wy&generuj klucz SSH + + + Save P&ublic Key... + Zachowaj klucz p&ubliczny... + + + Save Pr&ivate Key... + Zachowaj klucz pr&ywatny... + + + &Close + &Zamknij @@ -17108,11 +15525,12 @@ nazwa <email> alias <email> Specifies a command that is executed to graphically prompt for a password, should a repository require SSH-authentication (see documentation on SSH and the environment variable SSH_ASKPASS). - + W przypadku gdy repozytorium wymaga autoryzacji SSH pole to definiuje komendę, która będzie pytała o hasło. +Sprawdź dokumentację SSH zmienną środowiskową SSH_ASKPASS. SSH prompt command: - + Monit komendy SSH: @@ -17374,12 +15792,8 @@ should a repository require SSH-authentication (see documentation on SSH and the Wyrównanie - Aliasing - Antyaliasing - - - Smooth - Gładki + + @@ -17535,6 +15949,10 @@ should a repository require SSH-authentication (see documentation on SSH and the Is visible jest widoczny + + Smooth + Gładki + Clip Klip @@ -17609,7 +16027,7 @@ should a repository require SSH-authentication (see documentation on SSH and the %1 does not appear to be a paster file. - + %1 nie wygląda na plik wklejacza. Error in %1 at %2: %3 @@ -17632,7 +16050,7 @@ should a repository require SSH-authentication (see documentation on SSH and the CodePaster::FileShareProtocolSettingsPage Fileshare - + Fileshare @@ -17653,59 +16071,6 @@ should a repository require SSH-authentication (see documentation on SSH and the C++ - - Debugger::Internal::GdbChooserWidget - - Unable to run '%1': %2 - Nie można uruchomić "%1": %2 - - - Binary - Plik binarny - - - Toolchains - Zestawy narzędzi - - - Duplicate binary - Powielony plik binarny - - - The binary '%1' already exists. - Plik binarny "%1" już istnieje. - - - - Debugger::Internal::ToolChainSelectorWidget - - Desktop/General - Desktop / Ogólne - - - Symbian - Symbian - - - Maemo - Maemo - - - - Debugger::Internal::BinaryToolChainDialog - - Select binary and toolchains - Wybierz plik binarny i zestawy narzędzi - - - Gdb binary - Plik binarny Gdb - - - Path: - Ścieżka: - - Debugger::Internal::PdbEngine @@ -17834,10 +16199,6 @@ should a repository require SSH-authentication (see documentation on SSH and the Error: Could not create file '%1'. Błąd: Nie można utworzyć pliku "%1". - - Cannot open MADDE config file '%1'. - Nie można otworzyć pliku konfiguracyjnego MADDE "%1". - Package created. Utworzono pakiet. @@ -17862,17 +16223,17 @@ should a repository require SSH-authentication (see documentation on SSH and the Could not move package files from %1 to %2. Nie można przenieść plików pakietu z %1 do %2. + + Could not move package file from %1 to %2. + Nie można przenieść pliku pakietu z %1 do %2. + Packaging failed: Foreign debian directory detected. Błąd podczas tworzenia pakietu: wykryto obcy katalog Debiana. You are not using a shadow build and there is a debian directory in your project root ('%1'). Qt Creator will not overwrite that directory. Please remove it or use the shadow build feature. - - - - Could not remove directory '%1'. - Nie można usunąć katalogu "%1". + Kompilacja w innym miejscu nie została użyta a w projekcie występuje katalog debian ("%1"). Ten katalog nie zostanie nadpisany. Usuń go lub skompiluj projekt w innym miejscu. Could not create Debian directory '%1'. @@ -17890,6 +16251,10 @@ should a repository require SSH-authentication (see documentation on SSH and the Exit code: %1 Kod wyjściowy: %1 + + Could not remove directory '%1': %2 + Nie można usunąć katalogu "%1": %2 + Your project name contains characters not allowed in Debian packages. They must only use lower-case letters, numbers, '-', '+' and '.'. @@ -17922,13 +16287,29 @@ Przy obecnej nazwie możesz spodziewać się problemów. Obrazki - Choose Image - Wybierz obrazek + Choose Image (will be scaled to 48x48 pixels if necessary) + Wybierz obraz (w razie potrzeby zostanie przeskalowany do 48x48) Could Not Set New Icon Nie można ustawić nowej ikony + + File Error + Błąd pliku + + + Could not set project name. + Nie można ustawić nazwy projektu. + + + Could not set package name for project manager. + Nie można ustawić nazwy pakietu dla menedżera projektu. + + + Could not set project description. + Nie można ustawić opisu projektu. + <b>Create Package:</b> <b>Utwórz pakiet:</b> @@ -17942,13 +16323,6 @@ Przy obecnej nazwie możesz spodziewać się problemów. Nie można ustawić numeru wersji - - Qt4ProjectManager::Internal::MaemoSettingsPage - - Maemo Device Configurations - Konfiguracje urządzenia Maemo - - Qt4ProjectManager::Internal::MaemoSshConfigDialog @@ -17970,51 +16344,6 @@ Przy obecnej nazwie możesz spodziewać się problemów. %2 - - Qt4ProjectManager::Internal::S60DevicesBaseWidget - - Default - Domyślne - - - SDK Location - Położenie SDK - - - Qt Location - Położenie Qt - - - Choose Qt folder - Wybierz katalog Qt - - - - Qt4ProjectManager::Internal::S60DevicesModel - - No Qt installed - Brak zainstalowanego Qt - - - - Qt4ProjectManager::Internal::GnuPocS60DevicesWidget - - Step 1 of 2: Choose GnuPoc folder - Krok 1 z 2: Wybierz katalog GnuPoc - - - Step 2 of 2: Choose Qt folder - Krok 2 z 2: Wybierz katalog Qt - - - Adding GnuPoc - Dodawanie GnuPoc - - - GnuPoc and Qt folders must not be identical. - Katalogi GnuPoc i Qt nie mogą być takie same. - - ProjectExplorer::Internal::S60ProjectChecker @@ -18022,16 +16351,12 @@ Przy obecnej nazwie możesz spodziewać się problemów. Symbian SDK i źródła projektu muszą być na wspólnym dysku. - The Symbian SDK was not found for Qt version %1. - Brak Symbian SDK dla Qt w wersji %1. + The Symbian tool chain does not handle spaces in the project path '%1'. + Zestaw narzędzi dla Symbiana nie obsługuje spacji w ścieżce projektu "%1". - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. - Wtyczka "Open C/C++" nie jest zainstalowana w Symbian SDK lub ścieżka Symbian SDK jest niewłaściwie skonfigurowana dla wersji Qt %1. - - - The Symbian toolchain does not handle special characters in a project path well. - Zestaw narzędzi dla Symbiana nie obsługuje również znaków specjalnych w ścieżkach projektów. + The Symbian tool chain does not handle special characters in the project name '%1' well. + Zestaw narzędzi dla Symbiana nie obsługuje poprawnie znaków specjalnych w nazwie projektu "%1". @@ -18061,10 +16386,6 @@ Przy obecnej nazwie możesz spodziewać się problemów. The build directory needs to be at the same level as the source directory. Katalog przeznaczony do budowania musi być na tym samym poziomie co katalog ze źródłami. - - Warning: Cannot build QMLObserver; Qt version must be 4.7.1 or higher. - Ostrzeżenie: Nie można zbudować QML Observera; wymagana wersja Qt 4.7.1 lub wyższa. - emptyPane @@ -18087,9 +16408,17 @@ Przy obecnej nazwie możesz spodziewać się problemów. Only select items with content (S) Wybierz tylko elementy z zawartością (S) + + Reset view (R) + Zresetuj widok (R) + QmlDesigner::NavigatorTreeModel + + Unknown item: %1 + Nieznany element: %1 + Invalid Id Niepoprawny identyfikator @@ -18098,6 +16427,10 @@ Przy obecnej nazwie możesz spodziewać się problemów. %1 is an invalid id %1 nie jest poprawnym identyfikatorem + + %1 already exists + %1 już istnieje + Warning Ostrzeżenie @@ -18117,6 +16450,10 @@ Przy obecnej nazwie możesz spodziewać się problemów. %1 is an invalid id %1 nie jest poprawnym identyfikatorem + + %1 already exists + %1 już istnieje + QmlDesigner::InvalidArgumentException @@ -18441,72 +16778,6 @@ Identyfikatory muszą rozpoczynać się małą literą. Pokaż podprojekty - - AttachTcfDialog - - Start Debugger - Uruchom debugger - - - Host and port: - Host i port: - - - Architecture: - Architektura: - - - Use server start script: - Użyj startowego skryptu serwera: - - - Server start script: - Startowy skrypt serwera: - - - - BreakpointDialog - - Breakpoint type: - Typ pułapki: - - - File name: - Nazwa pliku: - - - Line number: - Numer linii: - - - Function: - Funkcja: - - - Condition: - Warunek: - - - Ignore count: - Licznik pominięć: - - - Thread specification: - Specyfikacja wątku: - - - Address: - Adres: - - - Edit Breakpoint Properties - Zmodyfikuj właściwości pułapki - - - Use full path: - Użyj pełnej ścieżki: - - Help::Internal::RemoteFilterOptions @@ -18523,15 +16794,15 @@ Identyfikatory muszą rozpoczynać się małą literą. aktywny tylko po wpisaniu przedrostka - + - + + Add + Dodaj - - - - + Remove + Usuń - Double click to edit item. + Double-click to edit item. Kliknij dwukrotnie aby zmodyfikować element. @@ -18682,6 +16953,10 @@ aktywny tylko po wpisaniu przedrostka Remove "d" suffix for release version Usuń przyrostek "d" z wersji release'owej + + Package: + Pakiet: + MaemoDeployStepWidget @@ -18705,44 +16980,21 @@ aktywny tylko po wpisaniu przedrostka <b>Files to install for subproject:</b> <b>Pliki do zainstalowania dla podprojektu:</b> - - - MobileAppWizardOptionPage - WizardPage - StronaKreatora + Edit the project file to add or remove entries. + Zmodyfikuj plik projektu w celu dodania lub usunięcia elementów. - General - Ogólne + Add Desktop File + Dodaj plik desktopowy - Target UID3: - UID3 produktu: + Add Launcher Icon ... + Dodaj ikonę... - Enable network access - Włącz dostęp sieciowy - - - Orientation behavior: - Zarządzanie orientacją: - - - Symbian Specific - Dotyczące Symbian - - - Application icon (.svg): - Ikona aplikacji (.svg): - - - Maemo Specific - Dotyczące Maemo - - - Application icon (64x64): - Ikona aplikacji (64x64): + <a href="irrelevant">Manage device configurations</a> + <a href="irrelevant">Zarządzanie konfiguracjami urządzenia</a> @@ -18759,6 +17011,10 @@ aktywny tylko po wpisaniu przedrostka Target UID3: UID3 produktu: + + Plugin's directory name: + Nazwa katalogu wtyczki: + QtQuickAppWizardSourcesPage @@ -18913,6 +17169,10 @@ aktywny tylko po wpisaniu przedrostka Debug port: Port debugowania: + + <a href="qthelp://com.nokia.qtcreator/doc/creator-debugging-qml.html">What are the prerequisites?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-debugging-qml.html">Jakie są wymagania?</a> + Utils::SynchronousProcess @@ -18982,89 +17242,6 @@ aktywny tylko po wpisaniu przedrostka Pokaż boczny pasek - - Core::Internal::SftpChannelPrivate - - Server could not start sftp subsystem. - Serwer nie może uruchomić podsystemu sftp. - - - Unexpected packet of type %1. - Nieoczekiwany pakiet typu %1. - - - Protocol version mismatch: Expected %1, got %2 - Niezgodność wersji protokołu: Oczekiwano %1 zamiast %2 - - - Unknown error. - Nieznany błąd. - - - Created remote directory '%1'. - Utworzono zdalny katalog "%1". - - - Remote directory '%1' already exists. - Zdalny katalog "%1" już istnieje. - - - Error creating directory '%1': %2 - Błąd tworzenia katalogu "%1": %2 - - - Could not open local file '%1': %2 - Nie można otworzyć lokalnego pliku "%1": %2 - - - Remote directory could not be opened for reading. - Nie można otworzyć zdalnego katalogu do odczytu. - - - Failed to list remote directory contents. - Nie można uzyskać zawartości zdalnego katalogu. - - - Failed to close remote directory. - Nie można zamknąć zdalnego katalogu. - - - Failed to open remote file for reading. - Nie można otworzyć zdalnego pliku do odczytu. - - - Failed retrieve information on the remote file ('stat' failed). - Nie można uzyskać informacji o zdalnym pliku ("stat" niepoprawnie zakończony). - - - Failed to read remote file. - Nie można odczytać zdalnego pliku. - - - Failed to close remote file. - Nie można zamknąć zdalnego pliku. - - - Failed to open remote file for writing. - Nie można otworzyć zdalnego pliku do zapisu. - - - Failed to write remote file. - Nie można zapisać zdalnego pliku. - - - Cannot append to remote file: Server does not support the file size attribute. - Nie można dodać zawartości do zdalnego pliku: Serwer nie obsługuje atrybutu "rozmiar pliku". - - - Server could not start session. - Serwer nie może rozpocząć sesji. - - - Error reading local file: %1 - Błąd odczytu lokalnego pliku: %1 - - SshConnection @@ -19075,64 +17252,6 @@ Lista klienta: %1. Lista serwera: %2. - - Core::Internal::SshChannelManager - - Invalid channel id %1 - Niepoprawny identyfikator kanału %1 - - - - Core::Internal::SshConnectionPrivate - - SSH Protocol error: %1 - Błąd protokołu SSH: %1 - - - Botan library exception: %1 - Wyjątek biblioteki Botan: %1 - - - Invalid protocol version: Expected '2.0', got '%1'. - Niepoprawna wersja protokołu: Oczekiwano "2.0" zamiast "%1". - - - Invalid server id '%1'. - Niepoprawny identyfikator serwera "%1". - - - Unexpected packet of type %1. - Nieoczekiwany pakiet typu %1. - - - Could not read private key file: %1 - Nie można odczytać pliku z publicznym kluczem: %1 - - - Password expired. - Hasło straciło ważność. - - - Server rejected password. - Serwer odrzucił hasło. - - - Server rejected key. - Serwer odrzucił klucz. - - - Server closed connection: %1 - Serwer zamknął połączenie: %1 - - - Connection closed unexpectedly. - Nieoczekiwane zamknięcie połączenia. - - - Timeout waiting for reply from server. - Przekroczony czas oczekiwania na odpowiedź od serwera. - - CodePaster::NetworkProtocol @@ -19218,191 +17337,193 @@ Lista serwera: %2. Nazwa funkcji - Function "main()" - Funkcja "main()" + Break when C++ Exception is Thrown + Przerwij po rzuceniu wyjątku C++ + + + Break when C++ Exception is Caught + Przerwij po złapaniu wyjątku C++ + + + Break when Function "main()" Starts + Przerwij po rozpoczęciu funkcji "main()" + + + Break when a new Process is Forked + Przerwij po rozwidleniu procesu + + + Break when a new Process is Executed + Przerwij po uruchomieniu nowego procesu + + + Break when a System Call is Executed + Przerwij po wykonaniu zawołania systemowego + + + Break on Data Access (Watchpoint) + Przerwij przy dostępie do danych (pułapka warunkowa) + + + Debugger command to be executed when the breakpoint is hit. +GDB allows for specifying a sequence of commands separated by the delimiter '\n'. + Komenda debuggera, która zostanie uruchomiona gdy pułapka zostanie osiągnięta. +GDB umożliwia podawanie sekwencji komend oddzielonych separatorem "\n". + + + <html><head/><body><p>Determines how the path is specified when setting breakpoints:</p><ul><li><i>Use Engine Default</i>: Preferred setting of the debugger engine.</li><li><i>Use Full Path</i>: Pass full path, avoiding ambiguities should files of the same name exist in several modules. This is the engine default for CDB and LLDB.</li><li><i>Use File Name</i>: Pass the file name only. This is useful when using a source tree whose location does not match the one used when building the modules. It is the engine default for GDB as using full paths can be slow with this engine.</li></ul></body></html> + <html><head/><body><p>Określa sposób wyznaczania ścieżki podczas ustawiania pułapek:</p><ul><li><i>Używaj domyślnego silnika</i>: preferowane ustawienie silnika debuggera.</li><li><i>Używaj pełnej ścieżki</i>: przekazuj pełną ścieżkę, aby uniknąć niejednoznaczności gdy istnieją pliki o tej samej nazwie w różnych modułach. Jest to domyślne ustawienie dla silników CDB i LLDB.</li><li><i>Używaj nazwy pliku</i>: przekazuj tylko nazwę pliku. Jest to pomocne w trakcie używania drzewa źródeł, którego położenie jest inne niż użyte podczas budowania modułu. Jest to domyślne ustawienie silnika GDB, ponieważ używanie pełnych ścieżek może go spowolnić.</li></ul></body></html> + + + Specifying the module (base name of the library or executable) +for function or file type breakpoints can significantly speed up +debugger start-up times (CDB, LLDB). + Podanie modułu (nazwy bazowej biblioteki lub pliku wykonywalnego) +dla funkcji bądź pułapek może znacząco przyspieszyć uruchomienie +debuggera (CDB, LLDB). Address Adres + + Edit Breakpoint Properties + Zmodyfikuj właściwości pułapki + + + Basic + Podstawowe + + + Breakpoint &type: + &Typ pułapki: + + + &File name: + Nazwa &pliku: + + + &Line number: + Numer &linii: + + + &Enabled: + &Włączona: + + + &Address: + &Adres: + + + Fun&ction: + &Funkcja: + + + Advanced + Zaawansowane + + + T&racepoint only: + Tylko t&racepoint: + + + Pat&h: + Ś&cieżka: + + + &Module: + &Moduł: + + + &Command: + &Komenda: + + + Use Engine Default + Używaj domyślnego silnika + + + Use Full Path + Użyj pełnej ścieżki + + + Use File Name + Używaj nazwy pliku + + + C&ondition: + War&unek: + + + &Ignore count: + L&icznik pominięć: + + + &Thread specification: + &Specyfikacja wątku: + Debugger::Internal::CdbEngine - The function "%1()" failed: %2 - Function call failed - Funkcja "%1()" zakończona niepowodzeniem: %2 + There is no CDB binary available for binaries in format '%1' + Brak dostępnego pliku wykonywalnego CDB dla plików binarnych w formaci "%1" - An instance of the CDB engine is still running; cannot create an a new instance. - Silnik CDB jest wciąż uruchomiony, nie można uruchomić kolejnego. + The CDB debug engine required for %1 is currently disabled. + Silnik debugowy CDB wymagany dla %1 jest aktualnie wyłączony. - Version: %1 - Wersja: %1 + The CDB engine does not support start mode %1. + Silnik CDB nie obsługuje trybu start %1. - <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> - <html>Zainstalowana wersja <i>narzędzi debugowych dla Windows</i> (%1) jest przestarzała. Zalecane jest uaktualnienie do wersji %2 w celu poprawnego wyświetlania typów danych Qt.</html> + The CDB debug engine does not support the %1 ABI. + Silnik CDB nie obsługuje ABI %1. - Debugger - Debugger - - - <html><head/><body><p>The debugger is not configured to use the public <a href="%1">Microsoft Symbol Server</a>. This is recommended for retrieval of the symbols of the operating system libraries.</p><p><i>Note:</i> A fast internet connection is required for this to work smoothly. Also, a delay might occur when connecting for the first time.</p><p>Would you like to set it up?</p></br></body></html> - - - - Symbol Server - Serwer z symbolami - - - Do not ask again - Nie pytaj więcej - - - The dumper library was not found at %1. - Biblioteka zrzutów nie została znaleziona w %1. - - - The console stub process was unable to start '%1'. - - - - Attaching to core files is not supported. - Dołączanie do pliku zrzutu nie jest obsługiwane. - - - The process exited with exit code %1. - Proces zakończył się kodem wyjściowym %1. - - - <not supported> - <nieobsługiwane> - - - Continuing with '%1'... - Kontynuacja z "%1"... - - - Unable to continue: %1 - Nie można kontynuować: %1 - - - Reverse stepping is not implemented. - Kroczenie wstecz nie jest zaimplementowane. - - - Thread %1 cannot be stepped. - Wątek %1 nie może być śledzony krok po kroku. - - - Stepping %1 - Kroczenie %1 - - - Running requested... - Zażądano uruchomienia... - - - Running up to %1:%2... - Uruchomiony do osiągnięcia %1:%2... - - - Running up to function '%1()'... - Uruchomiony do osiągnięcia funkcji '%1()'... - - - Jump to line is not implemented - Skok do linii nie jest obsługiwany - - - Assigning '%1' to '%2' (%3)... - Arguments: New value, name, (type) - Przypisywanie wartości "%1" do zmiennej "%2" typu %3... - - - Can assign only scalar values. - Przypisać można jedynie wartości skalarne. - - - Cannot assign values of type '%1'. Only POD-types can be assigned. - Nie można przypisać wartości typu "%1". Przypisać można jedynie podstawowe typy POD. - - - Unable to assign the value '%1' to '%2' (%3): %4 - Arguments: New value, name, (type): Error - Nie można przypisać wartości "%1" do "%2" typu %3: %4 - - - Unable to retrieve %1 bytes of memory at 0x%2: %3 - Nie można odczytać %1 bajtów pamięci spod adresu 0x%2: %3 - - - Cannot retrieve symbols while the debuggee is running. - Nie można odczytać symboli dopóki pracuje debugowany program. + The console process '%1' could not be started. + Nie można uruchomić procesu konsolowego "%1". Debugger Error Błąd debuggera - Ignoring initial breakpoint... - Zignorowano początkową pułapkę... + There is no CDB executable specified. + Brak podanego pliku wykonywalnego CDB. - <interrupt thread> - <przerwij wątek> + CDB crashed + CDB zakończone błędem - Breakpoint - Pułapka + CDB exited (%1) + CDB zakończył pracę (%1) - Interrupted in thread %1, current thread: %2 - Przerwano w wątku %1, bieżący wątek: %2 + Unable to add expression + Nie można dodać wyrażenia - Stopped, current thread: %1 - Zatrzymano, bieżący wątek: %1 + Interrupting is not possible in remote sessions. + Przerywanie nie jest możliwe w zdalnych sesjach. - Changing threads: %1 -> %2 - Zmiana wątków: %1 -> %2 + Malformed stop response received. + Niepoprawna odpowiedź na stop. - stopped - zatrzymano + Switching to main thread... + Przełączanie do głównego wątku... - Stopped at %1:%2 in thread %3. - Zatrzymano w %1:%2 w wątku %3. + "Select Widget to Watch": Please stop the application first. + "Wybierz widżet do obserwowania": Najpierw zatrzymaj aplikację. - Stopped at %1 in thread %2 (missing debug information). - Zatrzymano w %1 w wątku %2 (brak informacji debugowej). - - - Stopped at %1 (%2) in thread %3 (missing debug information). - Zatrzymano w %1 (%2) w wątku %3 (brak informacji debugowej). - - - Stopped in thread %1 (missing debug information). - Zatrzymano w wątku %1 (brak informacji debugowej). - - - Breakpoint: %1 - Pułapka: %1 - - - Watchpoint: %1 - Warunkowa pułapka: %1 - - - The CDB debug engine does not support the %1 toolchain. - %1 is something like "GCCE" or "Intel C++ Compiler (Linux)" (see ToolChain context) - Silnik debuggera CDB nie obsługuje zestawu narzędzi "%1". + "Select Widget to Watch": Not supported in state '%1'. + "Wybierz widżet do obserwowania": Nie obsługiwane w stanie "%1". @@ -19442,18 +17563,6 @@ Lista serwera: %2. Save Contents Zachowaj zawartość - - Log File - Plik loga - - - Write Failure - Błąd zapisu - - - Unable to write log contents to '%1': %2 - Nie można zapisać zawartości loga do "%1": %2 - Debugger::Internal::ConsoleWindow @@ -19462,74 +17571,8 @@ Lista serwera: %2. Konsola - - Debugger::Internal::AttachTcfDialog - - Select Executable - Wybierz plik wykonywalny - - - - Debugger::DebuggerEnginePrivate - - Remove Breakpoint - Usuń pułapkę - - - Remove Breakpoint %1 - Usuń pułapkę %1 - - - Disable Breakpoint - Wyłącz pułapkę - - - Disable Breakpoint %1 - Wyłącz pułapkę %1 - - - Enable Breakpoint - Włącz pułapkę - - - Enable Breakpoint %1 - Włącz pułapkę %1 - - - Edit Breakpoint... - Zmodyfikuj pułapkę... - - - Edit Breakpoint %1... - Zmodyfikuj pułapkę %1... - - - Set Breakpoint at 0x%1 - Ustaw pułapkę w 0x%1 - - - Set Breakpoint at line %1 - Ustaw pułapkę w linii %1 - - Debugger::DebuggerEngine - - Symbol - Symbol - - - Address - Adres - - - Code - Kod - - - Symbols in "%1" - Symbole w "%1" - Launching Uruchamianie @@ -19539,43 +17582,117 @@ Lista serwera: %2. %1 (ustawione jawnie w opcjach debuggera) - Open Qt4 Options - Otwórz ustawienia Qt4 + This debugger cannot handle user input. + Ten debugger nie obsługuje poleceń wejściowych użytkownika. - Turn off Helper Usage - Wyłącz używanie asystenta + Watchpoint %1 (%2) at 0x%3 triggered. + Pułapka warunkowa %1 (%2) pod 0x%3 została wyzwolona. - Continue Anyway - Kontynuuj + Internal watchpoint %1 at 0x%2 triggered. + Wewnętrzna pułapka warunkowa %1 pod 0x%2 została wyzwolona. - Debugging Helper Missing - Brak asystenta debuggera + Watchpoint %1 (%2) at 0x%3 in thread %4 triggered. + Pułapka warunkowa %1 (%2) pod 0x%3 w wątku %4 została wyzwolona. - The debugger could not load the debugging helper library. - Debugger nie mógł załadować biblioteki asystenta debuggera. + Internal watchpoint %1 at 0x%2 in thread %3 triggered. + Wewnętrzna pułapka warunkowa %1 pod 0x%2 w wątku %3 została wyzwolona. - The debugging helper is used to nicely format the values of some Qt and Standard Library data types. It must be compiled for each used Qt version separately. On the Qt4 options page, select a Qt installation and click Rebuild. - Asystent debuggera jest używany do ładnego formatowania niektórych typów Qt i Biblioteki Standardowej. Musi być skompilowany oddzielnie dla każdej używanej wersji Qt. Można to zrobić z poziomu strony ustawień Qt poprzez wybranie instalacji Qt i kliknięcie na "Przebuduj" w linijce "Asystent debuggera". + Stopped at breakpoint %1 (%2) in thread %3. + Zatrzymano w pułapce %1 (%2) w wątku %3. + + + Stopped at internal breakpoint %1 in thread %2. + Zatrzymano w wewnętrznej pułapce %1 w wątku %2. + + + Stopped. + Zatrzymano. + + + Stopped: "%1" + Zatrzymano: "%1" + + + Stopped: %1 (Signal %2). + Zatrzymano: %1 (sygnał %2). + + + Stopped in thread %1 by: %2. + Zatrzymano w wątku %1 przez %2. + + + Interrupted. + Przerwano. + + + <Unknown> + name + <nieznana> + + + <Unknown> + meaning + <nieznane> + + + <p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table> + <p>Podproces zatrzymany ponieważ otrzymał on sygnał z systemu operacyjnego.<p><table><tr><td>Nazwa sygnału: </td><td>%1</td></tr><tr><td>Znaczenie sygnału: </td><td>%2</td></tr></table> + + + Signal received + Otrzymano sygnał + + + <p>The inferior stopped because it triggered an exception.<p>%1 + <p>Podproces zatrzymany z powodu rzuconego wyjątku.<p>%1 + + + Exception Triggered + Rzucono wyjątek Taking notice of pid %1 - Odnotowano pid %1 + Zwracanie uwagi na pid %1 + + + Run to Address 0x%1 + Uruchom do adresu 0x%1 + + + Run to Line %1 + Uruchom do linii %1 + + + Jump to Address 0x%1 + Skocz do adresu 0x%1 + + + Jump to Line %1 + Skocz do linii %1 Debugger::DebuggerPlugin + + Debug + Debug + Option '%1' is missing the parameter. Brak parametru w opcji "%1". - The parameter '%1' of option '%2' is not a number. - Parametr "%1" w opcji "%2" nie jest liczbą. + The parameter '%1' of option '%2' does not match the pattern <server:port>@<executable>@<architecture>. + Parametr "%1" opcji "%2" nie pasuje do wzoru <serwer:port>@<plik_wykonywalny>@<architektura>. + + + The parameter '%1' of option '%2' does not match the pattern <handle>:<pid>. + Parametr "%1" opcji "%2" nie pasuje do wzoru <uchwyt>:<pid>. Invalid debugger option: %1 @@ -19585,199 +17702,33 @@ Lista serwera: %2. The application requires the debugger engine '%1', which is disabled. Program wymaga silnika debuggera "%1", który jest wyłączony. - - - Debugger::DebuggerPluginPrivate - QML Script Console - Konsola skryptów QML + The debugger engine '%1' is disabled. + Silnik debuggera "%1" jest wyłączony. - Continue - Kontynuuj + The debugger engine '%1' required for debugging binaries of the type '%2' is not configured correctly. + Silnik debuggera "%1" wymagany do debugowania plików binarnych typu "%2" nie jest poprawnie skonfigurowany. - Stop Debugger - Zatrzymaj debugger + None of the debugger engines '%1' capable of debugging binaries of the type '%2' is configured correctly. + Żaden silnik debuggera "%1" zdolny do debugowania plików binarnych typu "%2" nie jest poprawnie skonfigurowany. - Interrupt - Przerwij - - - Debugger is Busy - Debugger jest zajęty - - - Abort Debugging - Przerwij debugowanie - - - Aborts debugging and resets the debugger to the initial state. - Przerywa debugowanie i przywraca debugger do stanu początkowego. - - - Step Over - Przeskocz - - - Step Into - Wskocz do wnętrza - - - Step Out - Wyskocz na zewnątrz - - - Run to Line - Uruchom do linii - - - Run to Outermost Function - Uruchom do skrajnej funkcji - - - Immediately Return From Inner Function - Powróć natychmiast z wewnętrznej funkcji - - - Jump to Line - Skocz do linii - - - Toggle Breakpoint - Przełącz ustawienie pułapki - - - Add to Watch Window - Dodaj do okna obserwowanych - - - Create Snapshot - Utwórz zrzut - - - Reverse Direction - Odwrotny kierunek - - - Move to Called Frame - - - - Move to Calling Frame - - - - Error evaluating command line arguments: %1 - Błąd podczas przetwarzania argumentów komendy: %1 - - - Start and Debug External Application... - Uruchom i zdebuguj zewnętrzną aplikację... - - - Attach to Running External Application... - Dołącz do uruchomionej zewnętrznej aplikacji... - - - Attach to Core... - Dołącz do zrzutu... - - - Attach to Running Tcf Agent... - Dołącz do uruchomionego agenta Tcf... - - - This attaches to a running 'Target Communication Framework' agent. - Dołącza do uruchomionego agenta Tcf (Target Communication Framework). - - - Start and Attach to Remote Application... - Uruchom i dołącz do zdalnej aplikacji... - - - Detach Debugger - Odłącz debugger - - - Interrupt Debugger - Przerwij debugger - - - Reset Debugger - Wyzeruj debugger - - - Threads: - Wątki: - - - Warning - Ostrzeżenie - - - Cannot attach to PID 0 - Nie można dołączyć do PID 0 - - - Process %1 - Proces %1 - - - Core file "%1" - Plik zrzutu "%1" - - - Remote: "%1" - Zdalny: "%1" - - - Attaching to PID %1. - Dołączanie do PID %1. - - - Attaching to remote server %1. - Dołączanie do zdalnego serwera %1. - - - Attaching to core %1. - Dołączanie do zrzutu %1. - - - Save Debugger Log - Zachowaj log debuggera - - - - Debugger::DebuggerRunControlFactory - - Debug - + The preferred debugger engine for debugging binaries of type '%1' is not available. +The debugger engine '%2' will be used as a fallback. +Details: %3 + Preferowany silnik debuggera do debugowania plików wykonywalnych typu "%1" nie jest dostępny. +Silnik debuggera "%2" zostanie użyty w zastępstwie. +Szczegóły: %3 Debugger::DebuggerRunControl - - There is no debugging engine available for post-mortem debugging. - Brak dostępnego silnika debuggera dla pośmiertnego debugowania. - - - Cannot debug '%1' (tool chain: '%2'): %3 - Nie można debugować "%1" (zestaw narzędzi: "%2"): %3 - - - Warning - Ostrzeżenie - Debugger Debugger - - Starting debugger '%1' for tool chain '%2'... - Uruchamianie debuggera "%1" dla zestawu narzędzi "%2"... - Debugging starts Rozpoczęto debugowanie @@ -19831,8 +17782,8 @@ Ustawianie pułapek może się nie powieść. Debugger::Internal::RemoteGdbProcess - Connection could not be established. - Nie można ustanowić połączenia. + Connection failure: %1. + Błąd połączenia: %1. Could not create FIFO. @@ -19843,12 +17794,12 @@ Ustawianie pułapek może się nie powieść. Nieoczekiwane zakończenie czytnika komunikatów aplikacji. - Remote gdb failed to start. - Nie można uruchomić zdalnego gdb. + Remote GDB failed to start. + Nie można uruchomić zdalnego GDB. - Remote gdb crashed. - Zdalny gdb przerwał pracę. + Remote GDB crashed. + Zdalny GDB przerwał pracę. @@ -19892,23 +17843,6 @@ Ustawianie pułapek może się nie powieść. - - Debugger::Internal::TcfTrkGdbAdapter - - Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. - Proces uruchomiony, PID: 0x%1, identyfikator wątku: 0x%2, segment kodu: 0x%3, segment danych: 0x%4. - - - The reported code segment address (0x%1) might be invalid. Symbol resolution or setting breakoints may not work. - Przekazany adres segmentu kodu (0x%1) może być niepoprawny. Analiza symboli lub ustawianie pułapek może nie działać. - - - Connecting to TRK server adapter failed: - - Nie można nawiązać połączenia z adapterem serwera TRK: - - - Debugger::Internal::DebuggerPane @@ -19919,18 +17853,6 @@ Ustawianie pułapek może się nie powieść. Save Contents Zachowaj zawartość - - Log File - Plik loga - - - Write Failure - Błąd zapisu - - - Unable to write log contents to '%1': %2 - Nie można zapisać zawartości loga do "%1": %2 - Debugger::Internal::InputPane @@ -19945,6 +17867,22 @@ Ustawianie pułapek może się nie powieść. Debugger Log Log debuggera + + Command: + Komenda: + + + Log File + Plik loga + + + Write Failure + Błąd zapisu + + + Unable to write log contents to '%1': %2 + Nie można zapisać zawartości loga do "%1": %2 + Debugger::QmlAdapter @@ -19983,8 +17921,8 @@ Ustawianie pułapek może się nie powieść. zamykanie... - Error: Cannot connect to debug service '%1'. Debugging functionality will be limited. - Błąd: Nie można nawiązać połączenia z serwisem debugowym "%1". Funkcjonalność debugowania będzie ograniczona. + Debug service '%1' became unavailable. + Serwis debugowy "%1" stał się niedostępny. Connected to debug service '%1'. @@ -19995,68 +17933,6 @@ Ustawianie pułapek może się nie powieść. Nie nawiązano połączenia z serwisem debugowym "%1". - - Debugger::QmlCppEngine - - %1 debugger activated - Uaktywniono debugger %1 - - - - Debugger::QmlEngine - - QML Debugger connected. - Podłączono debuggera QML. - - - Failed to connect to debugger - Nie można nawiązać połączenia z debuggerem - - - Could not connect to QML debugger server at %1:%2. - Nie można nawiązać połączenia z serwerem debuggera QML na %1:%2. - - - QML Debugger: Remote host closed connection. - Debugger QML: Zdalny host zamknął połączenie. - - - QML Debugger: Could not connect to service '%1'. - Debugger QML: Nie można nawiązać połączenia z serwisem "%1". - - - QML Debugger connecting... - Łączenie z debuggerem QML... - - - Failed to start application - Nie można uruchomić aplikacji - - - Application startup failed: %1 - Błąd uruchamiania aplikacji: %1 - - - Trying to stop while process is no longer running. - Próba zatrzymania podczas gdy proces nie jest już uruchomiony. - - - Stopped. - Zatrzymano. - - - <p>An Uncaught Exception occured in <i>%1</i>:</p><p>%2</p> - <p>Wystąpił nieobsłużony wyjątek w <i>%1</i>:</p><p>%2</p> - - - Uncaught Exception - Nieobsłużony wyjątek - - - QML Debugger disconnected. - Debugger QML rozłączony. - - Debugger::Internal::ScriptConsole @@ -20085,21 +17961,6 @@ Ustawianie pułapek może się nie powieść. Pełna nazwa - - Debugger::Internal::TcfEngine - - %1. - %1. - - - Running requested... - Zażądano uruchomienia... - - - Stopped. - Zatrzymano. - - Git::Internal::SettingsPageWidget @@ -20166,8 +18027,8 @@ zamiast w jego katalogu instalacyjnym. Help::Internal::RemoteHelpFilter - Online Documentation - Dokumentacja online + Web Search + Szukanie w sieci @@ -20205,17 +18066,17 @@ zamiast w jego katalogu instalacyjnym. Ctrl+= - Switch background + Switch Background Przełącz tło + + Switch Outline + Przełącz zarys + Ctrl+[ Ctrl+[ - - Switch outline - Przełącz zarys - Ctrl+] Ctrl+] @@ -20265,12 +18126,12 @@ zamiast w jego katalogu instalacyjnym. ProjectExplorer::Internal::CopyTaskHandler error: - Task is of type error + Task is of type: error błąd: warning: - Task is of type warning + Task is of type: warning ostrzeżenie: @@ -20304,13 +18165,6 @@ zamiast w jego katalogu instalacyjnym. Konfiguracja instalacji - - ProjectExplorer::Internal::EditorSettingsWidget - - Default - Domyślne - - ProjectExplorer::RunControl @@ -20318,12 +18172,8 @@ zamiast w jego katalogu instalacyjnym. Program wciąż uruchomiony - %1 is still running. - %1 jest wciąż uruchomiony. - - - Force it to quit? - Zakończyć go? + <html><head/><body><center><i>%1</i> is still running.<center/><center>Force it to quit?</center></body></html> + <html><head/><body><center><i>%1</i> jest wciąż uruchomiony.<center/><center>Wymusić zakończenie?</center></body></html> Force Quit @@ -20333,6 +18183,10 @@ zamiast w jego katalogu instalacyjnym. Keep Running Pozostaw uruchomionym + + Do not ask again + Nie pytaj ponownie + ProjectExplorer::Internal::ShowInEditorTaskHandler @@ -20373,6 +18227,14 @@ zamiast w jego katalogu instalacyjnym. ProjectExplorer::UserFileAccessor + + Using Old Project Settings File + Użyty jest stary plik z ustawieniami projektu + + + <html><head/><body><p>A versioned backup of the .user settings file will be used, because the non-versioned file was created by an incompatible newer version of Qt Creator.</p><p>Project settings changes made since the last time this version of Qt Creator was used with this project are ignored, and changes made now will <b>not</b> be propagated to the newer version.</p></body></html> + <html><head/><body><p>Zostanie użyta wersjonowana kopia zapasowa pliku z ustawieniami .user, ponieważ niewersjonowany plik został utworzony przez niekompatybilną nowszą wersję Qt Creatora.</p><p>Zmiany w ustawieniach tego projektu dokonane od ostatniego użycia tej wersji Qt Creatora zostaną zignorowane. Nowe zmiany <b>nie</b> zostaną zastosowane w nowszej wersji.</p></body></html> + Project Settings File from a different Environment? Plik z ustawieniami z innego środowiska? @@ -20452,65 +18314,6 @@ Czy wciąż chcesz załadować plik z ustawieniami? Podziel inicjalizator - - QmlJSInspector::Internal::QmlInspectorToolbar - - Observer Mode - Tryb Observer - - - Apply Changes on Save - Zastosuj zmiany przy zachowywaniu - - - Play/Pause Animations - Odegraj / zatrzymaj animacje - - - Select - Wybierz - - - Zoom - Powiększ - - - Color Picker - Wybieracz kolorów - - - Live Preview Changes in QML Viewer - Podgląd zmian na żywo w QML Viewerze - - - Animation Speed - Prędkość animacji - - - 1x - 1x - - - 0.5x - 0.5x - - - 0.25x - 0.25x - - - 0.125x - 0.125x - - - 0.1x - 0.1x - - - Pause - Pauza - - QmlJSInspector::Internal::ContextCrumblePath @@ -20528,6 +18331,10 @@ Czy wciąż chcesz załadować plik z ustawieniami? QML Observer QML Observer + + Filter properties + Właściwości filtru + QmlJSInspector::Internal::QmlJSLiveTextPreview @@ -20551,21 +18358,6 @@ Czy wciąż chcesz załadować plik z ustawieniami? You can continue debugging, but behavior can be unexpected. Możesz kontynuować debugowanie ale zachowanie może być nieoczekiwane. - - Reload - Przeładuj - - - - QmlJSInspector::Internal::QmlJSObjectTree - - Go to file - Przejdź do pliku - - - Url: - Url: - QmlJSInspector::ToolBarColorBox @@ -20613,6 +18405,14 @@ Neither the path to the library nor the path to its includes is added to the .pr Dowiązuje bibliotekę systemową. Ścieżki do biblioteki i jej nagłówków nie zostaną dodane do pliku .pro. + + System package + Pakiet systemowy + + + Links to a system library using pkg-config. + Dowiązuje bibliotekę systemową używając pkg-config. + External library Zewnętrzna biblioteka @@ -20644,6 +18444,14 @@ Adds the library and include paths to the .pro file. Specify the library to link to Wskaż bibliotekę która ma zostać dowiązana + + System Package + Pakiet systemowy + + + Specify the package to link to + Podaj pakiet do dowiązania + External Library Zewnętrzna biblioteka @@ -20701,14 +18509,14 @@ Adds the library and include paths to the .pro file. Qt4ProjectManager::Internal::MaemoDebugSupport - - No device configuration set for run configuration. - Brak konfiguracji urządzenia dla konfiguracji uruchamiania. - Preparing remote side ... Przygotowywanie zdalnej strony... + + SSH connection error: %1 + Błąd połączenia SSH: %1 + Upload failed: Could not open file '%1' Błąd przesyłania: nie można otworzyć pliku "%1" @@ -20729,20 +18537,16 @@ Adds the library and include paths to the .pro file. Initial setup failed: %1 Błąd wstępnej konfiguracji: %1 + + Not enough free ports on device for debugging. + Niewystarczająca ilość wolnych portów w urządzeniu do debugowania. + Qt4ProjectManager::Internal::MaemoDeployableListModel - File already in list. - Plik już jest na liście. - - - Failed to update .pro file. - Nie można uaktualnić pliku .pro. - - - Could not update .pro file. - Nie można uaktualnić pliku .pro. + <no target path set> + <brak ścieżki produktu docelowego> Local File Path @@ -20752,18 +18556,21 @@ Adds the library and include paths to the .pro file. Remote Directory Zdalny katalog + + Failed to open '%1': %2 + Nie można otworzyć "%1": %2 + + + Could not write '%1': %2 + Nie można zapisać "%1": %2 + + + Error writing project file. + Błąd zapisywania pliku projektu. + Qt4ProjectManager::Internal::MaemoDeployStep - - Deploy to Maemo device - MaemoDeployStep default display name - Zainstaluj na urządzeniu Maemo - - - Cannot start deployment, as the clean-up from the last time has not finished yet. - Nie można rozpocząć instalowania ponieważ ostatnie czyszczenie nie zostało jeszcze zakończone. - Deployment failed: No valid device set. Błąd instalowania: Nie ustawiono poprawnego urządzenia. @@ -20773,8 +18580,29 @@ Adds the library and include paths to the .pro file. Wszystkie pliki są aktualne, instalowanie zbyteczne. - Could not connect to host: %1 - Nie można połączyć się z hostem: %1 + Deploy to Maemo5 device + MaemoDeployStep default display name + Zainstaluj na urządzeniu Maemo5 + + + Deploy to Harmattan device + Zainstaluj na urządzeniu Harmattan + + + Deploy to Meego device + Zainstaluj na urządzeniu Meego + + + Cannot deploy: Still cleaning up from last time. + Nie można zainstalować: trwa nadal czyszczenie po ostatniej instalacji. + + + Deployment failed: Qemu was not running. It has now been started up for you, but it will take a bit of time until it is ready. + Błąd instalacji: Qemu nie był uruchomiony. Właśnie został uruchomiony, ale chwilę potrwa zanim będzie gotowy. + + + Connection error: %1 + Błąd połączenia: %1 Upload failed: Could not open file '%1' @@ -20796,6 +18624,10 @@ Adds the library and include paths to the .pro file. Successfully uploaded file '%1'. Przesłano plik "%1". + + Deployment failed. + Błąd instalacji. + Deployment finished. Zakończono instalowanie. @@ -20828,10 +18660,6 @@ Adds the library and include paths to the .pro file. Copying file '%1' to path '%2' on the device... Kopiowanie pliku "%1" do katalogu "%2" na urządzeniu... - - Device has not enough free ports for deployment. - Urządzenie nie ma wystarczającej liczby portów na potrzeby instalacji. - Copying file '%1' failed. Nie można skopiować pliku "%1". @@ -20848,6 +18676,10 @@ Adds the library and include paths to the .pro file. Installing package failed. Błąd instalowania pakietu. + + Installation failed: You tried to downgrade a package, which is not allowed. + Błąd instalacji: próba instalacji wcześniejszej wersji pakietu nie jest dozwolona. + Package installed. Zainstalowano pakiet. @@ -20866,19 +18698,48 @@ Adds the library and include paths to the .pro file. <b>Deploy to device</b>: %1 <b>Zainstaluj na urządzeniu</b>: %1 - - - MaemoDeviceConfig - (Invalid device) - (Niepoprawne urządzenie) + Could not create desktop file + Nie można utworzyć pliku desktopowego + + + Error creating desktop file: %1 + Błąd tworzenia pliku desktopowego: %1 + + + Choose Icon (will be scaled to 64x64 pixels, if necessary) + Wybierz ikonę (w razie potrzeby zostanie przeskalowana do 64x64) + + + Invalid Icon + Niepoprawna ikona + + + Unable to read image + Nie można odczytać obrazu + + + Failed to Save Icon + Nie można zachować ikony + + + Could not save icon to '%1'. + Nie można zachować ikony w "%1". + + + Could Not Add Icon + Nie można dodać ikony + + + Error adding icon: %1 + Błąd dodawania ikony: %1 Qt4ProjectManager::Internal::MaemoDeviceEnvReader - Could not connect to host: %1 - Nie można połączyć się z hostem: %1 + Connection error: %1 + Błąd połączenia: %1 Error running remote process: %1 @@ -20916,10 +18777,6 @@ Zawartość zdalnego stderr: "%1" Qemu failed to start: %1 Nie można uruchomić Qemu: %1 - - Qemu crashed - Qemu zakończone błędem - Qemu error Błąd Qemu @@ -20957,24 +18814,8 @@ stderr was: '%1' stderr był: "%1" - Setting up SFTP connection... - Ustanawianie połączenia SFTP... - - - Failed to establish SFTP connection: %1 - Błąd ustanawiania połączenia SFTP: %1 - - - Uploading UTFS client... - Przesyłanie klienta UTFS... - - - Could not upload UTFS client (%1). - Nie można przesłać klienta UTFS (%1). - - - Could not upload UTFS client (%1), continuing anyway. - Nie można przesłać klienta UTFS (%1). Proces jest kontynuowany. + Error: Not enough free ports on device to fulfill all mount requests. + Błąd: Niewystarczająca ilość wolnych portów w urządzeniu aby wykonać wszystkie żądania zamontowania. Starting remote UTFS clients... @@ -21020,14 +18861,6 @@ stderr był: %1 Qt4ProjectManager::Internal::MaemoRunControl - - No device configuration set for run configuration. - Brak konfiguracji urządzenia dla konfiguracji uruchamiania. - - - Run configuration no longer available. - Konfiguracja budowania nie jest już dostępna. - Starting remote process ... Uruchamianie zdalnego procesu... @@ -21047,14 +18880,6 @@ stderr był: %1 Connecting to device... Nawiązywanie połączenia z urządzeniem... - - Could not connect to host: %1 - Nie można połączyć się z hostem: %1 - - - Connection failed: %1 - Błąd połączenia: %1 - Killing remote process(es)... Zamykanie zdalnych procesów... @@ -21072,8 +18897,16 @@ stderr był: %1 Nie można uruchomić: Nie ustawiono zdalnego pliku wykonywalnego. - The device does not have enough free ports for this run configuration. - Urządzenie nie ma wystarczającej liczby wolnych portów dla tej konfiguracji uruchamiania. + Cannot run: No device configuration set. + Nie można uruchomić: Brak konfiguracji urządzenia. + + + Cannot run: Qemu was not running. It has now been started up for you, but it will take a bit of time until it is ready. + Błąd uruchomienia: Qemu nie był uruchomiony. Właśnie został uruchomiony, ale chwilę potrwa zanim będzie gotowy. + + + Connection error: %1 + Błąd połączenia: %1 Mounting host directories... @@ -21092,69 +18925,6 @@ stderr był: %1 Demontowanie katalogów hosta... - - Qt4ProjectManager::Internal::MaemoTemplatesManager - - Error creating Maemo packaging directory '%1'. - Błąd tworzenia katalogu pakietu Maemo "%1". - - - Unable to create Debian templates: dh_make failed (%1) - Nie można utworzyć szablonu dla Debiana: dh_make failed (%1) - - - Unable to create debian templates: dh_make failed (%1) - Nie można utworzyć szablonu dla debiana: dh_make failed (%1) - - - Unable to move new debian directory to '%1'. - Nie można przenieść nowych katalogów Debiana do "%1". - - - Packaging Error: Cannot open file '%1'. - Błąd pakowania: Nie można otworzyć pliku "%1". - - - Packaging Error: Cannot write file '%1'. - Błąd pakowania: Nie można zapisać pliku "%1". - - - Debian changelog file '%1' has unexpected format. - Nieoczekiwany format pliku z logiem zmian Debiana "%1". - - - Error writing Debian changelog file '%1': %2 - Błąd zapisu pliku z logiem zmian Debiana "%1": %2 - - - Invalid icon data in Debian control file. - Niepoprawne dane ikony w pliku kontrolnym Debiana. - - - Could not read image file '%1'. - Nie można odczytać pliku graficznego "%1". - - - Could not export image file '%1'. - Nie można wyeksportować pliku graficznego "%1". - - - Error writing file '%1': %2 - Błąd zapisywania do pliku "%1": %2 - - - Error creating Maemo templates - Błąd tworzenia szablonów Maemo - - - File '%1' does not exist - Plik "%1" nie istnieje - - - Cannot open file '%1': %2 - Nie można otworzyć pliku "%1": %2 - - Qt4ProjectManager::PassphraseForKeyDialog @@ -21166,8 +18936,8 @@ stderr był: %1 Zachowaj hasło - This is an insecure option. The password will be saved as a plain text. - To nie jest bezpieczna opcja. Hasło zostanie zapisane jako zwykły tekst. + This is an insecure option. The password will be saved as plain text. + Nie jest to bezpieczna opcja. Hasło zostanie zachowane jako zwykły tekst. Passphrase for %1 @@ -21191,6 +18961,10 @@ stderr był: %1 %1 on Symbian Device %1 na urządzeniu Symbian + + Deploy to Symbian device + Zainstaluj na urządzeniu Symbian + Qt4ProjectManager::Internal::S60DeployConfigurationWidget @@ -21202,6 +18976,26 @@ stderr był: %1 Silent installation Cicha instalacja + + Serial: + Szeregowe: + + + WLAN: + WLAN: + + + TRK + TRK + + + CODA + CODA + + + <a href="qthelp://com.nokia.qtcreator/doc/creator-developing-symbian.html">What are the prerequisites?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-developing-symbian.html">Jakie są wymagania?</a> + Installation file: Plik instalacyjny: @@ -21215,17 +19009,97 @@ stderr był: %1 Napęd instalacji: - Device on serial port: - Urządzenie na porcie szeregowym: + Device Agent + Agent na urządzeniu + + + Serial port: + Port szeregowy: + + + Communication Channel + Kanał komunikacyjny + + + Address: + Adres: + + + Connecting + Łączenie + + + Unable to create CODA connection. Please try again. + Nie można stworzyć połączenia z CODA. Spróbuj ponownie. + + + Currently there is no information about the device for this connection type. + Aktualnie brak informacji o tym urządzeniu dla tego typu połączenia. + + + No device information available + Brak dostępnej informacji o urządzeniu + + + Qt version: + Wersja Qt: + + + Not installed on device + Nie jest zainstalowany na urządzeniu + + + Qt version: + Wersja Qt: + + + Unrecognised Symbian version 0x%1 + Nierozpoznana wersja Symbiana 0x%1 + + + Unrecognised S60 version 0x%1 + Nierozpoznana wersja S60 0x%1 + + + OS version: + Wersja systemu: + + + unknown + nieznana + + + ROM version: + Wersja ROM: + + + Release: + Wydanie: + + + CODA version: + Wersja CODA: + + + Error reading CODA version + Błąd odczytu wersji CODA + + + QtMobility version: + Wersja QtMobility: + + + Error reading QtMobility version + Błąd odczytu wersji QtMobility + + + Screen size: + Rozmiar ekranu: Queries the device for information Uzyskuje informacje o urządzeniu - - Connecting... - Łączenie... - Qt4ProjectManager::Internal::S60DeployStep @@ -21242,6 +19116,10 @@ stderr był: %1 Qt4 Deploystep display name Zainstaluj + + No package has been found. Please specify at least one installation package. + Brak pakietu. Podaj przynajmniej jeden pakiet instalacyjny. + Renaming new package '%1' to '%2' Zmienianie nazwy pakietu z "%1" na "%2" @@ -21254,10 +19132,6 @@ stderr był: %1 '%1': Package file not found "%1": Brak pliku pakietu - - There is no device plugged in. - Brak podłączonego urządzenia. - Failed to find package %1 Nie można odnaleźć pakietu %1 @@ -21272,10 +19146,6 @@ Check if the phone is connected and App TRK is running. Nie można nawiązać połączenia z telefonem na porcie "%1": %2 Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. - - Canceled. - Anulowano. - Could not create file %1 on device: %2 Nie można utworzyć pliku %1 na urządzeniu: %2 @@ -21296,22 +19166,82 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona.Copying "%1"... Kopiowanie "%1"... + + No device is connected. Please connect a device and try again. + Brak podłączonego urządzenia. Podłącz je i spróbuj ponownie. + + + No address for a device has been defined. Please define an address and try again. + Brak zdefiniowanego adresu urządzenia. Podaj adres i spróbuj ponownie. + + + Deploying application to '%1'... + Instalowanie aplikacji w "%1"... + + + No such port + Port nie istnieje + + + Could not open serial device: %1 + Nie można otworzyć portu szeregowego: %1 + + + Connecting to %1:%2... + Łączenie z %1:%2... + + + Error: %1 + Błąd: %1 + Installing package "%1" on drive %2:... Instalowanie pakiety "%1" na urządzeniu %2:... + + Please continue the installation on your device. + Kontynuuj instalację na urządzeniu. + + + Could not open remote file: %1 + Nie można otworzyć zdalnego pliku: %1 + + + Could not open local file %1: %2 + Nie można otworzyć lokalnego pliku %1: %2 + Installation has finished Instalacja zakończona + + Installation failed: %1; see %2 for descriptions of the error codes + Błąd instalacji: %1, zobacz opis kodów błędów w %2 + + + Failed to close the remote file: %1 + Nie można zamknąć zdalnego pliku: %1 + + + Installation + Instalacja + Could not install from package %1 on device: %2 Nie można zainstalować pakietu %1 na urządzeniu: %2 + + Deployment has been cancelled. + Instalacja została anulowana. + The device '%1' has been disconnected Urządzenie "%1" zostało odłączone + + Copy progress: %1% + Postęp kopiowania: %1% + Qt4ProjectManager::Internal::S60DeployStepWidget @@ -21349,17 +19279,6 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. - - Qt4ProjectManager::Internal::Qt4DeployConfigurationFactory - - Deploy to Symbian device - Zainstaluj na urządzeniu Symbian - - - Deploy to Maemo device - Zainstaluj na urządzeniu Maemo - - Qt4ProjectManager::AbstractMobileApp @@ -21394,33 +19313,6 @@ Preselects Qt for Simulator and mobile targets if available. Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest dostępna). - - Qt4ProjectManager::Internal::MobileAppWizardOptionsPage - - Automatically Rotate Orientation - Automatycznie przełączaj orientację - - - Lock to Landscape Orientation - Pejzażowa orientacja - - - Lock to Portrait Orientation - Portretowa orientacja - - - The file is not a valid image. - Plik nie jest poprawnym plikiem graficznym. - - - The icon has an invalid size. - Ikona ma niepoprawny rozmiar. - - - Icon unusable - Bezużyteczna ikona - - Qt4ProjectManager::Internal::QtQuickApp @@ -21645,15 +19537,21 @@ Sprawdź prawa dostępu do katalogu. Błąd uruchamiania "%1" w %2: %3 - Building helper library '%1' in %2 + Building helper '%1' in %2 - Budowanie biblioteki asystenta "%1" w %2 + Budowanie asystenta "%1" w %2 Running %1 %2... Uruchamianie %1 %2... + + + + Running %1 %2 ... + + Uruchamianie %1 %2 ... @@ -21748,17 +19646,6 @@ Powód: %2 QMLObserver - - Qt4ProjectManager::Internal::AbstractMobileAppWizardDialog - - Qt Versions - Wersje Qt - - - Application Options - Opcje aplikacji - - Qt4ProjectManager::Internal::QtQuickAppWizardSourcesPage @@ -21773,23 +19660,5657 @@ Powód: %2 Problem instalacji Maemo - The project files listed below do not contain Maemo deployment information, which means the respective targets cannot be deployed to and/or run on a device. Qt Creator can add the missing information to these files. - + The project files listed below do not contain Maemo deployment information, which means the respective targets cannot be deployed to and/or run on a device. Qt Creator will add the missing information to these files if you check the respective rows below. + Pliki projektu wymienione poniżej nie zawierają informacji o instalacji dla Maemo, co oznacza, że odpowiednie produkty docelowe nie mogą być zainstalowane ani uruchomione. Jeśli zaznaczysz odpowiednie wiersze poniżej, brakujące informacje zostaną dodane do tych plików. - Check all - Zaznacz wszystko + &Check all + &Zaznacz wszystko - Uncheck All - Odznacz wszystko + &Uncheck All + &Odznacz wszystko Qt4ProjectManager::Internal::MaemoProFilesUpdateDialog Updateable Project Files - Odświeżalne pliki projektu + Odświeżalne pliki projektu + + + + Bazaar::Internal::BazaarCommitPanel + + General Information + Ogólne informacje + + + Branch: + Gałąź: + + + Perform a local commit in a bound branch. +Local commits are not pushed to the master branch until a normal commit is performed + + + + Local commit + + + + Commit Information + + + + Author: + Autor: + + + Email: + Email: + + + Fixed bugs: + Poprawione błędy: + + + + Bazaar::Internal::CloneOptionsPanel + + Options + Opcje + + + By default, branch will fail if the target directory exists, but does not already have a control directory. +This flag will allow branch to proceed + Domyślnie, stworzenie gałęzi nie powiedzie się jeśli katalog docelowy istnieje, ale nie posiada katalogu kontrolnego. +Ta flaga wówczas umożliwi stworzenie gałęzi + + + Use existing directory + Użyj istniejącego katalogu + + + Create a stacked branch referring to the source branch. +The new branch will depend on the availability of the source branch for all operations + + + + Stacked + + + + Do not use a shared repository, even if available + Nie używaj dzielonego repozytorium, nawet jeśli jest to możliwe + + + Standalone + + + + Bind new branch to source location + Powiąż nową gałąź z położeniem źródeł + + + Switch the checkout in the current directory to the new branch + + + + Switch checkout + + + + Hard-link working tree files where possible + + + + Hardlink + + + + Create a branch without a working-tree + Utwórz gałąź bez drzewa z kopią roboczą + + + No working-tree + Bez kopii roboczej + + + Revision: + Poprawka: + + + + Bazaar::Internal::OptionsPage + + Form + Formularz + + + Configuration + Konfiguracja + + + Command: + Komenda: + + + User + Użytkownik + + + Username to use by default on commit. + + + + Default username: + Domyślna nazwa użytkownika: + + + Email to use by default on commit. + + + + Default email: + Domyślny adres email: + + + Miscellaneous + Różne + + + Log count: + Licznik loga: + + + The number of recent commit logs to show, choose 0 to see all enteries + Liczba ostatnich zmian wyświetlanych w logu, wybierz 0 aby ujrzeć wszystkie zmiany + + + Timeout: + Czas oczekiwania: + + + s + s + + + Prompt on submit + Pytaj przed wysłaniem zmian do serwera + + + Bazaar + Bazaar + + + + Bazaar::Internal::PullOrPushDialog + + Dialog + Dialog + + + Branch Location + Położenie gałęzi + + + Default location + Domyślne położenie + + + Local filesystem: + Lokalny system plików: + + + for example https://[user[:pass]@]host[:port]/[path] + na przykład https://[użytkownik[:hasło]@]host[:port]/[ścieżka] + + + Specify URL: + Podaj URL: + + + Options + Opcje + + + Remember specified location as default + Zapamiętaj podane położenie jako domyślne + + + Ignore differences between branches and overwrite +unconditionally + Ignoruj różnice pomiędzy gałęziami i nadpisuj bezwarunkowo + + + Overwrite + Nadpisz + + + By default, push will fail if the target directory exists, but does not already have a control directory. +This flag will allow push to proceed + Domyślnie, push nie powiedzie się jeśli katalog docelowy istnieje, ale nie posiada katalogu kontrolnego. +Ta flaga wówczas umożliwi wykonanie push + + + Use existing directory + Użyj istniejącego katalogu + + + Create the path leading up to the branch if it does not already exist + Utwórz ścieżkę prowadząca do gałęzi jeżeli jeszcze ona nie istnieje + + + Create prefix + Utwórz przedrostek + + + Revision: + Poprawka: + + + Perform a local pull in a bound branch. +Local pulls are not applied to the master branch + + + + Local + Lokalnie + + + Pull Source + + + + Push Destination + + + + + Bazaar::Internal::RevertDialog + + Revert + Odwróć zmiany + + + Specify a revision other than the default? + Podaj inną poprawkę niż domyślna + + + Revision: + Poprawka: + + + + Core::Internal::ExternalToolConfig + + Form + Formularz + + + Add tool + Dodaj narzędzie + + + Add + Dodaj + + + Remove tool + Usuń narzędzie + + + Remove + Usuń + + + Revert tool to default + Przywróć domyślne narzędzi + + + Reset + Przywróć + + + Description: + Opis: + + + Executable: + Plik wykonywalny: + + + Arguments: + Argumenty: + + + Working directory: + Katalog roboczy: + + + <html><head/><body> +<p>What to do with the executable's standard output. +<ul><li>Ignore: Do nothing with it</li><li>Show in pane: Show it in the general output pane</li><li>Replace selection: Replace the current selection in the current document with it</li></ul></p></body></html> + + <html><head/><body> +<p>Co zrobić z komunikatami pliku wykonywalnego. +<ul><li>Ignoruj: nie rób nic</li><li>Pokaż w panelu: pokaż w ogólnym panelu z komunikatami</li><li>Zastąp selekcję: zastąp nimi selekcję w bieżącym dokumencie</li></ul></p></body></html> + + + + Output: + Komunikaty: + + + Ignore + Zignoruj + + + Show in Pane + Pokazuj w panelu + + + Replace Selection + Zastąp selekcję + + + <html><head><body> +<p >What to do with the executable's standard error output.</p> +<ul><li>Ignore: Do nothing with it</li> +<li>Show in pane: Show it in the general output pane</li> +<li>Replace selection: Replace the current selection in the current document with it</li> +</ul></body></html> + <html><head><body> +<p >Co zrobić z komunikatami błędów pliku wykonywalnego</p> +<ul><li>Ignoruj: nie rób nic</li> +<li>Pokaż w panelu: pokaż w ogólnym panelu z komunikatami</li> +<li>Zastąp selekcję: zastąp nimi selekcję w bieżącym dokumencie</li> +</ul></body></html> + + + Error output: + Komunikaty o błędach: + + + Text to pass to the executable via standard input. Leave empty if the executable should not receive any input. + Tekst przekazywany do pliku wykonywalnego poprzez standardowe wejście. Może zostać pusty dla pliku wykonywalnego nie otrzymującego niczego na wejściu. + + + Input: + Wejście: + + + If the tool modifies the current document, set this flag to ensure that the document is saved before running the tool and is reloaded after the tool finished. + Jeśli narzędzie modyfikuje bieżący dokument, ustaw tę flagę aby mieć pewność, iż będzie on zachowany przed uruchomieniem narzędzia i przeładowany po jego zakończeniu. + + + Modifies current document + Modyfikuje bieżący dokument + + + Add Tool + Dodaj narzędzie + + + Add Category + Dodaj kategorię + + + + MimeTypeMagicDialog + + Dialog + Dialog + + + Value: + Wartość: + + + Type + Typ + + + String + Ciąg + + + Byte + Bajt + + + Use Recommended + Używaj rekomendowanych + + + Start range: + Początek zakresu: + + + End range: + Koniec zakresu: + + + Priority: + Priorytet: + + + <i>Note: Wide range values might impact on Qt Creator's performance when opening files.</i> + <i>Uwaga: Szeroki zakres może wpłynąć na wydajność Qt Creatora podczas otwierania plików.</i> + + + + MimeTypeSettingsPage + + Form + Formularz + + + Registered MIME Types + Zarejestrowane typy MIME + + + Reset all to default + Przywróć wszystkie domyślne + + + Reset All + Przywróć wszystkie + + + Details + Szczegóły + + + Patterns: + Wzory: + + + Magic Header + Magiczny nagłówek + + + Type + Typ + + + Range + Zakres + + + Priority + Priorytet + + + Add + Dodaj + + + Edit + Zmodyfikuj + + + Remove + Usuń + + + + Core::VariableChooser + + Variables + Zmienne + + + Select a variable to insert. + Wybierz zmienną do wstawienia. + + + Insert variable + Wstaw zmienną + + + + Debugger::Internal::BreakCondition + + &Condition: + &Warunek: + + + &Ignore count: + L&icznik pominięć: + + + &Thread specification: + &Specyfikacja wątku: + + + + LldbOptionsPageWidget + + Enable LLDB + Włącz LLDB + + + Use GDB python dumpers + Używaj narzędzia do zrzutów GDB python + + + Use GDB Python dumpers + Używaj narzędzia do zrzutów GDB Python + + + + StartRemoteEngineDialog + + Start Remote Engine + Uruchom zdalny silnik + + + &Host: + &Host: + + + &Username: + Nazwa &użytkownika: + + + &Password: + H&asło: + + + &Engine path: + Ścieżka do &silnika: + + + &Inferior path: + Ścieżka do &podprocesu: + + + + Macros::Internal::MacroOptionsWidget + + Form + Formularz + + + Preferences + Ustawienia + + + Name + Nazwa + + + Description + Opis + + + Shortcut + Skrót + + + Remove + Usuń + + + Macro + Makro + + + Description: + Opis: + + + + Macros::Internal::SaveDialog + + Save Macro + Zachowaj makro + + + Name: + Nazwa: + + + Description: + Opis: + + + + MemcheckConfigWidget + + Memory Analysis Options + Opcje analizatora pamięci + + + Backtrace frame count: + Głębokość stosu: + + + Suppressions: + Tłumienia: + + + Add + Dodaj + + + Remove + Usuń + + + Track origins of uninitialized memory + Śledź źródła niezainicjalizowanej pamięci + + + + SuppressionDialog + + Dialog + Dialog + + + Suppression File: + Plik tłumienia: + + + Suppression: + Tłumienie: + + + + ProjectExplorer::Internal::PublishingWizardSelectionDialog + + Publishing Wizard Selection + Publikowanie selekcji kreatora + + + Available Wizards: + Dostępne kreatory: + + + Start Wizard + Uruchom kreatora + + + Publishing is currently not possible for project '%1'. + Publikowanie nie jest aktualnie możliwe dla projektu "%1". + + + + ToolChainOptionsPage + + Add + Dodaj + + + Remove + Usuń + + + Clone + Sklonuj + + + + Qt4ProjectManager::Internal::DebuggingHelper + + Used to extract QML type information from library-based plugins. + Użyty do wyciągania informacji o typach QML z wtyczek bazujących na bibliotekach. + + + QML Dump: + Zrzut QML: + + + A modified version of qmlviewer with support for QML/JS debugging. + Zmodyfikowana wersja qmlviewera, która obsługuje debugowanie QML/JS. + + + QML Observer: + QML Observer: + + + Build + Zbuduj + + + QML Debugging Library: + Biblioteka debugująca QML: + + + Show compiler output of last build. + Pokazuje komunikaty kompilatora z ostatniego budowania. + + + Show Log + Pokaż log + + + Compile debugging helpers that are checked. + Skompiluj zaznaczonych asystentów debugowania. + + + Build All + Zbuduj wszystko + + + Helps showing content of Qt types. Only used in older versions of GDB. + Pomaga wyświetlać zawartość typów Qt. Używany tylko w starszych wersjach GDB. + + + GDB Helper: + Asystent GDB: + + + + MaemoDeviceConfigurationsSettingsWidget + + Maemo Device Configurations + Konfiguracje urządzenia Maemo + + + &Configuration: + &Konfiguracja: + + + &Name: + &Nazwa: + + + Device type: + Typ urządzenia: + + + Authentication type: + Typ autoryzacji: + + + Password + Hasło + + + &Key + &Klucz + + + &Host name: + Nazwa &hosta: + + + IP or host name of the device + IP lub nazwa hosta urządzenia + + + &SSH port: + Port &SSH: + + + Free ports: + Wolne porty: + + + You can enter lists and ranges like this: 1024,1026-1028,1030 + Można wprowadzać listy i zakresy, np.: 1024,1026-1028,1030 + + + TextLabel + Etykieta + + + Connection time&out: + Czas &oczekiwania na połączenie: + + + s + s + + + &Username: + Na&zwa użytkownika: + + + &Password: + H&asło: + + + Show password + Pokaż hasło + + + Private key file: + Plik z kluczem prywatnym: + + + Set as Default + Ustaw jako domyślny + + + OS type: + Typ systemu: + + + &Add + &Dodaj + + + &Remove + &Usuń + + + Click here to check whether this device is properly set up to run Maemo projects. + Kliknij tutaj aby sprawdzić czy to urządzenie jest poprawnie skonfigurowane do uruchamiania projektów Maemo. + + + &Test + Prze&testuj + + + Click here if you do not have an SSH key yet. + Kliknij tutaj jeśli nie masz jeszcze klucza SSH. + + + &Generate SSH Key ... + &Generuj klucz SSH... + + + This will enable you to log into the device without a password. + To umożliwi logowanie do urządzenia bez podawania hasła. + + + &Deploy Public Key ... + &Instaluj klucz publiczny... + + + Click here to see which processes are running on the device. + Kliknij tutaj aby zobaczyć które procesy są uruchomione na urządzeniu. + + + Remote Processes ... + Zdalne procesy... + + + Set As Default + Ustaw jako domyślną + + + + MaemoDeviceConfigWizardKeyCreationPage + + WizardPage + StronaKreatora + + + Qt Creator will now generate a new pair of keys. Please enter the directory to save the key files in and then press "Create Keys". + Teraz zostanie wygenerowana nowa para kluczy. Wprowadź katalog w którym zapisać pliki z kluczami i naciśnij "Utwórz klucze". + + + Directory: + Katalog: + + + Create Keys + Utwórz klucze + + + + MaemoDeviceConfigWizardKeyDeploymentPage + + WizardPage + StronaKreatora + + + Device address: + Adres urządzenia: + + + Password: + Hasło: + + + Deploy Key + Zainstaluj klucz + + + To deploy the public key to your device, please execute the following steps: +<ul> +<li>Connect the device to your computer (unless you plan to connect via WLAN).</li> +<li>On the device, start the "%%%maddev%%%" application.</li> +<li>In "%%%maddev%%%", configure the device's IP address to the one shown below (or edit the field below to match the address you have configured).</li> +<li>In "%%%maddev%%%", press "Developer Password" and enter it in the field below.</li> +<li>Click "Deploy Key"</li> + + Wykonaj poniższe kroki aby zainstalować klucz publiczny na urządzeniu: +<ul> +<li>Podłącz urządzenie do komputera (chyba że chcesz podłączyć się poprzez WLAN).</li> +<li>Uruchom aplikację "%%%maddev%%%" na urządzeniu.</li> +<li>W aplikacji "%%%maddev%%%" ustaw adres IP urządzenia na jeden z widocznych poniżej (lub zmodyfikuj poniższe pole aby dopasować go do adresu uprzednio skonfigurowanego).</li> +<li>W aplikacji "%%%maddev%%%" naciśnij "Developer Password" i wprowadź je do poniższego pola.</li> +<li>Naciśnij "Zainstaluj klucz".</li> + + + + + MaemoDeviceConfigWizardCheckPreviousKeySetupPage + + WizardPage + StronaKreatora + + + Has a passwordless (key-based) login already been set up for this device? + Czy bezhasłowe logowanie (bazujące na kluczu publicznym) zostało już ustawione na urządzeniu? + + + Yes, and the private key is located at + Tak i klucz prywatny zlokalizowany jest w + + + No + Nie + + + + MaemoDeviceConfigWizardReuseKeysCheckPage + + WizardPage + StronaKreatora + + + Do wou want to re-use an existing pair of keys or should a new one be created? + Chcesz wykorzystać istniejącą już parę kluczy czy stworzyć nową? + + + Re-use existing keys + Użyj istniejących kluczy + + + File containing the public key: + Plik zawierający klucz publiczny: + + + File containing the private key: + Plik zawierający klucz prywatny: + + + Create new keys + Utwórz nowe klucze + + + + MaemoDeviceConfigWizardStartPage + + WizardPage + StronaKreatora + + + The name to identify this configuration: + Nazwa identyfikująca tę konfigurację: + + + The system running on the device: + System na urządzeniu: + + + Maemo 5 (Fremantle) + Maemo 5 (Fremantle) + + + Maemo 6 (Harmattan) + Maemo 6 (Harmattan) + + + Meego + Meego + + + The kind of device: + Rodzaj urządzenia: + + + Emulator (Qemu) + Emulator (Qemu) + + + Hardware Device + Urządzenie sprzętowe + + + The device's host name or IP address: + Nazwa hosta lub adres IP urządzenia: + + + + MaemoPublishingWizardPageFremantleFree + + WizardPage + StronaKreatora + + + Choose build configuration: + Wybierz konfigurację budowania: + + + Only create source package, do not upload + Utwórz tylko pakiety źródłowe, nie przesyłaj ich + + + + MaemoPublishingFileSelectionDialog + + Choose Package Contents + Wybierz zawartość pakietu + + + <b>Please select the files you want to be included in the source tarball.</b> + + <b> Wybierz pliki które chcesz umieścić w archiwum źródłowym.</b> + + + + + MaemoPublishingResultPageFremantleFree + + WizardPage + StronaKreatora + + + Progress + Postęp + + + + MaemoPublishingUploadSettingsPageFremantleFree + + WizardPage + StronaKreatora + + + Upload Settings + Ustawienia przesyłania + + + Garage account name: + Nazwa konta Garage: + + + <a href="https://garage.maemo.org/account/register.php">Get an account</a> + <a href="https://garage.maemo.org/account/register.php">Utwórz konto</a> + + + <a href="https://garage.maemo.org/extras-assistant/index.php">Request upload rights</a> + <a href="https://garage.maemo.org/extras-assistant/index.php">Zażądaj praw do przesyłania</a> + + + Private key file: + Plik z kluczem prywatnym: + + + Server address: + Adres serwera: + + + Target directory on server: + Katalog produktu docelowego na serwerze: + + + + MaemoQemuSettingsWidget + + Form + Formularz + + + OpenGL Mode + Tryb OpenGL + + + &Hardware acceleration + Akceleracja &sprzętowa + + + &Software rendering + &Renderowanie software'owe + + + &Auto-detect + &Automatycznie wykrywane + + + + MaemoRemoteProcessesDialog + + List of Remote Processes + Lista zdalnych procesów + + + &Filter by process name: + &Filtruj po nazwie procesu: + + + &Update List + &Uaktualnij listę + + + &Kill Selected Process + Za&kończ wybrany proces + + + + Qt4ProjectManager::Internal::RvctToolChainConfigWidget + + Form + Formularz + + + ARM &version: + &Wersja ARM: + + + Version 5 + Wersja 5 + + + Version 6 + Wersja 6 + + + &Compiler path: + Ścieżka do &kompilatora: + + + Environment Variables + Zmienne środowiskowe + + + + S60CertificateDetailsDialog + + Details of Certificate + Szczegóły certyfikatu + + + + S60PublishingBuildSettingsPageOvi + + Form + Formularz + + + Choose a build configuration: + Wybierz konfigurację budowania: + + + Only Qt versions above 4.6.3 are made available in this wizard. +Previous Qt versions have limitations in building suitable SIS files. + W tym kreatorze dostępne są wersje Qt powyżej 4.6.3. +Poprzednie wersje mają ograniczenia w budowaniu odpowiednich plików SIS. + + + + S60PublishingResultsPageOvi + + Form + Formularz + + + + S60PublishingSisSettingsPageOvi + + Form + Formularz + + + Global vendor name: + Globalna nazwa dostawcy: + + + Qt version used in builds: + Wersja Qt użyta do budowania: + + + Current Qt Version + Bieżąca wersja Qt + + + Application UID: + UID aplikacji: + + + Current UID3 + Bieżący UID3 + + + Capabilities: + Capabilities: + + + Current set of capabilities + Bieżący zestaw "capabilities" + + + Current Global Vendor Name + Bieżąca globalna nazwa dostawcy + + + Localised vendor names: + Przetłumaczone nazwy dostawców: + + + Localised Vendor Names + Przetłumaczone nazwy dostawców + + + + Qt4ProjectManager::Internal::WinscwToolChainConfigWidget + + Dialog + Dialog + + + Compiler path: + Ścieżka do kompilatora: + + + System include path: + Ścieżka do nagłówków systemowych: + + + System library path: + Ścieżka do bibliotek systemowych: + + + + Qt4ProjectManager::Internal::QtVersionInfo + + Version name: + Nazwa wersji: + + + qmake location: + Położenie qmake: + + + S60 SDK: + S60 SDK: + + + SBS v2 directory: + Katalog SBS v2: + + + + Html5AppWizardSourcesPage + + WizardPage + StronaKreatora + + + Main HTML File + Główny plik HTML + + + Generate an index.html file + Wygeneruj plik index.html + + + Import an existing .html file + Zaimportuj istniejący plik .html + + + Load a URL + Załaduj URL + + + http:// + http:// + + + Note: Unless you chose to load a URL, all files and directories that reside in the same directory as the main HTML file are deployed. You can modify the contents of the directory any time before deploying. + Uwaga: wszystkie pliki i katalogi które leżą w tym samym katalogu co główny plik HTML zostaną zainstalowane, chyba że wybrałeś załadowanie URL. Możesz zmodyfikować zawartość katalogu przed zainstalowaniem. + + + Touch optimized navigation + Nawigacja zoptymalizowana pod kątem urządzeń dotykowych + + + Enable touch optimized navigation + Włącz nawigację zoptymalizowaną pod kątem urządzeń dotykowych + + + Touch optimized navigation will make the HTML page flickable and enlarge the area of touch sensitive elements. If you use a JavaScript framework which optimizes the touch interaction, leave the checkbox unchecked. + Nawigacja zoptymalizowana pod kątem urządzeń dotykowych spowoduje + + + + MobileAppWizardGenericOptionsPage + + WizardPage + StronaKreatora + + + Orientation behavior: + Zarządzanie orientacją: + + + + MobileAppWizardMaemoOptionsPage + + WizardPage + StronaKreatora + + + Application icon (64x64): + Ikona aplikacji (64x64): + + + + MobileAppWizardSymbianOptionsPage + + WizardPage + StronaKreatora + + + Application icon (.svg): + Ikona aplikacji (.svg): + + + Target UID3: + UID3 produktu: + + + Enable network access + Włącz dostęp sieciowy + + + + BehaviorSettingsPage + + Form + Formularz + + + + BehaviorSettingsWidget + + Tabs and Indentation + Tabulatory i wcięcia + + + Insert &spaces instead of tabs + Wstawiaj &spacje zamiast tabulatorów + + + Ta&b size: + Rozmiar ta&bulatorów: + + + Automatically determine based on the nearest indented line (previous line preferred over next line) + Określa automatycznie wzorując się na najbliższej wciętej linii (poprzednia linia preferowana nad następną) + + + Based on the surrounding lines + Wzorując się na sąsiednich liniach + + + &Indent size: + Rozmiar wc&ięć: + + + Enable automatic &indentation + Włącz automatyczne wc&ięcia + + + Backspace will go back one indentation level instead of one space. + Klawisz "Backspace" skasuje spacje aż do poprzedniego wcięcia zamiast jednej spacji. + + + &Backspace follows indentation + Klawisz "&Backspace" podąża za wcięciami + + + Block indentation style: + Styl wcięć blokowych: + + + <html><head/><body> +Controls the indentation style of curly brace blocks. + +<ul> +<li>Exclude Braces: The braces are not indented. +<pre> +void foo() +{ + if (a) + { + bar(); + } +} +</pre> +</li> + +<li>Include Braces: The braces are indented. The contents of the block are on the same level as the braces. +<pre> +void foo() + { + if (a) + { + bar(); + } + } +</pre> +</li> + +<li>GNU Style: Indent the braces for blocks in statements. The contents are indented twice. +<pre> +void foo() +{ + if (a) + { + bar(); + } +} +</pre> +</li> +</ul></body></html> + <html><head/><body> +Steruje stylem wcięć bloków ograniczonych nawiasami klamrowymi. + +<ul> +<li>Nie uwzględniaj nawiasów: Nawiasy nie są wcięte. +<pre> +void foo() +{ + if (a) + { + bar(); + } +} +</pre> +</li> + +<li>Uwzględniaj nawiasy: Nawiasy są wcięte. Zawartość bloku jest na tym samym poziomie co nawiasy. +<pre> +void foo() + { + if (a) + { + bar(); + } + } +</pre> +</li> + +<li>Styl GNU: Nawiasy są wcięte dla bloków w wyrażeniach. Zawartość jest wcięta dwukrotnie. +<pre> +void foo() +{ + if (a) + { + bar(); + } +} +</pre> +</li> +</ul></body></html> + + + Exclude Braces + Nie uwzględniaj nawiasów + + + Include Braces + Uwzględniaj nawiasy + + + GNU Style + Styl GNU + + + Tab key performs auto-indent: + Klawisz "Tab" wykonuje automatyczne wcięcia: + + + Never + Nigdy + + + Always + Zawsze + + + In Leading White Space + Jeśli poprzedzony jest spacją + + + Align continuation lines: + Wyrównanie przeniesionych linii: + + + <html><head/><body> +Influences the indentation of continuation lines. + +<ul> +<li>Not At All: Do not align at all. Lines will only be indented to the current logical indentation depth. +<pre> +(tab)int i = foo(a, b +(tab)c, d); +</pre> +</li> + +<li>With Spaces: Always use spaces for alignment, regardless of the other indentation settings. +<pre> +(tab)int i = foo(a, b +(tab) c, d); +</pre> +</li> + +<li>With Regular Indent: Use tabs and/or spaces for alignment, as configured above. +<pre> +(tab)int i = foo(a, b +(tab)(tab)(tab) c, d); +</pre> +</li> +</ul></body></html> + <html><head/><body> +Wpływa na wcięcia przeniesionych linii. + +<ul> +<li>Brak: Nie wyrównuje. Linie będą wyrównane tylko do bieżącej logicznej głębokości wcięcia. +<pre> +(tab)int i = foo(a, b +(tab)c, d); +</pre> +</li> + +<li>Ze spacjami: Zawsze używa spacji do wyrównywania, bez względu na inne ustawienia wcięć. +<pre> +(tab)int i = foo(a, b +(tab) c, d); +</pre> +</li> + +<li>Z regularnymi wcięciami: Używa tabulatorów albo spacji do wyrównywania, zależnie od konfiguracji powyżej. +<pre> +(tab)int i = foo(a, b +(tab)(tab)(tab) c, d); +</pre> +</li> +</ul></body></html> + + + Not At All + Brak + + + With Spaces + Ze spacjami + + + With Regular Indent + Z regularnymi wcięciami + + + Cleanup actions which are automatically performed right before the file is saved to disk. + Akcje porządkujące, które zostaną automatycznie wykonane zanim plik zostanie zachowany na dysku. + + + Cleanups Upon Saving + Porządkowanie przed zapisem + + + Removes trailing whitespace upon saving. + Usuwa białe znaki na końcu linii przed zapisem. + + + &Clean whitespace + Wy&czyść białe znaki + + + Clean whitespace in entire document instead of only for changed parts. + Wyczyść białe znaki w całym dokumencie zamiast tylko w zmienionych częściach. + + + In entire &document + W całym &dokumencie + + + Correct leading whitespace according to tab settings. + Popraw białe znaki stosownie do ustawień tabulatorów. + + + Clean indentation + Wyczyść wcięcia + + + &Ensure newline at end of file + Wstawiaj znak now&ej linii na końcu pliku + + + File Encodings + Kodowania pliku + + + Default encoding: + Domyślne kodowanie: + + + UTF-8 BOM: + UTF-8 BOM: + + + <html><head/><body> +<p>How text editors should deal with UTF-8 Byte Order Marks. The options are:</p> +<ul ><li><i>Add If Encoding Is UTF-8:</i> always add a BOM when saving a file in UTF-8 encoding. Note that this will not work if the encoding is <i>System</i>, as Qt Creator does not know what it actually is.</li> +<li><i>Keep If Already Present: </i>save the file with a BOM if it already had one when it was loaded.</li> +<li><i>Always Delete:</i> never write an UTF-8 BOM, possibly deleting a pre-existing one.</li></ul> +<p>Note that UTF-8 BOMs are uncommon and treated incorrectly by some editors, so it usually makes little sense to add any.</p> +<p>This setting does <b>not</b> influence the use of UTF-16 and UTF-32 BOMs.</p></body></html> + <html><head/><body> +<p>Sposób traktowania znacznika kolejności bajtów (BOM) UTF-8 przez edytory tekstowe. Opcje:</p> +<ul ><li><i>Dodawaj w przypadku kodowania UTF-8:</i> zawsze dodaje BOM w trakcie zachowywania pliku kodowanego UTF-8. Uwaga: to nie zadziała jeżeli kodowanie jest <i>systemowe</i>, ponieważ Qt Creator nie posiada informacji o nim.</li> +<li><i>Zachowuj jeśli już istnieje: </i></li>zachowuje plik z BOM jeśli go posiadał podczas ładowania</li> +<li><i>Zawsze usuwaj:</i> nigdy nie zapisuje UTF-8 BOM kasując poprzednie wystąpienia.</li></ul> +<p>Uwaga: UTF-8 BOMy występują rzadko i niektóre edytory traktują je za błędne, więc zwykle nie ma sensu ich dodawać.</p> +<p>To ustawienie <b>nie</b> nie wpływa na używanie BOMów UTF-16 i UTF-32.</p></body></html> + + + Add If Encoding Is UTF-8 + Dodawaj w przypadku kodowania UTF-8 + + + Keep If Already Present + Zachowuj jeśli już istnieje + + + Always Delete + Zawsze usuwaj + + + Mouse + Mysz + + + Enable &mouse navigation + Włącz nawigację &myszy + + + Enable scroll &wheel zooming + Włącz powiększanie poprzez obracanie &kółkiem myszy (wraz z przyciśniętym CTRL) + + + + SnippetsSettingsPage + + Form + Formularz + + + Group: + Grupa: + + + Add + Dodaj + + + Remove + Usuń + + + Revert Built-in + Odwróć zmiany we wbudowanych + + + Restore Removed Built-ins + Przywróć usunięte wbudowane + + + Reset All + Przywróć wszystko + + + + ValgrindConfigWidget + + Common Valgrind Options + Główne opcje Valgrind + + + Valgrind executable: + Plik wykonywalny valgrind: + + + + AnchorButtons + + Set top anchor + Ustaw górną kotwicę + + + Setting anchors in states is not supported. + Ustawianie kotwic w stanach nie jest obsługiwane. + + + Set bottom anchor + Ustaw dolną kotwicę + + + Set left anchor + Ustaw lewą kotwicę + + + Set right anchor + Ustaw prawą kotwicę + + + Fill to parent + Wypełnij rodzica + + + Set vertical anchor + Ustaw pionową kotwicę + + + Set horizontal anchor + Ustaw poziomą kotwicę + + + + ColorGroupBox + + Color editor + Edytor kolorów + + + + ColorTypeButtons + + Solid color + Kolor jednolity + + + Gradient + Gradient + + + Transparent + Przezroczystość + + + + FlickableSpecifics + + Flickable + + + + Content Size + Rozmiar zawartości + + + Flickable Direction + + + + Bounds Behavior + + + + Interactive + Interaktywny + + + Max. Velocity + Prędkość maks. + + + Maximum Flick Velocity + + + + Deceleration + Opóźnienie + + + Flick Deceleration + + + + + QmlJS::TypeDescriptionReader + + %1: %2 + %1: %2 + + + + Utils::AbstractProcess + + Cannot retrieve debugging output. + Nie można pobrać komunikatów debuggera. + + + + Utils::EnvironmentModel + + <UNSET> + <SKASUJ> + + + Variable + Zmienna + + + Value + Wartość + + + <VARIABLE> + Name when inserting a new variable + <ZMIENNA> + + + <VALUE> + Value when inserting a new variable + <WARTOŚĆ> + + + + Utils::IpAddressLineEdit + + The IP address is not valid. + Niepoprawny adres IP. + + + + Utils::QtcProcess + + Error in command line. + Błąd w linii komend. + + + + Utils::Internal::SftpChannelPrivate + + Server could not start sftp subsystem. + Serwer nie może uruchomić podsystemu sftp. + + + Unexpected packet of type %1. + Nieoczekiwany pakiet typu %1. + + + Protocol version mismatch: Expected %1, got %2 + Niezgodność wersji protokołu: Oczekiwano %1 zamiast %2 + + + Unknown error. + Nieznany błąd. + + + Created remote directory '%1'. + Utworzono zdalny katalog "%1". + + + Remote directory '%1' already exists. + Zdalny katalog "%1" już istnieje. + + + Error creating directory '%1': %2 + Błąd tworzenia katalogu "%1": %2 + + + Could not open local file '%1': %2 + Nie można otworzyć lokalnego pliku "%1": %2 + + + Remote directory could not be opened for reading. + Nie można otworzyć zdalnego katalogu do odczytu. + + + Failed to list remote directory contents. + Nie można uzyskać zawartości zdalnego katalogu. + + + Failed to close remote directory. + Nie można zamknąć zdalnego katalogu. + + + Failed to open remote file for reading. + Nie można otworzyć zdalnego pliku do odczytu. + + + Failed retrieve information on the remote file ('stat' failed). + Nie można uzyskać informacji o zdalnym pliku ("stat" niepoprawnie zakończony). + + + Failed to read remote file. + Nie można odczytać zdalnego pliku. + + + Failed to close remote file. + Nie można zamknąć zdalnego pliku. + + + Failed to open remote file for writing. + Nie można otworzyć zdalnego pliku do zapisu. + + + Failed to write remote file. + Nie można zapisać zdalnego pliku. + + + Cannot append to remote file: Server does not support the file size attribute. + Nie można dodać zawartości do zdalnego pliku: Serwer nie obsługuje atrybutu "rozmiar pliku". + + + Server could not start session. + Serwer nie może rozpocząć sesji. + + + Error reading local file: %1 + Błąd odczytu lokalnego pliku: %1 + + + + Utils::Internal::SshChannelManager + + Invalid channel id %1 + Niepoprawny identyfikator kanału %1 + + + + Utils::Internal::SshConnectionPrivate + + SSH Protocol error: %1 + Błąd protokołu SSH: %1 + + + Botan library exception: %1 + Wyjątek biblioteki Botan: %1 + + + Invalid protocol version: Expected '2.0', got '%1'. + Niepoprawna wersja protokołu: Oczekiwano "2.0" zamiast "%1". + + + Invalid server id '%1'. + Niepoprawny identyfikator serwera "%1". + + + Unexpected packet of type %1. + Nieoczekiwany pakiet typu %1. + + + Could not read private key file: %1 + Nie można odczytać pliku z kluczem prywatnym: %1 + + + Password expired. + Hasło straciło ważność. + + + Server rejected password. + Serwer odrzucił hasło. + + + Server rejected key. + Serwer odrzucił klucz. + + + The server sent an unexpected SSH packet of type SSH_MSG_UNIMPLEMENTED. + Serwer wysłał nieoczekiwany pakiet SSH typu SSH_MSG_UNIMPLEMENTED. + + + Server closed connection: %1 + Serwer zamknął połączenie: %1 + + + Connection closed unexpectedly. + Nieoczekiwane zamknięcie połączenia. + + + Timeout waiting for reply from server. + Przekroczony czas oczekiwania na odpowiedź od serwera. + + + + Valgrind::XmlProtocol::ErrorListModel + + What + Co + + + Location + Położenie + + + File + Plik + + + Line + Linia + + + Unique + Unikalny + + + Thread ID + Identyfikator wątku + + + Kind + Rodzaj + + + Leaked Blocks + Bloki które wyciekły + + + Leaked Bytes + Bajty które wyciekły + + + Helgrind Thread ID + Identyfikator wątku Helgrind + + + + Valgrind::XmlProtocol + + Function: + Funkcja: + + + Location: + Położenie: + + + Instruction pointer: + Wskaźnik do instrukcji: + + + Object: + Obiekt: + + + + Valgrind::XmlProtocol::Parser + + Could not parse hex number from "%1" (%2) + Błąd parsowania liczby szesnastkowej z "%1" (%2) + + + trying to read element text although current position is not start of element + próba odczytu elementu tekstowego pomimo iż bieżąca pozycja nie jest na początku elementu + + + Unexpected child element while reading element text + Nieoczekiwany podelement podczas odczytu elementu tekstowego + + + Unexpected token type %1 + Nieoczekiwany typ znaku %1 + + + Could not parse protocol version from "%1" + Błąd parsowania wersji protokołu z "%1" + + + XmlProtocol version %1 not supported (supported version: 4) + Nieobsługiwana wersja XmlProtocol %1 (obsługiwana wersja: 4) + + + Valgrind tool "%1" not supported + Narzędzie Valgrind "%1" nie jest obsługiwane + + + Unknown memcheck error kind "%1" + Nieznany rodzaj błędu memcheck "%1" + + + Unknown helgrind error kind "%1" + Nieznany rodzaj błędu helgrind "%1" + + + Unknown ptrcheck error kind "%1" + Nieznany rodzaj błędu ptrcheck "%1" + + + Could not parse error kind, tool not yet set. + Nie można przeparsować rodzaju błędu, narzędzie nie zostało jeszcze ustawione. + + + Unknown state "%1" + Nieznany stan "%1" + + + Unexpected exception caught during parsing. + Złapano nieoczekiwany wyjątek podczas parsowania. + + + + Valgrind::XmlProtocol::StackModel + + Description + Opis + + + Instruction Pointer + Wskaźnik do instrukcji + + + Object + Obiekt + + + Function + Funkcja + + + Directory + Katalog + + + File + Plik + + + Line + Linia + + + + Analyzer + + Analyzer + Analizator + + + + Analyzer::Internal::AnalyzerMode + + Analyze + Analizuj + + + + Analyzer::AnalyzerManager + + Start &Analyzer + Uruchom &analizator + + + Start + Uruchom + + + Stop + Zatrzymaj + + + Debug + Debug + + + Release + Release + + + Run %1 in %2 Mode? + Uruchom %1 w trybie %2? + + + <html><head/><body><p>You are trying to run the tool '%1' on an application in %2 mode. The tool is designed to be used in %3 mode.</p><p>Do you want to continue and run it in %2 mode?</p></body></html> + <html><head/><body><p>Próba uruchomienia narzędzia "%1" na aplikacji w trybie %2. Narzędzie nie jest zaprojektowane do użycia w trybie %3.</p><p>Czy chcesz kontynuować i uruchomić je w trybie %2?</p></body></html> + + + &Do not ask again + &Nie pytaj ponownie + + + Tool '%1' started... + Narzędzie "%1" zostało uruchomione... + + + Tool '%1' finished, %n issues were found. + + Narzędzie "%1" zakończyło pracę, znaleziono %n problem. + Narzędzie "%1" zakończyło pracę, znaleziono %n problemy. + Narzędzie "%1" zakończyło pracę, znaleziono %n problemów. + + + + Tool '%1' finished, no issues were found. + Narzędzie "%1" zakończyło pracę, nie znaleziono żadnych problemów. + + + + Analyzer::Internal::AnalyzerOutputPane + + No current analysis tool + Brak narzędzia do analizy + + + Analysis + Analiza + + + + Analyzer::Internal::AnalyzerPlugin + + Analyzer + Category under which Analyzer tasks are listed in build issues view + Analizator + + + + Analyzer::Internal::AnalyzerRunConfigWidget + + Analyzer Settings + Ustawienia analizatora + + + Available settings: %1 + Dostępne ustawienia: %1 + + + + Analyzer::Internal::AnalyzerRunControlFactory + + Analyzer + Analizator + + + + Analyzer::Internal::AnalyzerRunControl + + Build Issues + Problemy podczas budowania + + + + Analyzer::AnalyzerProjectSettings + + Analyzer Settings + Ustawienia analizatora + + + + Analyzer::IAnalyzerTool + + Debug + Debug + + + Release + Release + + + + Bazaar::Internal::BazaarControl + + Bazaar + Bazaar + + + + Bazaar::Internal::BazaarEditor + + Annotate %1 + Dołącz adnotację do %1 + + + Annotate parent revision %1 + Dołącz adnotację do poprawki macierzystej "%1" + + + + Bazaar::Internal::BazaarPlugin + + Bazaar + Bazaar + + + Annotate Current File + Dołącz adnotację do bieżącego pliku + + + Annotate "%1" + Dołącz adnotację do "%1" + + + Diff Current File + Pokaż różnice w bieżącym pliku + + + Diff "%1" + Pokaż różnice w "%1" + + + ALT+Z,Alt+D + ALT+Z,Alt+D + + + Log Current File + Log bieżącego pliku + + + Log "%1" + Log "%1" + + + ALT+Z,Alt+L + ALT+Z,Alt+L + + + Status Current File + Stan bieżącego pliku + + + Status "%1" + Stan "%1" + + + ALT+Z,Alt+S + ALT+Z,Alt+S + + + Add + Dodaj + + + Add "%1" + Dodaj "%1" + + + Delete... + Usuń... + + + Delete "%1"... + Usuń "%1"... + + + Revert Current File... + Odwróć zmiany w bieżącym pliku... + + + Revert "%1"... + Odwróć zmiany w "%1"... + + + Diff + Pokaż różnice + + + Log + Log + + + Revert... + Odwróć zmiany... + + + Status + Stan + + + Pull... + Pull... + + + Push... + Push... + + + Update... + Update... + + + Commit... + Commit... + + + ALT+Z,Alt+C + ALT+Z,Alt+C + + + Create Repository... + Utwórz repozytorium... + + + Update + Uaktualnij + + + Commit + + + + Diff Selected Files + Pokaż różnice w zaznaczonych plikach + + + &Undo + &Cofnij + + + &Redo + &Przywróć + + + There are no changes to commit. + Brak zmian do wysłania. + + + Unable to generate a temporary file for the commit editor. + + + + Unable to create an editor for the commit. + + + + Unable to create a commit editor. + + + + Commit changes for "%1". + + + + Close Commit Editor + + + + Do you want to commit the changes? + + + + Message check failed. Do you want to proceed? + + + + + Bazaar::Internal::CloneWizard + + Clones a Bazaar branch and tries to load the contained project. + Klonuje repozytorium Bazaar i próbuje załadować zawarty projekt. + + + Bazaar Clone (Or Branch) + Klonowanie Bazaar (albo gałęzi) + + + + Bazaar::Internal::CloneWizardPage + + Location + Położenie + + + Specify repository URL, clone directory and path. + Podaj URL repozytorium, katalogu klonu i ścieżkę do niego. + + + Clone URL: + URL klonu: + + + + Bazaar::Internal::CommitEditor + + Commit Editor + + + + + Bazaar::Internal::OptionsPageWidget + + Bazaar Command + Komenda Bazaar + + + + CMakeProjectManager::Internal::CMakeManager + + Run CMake + Uruchom CMake + + + + Core::Internal::ExternalToolModel + + Uncategorized + Nieskategoryzowany + + + Tools that will appear directly under the External Tools menu. + Narzędzie, które pojawi się bezpośrednio w menu Narzędzia Zewnętrzne. + + + New Category + Nowa kategoria + + + New Tool + Nowe narzędzie + + + This tool prints a line of useful text + To narzędzie wyświetla linię z przydatnym tekstem + + + /c echo Useful text + /c echo Przydatny tekst + + + Useful text + Przydatny tekst + + + + Core::Internal::ExternalTool + + Could not open tool specification %1 for reading: %2 + Nie można otworzyć specyfikacji narzędzia %1 do odczytu: %2 + + + Could not write tool specification %1: %2 + Nie można zapisać specyfikacji narzędzia %1: %2 + + + + Core::Internal::ExternalToolRunner + + Could not find executable for '%1' (expanded '%2') + + Nie można znaleźć pliku wykonywalnego dla "%1" (w rozwinięciu "%2") + + + + Starting external tool '%1' %2 + Uruchamianie narzędzia zewnętrznego "%1" %2 + + + '%1' finished + Zakończono "%1" + + + + Core::ExternalToolManager + + Configure... + Konfiguruj... + + + External + Zewnętrzne + + + Error while parsing external tool %1: %2 + Błąd podczas parsowania narzędzia zewnętrznego %1: %2 + + + Error: External tool in %1 has duplicate id + Błąd: narzędzie zewnętrzne w %1 ma powielony identyfikator + + + + Core::Internal::MimeTypeMagicDialog + + Magic Header + Magiczny nagłówek + + + Error + Błąd + + + Not a valid byte pattern. + Niepoprawny wzór bajtowy. + + + + Core::Internal::MimeTypeSettingsModel + + MIME Type + Typ MIME + + + Handler + Jednostka obsługująca + + + Undefined + Niezdefiniowana + + + Invalid MIME Type + Niepoprawny typ MIME + + + Conflicting pattern(s) will be discarded. + Kolidujące wzory zostaną usunięte. + + + %n pattern(s) already in use. + + %n wzór w użyciu. + %n wzory w użyciu. + %n wzorów w użyciu. + + + + + Core::Internal::MimeTypeSettingsPrivate + + Error + Błąd + + + No MIME type selected. + Nie zaznaczono żadnego typu MIME. + + + No magic header selected. + Nie zaznaczono żadnego magicznego nagłówka. + + + MIME Types + Typy MIME + + + Changes will take effect in the next time you start Qt Creator. + Zmiany zostaną zastosowana przy ponownym uruchomieniu Qt Creatora. + + + + Core::Internal::MimeTypeSettings + + MIME Types + Typy MIME + + + + Core::Internal::ToolSettings + + External Tools + Narzędzia zewnętrzne + + + + Core::VcsManager + + Version Control + System kontroli wersji + + + Would you like to remove this file from the version control system (%1)? +Note: This might remove the local file. + Czy chcesz usunąć ten plik z systemu kontroli wersji (%1)? +Uwaga: może to spowodować usunięcie lokalnego pliku. + + + + CppEditor::Internal::CPPEditorWidget + + Sort Alphabetically + Posortuj alfabetycznie + + + This change cannot be undone. + Ta zmiana nie może być cofnięta. + + + Yes, I know what I am doing. + Tak, wiem co robię. + + + &Refactor + &Refaktoryzacja + + + Unused variable + Nieużywana zmienna + + + + CppEditor::Internal::InsertQtPropertyMembers + + Generate missing Q_PROPERTY members... + Wygeneruj brakujące składniki Q_PROPERTY... + + + + CppEditor::Internal::CppOutlineTreeView + + Expand All + Rozwiń wszystko + + + Collapse All + Zwiń wszystko + + + + CppEditor::Internal::CppSnippetProvider + + C++ + C++ + + + + Debugger::Internal::MultiBreakPointsDialog + + Edit Breakpoint Properties + Zmodyfikuj właściwości pułapki + + + + Debugger::Cdb::CdbBreakEventWidget + + C++ exception + Wyjątek C++ + + + Thread creation + Utworzenie wątku + + + Thread exit + Zakończenie wątku + + + Load Module: + Załadowanie modułu: + + + Unload Module: + Wyładowanie modułu: + + + Output: + Komunikaty: + + + + Debugger::Internal::StartRemoteCdbDialog + + <html><body><p>The remote CDB needs to load the matching Qt Creator CDB extension (<code>%1</code> or <code>%2</code>, respectively).</p><p>Copy it onto the remote machine and set the environment variable <code>%3</code> to point to its folder.</p><p>Launch the remote CDB as <code>%4 &lt;executable&gt;</code> to use TCP/IP as communication protocol.</p><p>Enter the connection parameters as:</p><pre>%5</pre></body></html> + <html><body><p>Zdalny CDB musi załadować odpowiednie rozszerzenie Qt Creator (<code>%1</code> albo odpowiednio <code>%2</code>).</p><p>Skopiuj to na maszynę zdalną i ustaw zmienną środowiskową <code>%3</code> wskazując na jego katalog.</p><p>Uruchom zdalny CDB jako <code>%4 &lt;plik wykonywalny&gt;</code> aby użyć protokołu TCP/IP.</p><p>Podaj parametry połączenia jako:</p><pre>%5</pre></body></html> + + + Start a CDB Remote Session + Uruchom zdalną sesję CDB + + + &Connection: + &Połączenie: + + + + Debugger::Internal::DebuggerMainWindowPrivate + + Memory... + Pamięć... + + + Debugger Toolbar + Pasek narzędzi debuggera + + + + Debugger::Internal::DebuggerPluginPrivate + + No function selected. + Nie wybrano żadnej funkcji. + + + Running to function "%1". + Uruchomiono do osiągnięcia funkcji "%1". + + + Process %1 + Proces %1 + + + Attaching to local process %1. + Dołączanie do procesu lokalnego %1. + + + Remote: "%1" + Zdalny: "%1" + + + Attaching to remote server %1. + Dołączanie do zdalnego serwera %1. + + + Core file "%1" + Plik zrzutu "%1" + + + Attaching to core file %1. + Dołączanie do pliku zrzutu %1. + + + Crashed process %1 + Proces %1 zakończony błędem + + + Attaching to crashed process %1 + Dołączanie do procesu zakończonego błędem %1 + + + Warning + Ostrzeżenie + + + Cannot attach to PID 0 + Nie można dołączyć do PID 0 + + + Remove Breakpoint %1 + Usuń pułapkę %1 + + + Disable Breakpoint %1 + Wyłącz pułapkę %1 + + + Enable Breakpoint %1 + Włącz pułapkę %1 + + + Edit Breakpoint %1... + Zmodyfikuj pułapkę %1... + + + Set Breakpoint at 0x%1 + Ustaw pułapkę w 0x%1 + + + Set Breakpoint at line %1 + Ustaw pułapkę w linii %1 + + + Save Debugger Log + Zachowaj log debuggera + + + User commands are not accepted in the current state. + Komendy użytkownika nie są akceptowalne w bieżącym stanie. + + + Open Qt4 Options + Otwórz ustawienia Qt4 + + + Turn off Helper Usage + Wyłącz używanie asystenta + + + Continue Anyway + Kontynuuj + + + Debugging Helper Missing + Brak asystenta debuggera + + + The debugger could not load the debugging helper library. + Debugger nie mógł załadować biblioteki asystenta debuggera. + + + The debugging helper is used to nicely format the values of some Qt and Standard Library data types. It must be compiled for each used Qt version separately. On the Qt4 options page, select a Qt installation and click Rebuild. + Asystent debuggera jest używany do ładnego formatowania niektórych typów Qt i Biblioteki Standardowej. Musi być skompilowany oddzielnie dla każdej używanej wersji Qt. Można to zrobić z poziomu strony ustawień Qt poprzez wybranie instalacji Qt i kliknięcie na "Przebuduj" w linijce "Asystent debuggera". + + + Starting debugger '%1' for ABI '%2'... + Uruchamianie debuggera "%1" dla ABI "%2"... + + + Debugger finished. + Debugger zakończył pracę. + + + QML Script Console + Konsola skryptów QML + + + Continue + Kontynuuj + + + Exit Debugger + Zakończ debugger + + + Interrupt + Przerwij + + + Debugger is Busy + Debugger jest zajęty + + + Abort Debugging + Przerwij debugowanie + + + Aborts debugging and resets the debugger to the initial state. + Przerywa debugowanie i przywraca debugger do stanu początkowego. + + + Step Over + Przeskocz + + + Step Into + Wskocz do wnętrza + + + Step Out + Wyskocz na zewnątrz + + + Run to Line + Uruchom do linii + + + Run to Selected Function + Uruchom do zaznaczonej funkcji + + + Immediately Return From Inner Function + Powróć natychmiast z wewnętrznej funkcji + + + Jump to Line + Skocz do linii + + + Toggle Breakpoint + Przełącz ustawienie pułapki + + + Add to Watch Window + Dodaj do okna obserwowanych + + + Reverse Direction + Odwrotny kierunek + + + Move to Called Frame + Przenieś do wywołanej ramki + + + Move to Calling Frame + Przenieś do wołającej ramki + + + Error evaluating command line arguments: %1 + Błąd podczas przetwarzania argumentów komendy: %1 + + + Start Debugging + Rozpocznij debugowanie + + + Start and Debug External Application... + Uruchom i zdebuguj zewnętrzną aplikację... + + + Start and Debug External Application with External Engine... + Uruchom i zdebuguj zewnętrzną aplikację przy pomocy zewnętrznego silnika... + + + Attach to Running External Application... + Dołącz do uruchomionej zewnętrznej aplikacji... + + + Attach to Core... + Dołącz do zrzutu... + + + Start and Attach to Remote Application... + Uruchom i dołącz do zdalnej aplikacji... + + + Attach to Remote CDB Session... + Dołącz do zdalnej sesji CDB... + + + Detach Debugger + Odłącz debugger + + + Interrupt Debugger + Przerwij debugger + + + Stop Debugger + Zatrzymaj debugger + + + Reset Debugger + Zresetuj debugger + + + Threads: + Wątki: + + + Symbol + Symbol + + + Address + Adres + + + Code + Kod + + + Section + Sekcja + + + Name + Nazwa + + + Symbols in "%1" + Symbole w "%1" + + + + DebuggerRunControl + + Debug + Debug + + + Debugger + Debugger + + + Unable to create a debugger engine of the type '%1' + Nie można utworzyć silnika debuggera typu "%1" + + + + Debugger::Internal::DebuggerSourcePathMappingWidget + + <new source> + <nowe źródło> + + + <new target> + <nowy produkt docelowy> + + + Source path + Ścieżka do źródła + + + Target path + Ścieżka do produktu docelowego + + + Add + Dodaj + + + Add Qt sources... + Dodaj źródła Qt... + + + Remove + Usuń + + + Source Paths Mapping + Mapowanie ścieżek źródłowych + + + <html><head/><body><p>Mappings of source file folders to be used in the debugger can be entered here.</p><p>This is useful when using a copy of the source tree at a location different from the one at which the modules where built, for example, while doing remote debugging.</body></html> + <html><head/><body><p>Tu można podać mapowanie katalogów plików źródłowych użytych w debuggerze.</p><p>To jest przydatne podczas używania kopii drzewa źródeł z położenia innego niż to w którym moduły były zbudowane, np. podczas zdalnego debugowania.</body></html> + + + Add a mapping for Qt's source folders when using an unpatched version of Qt. + Dodaj mapowanie dla katalogów źródeł Qt podczas używania niezałatanej wersji Qt. + + + The source path contained in the executable's debug information as reported by the debugger + Ścieżka źródłowa zawarta w informacji debugowej pliku wykonywalnego zgłoszona przez debugger + + + &Source path: + Ś&cieżka do źródła: + + + The actual location of the source tree on the local machine + Bieżące położenie drzewa źródeł na lokalnej maszynie + + + &Target path: + Ścieżka do produktu &docelowego: + + + Qt Sources + Źródła Qt + + + + Debugger::Internal::DebuggerToolChainComboBox + + %1 (%2) + %1 (%2) + + + <html><head/><body><table><tr><td>ABI:</td><td><i>%1</i></td></tr><tr><td>Debugger:</td><td>%2</td></tr> + <html><head/><body><table><tr><td>ABI:</td><td><i>%1</i></td></tr><tr><td>Debugger:</td><td>%2</td></tr> + + + + Debugger::Internal::AbstractDebuggerToolTipWidget + + Previous + Poprzedni + + + + DebuggerEngine + + Debugging complex command lines is currently not supported under Windows + Debugowanie złożonych linii komend nie jest obecnie obsługiwane pod Windows + + + + Debugger::Internal::CodaGdbAdapter + + Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. + Proces uruchomiony, PID: 0x%1, identyfikator wątku: 0x%2, segment kodu: 0x%3, segment danych: 0x%4. + + + Connecting to CODA server adapter failed: + + Nie można połączyć się z serwerem CODA: + + + + + Debugger::Internal::IPCEngineHost + + Fatal engine shutdown. Incompatible binary or IPC error. + Silnik zakończył pracę fatalnym błędem. Niekompatybilny plik binarny lub błąd IPC. + + + + Debugger::Internal::LldbEngineHost + + qtcreator-lldb failed to start: %1 + Nie można uruchomić qtcreator-lldb: %1 + + + Fatal engine shutdown. Consult debugger log for details. + Silnik zakończył pracę fatalnym błędem. Sprawdź szczegóły w logu debuggera. + + + SSH connection error: %1 + Błąd połączenia SSH: %1 + + + + Debugger::Internal::LldbOptionsPage + + LLDB + LLDB + + + + Debugger::Internal::MemoryAgent + + Memory $ + Pamięć $ + + + No memory viewer available + Brak dostępnej przeglądarki pamięci + + + The memory contents cannot be shown as no viewer plugin for binary data has been loaded. + Zawartość pamięci nie może zostać pokazana ponieważ nie załadowano żadnej wtyczki z przeglądarką dla binarnego edytora. + + + + Debugger::Internal::QmlCppEngine + + The slave debugging engine required for combined QML/C++-Debugging could not be created: %1 + Nie można utorzyć wymaganego podrzędnego silnika debugującego dla wspólnego debugowania QML/C++: %1 + + + %1 debugger activated + Uaktywniono debugger %1 + + + + Debugger::Internal::QmlEngine + + QML Debugger connected. + Podłączono debugger QML. + + + Qt Creator + Qt Creator + + + Could not connect to the in-process QML debugger. +Do you want to retry? + Nie można podłączyć się do wewnątrzprocesowego debuggera QML. +Ponowić próbę? + + + QML Debugger: Remote host closed connection. + Debugger QML: Zdalny host zamknął połączenie. + + + QML Debugger: Could not connect to service '%1'. + Debugger QML: Nie można nawiązać połączenia z serwisem "%1". + + + The port seems to be in use. + Error message shown after 'Could not connect ... debugger:" + Port prawdopodobnie zajęty. + + + The application is not set up for QML/JS debugging. + Error message shown after 'Could not connect ... debugger:" + Aplikacja nie jest przygotowana do debugowania QML/JS. + + + Could not connect to the in-process QML debugger: +%1 + %1 is detailed error message + Nie można podłączyć się do wewnątrzprocesowego debuggera QML: +%1 + + + Starting %1 %2 + Uruchamianie %1 %2 + + + Failed to start application + Nie można uruchomić aplikacji + + + Application startup failed: %1 + Błąd uruchamiania aplikacji: %1 + + + Stopped. + Zatrzymano. + + + <p>An uncaught exception occurred:</p><p>%1</p> + <p>Wystąpił nieobsłużony wyjątek:</p><p>%1</p> + + + <p>An uncaught exception occurred in <i>%1</i>:</p><p>%2</p> + <p>Wystąpił nieobsłużony wyjątek w <i>%1</i>:</p><p>%2</p> + + + Uncaught Exception + Nieobsłużony wyjątek + + + QML Debugger disconnected. + Debugger QML rozłączony. + + + + StackHandler + + Address: + Adres: + + + Function: + Funkcja: + + + File: + Plik: + + + Line: + Linia: + + + From: + Od: + + + To: + Do: + + + + Git::Internal::BaseGitDiffArgumentsWidget + + Use the patience algorithm for calculating the diff + + + + Patience + Patience + + + Ignore whitespace only changes + Ignoruj zmiany w białych znakach + + + Ignore Whitespace + Ignoruj białe znaki + + + + Git::Internal::GitShowArgumentsWidget + + Select the pretty printing format + Wybierz format ładnego drukowania + + + oneline + jedna linia + + + short + krótki + + + medium + średni + + + full + pełny + + + fuller + pełniejszy + + + email + email + + + raw + surowy + + + + Git::Internal::GitBlameArgumentsWidget + + Do not show the date a change was made in the output + Nie pokazuj w komunikatach daty zmiany + + + Omit Date + Pomiń datę + + + Ignore whitespace only changes + Ignoruj zmiany w białych znakach + + + Ignore Whitespace + Ignoruj białe znaki + + + + GLSLEditor::Internal::FunctionArgumentWidget + + %1 of %2 + %1 z %2 + + + + GLSLEditor + + GLSL + GLSL + + + + GLSLEditor::Internal::GLSLEditorPlugin + + GLSL + GLSL sub-menu in the Tools menu + GLSL + + + Creates a fragment shader in the OpenGL/ES 2.0 Shading Language (GLSL/ES). Fragment shaders generate the final pixel colors for triangles, points and lines rendered with OpenGL. + Tworzy fragment shader OpenGL/ES 2.0 w języku GLSL/ES. Fragment shadery generują końcowe kolory pikseli trójkątów, punktów i linii renderowanych przez OpenGL. + + + Fragment Shader (OpenGL/ES 2.0) + Fragment Shader (OpenGL/ES 2.0) + + + Creates a vertex shader in the OpenGL/ES 2.0 Shading Language (GLSL/ES). Vertex shaders transform the positions, normals and texture co-ordinates of triangles, points and lines rendered with OpenGL. + Tworzy vertex shader OpenGL/ES 2.0 w języku GLSL/ES. Vertex shadery zmieniają transformacje, normalne i współrzędne tekstur trójkątów, punktów i linii renderowanych przez OpenGL. + + + Vertex Shader (OpenGL/ES 2.0) + Vertex Shader (OpenGL/ES 2.0) + + + Creates a fragment shader in the Desktop OpenGL Shading Language (GLSL). Fragment shaders generate the final pixel colors for triangles, points and lines rendered with OpenGL. + Tworzy fragment shader Desktop OpenGL w języku GLSL. Fragment shadery generują końcowe kolory pikseli trójkątów, punktów i linii renderowanych przez OpenGL. + + + Fragment Shader (Desktop OpenGL) + Fragment Shader (Desktop OpenGL) + + + Creates a vertex shader in the Desktop OpenGL Shading Language (GLSL). Vertex shaders transform the positions, normals and texture co-ordinates of triangles, points and lines rendered with OpenGL. + Tworzy vertex shader Desktop OpenGL w języku GLSL. Vertex shadery zmieniają transformacje, normalne i współrzędne tekstur trójkątów, punktów i linii renderowanych przez OpenGL. + + + Vertex Shader (Desktop OpenGL) + Vertex Shader (Desktop OpenGL) + + + + GLSLEditor::GLSLFileWizard + + New %1 + Nowy %1 + + + + Macros::Internal::MacroLocatorFilter + + Macros + Makra + + + + Macros::MacroManager + + Playing Macro + Odtwarzanie makro + + + An error occured while replaying the macro, execution stopped. + Wystąpił błąd podczas ponownego odtwarzania makra, zatrzymano wykonywanie. + + + Macro mode. Type "%1" to stop recording and "%2" to play it + Tryb makro. Wpisz "%1" aby zatrzymać nagrywanie albo "%2" aby je odtworzyć + + + Stop Recording Macro + Zatrzymaj nagrywanie makro + + + + Macros::Internal::MacrosPlugin + + &Macros + &Makra + + + Record Macro + Nagraj makro + + + Ctrl+( + Ctrl+( + + + Alt+( + Alt+( + + + Stop Recording Macro + Zatrzymaj nagrywanie makro + + + Ctrl+) + Ctrl+) + + + Alt+) + Alt+) + + + Play Last Macro + Odtwórz ostatnie makro + + + Alt+R + Alt+R + + + Save Last Macro + Zachowaj ostatnie makro + + + + Analyzer::Internal::MemcheckConfigWidget + + Valgrind Suppression File (*.supp);;All Files (*) + Plik tłumienia valgrind'a (*.supp);;Wszystkie pliki (*) + + + + Analyzer::Internal::MemcheckEngine + + Analyzing Memory + Analiza pamięci + + + Analyzing memory of %1 + Analiza pamięci "%1" + + + + Analyzer::Internal + + %1 in %2 + %1 w %2 + + + in %1 + w %1 + + + + Analyzer::Internal::MemcheckErrorView + + Copy Selection + Skopiuj selekcję + + + Suppress Error + Stłum błąd + + + + Analyzer::Internal::AbstractMemcheckSettings + + Memory Analysis + Analiza pamięci + + + + Analyzer::Internal::MemcheckTool + + External Errors + Błędy zewnętrzne + + + Suppressions + Tłumienia + + + Definite Memory Leaks + Wyraźne wycieki pamięci + + + Possible Memory Leaks + Prawdopodobne wycieki pamięci + + + Use of Uninitialized Memory + Użycie niezainicjalizowanej pamięci + + + Invalid Frees + Niepoprawne zwolnienia pamięci + + + Show issues originating outside currently opened projects. + Pokaż problemy mające źródło na zewnątrz otwartych projektów. + + + These suppression files were used in the last memory analyzer run. + Te pliki tłumienia były użyte podczas ostatniego uruchomienia analizatora pamięci. + + + Analyze Memory + Analiza pamięci + + + Error Filter + Filtr błędów + + + Internal Error + Błąd wewnętrzny + + + Error occurred parsing valgrind output: %1 + Błąd podczas parsowania komunikatów valgrind'a: %1 + + + + Analyzer::Internal::SuppressionDialog + + Select Suppression File + Wybierz plik tłumienia + + + Save Suppression + Zachowaj tłumienie + + + + ProjectExplorer::Internal::GccToolChainFactory + + GCC + GCC + + + + ProjectExplorer::Internal::GccToolChainConfigWidget + + &Compiler path: + Ścieżka do &kompilatora: + + + &ABI: + &ABI: + + + + ProjectExplorer::Internal::MingwToolChainFactory + + MinGW + MinGW + + + + ProjectExplorer::Internal::LinuxIccToolChainFactory + + Linux ICC + Linux ICC + + + + ProjectExplorer::Internal::MsvcToolChainFactory + + MSVC + MSVC + + + + ProjectExplorer::Internal::MsvcDebuggerConfigLabel + + <html><body><p>Specify the path to the <a href="%1">Windows Console Debugger executable</a> (%2) here.</p></body></html> + Label text for path configuration. %2 is "x-bit version". + <html><body><p>Podaj ścieżkę do <a href="%1">pliku wykonywalnego Windows Console Debugger</a> (%2)</p></body></html> + + + 64-bit version + Wersja 64 bitowa + + + 32-bit version + Wersja 32 bitowa + + + + ProjectExplorer::Internal::MsvcToolChainConfigWidget + + The CDB debugger could not be found in %1 + Nie można odnaleźć debuggera CDB w %1 + + + + ProjectExplorer::ProjectsMode + + Projects + Projekty + + + + ProjectExplorer::ToolChain + + Clone of %1 + Klon %1 + + + + ProjectExplorer::ToolChainConfigWidget + + &Debugger: + &Debugger: + + + Autodetect + Wykryj automatycznie + + + + ProjectExplorer::Internal::ToolChainModel + + Auto-detected + Automatycznie wykryte + + + Manual + Ustawione ręcznie + + + <nobr><b>ABI:</b> %1 + <nobr><b>ABI:</b> %1 + + + not up-to-date + nieaktualne + + + Name + Nazwa + + + Type + Typ + + + + ProjectExplorer::Internal::ToolChainOptionsPage + + Tool Chains + Zestawy narzędzi + + + + QmlDesigner::ItemLibraryWidget + + Library + Title of library view + Biblioteka + + + Items + Title of library items view + Elementy + + + Resources + Title of library resources view + Zasoby + + + <Filter> + Library search input hint text + <Filtr> + + + + QmlDesigner::StatesEditorModel + + base state + Implicit default state + Stan bazowy + + + Invalid state name + Niepoprawna nazwa stanu + + + The empty string as a name is reserved for the base state. + Pusta nazwa jest zarezerwowana dla stanu bazowego. + + + Name already used in another state + Nazwa jest już użyta w innym stanie + + + + QmlDesigner::StatesEditorView + + State%1 + Default name for newly created states + Stan%1 + + + base state + Stan bazowy + + + + JsFileOptionsPage + + Options + Opcje + + + Stateless library + Biblioteka bezstanowa + + + Usually each QML component instance has a unique copy of +imported JavaScript libraries. Indicating that a library is +stateless means that a single instance will be shared among +all components. Stateless libraries will not be able to access +QML component instance objects and properties directly. + Zwykle każda instancja komponentu QML posiada unikalną kopię +zaimportowanych bibliotek JavaScript. Biblioteka bezstanowa oznacza, że +pojedyncza instancja będzie dzielona pomiędzy komponentami. Biblioteki +bezstanowe nie będą miały bezpośredniego dostępu do obiektów i właściwości +komponentów QML. + + + + QmlJSEditor::JsFileWizard + + New %1 + Nowy %1 + + + + QmlJSEditor::QmlJSTextEditorWidget + + Show Qt Quick ToolBar + Pokaż pasek narzędzi Qt Quick + + + Rename... + Zmień nazwę... + + + New id: + Nowy identyfikator: + + + Unused variable + Nieużywana zmienna + + + Refactoring + Refaktoryzacja + + + Rename id '%1'... + Zmień nazwę identyfikatora "%1"... + + + + QmlJSEditor::Internal::QmlJSOutlineTreeView + + Expand All + Rozwiń wszystko + + + Collapse All + Zwiń wszystko + + + + QmlJSEditor::Internal::QmlJSSnippetProvider + + QML + QML + + + + QmlJSInspector::Internal::QmlInspectorToolBar + + Apply Changes on Save + Zastosuj zmiany przy zachowywaniu + + + Show application on top + Pokazuj aplikację na wierzchu + + + Observer Mode + Tryb Observer + + + Play/Pause Animations + Odtwórz / zatrzymaj animacje + + + Select + Wybierz + + + Zoom + Powiększ + + + Color Picker + Selektor kolorów + + + 1x + 1x + + + 0.5x + 0.5x + + + 0.25x + 0.25x + + + 0.125x + 0.125x + + + 0.1x + 0.1x + + + + QmlJSInspector::Internal::QmlJSPropertyInspector + + Enter expression + Wprowadź wyrażenie + + + Choose color + Wybierz kolor + + + JavaScript expression for %1 + Wyrażenie JavaScript dla %1 + + + Color selection for %1 + Selekcja kolorów dla %1 + + + + QmlJSTools::Internal::FunctionFilter + + Functions + Funkcje + + + + QmlJSTools::Internal::ModelManager + + Indexing + Indeksowanie + + + + QmlJSTools::Internal::PluginDumper + + Type dump of QML plugin in %1 failed. +Errors: +%2 + + Nie można zrzucić typów wtyczek QML w %1. +Błędy: +%2 + + + + Type dump of C++ plugin failed. +First 10 lines or errors: + +%1 +Check 'General Messages' output pane for details. + Nie można zrzucić typów wtyczek C++. +Pierwsze 10 linii błędów: + +%1 +Sprawdź szczegóły w panelu "Komunikaty ogólne". + + + Type dump of C++ plugin failed. Parse error: +'%1' + Nie można zrzucić typów wtyczek C++. Błąd parsowania: +"%1" + + + Could not open file '%1' for reading. + Nie można otworzyć pliku %1 do odczytu. + + + Failed to parse '%1'. +Error: %2 + Nie można sparsować "%1". +Błąd: %2 + + + Could not locate the helper application for dumping type information from C++ plugins. +Please build the debugging helpers on the Qt version options page. + Nie można ustalić położenia aplikacji pomocniczej zrzucającej informacje o typach z wtyczek C++. +Przebuduj asystentów debuggera na stronie z opcjami wersji Qt. + + + + QmlProjectManager::Internal::QmlProjectRunConfigurationWidget + + Manage Qt versions + Zarządzanie wersjami Qt + + + Qt version: + Wersja Qt: + + + Arguments: + Argumenty: + + + Main QML file: + Główny plik QML: + + + Debugger: + Debugger: + + + Run Environment + Środowisko uruchamiania + + + System Environment + Środowisko systemowe + + + Invalid Qt version + Niepoprawna wersja Qt + + + + Qt4ProjectManager::QmlDebuggingLibrary + + QML Debugging + Debugowanie QML + + + The target directory %1 could not be created. + Nie można utworzyć docelowego katalogu %1. + + + QML Debugging library could not be built in any of the directories: +- %1 + +Reason: %2 + Nie można zbudować biblioteki debugującej w żadnym z katalogów: +- %1 + +Powód: %2 + + + + Qt4ProjectManager::Qt4Target + + Desktop + Qt4 Desktop target display name + Desktop + + + Qt Simulator + Qt4 Simulator target display name + Symulator Qt + + + Maemo5 + Qt4 Maemo5 target display name + Maemo5 + + + Harmattan + Qt4 Harmattan target display name + Harmattan + + + Meego + Qt4 Meego target display name + Meego + + + Symbian Emulator + Qt4 Symbian Emulator target display name + Emulator Symbiana + + + Symbian Device + Qt4 Symbian Device target display name + Urządzenie Symbian + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigurations + + (default for %1) + (domyślna dla %1) + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigurationsSettingsWidget + + Physical Device + Urządzenie fizyczne + + + Emulator (Qemu) + Emulator (Qemu) + + + Choose Public Key File + Wybierz plik z kluczem publicznym + + + Public Key Files(*.pub);;All Files (*) + Pliki z kluczami publicznymi (*.pub);;Wszystkie pliki (*) + + + Stop Deploying + Zatrzymaj instalowanie + + + Deployment Failed + Błąd instalacji + + + Deployment Succeeded + Instalacja zakończona pomyślnie + + + Key was successfully deployed. + Klucz został pomyślnie zainstalowany. + + + Deploy Public Key ... + Instaluj klucz publiczny... + + + You will need at least one port. + Wymagany jest przynajmniej jeden port. + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigWizardStartPage + + General Information + Informacje ogólne + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigWizardPreviousKeySetupCheckPage + + Device Status Check + Kontrola stanu urządzenia + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigWizardReuseKeysCheckPage + + Existing Keys Check + Kontrola istniejących kluczy + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigWizardKeyCreationPage + + Key Creation + Tworzenie klucza + + + Cannot Create Keys + Nie można utworzyć kluczy + + + The path you have entered is not a directory. + Podana ścieżka nie jest katalogiem. + + + The directory you have entered does not exist and cannot be created. + Podany katalog nie istnieje i nie może zostać utworzony. + + + Creating keys ... + Tworzenie kluczy... + + + Key creation failed: %1 + Błąd tworzenia kluczy: %1 + + + Done. + Zrobione. + + + Could Not Save File + Nie można zachować pliku + + + Failed to save key file %1: %2 + Nie można zachować pliku klucza %1: %2 + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigWizardKeyDeploymentPage + + Key Deployment + Instalacja klucza + + + Deploying... + Instalowanie... + + + Key Deployment Failure + Błąd instalacji klucza + + + Key Deployment Success + Instalacja klucza zakończona pomyślnie + + + The key was successfully deployed. You may now close the "%1" application and continue. + Klucz został pomyślnie zainstalowany. Możesz teraz zamknąć aplikację "%1" i kontynuować. + + + Done. + Zrobione. + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigWizardFinalPage + + Setup Finished + Konfiguracja zakończona + + + The new device configuration will now be created and a test procedure will be run to check whether Qt Creator can connect to the device and to provide some information about its features. + Zostanie teraz utworzona nowa konfiguracja urządzenia oraz uruchomiona procedura testowa sprawdzająca połączenie Qt Creatora z urządzeniem i dostarczająca informacji o jego cechach. + + + The new device configuration will now be created. + Zostanie utworzona nowa konfiguracja urządzenia. + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigWizard + + New Device Configuration Setup + Nowa konfiguracja urządzenia + + + + Qt4ProjectManager::Internal::MaemoGlobal + + Could not connect to host: %1 + Nie można połączyć się z hostem: %1 + + + +Did you start Qemu? + +Czy Qemu został uruchomiony? + + + +Is the device connected and set up for network access? + +Czy urządzenie jest podłączone i czy zostało skonfigurowane połączenie sieciowe? + + + (No device) + (Brak urządzenia) + + + SDK Connectivity + Łączność SDK + + + Mad Developer + Mad Developer + + + Failed to remove directory '%1'. + Nie można usunąć katalogu "%1". + + + Failed to remove file '%1'. + Nie można usunąć pliku "%1". + + + + Qt4ProjectManager::Internal::MaemoKeyDeployer + + Could not read public key file '%1'. + Nie można odczytać pliku z publicznym kluczem "%1". + + + Connection failed: %1 + Błąd połączenia: %1 + + + Key deployment failed: %1. + Błąd instalacji klucza: %1. + + + + Qt4ProjectManager::Internal::MaemoPerTargetDeviceConfigurationListModel + + (default) + (domyślna) + + + + Qt4ProjectManager::Internal::MaemoPublishedProjectModel + + Include in package + Dołącz do pakietu + + + Include + Dołącz + + + Do not include + Nie dołączaj + + + + Qt4ProjectManager::Internal::MaemoPublisherFremantleFree + + Canceled. + Anulowano. + + + Publishing canceled by user. + Publikowanie anulowane przez użytkownika. + + + The project is missing some information important to publishing: + Brak ważnych informacji w projekcie potrzebnych do opublikowania: + + + Publishing failed: Missing project information. + Błąd publikowania: Brak informacji w projekcie. + + + Removing left-over temporary directory ... + Usuwanie pozostałości po katalogu tymczasowym... + + + Error removing temporary directory: %1 + Błąd usuwania katalogu tymczasowego: %1 + + + Publishing failed: Could not create source package. + Błąd publikowania: nie można utworzyć pakietu źródłowego. + + + Setting up temporary directory ... + Konfigurowanie katalogu tymczasowego... + + + Error: Could not create temporary directory. + Błąd: Nie można utworzyć katalogu tymczasowego. + + + Error: Could not copy project directory + Błąd: Nie można skopiować katalogu projektu + + + Error: Could not fix newlines + Błąd: Nie można naprawić znaków końca linii + + + Publishing failed: Could not create package. + Błąd publikowania: nie można utworzyć pakietu. + + + Cleaning up temporary directory ... + Czyszczenie katalogu tymczasowego... + + + Failed to create directory '%1'. + Nie można utworzyć katalogu "%1". + + + Could not copy file '%1' to '%2'. + Nie można skopiować pliku "%1" do "%2". + + + Error: Cannot open file '%1'. + Błąd: nie można otworzyć pliku "%1". + + + Error: Failed to start dpkg-buildpackage. + Błąd: nie można uruchomić dpkg-buildpackage. + + + Error: dpkg-buildpackage did not succeed. + Błąd: dpkg-buildpackage zakończony błędem. + + + Package creation failed. + Błąd tworzenia pakietu. + + + Done. + Zrobione. + + + Packaging finished successfully. The following files were created: + + Tworzenie pakietu zakończone pomyślnie. Zostały utworzone następujące pliki: + + + + Building source package... + Budowanie pakietu źródłowego... + + + Starting scp ... + Uruchamianie scp... + + + SSH error: %1 + Błąd SSH: %1 + + + Upload failed. + Błąd przesyłania. + + + Error uploading file: %1 + Błąd przesyłania pliku: %1 + + + Error uploading file. + Błąd przesyłania pliku. + + + All files uploaded. + Przesłano wszystkie pliki. + + + Upload succeeded. You should shortly receive an email informing you about the outcome of the build process. + Przesyłanie zakończone pomyślnie. Wkrótce powinien zostać dostarczony email informujący o rezultacie procesu budowania. + + + Uploading file %1 ... + Przesyłanie pliku %1... + + + Cannot open file for reading: %1 + Nie można otworzyć pliku do odczytu: %1 + + + Cannot read file: %1 + Nie można odczytać pliku: %1 + + + Failed to adapt desktop file '%1'. + Nie można zaadaptować pliku desktopowego "%1". + + + The package description is empty. You must set one in Projects -> Run -> Create Package -> Details. + Pusty opis pakietu. Należy go ustawić w Projekty -> Uruchamianie -> Utwórz pakiet -> Szczegóły. + + + The package description is '%1', which is probably not what you want. Please change it in Projects -> Run -> Create Package -> Details. + Prawdopodobnie niepoprawny opis pakietu ("%1"). Można go zmienić w Projekty -> Uruchamianie -> Utwórz pakiet -> Szczegóły. + + + You have not set an icon for the package manager. The icon must be set in Projects -> Run -> Create Package -> Details. + Nie ustawiono ikony dla menedżera pakietu. Należy ją ustawić w Projekty -> Uruchamianie -> Utwórz pakiet -> Szczegóły. + + + + Qt4ProjectManager::Internal::MaemoPublishingUploadSettingsPageFremantleFree + + Publishing to Fremantle's "Extras-devel/free" Repository + Publikowanie do repozytorium Fremantle'a "Extras-devel/free" + + + Upload options + Ustawienia przesyłania + + + Choose a private key file + Wybierz plik z kluczem prywatnym + + + + Qt4ProjectManager::Internal::MaemoPublishingWizardFactoryFremantleFree + + Publish for "Fremantle Extras-devel free" repository + Publikowanie do repozytorium "Fremantle Extras-devel free" + + + This wizard will create a source archive and optionally upload it to a build server, where the project will be compiled and packaged and then moved to the "Extras-devel free" repository, from where users can install it onto their N900 devices. For the upload functionality, an account at garage.maemo.org is required. + Ten kreator utworzy archiwum źródłowe i opcjonalnie prześle je do serwera budowy. Zostanie on tam skompilowany, zapakowany i przeniesiony do repozytorium "Extras-devel free". Użytkownicy będą mogli wówczas zainstalować go na swoich urządzeniach N900. W celu wysłania na serwer należy posiadać konto na garage.maemo.org. + + + + Qt4ProjectManager::Internal::MaemoPublishingWizardFremantleFree + + Publishing to Fremantle's "Extras-devel free" Repository + Publikowanie do repozytorium Fremantle'a "Extras-devel free" + + + Build Settings + Ustawienia budowania + + + Upload Settings + Ustawienia przesyłania + + + Result + Rezultat + + + + Qt4ProjectManager::Internal::MaemoRemoteProcessesDialog + + Remote Error + Zdalny błąd + + + + Qt4ProjectManager::Internal::MaemoRemoteProcessList + + Connection failure: %1 + Błąd połączenia: %1 + + + Error: Remote process failed to start: %1 + Błąd: nie można uruchomić zdalnego procesu: %1 + + + Error: Remote process crashed: %1 + Błąd: zdalny proces zakończony błędem: %1 + + + Remote process failed. + Zdalny proces zakończony błędem. + + + +Remote stderr was: %1 + +Zawartość zdalnego stderr: %1 + + + PID + PID + + + Command Line + Linia komend + + + + Qt4ProjectManager::Internal::MaemoDeviceConfigurationsSettingsPage + + Maemo Device Configurations + Konfiguracje urządzenia Maemo + + + + Qt4ProjectManager::Internal::MaemoQemuSettingsPage + + Qemu Settings + Ustawienia Qemu + + + + Qt4ProjectManager::Internal::MaemoQemuCrashDialog + + Qemu error + Błąd Qemu + + + Qemu crashed. + Qemu zakończone błędem. + + + Click here to change the OpenGL mode. + Kliknij tutaj aby zmienić tryb OpenGL. + + + You have configured Qemu to use OpenGL hardware acceleration, which might not be supported by your system. You could try using software rendering instead. + Skonfigurowano Qemu aby używało sprzętowej akceleracji OpenGL, co może nie być obsługiwane przez system. Zamiast tego można użyć renderowania software'owego. + + + Qemu is currently configured to auto-detect the OpenGL mode, which is known to not work in some cases. You might want to use software rendering instead. + Skonfigurowano Qemu aby automatycznie wykrywało OpenGL, co może nie może nie działać poprawnie w pewnych przypadkach. Zamiast tego można użyć renderowania software'owego. + + + + Qt4ProjectManager::Internal::MaemoToolChainFactory + + Maemo GCC + Maemo GCC + + + Maemo GCC for %1 + Maemo GCC dla %1 + + + %1 GCC (%2) + %1 GCC (%2) + + + + Qt4ProjectManager::Internal::MaemoToolChainConfigWidget + + <html><head/><body><table><tr><td>Path to MADDE:</td><td>%1</td></tr><tr><td>Path to MADDE target:</td><td>%2</td></tr><tr><td>Debugger:</td/><td>%3</td></tr></body></html> + <html><head/><body><table><tr><td>Ścieżka do MADDE:</td><td>%1</td></tr><tr><td>Ścieżka do produktu docelowego MADDE:</td><td>%2</td></tr><tr><td>Debugger:</td/><td>%3</td></tr></body></html> + + + + Qt4ProjectManager::Internal::MaemoUsedPortsGatherer + + Connection error: %1 + Błąd połączenia: %1 + + + Could not start remote process: %1 + Nie można uruchomić zdalnego procesu %1 + + + Remote process crashed: %1 + Zdalny proces zakończony błędem: %1 + + + Remote process failed: %1 + Zdalny proces zakończony błędem: %1 + + + +Remote error output was: %1 + +Zawartość zdalnego wyjścia z błędami: %1 + + + + Qt4ProjectManager::Internal::Qt4MaemoDeployConfigurationFactory + + Deploy to Maemo5 device + Zainstaluj na urządzeniu Maemo5 + + + Deploy to Harmattan device + Zainstaluj na urządzeniu Harmattan + + + Deploy to Meego device + Zainstaluj na urządzeniu Meego + + + + Qt4ProjectManager::Internal::AbstractQt4MaemoTarget + + File '%1' does not exist + Plik "%1" nie istnieje + + + Cannot open file '%1': %2 + Nie można otworzyć pliku "%1": %2 + + + Qt Creator + Qt Creator + + + Do you want to remove the packaging file(s) associated with the target '%1'? + Czy chcesz usunąć pliki pakietów powiązanych z produktem docelowym "%1"? + + + Error creating Maemo packaging directory '%1'. + Błąd tworzenia katalogu pakietu Maemo "%1". + + + Add Packaging Files to Project + Dodaj pliki pakietowe do projektu + + + Qt Creator has set up the following files to enable packaging: + %1 +Do you want to add them to the project? + Qt Creator skonfigurował następujące pliki aby umożliwić tworzenie pakietów: + %1 +Czy chcesz dodać je do projektu? + + + Error creating Maemo templates + Błąd tworzenia szablonów Maemo + + + + Qt4ProjectManager::Internal::AbstractDebBasedQt4MaemoTarget + + Debian changelog file '%1' has unexpected format. + Nieoczekiwany format pliku z logiem zmian Debiana "%1". + + + Error writing Debian changelog file '%1': %2 + Błąd zapisu pliku z logiem zmian Debiana "%1": %2 + + + Invalid icon data in Debian control file. + Niepoprawne dane ikony w pliku kontrolnym Debiana. + + + Could not read image file '%1'. + Nie można odczytać pliku obrazu "%1". + + + Could not export image file '%1'. + Nie można wyeksportować pliku obrazu "%1". + + + Error writing file '%1': %2 + Błąd zapisywania do pliku "%1": %2 + + + Unable to create Debian templates: dh_make failed (%1) + Nie można utworzyć szablonu dla Debiana: błąd dh_make (%1) + + + Unable to create debian templates: dh_make failed (%1) + Nie można utworzyć szablonu dla debiana: błąd dh_make (%1) + + + Unable to move new debian directory to '%1'. + Nie można przenieść nowych katalogów Debiana do "%1". + + + Packaging Error: Cannot open file '%1'. + Błąd pakowania: Nie można otworzyć pliku "%1". + + + Packaging Error: Cannot write file '%1'. + Błąd pakowania: Nie można zapisać pliku "%1". + + + + Qt4ProjectManager::Internal::CodaRunControl + + No device is connected. Please connect a device and try again. + Brak podłączonego urządzenia. Podłącz je i spróbuj ponownie. + + + Executable file: %1 + Plik wykonywalny: %1 + + + Connecting to '%1'... + Łączenie z %1... + + + Unable to create CODA connection. Please try again. + Nie można stworzyć połączenia z CODA. Spróbuj ponownie. + + + Could not open serial device: %1 + Nie można otworzyć portu szeregowego: %1 + + + Connecting to %1:%2... + Łączenie z %1:%2... + + + Error: %1 + Błąd: %1 + + + Connected. + Połączono. + + + Process has finished. + Proces się zakończył. + + + Thread has crashed: %1 + Wątek zakończony błędem: %1 + + + The process is already running on the device. Please first close it. + Ten proces jest już uruchomiony na urządzeniu. Najpierw zakończ go. + + + Launching: %1 + Uruchamianie: %1 + + + Launched. + Uruchomiono. + + + Launch failed: %1 + Nie można uruchomić: %1 + + + Waiting for CODA + Oczekiwanie na CODA + + + Qt Creator is waiting for the CODA application to connect.<br>Please make sure the application is running on your mobile phone and the right IP address and/or port are configured in the project settings. + Qt Creator oczekuje na połączenie z aplikacją CODA.<br>Upewnij się, że aplikacja jest już uruchomiona na telefonie oraz że skonfigurowano poprawny adres IP / port w ustawieniach projektu. + + + Canceled. + Anulowano. + + + The device '%1' has been disconnected + Urządzenie "%1" zostało odłączone + + + + Qt4ProjectManager::Internal::GcceToolChainFactory + + GCCE + GCCE + + + GCCE from Qt version + GCCE z wersji Qt + + + GCCE (%1) + GCCE (%1) + + + + Qt4ProjectManager::Internal::Qt4SymbianTarget + + <b>Device:</b> Not connected + <b>Urządzenie:</b> Nie podłączone + + + <b>Device:</b> %1 + <b>Urządzenie:</b> %1 + + + <b>Device:</b> %1, %2 + <b>Urządzenie:</b> %1, %2 + + + <b>IP address:</b> %1:%2 + <b>Adres IP:</b> %1:%2 + + + + Qt4ProjectManager::Internal::RvctToolChainFactory + + ARMv5 + ARMv5 + + + ARMv6 + ARMv6 + + + RVCT + RVCT + + + RVCT (%1 %2.%3 Build %4) + %1 arm version, %2 major version, %3 minor version, %4 build number + RVCT (%1 %2.%3 numer budowy %4) + + + + Qt4ProjectManager::Internal::S60CertificateInfo + + The certificate "%1" has already expired and cannot be used. +Expiration date: %2. + Certyfikat "%1" nie może zostać użyty z powodu utraty ważności. +Data wygaśnięcia: %2. + + + The certificate "%1" is not yet valid. +Valid from: %2. + Certyfikat "%1" nie jest jeszcze ważny. +Ważny od: %2. + + + The certificate "%1" is not a valid X.509 certificate. + Certyfikat "%1" nie jest poprawnym certyfikatem X.509. + + + Type: + Typ: + + + Developer certificate + Certyfikat developerski + + + Self signed certificate + Własnoręcznie stworzony certyfikat + + + Issued by: + Wydany przez: + + + Issued to: + Wydany dla: + + + Valid from: + Ważny od: + + + Valid to: + Ważny do: + + + Capabilities: + Capabilities: + + + Supporting %n device(s): + + Obsługuje %n urządzenie: + Obsługuje %n urządzenia: + Obsługuje %n urządzeń: + + + + + Qt4ProjectManager::Internal::S60CreatePackageParser + + The binary package '%1' was patched to be installable after being self-signed. +%2 +Use a developer certificate or any other signing option to prevent this patching from happening. + %1 package name, %2 will be replaced by a list of patching lines. + Własnoręcznie podpisany pakiet binarny "%1" został zmodyfikowany, aby mógł zostać zainstalowany. +%2 +Używaj certyfikatu developerskiego lub innej opcji podpisu, aby uchronić pakiet od modyfikacji. + + + Cannot create Smart Installer package as the Smart Installer's base file is missing. Please ensure that it is located in the SDK. + Nie można utworzyć pakietu Smart Installer ponieważ brakuje bazowego pliku Smart Installera. Upewnij się, że jest on umieszczony w SDK. + + + + Qt4ProjectManager::Internal::S60PublisherOvi + + Error while reading .pro file %1: %2 + Błąd podczas czytania pliku pro %1: %2 + + + Created %1 + + Utworzono %1 + + + + Sis file not created due to previous errors + + Nie utworzono pliku SIS z powodu uprzednich błędów + + + + Done! + + Nie krzyczymy na użytkowników + Zrobione + + + + Sis file not created due to previous errors + + Nie utworzono pliku SIS z powodu uprzednich błędów + + + + + Qt4ProjectManager::Internal::S60PublishingResultsPageOvi + + Open Containing Folder + Otwórz katalog zawierający + + + + Qt4ProjectManager::Internal::S60PublishingSisSettingsPageOvi + + %1 is a default vendor name used for testing and development. <br>The Vendor_Name field cannot contain the name 'Nokia'. <br>You are advised against using the default names 'Vendor' and 'Vendor-EN'. <br>You should also not leave the entry blank. <br>see <a href="http://www.forum.nokia.com/Distribute/Packaging_and_signing.xhtml">Packaging and Signing</a> for guidelines.<br> + %1 jest domyślną nazwą dostawcy używaną do rozwoju i testowania oprogramowania.<br>Pole Vendor_Name nie może zawierać nazwy "Nokia".<br>Zaleca się nieużywanie domyślnych nazw "Vendor", "Vendor-EN" i "Vendor-PL".<br>Pole to nie powinno również pozostać puste.<br>Szczegóły w <a href="http://www.forum.nokia.com/Distribute/Packaging_and_signing.xhtml">Tworzenie pakietów i podpisywanie</a>.<br> + + + %1 is a default vendor name used for testing and development. + %1 jest domyślną nazwą dostawcy używaną do rozwoju i testowania oprogramowania. + + + %1 are default vendor names used for testing and development. + %1 są domyślnymi nazwami dostawców używanymi do rozwoju i testowania oprogramowania. + + + %1 <br>The Vendor_Name field cannot contain the name 'Nokia'. <br>You are advised against using the default names 'Vendor' and 'Vendor-EN'. <br>You should also not leave the entry blank. <br>See <a href="http://www.forum.nokia.com/Distribute/Packaging_and_signing.xhtml">Packaging and Signing</a> for guidelines.<br> + %1 <br>Pole Vendor_Name nie może zawierać nazwy "Nokia".<br>Zaleca się nieużywanie domyślnych nazw "Vendor", "Vendor-EN" i "Vendor-PL".<br>Pole to nie powinno również pozostać puste.<br>Szczegóły w <a href="http://www.forum.nokia.com/Distribute/Packaging_and_signing.xhtml">Tworzenie pakietów i podpisywanie</a>.<br> + + + The application UID %1 is only for testing and development.<br>SIS packages built with it cannot be distributed via the Ovi Store.<br> + UID %1 aplikacji używany jest tylko do rozwoju i testowania oprogramowania.<br>Pakiety SIS posiadające ten UID nie mogą być dystrybuowane przez Ovi Store.<br> + + + The application UID %1 is a symbiansigned.com UID. <br>Applications with this UID will be rejected by Application Signing Services for Ovi Store.<br>If you want to continue with a symbiansigned.com UID, sign your application on symbiansigned.com and upload the signed application to Publish to Ovi.<br> + UID %1 aplikacji jest UIDem pozyskanym z symbiansigned.com.<br>Aplikacje z tym UIDem będą odrzucane przez Application Signing Services dla Ovi Store.<br>Jeżeli chcesz kontynuować z tym UIDem, podpisz najpierw swoją aplikację na symbiansigned.com i prześlij ją do Publikacji w Ovi.<br> + + + The application UID %1 is not an acceptable UID.<br>SIS packages built with it cannot be signed by Application Signing Services for Ovi Store.<br> + UID %1 aplikacji nie jest akceptowalnym UIDem.<br>Pakiety SIS posiadające ten UID nie mogą być dystrybuowane przez Ovi Store.<br> + + + The application UID is a global unique indentifier of the SIS package.<br> + UID aplikacji jest globalnym unikalnym identyfikatorem pakietów SIS.<br> + + + To get a unique application UID for your package file,<br>please register at <a href="http://info.publish.ovi.com/">publish.ovi.com</a> + Aby otrzymać unikatowy UID aplikacji dla pliku pakiety,<br>zarejestruj się na <a href="http://info.publish.ovi.com/">publish.ovi.com</a> + + + %1 need(s) to be certified signed. Please go to <a href="symbiansigned.com">symbiansigned.com</a> for guidance. + %1 muszą być podpisane "certified signed". Szczegóły w <a href="symbiansigned.com">symbiansigned.com</a>. + + + <br>%1 need(s) manufacturer approval.<br> + <br>%1 muszą być zaakceptowane przez producenta.<br> + + + Some capabilities might require a special kind of signing or approval from the manufacturer.<br> + Niektóre capabilities mogą wymagać specjalnego rodzaju podpisu lub akceptacji producenta.<br> + + + Please verify that you have a released version of Qt. <br><a href="http://wiki.forum.nokia.com/index.php/Nokia_Smart_Installer_for_Symbian">Qt Packages Distributed by Smart Installer</a> has a list of released Qt versions. + Sprawdź czy posiadasz wersję release'ową Qt.<br>Strona <a href="http://wiki.forum.nokia.com/index.php/Nokia_Smart_Installer_for_Symbian">Pakiety Qt rozprowadzane przez Smart Installera</a> posiada listę wersji releasowych Qt. + + + + Qt4ProjectManager::Internal::S60PublishingWizardFactoryOvi + + Publish Qt Symbian Applications to Ovi Store + Opublikuj aplikacje Qt Symbian w Ovi Store + + + This wizard checks your project file to make sure it complies with Ovi Store submission criteria. + +The wizard creates SIS files that can be submitted to Publish to Ovi. + +You cannot use it if you use application UIDs from Symbian Signed. + +You cannot use it for the Certified Signed and Manufacturer level capabilities: +NetworkControl, MultimediaDD, CommDD, DiskAdmin, AllFiles, DRM and TCB. + +Your application will also be rejected by Ovi QA if you choose an unreleased Qt version on the next page. + Ten kreator sprawdza czy plik projektu spełnia kryteria publikacji w Ovi Store. + +Kreator tworzy pliki SIS które mogą być wysłane do publikacji w Ovi Store. + +Nie można go używać gdy skorzystano z UIDów dostarczonych przez Symbian Signed. + +Nie można go używać dla capabilities wymagających "Certified Signed" lub zgody producenta: +NetworkControl, MultimediaDD, CommDD, DiskAdmin, AllFiles, DRM i TCB. + +Aplikacja będzie również odrzucona przez Ovi QA jeśli na następnej stronie wybrana zostanie niewydana wersja Qt. + + + + Qt4ProjectManager::Internal::S60PublishingWizardOvi + + Publishing to Ovi Store + Publikowanie w Ovi Store + + + Build Configuration + Konfiguracja budowania + + + Project File Checks + Sprawdzanie pliku projektu + + + Creating an Uploadable SIS File + Tworzenie plików SIS do przesłania + + + + Qt4ProjectManager::Internal::S60RunControlBase + + Launching + Uruchamianie + + + Please finalise the installation on your device. + Kontynuuj instalację na urządzeniu. + + + <html><head/><body><center><i>%1</i> is still running on the device.</center><center>Terminating it can leave the target in an inconsistent state.</center><center>Would you still like to terminate it?</center></body></html> + <html><head/><body><center><i>%1</i> jest wciąż uruchomiony na urządzeniu.</center><center>Zakończenie go może pozostawić urządzenie w niespójnym stanie.</center><center>Czy chcesz go zakończyć?</center></body></html> + + + Application Still Running + Program wciąż uruchomiony + + + Force Quit + Wymuś zakończenie + + + Keep Running + Pozostaw uruchomionym + + + Finished. + Zakończono. + + + + Qt4ProjectManager::Internal::TrkRunControl + + No device is connected. Please connect a device and try again. + Brak podłączonego urządzenia. Podłącz je i spróbuj ponownie. + + + Executable file: %1 + Plik wykonywalny: %1 + + + Could not connect to phone on port '%1': %2 +Check if the phone is connected and App TRK is running. + Nie można nawiązać połączenia z telefonem na porcie "%1": %2 +Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. + + + Could not connect to App TRK on device: %1. Restarting App TRK might help. + Nie można ustanowić połączenia z aplikacją TRK w urządzeniu: %1. Spróbuj ponownie uruchomić aplikację TRK. + + + Waiting for App TRK + Oczekiwanie na aplikację TRK + + + Qt Creator is waiting for the TRK application to connect on %1.<br>Please make sure the application is running on your mobile phone and the right port is configured in the project settings. + Qt Creator oczekuje na połączenie od aplikacji TRK na %1.<br>Sprawdź czy aplikacja jest uruchomiona na telefonie komórkowym i czy właściwy port jest skonfigurowany w ustawieniach projektu. + + + Canceled. + Anulowano. + + + The device '%1' has been disconnected + Urządzenie "%1" zostało odłączone + + + Starting application... + Uruchamianie aplikacji... + + + Application running with pid %1. + Aplikacja wykonuje się z pid %1. + + + Could not start application: %1 + Nie można uruchomić aplikacji: %1 + + + + Qt4ProjectManager::Internal::WinscwToolChainFactory + + WINSCW + WINSCW + + + WINSCW from Qt version + WINSCW z wersji Qt + + + + Qt4ProjectManager::Qt4BaseTargetFactory + + %1 Debug + Name of a debug build configuration to created by a project wizard, %1 being the Qt version name. We recommend not translating it. + %1 Debug + + + %1 Release + Name of a release build configuration to created by a project wizard, %1 being the Qt version name. We recommend not translating it. + %1 Release + + + + Qt4DefaultTargetSetupWidget + + <b>Error:</b> + Severity is Task::Error + <b>Błąd:</b> + + + <b>Warning:</b> + Severity is Task::Warning + <b>Ostrzeżenie:</b> + + + + Qt4ProjectManager::Qt4DefaultTargetSetupWidget + + Add build from: + + + + Add Build + + + + Use Shadow Building + Używaj budowania w innym miejscu + + + debug + Debug build + debug + + + release + release build + release + + + No build found + Brak zbudowanej wersji + + + No Build found in %1 matching project %2. + Brak zbudowanej wersji w %1 pasującej do projektu %2. + + + Incompatible build found + Znaleziono niekompatybilną zbudowaną wersję + + + The Build found in %1 is incompatible with this target + Zbudowana wersja znaleziona w %1 nie jest kompatybilna z tym produktem docelowym + + + Import build from %1 + Zaimportuj zbudowaną wersję z %1 + + + <b>Error:</b> + Severity is Task::Error + <b>Błąd:</b> + + + <b>Warning:</b> + Severity is Task::Warning + <b>Ostrzeżenie:</b> + + + + Qt4ProjectManager::AbstractMobileAppWizardDialog + + Qt Versions + Wersje Qt + + + Mobile Options + Opcje mobilne + + + Symbian Specific + Dotyczące Symbiana + + + Maemo Specific + Dotyczące Maemo + + + + Qt4ProjectManager::Internal::Html5AppWizardDialog + + New HTML5 Application + Nowa aplikacja HTML5 + + + This wizard generates a HTML5 application project. + Ten kreator generuje projekt aplikacji HTML5. + + + HTML Options + Opcje HTML + + + + Qt4ProjectManager::Internal::Html5AppWizard + + HTML5 Application + Aplikacja HTML5 + + + Creates an HTML5 application project that can contain both HTML5 and C++ code and includes a WebKit view. + +You can build the application and deploy it on desktop and mobile target platforms. For example, you can create signed Symbian Installation System (SIS) packages for this type of projects. + Tworzy projekt aplikacji HTML5, który może zawierać zarówno kod HTML5 i C++ oraz dołączać widok WebKit. + +Można zbudować aplikację i zainstalować ją na platformie mobilnej albo na desktopie. Dla tego typu projektu można np. utworzyć podpisany pakiet instalacyjny SIS + + + + Qt4ProjectManager::Internal::Html5AppWizardOptionsPage + + Select HTML File + Wybierz plik HTML + + + + Qt4ProjectManager::Internal::MobileAppWizardGenericOptionsPage + + Automatically Rotate Orientation + Automatycznie przełączaj orientację + + + Lock to Landscape Orientation + Pejzażowa orientacja + + + Lock to Portrait Orientation + Portretowa orientacja + + + + Qt4ProjectManager::Internal::MobileAppWizardMaemoOptionsPage + + Invalid Icon + Niepoprawna ikona + + + The file is not a valid image. + Plik nie jest poprawnym plikiem graficznym. + + + Wrong Icon Size + Niepoprawny rozmiar ikony + + + The icon needs to be 64x64 pixels big, but is not. Do you want Creator to scale it? + Spodziewany rozmiar ikony to 64x64. Czy przeskalować ikonę? + + + File Error + Błąd pliku + + + Could not copy icon file. + Nie można skopiować pliku ikony. + + + + Qt4ProjectManager::Internal::SubdirsProjectWizard + + Subdirs Project + Projekt z podkatalogami + + + Creates a qmake-based subdirs project. This allows you to group your projects in a tree structure. + Tworzy projekt z podkatalogami bazując na qmake. To umożliwia grupowanie projektów w strukturę drzewiastą. + + + Done && Add Subproject + Zrobione i Dodaj podprojekt + + + Finish && Add Subproject + Zakończ i Dodaj podprojekt + + + New Subproject + Title of dialog + Nowy podprojekt + + + + Qt4ProjectManager::Internal::SubdirsProjectWizardDialog + + This wizard generates a Qt4 subdirs project. Add subprojects to it later on by using the other wizards. + Ten kreator generuje projekt z podkatalogami Qt4. Podprojekty mogą być dodane później przy użyciu innych kreatorów. + + + + Qt4ProjectManager::TargetSetupPage + + Target Setup + Ustawienia produktu docelowego + + + Qt Creator can set up the following targets for project <b>%1</b>: + %1: Project name + Qt Creator może ustawić następujące wersje dla projektu <b>%1</b>: + + + + TextEditor::BaseTextEditorWidget + + CTRL+D + Ctrl+D + + + Print Document + Wydruk dokumentu + + + <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. + <b>Błąd:</b> Nie można odkodować "%1" używając kodowania "%2". Edycja nie jest możliwa. + + + Select Encoding + Wybierz kodowanie + + + The text is too large to be displayed (%1 MB). + Tekst jest zbyt obszerny aby mógł zostać wyświetlony (%1 MB). + + + + TextEditor::Internal::PlainTextSnippetProvider + + Text + Tekst + + + + TextEditor::Internal::SnippetsTableModel + + Error + Błąd + + + Not a valid trigger. + Niepoprawny wyzwalacz. + + + Trigger + Wyzwalacz + + + Trigger Variant + Wariant wyzwalacza + + + Error reverting snippet. + Nie można odwrócić urywku. + + + + TextEditor::Internal::SnippetsSettingsPagePrivate + + Snippets + Urywki + + + Error + Błąd + + + No snippet selected. + Nie wybrano urywku. + + + + Analyzer::Internal::ValgrindConfigWidget + + Valgrind Command + Komenda valgrind + + + + Analyzer::Internal::ValgrindEngine + + Valgrind options: %1 + Opcje valgrinda: %1 + + + Working directory: %1 + Katalog roboczy: %1 + + + Command-line arguments: %1 + Argumenty linii komend: %1 + + + ** Analysing finished ** + ** Zakończono analizę ** + + + ** Error: "%1" could not be started: %2 ** + ** Błąd: nie można uruchomić "%1": %2 ** + + + ** Error: no valgrind executable set ** + ** Błąd: nie ustawiono pliku wykonywalnego valgrind ** + + + ** Process Terminated ** + ** Zakończono proces ** + + + Application Output + Komunikaty aplikacji + + + + Analyzer::Internal::ValgrindSettings + + Generic Settings + Ustawienia ogólne + + + + VCSBase::VCSBaseClient + + Working... + Przetwarzanie... + + + + VCSBase::VCSBaseEditorWidget + + Annotate "%1" + Dołącz adnotację do "%1" + + + Copy "%1" + Skopiuj "%1" + + + Describe change %1 + Opisz zmianę %1 + + + + VCSBase::VCSJobRunner + + Unable to start process '%1': %2 + Nie można rozpocząć procesu "%1": %2 + + + Timed out after %1s waiting for the process %2 to finish. + Przekroczono czas oczekiwania %1s na ukończenie procesu %2. + + + + SymbianUtils::VirtualSerialDevice + + The port %1 could not be opened: %2 (POSIX error %3) + Nie można otworzyć portu %1: %2 (błąd POSIX %3) + + + Unable to retrieve terminal settings of port %1: %2 (POSIX error %3) + Nie można uzyskać ustawień terminala dla portu %1: %2 (błąd POSIX %3) + + + Unable to apply terminal settings to port %1: %2 (POSIX error %3) + Nie można zastosować ustawień terminala dla portu %1: %2 (błąd POSIX %3) + + + Cannot write to port %1: %2 (POSIX error %3) + Nie można pisać do portu %1: %2 (błąd POSIX %3) + + + The function select() returned an error on port %1: %2 (POSIX error %3) + Funkcja select() zwróciła błąd dla portu %1: %2 (błąd POSIX %3) + + + Port not found + Port nie znaleziony + + + Port in use + Port w użyciu + + + Timed out + Przekroczono czas oczekiwania + + + Port unreachable + Port nieosiągalny + + + The port %1 could not be opened: %2 + Nie można otworzyć portu %1: %2 + + + An error occurred while waiting for read notifications from %1: %2 + Błąd podczas oczekiwania na powiadomienie o odczycie z %1: %2 + + + An error occurred while reading from %1: %2 + Błąd podczas czytania z %1: %2 + + + An error occurred while writing to %1: %2 + Błąd podczas pisania do %1: %2 + + + An error occurred while syncing on waitForBytesWritten for %1: %2 + Błąd podczas synchronizacji z waitForBytesWritten dla %1: %2 diff --git a/src/plugins/debugger/cdb/cdbengine.cpp b/src/plugins/debugger/cdb/cdbengine.cpp index 5c8ee1b424f..30699e87fd3 100644 --- a/src/plugins/debugger/cdb/cdbengine.cpp +++ b/src/plugins/debugger/cdb/cdbengine.cpp @@ -1066,6 +1066,7 @@ unsigned CdbEngine::debuggerCapabilities() const { return DisassemblerCapability | RegisterCapability | ShowMemoryCapability |WatchpointCapability|JumpToLineCapability|AddWatcherCapability + |ReloadModuleCapability |BreakOnThrowAndCatchCapability // Sort-of: Can break on throw(). |BreakConditionCapability|TracePointCapability |BreakModuleCapability; diff --git a/src/plugins/debugger/debuggerconstants.h b/src/plugins/debugger/debuggerconstants.h index a91ea319a2d..36539f291a3 100644 --- a/src/plugins/debugger/debuggerconstants.h +++ b/src/plugins/debugger/debuggerconstants.h @@ -162,7 +162,7 @@ enum DebuggerCapabilities ReverseSteppingCapability = 0x1, SnapshotCapability = 0x2, AutoDerefPointersCapability = 0x4, - DisassemblerCapability = 0x80, + DisassemblerCapability = 0x8, RegisterCapability = 0x10, ShowMemoryCapability = 0x20, JumpToLineCapability = 0x40, diff --git a/src/plugins/debugger/gdb/codagdbadapter.cpp b/src/plugins/debugger/gdb/codagdbadapter.cpp index 69dfaff8888..76892af8e91 100644 --- a/src/plugins/debugger/gdb/codagdbadapter.cpp +++ b/src/plugins/debugger/gdb/codagdbadapter.cpp @@ -127,7 +127,8 @@ CodaGdbAdapter::CodaGdbAdapter(GdbEngine *engine) : m_uid(0), m_verbose(0), m_firstResumableExeLoadedEvent(false), - m_registerRequestPending(false) + m_registerRequestPending(false), + m_firstHelloEvent(true) { m_bufferedMemoryRead = true; // Disable buffering if gdb's dcache is used. @@ -316,8 +317,11 @@ void CodaGdbAdapter::codaEvent(const CodaEvent &e) switch (e.type()) { case CodaEvent::LocatorHello: - m_codaDevice->sendLoggingAddListenerCommand(CodaCallback()); - startGdb(); // Commands are only accepted after hello + if (state() == EngineSetupRequested && m_firstHelloEvent) { + m_firstHelloEvent = false; + m_codaDevice->sendLoggingAddListenerCommand(CodaCallback()); + startGdb(); // Commands are only accepted after hello + } break; case CodaEvent::RunControlModuleLoadSuspended: // A module was loaded handleCodaRunControlModuleLoadContextSuspendedEvent( @@ -1027,6 +1031,7 @@ void CodaGdbAdapter::startAdapter() m_session.reset(); m_firstResumableExeLoadedEvent = true; m_tcfProcessId.clear(); + m_firstHelloEvent = true; // Retrieve parameters. const DebuggerStartParameters ¶meters = startParameters(); diff --git a/src/plugins/debugger/gdb/codagdbadapter.h b/src/plugins/debugger/gdb/codagdbadapter.h index 2af60e7bc5d..0e8c75c2e9a 100644 --- a/src/plugins/debugger/gdb/codagdbadapter.h +++ b/src/plugins/debugger/gdb/codagdbadapter.h @@ -199,6 +199,7 @@ private: bool m_registerRequestPending; QByteArray m_tcfProcessId; LocalGdbProcess m_gdbProc; + bool m_firstHelloEvent; }; } // namespace Internal diff --git a/src/plugins/debugger/gdb/gdboptionspage.ui b/src/plugins/debugger/gdb/gdboptionspage.ui index 253461fb511..9400224b0ac 100644 --- a/src/plugins/debugger/gdb/gdboptionspage.ui +++ b/src/plugins/debugger/gdb/gdboptionspage.ui @@ -46,7 +46,7 @@ This is the number of seconds Qt Creator will wait before -it terminates non-responsive gdb process. The default value of 20 seconds +it terminates a non-responsive GDB process. The default value of 20 seconds should be sufficient for most applications, but there are situations when loading big libraries or listing source files takes much longer than that on slow machines. In this case, the value should be increased. @@ -60,7 +60,7 @@ on slow machines. In this case, the value should be increased. This is the number of seconds Qt Creator will wait before -it terminates non-responsive gdb process. The default value of 20 seconds +it terminates a non-responsive GDB process. The default value of 20 seconds should be sufficient for most applications, but there are situations when loading big libraries or listing source files takes much longer than that on slow machines. In this case, the value should be increased. @@ -85,7 +85,8 @@ on slow machines. In this case, the value should be increased. - When this option is checked, 'Step Into' compresses several steps into one in certain situations, leading to 'less noisy' debugging. So will, e.g., the atomic reference counting code be skipped, and a single 'Step Into' for a signal emission will end up directly in the slot connected to it. + Allows 'Step Into' to compress several steps into one step for less noisy debugging. For example, the atomic reference + counting code is skipped, and a single 'Step Into' for a signal emission ends up directly in the slot connected to it. Skip known frames when stepping @@ -154,7 +155,7 @@ on slow machines. In this case, the value should be increased. This is the slowest but safest option. - Try to set breakpoints in plugins always automatically. + Try to set breakpoints in plugins always automatically diff --git a/src/plugins/debugger/lldb/lldboptionspagewidget.ui b/src/plugins/debugger/lldb/lldboptionspagewidget.ui index 9dc9b535045..d9db166c90f 100644 --- a/src/plugins/debugger/lldb/lldboptionspagewidget.ui +++ b/src/plugins/debugger/lldb/lldboptionspagewidget.ui @@ -29,7 +29,7 @@ - Use GDB python dumpers + Use GDB Python dumpers false diff --git a/src/plugins/projectexplorer/sessiondialog.ui b/src/plugins/projectexplorer/sessiondialog.ui index e86331da8cb..bf05cffba16 100644 --- a/src/plugins/projectexplorer/sessiondialog.ui +++ b/src/plugins/projectexplorer/sessiondialog.ui @@ -15,7 +15,14 @@ - + + + + 1 + 1 + + + diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp index 50f32723f5b..dbdd027603a 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditor.cpp @@ -284,6 +284,7 @@ PropertyEditor::PropertyEditor(QWidget *parent) : QString styleSheet = QLatin1String(file.readAll()); m_stackedWidget->setStyleSheet(styleSheet); m_stackedWidget->setMinimumWidth(300); + m_stackedWidget->move(0, 0); connect(m_stackedWidget, SIGNAL(resized()), this, SLOT(updateSize())); m_stackedWidget->insertWidget(0, new QWidget(m_stackedWidget)); diff --git a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp index 87e71d22094..f71864eda9a 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.cpp @@ -152,6 +152,15 @@ bool QmlAnchorBindingProxy::hasParent() return m_fxItemNode.isValid() && m_fxItemNode.hasNodeParent(); } +bool QmlAnchorBindingProxy::isFilled() +{ + return m_fxItemNode.isValid() && hasAnchors() && topAnchored() && bottomAnchored() && leftAnchored() && rightAnchored() + && (m_fxItemNode.instanceValue("anchors.topMargin").toInt() == 0) + && (m_fxItemNode.instanceValue("anchors.bottomMargin").toInt() == 0) + && (m_fxItemNode.instanceValue("anchors.leftMargin").toInt() == 0) + && (m_fxItemNode.instanceValue("anchors.rightMargin").toInt() == 0); +} + bool QmlAnchorBindingProxy::topAnchored() { return m_fxItemNode.isValid() && m_fxItemNode.anchors().instanceHasAnchor(AnchorLine::Top); diff --git a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.h b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.h index f66e703e50b..f26cf1d57f9 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.h +++ b/src/plugins/qmldesigner/components/propertyeditor/qmlanchorbindingproxy.h @@ -65,6 +65,7 @@ class QmlAnchorBindingProxy : public QObject Q_PROPERTY(QVariant horizontalTarget READ horizontalTarget WRITE setHorizontalTarget NOTIFY horizontalTargetChanged) Q_PROPERTY(bool hasAnchors READ hasAnchors NOTIFY anchorsChanged) + Q_PROPERTY(bool isFilled READ isFilled NOTIFY anchorsChanged) Q_PROPERTY(bool horizontalCentered READ horizontalCentered WRITE setHorizontalCentered NOTIFY centeredHChanged) Q_PROPERTY(bool verticalCentered READ verticalCentered WRITE setVerticalCentered NOTIFY centeredVChanged) @@ -85,6 +86,7 @@ public: bool rightAnchored(); bool hasParent(); + bool isFilled(); void removeTopAnchor(); void removeBottomAnchor(); diff --git a/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.cpp b/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.cpp index d0d0174264d..b1b54e90e15 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/siblingcombobox.cpp @@ -74,9 +74,15 @@ void SiblingComboBox::setup() connect(this, SIGNAL(currentIndexChanged (int)), this, SLOT(changeSelection(int))); if (!m_itemNode.isValid()) return; - m_itemList = m_itemNode.instanceParent().toQmlItemNode().children(); + + if (m_itemNode.instanceParent().modelNode().isValid()) + m_itemList = toQmlItemNodeList(m_itemNode.instanceParent().modelNode().allDirectSubModelNodes()); m_itemList.removeOne(m_itemNode); - + //We currently have no instanceChildren(). + //So we double check here if the instanceParents are equal. + foreach (const QmlItemNode &node, m_itemList) + if (node.instanceParent().modelNode() != m_itemNode.instanceParent().modelNode()) + m_itemList.removeAll(node); disconnect(this, SIGNAL(currentIndexChanged (int)), this, SLOT(changeSelection(int))); clear(); diff --git a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp index 161013a3856..e03778e5fd6 100644 --- a/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp +++ b/src/plugins/qmldesigner/components/stateseditor/stateseditorview.cpp @@ -140,7 +140,9 @@ void StatesEditorView::addState() } try { - if (rootStateGroup().allStates().count() < 1) + if ((rootStateGroup().allStates().count() < 1) && //QtQuick import might be missing + (!model()->imports().contains(Import::createLibraryImport("QtQuick", "1.0")) && + !model()->imports().contains(Import::createLibraryImport("QtQuick", "1.1")))) model()->changeImports(QList() << Import::createLibraryImport("QtQuick", "1.0"), QList()); ModelNode newState = rootStateGroup().addState(newStateName); setCurrentState(newState); diff --git a/src/plugins/qmldesigner/designercore/model/qmlmodelview.cpp b/src/plugins/qmldesigner/designercore/model/qmlmodelview.cpp index 1b27b0465d7..a31114f12e7 100644 --- a/src/plugins/qmldesigner/designercore/model/qmlmodelview.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmlmodelview.cpp @@ -43,6 +43,7 @@ #include #include "nodeabstractproperty.h" #include "variantproperty.h" +#include "rewritingexception.h" namespace QmlDesigner { @@ -102,8 +103,8 @@ QmlItemNode QmlModelView::createQmlItemNodeFromImage(const QString &imageName, c QmlItemNode newNode; RewriterTransaction transaction = beginRewriterTransaction(); { - const QString newImportUrl = QLatin1String("Qt"); - const QString newImportVersion = QLatin1String("4.7"); + const QString newImportUrl = QLatin1String("QtQuick"); + const QString newImportVersion = QLatin1String("1.0"); Import newImport = Import::createLibraryImport(newImportUrl, newImportVersion); foreach (const Import &import, model()->imports()) { @@ -169,8 +170,9 @@ QmlItemNode QmlModelView::createQmlItemNode(const ItemLibraryEntry &itemLibraryE Q_ASSERT(parentNode.isValid()); QmlItemNode newNode; - RewriterTransaction transaction = beginRewriterTransaction(); - { + + try { + RewriterTransaction transaction = beginRewriterTransaction(); if (itemLibraryEntry.typeName().contains('.')) { const QString newImportUrl = itemLibraryEntry.typeName().split('.').first(); const QString newImportVersion = QString("%1.%2").arg(QString::number(itemLibraryEntry.majorVersion()), QString::number(itemLibraryEntry.minorVersion())); @@ -216,12 +218,7 @@ QmlItemNode QmlModelView::createQmlItemNode(const ItemLibraryEntry &itemLibraryE i++; } while (hasId(id)); //If the name already exists count upwards - try { - newNode.setId(id); - } catch (InvalidIdException &e) { - // should never happen - QMessageBox::warning(0, tr("Invalid Id"), e.description()); - } + newNode.setId(id); if (!currentState().isBaseState()) { newNode.modelNode().variantProperty("opacity") = 0; @@ -230,6 +227,13 @@ QmlItemNode QmlModelView::createQmlItemNode(const ItemLibraryEntry &itemLibraryE Q_ASSERT(newNode.isValid()); } + catch (RewritingException &e) { + QMessageBox::warning(0, "Error", e.description()); + } + catch (InvalidIdException &e) { + // should never happen + QMessageBox::warning(0, tr("Invalid Id"), e.description()); + } Q_ASSERT(newNode.isValid()); diff --git a/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.cpp b/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.cpp index bb93d63e69e..45cab4f498c 100644 --- a/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.cpp +++ b/src/plugins/qmldesigner/designercore/model/rewriteactioncompressor.cpp @@ -236,9 +236,6 @@ void RewriteActionCompressor::compressPropertyActions(QList &ac if (RemovePropertyRewriteAction *removeAction = action->asRemovePropertyRewriteAction()) { const AbstractProperty property = removeAction->property(); if (AddPropertyRewriteAction *addAction = addedProperties.value(property, 0)) { - actionsToRemove.append(addAction); - actionsToRemove.append(removeAction); - addedProperties.remove(property); } else { removedProperties.insert(property, action); } diff --git a/src/plugins/qt4projectmanager/qmldumptool.cpp b/src/plugins/qt4projectmanager/qmldumptool.cpp index 7d83cb26b9b..823141b3eaa 100644 --- a/src/plugins/qt4projectmanager/qmldumptool.cpp +++ b/src/plugins/qt4projectmanager/qmldumptool.cpp @@ -252,8 +252,10 @@ static QStringList sourceFileNames() QStringList files; files << QLatin1String("main.cpp") << QLatin1String("qmldump.pro") << QLatin1String("qmlstreamwriter.cpp") << QLatin1String("qmlstreamwriter.h") - << QLatin1String("LICENSE.LGPL") << QLatin1String("LGPL_EXCEPTION.TXT") - << QLatin1String("Info.plist"); + << QLatin1String("LICENSE.LGPL") << QLatin1String("LGPL_EXCEPTION.TXT"); +#ifdef Q_OS_MAC + files << QLatin1String("Info.plist"); +#endif return files; } diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp index b1fd13077a9..bc29fe66fa4 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemodebugsupport.cpp @@ -81,10 +81,10 @@ RunControl *MaemoDebugSupport::createDebugRunControl(MaemoRunConfiguration *runC if (runConfig->useRemoteGdb()) { params.startMode = StartRemoteGdb; params.executable = runConfig->remoteExecutableFilePath(); - params.debuggerCommand - = MaemoGlobal::remoteCommandPrefix(runConfig->remoteExecutableFilePath()) - + MaemoGlobal::remoteEnvironment(runConfig->userEnvironmentChanges()) - + QLatin1String(" /usr/bin/gdb"); + params.debuggerCommand = MaemoGlobal::remoteCommandPrefix(runConfig->deviceConfig()->osVersion(), + runConfig->remoteExecutableFilePath()) + + MaemoGlobal::remoteEnvironment(runConfig->userEnvironmentChanges()) + + QLatin1String(" /usr/bin/gdb"); params.connParams = devConf->sshParameters(); params.localMountDir = runConfig->localDirToMountForRemoteGdb(); params.remoteMountPoint @@ -289,7 +289,8 @@ void MaemoDebugSupport::startDebugging() SLOT(handleRemoteProcessStarted())); } const QString &remoteExe = m_runner->remoteExecutable(); - const QString cmdPrefix = MaemoGlobal::remoteCommandPrefix(remoteExe); + const QString cmdPrefix = MaemoGlobal::remoteCommandPrefix(m_deviceConfig->osVersion(), + remoteExe); const QString env = MaemoGlobal::remoteEnvironment(m_userEnvChanges); QString args = m_runner->arguments(); if (m_debuggingType != MaemoRunConfiguration::DebugCppOnly) { diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemoglobal.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemoglobal.cpp index 6cb6ce87d97..4027cbb3b4e 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemoglobal.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemoglobal.cpp @@ -129,10 +129,14 @@ QString MaemoGlobal::remoteSudo() return QLatin1String("/usr/lib/mad-developer/devrootsh"); } -QString MaemoGlobal::remoteCommandPrefix(const QString &commandFilePath) +QString MaemoGlobal::remoteCommandPrefix(MaemoVersion maemoVersion, + const QString &commandFilePath) { - return QString::fromLocal8Bit("%1 chmod a+x %2; %3; ") + QString prefix = QString::fromLocal8Bit("%1 chmod a+x %2; %3; ") .arg(remoteSudo(), commandFilePath, remoteSourceProfilesCommand()); + if (maemoVersion != Maemo5 && maemoVersion != Maemo6) + prefix += QLatin1String("DISPLAY=:0.0 "); + return prefix; } QString MaemoGlobal::remoteSourceProfilesCommand() @@ -333,8 +337,8 @@ QStringList MaemoGlobal::targetArgs(const QtVersion *qtVersion, bool useTarget) QString MaemoGlobal::osVersionToString(OsVersion version) { switch (version) { - case Maemo5: return QLatin1String("Maemo 5/Fremantle"); - case Maemo6: return QLatin1String("Maemo 6/Harmattan"); + case Maemo5: return QLatin1String("Maemo5/Fremantle"); + case Maemo6: return QLatin1String("Harmattan"); case Meego: return QLatin1String("Meego"); case GenericLinux: return QLatin1String("Other Linux"); } diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemoglobal.h b/src/plugins/qt4projectmanager/qt-maemo/maemoglobal.h index 8c9d60be879..8f29cfe92d8 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemoglobal.h +++ b/src/plugins/qt4projectmanager/qt-maemo/maemoglobal.h @@ -84,7 +84,8 @@ public: static QString homeDirOnDevice(const QString &uname); static QString remoteSudo(); - static QString remoteCommandPrefix(const QString &commandFilePath); + static QString remoteCommandPrefix(MaemoVersion maemoVersion, + const QString &commandFilePath); static QString remoteEnvironment(const QList &list); static QString remoteSourceProfilesCommand(); static QString failedToConnectToServerMessage(const QSharedPointer &connection, diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp index bb5e43be327..ddae6393f9b 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemorunconfigurationwidget.cpp @@ -194,7 +194,7 @@ void MaemoRunConfigurationWidget::addDebuggingWidgets(QVBoxLayout *mainLayout) QHBoxLayout *debugRadioButtonsLayout = new QHBoxLayout; debugLayout->addRow(debugRadioButtonsLayout); QRadioButton *gdbButton = new QRadioButton(tr("Use remote GDB")); - QRadioButton *gdbServerButton = new QRadioButton(tr("Use remote gdbserver")); + QRadioButton *gdbServerButton = new QRadioButton(tr("Use remote GDB server")); debugRadioButtonsLayout->addWidget(gdbButton); debugRadioButtonsLayout->addWidget(gdbServerButton); debugRadioButtonsLayout->addStretch(1); @@ -426,7 +426,7 @@ void MaemoRunConfigurationWidget::handleDebuggingTypeChanged(bool useGdb) m_runConfiguration->setUseRemoteGdb(useGdb); const QString detailsText = useGdb ? tr("Debugging details: Use GDB") : - tr("Debugging details: Use gdbserver"); + tr("Debugging details: Use GDB server"); m_debugDetailsContainer->setSummaryText(detailsText); } diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp index 4474d5a0e52..d9c2cccd33f 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemoruncontrol.cpp @@ -100,7 +100,8 @@ void MaemoRunControl::startExecution() { appendMessage(tr("Starting remote process ...\n"), NormalMessageFormat); m_runner->startExecution(QString::fromLocal8Bit("%1 %2 %3 %4") - .arg(MaemoGlobal::remoteCommandPrefix(m_runner->remoteExecutable())) + .arg(MaemoGlobal::remoteCommandPrefix(m_runner->devConfig()->osVersion(), + m_runner->remoteExecutable())) .arg(MaemoGlobal::remoteEnvironment(m_runner->userEnvChanges())) .arg(m_runner->remoteExecutable()) .arg(m_runner->arguments()).toUtf8()); diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemosshrunner.h b/src/plugins/qt4projectmanager/qt-maemo/maemosshrunner.h index edf436be95e..3c5708b72ca 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemosshrunner.h +++ b/src/plugins/qt4projectmanager/qt-maemo/maemosshrunner.h @@ -74,6 +74,7 @@ public: QString remoteExecutable() const { return m_remoteExecutable; } QString arguments() const { return m_appArguments; } QList userEnvChanges() const { return m_userEnvChanges; } + const QSharedPointer devConfig() const { return m_devConfig; } static const qint64 InvalidExitCode; diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemotoolchain.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemotoolchain.cpp index 5419a69f418..47d249fdcb3 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemotoolchain.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemotoolchain.cpp @@ -96,9 +96,6 @@ void MaemoToolChain::addToEnvironment(Utils::Environment &env) const { QtVersion *v = QtVersionManager::instance()->version(m_qtVersionId); const QString maddeRoot = MaemoGlobal::maddeRoot(v); - env.prependOrSetPath(QDir::toNativeSeparators(QString("%1/bin").arg(maddeRoot))); - env.prependOrSetPath(QDir::toNativeSeparators(QString("%1/bin") - .arg(MaemoGlobal::targetRoot(v)))); // put this into environment to make pkg-config stuff work env.prependOrSet(QLatin1String("SYSROOT_DIR"), QDir::toNativeSeparators(sysroot())); @@ -109,6 +106,10 @@ void MaemoToolChain::addToEnvironment(Utils::Environment &env) const env.prependOrSet(QLatin1String("PERL5LIB"), QDir::toNativeSeparators(QString("%1/madlib/perl5").arg(maddeRoot))); + env.prependOrSetPath(QDir::toNativeSeparators(QString("%1/bin").arg(maddeRoot))); + env.prependOrSetPath(QDir::toNativeSeparators(QString("%1/bin") + .arg(MaemoGlobal::targetRoot(v)))); + const QString manglePathsKey = QLatin1String("GCCWRAPPER_PATHMANGLE"); if (!env.hasKey(manglePathsKey)) { const QStringList pathsToMangle = QStringList() << QLatin1String("/lib") diff --git a/src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.cpp b/src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.cpp index b83acfc696c..5c6cd9f7156 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.cpp @@ -109,7 +109,9 @@ bool adaptTagValue(QByteArray &document, const QByteArray &fieldName, AbstractQt4MaemoTarget::AbstractQt4MaemoTarget(Qt4Project *parent, const QString &id) : Qt4BaseTarget(parent, id), m_filesWatcher(new QFileSystemWatcher(this)), - m_buildConfigurationFactory(new Qt4BuildConfigurationFactory(this)) + m_buildConfigurationFactory(new Qt4BuildConfigurationFactory(this)), + m_deployConfigurationFactory(new Qt4MaemoDeployConfigurationFactory(this)), + m_isInitialized(false) { setIcon(QIcon(":/projectexplorer/images/MaemoDevice.png")); connect(parent, SIGNAL(addedTarget(ProjectExplorer::Target*)), @@ -284,6 +286,7 @@ void AbstractQt4MaemoTarget::handleTargetAdded(ProjectExplorer::Target *target) return; initPackagingSettingsFromOtherTarget(); handleTargetAddedSpecial(); + m_isInitialized = true; } void AbstractQt4MaemoTarget::handleTargetToBeRemoved(ProjectExplorer::Target *target) @@ -355,7 +358,7 @@ bool AbstractQt4MaemoTarget::initPackagingSettingsFromOtherTarget() foreach (const Target * const target, project()->targets()) { const AbstractQt4MaemoTarget * const maemoTarget = qobject_cast(target); - if (maemoTarget && maemoTarget != this) { + if (maemoTarget && maemoTarget != this && maemoTarget->m_isInitialized) { if (!setProjectVersionInternal(maemoTarget->projectVersion())) success = false; if (!setPackageNameInternal(maemoTarget->packageName())) diff --git a/src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.h b/src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.h index 2159f5d2081..0faf0042c6d 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.h +++ b/src/plugins/qt4projectmanager/qt-maemo/qt4maemotarget.h @@ -117,6 +117,7 @@ private: virtual bool initAdditionalPackagingSettingsFromOtherTarget()=0; Qt4BuildConfigurationFactory *m_buildConfigurationFactory; + bool m_isInitialized; }; diff --git a/src/plugins/qt4projectmanager/qt-s60/rvcttoolchain.cpp b/src/plugins/qt4projectmanager/qt-s60/rvcttoolchain.cpp index 424624014f2..cded59d1a6e 100644 --- a/src/plugins/qt4projectmanager/qt-s60/rvcttoolchain.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/rvcttoolchain.cpp @@ -87,7 +87,7 @@ static QString armVersionString(RvctToolChain::ArmVersion av) static Utils::Environment baseEnvironment(RvctToolChain *tc) { Utils::Environment result; - tc->addToEnvironment(result); + result.modify(tc->environmentChanges()); return result; } diff --git a/src/plugins/qt4projectmanager/qt-s60/s60createpackagestep.cpp b/src/plugins/qt4projectmanager/qt-s60/s60createpackagestep.cpp index bc83c73e0d4..9644d51b8dc 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60createpackagestep.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60createpackagestep.cpp @@ -609,10 +609,12 @@ void S60CreatePackageStep::checkForCancel() m_timer->stop(); if (m_process) { m_process->terminate(); - m_process->waitForFinished(5000); - m_process->kill(); + m_process->waitForFinished(5000); //while waiting, the process can be killed + if (m_process) + m_process->kill(); } - m_eventLoop->exit(false); + if (m_eventLoop) + m_eventLoop->exit(false); } } diff --git a/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp b/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp index 53af8104d31..c3d332a9a4a 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60deploystep.cpp @@ -495,6 +495,7 @@ void S60DeployStep::initFileSending() { QTC_ASSERT(m_currentFileIndex < m_signedPackages.count(), return); QTC_ASSERT(m_currentFileIndex >= 0, return); + QTC_ASSERT(m_codaDevice, return); const unsigned flags = Coda::CodaDevice::FileSystem_TCF_O_WRITE @@ -513,6 +514,7 @@ void S60DeployStep::initFileInstallation() { QTC_ASSERT(m_currentFileIndex < m_signedPackages.count(), return); QTC_ASSERT(m_currentFileIndex >= 0, return); + QTC_ASSERT(m_codaDevice, return); QString packageName(QFileInfo(m_signedPackages.at(m_currentFileIndex)).fileName()); QString remoteFileLocation = QString::fromLatin1("%1:\\Data\\%2").arg(m_installationDrive).arg(packageName); @@ -583,6 +585,8 @@ void S60DeployStep::handleSymbianInstall(const Coda::CodaCommandResult &result) void S60DeployStep::putSendNextChunk() { + QTC_ASSERT(m_codaDevice, return); + // Read and send off next chunk const quint64 pos = m_putFile->pos(); const QByteArray data = m_putFile->read(m_putChunkSize); @@ -605,6 +609,8 @@ void S60DeployStep::putSendNextChunk() void S60DeployStep::closeRemoteFile() { + QTC_ASSERT(m_codaDevice, return); + m_codaDevice->sendFileSystemCloseCommand(Coda::CodaCallback(this, &S60DeployStep::handleFileSystemClose), m_remoteFileHandle); } diff --git a/src/plugins/qt4projectmanager/qt-s60/s60devicerunconfiguration.cpp b/src/plugins/qt4projectmanager/qt-s60/s60devicerunconfiguration.cpp index d31aa3b26c6..4b826542df9 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60devicerunconfiguration.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60devicerunconfiguration.cpp @@ -463,6 +463,7 @@ static Debugger::DebuggerStartParameters s60DebuggerStartParams(const S60DeviceR sp.executableUid = rc->executableUid(); sp.serverAddress = activeDeployConf->deviceAddress(); sp.serverPort = activeDeployConf->devicePort().toInt(); + sp.displayName = rc->displayName(); sp.communicationChannel = activeDeployConf->communicationChannel() == S60DeployConfiguration::CommunicationCodaTcpConnection? Debugger::DebuggerStartParameters::CommunicationChannelTcpIp: diff --git a/src/plugins/qt4projectmanager/qtversionmanager.cpp b/src/plugins/qt4projectmanager/qtversionmanager.cpp index 825009a4a53..ceb8571d0f8 100644 --- a/src/plugins/qt4projectmanager/qtversionmanager.cpp +++ b/src/plugins/qt4projectmanager/qtversionmanager.cpp @@ -173,8 +173,9 @@ QtVersionManager::QtVersionManager() id, isAutodetected, autodetectionSource); - version->setSystemRoot(s->value("S60SDKDirectory").toString()); - version->setSbsV2Directory(s->value(QLatin1String("SBSv2Directory")).toString()); + // Make sure we do not import non-native separators from old Qt Creator versions: + version->setSystemRoot(QDir::fromNativeSeparators(s->value("S60SDKDirectory").toString())); + version->setSbsV2Directory(QDir::fromNativeSeparators(s->value(QLatin1String("SBSv2Directory")).toString())); // Update from pre-2.2: const QString mingwDir = s->value(QLatin1String("MingwDirectory")).toString(); diff --git a/src/plugins/qt4projectmanager/wizards/mobileapp.cpp b/src/plugins/qt4projectmanager/wizards/mobileapp.cpp index bee82db02bb..3e79f5139a6 100644 --- a/src/plugins/qt4projectmanager/wizards/mobileapp.cpp +++ b/src/plugins/qt4projectmanager/wizards/mobileapp.cpp @@ -112,14 +112,13 @@ QByteArray MobileApp::generateFileExtended(int fileType, { Q_UNUSED(comment); QByteArray data; + versionAndCheckSum = false; switch (fileType) { case MobileAppGeneratedFileInfo::MainWindowCppFile: data = readBlob(path(MainWindowCppOrigin), errorMessage); - *versionAndCheckSum = true; break; case MobileAppGeneratedFileInfo::MainWindowHFile: data = readBlob(path(MainWindowHOrigin), errorMessage); - *versionAndCheckSum = true; break; case MobileAppGeneratedFileInfo::MainWindowUiFile: data = readBlob(path(MainWindowUiOrigin), errorMessage); diff --git a/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp b/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp index 28f936b8da1..43400aa368e 100644 --- a/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp +++ b/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp @@ -117,9 +117,9 @@ void TargetSetupPage::setImportSearch(bool b) void TargetSetupPage::setupWidgets() { QList factories = ExtensionSystem::PluginManager::instance()->getObjects(); + bool atLeastOneTargetSelected = false; foreach (Qt4BaseTargetFactory *factory, factories) { QStringList ids = factory->supportedTargetIds(0); - bool atLeastOneTargetSelected = false; foreach (const QString &id, ids) { QList infos = BuildConfigurationInfo::filterBuildConfigurationInfos(m_importInfos, id); Qt4TargetSetupWidget *widget = @@ -138,11 +138,11 @@ void TargetSetupPage::setupWidgets() this, SLOT(newImportBuildConfiguration(BuildConfigurationInfo))); } } - if (!atLeastOneTargetSelected) { - Qt4TargetSetupWidget *widget = m_widgets.value(Constants::DESKTOP_TARGET_ID); - if (widget) - widget->setTargetSelected(true); - } + } + if (!atLeastOneTargetSelected) { + Qt4TargetSetupWidget *widget = m_widgets.value(Constants::DESKTOP_TARGET_ID); + if (widget) + widget->setTargetSelected(true); } diff --git a/src/tools/qmlpuppet/qmlpuppet.pro b/src/tools/qmlpuppet/qmlpuppet.pro index f59765e533f..7772d9dc292 100644 --- a/src/tools/qmlpuppet/qmlpuppet.pro +++ b/src/tools/qmlpuppet/qmlpuppet.pro @@ -2,7 +2,11 @@ TARGET = qmlpuppet TEMPLATE = app -QT += core gui declarative network webkit +QT += core gui declarative network + +contains (QT_CONFIG, webkit) { + QT += webkit +} DEFINES += QWEAKPOINTER_ENABLE_ARROW diff --git a/tests/auto/debugger/dumpers.pro b/tests/auto/debugger/dumpers.pro index 7481f13f852..35d7a4d43f3 100644 --- a/tests/auto/debugger/dumpers.pro +++ b/tests/auto/debugger/dumpers.pro @@ -1,4 +1,5 @@ include(../qttest.pri) +include($$IDE_SOURCE_TREE/src/libs/symbianutils/symbianutils.pri) DEBUGGERDIR = $$IDE_SOURCE_TREE/src/plugins/debugger UTILSDIR = $$IDE_SOURCE_TREE/src/libs @@ -6,7 +7,6 @@ MACROSDIR = $$IDE_SOURCE_TREE/share/qtcreator/gdbmacros SOURCES += \ $$DEBUGGERDIR/gdb/gdbmi.cpp \ - $$DEBUGGERDIR/tcf/json.cpp \ $$MACROSDIR/gdbmacros.cpp \ tst_dumpers.cpp \ diff --git a/tests/auto/debugger/tst_dumpers.cpp b/tests/auto/debugger/tst_dumpers.cpp index 605073113f7..dddef7af74d 100644 --- a/tests/auto/debugger/tst_dumpers.cpp +++ b/tests/auto/debugger/tst_dumpers.cpp @@ -36,9 +36,9 @@ #undef private #include "gdb/gdbmi.h" -#include "tcf/json.h" #include "gdbmacros.h" #include "gdbmacros_p.h" +#include "json.h" #include diff --git a/tests/auto/qml/qmldesigner/coretests/tst_testcore.cpp b/tests/auto/qml/qmldesigner/coretests/tst_testcore.cpp index 3f454c30e43..d4f75e8f363 100644 --- a/tests/auto/qml/qmldesigner/coretests/tst_testcore.cpp +++ b/tests/auto/qml/qmldesigner/coretests/tst_testcore.cpp @@ -106,12 +106,12 @@ public: static void initializeMetaTypeSystem(const QString &resourcePath) { const QDir typeFileDir(resourcePath + QLatin1String("/qml-type-descriptions")); - const QStringList xmlExtensions = QStringList() << QLatin1String("*.xml"); - const QFileInfoList xmlFiles = typeFileDir.entryInfoList(xmlExtensions, + const QStringList qmlExtensions = QStringList() << QLatin1String("*.qml"); + const QFileInfoList qmlFiles = typeFileDir.entryInfoList(qmlExtensions, QDir::Files, QDir::Name); - const QStringList errors = QmlJS::Interpreter::CppQmlTypesLoader::load(xmlFiles); + const QStringList errors = QmlJS::Interpreter::CppQmlTypesLoader::loadQmlTypes(qmlFiles); foreach (const QString &error, errors) qWarning() << qPrintable(error); } @@ -867,7 +867,11 @@ void tst_TestCore::testRewriterChangeImports() // Add / Remove an import in the model // Import webkitImport = Import::createLibraryImport("QtWebKit", "1.0"); - model->addImport(webkitImport); + + QList importList; + importList << webkitImport; + + model->changeImports(importList, QList()); const QLatin1String qmlWithImport("\n" "import Qt 4.7\n" @@ -876,7 +880,7 @@ void tst_TestCore::testRewriterChangeImports() "Rectangle {}\n"); QCOMPARE(textEdit.toPlainText(), qmlWithImport); - model->removeImport(webkitImport); + model->changeImports(QList(), importList); QCOMPARE(model->imports().size(), 1); QCOMPARE(model->imports().first(), Import::createLibraryImport("Qt", "4.7")); @@ -887,8 +891,7 @@ void tst_TestCore::testRewriterChangeImports() // // Add / Remove an import in the model (with alias) // - webkitImport = Import::createLibraryImport("QtWebKit", "1.0", "Web"); - model->addImport(webkitImport); + model->changeImports(importList, QList()); const QLatin1String qmlWithAliasImport("\n" "import Qt 4.7\n" @@ -897,7 +900,7 @@ void tst_TestCore::testRewriterChangeImports() "Rectangle {}\n"); QCOMPARE(textEdit.toPlainText(), qmlWithAliasImport); - model->removeImport(webkitImport); + model->changeImports(QList(), importList); QCOMPARE(model->imports().size(), 1); QCOMPARE(model->imports().first(), Import::createLibraryImport("Qt", "4.7")); @@ -3479,7 +3482,7 @@ void tst_TestCore::testSubComponentManager() QScopedPointer model(Model::create("Qt/Item")); model->setFileUrl(QUrl::fromLocalFile(fileName)); QScopedPointer subComponentManager(new SubComponentManager(model->metaInfo(), 0)); - subComponentManager->update(QUrl::fromLocalFile(fileName), modifier.text().toUtf8()); + subComponentManager->update(QUrl::fromLocalFile(fileName), model->imports()); QScopedPointer testRewriterView(new TestRewriterView()); testRewriterView->setTextModifier(&modifier); diff --git a/tests/manual/ssh/errorhandling/main.cpp b/tests/manual/ssh/errorhandling/main.cpp index 75668f5493f..3900ab43c24 100644 --- a/tests/manual/ssh/errorhandling/main.cpp +++ b/tests/manual/ssh/errorhandling/main.cpp @@ -31,9 +31,9 @@ ** **************************************************************************/ -#include -#include -#include +#include +#include +#include #include #include @@ -41,7 +41,7 @@ #include #include -using namespace Core; +using namespace Utils; class Test : public QObject { Q_OBJECT @@ -69,24 +69,24 @@ public: noUser.host = QLatin1String("localhost"); noUser.port = 22; noUser.timeout = 30; - noUser.authType = SshConnectionParameters::AuthByPwd; - noUser.uname = QLatin1String("dumdidumpuffpuff"); - noUser.uname = QLatin1String("whatever"); + noUser.authenticationType = SshConnectionParameters::AuthenticationByPassword; + noUser.userName = QLatin1String("dumdidumpuffpuff"); + noUser.password = QLatin1String("whatever"); SshConnectionParameters wrongPwd=SshConnectionParameters(SshConnectionParameters::DefaultProxy); wrongPwd.host = QLatin1String("localhost"); wrongPwd.port = 22; wrongPwd.timeout = 30; - wrongPwd.authType = SshConnectionParameters::AuthByPwd; - wrongPwd.uname = QLatin1String("root"); - noUser.uname = QLatin1String("thiscantpossiblybeapasswordcanit"); + wrongPwd.authenticationType = SshConnectionParameters::AuthenticationByPassword; + wrongPwd.userName = QLatin1String("root"); + noUser.password = QLatin1String("thiscantpossiblybeapasswordcanit"); SshConnectionParameters invalidKeyFile=SshConnectionParameters(SshConnectionParameters::DefaultProxy); invalidKeyFile.host = QLatin1String("localhost"); invalidKeyFile.port = 22; invalidKeyFile.timeout = 30; - invalidKeyFile.authType = SshConnectionParameters::AuthByKey; - invalidKeyFile.uname = QLatin1String("root"); + invalidKeyFile.authenticationType = SshConnectionParameters::AuthenticationByKey; + invalidKeyFile.userName = QLatin1String("root"); invalidKeyFile.privateKeyFile = QLatin1String("somefilenamethatwedontexpecttocontainavalidkey"); @@ -129,7 +129,7 @@ private slots: qApp->quit(); } - void handleError(Core::SshError error) + void handleError(Utils::SshError error) { if (m_testSet.isEmpty()) { qDebug("Error: Received error %d, but no test was running.", error); @@ -173,8 +173,8 @@ private: SLOT(handleDisconnected())); connect(m_connection.data(), SIGNAL(dataAvailable(QString)), this, SLOT(handleDataAvailable(QString))); - connect(m_connection.data(), SIGNAL(error(Core::SshError)), this, - SLOT(handleError(Core::SshError))); + connect(m_connection.data(), SIGNAL(error(Utils::SshError)), this, + SLOT(handleError(Utils::SshError))); const TestItem &nextItem = m_testSet.first(); m_timeoutTimer.stop(); m_timeoutTimer.setInterval(qMax(10000, nextItem.params.timeout * 1000)); diff --git a/tests/manual/ssh/remoteprocess/argumentscollector.cpp b/tests/manual/ssh/remoteprocess/argumentscollector.cpp index 51d97c34601..9c8940173e2 100644 --- a/tests/manual/ssh/remoteprocess/argumentscollector.cpp +++ b/tests/manual/ssh/remoteprocess/argumentscollector.cpp @@ -36,16 +36,16 @@ #include using namespace std; -using namespace Core; +using namespace Utils; ArgumentsCollector::ArgumentsCollector(const QStringList &args) : m_arguments(args) { } -Core::SshConnectionParameters ArgumentsCollector::collect(bool &success) const +Utils::SshConnectionParameters ArgumentsCollector::collect(bool &success) const { - SshConnectionParameters parameters(Core::SshConnectionParameters::NoProxy); + SshConnectionParameters parameters(Utils::SshConnectionParameters::NoProxy); try { bool authTypeGiven = false; bool portGiven = false; @@ -55,24 +55,24 @@ Core::SshConnectionParameters ArgumentsCollector::collect(bool &success) const int port; for (pos = 1; pos < m_arguments.count() - 1; ++pos) { if (checkAndSetStringArg(pos, parameters.host, "-h") - || checkAndSetStringArg(pos, parameters.uname, "-u")) + || checkAndSetStringArg(pos, parameters.userName, "-u")) continue; if (checkAndSetIntArg(pos, port, portGiven, "-p") || checkAndSetIntArg(pos, parameters.timeout, timeoutGiven, "-t")) continue; - if (checkAndSetStringArg(pos, parameters.pwd, "-pwd")) { + if (checkAndSetStringArg(pos, parameters.password, "-pwd")) { if (!parameters.privateKeyFile.isEmpty()) throw ArgumentErrorException(QLatin1String("-pwd and -k are mutually exclusive.")); - parameters.authType - = SshConnectionParameters::AuthByPwd; + parameters.authenticationType + = SshConnectionParameters::AuthenticationByPassword; authTypeGiven = true; continue; } if (checkAndSetStringArg(pos, parameters.privateKeyFile, "-k")) { - if (!parameters.pwd.isEmpty()) + if (!parameters.password.isEmpty()) throw ArgumentErrorException(QLatin1String("-pwd and -k are mutually exclusive.")); - parameters.authType - = SshConnectionParameters::AuthByKey; + parameters.authenticationType + = SshConnectionParameters::AuthenticationByKey; authTypeGiven = true; continue; } @@ -90,7 +90,7 @@ Core::SshConnectionParameters ArgumentsCollector::collect(bool &success) const throw ArgumentErrorException(QLatin1String("No authentication argument given.")); if (parameters.host.isEmpty()) throw ArgumentErrorException(QLatin1String("No host given.")); - if (parameters.uname.isEmpty()) + if (parameters.userName.isEmpty()) throw ArgumentErrorException(QLatin1String("No user name given.")); parameters.port = portGiven ? port : 22; diff --git a/tests/manual/ssh/remoteprocess/argumentscollector.h b/tests/manual/ssh/remoteprocess/argumentscollector.h index aef3c9e03a2..f1d3335cbf2 100644 --- a/tests/manual/ssh/remoteprocess/argumentscollector.h +++ b/tests/manual/ssh/remoteprocess/argumentscollector.h @@ -34,7 +34,7 @@ #ifndef ARGUMENTSCOLLECTOR_H #define ARGUMENTSCOLLECTOR_H -#include +#include #include @@ -42,7 +42,7 @@ class ArgumentsCollector { public: ArgumentsCollector(const QStringList &args); - Core::SshConnectionParameters collect(bool &success) const; + Utils::SshConnectionParameters collect(bool &success) const; private: struct ArgumentErrorException { @@ -55,7 +55,7 @@ private: bool checkAndSetIntArg(int &pos, int &val, bool &alreadyGiven, const char *opt) const; bool checkForNoProxy(int &pos, - Core::SshConnectionParameters::ProxyType &type, + Utils::SshConnectionParameters::ProxyType &type, bool &alreadyGiven) const; const QStringList m_arguments; diff --git a/tests/manual/ssh/remoteprocess/main.cpp b/tests/manual/ssh/remoteprocess/main.cpp index b9eab672956..6fe29901b14 100644 --- a/tests/manual/ssh/remoteprocess/main.cpp +++ b/tests/manual/ssh/remoteprocess/main.cpp @@ -34,7 +34,7 @@ #include "argumentscollector.h" #include "remoteprocesstest.h" -#include +#include #include #include @@ -43,13 +43,13 @@ #include #include -using namespace Core; +using namespace Utils; int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); bool parseSuccess; - const Core::SshConnectionParameters ¶meters + const Utils::SshConnectionParameters ¶meters = ArgumentsCollector(app.arguments()).collect(parseSuccess); if (!parseSuccess) return EXIT_FAILURE; diff --git a/tests/manual/ssh/remoteprocess/remoteprocesstest.cpp b/tests/manual/ssh/remoteprocess/remoteprocesstest.cpp index 8cda3c3234c..303abed4d09 100644 --- a/tests/manual/ssh/remoteprocess/remoteprocesstest.cpp +++ b/tests/manual/ssh/remoteprocess/remoteprocesstest.cpp @@ -38,7 +38,7 @@ #include -using namespace Core; +using namespace Utils; RemoteProcessTest::RemoteProcessTest(const SshConnectionParameters ¶ms) : m_timeoutTimer(new QTimer(this)), @@ -53,7 +53,7 @@ RemoteProcessTest::~RemoteProcessTest() { } void RemoteProcessTest::run() { - connect(m_remoteRunner.data(), SIGNAL(connectionError(Core::SshError)), + connect(m_remoteRunner.data(), SIGNAL(connectionError(Utils::SshError)), SLOT(handleConnectionError())); connect(m_remoteRunner.data(), SIGNAL(processStarted()), SLOT(handleProcessStarted())); @@ -88,7 +88,7 @@ void RemoteProcessTest::handleProcessStarted() } else { m_started = true; if (m_state == TestingCrash) { - Core::SshRemoteProcess::Ptr killer + Utils::SshRemoteProcess::Ptr killer = m_remoteRunner->connection()->createRemoteProcess("pkill -9 sleep"); killer->start(); } diff --git a/tests/manual/ssh/remoteprocess/remoteprocesstest.h b/tests/manual/ssh/remoteprocess/remoteprocesstest.h index 2cb4cfb676f..97772c1533d 100644 --- a/tests/manual/ssh/remoteprocess/remoteprocesstest.h +++ b/tests/manual/ssh/remoteprocess/remoteprocesstest.h @@ -34,7 +34,7 @@ #ifndef SFTPTEST_H #define SFTPTEST_H -#include +#include QT_FORWARD_DECLARE_CLASS(QTimer); #include @@ -43,7 +43,7 @@ class RemoteProcessTest : public QObject { Q_OBJECT public: - RemoteProcessTest(const Core::SshConnectionParameters ¶ms); + RemoteProcessTest(const Utils::SshConnectionParameters ¶ms); ~RemoteProcessTest(); void run(); @@ -59,7 +59,7 @@ private: enum State { Inactive, TestingSuccess, TestingFailure, TestingCrash }; QTimer * const m_timeoutTimer; - const Core::SshRemoteProcessRunner::Ptr m_remoteRunner; + const Utils::SshRemoteProcessRunner::Ptr m_remoteRunner; QByteArray m_remoteStdout; QByteArray m_remoteStderr; State m_state; diff --git a/tests/manual/ssh/sftp/argumentscollector.cpp b/tests/manual/ssh/sftp/argumentscollector.cpp index b4ea1ef20ad..fd9723203b3 100644 --- a/tests/manual/ssh/sftp/argumentscollector.cpp +++ b/tests/manual/ssh/sftp/argumentscollector.cpp @@ -36,7 +36,7 @@ #include using namespace std; -using namespace Core; +using namespace Utils; ArgumentsCollector::ArgumentsCollector(const QStringList &args) : m_arguments(args) @@ -57,26 +57,26 @@ Parameters ArgumentsCollector::collect(bool &success) const int port; for (pos = 1; pos < m_arguments.count() - 1; ++pos) { if (checkAndSetStringArg(pos, parameters.sshParams.host, "-h") - || checkAndSetStringArg(pos, parameters.sshParams.uname, "-u")) + || checkAndSetStringArg(pos, parameters.sshParams.userName, "-u")) continue; if (checkAndSetIntArg(pos, port, portGiven, "-p") || checkAndSetIntArg(pos, parameters.sshParams.timeout, timeoutGiven, "-t") || checkAndSetIntArg(pos, parameters.smallFileCount, smallFileCountGiven, "-c") || checkAndSetIntArg(pos, parameters.bigFileSize, bigFileSizeGiven, "-s")) continue; - if (checkAndSetStringArg(pos, parameters.sshParams.pwd, "-pwd")) { + if (checkAndSetStringArg(pos, parameters.sshParams.password, "-pwd")) { if (!parameters.sshParams.privateKeyFile.isEmpty()) throw ArgumentErrorException(QLatin1String("-pwd and -k are mutually exclusive.")); - parameters.sshParams.authType - = SshConnectionParameters::AuthByPwd; + parameters.sshParams.authenticationType + = SshConnectionParameters::AuthenticationByPassword; authTypeGiven = true; continue; } if (checkAndSetStringArg(pos, parameters.sshParams.privateKeyFile, "-k")) { - if (!parameters.sshParams.pwd.isEmpty()) + if (!parameters.sshParams.password.isEmpty()) throw ArgumentErrorException(QLatin1String("-pwd and -k are mutually exclusive.")); - parameters.sshParams.authType - = SshConnectionParameters::AuthByKey; + parameters.sshParams.authenticationType + = SshConnectionParameters::AuthenticationByKey; authTypeGiven = true; continue; } @@ -94,7 +94,7 @@ Parameters ArgumentsCollector::collect(bool &success) const throw ArgumentErrorException(QLatin1String("No authentication argument given.")); if (parameters.sshParams.host.isEmpty()) throw ArgumentErrorException(QLatin1String("No host given.")); - if (parameters.sshParams.uname.isEmpty()) + if (parameters.sshParams.userName.isEmpty()) throw ArgumentErrorException(QLatin1String("No user name given.")); parameters.sshParams.port = portGiven ? port : 22; diff --git a/tests/manual/ssh/sftp/argumentscollector.h b/tests/manual/ssh/sftp/argumentscollector.h index df3d2c89f8c..0430e62fa4e 100644 --- a/tests/manual/ssh/sftp/argumentscollector.h +++ b/tests/manual/ssh/sftp/argumentscollector.h @@ -55,7 +55,7 @@ private: bool checkAndSetIntArg(int &pos, int &val, bool &alreadyGiven, const char *opt) const; bool checkForNoProxy(int &pos, - Core::SshConnectionParameters::ProxyType &type, + Utils::SshConnectionParameters::ProxyType &type, bool &alreadyGiven) const; const QStringList m_arguments; diff --git a/tests/manual/ssh/sftp/main.cpp b/tests/manual/ssh/sftp/main.cpp index 2966ab4aa9e..e29ee3c6ced 100644 --- a/tests/manual/ssh/sftp/main.cpp +++ b/tests/manual/ssh/sftp/main.cpp @@ -34,8 +34,8 @@ #include "argumentscollector.h" #include "sftptest.h" -#include -#include +#include +#include #include #include @@ -44,7 +44,7 @@ #include #include -using namespace Core; +using namespace Utils; int main(int argc, char *argv[]) { diff --git a/tests/manual/ssh/sftp/parameters.h b/tests/manual/ssh/sftp/parameters.h index 2e475de5e95..60cd8015420 100644 --- a/tests/manual/ssh/sftp/parameters.h +++ b/tests/manual/ssh/sftp/parameters.h @@ -34,12 +34,12 @@ #ifndef PARAMETERS_H #define PARAMETERS_H -#include +#include struct Parameters { - Parameters() : sshParams(Core::SshConnectionParameters::DefaultProxy) {} + Parameters() : sshParams(Utils::SshConnectionParameters::DefaultProxy) {} - Core::SshConnectionParameters sshParams; + Utils::SshConnectionParameters sshParams; int smallFileCount; int bigFileSize; }; diff --git a/tests/manual/ssh/sftp/sftptest.cpp b/tests/manual/ssh/sftp/sftptest.cpp index 854c654ff05..8e795eea433 100644 --- a/tests/manual/ssh/sftp/sftptest.cpp +++ b/tests/manual/ssh/sftp/sftptest.cpp @@ -41,7 +41,7 @@ #include -using namespace Core; +using namespace Utils; SftpTest::SftpTest(const Parameters ¶ms) : m_parameters(params), m_state(Inactive), m_error(false), @@ -61,7 +61,7 @@ void SftpTest::run() m_connection = SshConnection::create(); connect(m_connection.data(), SIGNAL(connected()), this, SLOT(handleConnected())); - connect(m_connection.data(), SIGNAL(error(Core::SshError)), this, + connect(m_connection.data(), SIGNAL(error(Utils::SshError)), this, SLOT(handleError())); connect(m_connection.data(), SIGNAL(disconnected()), this, SLOT(handleDisconnected())); @@ -84,8 +84,8 @@ void SftpTest::handleConnected() SLOT(handleChannelInitialized())); connect(m_channel.data(), SIGNAL(initializationFailed(QString)), this, SLOT(handleChannelInitializationFailure(QString))); - connect(m_channel.data(), SIGNAL(finished(Core::SftpJobId, QString)), - this, SLOT(handleJobFinished(Core::SftpJobId, QString))); + connect(m_channel.data(), SIGNAL(finished(Utils::SftpJobId, QString)), + this, SLOT(handleJobFinished(Utils::SftpJobId, QString))); connect(m_channel.data(), SIGNAL(closed()), this, SLOT(handleChannelClosed())); m_state = InitializingChannel; @@ -192,7 +192,7 @@ void SftpTest::handleChannelClosed() m_connection->disconnectFromHost(); } -void SftpTest::handleJobFinished(Core::SftpJobId job, const QString &error) +void SftpTest::handleJobFinished(Utils::SftpJobId job, const QString &error) { switch (m_state) { case UploadingSmall: diff --git a/tests/manual/ssh/sftp/sftptest.h b/tests/manual/ssh/sftp/sftptest.h index 666542bba22..be4e51fd131 100644 --- a/tests/manual/ssh/sftp/sftptest.h +++ b/tests/manual/ssh/sftp/sftptest.h @@ -36,8 +36,8 @@ #include "parameters.h" -#include -#include +#include +#include #include #include @@ -61,11 +61,11 @@ private slots: void handleDisconnected(); void handleChannelInitialized(); void handleChannelInitializationFailure(const QString &reason); - void handleJobFinished(Core::SftpJobId job, const QString &error); + void handleJobFinished(Utils::SftpJobId job, const QString &error); void handleChannelClosed(); private: - typedef QHash JobMap; + typedef QHash JobMap; typedef QSharedPointer FilePtr; enum State { Inactive, Connecting, InitializingChannel, UploadingSmall, DownloadingSmall, RemovingSmall, UploadingBig, DownloadingBig, @@ -77,25 +77,25 @@ private: QString cmpFileName(const QString &localFileName) const; QString remoteFilePath(const QString &localFileName) const; void earlyDisconnectFromHost(); - bool handleJobFinished(Core::SftpJobId job, JobMap &jobMap, + bool handleJobFinished(Utils::SftpJobId job, JobMap &jobMap, const QString &error, const char *activity); - bool handleBigJobFinished(Core::SftpJobId job, Core::SftpJobId expectedJob, + bool handleBigJobFinished(Utils::SftpJobId job, Utils::SftpJobId expectedJob, const QString &error, const char *activity); bool compareFiles(QFile *orig, QFile *copy); const Parameters m_parameters; State m_state; bool m_error; - Core::SshConnection::Ptr m_connection; - Core::SftpChannel::Ptr m_channel; + Utils::SshConnection::Ptr m_connection; + Utils::SftpChannel::Ptr m_channel; QList m_localSmallFiles; JobMap m_smallFilesUploadJobs; JobMap m_smallFilesDownloadJobs; JobMap m_smallFilesRemovalJobs; FilePtr m_localBigFile; - Core::SftpJobId m_bigFileUploadJob; - Core::SftpJobId m_bigFileDownloadJob; - Core::SftpJobId m_bigFileRemovalJob; + Utils::SftpJobId m_bigFileUploadJob; + Utils::SftpJobId m_bigFileDownloadJob; + Utils::SftpJobId m_bigFileRemovalJob; QElapsedTimer m_bigJobTimer; };