diff --git a/cmake/QtCreatorTranslations.cmake b/cmake/QtCreatorTranslations.cmake index cd50d72f101..2fb3f799822 100644 --- a/cmake/QtCreatorTranslations.cmake +++ b/cmake/QtCreatorTranslations.cmake @@ -97,12 +97,23 @@ function(_create_ts_custom_target name) DEPENDS ${_sources} VERBATIM) - add_custom_target("${_arg_TS_TARGET_PREFIX}${name}_cleaned" - COMMAND Qt5::lupdate -locations relative -no-ui-lines -no-sort -no-obsolete -locations none "@${ts_file_list}" -ts ${ts_files} - WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" - COMMENT "Generate .ts files, remove obsolete and vanished translations, and do not add files and line number" - DEPENDS ${_sources} - VERBATIM) + # Add cleaned target only for single-ts targets + # Uses lupdate + convert instead of just lupdate with '-locations none -no-obsolete' + # to keep the same sorting as the non-'cleaned' target and therefore keep the diff small + list(LENGTH ts_files file_count) + if(file_count EQUAL 1) + # get path for lconvert... + get_target_property(_lupdate_binary Qt5::lupdate IMPORTED_LOCATION) + get_filename_component(_bin_dir ${_lupdate_binary} DIRECTORY) + + add_custom_target("${_arg_TS_TARGET_PREFIX}${name}_cleaned" + COMMAND Qt5::lupdate -locations relative -no-ui-lines -no-sort "@${ts_file_list}" -ts ${ts_files} + COMMAND ${_bin_dir}/lconvert -locations none -no-ui-lines -no-obsolete ${ts_files} -o ${ts_files} + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + COMMENT "Generate .ts files, remove obsolete and vanished translations, and do not add files and line number" + DEPENDS ${_sources} + VERBATIM) + endif() endfunction() function(add_translation_targets file_prefix) diff --git a/dist/changelog/changes-9.0.0.md b/dist/changelog/changes-9.0.0.md index f9abdee16a9..ff68a247cc2 100644 --- a/dist/changelog/changes-9.0.0.md +++ b/dist/changelog/changes-9.0.0.md @@ -19,6 +19,8 @@ General * Locator `t` filter * Added non-menu actions * Added fuzzy matching +* Added `Remove Folder` to `File System` view (QTCREATORBUG-27331) +* Fixed that clipboard was cleared on shutdown (QTCREATORBUG-28317) Help ---- @@ -53,6 +55,7 @@ Editing action (QTCREATORBUG-28099) * Fixed that selection was not considered for refactoring actions (QTCREATORBUG-27886) +* Fixed code style preview editor size (QTCREATORBUG-27267) * Clangd * Added option for using single Clangd instance for the whole session (QTCREATORBUG-26526) @@ -70,6 +73,8 @@ Editing session load (QTCREATORBUG-22584) * ClangFormat * Moved settings back to top level preferences page + * Updated formatting options (QTCREATORBUG-28263) + * Fixed indentation of comments (QTCREATORBUG-25539) ### Language Server Protocol @@ -77,10 +82,18 @@ Editing * Fixed that server was not restarted after 5 times, even if a long time passed after the last time +### QML + +* Fixed that `Follow Symbol` could open file from build directory + (QTCREATORBUG-27173) +* Fixed cursor position and breakpoints after reformatting (QTCREATORBUG-25218, + QTCREATORBUG-28349) + ### Image Viewer * Made `Fit to Screen` sticky and added option for the default (QTCREATORBUG-27816) +* Cleaned up tool bar (QTCREATORBUG-28309) ### Diff Viewer @@ -94,6 +107,8 @@ Projects (QTCREATORBUG-26069) * Fixed that opening terminal from build environment settings did not change directory to build directory +* Fixed that local environment was used when inspecting GCC toolchain on remote +* Fixed stopping terminal process (QTCREATORBUG-28365) ### CMake @@ -101,6 +116,7 @@ Projects * Turned `Package manager auto setup` off by default * Added support for CMake configure and build presets, including conditions and toolchain files (QTCREATORBUG-24555) + ([CMake Documentation](https://cmake.org/cmake/help/v3.21/manual/cmake-presets.7.html)) * Added option for changing environment for configure step * Added option for hiding subfolders in source groups (QTCREATORBUG-27432) * Added support for `Build File` also from header files (QTCREATORBUG-26164) @@ -116,6 +132,11 @@ Projects * Added workaround for `mkspec`s that add compiler flags to `QMAKE_CXX` (QTCREATORBUG-28201) +* Fixed unnecessary updates after project build (QTCREATORBUG-27785) + +### Python + +* Adapted to move of project tool to `PySide6-Essentials` package Debugging --------- @@ -124,6 +145,15 @@ Debugging devices * Fixed display of strings with characters more than 2 bytes long * Improved type name lookup performance for heavily templated code +* Improved display performance for large array-like data (QTCREATORBUG-28111) + +Analyzer +-------- + +### Clang + +* Fixed error when analyzing non-desktop targets (QTCREATORBUG-25615) +* Fixed wrong failure count display (QTCREATORBUG-27330) Version Control Systems ----------------------- @@ -132,8 +162,10 @@ Version Control Systems * Added support for user-configured comment character (QTCREATORBUG-28042) * Improved matching of commit hashes (QTCREATORBUG-24768, QTCREATORBUG-28268) -* Fixed adding or deleting files in nested directories (QTCREATORBUG-27644, QTCREATORBUG-27405) +* Fixed adding or deleting files in nested directories (QTCREATORBUG-27644, + QTCREATORBUG-27405) * Fixed that text encoding in project settings was not respected on diff + (QTCREATORBUG-21794) Test Integration ---------------- @@ -142,6 +174,8 @@ Test Integration ([Documentation](https://doc-snapshots.qt.io/qtcreator-9.0/creator-squish.html)) * Catch 2 * Fixed handling of exceptions (QTCREATORBUG-28131) + * Fixed crash (QTCREATORBUG-28269) + * Fixed handling of `WARN`, `FAIL` and `INFO` (QTCREATORBUG-28394) Platforms --------- @@ -153,12 +187,27 @@ Platforms * Fixed issues when drives are mapped (QTCREATORBUG-27869, QTCREATORBUG-28031) * Fixed that output could be missing for Qt based external tools (QTCREATORBUG-27828) +* Fixed that Clink and other applications could increase startup time for + toolchain detection (QTCREATORBUG-27906) +* Fixed that running Qt Creator from a MSVC environment could interfere with + MSVC auto-detection (QTCREATORBUG-28315) ### macOS * Added auto-detection of `ccache` compilers from Homebrew (QTCREATORBUG-27792) * Fixed that theme partially switched between dark and light when system theme changed during runtime (QTCREATORBUG-28066) +* Fixed wrong target being set for the code model for iOS kits + (QTCREATORBUG-28278) +* Fixed that Touch Bar contained `Edit Bookmark` instead of `Toggle Bookmark` + (QTCREATORBUG-28108) +* Fixed missing `Search` item in `Help` menu (QTCREATORBUG-24751) + +### Android + +* Fixed emulator operations when the deprecated `SDK Tools` is installed in + addition to `SDK Command-line Tools` (QTCREATORBUG-28196) +* Fixed debugging over WiFi (QTCREATORBUG-28342) ### iOS @@ -166,10 +215,15 @@ Platforms ### Remote Linux +* Enable usage as build device * Added option for SSH port to wizard * Added fallback for devices without `base64` * Added experimental support to user remote linux build devices (QTCREATORBUG-28242) +### Boot to Qt + +* Fixed that `rsync` was not available for deployment (QTCREATORBUG-24731) + ### Docker * Added option for `docker` command @@ -181,16 +235,21 @@ Platforms * Added sorting of images * Added option to hide images without tag * Added double-click for selecting image +* Fixed `Browse` button for build directory for remote directories * Fixed interrupting and pausing of GDB * Fixed running `ctest` on device +* Fixed mounting paths with spaces or colons +* Fixed opening remote text files without extension Credits for these changes go to: -------------------------------- Aaron Barany +Adam Sowa Alessandro Portale Alexander Akulich Alexander Drozdov André Pönitz +Ari Parkkila Artem Sokolovskii Assam Boudjelthia Björn Schäpers @@ -205,6 +264,7 @@ Fawzi Mohamed Florian Koch Henning Gruendl Jaroslaw Kobus +Kwangsub Kim Leena Miettinen Lucie Gérard Marc Mutz @@ -213,6 +273,7 @@ Marcus Tillmanns Miikka Heikkinen Orgad Shaneh Piotr Mućko +Rainer Keller Robert Löhning Sergey Levin Sivert Krøvel diff --git a/doc/qtcreator/images/qtcreator-docker-image-selection.png b/doc/qtcreator/images/qtcreator-docker-image-selection.png deleted file mode 100644 index 72401c2f320..00000000000 Binary files a/doc/qtcreator/images/qtcreator-docker-image-selection.png and /dev/null differ diff --git a/doc/qtcreator/images/qtcreator-docker-image-selection.webp b/doc/qtcreator/images/qtcreator-docker-image-selection.webp new file mode 100644 index 00000000000..24eda419f3b Binary files /dev/null and b/doc/qtcreator/images/qtcreator-docker-image-selection.webp differ diff --git a/doc/qtcreator/images/qtcreator-docker-preferences.png b/doc/qtcreator/images/qtcreator-docker-preferences.png deleted file mode 100644 index 0b087201778..00000000000 Binary files a/doc/qtcreator/images/qtcreator-docker-preferences.png and /dev/null differ diff --git a/doc/qtcreator/images/qtcreator-filesystem-view.png b/doc/qtcreator/images/qtcreator-filesystem-view.png deleted file mode 100644 index d5feec00537..00000000000 Binary files a/doc/qtcreator/images/qtcreator-filesystem-view.png and /dev/null differ diff --git a/doc/qtcreator/images/qtcreator-filesystem-view.webp b/doc/qtcreator/images/qtcreator-filesystem-view.webp new file mode 100644 index 00000000000..957a0e4b1b9 Binary files /dev/null and b/doc/qtcreator/images/qtcreator-filesystem-view.webp differ diff --git a/doc/qtcreator/images/qtcreator-generic-linux-device-key-deployment.png b/doc/qtcreator/images/qtcreator-generic-linux-device-key-deployment.png deleted file mode 100644 index cea3c218d45..00000000000 Binary files a/doc/qtcreator/images/qtcreator-generic-linux-device-key-deployment.png and /dev/null differ diff --git a/doc/qtcreator/images/qtcreator-linux-device-configurations.png b/doc/qtcreator/images/qtcreator-linux-device-configurations.png deleted file mode 100644 index 58d4362da1e..00000000000 Binary files a/doc/qtcreator/images/qtcreator-linux-device-configurations.png and /dev/null differ diff --git a/doc/qtcreator/images/qtcreator-options-build-run-debuggers.png b/doc/qtcreator/images/qtcreator-options-build-run-debuggers.png deleted file mode 100644 index d4cac7e190a..00000000000 Binary files a/doc/qtcreator/images/qtcreator-options-build-run-debuggers.png and /dev/null differ diff --git a/doc/qtcreator/images/qtcreator-preferences-devices-docker-device.webp b/doc/qtcreator/images/qtcreator-preferences-devices-docker-device.webp new file mode 100644 index 00000000000..413112c9393 Binary files /dev/null and b/doc/qtcreator/images/qtcreator-preferences-devices-docker-device.webp differ diff --git a/doc/qtcreator/images/qtcreator-preferences-devices-docker.webp b/doc/qtcreator/images/qtcreator-preferences-devices-docker.webp new file mode 100644 index 00000000000..3e071a73742 Binary files /dev/null and b/doc/qtcreator/images/qtcreator-preferences-devices-docker.webp differ diff --git a/doc/qtcreator/images/qtcreator-preferences-devices-remote-linux-connection.webp b/doc/qtcreator/images/qtcreator-preferences-devices-remote-linux-connection.webp new file mode 100644 index 00000000000..5313f254f6e Binary files /dev/null and b/doc/qtcreator/images/qtcreator-preferences-devices-remote-linux-connection.webp differ diff --git a/doc/qtcreator/images/qtcreator-preferences-devices-remote-linux-key-deployment.webp b/doc/qtcreator/images/qtcreator-preferences-devices-remote-linux-key-deployment.webp new file mode 100644 index 00000000000..eac14f341c8 Binary files /dev/null and b/doc/qtcreator/images/qtcreator-preferences-devices-remote-linux-key-deployment.webp differ diff --git a/doc/qtcreator/images/qtcreator-preferences-devices-remote-linux.webp b/doc/qtcreator/images/qtcreator-preferences-devices-remote-linux.webp new file mode 100644 index 00000000000..a7fcb124adf Binary files /dev/null and b/doc/qtcreator/images/qtcreator-preferences-devices-remote-linux.webp differ diff --git a/doc/qtcreator/images/qtcreator-preferences-kits-debuggers.webp b/doc/qtcreator/images/qtcreator-preferences-kits-debuggers.webp new file mode 100644 index 00000000000..659fda822e2 Binary files /dev/null and b/doc/qtcreator/images/qtcreator-preferences-kits-debuggers.webp differ diff --git a/doc/qtcreator/images/qtcreator-screenshot-devconf-linux.png b/doc/qtcreator/images/qtcreator-screenshot-devconf-linux.png deleted file mode 100644 index fa76062961c..00000000000 Binary files a/doc/qtcreator/images/qtcreator-screenshot-devconf-linux.png and /dev/null differ diff --git a/doc/qtcreator/src/android/androiddev.qdoc b/doc/qtcreator/src/android/androiddev.qdoc index b0f7123eef3..6d716531abd 100644 --- a/doc/qtcreator/src/android/androiddev.qdoc +++ b/doc/qtcreator/src/android/androiddev.qdoc @@ -216,7 +216,7 @@ To start an AVD, select \uicontrol {Start AVD}. Usually, you don't need to start AVDs separately because they are automatically started when you select them in the \l{Building for Multiple Platforms}{kit selector} to - \l{Deploying Applications to Android Devices}{deploy applications} to them. + \l{Deploying to Android}{deploy applications} to them. To remove an AVD from the list and the kit selector, select \uicontrol {Erase AVD}. diff --git a/doc/qtcreator/src/android/deploying-android.qdoc b/doc/qtcreator/src/android/deploying-android.qdoc index cb90091da65..3fb8735f7cc 100644 --- a/doc/qtcreator/src/android/deploying-android.qdoc +++ b/doc/qtcreator/src/android/deploying-android.qdoc @@ -6,7 +6,7 @@ \page creator-deploying-android.html \nextpage creator-deployment-b2qt.html - \title Deploying Applications to Android Devices + \title Deploying to Android On Android, applications are distributed in specially structured types of ZIP packages called Application Packages (APK) or Android App Bundles (AAB). diff --git a/doc/qtcreator/src/cmake/creator-projects-cmake.qdoc b/doc/qtcreator/src/cmake/creator-projects-cmake.qdoc index c6eefa5db24..53ac4065900 100644 --- a/doc/qtcreator/src/cmake/creator-projects-cmake.qdoc +++ b/doc/qtcreator/src/cmake/creator-projects-cmake.qdoc @@ -176,6 +176,6 @@ \li \l {Opening Projects} \li \l {CMake Build Configuration} \li \l {Specifying Run Settings} - \li \l {Deploying Applications to Generic Remote Linux Devices} + \li \l {Deploying to Remote Linux} \endlist */ diff --git a/doc/qtcreator/src/debugger/creator-only/creator-debugger-setup.qdoc b/doc/qtcreator/src/debugger/creator-only/creator-debugger-setup.qdoc index 5c78cdc1f5b..a853d2511ba 100644 --- a/doc/qtcreator/src/debugger/creator-only/creator-debugger-setup.qdoc +++ b/doc/qtcreator/src/debugger/creator-only/creator-debugger-setup.qdoc @@ -162,24 +162,29 @@ \section2 Debugging Tools for Windows - To use the CDB debugger, you must install the - \e{Debugging tools for Windows}. You can download them from - \l{https://developer.microsoft.com/windows/downloads/windows-10-sdk} - {Download and Install Debugging Tools for Windows} as part of the Windows - SDK. + To use the CDB debugger, install the \e {Debugging Tools for Windows} when + you install \QC either by using the Qt Online Installer (in \uicontrol Qt + > \uicontrol Tools > \uicontrol {\QC}) or by using the stand-alone \QC + installation packages. - \note Visual Studio does not include the Debugging tools needed, - and therefore, you must install them separately. + The 32-bit CDB version can only debug 32-bit executables, whereas the 64-bit + version can debug both 64-bit and 32-bit executables. However, interrupting a + 32-bit executable with a 64-bit debugger can result in a stacktrace of the + WOW64 emulator 32-bit emulation layer being displayed. - In addition, you must select \uicontrol {\QC CDB Debugger Support} - (in \uicontrol Qt > \uicontrol Tools > \uicontrol {\QC}) when you install - Qt or the stand-alone \QC. + \QC extends the command line debugger by loading the + \c qtcreatorcdbext.dll extension library into it. The + library must be available in the \c {libs\qtcreatorcdbext64} + and \c {libs\qtcreatorcdbext32} folder. To install it there, + select \uicontrol {\QC CDB Debugger Support} when you install \QC. When manually building \QC using the Microsoft Visual C++ Compiler, the build process checks for the required files in \c{"%ProgramFiles%\Debugging Tools for Windows"}. + \section3 Symbol Server + It is highly recommended that you add the Symbol Server provided by Microsoft to the symbol search path of the debugger. The Symbol Server provides you with debugging informaton for the diff --git a/doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc b/doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc index 8f929789059..e6c4ae95fbd 100644 --- a/doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc +++ b/doc/qtcreator/src/debugger/creator-only/creator-debugger.qdoc @@ -1504,8 +1504,12 @@ \li Make sure you use at least \QC 3.0.1 - \li Make sure the debugger is set up properly. For more information, - see \l{Setting Up Debugger}. + \li Select the \inlineimage icons/run_small.png + (\uicontrol Run) button to verify that the + \l {Running on Multiple Platforms}{build and run kit selector} + picked a runnable target and you can run the application. + + \li Make sure the debugger is \l{Setting Up Debugger}{set up properly}. \li In the \uicontrol Debug mode, select \uicontrol View > \uicontrol Views > \uicontrol {Debugger Log} to open the @@ -1516,6 +1520,8 @@ \l{Pasting and Fetching Code Snippets}{code pasting service} before asking questions in the IRC (on the #qt-creator channel at Libera.Chat). + \note Error 135 usually means that a dependent DLL cannot be found. + \endlist \section1 Pointer Variable Members Are Not Displayed Directly @@ -1526,6 +1532,9 @@ select \uicontrol {Dereference Pointers Automatically} in the context menu in the \uicontrol Locals and \uicontrol Expressions views. + If you cannot view variables at all, check that you selected a \e debug build + configuration. + \section1 Structure Members Are Not Sorted According to Structure Layout By default, structure members are displayed in alphabetic order. To inspect @@ -1536,7 +1545,9 @@ \section1 Built-in Debugger Is Slow During Startup and Runtime Slowness that is related to the loading of debug information is hard to - avoid. + avoid. The following sections describe some possible solutions. + + \section2 Caching GDB Symbol Index When using GDB as backend, you can automatically save a copy of its symbol index in a cache on disk and retrieve it from there @@ -1546,12 +1557,38 @@ \image qtcreator-gdb-options.png "GDB preferences" - Some slowness stems from maintaining breakpoints inside + \section2 Minimizing Number of Breakpoints + + Some debugging slowness stems from maintaining breakpoints inside the debugger (under some circumstances all breakpoints need to be inserted and removed again for each step) and the evaluation of expressions after each step. We recommend that you minimize the number of breakpoints and watched expressions. + \section2 Cleaning Builds + + If out-of-date .pdb files make debugging slower, try a clean build. + + \section2 Disabling Incremental Linking + + Incremental linking can affect debugging. If the debugger log contains + the \e {Unable to verify checksum of module} message, disable incremental + linking. + + When using CMake as the build system, add the following line to the project + CMakeLists.txt file: + + \badcode + set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /INCREMENTAL:NO" ) + \endcode + + When using qmake as the build system, add the following line to the project + .pro file: + + \badcode + QMAKE_LFLAGS_DEBUG += /INCREMENTAL:NO + \endcode + \section1 Debugger Cannot Attach to Running Process on Linux GDB uses \c ptrace to attach to running processes. Some Linux distributions diff --git a/doc/qtcreator/src/docker/creator-docker.qdoc b/doc/qtcreator/src/docker/creator-docker.qdoc index 4e482a2e78e..d0123a2cdd5 100644 --- a/doc/qtcreator/src/docker/creator-docker.qdoc +++ b/doc/qtcreator/src/docker/creator-docker.qdoc @@ -4,15 +4,14 @@ /*! \page creator-adding-docker-devices.html \previouspage creator-developing-b2qt.html - \nextpage creator-developing-generic-linux.html + \nextpage creator-developing-ios.html \title Adding Docker Devices - You can add \l{ https://docs.docker.com/get-started/overview/} - {Docker images} as \e devices to run, debug, and analyze applications - built for the Docker container from \QC. A Docker device operates like - a virtual machine but uses less system resources at the cost of being - less flexible. + Create Docker devices from \l{ https://docs.docker.com/get-started/overview/} + {Docker images} and use them to build, run, and debug applications. A Docker + container operates like a virtual machine but uses less system resources at + the cost of being less flexible. Docker support is experimental. While Linux, \macos, and Windows hosts are supported in principle, Linux is the recommended platform. @@ -20,18 +19,19 @@ Currently, only CMake is supported for building applications in the Docker container. - You can run applications locally or in a compatible Docker container. To be - able to run and debug applications on Docker devices, you must install Docker - as well as add Docker devices and select them in the kit. \QC automatically - detects kits in the shared Docker directories, but you need to check that - they point to the correct kit items. + To build, run, and debug applications on Docker devices, you must install and + configure \c docker-cli on the development host. \QC automatically detects + \l{Adding Kits}{build and run kit} items, such \l{Adding Debuggers} + {debuggers} and \l{Adding Qt Versions}{Qt versions}, in the Docker container + and creates kits for the devices. - Use a wizard to search for Docker images available on your local Docker - installation and add them as devices. To access images from Docker hub or - other registries, you first need to pull the images using the + You can use images that are available locally. You can pull + images from Docker hub or other registries using the \l{https://docs.docker.com/engine/reference/commandline/pull/}{docker pull} - command. You can edit the Docker device preferences later in - \uicontrol Edit > \uicontrol Preferences > \uicontrol Devices. + command. To check that an image is available locally, run the + \c {docker images} command in a terminal. + + \section1 Enabling Docker Plugin To enable the experimental Docker plugin: @@ -41,33 +41,67 @@ \li Select \uicontrol {Restart Now} to restart \QC and load the plugin. \endlist + \section1 Adding Docker Images as Devices + To add a Docker image as a device: \list 1 \li Select \uicontrol Edit > \uicontrol Preferences > \uicontrol Devices - > \uicontrol Devices > \uicontrol Add > \uicontrol {Docker Device} - > \uicontrol {Start Wizard} to search for images in your local Docker - installation. - \image qtcreator-docker-image-selection.png "Docker Image Selection dialog" + > \uicontrol Docker and enter the path to the Docker CLI in + the \uicontrol Command field. + \image qtcreator-preferences-devices-docker.webp "Docker tab in Devices preferences" + \li Select \uicontrol Devices > \uicontrol Add > + \uicontrol {Docker Device} > \uicontrol {Start Wizard} + to search for images in your local Docker installation. \li Select the Docker image to use, and then select \uicontrol OK. - \note If the Docker process is not found, make sure that Docker is - running and the Docker CLI executable is set in PATH. \li In \uicontrol Devices, check and modify Docker device preferences. - \image qtcreator-docker-preferences.png "Docker Device preferences" - \li Select \uicontrol {Run as outside user} to use the user ID and - group ID of the user running \QC in the Docker container. - \li In \uicontrol {Paths to mount}, specify host directories to mount - into the container, such as the project directory. - \li Select \uicontrol {Auto-detect Kit Items} to generate an initial - \l{Adding Kits}{build and run kit} for the Docker device. + \image qtcreator-preferences-devices-docker-device.webp "Docker device preferences" + \li Select \uicontrol {Run as outside user} to use the user ID + and group ID of the user running \QC in the Docker container. + \li Select \uicontrol {Do not modify entry point} to stop \QC from + modifying the entry point of the image if the image starts into + a shell. + \li In \uicontrol {Paths to mount}, specify host directories to + mount into the container, such as the project directory. + \li In \uicontrol {Search locations}, select where to search + for kit items. + \li Select \uicontrol {Auto-detect Kit Items} to find kit items and to + create kits for the Docker device. + \li Select \uicontrol Apply to save your changes. \endlist - \section1 Specifying Paths to Mount + The following sections describe the Docker device preferences in more detail. + + \section2 Selecting Docker Images + + The \uicontrol {Docker Image Selection} dialog displays a list of Docker + images in your local Docker installation. You can sort the images according + to the repository name or tag or the image ID or size. + + \image qtcreator-docker-image-selection.webp "Docker Image Selection dialog" + + Select \uicontrol {Show unnamed images} to show images that are not tagged. + + Double-click an image to select it. + + \section2 Modifying Entry Points + + The entry point of a Docker container is specified in the container settings + and started as the main process when starting the container. The entry point + can be a shell, an SSH server, or another process, for example. By default, + \QC modifies the entry point before it starts a container to make sure that + the main process is an \c sh shell. + + To stop \QC from modifying the entry point, select + \uicontrol {Do not modify entry point}. However, if the entry + point you specify is not a shell, \QC cannot start the container. + + \section2 Specifying Paths to Mount You can either copy your project files into the Docker container or specify paths to them in \uicontrol {Paths to mount}. Shared mounts are restricted to locations in the host system that can end up in the same absolute location - in the Docker container. On Windows, mounted drives cannot be used as shared + in the Docker container. On Windows, network mounts cannot be used as shared mounts. The paths in \uicontrol {Paths to mount} are mapped one-to-one to the Docker @@ -75,27 +109,33 @@ \uicontrol {Delete Line} to delete the selected path or \uicontrol Clear to delete all paths. - \section1 Auto-detecting Kit Items + \section2 Auto-detecting Kit Items - Select \uicontrol {Auto-detect Kit Items} to generate an initial - \l{Adding Kits}{build and run kit} for the Docker device. You can - either set the kit items, such \l{Adding Debuggers}{debuggers} and - \l{Adding Qt Versions}{Qt version}, in PATH or install them in the - Docker container. + Select \uicontrol {Auto-detect Kit Items} to find kit items and create kits + for the Docker device. You can search for kit items in the device's PATH or + in the specified directories. - Select \uicontrol {Search in PATH} to detect kit items that are set in PATH. + In \uicontrol {Search locations}, select: - Select \uicontrol {Search in Selected Directories} to detect kit items in - the selected directories. + \list + \li \uicontrol {Search in PATH} to find kit items in PATH. + \li \uicontrol {Search in Selected Directories} to find kit items in + the selected directories. + \li \uicontrol {Search in PATH and Additional Directories} to find kit + items in the PATH and in the selected directories. + \endlist - To view the automatically detected kit items, select + When searching in directories, enter a semicolon-separated list of directory + paths in the Docker image to scan for kit entries. + + To list the automatically detected kit items, select \uicontrol {List Auto-Detected Kit Items}. To remove them, select \uicontrol {Remove Auto-Detected Kit Items}. \section1 Editing Docker Device Kits Select \uicontrol Edit > \uicontrol Preferences > \uicontrol Kits to check - that the automatically generated kit points to the appropriate kit items. + that the automatically generated kits point to the appropriate kit items. To specify build settings: diff --git a/doc/qtcreator/src/howto/creator-only/creator-cli.qdoc b/doc/qtcreator/src/howto/creator-only/creator-cli.qdoc index 665e97031bd..4a7d5435781 100644 --- a/doc/qtcreator/src/howto/creator-only/creator-cli.qdoc +++ b/doc/qtcreator/src/howto/creator-only/creator-cli.qdoc @@ -137,6 +137,10 @@ \li Use clean settings for debug or testing reasons. The settings will be deleted when \QC exits. + \row + \li -language + \li Set the UI language. + \row \li -test [,testfunction[:testdata]] ... \li For \QC plugin developers: run the plugin's tests using a diff --git a/doc/qtcreator/src/ios/creator-ios-dev.qdoc b/doc/qtcreator/src/ios/creator-ios-dev.qdoc index 673ff939262..579e0651740 100644 --- a/doc/qtcreator/src/ios/creator-ios-dev.qdoc +++ b/doc/qtcreator/src/ios/creator-ios-dev.qdoc @@ -2,7 +2,7 @@ // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only /*! - \previouspage creator-developing-generic-linux.html + \previouspage creator-adding-docker-devices.html \page creator-developing-ios.html \nextpage creator-developing-mcu.html diff --git a/doc/qtcreator/src/linux-mobile/creator-deployment-b2qt.qdoc b/doc/qtcreator/src/linux-mobile/creator-deployment-b2qt.qdoc index 2e6eb9a5556..73301bb173b 100644 --- a/doc/qtcreator/src/linux-mobile/creator-deployment-b2qt.qdoc +++ b/doc/qtcreator/src/linux-mobile/creator-deployment-b2qt.qdoc @@ -4,9 +4,9 @@ /*! \page creator-deployment-b2qt.html \previouspage creator-deploying-android.html - \nextpage creator-deployment-embedded-linux.html + \nextpage creator-deployment-qnx.html - \title Deploying Applications to Boot2Qt Devices + \title Deploying to Boot2Qt You can specify settings for deploying applications to \l{Boot2Qt} devices in the project configuration file and in \uicontrol Projects > @@ -15,7 +15,7 @@ \image qtcreator-boot2qt-deployment-steps.png "Boot2Qt deployment steps" The deployment process is described in more detail in - \l{Deploying Applications to Generic Remote Linux Devices}. + \l{Deploying to Remote Linux}. \section1 Launching Applications on Boot diff --git a/doc/qtcreator/src/linux-mobile/creator-deployment-embedded-linux.qdoc b/doc/qtcreator/src/linux-mobile/creator-deployment-embedded-linux.qdoc index aaab6903664..0944c02a953 100644 --- a/doc/qtcreator/src/linux-mobile/creator-deployment-embedded-linux.qdoc +++ b/doc/qtcreator/src/linux-mobile/creator-deployment-embedded-linux.qdoc @@ -9,20 +9,16 @@ /*! \page creator-deployment-embedded-linux.html - \previouspage creator-deployment-b2qt.html - \if defined(qtdesignstudio) + \previouspage creator-deployment-qnx.html \nextpage creator-connecting-mobile.html - \else - \nextpage creator-deployment-qnx.html - \endif - \title Deploying Applications to Generic Remote Linux Devices + \title Deploying to Remote Linux You can specify settings for deploying applications to generic remote Linux devices in the project configuration file and in the \uicontrol Projects mode, in \uicontrol {Run Settings}. - \image qtcreator-embedded-linux-deployment-details.png "Deploy to embedded Linux" + \image qtcreator-embedded-linux-deployment-details.png "Deploy to remote Linux devices" The files to be installed are listed in the \uicontrol {Deployment} step, the \uicontrol {Files to deploy} field. The \uicontrol {Source File Path} diff --git a/doc/qtcreator/src/linux-mobile/creator-embedded-platforms.qdoc b/doc/qtcreator/src/linux-mobile/creator-embedded-platforms.qdoc index 493d70302b4..cbca285cf66 100644 --- a/doc/qtcreator/src/linux-mobile/creator-embedded-platforms.qdoc +++ b/doc/qtcreator/src/linux-mobile/creator-embedded-platforms.qdoc @@ -13,7 +13,7 @@ \list \li \l {Bare Metal} \li \l {Boot2Qt} - \li \l {Generic Remote Linux} + \li \l {Remote Linux} \li \l {Microcontroller Units (MCU)} \li \l QNX \endlist @@ -31,7 +31,7 @@ \section1 Bare Metal You can run and debug applications on small devices that are not supported - by the generic remote Linux device plugin by using GDB or a hardware + by the remote Linux device plugin by using GDB or a hardware debugger. For more information about developing applications for Bare Metal devices, @@ -56,24 +56,24 @@ {Boot2Qt: Installation Guides} \li \l{Connecting Boot2Qt Devices} \li \l{Specifying Run Settings for Boot2Qt Devices} - \li \l{Deploying Applications to Boot2Qt Devices} + \li \l{Deploying to Boot2Qt} \li \l{https://doc.qt.io/qtcreator/creator-overview-qtasam.html} {Qt Creator Plugin for Qt Application Manager} \endlist - \section1 Generic Remote Linux + \section1 Remote Linux You must have a tool chain for building applications for embedded Linux devices installed on the development PC. The following topics contain more information about developing applications - for generic remote Linux devices: + for remote Linux devices: \list - \li \l{Connecting Generic Remote Linux Devices} - \li \l{Deploying Applications to Generic Remote Linux Devices} + \li \l{Connecting Remote Linux Devices} + \li \l{Deploying to Remote Linux} \li \l{Specifying Run Settings for Linux-Based Devices} - \li \l{Running on Generic Remote Linux Devices} + \li \l{Running on Remote Linux Devices} \li \l{https://doc.qt.io/qtcreator/creator-overview-qtasam.html} {Qt Creator Plugin for Qt Application Manager} \endlist @@ -105,7 +105,7 @@ \list \li \l{Connecting QNX Devices} - \li \l{Deploying Applications to QNX Neutrino Devices} + \li \l{Deploying to QNX Neutrino} \li \l{Specifying Run Settings for QNX Devices} \li \l{Running on QNX Devices} \li \l{Qt for QNX} diff --git a/doc/qtcreator/src/linux-mobile/creator-projects-running-generic-linux.qdocinc b/doc/qtcreator/src/linux-mobile/creator-projects-running-generic-linux.qdocinc index c4b0a4fb9c8..d2d78806999 100644 --- a/doc/qtcreator/src/linux-mobile/creator-projects-running-generic-linux.qdocinc +++ b/doc/qtcreator/src/linux-mobile/creator-projects-running-generic-linux.qdocinc @@ -4,14 +4,14 @@ /*! //! [running on embedded linux] - \section1 Running on Generic Remote Linux Devices + \section1 Running on Remote Linux Devices To build the application and run it on a device: \list 1 \li Specify a connection to the device. For more information, see - \l{Connecting Generic Remote Linux Devices}. + \l{Connecting Remote Linux Devices}. \li Click the \uicontrol Run button. @@ -25,12 +25,10 @@ displayed on the device. Command-line output is visible in the \QC \uicontrol {Application Output} view. - Choose \uicontrol {Projects > Embedded Linux > Run} to view the settings for deploying - the application to the connected device. - \if defined(qtcreator) - For more information, see + In the \uicontrol {Projects} mode, select the remote Linux kit and then + select \uicontrol {Run} to view the settings for deploying the application + to the connected device. For more information, see \l{Specifying Run Settings for Linux-Based Devices}. - \endif Debugging works transparently if GDB server is installed on the device and it is compatible with the GDB on the host. diff --git a/doc/qtcreator/src/linux-mobile/creator-projects-settings-run-b2qt.qdocinc b/doc/qtcreator/src/linux-mobile/creator-projects-settings-run-b2qt.qdocinc index 40ccae74104..2683006f52c 100644 --- a/doc/qtcreator/src/linux-mobile/creator-projects-settings-run-b2qt.qdocinc +++ b/doc/qtcreator/src/linux-mobile/creator-projects-settings-run-b2qt.qdocinc @@ -17,7 +17,7 @@ host and on the device. For more information on the deployment steps, see - \l{Deploying Applications to Boot2Qt Devices}. + \l{Deploying to Boot2Qt}. //! [run settings boot2qt] */ diff --git a/doc/qtcreator/src/linux-mobile/creator-projects-settings-run-linux.qdocinc b/doc/qtcreator/src/linux-mobile/creator-projects-settings-run-linux.qdocinc index 26b832c45f0..017163c3eeb 100644 --- a/doc/qtcreator/src/linux-mobile/creator-projects-settings-run-linux.qdocinc +++ b/doc/qtcreator/src/linux-mobile/creator-projects-settings-run-linux.qdocinc @@ -11,7 +11,7 @@ host to the device and add the device configurations to \l{glossary-buildandrun-kit}{kits}. Click \uicontrol {Manage Kits} to add devices to kits. For more information, see - \l {Connecting Generic Remote Linux Devices}. + \l {Connecting Remote Linux Devices}. When you run the application, \QC copies the files to the connected device. diff --git a/doc/qtcreator/src/linux-mobile/linuxdev.qdoc b/doc/qtcreator/src/linux-mobile/linuxdev.qdoc index 815aa2260c8..b874866f60c 100644 --- a/doc/qtcreator/src/linux-mobile/linuxdev.qdoc +++ b/doc/qtcreator/src/linux-mobile/linuxdev.qdoc @@ -3,15 +3,10 @@ /*! \page creator-developing-generic-linux.html - \if defined(qtdesignstudio) - \previouspage creator-developing-android.html - \nextpage studio-advanced.html - \else - \previouspage creator-adding-docker-devices.html - \nextpage creator-developing-ios.html - \endif + \previouspage creator-developing-qnx.html + \nextpage creator-setup-webassembly.html - \title Connecting Generic Remote Linux Devices + \title Connecting Remote Linux Devices You can connect generic Linux devices to the development PC to run, debug, and analyze applications built for them from \QC. @@ -19,10 +14,10 @@ If you have a tool chain for building applications for embedded Linux devices installed on the development PC, you can add it to \QC. You can then select a \l{glossary-buildandrun-kit}{kit} - with \uicontrol {Embedded Linux} device type to + with the device type \uicontrol {Remote Linux Device} to build applications for and run them on the devices. - To be able to run and debug applications on generic remote Linux devices, + To be able to run and debug applications on remote Linux devices, you must add devices and select them in the \QC \l{glossary-buildandrun-kit} {kit}. @@ -30,7 +25,7 @@ in \uicontrol Edit > \uicontrol Preferences > \uicontrol Devices > \uicontrol Devices. - \image qtcreator-linux-device-configurations.png "Devices dialog" + \image qtcreator-preferences-devices-remote-linux.webp "Remote Linux Device in the Devices tab" You can protect the connections between \QC and a device by using an \l{https://www.openssh.com/}{OpenSSH} connection. OpenSSH is a @@ -47,7 +42,7 @@ you may need to enter the password on every connection to the device, or, if caching is enabled, at every \QC restart. - To configure connections between \QC and an embedded Linux device and to + To configure connections between \QC and a remote Linux device and to specify build and run settings for the device: \list 1 @@ -69,19 +64,22 @@ \li Select \uicontrol Edit > \uicontrol Preferences > \uicontrol Devices > \uicontrol Devices > \uicontrol Add > - \uicontrol {Generic Linux Device} + \uicontrol {Remote Linux Device} > \uicontrol {Start Wizard}. - \image qtcreator-screenshot-devconf-linux.png "Connection Data wizard" + \image qtcreator-preferences-devices-remote-linux-connection.webp "Connection Data wizard" - \li In the \uicontrol {The name to identify this configuration} field, + \li In \uicontrol {The name to identify this configuration}, enter a name for the connection. - \li In the \uicontrol {The device's host name or IP address} field, + \li In \uicontrol {The device's host name or IP address}, enter the host name or IP address of the device. This value will be available in the variable \c %{Device:HostAddress}. - \li In the \uicontrol {The username to log into the device} field, + \li In \uicontrol {The device's SSH port number}, enter the port + number to use for SSH connections. This value will be + available in the variable \c %{Device:SshPort}. + \li In \uicontrol {The username to log into the device}, enter the username to log into the device and run the application as. This value will be available in the variable \c %{Device:UserName}. @@ -89,7 +87,7 @@ \li Select \uicontrol {Next} to open the \uicontrol {Key Deployment} dialog. - \image qtcreator-generic-linux-device-key-deployment.png "Key Deployment dialog" + \image qtcreator-preferences-devices-remote-linux-key-deployment.webp "Key Deployment dialog" \li In \uicontrol {Private key file}, select a private key file to use for authentication. This value will be available in @@ -107,14 +105,16 @@ \endlist All of these parameters can be edited later, as well as additional ones that the - wizard does not show because there are sensible default values. One of these is - the SSH port number, which is available in the variable \c %{Device:SshPort}. + wizard does not show because there are sensible default values. \li Select \uicontrol Edit > \uicontrol Preferences > \uicontrol Kits > \uicontrol Add to add a kit for building for the device. Select the - Qt version, compiler, and device that you added above, and choose - \uicontrol {Generic Linux Device} for the device type. + Qt version, compiler, and device that you added above, and select + \uicontrol {Remote Linux Device} in \uicontrol {Device type}. + + To build on the remote device, select \uicontrol {Remote Linux Device} + also in \uicontrol {Build device}. \li To specify build settings: @@ -133,7 +133,7 @@ When you run the project, \QC deploys the application as specified by the deploy steps. By default, \QC copies the application files to the device. - For more information, see \l{Deploying Applications to Generic Remote Linux Devices}. + For more information, see \l{Deploying to Remote Linux}. \endlist diff --git a/doc/qtcreator/src/overview/creator-only/creator-deployment-overview.qdoc b/doc/qtcreator/src/overview/creator-only/creator-deployment-overview.qdoc index 9b6d18ae0f9..000017249ac 100644 --- a/doc/qtcreator/src/overview/creator-only/creator-deployment-overview.qdoc +++ b/doc/qtcreator/src/overview/creator-only/creator-deployment-overview.qdoc @@ -22,31 +22,28 @@ \list - \li \l{Deploying Applications to Android Devices} + \li \l{Deploying to Android} When you deploy the application to an Android device, \QC copies the application files to the device. In addition, you can determine the Qt libraries to use. - \li \l {Deploying Applications to Boot2Qt Devices} + \li \l {Deploying to Boot2Qt} When you deploy the application to a Boot2Qt device, \QC copies the application files to the connected device. You can then test and debug the application on the device with \QC. - \li \l{Deploying Applications to Generic Remote Linux Devices} - - When you deploy the application to a generic Linux-based device, \QC - copies the application files to the connected device. You can then - test and debug the application on the device with \QC. - - \if defined(qtcreator) - \li \l{Deploying Applications to QNX Neutrino Devices} + \li \l{Deploying to QNX Neutrino} When you deploy the application to a QNX Neutrino device, \QC copies the application files to the connected device. You can then test and debug the application on the device with \QC. - \endif + \li \l{Deploying to Remote Linux} + + When you deploy the application to a generic Linux-based device, \QC + copies the application files to the connected device. You can then + test and debug the application on the device with \QC. \endlist */ diff --git a/doc/qtcreator/src/overview/creator-only/creator-mobile-platforms.qdoc b/doc/qtcreator/src/overview/creator-only/creator-mobile-platforms.qdoc index 4cafa2923b4..7af06ba9ff3 100644 --- a/doc/qtcreator/src/overview/creator-only/creator-mobile-platforms.qdoc +++ b/doc/qtcreator/src/overview/creator-only/creator-mobile-platforms.qdoc @@ -36,7 +36,7 @@ \list \li \l{Connecting Android Devices} - \li \l{Deploying Applications to Android Devices} + \li \l{Deploying to Android} \li \l{Running on Multiple Platforms} \li \l{Creating a Mobile Application} \li \l{Debugging on Android Devices} diff --git a/doc/qtcreator/src/overview/creator-only/creator-mobile-targets.qdoc b/doc/qtcreator/src/overview/creator-only/creator-mobile-targets.qdoc index 0cf0d35c5dd..cd64ccad70f 100644 --- a/doc/qtcreator/src/overview/creator-only/creator-mobile-targets.qdoc +++ b/doc/qtcreator/src/overview/creator-only/creator-mobile-targets.qdoc @@ -9,7 +9,7 @@ /*! \page creator-connecting-mobile.html - \previouspage creator-deployment-qnx.html + \previouspage creator-deployment-embedded-linux.html \nextpage creator-developing-android.html \title Connecting Devices @@ -40,32 +40,21 @@ Qt version targeting Android and the Android SDK and NDK to develop for Android devices. - \if defined(qtcreator) \li \l{Connecting Bare Metal Devices} You can connect bare metal devices to the development PC and use \QC to debug applications on them with GDB or a hardware debugger. - \endif \li \l{Connecting Boot2Qt Devices} You can connect \l{Boot2Qt} devices to the development PC to run, debug, and analyze applications built for them from \QC. - \if defined(qtcreator) \li \l {Adding Docker Devices} You can add Docker images as \e devices to run, debug, and analyze applications built for Docker containers from \QC. - \endif - \li \l{Connecting Generic Remote Linux Devices} - - If you have a tool chain for building applications for embedded - Linux devices installed on the development - PC, you can add it and the device to \QC. - - \if defined(qtcreator) \li \l{Connecting iOS Devices} You use the tools delivered with Xcode to connect devices to \QC. @@ -83,11 +72,15 @@ debug applications on them from within \QC. This is currently only supported for QNX Neutrino devices, and requires the QNX SDK to be installed on the development PC. - \endif + + \li \l{Connecting Remote Linux Devices} + + If you have a tool chain for building applications for embedded + Linux devices installed on the development + PC, you can add it and the device to \QC. \endlist - \if defined(qtcreator) \section1 Related Topics \list @@ -106,5 +99,4 @@ local Linux PC, remote generic SSH Linux targets, or \l{Boot2Qt}{Boot2Qt devices}. \endlist - \endif */ diff --git a/doc/qtcreator/src/projects/creator-only/creator-projects-debuggers.qdoc b/doc/qtcreator/src/projects/creator-only/creator-projects-debuggers.qdoc index 878646e0bd2..15ee1ac0770 100644 --- a/doc/qtcreator/src/projects/creator-only/creator-projects-debuggers.qdoc +++ b/doc/qtcreator/src/projects/creator-only/creator-projects-debuggers.qdoc @@ -24,6 +24,10 @@ To override this choice, select \uicontrol Edit > \uicontrol Preferences > \uicontrol Kits. + For more information about setting up the debugger, see + \l {Setting Up Debugger}. If you encounter problems, see + \l {Troubleshooting Debugger}. + To add debuggers: \list 1 @@ -31,7 +35,7 @@ \li Select \uicontrol Edit > \uicontrol Preferences > \uicontrol Kits > \uicontrol Debuggers > \uicontrol Add. - \image qtcreator-options-build-run-debuggers.png "Adding debuggers" + \image qtcreator-preferences-kits-debuggers.webp "Debuggers tab in Kits preferences" \li In the \uicontrol Name field, give a descriptive name for the debugger. @@ -40,7 +44,12 @@ \list \li For CDB (Windows only), specify the path to the Windows - Console Debugger executable. + Console Debugger executable, \c cdb.exe. + + The 32-bit version can only debug 32-bit executables, whereas + the 64-bit version can debug both 64-bit and 32-bit + executables. For more information, see + \l {Debugging Tools for Windows}. \li For GDB, specify the path to the GDB executable. The executable must be built with Python scripting support diff --git a/doc/qtcreator/src/projects/creator-only/creator-projects-generic.qdoc b/doc/qtcreator/src/projects/creator-only/creator-projects-generic.qdoc index c0742a5f16f..8acb985d3c1 100644 --- a/doc/qtcreator/src/projects/creator-only/creator-projects-generic.qdoc +++ b/doc/qtcreator/src/projects/creator-only/creator-projects-generic.qdoc @@ -129,11 +129,11 @@ \section1 Providing Deployment Information - If you want to run your application on a generic remote Linux device, + If you want to run your application on a remote Linux device, you first need to deploy your executable and possibly other files. \QC does that for you automatically if you provide the necessary information. This works the same way as explained for CMake in - \l {Deploying Applications to Generic Remote Linux Devices}, + \l {Deploying to Remote Linux}, except that you also need to include your application binary in the list. \section1 Creating a Run Configuration diff --git a/doc/qtcreator/src/projects/creator-only/creator-projects-targets.qdoc b/doc/qtcreator/src/projects/creator-only/creator-projects-targets.qdoc index 03b835a27d0..91ce4b81c34 100644 --- a/doc/qtcreator/src/projects/creator-only/creator-projects-targets.qdoc +++ b/doc/qtcreator/src/projects/creator-only/creator-projects-targets.qdoc @@ -30,7 +30,7 @@ \li \l{https://doc.qt.io/Boot2Qt/b2qt-installation-guides.html} {Boot2Qt Device} (commercial only) \li \l{Emulator}{Boot2Qt Emulator Device} (commercial only) - \li \l{Connecting Generic Remote Linux Devices}{Generic Remote Linux Device} + \li \l{Connecting Remote Linux Devices}{Remote Linux Device} \li \l{Connecting iOS Devices}{iOS Device} \li iOS Simulator \li \l{Connecting MCUs}{MCU Device} (commercial only) diff --git a/doc/qtcreator/src/qnx/creator-deployment-qnx.qdoc b/doc/qtcreator/src/qnx/creator-deployment-qnx.qdoc index 7e7b8e2059d..06fcb20abd5 100644 --- a/doc/qtcreator/src/qnx/creator-deployment-qnx.qdoc +++ b/doc/qtcreator/src/qnx/creator-deployment-qnx.qdoc @@ -9,11 +9,10 @@ // ********************************************************************** /*! - \previouspage creator-deployment-embedded-linux.html + \previouspage creator-deployment-b2qt.html \page creator-deployment-qnx.html - \nextpage creator-connecting-mobile.html - - \title Deploying Applications to QNX Neutrino Devices + \nextpage creator-deployment-embedded-linux.html + \title Deploying to QNX Neutrino You can specify settings for deploying applications to QNX Neutrino devices in the project configuration file and in \uicontrol Projects @@ -22,7 +21,7 @@ \image qtcreator-qnx-deployment.png "Deploy to device" The deployment process is described in more detail in - \l{Deploying Applications to Generic Remote Linux Devices}. + \l{Deploying to Remote Linux}. \section1 Finding Configured Devices diff --git a/doc/qtcreator/src/qnx/creator-developing-qnx.qdoc b/doc/qtcreator/src/qnx/creator-developing-qnx.qdoc index 546de76fcb3..d6da86d0eef 100644 --- a/doc/qtcreator/src/qnx/creator-developing-qnx.qdoc +++ b/doc/qtcreator/src/qnx/creator-developing-qnx.qdoc @@ -5,7 +5,7 @@ /*! \previouspage creator-developing-mcu.html \page creator-developing-qnx.html - \nextpage creator-setup-webassembly.html + \nextpage creator-developing-generic-linux.html \title Connecting QNX Devices @@ -19,7 +19,7 @@ \section1 Adding a QNX Neutrino Device in \QC Adding a QNX Neutrino device is very similar to - \l{Connecting Generic Remote Linux Devices}, except that + \l{Connecting Remote Linux Devices}, except that you need to select \uicontrol {QNX Device} in the \uicontrol {Device Configuration} wizard. diff --git a/doc/qtcreator/src/qtcreator-toc.qdoc b/doc/qtcreator/src/qtcreator-toc.qdoc index 7a491e0312c..62fbde3516e 100644 --- a/doc/qtcreator/src/qtcreator-toc.qdoc +++ b/doc/qtcreator/src/qtcreator-toc.qdoc @@ -139,9 +139,10 @@ \li \l{Running on Multiple Platforms} \li \l{Deploying to Devices} \list - \li \l{Deploying Applications to Android Devices} - \li \l{Deploying Applications to Generic Remote Linux Devices} - \li \l{Deploying Applications to QNX Neutrino Devices} + \li \l{Deploying to Android} + \li \l{Deploying to Boot2Qt} + \li \l{Deploying to QNX Neutrino} + \li \l{Deploying to Remote Linux} \endlist \li \l{Connecting Devices} \list @@ -149,10 +150,10 @@ \li \l{Connecting Bare Metal Devices} \li \l{Connecting Boot2Qt Devices} \li \l{Adding Docker Devices} - \li \l{Connecting Generic Remote Linux Devices} \li \l{Connecting iOS Devices} \li \l{Connecting MCUs} \li \l{Connecting QNX Devices} + \li \l{Connecting Remote Linux Devices} \li \l{Building Applications for the Web} \endlist \li \l{Customizing the Build Process} diff --git a/doc/qtcreator/src/user-interface/creator-file-system-view.qdoc b/doc/qtcreator/src/user-interface/creator-file-system-view.qdoc index 3de554d9894..5567f14c1c5 100644 --- a/doc/qtcreator/src/user-interface/creator-file-system-view.qdoc +++ b/doc/qtcreator/src/user-interface/creator-file-system-view.qdoc @@ -17,7 +17,7 @@ \image qtcreator-filesystem-view-design.png "File System view in the Design mode" \else - \image qtcreator-filesystem-view.png "File System view in the sidebar" + \image qtcreator-filesystem-view.webp "File System view in the sidebar" \endif To move to the root directory of the file system, select \uicontrol Computer diff --git a/doc/qtcreator/src/webassembly/creator-webassembly.qdoc b/doc/qtcreator/src/webassembly/creator-webassembly.qdoc index 07b38ed7b92..d01c038ce5b 100644 --- a/doc/qtcreator/src/webassembly/creator-webassembly.qdoc +++ b/doc/qtcreator/src/webassembly/creator-webassembly.qdoc @@ -2,7 +2,7 @@ // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only /*! - \previouspage creator-developing-qnx.html + \previouspage creator-developing-generic-linux.html \page creator-setup-webassembly.html \nextpage creator-build-process-customizing.html diff --git a/doc/qtdesignstudio/images/apply-effect-maker-effect.webp b/doc/qtdesignstudio/images/apply-effect-maker-effect.webp new file mode 100644 index 00000000000..64c89bf92b4 Binary files /dev/null and b/doc/qtdesignstudio/images/apply-effect-maker-effect.webp differ diff --git a/doc/qtdesignstudio/images/assets-view-effect.png b/doc/qtdesignstudio/images/assets-view-effect.png new file mode 100644 index 00000000000..b229f8ddb65 Binary files /dev/null and b/doc/qtdesignstudio/images/assets-view-effect.png differ diff --git a/doc/qtdesignstudio/images/blur-effect-nodes.png b/doc/qtdesignstudio/images/blur-effect-nodes.png new file mode 100644 index 00000000000..7c3d57db034 Binary files /dev/null and b/doc/qtdesignstudio/images/blur-effect-nodes.png differ diff --git a/doc/qtdesignstudio/images/blur-effect-step-1.webp b/doc/qtdesignstudio/images/blur-effect-step-1.webp new file mode 100644 index 00000000000..1c3dc06af10 Binary files /dev/null and b/doc/qtdesignstudio/images/blur-effect-step-1.webp differ diff --git a/doc/qtdesignstudio/images/blur-effect-step-2.webp b/doc/qtdesignstudio/images/blur-effect-step-2.webp new file mode 100644 index 00000000000..3073411b0a6 Binary files /dev/null and b/doc/qtdesignstudio/images/blur-effect-step-2.webp differ diff --git a/doc/qtdesignstudio/images/blur-effect-step-3.webp b/doc/qtdesignstudio/images/blur-effect-step-3.webp new file mode 100644 index 00000000000..c67de042ff0 Binary files /dev/null and b/doc/qtdesignstudio/images/blur-effect-step-3.webp differ diff --git a/doc/qtdesignstudio/images/effect-item-borders-icon.png b/doc/qtdesignstudio/images/effect-item-borders-icon.png new file mode 100644 index 00000000000..2739db806d2 Binary files /dev/null and b/doc/qtdesignstudio/images/effect-item-borders-icon.png differ diff --git a/doc/qtdesignstudio/images/effect-item-padding-dialog.png b/doc/qtdesignstudio/images/effect-item-padding-dialog.png new file mode 100644 index 00000000000..a6c630714e7 Binary files /dev/null and b/doc/qtdesignstudio/images/effect-item-padding-dialog.png differ diff --git a/doc/qtdesignstudio/images/effect-maker-export.png b/doc/qtdesignstudio/images/effect-maker-export.png new file mode 100644 index 00000000000..35d2a6a3c4d Binary files /dev/null and b/doc/qtdesignstudio/images/effect-maker-export.png differ diff --git a/doc/qtdesignstudio/images/new-effect-file.png b/doc/qtdesignstudio/images/new-effect-file.png new file mode 100644 index 00000000000..521c36152cb Binary files /dev/null and b/doc/qtdesignstudio/images/new-effect-file.png differ diff --git a/doc/qtdesignstudio/images/qt-quick-effect-maker.webp b/doc/qtdesignstudio/images/qt-quick-effect-maker.webp new file mode 100644 index 00000000000..2e98f7b02eb Binary files /dev/null and b/doc/qtdesignstudio/images/qt-quick-effect-maker.webp differ diff --git a/doc/qtdesignstudio/src/overviews/qtquick-export.qdoc b/doc/qtdesignstudio/src/overviews/qtquick-export.qdoc index dd99cc3f49f..1d7661fdd34 100644 --- a/doc/qtdesignstudio/src/overviews/qtquick-export.qdoc +++ b/doc/qtdesignstudio/src/overviews/qtquick-export.qdoc @@ -4,7 +4,7 @@ /*! \page creator-exporting-qml.html \previouspage studio-importing-3d.html - \nextpage qtquick-motion-design.html + \nextpage qt-effect-maker-files.html \title Exporting Components diff --git a/doc/qtdesignstudio/src/overviews/qtquick-motion-design.qdoc b/doc/qtdesignstudio/src/overviews/qtquick-motion-design.qdoc index 5314fe7ef20..aade258132c 100644 --- a/doc/qtdesignstudio/src/overviews/qtquick-motion-design.qdoc +++ b/doc/qtdesignstudio/src/overviews/qtquick-motion-design.qdoc @@ -3,7 +3,7 @@ /*! \page qtquick-motion-design.html - \previouspage creator-exporting-qml.html + \previouspage qt-effect-maker.html \nextpage quick-animation-overview.html \title Motion Design diff --git a/doc/qtdesignstudio/src/qt-quick-effect-maker.qdoc b/doc/qtdesignstudio/src/qt-quick-effect-maker.qdoc new file mode 100644 index 00000000000..56dfebfe301 --- /dev/null +++ b/doc/qtdesignstudio/src/qt-quick-effect-maker.qdoc @@ -0,0 +1,93 @@ +/**************************************************************************** +** +** Copyright (C) 2022 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of the Qt Design Studio documentation. +** +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU Free Documentation License Usage +** 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. Please review the following information to ensure +** the GNU Free Documentation License version 1.3 requirements +** will be met: https://www.gnu.org/licenses/fdl-1.3.html. +** +****************************************************************************/ + +/*! + + \page qt-effect-maker.html + \previouspage qt-effect-maker-files.html + \nextpage qtquick-motion-design.html + \sa {Creating Qt Quick Effect Maker Files} + + \title Working with Effects in Qt Quick Effect Maker + + The Qt Quick Effect Maker is a tool to create high-performance + shader effects for Qt Quick. + + You can import these effects to \QDS and you can run Qt Quick Effect Maker + from \QDS. + + \section1 Creating Effects + + When you run Qt Quick Effect Maker, it starts with an empty project. To + create your effect, add nodes to the node tree. + + \image qt-quick-effect-maker.webp + + Consider the following things when creating effects: + + \list + \li Some nodes do not function alone, they need a helper node. For + example, the \uicontrol FastBlur node needs a \uicontrol BlurHelper node + and the \uicontrol Noise node needs a \uicontrol NoiseHelper node. If the + node needs another node, it is mentioned in the node description. + \li If your effect appears cropped, you need to go to \uicontrol Edit > + \uicontrol {Project Settings} and increase the item padding. + \endlist + + \section2 Creating a Blur Effect + + To create a blur effect: + + \list 1 + \li Add a \uicontrol FastBlur node to the node tree. + \li Add a \uicontrol BlurHelper node to the node tree. You need the + \uicontrol BlurHelper node for all effects that contains a blur effect. + \endlist + + \image blur-effect-nodes.png + + You can now select the \uicontrol FastBlur node and in the settings, change + the \uicontrol fastBlurAmount value to control the amount of blur. + + \image blur-effect-step-1.webp + + \section3 Adjusting Item Borders + + The effect appears cropped. You need to adjust item borders: + + \list 1 + \li Select \inlineimage effect-item-borders-icon.png + to display item borders. + \image blur-effect-step-2.webp + \li Go to \uicontrol Edit > \uicontrol {Project Settings}. + \li Set the item padding for all sides to 100. + \image effect-item-padding-dialog.png + \endlist + + Now, you can see the complete blur effect. + + \image blur-effect-step-3.webp + +*/ diff --git a/doc/qtdesignstudio/src/qtdesignstudio-effect-maker-files.qdoc b/doc/qtdesignstudio/src/qtdesignstudio-effect-maker-files.qdoc new file mode 100644 index 00000000000..e00bb354863 --- /dev/null +++ b/doc/qtdesignstudio/src/qtdesignstudio-effect-maker-files.qdoc @@ -0,0 +1,94 @@ +/**************************************************************************** +** +** Copyright (C) 2022 The Qt Company Ltd. +** Contact: https://www.qt.io/licensing/ +** +** This file is part of the Qt Design Studio documentation. +** +** Commercial License Usage +** Licensees holding valid commercial Qt licenses may use this file in +** accordance with the commercial license agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and The Qt Company. For licensing terms +** and conditions see https://www.qt.io/terms-conditions. For further +** information use the contact form at https://www.qt.io/contact-us. +** +** GNU Free Documentation License Usage +** 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. Please review the following information to ensure +** the GNU Free Documentation License version 1.3 requirements +** will be met: https://www.gnu.org/licenses/fdl-1.3.html. +** +****************************************************************************/ + +/*! + + \page qt-effect-maker-files.html + \nextpage qt-effect-maker.html + \previouspage creator-exporting-qml.html + \sa {Working with Effects in Qt Quick Effect Maker} + + \title Creating Qt Quick Effect Maker Files + + \section1 Creating an Effect File + + You can create empty Qt Quick Effect Maker effect (.qep) files in \QDS and + then edit them in Qt Quick Effect Maker. + + To create an effect file: + + \list 1 + \li In \QDS, go to \uicontrol File > \uicontrol {New File}. + \li Go to the \uicontrol Effects tab and select + \uicontrol {Effect file (Effect Maker)}. + \image new-effect-file.png + \li Select \uicontrol Choose and follow the wizard to create the file. + \endlist + + After you have created the effect file, it is available in the + \uicontrol Assets view. + + \image assets-view-effect.png + + \section2 Editing and Re-importing an Effect File + + To edit an effect file in Qt Quick Effect Maker, double-click it in + the \uicontrol Assets view. This opens the effect in Qt Quick Effect + Maker where you can make your changes. + + When you have edited the effect file in Qt Quick Effect Maker, you need + to save and export it: + \list 1 + \li In Qt Quick Effect Maker, go to \uicontrol File > \uicontrol Save. + \li Select \uicontrol File > \uicontrol Export. + \li With the default settings, select \uicontrol Ok. + \image effect-maker-export.png + \endlist + + Now, you can close Qt Quick Effect Maker and return to \QDS and apply the + effect. + + \section1 Applying an Effect + + You can apply effects to components in \QDS. To do so, drag the effect + from the \uicontrol Assets view to the component in the \uicontrol 2D view. + + \image apply-effect-maker-effect.webp + + \section1 Animated Effect + + When you import an animated effect, you need to turn on the animation for it + to see the animation in your \QDS application. + + To turn on animation for an effect, first apply the effect to a component, + and then: + + \list 1 + \li Select the effect in \uicontrol Navigator. + \li In \uicontrol Properties, go to the + \uicontrol {Exposed Custom Properties} section and set + \uicontrol timeRunning to true. + \endlist +*/ diff --git a/doc/qtdesignstudio/src/qtdesignstudio-toc.qdoc b/doc/qtdesignstudio/src/qtdesignstudio-toc.qdoc index e80d3750345..d6532059598 100644 --- a/doc/qtdesignstudio/src/qtdesignstudio-toc.qdoc +++ b/doc/qtdesignstudio/src/qtdesignstudio-toc.qdoc @@ -174,6 +174,11 @@ \li \l{Importing 3D Assets} \endlist \li \l{Exporting Components} + \li Qt Quick Effect Maker + \list + \li \l{Creating Qt Quick Effect Maker Files} + \li \l{Working with Effects in Qt Quick Effect Maker} + \endlist \endlist \endlist \li \l{Motion Design} diff --git a/share/qtcreator/debugger/cdbbridge.py b/share/qtcreator/debugger/cdbbridge.py index 173b5a60111..a4c3ea516f5 100644 --- a/share/qtcreator/debugger/cdbbridge.py +++ b/share/qtcreator/debugger/cdbbridge.py @@ -353,9 +353,6 @@ class Dumper(DumperBase): self.ptrSize = lambda: size return size - def put(self, stuff): - self.output += stuff - def stripQintTypedefs(self, typeName): if typeName.startswith('qint'): prefix = '' @@ -423,7 +420,7 @@ class Dumper(DumperBase): self.setVariableFetchingOptions(args) - self.output = '' + self.output = [] self.currentIName = 'local' self.put('data=[') @@ -445,10 +442,11 @@ class Dumper(DumperBase): self.qtNamespaceToReport = self.qtNamespace() if self.qtNamespaceToReport: - self.output += ',qtnamespace="%s"' % self.qtNamespaceToReport + self.put(',qtnamespace="%s"' % self.qtNamespaceToReport) self.qtNamespaceToReport = None - self.reportResult(self.output, args) + self.reportResult(''.join(self.output), args) + self.output = [] def report(self, stuff): sys.stdout.write(stuff + "\n") diff --git a/share/qtcreator/debugger/dumper.py b/share/qtcreator/debugger/dumper.py index 22f3f732d87..8beba72113a 100644 --- a/share/qtcreator/debugger/dumper.py +++ b/share/qtcreator/debugger/dumper.py @@ -112,7 +112,7 @@ class Children(): self.d.currentNumChild = self.savedNumChild self.d.currentMaxNumChild = self.savedMaxNumChild if self.d.isCli: - self.d.output += '\n' + ' ' * self.d.indent + self.d.put('\n' + ' ' * self.d.indent) self.d.put(self.d.childrenSuffix) return True @@ -173,7 +173,7 @@ class DumperBase(): self.displayStringLimit = 100 self.useTimeStamps = False - self.output = '' + self.output = [] self.typesReported = {} self.typesToReport = {} self.qtNamespaceToReport = None @@ -309,9 +309,9 @@ class DumperBase(): self.putField('name', item.name) else: self.indent += 1 - self.output += '\n' + ' ' * self.indent + self.put('\n' + ' ' * self.indent) if isinstance(item.name, str): - self.output += item.name + ' = ' + self.put(item.name + ' = ') item.savedIName = self.currentIName item.savedValue = self.currentValue item.savedType = self.currentType @@ -869,7 +869,12 @@ class DumperBase(): self.putPlainChildren(value) def put(self, stuff): - self.output += stuff + self.output.append(stuff) + + def takeOutput(self): + res = '\n'.join(self.output) + self.output = [] + return res def check(self, exp): if not exp: diff --git a/share/qtcreator/debugger/gdbbridge.py b/share/qtcreator/debugger/gdbbridge.py index f142a30fb4a..f5e260c54d5 100644 --- a/share/qtcreator/debugger/gdbbridge.py +++ b/share/qtcreator/debugger/gdbbridge.py @@ -175,24 +175,6 @@ def importPlainDumpers(args): registerCommand('importPlainDumpers', importPlainDumpers) -class OutputSaver(): - def __init__(self, d): - self.d = d - - def __enter__(self): - self.savedOutput = self.d.output - self.d.output = '' - - def __exit__(self, exType, exValue, exTraceBack): - if self.d.passExceptions and exType is not None: - self.d.showException('OUTPUTSAVER', exType, exValue, exTraceBack) - self.d.output = self.savedOutput - else: - self.savedOutput += self.d.output - self.d.output = self.savedOutput - return False - - ####################################################################### # # The Dumper Class @@ -214,7 +196,7 @@ class Dumper(DumperBase): self.interpreterBreakpointResolvers = [] def prepare(self, args): - self.output = '' + self.output = [] self.setVariableFetchingOptions(args) def fromFrameValue(self, nativeValue): @@ -690,7 +672,7 @@ class Dumper(DumperBase): safePrint(res) return - self.output += 'data=[' + self.put('data=[') partialVar = args.get('partialvar', '') isPartial = len(partialVar) > 0 @@ -713,27 +695,26 @@ class Dumper(DumperBase): self.handleLocals(variables) self.handleWatches(args) - self.output += '],typeinfo=[' + self.put('],typeinfo=[') for name in self.typesToReport.keys(): typeobj = self.typesToReport[name] # Happens e.g. for '(anonymous namespace)::InsertDefOperation' #if not typeobj is None: - # self.output.append('{name="%s",size="%s"}' - # % (self.hexencode(name), typeobj.sizeof)) - self.output += ']' + # self.put('{name="%s",size="%s"}' % (self.hexencode(name), typeobj.sizeof)) + self.put(']') self.typesToReport = {} if self.forceQtNamespace: self.qtNamespaceToReport = self.qtNamespace() if self.qtNamespaceToReport: - self.output += ',qtnamespace="%s"' % self.qtNamespaceToReport + self.put(',qtnamespace="%s"' % self.qtNamespaceToReport) self.qtNamespaceToReport = None - self.output += ',partial="%d"' % isPartial - self.output += ',counts=%s' % self.counts - self.output += ',timings=%s' % self.timings - self.reportResult(self.output, args) + self.put(',partial="%d"' % isPartial) + self.put(',counts=%s' % self.counts) + self.put(',timings=%s' % self.timings) + self.reportResult(''.join(self.output), args) def parseAndEvaluate(self, exp): val = self.nativeParseAndEvaluate(exp) @@ -1321,7 +1302,7 @@ class Dumper(DumperBase): limit = 10000 self.prepare(args) - self.output = '' + self.output = [] i = 0 if extraQml: @@ -1375,58 +1356,60 @@ class Dumper(DumperBase): frame = gdb.newest_frame() self.currentCallContext = None + self.output = [] + self.put('stack={frames=[') while i < limit and frame: - with OutputSaver(self): - name = frame.name() - functionName = '??' if name is None else name - fileName = '' - objfile = '' - symtab = '' - pc = frame.pc() - sal = frame.find_sal() - line = -1 - if sal: - line = sal.line - symtab = sal.symtab - if symtab is not None: - objfile = fromNativePath(symtab.objfile.filename) - fullname = symtab.fullname() - if fullname is None: - fileName = '' - else: - fileName = fromNativePath(fullname) + name = frame.name() + functionName = '??' if name is None else name + fileName = '' + objfile = '' + symtab = '' + pc = frame.pc() + sal = frame.find_sal() + line = -1 + if sal: + line = sal.line + symtab = sal.symtab + if symtab is not None: + objfile = fromNativePath(symtab.objfile.filename) + fullname = symtab.fullname() + if fullname is None: + fileName = '' + else: + fileName = fromNativePath(fullname) - if self.nativeMixed and functionName == 'qt_qmlDebugMessageAvailable': - interpreterStack = self.extractInterpreterStack() - #print('EXTRACTED INTEPRETER STACK: %s' % interpreterStack) - for interpreterFrame in interpreterStack.get('frames', []): - function = interpreterFrame.get('function', '') - fileName = interpreterFrame.get('file', '') - language = interpreterFrame.get('language', '') - lineNumber = interpreterFrame.get('line', 0) - context = interpreterFrame.get('context', 0) + if self.nativeMixed and functionName == 'qt_qmlDebugMessageAvailable': + interpreterStack = self.extractInterpreterStack() + #print('EXTRACTED INTEPRETER STACK: %s' % interpreterStack) + for interpreterFrame in interpreterStack.get('frames', []): + function = interpreterFrame.get('function', '') + fileName = interpreterFrame.get('file', '') + language = interpreterFrame.get('language', '') + lineNumber = interpreterFrame.get('line', 0) + context = interpreterFrame.get('context', 0) - self.put(('frame={function="%s",file="%s",' - 'line="%s",language="%s",context="%s"}') - % (function, self.hexencode(fileName), lineNumber, language, context)) + self.put(('frame={function="%s",file="%s",' + 'line="%s",language="%s",context="%s"}') + % (function, self.hexencode(fileName), lineNumber, language, context)) - if False and self.isInternalInterpreterFrame(functionName): - frame = frame.older() - self.put(('frame={address="0x%x",function="%s",' - 'file="%s",line="%s",' - 'module="%s",language="c",usable="0"}') % - (pc, functionName, fileName, line, objfile)) - i += 1 - frame = frame.older() - continue + if False and self.isInternalInterpreterFrame(functionName): + frame = frame.older() + self.put(('frame={address="0x%x",function="%s",' + 'file="%s",line="%s",' + 'module="%s",language="c",usable="0"}') % + (pc, functionName, fileName, line, objfile)) + i += 1 + frame = frame.older() + continue - self.put(('frame={level="%s",address="0x%x",function="%s",' - 'file="%s",line="%s",module="%s",language="c"}') % - (i, pc, functionName, fileName, line, objfile)) + self.put(('frame={level="%s",address="0x%x",function="%s",' + 'file="%s",line="%s",module="%s",language="c"}') % + (i, pc, functionName, fileName, line, objfile)) frame = frame.older() i += 1 - self.reportResult('stack={frames=[' + self.output + ']}', args) + self.put(']}') + self.reportResult(self.takeOutput(), args) def createResolvePendingBreakpointsHookBreakpoint(self, args): class Resolver(gdb.Breakpoint): @@ -1512,6 +1495,7 @@ class Dumper(DumperBase): onHit=self.tracepointHit, onExpression=lambda tp, expr, val: self.tracepointExpression(tp, expr, val, args)) self.reportResult("tracepoint=%s" % self.resultToMi(tp.dicts()), args) + class CliDumper(Dumper): def __init__(self): Dumper.__init__(self) @@ -1559,16 +1543,18 @@ class CliDumper(Dumper): self.expandableINames = set() self.prepare(args) - self.output = name + ' = ' + self.output = [] + self.put(name + ' = ') value = self.parseAndEvaluate(name) with TopLevelItem(self, name): self.putItem(value) if not self.expandableINames: - return self.output + '\n\nNo drill down available.\n' + self.put('\n\nNo drill down available.\n') + return self.takeOutput() pattern = ' pp ' + name + ' ' + '%s' - return (self.output + return (self.takeOutput() + '\n\nDrill down:\n ' + '\n '.join(pattern % x for x in self.expandableINames) + '\n') diff --git a/share/qtcreator/debugger/lldbbridge.py b/share/qtcreator/debugger/lldbbridge.py index 032b2242211..a58ad793703 100644 --- a/share/qtcreator/debugger/lldbbridge.py +++ b/share/qtcreator/debugger/lldbbridge.py @@ -1270,7 +1270,7 @@ class Dumper(DumperBase): self.reportResult('error="No frame"', args) return - self.output = '' + self.output = [] isPartial = len(self.partialVariable) > 0 self.currentIName = 'local' @@ -1323,7 +1323,7 @@ class Dumper(DumperBase): self.handleWatches(args) self.put('],partial="%d"' % isPartial) - self.reportResult(self.output, args) + self.reportResult(self.takeOutput(), args) def fetchRegisters(self, args=None): @@ -2101,7 +2101,7 @@ class SummaryDumper(Dumper, LogMixin): self.dumpermodules = ['qttypes'] self.loadDumpers({}) - self.output = '' + self.output = [] def report(self, stuff): return # Don't mess up lldb output @@ -2123,12 +2123,12 @@ class SummaryDumper(Dumper, LogMixin): self.expandedINames = [value.name] if expanded else [] savedOutput = self.output - self.output = '' + self.output = [] with TopLevelItem(self, value.name): self.putItem(value) # FIXME: Hook into putField, etc to build up object instead of parsing MI - response = gdbmiparser.parse_response("^ok,summary=%s" % self.output) + response = gdbmiparser.parse_response("^ok,summary=%s" % self.takeOutput()) self.output = savedOutput self.expandedINames = oldExpanded diff --git a/share/qtcreator/templates/wizards/files/effect/file.qep b/share/qtcreator/qmldesigner/studio_templates/files/effect/file.qep similarity index 100% rename from share/qtcreator/templates/wizards/files/effect/file.qep rename to share/qtcreator/qmldesigner/studio_templates/files/effect/file.qep diff --git a/share/qtcreator/qmldesigner/studio_templates/files/effect/wizard.json b/share/qtcreator/qmldesigner/studio_templates/files/effect/wizard.json new file mode 100644 index 00000000000..3dedbb5080d --- /dev/null +++ b/share/qtcreator/qmldesigner/studio_templates/files/effect/wizard.json @@ -0,0 +1,64 @@ +{ + "version": 1, + "supportedProjectTypes": [ ], + "id": "J.QEP", + "category": "U.QEP", + "trDescription": "Creates an Effect Maker file.", + "trDisplayName": "Effect File (Effect Maker)", + "trDisplayCategory": "Effects", + "iconText": "qep", + "platformIndependent": true, + "enabled": "%{JS: value('Features').indexOf('QmlDesigner.Wizards.Enterprise') >= 0}", + "featuresRequired": [ "QmlDesigner.Wizards.Enterprise" ], + + "options": [ + { "key": "EffectFile", "value": "%{Class}.qep" }, + { "key": "DoNotOpenFile", "value": "true" } + ], + + "pages" : + [ + { + "trDisplayName": "Define Class", + "trShortTitle": "Details", + "typeId": "Fields", + "data" : + [ + { + "name": "Class", + "trDisplayName": "Effect name:", + "mandatory": true, + "type": "LineEdit", + "data": { + "validator": "(?:[A-Z_][a-zA-Z_0-9]*|)", + "fixup": "%{JS: '%{INPUT}'.charAt(0).toUpperCase() + '%{INPUT}'.slice(1) }" + } + }, + { + "name": "TargetPath", + "type": "PathChooser", + "trDisplayName": "Path:", + "mandatory": true, + "data": + { + "kind": "existingDirectory", + "basePath": "%{InitialPath}", + "path": "%{InitialPath}" + } + } + ] + } +], + "generators" : + [ + { + "typeId": "File", + "data": + { + "source": "file.qep", + "target": "%{TargetPath}/%{EffectFile}", + "openInEditor": false + } + } + ] +} diff --git a/share/qtcreator/templates/wizards/files/effect/wizard.json b/share/qtcreator/templates/wizards/files/effect/wizard.json deleted file mode 100644 index d966f097eda..00000000000 --- a/share/qtcreator/templates/wizards/files/effect/wizard.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "version": 1, - "supportedProjectTypes": [ ], - "id": "J.QEP", - "category": "U.QEP", - "trDescription": "Creates an Effect Maker file.", - "trDisplayName": "Effect File (Effect Maker)", - "trDisplayCategory": "Effects", - "iconText": "qep", - "platformIndependent": true, - "enabled": true, - - "options": { "key": "DefaultSuffix", "value": "qep" }, - - "pages" : - [ - { - "trDisplayName": "Location", - "trShortTitle": "Location", - "typeId": "File" - }, - { - "trDisplayName": "Project Management", - "trShortTitle": "Summary", - "typeId": "Summary" - } - ], - "generators" : - [ - { - "typeId": "File", - "data": - { - "source": "file.qep", - "target": "%{JS: Util.fileName(value('TargetPath'), value('DefaultSuffix'))}", - "openInEditor": false - } - } - ] -} diff --git a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/empty/wizard.json b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/empty/wizard.json index fecabd09428..2d566dc1f66 100644 --- a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/empty/wizard.json +++ b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/empty/wizard.json @@ -8,7 +8,7 @@ "trDisplayCategory": "Application (Qt for Python)", "icon": "icon.png", "iconKind": "Themed", - "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0}", + "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0 && (!value('Platform').length || ['Desktop', 'DockerDeviceType', 'GenericLinuxOsType'].includes(value('Platform')))}", "options": [ diff --git a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/mainwindow/wizard.json b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/mainwindow/wizard.json index d9f575ecd9b..58e9f8cd526 100644 --- a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/mainwindow/wizard.json +++ b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/mainwindow/wizard.json @@ -8,7 +8,7 @@ "trDisplayCategory": "Application (Qt for Python)", "icon": "../icons/icon.png", "iconKind": "Themed", - "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0}", + "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0 && (!value('Platform').length || ['Desktop', 'DockerDeviceType', 'GenericLinuxOsType'].includes(value('Platform')))}", "options": [ diff --git a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/qtquickapplication/wizard.json b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/qtquickapplication/wizard.json index 7ab73b917f4..c04407347c8 100644 --- a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/qtquickapplication/wizard.json +++ b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/qtquickapplication/wizard.json @@ -8,7 +8,7 @@ "trDisplayCategory": "Application (Qt for Python)", "icon": "../icons/icon.png", "iconKind": "Themed", - "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0}", + "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0 && (!value('Platform').length || ['Desktop', 'DockerDeviceType', 'GenericLinuxOsType'].includes(value('Platform')))}", "options": [ diff --git a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/widget/wizard.json b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/widget/wizard.json index b9c96c97886..1a8e1bd72cb 100644 --- a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/widget/wizard.json +++ b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/widget/wizard.json @@ -8,7 +8,7 @@ "trDisplayCategory": "Application (Qt for Python)", "icon": "../icons/icon.png", "iconKind": "Themed", - "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0}", + "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0 && (!value('Platform').length || ['Desktop', 'DockerDeviceType', 'GenericLinuxOsType'].includes(value('Platform')))}", "options": [ diff --git a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/widget_gen/wizard.json b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/widget_gen/wizard.json index 91572c2bdd2..3bfe3af638b 100644 --- a/share/qtcreator/templates/wizards/projects/qtforpythonapplication/widget_gen/wizard.json +++ b/share/qtcreator/templates/wizards/projects/qtforpythonapplication/widget_gen/wizard.json @@ -8,7 +8,7 @@ "trDisplayCategory": "Application (Qt for Python)", "icon": "../icons/icon.png", "iconKind": "Themed", - "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0}", + "enabled": "%{JS: value('Plugins').indexOf('Python') >= 0 && (!value('Platform').length || ['Desktop', 'DockerDeviceType', 'GenericLinuxOsType'].includes(value('Platform')))}", "options": [ diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts index d9a9fd2b9a8..1e5128d39a4 100644 --- a/share/qtcreator/translations/qtcreator_de.ts +++ b/share/qtcreator/translations/qtcreator_de.ts @@ -1,91 +1,20 @@ - - Application - - Failed to load core: %1 - Das Core-Plugin konnte nicht geladen werden: %1 - - - Could not send message - Nachricht konnte nicht gesendet werden - - - Unable to send command line arguments to the already running instance. It does not appear to be responding. Do you want to start a new instance of %1? - Die Kommandozeilenargumente konnten nicht an die laufende Instanz übermittelt werden. Sie antwortet nicht. Möchten Sie eine neue Instanz von %1 starten? - - - Could not find Core plugin in %1 - Das Core-Plugin wurde nicht in %1 gefunden - - - Core plugin is disabled. - Das Core-Plugin ist deaktiviert. - - Bookmarks - - Add Bookmark - Lesezeichen hinzufügen - - - Bookmark: - Lesezeichen: - - - + - + - - - New Folder - Neues Verzeichnis - Bookmarks Lesezeichen - Delete Folder - Verzeichnis löschen - - - Rename Folder - Verzeichnis umbenennen - - - Add in folder: - Im Verzeichnis: - - - Remove - Entfernen - - - Deleting a folder also removes its content.<br>Do you want to continue? - Beim Löschen eines Verzeichnisses wird auch dessen Inhalt gelöscht.<br>Möchten Sie trotzdem fortsetzen? + Matches all bookmarks. Filter by file name, by the text on the line of the bookmark, or by the bookmark's note text. + Filtert alle Lesezeichen nach dem Dateinamen, dem Text in der Zeile des Lesezeichens oder seinem Anmerkungstext. Bookmark Lesezeichen - - Show Bookmark - Lesezeichen anzeigen - - - Show Bookmark as New Page - Lesezeichen in neuem Reiter anzeigen - - - Delete Bookmark - Lesezeichen löschen - - - Rename Bookmark - Lesezeichen umbenennen - Move Up Nach oben @@ -146,6 +75,14 @@ Next Bookmark Nächstes Lesezeichen + + Meta+Shift+M + Meta+Shift+M + + + Ctrl+Shift+M + Ctrl+Shift+M + Ctrl+. Ctrl+. @@ -166,9 +103,41 @@ Edit Bookmark Lesezeichen bearbeiten + + Alt+Meta+M + Alt+Meta+M + + + Alt+M + Alt+M + + + Note text: + Anmerkungstext: + + + Line number: + Zeilennummer: + CMakeProjectManager + + Initial Configuration + + + + Current Configuration + + + + Kit Configuration + + + + Edit the current kit's CMake configuration. + + Filter Filter @@ -205,6 +174,14 @@ Edit the current CMake configuration value. Den aktuellen CMake-Konfigurationswert bearbeiten. + + &Set + + + + Set a value in the CMake configuration. + + &Unset &Aufheben @@ -221,18 +198,110 @@ Reset all unapplied changes. Alle nicht angewendeten Änderungen zurücksetzen. + + Batch Edit... + + + + Set or reset multiple values in the CMake configuration. + + Advanced Erweitert - Apply Configuration Changes - Konfigurationsänderungen anwenden + Clear system environment + Systemumgebung löschen + + + Help + Hilfe + + + Apply Kit Value + + + + Apply Initial Configuration Value + + + + Copy + Kopieren + + + Change the build directory to "%1" and start with a basic CMake configuration? + + + + The CMake flag for the development team + + + + The CMake flag for the provisioning profile + + + + The CMake flag for the architecture on macOS + + + + The CMake flag for QML debugging, if enabled + + + + Profile + Profile + + + Clean Environment + Saubere Umgebung + + + System Environment + Systemumgebung + + + Additional CMake <a href="options">options</a>: + + + + Build type: + <UNSET> <NICHT GESETZT> + + Enter one CMake <a href="variable">variable</a> per line.<br/>To set or change a variable, use -D&lt;variable&gt;:&lt;type&gt;=&lt;value&gt;.<br/>&lt;type&gt; can have one of the following values: FILEPATH, PATH, BOOL, INTERNAL, or STRING.<br/>To unset a variable, use -U&lt;variable&gt;.<br/> + + + + Re-configure with Initial Parameters + + + + Clear CMake configuration and configure with initial parameters? + + + + Do not ask again + Nicht noch einmal nachfragen + + + Kit CMake Configuration + + + + Configure + Konfigurieren + + + Stop CMake + + bool display string for cmake type BOOLEAN @@ -261,328 +330,772 @@ CMake CMake - - - Cvs - &CVS - &CVS + Run CMake + CMake ausführen + + + Clear CMake Configuration + CMake-Konfiguration bereinigen + + + Rescan Project + Projekt neu auswerten + + + Build + Erstellen + + + Build File + Datei erstellen + + + Build File "%1" + Datei "%1" erstellen + + + Ctrl+Alt+B + Ctrl+Alt+B + + + Build File is not supported for generator "%1" + Der Generator "%1" unterstützt das Erstellen einer Datei nicht + + + No cmake tool set. + Keine CMake Anwendung konfiguriert. + + + No compilers set in kit. + Im Kit sind keine Compiler eingerichtet. + + + CMakeUserPresets.json cannot re-define the %1 preset: %2 + + + + Build preset %1 is missing a corresponding configure preset. + + + + Failed to load %1: %2 + + + + yes + ja + + + no + nein + + + (Default) + (Vorgabe) + + + Name + Name + + + Manual + Benutzerdefiniert + + + CMake .qch File + CMake .qch-Datei + + + Autorun CMake + CMake automatisch ausführen + + + Automatically run CMake after changes to CMake project files. + CMake nach Änderungen an den CMake-Projektdateien automatisch ausführen. + + + Version: %1 + Version: %1 + + + Supports fileApi: %1 + + + + Detection source: "%1" + + + + CMake executable path does not exist. + + + + CMake executable path is not a file. + + + + CMake executable path is not executable. + + + + CMake executable does not provide required IDE integration features. + + + + Path + Pfad + + + Name: + Name: + + + Path: + Pfad: + + + Version: + Version: + + + Help file: + Hilfedatei: Add Hinzufügen - Add "%1" - "%1" hinzufügen + Clone + Klonen - Alt+C,Alt+A - Alt+C,Alt+A + Remove + Entfernen - Diff Project - Diff für Projekt + Make Default + Als Vorgabe setzen - Diff Current File - Diff für Datei + Set as the default CMake Tool to use when creating a new kit or when no value is set. + Als vorgegebenes CMake-Werkzeug einstellen, das verwendet wird, wenn eine neues Kit erstellt wird oder kein Wert eingestellt ist. - Diff "%1" - Diff für "%1" + Clone of %1 + Kopie von %1 - Alt+C,Alt+D - Alt+C,Alt+D + New CMake + Neues CMake - Commit All Files - Commit aller Dateien + System CMake at %1 + System-CMake in %1 - Commit Current File - Commit der aktuellen Datei + Current executable + - Cannot find repository for "%1". - Kann das Repository für "%1" nicht finden. + Build the executable used in the active run configuration. Currently: %1 + - Parsing of the log output failed. - Die Log-Ausgabe konnte nicht ausgewertet werden. + Target: %1 + - Commit "%1" - Commit von "%1" + Enable automatic provisioning updates: + - Alt+C,Alt+C - Alt+C,Alt+C + Tells xcodebuild to create and download a provisioning profile if a valid one does not exist. + - Filelog Current File - Filelog für Datei + Target + Ziel - Ignore Whitespace - Leerzeichen ignorieren + The build configuration is currently disabled. + Die Build-Konfiguration ist zurzeit deaktiviert. - Ignore Blank Lines - Leerzeilen ignorieren + A CMake tool must be set up for building. Configure a CMake tool in the kit options. + Zum Erstellen muss ein CMake Tool eingestellt sein. Die Konfiguration erfolgt in den Kit Einstellungen. - &Edit - B&earbeiten + There is a CMakeCache.txt file in "%1", which suggest an in-source build was done before. You are now building in "%2", and the CMakeCache.txt file might confuse CMake. + Es gibt eine Datei CMakeCache.txt in "%1", was darauf hindeutet, dass das Projekt bereits innerhalb der Quellen erstellt wurde. Sie erstellen es jetzt in "%2". Die Datei CMakeCache.txt könnte CMake stören. - CVS Checkout - CVS-Checkout + Persisting CMake state... + Speichere CMake Status... - Meta+C,Meta+D - Meta+C,Meta+D + Running CMake in preparation to build... + CMake wird ausgeführt um die Erstellung vorzubereiten... - Filelog "%1" - Filelog für "%1" + Project did not parse successfully, cannot build. + Das Projekt konnte nicht erfolgreich ausgewertet werden. Es kann nicht erstellt werden. - Annotate Current File - Annotation für Datei + CMake Build + Display name for CMakeProjectManager::CMakeBuildStep id. + Erstellen mit CMake - Annotate "%1" - Annotation für "%1" + CMake arguments: + Kommandozeilenargumente für CMake: - Meta+C,Meta+A - Meta+C,Meta+A + Tool arguments: + Toolparameter: - Meta+C,Meta+C - Meta+C,Meta+C + Build + ConfigWidget display name. + - Delete... - Löschen... + Targets: + Ziele: - Delete "%1"... - Lösche "%1"... + Key + Schlüssel - Revert... - Rückgängig machen... + Kit: + Kit: - Revert "%1"... - Änderungen in "%1" rückgängig machen... + Initial Configuration: + - Edit - Anfordern + Current Configuration: + - Edit "%1" - "%1" anfordern + Type: + Typ: - Unedit - Anforderung zurücknehmen + Value + Wert - Unedit "%1" - Anforderung der Datei '%1" zurücknehmen + Changing Build Directory + Build-Verzeichnis ändern - Unedit Repository - Anforderung im gesamten Repository zurücknehmen + Minimum Size Release + Release (kleinstmöglich) - Diff Project "%1" - Diff für Projekt "%1" + Release with Debug Information + Release mit Debuginformationen - Project Status - Status des Projekts + Failed to open %1 for reading. + Die Datei %1 konnte nicht zum Lesen geöffnet werden. - Status of Project "%1" - Status des Projekts "%1" + CMake + SnippetProvider + CMake - Log Project - Log für Projekt + Build "%1" + "%1" erstellen - Log Project "%1" - Log für Projekt "%1" + Not in CMakeCache.txt + Nicht in CMakeCache.txt - Update Project - Projekt auf aktuellen Stand bringen + Select a file for %1 + Wählen Sie eine Datei für %1 - Update Project "%1" - Projekt "%1"auf aktuellen Stand bringen + Select a directory for %1 + Wählen Sie ein Verzeichnis für %1 - Commit Project - Commit des Projekts + Determines whether file paths are copied to the clipboard for pasting to the CMakeLists.txt file when you add new files to CMake projects. + Legt fest, ob beim Hinzufügen von neuen Dateien zu CMake-Projekten deren Dateipfade in die Zwischenablage kopiert werden, um sie in die CMakeLists.txt-Datei einzufügen. - Commit Project "%1" - Commit des Projekts "%1" + Package manager auto setup + - Update Directory - Verzeichnis aktualisieren + Add the CMAKE_PROJECT_INCLUDE_BEFORE variable pointing to a CMake script that will install dependencies from the conanfile.txt, conanfile.py, or vcpkg.json file from the project source directory. + - Update Directory "%1" - Verzeichnis "%1" aktualisieren + Ask before re-configuring with initial parameters + - Commit Directory - Commit des Verzeichnisses + Show subfolders inside source group folders + - Commit Directory "%1" - Commit des Verzeichnisses "%1" + General + Allgemein - Diff Repository - Diff des Repositorys + Adding Files + Dateien hinzufügen - Repository Status - Status des Repositorys + Ask about copying file paths + Fragen, ob Dateipfade kopiert werden sollen - Repository Log - Log des Repositorys + Do not copy file paths + Dateipfade nicht kopieren - Update Repository - Repository auf den aktuellen Stand bringen + Copy file paths + Dateipfade kopieren - Revert Repository... - Änderungen im gesamten Repository rückgängig machen... + Scan "%1" project tree + Durchsuche "%1"-Projektbaum - Revert Repository - Alle Änderungen rückgängig machen + The kit needs to define a CMake tool to parse this project. + Das Kit muss ein CMake-Werkzeug festlegen, um dieses Projekt auszuwerten. - No CVS executable specified. - Es wurde keine ausführbare Datei für CVS angegeben. + Copy to Clipboard? + In die Zwischenablage kopieren? - Revert all pending changes to the repository? - Möchten Sie alle ausstehenden Änderungen des Repositorys verwerfen? + Files are not automatically added to the CMakeLists.txt file of the CMake project. +Copy the path to the source files to the clipboard? + Dateien werden nicht automatisch zur Datei CMakeLists.txt des CMake-Projekts hinzugefügt. +Möchten Sie den Pfad zu den Quelldateien in die Zwischenablage kopieren? - Revert failed: %1 - Fehler beim Zurücksetzen der Änderungen: %1 + Apply configuration changes? + Konfigurationsänderungen anwenden? - The file has been changed. Do you want to revert it? - Die Datei wurde geändert. Möchten Sie die Änderungen rückgängig machen? + Run CMake with configuration changes? + - Another commit is currently being executed. - Es läuft bereits ein Commit-Vorgang. + <b>CMake configuration failed<b><p>The backup of the previous configuration has been restored.</p><p>Issues and "Projects > Build" settings show more information about the failure.</p + - There are no modified files. - Es gibt keine geänderten Dateien. + <b>Failed to load project<b><p>Issues and "Projects > Build" settings show more information about the failure.</p + - Would you like to discard your changes to the repository "%1"? - Möchten Sie alle ausstehenden Änderungen des Repositorys "%1" verwerfen? + Failed to create build directory "%1". + Das Build-Verzeichnis "%1" konnte nicht erstellt werden. - Would you like to discard your changes to the file "%1"? - Möchten Sie alle ausstehenden Änderungen in der Datei "%1" verwerfen? + No CMake tool set up in kit. + - Could not find commits of id "%1" on %2. - Es konnten keine Commits des Datums %2 mit der ID "%1" gefunden werden. + The remote CMake executable cannot write to the local build directory. + - Project status - Status des Projekts + <No CMake Tool available> + <Kein CMake-Werkzeug verfügbar> - Repository status - Status des Repositorys + CMake Tool + CMake-Werkzeug - The initial revision %1 cannot be described. - Die erste Version (%1) kann nicht weiter beschrieben werden. + The CMake Tool to use when building a project with CMake.<br>This setting is ignored when using other build systems. + Das zum Erstellen eines Projektes mit CMake zu verwendende CMake-Werkzeug.<br>Diese Einstellung wird bei der Verwendung anderer Build-Systeme ignoriert. - Added - Hinzugefügt + Unconfigured + Nicht konfiguriert - Removed - Gelöscht + Path to the cmake executable + Pfad zur ausführbaren Datei von cmake - Modified - Geändert + CMake version %1 is unsupported. Update to version 3.14 (with file-api) or later. + - Configuration - Konfiguration + Change... + Ändern... - Miscellaneous - Sonstige Einstellungen + <none> + <leer> - Prompt on submit - Submit bestätigen + CMake Generator + CMake-Generator - Describe all files matching commit id - Alle zur Commit-ID gehörenden Dateien beschreiben + Platform + Plattform - Timeout: - Zeitlimit: + Toolset + - s - s + Generator: + Generator: - CVS command: - CVS-Kommando: + Extra generator: + Zusätzlicher Generator: - CVS root: - CVS-Quelle (CVSROOT): + Platform: + Plattform: - Diff options: - Optionen für Diff: + Toolset: + Toolset: - When checked, all files touched by a commit will be displayed when clicking on a revision number in the annotation view (retrieved via commit ID). Otherwise, only the respective file will be displayed. - Wenn die Option aktiviert ist, werden beim Klick auf die Revisionsnummer in der Annotationsansicht alle Dateien angezeigt, die zu einem Commit gehören (mittels Commit-ID bestimmt). Ansonsten wird nur die betreffende Datei angezeigt. + CMake generator defines how a project is built when using CMake.<br>This setting is ignored when using other build systems. + Der CMake-Generator definiert, wie ein Projekt mit CMake gebaut wird.<br>Diese Einstellung wird von anderen Buildsystemen ignoriert. - CVS Command - CVS-Kommando + CMake Tool is unconfigured, CMake generator will be ignored. + Das CMake-Tool ist nicht konfiguriert. Der CMake-Generator wird ignoriert. - CVS - CVS + CMake Tool does not support the configured generator. + Das CMake-Tool unterstützt den konfigurierten Generator nicht. + + + Platform is not supported by the selected CMake generator. + Der ausgewählte CMake-Generator unterstützt die Plattform nicht. + + + Toolset is not supported by the selected CMake generator. + Der ausgewählte CMake-Generator unterstützt das Toolset nicht. + + + <Use Default Generator> + <Benutze Standardgenerator> + + + Generator: %1<br>Extra generator: %2 + Generator: %1<br>Zusätzlicher Generator: %2 + + + Platform: %1 + Plattform: %1 + + + Toolset: %1 + Toolset: %1 + + + Edit CMake Configuration + CMake-Konfiguration bearbeiten + + + CMake <a href="generator">generator</a> + + + + The selected CMake binary does not support file-api. %1 will not be able to parse CMake projects. + + + + Enter one CMake <a href="variable">variable</a> per line.<br/>To set a variable, use -D&lt;variable&gt;:&lt;type&gt;=&lt;value&gt;.<br/>&lt;type&gt; can have one of the following values: FILEPATH, PATH, BOOL, INTERNAL, or STRING. + + + + CMake Configuration + CMake-Konfiguration + + + Default configuration passed to CMake when setting up a project. + Die Standardkonfiguration wird an CMake beim Anlegen eines Projekts übergeben. + + + CMake configuration has no path to qmake binary set, even though the kit has a valid Qt version. + Die CMake-Konfiguration hat keinen qmake-Pfad gesetzt, obwohl das Kit eine gültige Qt-Version hat. + + + CMake configuration has a path to a qmake binary set, even though the kit has no valid Qt version. + Die CMake-Konfiguration hat einen qmake-Pfad gesetzt, obwohl das Kit keine gültige Qt-Version hat. + + + CMake configuration has a path to a qmake binary set that does not match the qmake binary path configured in the Qt version. + Die CMake-Konfiguration hat einen qmake-Pfad gesetzt, der allerdings nicht mit dem qmake-Pfad der Qt-Version übereinstimmt. + + + CMake configuration has no CMAKE_PREFIX_PATH set that points to the kit Qt version. + Die CMake-Konfiguration hat keinen CMAKE_PREFIX_PATH gesetzt, der auf die Qt-Version des Kits verweist. + + + CMake configuration has no path to a C compiler set, even though the kit has a valid tool chain. + Die CMake-Konfiguration hat keinen C-Compiler gesetzt, obwohl das Kit eine gültige Toolchain hat. + + + CMake configuration has a path to a C compiler set, even though the kit has no valid tool chain. + Die CMake-Konfiguration hat einen C-Compiler gesetzt, obwohl das Kit keine gültige Toolchain hat. + + + CMake configuration has a path to a C compiler set that does not match the compiler path configured in the tool chain of the kit. + Die CMake-Konfiguration hat einen C-Compiler gesetzt, der nicht mit dem Compiler der Toolchain übereinstimmt, die vom Kit verwendet wird. + + + CMake configuration has no path to a C++ compiler set, even though the kit has a valid tool chain. + Die CMake-Konfiguration hat keinen C++-Compiler gesetzt, obwohl das Kit eine gültige Toolchain hat. + + + CMake configuration has a path to a C++ compiler set, even though the kit has no valid tool chain. + Die CMake-Konfiguration hat einen C++-Compiler gesetzt, obwohl das Kit keine gültige Toolchain hat. + + + CMake configuration has a path to a C++ compiler set that does not match the compiler path configured in the tool chain of the kit. + Die CMake-Konfiguration hat einen C++-Compiler gesetzt, der nicht mit dem Compiler der Toolchain übereinstimmt, die vom Kit verwendet wird. + + + Build CMake target + CMake-Ziel erstellen + + + Builds a target of any open CMake project. + + + + Open CMake target + CMake-Ziel öffnen + + + Jumps to the definition of a target of any open CMake project. + + + + The source directory %1 is not reachable by the CMake executable %2. + + + + The build directory %1 is not reachable by the CMake executable %2. + + + + The build directory "%1" does not exist + + + + CMake executable "%1" and build directory "%2" must be on the same device. + + + + Running %1 in %2. + Führe %1 in %2 aus. + + + Configuring "%1" + Konfiguriere "%1" + + + CMake process failed to start. + + + + CMake process was canceled by the user. + + + + CMake process crashed. + + + + CMake process exited with exit code %1. + + + + <Build Directory> + <Build-Verzeichnis> + + + <Other Locations> + <Andere Orte> + + + Unexpected source directory "%1", expected "%2". This can be correct in some situations, for example when importing a standalone Qt test, but usually this is an error. Import the build anyway? + + + + CMake Modules + CMake-Module + + + Target type: + Zieltyp: + + + No build artifacts + Keine Build-Artefakte + + + Build artifacts: + Build-Artefakte: + + + Version not parseable + + + + Searching CMake binaries... + + + + Found "%1" + + + + Removing CMake entries... + + + + Removed "%1" + + + + CMake: + + + + Failed to set up CMake file API support. %1 cannot extract project information. + + + + Invalid reply file created by CMake. + + + + Invalid cache file generated by CMake. + + + + Invalid cmakeFiles file generated by CMake. + + + + Invalid codemodel file generated by CMake: No directories. + + + + Invalid codemodel file generated by CMake: Empty directory object. + + + + Invalid codemodel file generated by CMake: No projects. + + + + Invalid codemodel file generated by CMake: Empty project object. + + + + Invalid codemodel file generated by CMake: Broken project data. + + + + Invalid codemodel file generated by CMake: Empty target object. + + + + Invalid codemodel file generated by CMake: Broken target data. + + + + Invalid codemodel file generated by CMake: No configurations. + + + + Invalid codemodel file generated by CMake: Empty configuration object. + + + + Invalid codemodel file generated by CMake: Broken indexes in directories, projects, or targets. + + + + Invalid codemodel file generated by CMake. + + + + Invalid target file: Information is missing. + + + + Invalid target file generated by CMake: Broken indexes in target details. + + + + CMake parsing was canceled. + + + + No "%1" CMake configuration found. Available configurations: "%2". +Make sure that CMAKE_CONFIGURATION_TYPES variable contains the "Build type" field. + + + + No "%1" CMake configuration found. Available configuration: "%2". +Make sure that CMAKE_BUILD_TYPE variable matches the "Build type" field. + + + + CMake returned error code: %1 + + + + Failed to rename %1 to %2. + + + + Failed to copy %1 to %2. + + + + Failed to read %1 file + + + + Invalid %1 file + + + + Invalid "version" in %1 file + + + + Invalid "configurePresets" section in %1 file + + + + Invalid "buildPresets" section in %1 file + + + + <File System> + @@ -647,6 +1160,126 @@ General Allgemein + + Code Pasting + Code Pasting + + + <Comment> + <Kommentar> + + + Paste + Einfügen + + + Cannot open %1: %2 + Die Datei %1 kann nicht geöffnet werden: %2 + + + %1 does not appear to be a paster file. + Die Datei %1 ist keine Paster-Datei. + + + Error in %1 at %2: %3 + Fehler in %1 bei %2: %3 + + + Please configure a path. + Bitte geben Sie einen Pfad an. + + + Fileshare + Dateibasiert + + + %1 - Configuration Error + %1 - Konfigurationsfehler + + + Checking connection + Prüfe Verbindung + + + Connecting to %1... + Verbinde zu %1... + + + The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. + Das dateibasierte Paster-Protokoll dient zum Austausch von Textauschnitten mittels einfacher Dateien auf einem Netzlaufwerk. Die Dateien werden nicht gelöscht. + + + &Path: + &Pfad: + + + &Display: + &Anzeige: + + + entries + Einträge + + + Protocol: + Protokoll: + + + Paste: + Ausschnitt: + + + Send to Codepaster + An CodePaster senden + + + &Username: + &Nutzername: + + + <Username> + <Nutzername> + + + &Description: + &Beschreibung: + + + <Description> + <Beschreibung> + + + Parts to Send to Server + Zu versendende Ausschnitte + + + &Expires after: + &Verfällt nach: + + + Days + Tagen + + + Copy-paste URL to clipboard + Kopiere den URL in die Zwischenablage + + + Username: + Nutzername: + + + Default protocol: + Vorgabeprotokoll: + + + Display General Messages after sending a post + + + + %1: %2 + %1: %2 + ContentWindow @@ -811,18 +1444,14 @@ Trotzdem fortfahren? Show keyboard shortcuts in context menus (default: %1) Tastenkombinationen in Kontextmenüs anzeigen (Vorgabe: %1) - - on - an - - - off - aus - The high DPI settings will take effect after restart. Die Einstellung für hohe Auflösungen wird nach einem Neustart wirksam. + + Text codec for tools: + Zeichenkodierung für Werkzeuge: + The language change will take effect after restart. Die Änderung der Sprache wird nach einem Neustart wirksam. @@ -900,15 +1529,6 @@ Trotzdem fortfahren? Return to Editor Zum Editor zurückkehren - - &New File or Project... - &Neu... - - - New File or Project - Title of dialog - Neue Datei oder neues Projekt - &Open File or Project... Datei oder Projekt &öffnen... @@ -1014,8 +1634,20 @@ Trotzdem fortfahren? Meta+0 - &Options... - &Einstellungen... + Version: + Version: + + + Change Log + Änderungshistorie + + + Contact + Kontakt + + + <p>Qt Creator developers can be reached at the Qt Creator mailing list:</p>%1<p>or the #qt-creator channel on Libera.Chat IRC:</p>%2<p>Our bug tracker is located at %3.</p><p>Please use %4 for bigger chunks of text.</p> + <p>Sie können die Qt Creator-Entwickler auf dem E-Mail-Verteiler</p>%1<p>oder dem IRC Kanal #qt-creator auf Libera.Chat</p>%2<p>erreichen. Unseren Bugtracker finden Sie unter %3.</p><p>Bitte benutzen Sie %4 für längere Texte.</p> Minimize @@ -1037,6 +1669,14 @@ Trotzdem fortfahren? Ctrl+Meta+W Ctrl+Meta+W + + Change Log... + Änderungshistorie... + + + Contact... + Kontakt... + Cycle Mode Selector Styles Stil der Moduswahl wechseln @@ -1061,6 +1701,40 @@ Trotzdem fortfahren? Ctrl+0 Ctrl+0 + + Exit %1? + %1 beenden? + + + &New Project... + &Neues Projekt... + + + New Project + Title of dialog + Neues Projekt + + + New File... + Neue Datei... + + + New File + Title of dialog + Neue Datei + + + Debug %1 + %1 debuggen + + + Show Logs... + Protokolle anzeigen... + + + Pr&eferences... + Ei&nstellungen... + Alt+0 Alt+0 @@ -1122,10 +1796,6 @@ Trotzdem fortfahren? Core::Internal::NewDialog - - New Project - Neues Projekt - Choose a template: Vorlage: @@ -1172,10 +1842,6 @@ Trotzdem fortfahren? Open File With... Öffne Datei mit... - - Open file extension with: - Öffne Dateiendung mit: - Open file "%1" with: Öffne Datei "%1" mit: @@ -1183,6 +1849,14 @@ Trotzdem fortfahren? Core::Internal::OutputPaneManager + + Minimize + Minimieren + + + Maximize + Maximieren + Output Ausgaben @@ -1200,11 +1874,7 @@ Trotzdem fortfahren? Vorangehender Eintrag - Maximize Output Pane - Ausgabebereich maximiert darstellen - - - Output &Panes + Out&put Ausgabe&bereiche @@ -1223,10 +1893,6 @@ Trotzdem fortfahren? Alt+Shift+9 Alt+Shift+9 - - Minimize Output Pane - Ausgabebereich minimiert darstellen - Core::Internal::PluginDialog @@ -1239,18 +1905,10 @@ Trotzdem fortfahren? Fehlermeldungen zu %1 Fehlermeldungen - - Close - Schließen - Install Plugin... Plugin installieren... - - Restart required. - Neustart erforderlich. - Installed Plugins Installierte Plugins @@ -1340,10 +1998,6 @@ Trotzdem fortfahren? Preferences Einstellungen - - Options - Einstellungen - Core::Internal::ShortcutSettings @@ -1417,6 +2071,10 @@ Trotzdem fortfahren? <h3>%1</h3>%2<br/>%3%4%5<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> <h3>%1</h3>%2<br/>%3%4%5<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> + + The Qt logo as well as Qt®, Qt Quick®, Built with Qt®, Boot to Qt®, Qt Quick Compiler®, Qt Enterprise®, Qt Mobile® and Qt Embedded® are registered trademarks of The Qt Company Ltd. + The Qt logo as well as Qt®, Qt Quick®, Built with Qt®, Boot to Qt®, Qt Quick Compiler®, Qt Enterprise®, Qt Mobile® and Qt Embedded® are registered trademarks of The Qt Company Ltd. + Core::ModeManager @@ -1425,147 +2083,6 @@ Trotzdem fortfahren? Gehe zu Modus <b>'%1'</b> - - CppTools - - Code Style - Coding-Stil - - - File Naming - Namenskonventionen für Dateien - - - Diagnostic Configurations - Diagnosekonfigurationen - - - C++ Symbols in Current Document - C++-Symbole im aktuellen Dokument - - - C++ Classes - C++-Klassen - - - C++ Functions - C++-Funktionen - - - All Included C/C++ Files - Alle eingebundenen C/C++-Dateien - - - C++ Classes, Enums and Functions - C++-Klassen, -Aufzählungen und -Funktionen - - - C++ Symbols - C++-Symbole - - - C++ - C++ - - - The project contains C source files, but the currently active kit has no C compiler. The code model will not be fully functional. - Das Projekt enthält C-Quelldateien, aber das aktive Kit hat keinen C-Compiler. Das Codemodell wird nur eingeschränkt funktionieren. - - - The project contains C++ source files, but the currently active kit has no C++ compiler. The code model will not be fully functional. - Das Projekt enthält C++-Quelldateien, aber das aktive Kit hat keinen C++-Compiler. Das Codemodell wird nur eingeschränkt funktionieren. - - - - CppTools::Internal::CppFileSettingsWidget - - /************************************************************************** -** %1 license header template -** Special keywords: %USER% %DATE% %YEAR% -** Environment variables: %$VARIABLE% -** To protect a percent sign, use '%%'. -**************************************************************************/ - - /************************************************************************** -** %1 license header template -** Special keywords: %USER% %DATE% %YEAR% -** Environment variables: %$VARIABLE% -** To protect a percent sign, use '%%'. -**************************************************************************/ - - - - Edit... - Bearbeiten... - - - Choose Location for New License Template File - Dateiname für eine neue Lizenzvorlage - - - - CppTools::Internal::CppFindReferences - - C++ Usages: - C++ Referenzen: - - - Searching for Usages - Suche nach Referenzen - - - Re&name %n files - - Eine Datei umbe&nennen - %n Dateien umbe&nennen - - - - Files: -%1 - Dateien: -%1 - - - C++ Macro Usages: - C++ Macro-Referenzen: - - - - CppTools::Internal::CppToolsPlugin - - &C++ - &C++ - - - Switch Header/Source - Zwischen Header- und Quelldatei wechseln - - - Open Corresponding Header/Source in Next Split - Headerdatei beziehungsweise Quelldatei im nächsten geteilten Fenster anzeigen - - - Meta+E, F4 - Meta+E, F4 - - - Ctrl+E, F4 - Ctrl+E, F4 - - - The license template. - Die Lizenzvorlage. - - - The configured path to the license template - Der eingestellte Pfad der Lizenzvorlage - - - Insert "#pragma once" instead of "#ifndef" include guards into header file - "#pragma once" statt Include-Guards mit "#ifndef" in Header-Datei einfügen - - Debugger @@ -1577,43 +2094,6 @@ Trotzdem fortfahren? <Encoding error> <Zeichenkodierungsfehler> - - - QtDumperHelper - - ptrace: Operation not permitted. - -Could not attach to the process. Make sure no other debugger traces this process. -Check the settings of -/proc/sys/kernel/yama/ptrace_scope -For more details, see /etc/sysctl.d/10-ptrace.conf - - ptrace: Operation not permitted. - -Der Debugger konnte nicht an den laufenden Prozess angehängt werden. Stellen Sie sicher, dass kein anderer Debugger an diesen Prozess angehängt ist. Prüfen Sie die Einstellungen von -/proc/sys/kernel/yama/ptrace_scope -Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf - - - - ptrace: Operation not permitted. - -Could not attach to the process. Make sure no other debugger traces this process. -If your uid matches the uid -of the target process, check the settings of -/proc/sys/kernel/yama/ptrace_scope -For more details, see /etc/sysctl.d/10-ptrace.conf - - ptrace: Operation not permitted. - -Der Debugger konnte nicht an den laufenden Prozess angehängt werden. Stellen Sie sicher, dass kein anderer Debugger an diesen Prozess angehängt ist. Wenn Ihre uid mit der uid des Prozesses übereinstimmt, prüfen Sie die Einstellungen von -/proc/sys/kernel/yama/ptrace_scope -Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf - - - - - Debugger Select Start Address Startadresse @@ -1646,6 +2126,10 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Select Core File Core-Datei auswählen + + Download of remote file failed: %1 + + Select Executable or Symbol File Ausführbare Datei oder Symboldatei auswählen @@ -1670,9 +2154,6 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Override &start script: Startskript &überschreiben: - - - Debugger Marker File: Marker-Datei: @@ -1951,6 +2432,10 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Propagate Change to Preset Breakpoint Breakpoint-Änderungen auch für nächsten Lauf verwenden + + &Condition: + + Disable Selected Locations Ausgewählte Adressen deaktivieren @@ -2087,20 +2572,8 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Breakpoint will only be hit in the specified thread(s). Der Haltepunkt wird nur im angegebenen Thread ausgelöst. - - - Debugger - - Additional &arguments: - Zusätzliche &Argumente: - - - Break on: - Halte bei: - Startup - Placeholder Start @@ -2111,10 +2584,6 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Correct breakpoint location Positionen der Haltepunkte korrigieren - - This is useful to catch runtime error messages, for example caused by assert(). - Damit können Laufzeit-Fehlermeldungen abgefangen werden, zum Beispiel bei assert(). - CDB CDB @@ -2127,18 +2596,10 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Ignore first chance access violations Ignoriere "First chance access violations" - - <html><head/><body><p>Attempts to correct the location of a breakpoint based on file and line number should it be in a comment or in a line for which no code is generated. The correction is based on the code model.</p></body></html> - <html><head/><body><p>Versucht, die Position eines zeilenbasierten Haltepunkts zu korrigieren, sofern er sich in einem Kommentar oder in einer Zeile, die keinen Code generiert, befindet. Die Korrektur basiert auf dem Codemodell.</p></body></html> - Use Python dumper Python-Dumper verwenden - - <html><head/><body><p>Uses CDB's native console for console applications. This overrides the setting in Environment > System. The native console does not prompt on application exit. It is suitable for diagnosing cases in which the application does not start up properly in the configured console and the subsequent attach fails.</p></body></html> - <html><head/><body><p>Bewirkt, dass die native CDB-Konsole für Konsolenanwendungen verwendet wird. Dies hebt die Einstellung in Umgebung > System auf. Die native CDB-Konsole schließt sich nach dem Beenden der Anwendung ohne Nachfrage. Sie kann zur Diagnose von Anwendungen verwendet werden, die in der konfigurierten Konsole nicht starten und bei denen das darauffolgende Anhängen des Debuggers fehlschlägt.</p></body></html> - First chance exceptions "First chance"-Ausnahmen @@ -2151,9 +2612,6 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Add Exceptions to Issues View Ausnahmen zur Ansicht "Probleme" hinzufügen - - - Debugger Insert Symbol Server... Symbol-Server einfügen... @@ -2178,25 +2636,6 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Configure Symbol paths that are used to locate debug symbol files. Symbolpfade konfigurieren, die benutzt werden, um Debug-Symboldateien zu finden. - - - Debugger - - Use Alternating Row Colors - Alternierende Farben für Zeilen benutzen - - - Keep Editor Stationary When Stepping - Editor bei Einzelschritten nicht bewegen - - - Debugger Font Size Follows Main Editor - Schriftgröße des Debuggers mit Editor synchronisieren - - - Show a Message Box When Receiving a Signal - Empfang eines Signals durch Dialogbox anzeigen - Log Time Stamps Zeitstempel loggen @@ -2209,6 +2648,22 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf <p>This switches the Locals and Expressions views to automatically dereference pointers. This saves a level in the tree view, but also loses data for the now-missing intermediate level. <p>Weist den Debugger an, automatisch dereferenzierte Zeiger anzuzeigen. Dadurch ist die Baumansicht flacher, aber weniger detailreich. + + Additional arguments: + Zusätzliche Argumente: + + + Catches runtime error messages caused by assert(), for example. + + + + Uses CDB's native console for console applications. This overrides the setting in Environment > System. The native console does not prompt on application exit. It is suitable for diagnosing cases in which the application does not start up properly in the configured console and the subsequent attach fails. + + + + Attempts to correct the location of a breakpoint based on file and line number shouldit be in a comment or in a line for which no code is generated. The correction is based on the code model. + + Show "std::" Namespace in Types "std::"-Namensraum in Typnamen anzeigen @@ -2273,10 +2728,6 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf <p>Not all source code lines generate executable code. Putting a breakpoint on such a line acts as if the breakpoint was set on the next line that generated code. Selecting 'Adjust Breakpoint Locations' shifts the red breakpoint markers in such cases to the location of the true breakpoint. <p>Nicht aus allen Quellcode-Zeilen wird ausführbarer Code erzeugt. Wenn man auf solche Zeilen einen Haltepunkt setzt, verhält er sich so, als ob er auf die nächste Zeile gesetzt worden wäre, aus der Maschinencode erzeugt wurde. Das Aktivieren der Einstellung 'Positionen der Haltepunkte korrigieren' bewirkt, dass der Haltepunkt-Marker in so einem Fall an die Stelle des resultierenden Haltepunkts verschoben wird. - - <p>Checking this will enable tooltips in the stack view during debugging. - <p>Schaltet Tooltips für die Stack-Anzeige während des Debuggens ein. - <p>The maximum length for strings in separated windows. Longer strings are cut off and displayed with an ellipsis attached. <p>Die maximale Länge von Zeichenketten in separaten Fenstern. Längere Ausdrücke werden abgeschnitten und mit Auslassungspunkten angezeigt. @@ -2285,6 +2736,14 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Synchronize Breakpoints Haltepunkte synchronisieren + + Force logging to console + + + + Sets QT_LOGGING_TO_CONSOLE=1 in the environment of the debugged program, preventing storing debug output in system logs. + + Adjust Breakpoint Locations Positionen der Haltepunkte korrigieren @@ -2305,22 +2764,18 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Break on "qFatal" Bei "qFatal" anhalten + + GDB commands entered here will be executed after GDB has been started, but before the debugged program is started or attached, and before the debugging helpers are initialized. + + + + GDB commands entered here will be executed after GDB has successfully attached to remote targets.</p><p>You can add commands to further set up the target here, such as "monitor reset" or "load". + + Automatically Quit Debugger Debugger automatisch beenden - - <p>Checking this will enable tooltips for variable values during debugging. Since this can slow down debugging and does not provide reliable information as it does not use scope information, it is switched off by default. - <p>Diese Option aktiviert Tooltips für Variablen beim Debuggen. Da es das Debuggen verlangsamt und wegen der fehlenden Gültigkeitsinformationen nicht zuverlässig ist, ist es per Vorgabe deaktiviert. - - - <p>Checking this will enable tooltips in the locals view during debugging. - <p>Schaltet Tooltips für die Anzeige "Lokale Variablen und Ausdrücke" während des Debuggens ein. - - - <p>Checking this will enable tooltips in the breakpoints view during debugging. - <p>Schaltet Tooltips im Haltepunkt-Fenster während des Debuggens ein. - Use Tooltips in Stack View when Debugging Tooltips für Stack-Anzeige beim Debuggen @@ -2333,10 +2788,6 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Enable Reverse Debugging Rückwärts Debuggen aktivieren - - Register For Post-Mortem Debugging - Als Post-Mortem-Debugger registrieren - <p>The maximum length of string entries in the Locals and Expressions views. Longer than that are cut off and displayed with an ellipsis attached. <p>Die maximale Länge von Zeichenketten in "Lokale Variablen" und "Ausdrücke". Längere Ausdrücke werden abgeschnitten und mit Auslassungspunkten angezeigt. @@ -2377,9 +2828,6 @@ Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf Use Tooltips in Breakpoints View when Debugging Beim Debuggen Tooltips im Haltepunkt-Fenster anzeigen - - - Debugger Reading %1... Lese %1... @@ -2518,10 +2966,6 @@ Sie haben die Wahl zu warten oder das Debuggen abzubrechen. Debugger Error Debugger-Fehler - - Interrupting not possible. - Das Unterbrechen ist nicht möglich. - Symbols found. Symbole wurden gefunden. @@ -2732,9 +3176,6 @@ Sie haben die Wahl zu warten oder das Debuggen abzubrechen. Setting breakpoints... Setze Haltepunkte... - - - Debugger General Allgemein @@ -2816,14 +3257,6 @@ markers in the source code editor. <p>To execute simple Python commands, prefix them with "python".</p><p>To execute sequences of Python commands spanning multiple lines prepend the block with "python" on a separate line, and append "end" on a separate line.</p><p>To execute arbitrary Python scripts, use <i>python execfile('/path/to/script.py')</i>.</p> <p>Um einfache Python-Kommandos auszuführen, stellen Sie ihnen "python" voran.</p><p>Um mehrere Zeilen umfassende Sequenzen von Python-Kommandos auszuführen, stellen Sie dem Block "python" auf einer separaten Zeile voran und fügen Sie "end" auf einer separaten Zeile an.</p><p>Um beliebige Python-Skripte auszuführen, verwenden Sie <i>python execfile('/pfad/zu/script.py')</i>.</p> - - The options below should be used with care. - Die untenstehenden Einstellungen sollten mit Vorsicht verwendet werden. - - - <html><head/><body>The options below give access to advanced or experimental functions of GDB. Enabling them may negatively impact your debugging experience.</body></html> - <html><head/><body>Die untenstehenden Einstellungen betreffen spezielle oder experimentelle Funktionalität von GDB. Ihre Verwendung kann das Debuggen negativ beeinflussen.</body></html> - Use asynchronous mode to control the inferior Asynchronen Modus zur Steuerung des zu debuggenden Prozesses verwenden @@ -2848,22 +3281,18 @@ markers in the source code editor. GDB Extended GDB Erweitert + + The options below give access to advanced or experimental functions of GDB.<br>Enabling them may negatively impact your debugging experience. + + Uses the default GDB pretty printers installed in your system or linked to the libraries your application uses. Verwendet die GDB-Pretty-Printers, die im System installiert sind oder gegen die Bibliotheken gelinkt sind, die die Anwendung benutzt. - - <html><head/><body><p>GDB commands entered here will be executed after GDB has been started, but before the debugged program is started or attached, and before the debugging helpers are initialized.</p>%1</body></html> - <html><head/><body><p>Hier angegebene GDB-Kommandos werden ausgeführt, nachdem GDB gestartet wurde, aber das zu debuggende Programm noch nicht gestartet ist beziehungsweise der Debugger noch nicht angehängt ist und vor der Initialisierung der Ausgabe-Hilfsbibliothek.</p>%1</body></html> - Additional Attach Commands Zusätzliche Kommandos beim Anhängen - - <html><head/><body><p>GDB commands entered here will be executed after GDB has successfully attached to remote targets.</p><p>You can add commands to further set up the target here, such as "monitor reset" or "load".</body></html> - <html><head/><body><p>Hier angegebene GDB-Kommandos werden ausgeführt, nachdem GDB erfolgreich an ein entferntes Ziel angehängt wurde.</p><p>Sie können hier Kommandos zum weiteren Einrichten des Ziels wie "monitor reset" oder "load" angeben.</body></html> - Extended Erweitert @@ -2880,10 +3309,6 @@ markers in the source code editor. Use Intel style disassembly Intel-Stil für Disassembler verwenden - - <html><head/><body>GDB shows by default AT&&T style disassembly.</body></html> - <html><head/><body>Die Vorgabe von GDB für Disassembler ist AT&&T-Stil.</body></html> - Additional Startup Commands Zusätzliche Kommandos beim Start @@ -2892,9 +3317,6 @@ markers in the source code editor. GDB GDB - - - Debugger Cannot create temporary file: %1 Es konnte keine temporäre Datei erstellt werden: %1 @@ -2907,9 +3329,6 @@ markers in the source code editor. Cannot open FiFo %1: %2 Die FiFo %1 konnte nicht geöffnet werden: %2 - - - Debugger Content as ASCII Characters Inhalt als ASCII-Zeichen @@ -2938,6 +3357,10 @@ markers in the source code editor. Content as %1-bit Floating Point Values Inhalt als %1&nbsp;bit&nbsp;Gleitkommazahlen + + A group of registers. + + Value Wert @@ -2958,6 +3381,26 @@ markers in the source code editor. Open Disassembler... Disassembler öffnen... + + RO + + + + WO + + + + RW + + + + [%1..%2] + + + + View Groups + + Hexadecimal Hexadezimal @@ -2978,9 +3421,6 @@ markers in the source code editor. Edit bits %1...%2 of register %3 Bits %1...%2 des Registers %3 bearbeiten - - - Debugger ... ... @@ -3021,6 +3461,10 @@ markers in the source code editor. Cannot Open Task File Die Aufgabendatei kann nicht geöffnet werden + + Copy Selection to Clipboard + + Copy Contents to Clipboard Inhalt in Zwischenablage kopieren @@ -3125,9 +3569,6 @@ markers in the source code editor. Note that most distributions ship debug information in separate packages. Beachten Sie, dass manche Distributionen die Debuginformationen in separaten Paketen ausliefern. - - - Debugger Thread&nbsp;id: Thread-ID: @@ -3207,6 +3648,10 @@ markers in the source code editor. Creation Time in ms Erstellungsdauer in ms + + Source + + <empty> <leer> @@ -3611,6 +4056,10 @@ markers in the source code editor. Octal Integer Oktale Ganzzahl + + Char Code Integer + + Compact Float Kompakter Gleitkommawert @@ -3619,6 +4068,14 @@ markers in the source code editor. Scientific Float Wissenschaftlicher Gleitkommawert + + Hexadecimal Float + + + + Normalized, with Power-of-Two Exponent + + %1 Object at %2 Objekt vom Typ %1 bei %2 @@ -3627,6 +4084,10 @@ markers in the source code editor. %1 Object at Unknown Address Objekt vom Typ %1 an unbekannter Adresse + + Size: %1x%2, %3 byte, format: %4, depth: %5 + Größe: %1x%2, %3 Bytes, Format: %4, Tiefe: %5 + Are you sure you want to remove all expression evaluators? Wollen Sie wirklich alle ausgewerteten Ausdrücke entfernen? @@ -3642,7129 +4103,6 @@ markers in the source code editor. Feld aus %n Elementen - - - DependenciesModel - - Unable to Add Dependency - Die Abhängigkeit konnte nicht hinzugefügt werden - - - This would create a circular dependency. - Dadurch würde eine zirkuläre Abhängigkeit entstehen. - - - - Designer - - Designer - Designer - - - Form Editor - Formulareditor - - - The generated header of the form "%1" could not be found. -Rebuilding the project might help. - Die automatisch erstellte Header-Datei des Formulars "%1" konnte nicht gefunden werden. -Versuchen Sie, das Projekt neu zu erstellen. - - - The generated header "%1" could not be found in the code model. -Rebuilding the project might help. - Die automatisch erstellte Header-Datei "%1" konnte nicht im Codemodell gefunden werden. -Versuchen Sie, das Projekt neu zu erstellen. - - - Qt Designer Form Class - Qt-Designer-Formularklasse - - - Class Details - Klassendetails - - - %1 - Error - %1 - Fehler - - - Class - Klasse - - - Choose a Class Name - Name der Klasse - - - Switch Source/Form - Zwischen Quelldatei und Formular wechseln - - - For&m Editor - For&mulareditor - - - Shift+F4 - Shift+F4 - - - 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. - Erstellt ein Qt-Designer-Formular mit zugehörigem Klassenrumpf (bestehend aus C++-Header- und -Quelldatei) für Implementierungszwecke. Sie können Formular und Klasse zu einem existierenden Qt-Widget-Projekt hinzufügen. - - - Choose a Form Template - Formularvorlage auswählen - - - Form Template - Formularvorlage - - - The class containing "%1" could not be found in %2. -Please verify the #include-directives. - Die Klasse, die "%1" enthält, konnte nicht innerhalb von '%2' gefunden werden. -Bitte prüfen Sie die #include-Anweisungen. - - - Error finding/adding a slot. - Fehler beim Auffinden/Hinzufügen des Slot-Codes. - - - No documents matching "%1" could be found. -Rebuilding the project might help. - Es konnten keine dem Suchmuster "%1" entsprechenden Dokumente gefunden werden. -Versuchen Sie, das Projekt neu zu erstellen. - - - Unable to add the method definition. - Die Definition der Methode konnte nicht hinzugefügt werden. - - - - ExtensionSystem::Internal::PluginDetailsView - - Name: - Name: - - - Version: - Version: - - - Vendor: - Anbieter: - - - Location: - Pfad: - - - Description: - Beschreibung: - - - Copyright: - Copyright: - - - License: - Lizenz: - - - Dependencies: - Abhängigkeiten: - - - Group: - Gruppe: - - - Compatibility version: - Kompatibel zu Version: - - - URL: - URL: - - - Platforms: - Plattformen: - - - - ExtensionSystem::Internal::PluginErrorView - - State: - Status: - - - Error message: - Fehlermeldung: - - - - ExtensionSystem::Internal::PluginSpecPrivate - - Plugin meta data not found - Plugin-Metadaten nicht gefunden - - - Invalid platform specification "%1": %2 - Ungültige Plattformspezifikation "%1": %2 - - - Dependency: %1 - Abhängigkeit: %1 - - - Dependency: "%1" must be "%2" or "%3" (is "%4"). - Abhängigkeit: "%1" muss "%2" oder "%3" sein (ist "%4"). - - - Argument: %1 - Argument: %1 - - - Argument: "%1" is empty - Argument: "%1" ist leer - - - - ExtensionSystem::PluginErrorView - - Invalid - Ungültig - - - Description file found, but error on read. - Fehlerhafte Beschreibungsdatei gefunden. - - - Description successfully read. - Beschreibungsdatei gelesen. - - - Dependencies are successfully resolved. - Die Abhängigkeiten wurden erfolgreich bestimmt. - - - Library is loaded. - Die Bibliothek wurde geladen. - - - Plugin's initialization function succeeded. - Die Initialisierungsfunktion des Plugins wurde erfolgreich abgearbeitet. - - - Plugin successfully loaded and running. - Das Plugin wurde erfolgreich geladen und läuft. - - - Plugin was shut down. - Das Plugin wurde angehalten. - - - Plugin ended its life cycle and was deleted. - Das Plugin wurde nach Ablauf seiner Nutzungsdauer gelöscht. - - - Read - Gelesen - - - Resolved - Abhängigkeiten bestimmt - - - Loaded - Geladen - - - Initialized - Initialisiert - - - Running - Läuft - - - Stopped - Angehalten - - - Deleted - Gelöscht - - - - ExtensionSystem::PluginManager - - Circular dependency detected: - Zirkuläre Abhängigkeit festgestellt: - - - %1 (%2) depends on - %1 (%2) hängt ab von - - - %1 (%2) - %1 (%2) - - - Cannot load plugin because dependency failed to load: %1 (%2) -Reason: %3 - Das Plugin kann nicht geladen werden, weil eine Abhängigkeit nicht geladen werden konnte: %1 (%2) -Grund: %3 - - - Cannot load plugin because dependency failed to load: %1(%2) -Reason: %3 - Das Plugin kann nicht geladen werden, weil eine Abhängigkeit nicht geladen werden konnte: %1(%2) -Grund: %3 - - - - FakeVim::Internal::FakeVimOptionPage - - Use FakeVim - FakeVim benutzen - - - Vim Behavior - Vim-Verhalten - - - Automatic indentation - Automatische Einrückung - - - Start of line - Zeilenanfang - - - Smart indentation - Intelligente Einrückung - - - Use search dialog - Suchdialog verwenden - - - Expand tabulators - Tabulatoren expandieren - - - Show position of text marks - Position der Textmarken anzeigen - - - Smart tabulators - "Smart"-Tabularmodus - - - Pass control key - Strg-Taste weiterleiten - - - Highlight search results - Suchergebnisse hervorheben - - - Incremental search - Inkrementelle Suche - - - Shift width: - Einrückung: - - - Tabulator size: - Tabulatorweite: - - - Backspace: - Rücktaste: - - - Keyword characters: - Wortbildende Zeichen: - - - Copy Text Editor Settings - Texteditor-Einstellungen übernehmen - - - Set Qt Style - Qt-Stil setzen - - - Set Plain Style - Einfachen Stil setzen - - - Use smartcase - Smartcase verwenden - - - Use wrapscan - Wrapscan verwenden - - - Show partial command - Teil des Kommandos anzeigen - - - Use ignorecase - ignorecase verwenden - - - Pass keys in insert mode - Tastenanschläge im Einfügemodus weitergeben - - - Scroll offset: - Rollversatz: - - - Read .vimrc from location: - Verwende .vimrc aus: - - - Show line numbers relative to cursor - Zeilennummern relativ zur Einfügemarke anzeigen - - - Displays line numbers relative to the line containing text cursor. - Zeige Zeilennummern relativ zur Zeile mit der Einfügemarke an. - - - Vim tabstop option. - Vim-Tabulator-Einstellung. - - - Does not interpret key sequences like Ctrl-S in FakeVim but handles them as regular shortcuts. This gives easier access to core functionality at the price of losing some features of FakeVim. - Zeichenfolgen wie Strg-S nicht in FakeVim verarbeiten, sondern sie als gewöhnliche Tastenkombinationen behandeln. Dies erleichtert den Zugriff auf die Kernfunktionalität auf Kosten eingeschränkter Funktionalität von FakeVim. - - - Does not interpret some key presses in insert mode so that code can be properly completed and expanded. - Einige Zeichenfolgen nicht im Einfügemodus verarbeiten, damit Quelltext korrekt vervollständigt und erweitert werden kann. - - - Blinking cursor - Blinkende Einfügemarke - - - - FilterNameDialogClass - - Add Filter Name - Filternamen hinzufügen - - - Filter Name: - Filtername: - - - - GenericProjectManager::Internal::GenericProjectWizard - - Import Existing Project - Import eines existierenden Projekts - - - Imports existing projects that do not use qmake, CMake or Autotools. This allows you to use %1 as a code editor. - Importiert bereits existierende Projekte, die weder qmake, CMake oder die Autotools verwenden. Dadurch kann %1 als Code-Editor benutzt werden. - - - - GenericProjectManager::Internal::GenericProjectWizardDialog - - Import Existing Project - Import eines existierenden Projekts - - - Project Name and Location - Name und Verzeichnis des Projekts - - - Project name: - Projektname: - - - Location: - Pfad: - - - File Selection - Dateiauswahl - - - - Git - - Browse &History... - Von &History... - - - &Show - &Anzeigen - - - Cherry &Pick - Cherry-&Pick - - - &Revert - &Rückgängig machen - - - Check&out - Aus&checken - - - &Close - &Schließen - - - Working directory: - Arbeitsverzeichnis: - - - Select Commit - Commit auswählen - - - Select Git Directory - Git-Verzeichnis auswählen - - - Error: Unknown reference - Fehler: Unbekannte Referenz - - - Error: Bad working directory. - Fehler: Ungültiges Arbeitsverzeichnis. - - - Error: Could not start Git. - Fehler: git konnte nicht gestartet werden. - - - Fetching commit data... - Commit-Daten werden geholt... - - - Change: - Änderung: - - - HEAD - HEAD - - - Select a Git Commit - Git Commit auswählen - - - &Archive... - &Archiv erzeugen... - - - Invalid revision - Ungültige Revision - - - REBASING - REBASING - - - REVERTING - REVERTING - - - CHERRY-PICKING - CHERRY-PICKING - - - MERGING - MERGING - - - Description: - Beschreibung: - - - Git Diff Project - Git Diff für Projekt - - - Create Local Branch - Lokalen Branch erstellen - - - Stash Description - Beschreibung - - - Rebase is in progress. What do you want to do? - Zur Zeit läuft ein Rebase-Vorgang. Was möchten Sie tun? - - - You need to commit changes to finish merge. -Commit now? - Sie müssen einen Commit der Änderungen ausführen, um den Merge abzuschließen. -Jetzt Commit ausführen? - - - No changes found. - Es wurden keine Änderungen gefunden. - - - Conflicts detected with commit %1. - Bei Commit %1 wurden Konflikte festgestellt. - - - Conflicts detected with files: -%1 - Bei dem Commit wurden Konflikte in den folgenden Dateien festgestellt: -%1 - - - Conflicts detected. - Es wurden Konflikte festgestellt. - - - Rebase, merge or am is in progress. Finish or abort it and then try again. - Es ist eine Rebase-, Merge- oder am-Operation aktiv. Bitte beenden oder brechen Sie sie ab und versuchen Sie es noch einmal. - - - Cannot determine Git version: %1 - Die verwendete Git-Version konnte nicht bestimmt werden: %1 - - - Stash && Pop - Stash && Pop - - - Stash local changes and pop when %1 finishes. - Stash der lokalen Änderungen anlegen und bei Beendigung von %1 wiederherstellen. - - - Stash - Stash - - - Stash local changes and execute %1. - Stash der lokalen Änderungen anlegen und %1 ausführen. - - - Git SVN Log - Git SVN Log - - - Cannot determine the repository for "%1". - Das Repository von "%1" konnte nicht bestimmt werden. - - - Cannot parse the file output. - Die Ausgabe der Datei konnte nicht ausgewertet werden. - - - Stage Chunk - Chunk für Commit vorsehen - - - Unstage Chunk - Chunk aus Commit entfernen - - - Chunk successfully unstaged - Chunk wurde aus Commit entfernt - - - Chunk successfully staged - Chunk wurde für Commit vorgesehen - - - Git Diff Repository - Git Diff des Repositorys - - - Git Diff Files - Git Diff von Dateien - - - Cannot run "%1" in "%2": %3 - Das Kommando "%1" konnte im Verzeichnis "%2" nicht ausgeführt werden: %3 - - - Stage Selection (%n Lines) - - Auswahl für Commit vorsehen (eine Zeile) - Auswahl für Commit vorsehen (%n Zeilen) - - - - Unstage Selection (%n Lines) - - Auswahl aus Commit entfernen (eine Zeile) - Auswahl aus Commit entfernen (%n Zeilen) - - - - Git Diff "%1" - Git Diff "%1" - - - Git Diff Branch "%1" - Git Diff Branch "%1" - - - Git Log "%1" - Git Log "%1" - - - Git Reflog "%1" - Git Reflog "%1" - - - Cannot describe "%1". - Zur Änderung "%1" können keine Details angezeigt werden. - - - Git Show "%1" - Git Show "%1" - - - Tarball (*.tar.gz) - Tarball (*.tar.gz) - - - Zip archive (*.zip) - Zip-Archiv (*.zip) - - - Generate %1 archive - Archiv für %1 erzeugen - - - Overwrite? - Überschreiben? - - - An item named "%1" already exists at this location. Do you want to overwrite it? - Es existiert bereits eine Datei des Namens "%1" an dieser Stelle. Wollen Sie sie überschreiben? - - - Git Blame "%1" - Blame für "%1" - - - Would you like to create a local branch? - Möchten Sie einen lokalen Branch erstellen? - - - Nothing to recover - Nichts wiederherzustellen - - - Files recovered - Dateien wiederhergestellt - - - Cannot obtain log of "%1": %2 - Das Log von "%1" konnte nicht erhalten werden: %2 - - - Cannot checkout "%1" of %2 in "%3": %4 - Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message - Die Dateien %2 der Revision "%1" im Repository "%3" konnten nicht ausgecheckt werden: %4 - - - Cannot find parent revisions of "%1" in "%2": %3 - Failed to find parent revisions of a SHA1 for "annotate previous" - Die übergeordnete Revision von "%1" im Repository "%2" konnte nicht bestimmt werden: %3 - - - Committed %n files. - - Commit mit einer Datei durchgeführt. - Commit mit %n Dateien durchgeführt. - - - - Amended "%1" (%n files). - - Commit "%1" geändert (eine Datei). - Commit "%1" geändert (%n Dateien). - - - - Cannot commit %n files: %1 - - - Commit schlug für eine Datei fehl: %1 - - Commit schlug für %n Dateien fehl: %1 - - - - - Only graphical merge tools are supported. Please configure merge.tool. - Nur grafische Merge-Tools werden unterstützt. Bitte konfigurieren Sie ein Merge-Tool. - - - Force Push - Push erzwingen - - - Push failed. Would you like to force-push <span style="color:#%1">(rewrites remote history)</span>? - Push ist fehlgeschlagen. Möchten Sie Push erzwingen <span style="color:#%1">(überschreibt den Verlauf)</span>? - - - No Upstream Branch - Kein Ziel-Branch - - - Push failed because the local branch "%1" does not have an upstream branch on the remote. - -Would you like to create the branch "%1" on the remote and set it as upstream? - Push ist fehlgeschlagen, weil der lokale Branch "%1" keinen Ziel-Branch im entfernten Repository hat. - -Möchten Sie den Branch "%1" im entfernten Repository erzeugen und ihn als Ziel-Branch festlegen? - - - Discard (reset) local changes and execute %1. - Verwerfen (reset) der lokalen Änderungen und %1 ausführen. - - - Execute %1 with local changes in working directory. - Führe %1 bei bestehenden lokalen Änderungen aus. - - - Cancel %1. - %1 Abbrechen. - - - Cherr&y-Pick Change %1 - Cherr&y-Pick von Änderung %1 - - - Re&vert Change %1 - Änder&ung %1 rückgängig machen - - - C&heckout Change %1 - Änderung %1 ausc&hecken - - - &Interactive Rebase from Change %1... - &Interaktives Rebase von Änderung %1... - - - &Log for Change %1 - &Log für Änderung %1 - - - Add &Tag for Change %1... - &Tag für Änderung %1 hinzufügen... - - - &Reset to Change %1 - Zu&rücksetzen auf Änderung %1 - - - &Hard - &Hard - - - &Mixed - &Mixed - - - &Soft - &Soft - - - Di&ff Against %1 - Mit %1 &vergleichen - - - Diff &Against Saved %1 - Mit gespeichertem %1 &vergleichen - - - &Save for Diff - Für Vergleich &speichern - - - Detached HEAD - Detached HEAD - - - Cannot reset %n files in "%1": %2 - - Eine Datei in "%1" konnte nicht zurückgesetzt werden: %2 - %n Dateien in "%1" konnten nicht zurückgesetzt werden: %2 - - - - and %n more - Displayed after the untranslated message "Branches: branch1, branch2 'and %n more'" - - und ein weiterer - und %n weitere - - - - Cannot describe revision "%1" in "%2": %3 - Die Beschreibung der Revision "%1" im Repository "%2" kann nicht bestimmt werden: %3 - - - Cannot resolve stash message "%1" in "%2". - Look-up of a stash via its descriptive message failed. - Es konnte kein Stash mit der Beschreibung "%1" im Repository "%2" gefunden werden. - - - Cannot retrieve submodule status of "%1": %2 - Der Status des Sub-Modules "%1" konnte nicht bestimmt werden: %2 - - - There were warnings while applying "%1" to "%2": -%3 - Beim Anwenden der Patch-Datei "%1" auf das Repository "%2" traten Warnungen auf: -%3 - - - Cannot apply patch "%1" to "%2": %3 - Die Patch-Datei "%1" konnte nicht auf das Repository "%2" angewandt werden: %3 - - - Submodules Found - Submodule gefunden - - - Would you like to update submodules? - Möchten Sie die Submodule aktualisieren? - - - Cannot obtain status: %1 - Der Status konnte nicht abgefragt werden: %1 - - - Continue Merge - Mergen fortsetzen - - - Continue Rebase - Rebase fortsetzen - - - Continue - Fortsetzen - - - Continue Revert - Revert fortsetzen - - - You need to commit changes to finish revert. -Commit now? - Sie müssen einen Commit der Änderungen ausführen, um den Revert abzuschließen. -Jetzt Commit ausführen? - - - Commit - Commit - - - Continue Cherry-Picking - Cherry-Pick fortsetzen - - - You need to commit changes to finish cherry-picking. -Commit now? - Sie müssen einen Commit der Änderungen ausführen, um den Cherry-Pick abzuschließen. -Jetzt Commit ausführen? - - - Skip - Überspringen - - - <Detached HEAD> - <Detached HEAD> - - - Cannot launch "%1". - "%1" konnte nicht gestartet werden. - - - The repository "%1" is not initialized. - Das Repository "%1" ist noch nicht initialisiert. - - - Cannot retrieve last commit data of repository "%1". - Die Daten des letzten Commits im Repository "%1" konnte nicht bestimmt werden. - - - Reset - Zurücksetzen - - - All changes in working directory will be discarded. Are you sure? - Alle Änderungen im Arbeitsverzeichnis werden verworfen. Sind Sie sicher? - - - Amended "%1". - Commit "%1" geändert. - - - Revert - Rückgängig machen - - - The file has been changed. Do you want to revert it? - Die Datei wurde geändert. Möchten Sie die Änderungen rückgängig machen? - - - The file is not modified. - Datei ungeändert. - - - Conflicts Detected - Es wurden Konflikte festgestellt - - - Run &Merge Tool - &Merge-Tool ausführen - - - &Skip - Über&springen - - - There are no modified files. - Es gibt keine geänderten Dateien. - - - No commits were found - Es konnten keine Commits gefunden werden - - - No local commits were found - Es konnten keine lokalen Commits gefunden werden - - - Uncommitted Changes Found - Ausstehende Änderungen gefunden - - - What would you like to do with local changes in: - Wie möchten Sie die folgenden lokalen Änderungen behandeln: - - - <No repository> - <Kein Repository> - - - Repository: %1 - Repository: %1 - - - The binary "%1" could not be located in the path "%2" - Die ausführbare Datei "%1" konnte nicht im Pfad "%2" gefunden werden - - - General Information - Allgemeine Informationen - - - Repository: - Repository: - - - repository - Repository - - - Branch: - Branch: - - - branch - branch - - - Commit Information - Informationen zu Commit - - - Author: - Autor: - - - Email: - E-Mail-Adresse: - - - By&pass hooks - &Hooks umgehen - - - Sign off - Unterschreiben - - - <b>Note:</b> - <b>Hinweis:</b> - - - Note that huge amount of commits might take some time. - Beachten Sie, dass eine hohe Anzahl Commits lange Wartezeiten hervorrufen kann. - - - Miscellaneous - Sonstige Einstellungen - - - Timeout: - Zeitlimit: - - - s - s - - - Pull with rebase - pull mit rebase - - - Set "HOME" environment variable - Umgebungsvariable "HOME" setzen - - - Gitk - Gitk - - - Arguments: - Argumente: - - - Log count: - Log-Anzeige beschränken auf: - - - Git needs to find Perl in the environment. - Git benötigt Perl. - - - Configuration - Konfiguration - - - Prepend to PATH: - PATH voranstellen: - - - Command: - Kommando: - - - - Help - - Add and remove compressed help files, .qch. - Hinzufügen oder Entfernen von komprimierten Hilfedateien (.qch). - - - Registered Documentation - Registrierte Dokumentationen - - - Add... - Hinzufügen... - - - Remove - Entfernen - - - Filters - Filter - - - Unfiltered - Ungefiltert - - - No user defined filters available or no filter selected. - Es sind keine benutzerdefinierten Filter vorhanden oder ausgewählt. - - - The filter "%1" will show every documentation file available, as no attributes are specified. - Das Filter "%1" wird die alle vorhandenen Dokumentationen anzeigen, da keine Attribute angegeben wurden. - - - The filter "%1" will only show documentation files that have the attribute %2 specified. - Das Filter "%1" wird die Dokumentationsdateien anzeigen, die über das Attribut %2 verfügen. - - - The filter "%1" will only show documentation files that have the attributes %2 specified. - Das Filter "%1" wird die Dokumentationsdateien anzeigen, die über eines der Attribute %2 verfügen. - - - Attributes - Attribute - - - 1 - 1 - - - <html><body> -<p> -Add, modify, and remove document filters, which determine the documentation set displayed in the Help mode. The attributes are defined in the documents. Select them to display a set of relevant documentation. Note that some attributes are defined in several documents. -</p></body></html> - <html><body><p>Hinzufügen, Ändern oder Entfernen von Dokumentenfiltern, die die im Hilfsmodus angezeigte Dokumentation festlegen. Die Attribute sind in den Dokumenten definiert. Durch die Angabe der Attribute kann die relevante Dokumentation ausgewählt werden. Beachten Sie, dass einige Attribute in mehreren Dokumenten erscheinen.</p></body></html> - - - General - Allgemein - - - Change takes effect after reloading help pages. - Änderung wird wirksam, wenn die Hilfeseiten neu geladen werden. - - - Default (%1) - Default viewer backend - Vorgabe (%1) - - - Import Bookmarks - Lesezeichen importieren - - - Files (*.xbel) - XBEL-Dateien (*.xbel) - - - Cannot import bookmarks. - Lesezeichen konnten nicht importiert werden. - - - Save File - Datei speichern - - - Font - Zeichensatz - - - Family: - Name: - - - Style: - Stil: - - - Size: - Größe: - - - Startup - Start - - - On context help: - Kontexthilfe: - - - Show Side-by-Side if Possible - Möglichst nebeneinander zeigen - - - Always Show Side-by-Side - Immer nebeneinander zeigen - - - On help start: - Zu Beginn: - - - Show My Home Page - Startseite zeigen - - - Show a Blank Page - Leere Seite zeigen - - - Show My Tabs from Last Session - Reiter aus letzter Sitzung zeigen - - - Home page: - Startseite: - - - Use &Current Page - &Aktuelle Seite verwenden - - - Use &Blank Page - &Leere Seite - - - Reset - Zurücksetzen - - - Behaviour - Verhalten - - - Return to editor on closing the last page - Nach Schließen der letzten Hilfeseite zum Editor schalten - - - Note: This setting takes effect only if the HTML file does not use a style sheet. - Hinweis: Diese Einstellung ist nur wirksam, wenn die HTML-Seite kein Stylesheet verwendet. - - - Import Bookmarks... - Lesezeichen importieren... - - - Export Bookmarks... - Lesezeichen exportieren... - - - Reset to default. - Auf Vorgabe zurücksetzen. - - - Switches to editor context after last help page is closed. - Nach Schließen der letzten Hilfeseite zum Editor schalten. - - - Always Show in Help Mode - Immer im Modus "Hilfe" anzeigen - - - Always Show in External Window - Stets in separatem Fenster anzeigen - - - Enable scroll wheel zooming - Zoom mittels Mausrad aktivieren - - - Viewer backend: - Anzeigen mit: - - - Help Index - Hilfe - Index - - - Help - Hilfe - - - Search - Suche - - - Bookmarks - Lesezeichen - - - Open Pages - Offene Seiten - - - Index - Index - - - Contents - Inhalt - - - Context Help - Kontexthilfe - - - Technical Support... - Technischer Support... - - - Report Bug... - Fehler melden... - - - System Information... - Systeminformationen... - - - No Documentation - Dokumentation fehlt - - - No documentation available. - Es ist keine Dokumentation verfügbar. - - - System Information - Systeminformationen - - - Use the following to provide more detailed information about your system to bug reports: - Hiermit können Sie Ihren Fehlermeldungen detaillierte Informationen über Ihr System hinzufügen: - - - Copy to Clipboard - In die Zwischenablage kopieren - - - Indexing Documentation - Indiziere Dokumentation - - - Open Link - Verweis öffnen - - - Open Link as New Page - Verweis in neuer Seite öffnen - - - Copy Link - Verweis kopieren - - - Copy - Kopieren - - - Reload - Neu laden - - - The file is not an XBEL version 1.0 file. - Die Datei ist keine XBEL-Datei der Version 1.0. - - - Unknown title - Unbekannter Titel - - - - Locator - - Locator - Locator - - - - MyMain - - N/A - N/A - - - - OpenWith::Editors - - Plain Text Editor - Texteditor - - - Binary Editor - Binäreditor - - - C++ Editor - C++-Editor - - - .pro File Editor - .pro-Dateieditor - - - .files Editor - .files-Dateieditor - - - QMLJS Editor - QMLJS-Editor - - - Qt Designer - Qt Designer - - - Qt Linguist - Qt Linguist - - - Resource Editor - Ressourceneditor - - - GLSL Editor - GLSL Editor - - - Python Editor - Python-Editor - - - Model Editor - Model-Editor - - - Nim Editor - Nim-Editor - - - SCXML Editor - SCXML-Editor - - - Java Editor - Java-Editor - - - CMake Editor - CMake-Editor - - - Compilation Database - Kompilierungsdatenbank - - - Qt Quick Designer - Qt Quick-Designer - - - - Perforce::Internal::ChangeNumberDialog - - Change Number - Change-Nummer - - - Change Number: - Change-Nummer: - - - - Perforce::Internal::PendingChangesDialog - - P4 Pending Changes - P4 Ausstehende Changes - - - Submit - Submit - - - Cancel - Abbrechen - - - Change %1: %2 - Change %1: %2 - - - - Perforce::Internal::PerforcePlugin - - &Perforce - &Perforce - - - Edit - Anfordern - - - Edit "%1" - "%1" anfordern - - - Alt+P,Alt+E - Alt+P,Alt+E - - - Edit File - Datei zum Editieren anfordern - - - Add - Hinzufügen - - - Add "%1" - "%1" hinzufügen - - - Alt+P,Alt+A - Alt+P,Alt+A - - - Add File - Datei hinzufügen - - - Delete File - Datei löschen - - - Revert - Rückgängig machen - - - Revert "%1" - Änderungen in "%1" rückgängig machen (revert) - - - Alt+P,Alt+R - Alt+P,Alt+R - - - Revert File - Änderungen in Datei rückgängig machen (revert) - - - Diff Current File - Diff für Datei - - - Diff "%1" - Diff für "%1" - - - Diff Current Project/Session - Diff für Projekt/Sitzung - - - Diff Project "%1" - Diff für Projekt "%1" - - - Alt+P,Alt+D - Alt+P,Alt+D - - - Diff Opened Files - Diff für angeforderte Dateien - - - Opened - Angefordert - - - Alt+P,Alt+O - Alt+P,Alt+O - - - Submit Project - Submit des Projekts - - - Alt+P,Alt+S - Alt+P,Alt+S - - - Pending Changes... - Ausstehende Changes... - - - Update Project "%1" - Projekt "%1"auf aktuellen Stand bringen - - - Describe... - Change anzeigen... - - - Annotate Current File - Annotation für Datei - - - Annotate "%1" - Annotation für "%1" - - - Annotate... - Annotation... - - - Filelog Current File - Filelog für Datei - - - Filelog "%1" - Filelog für "%1" - - - Alt+P,Alt+F - Alt+P,Alt+F - - - Filelog... - Filelog... - - - Update All - Auf aktuellen Stand bringen - - - Meta+P,Meta+F - Meta+P,Meta+F - - - Meta+P,Meta+E - Meta+P,Meta+E - - - Meta+P,Meta+A - Meta+P,Meta+A - - - Delete... - Löschen... - - - Delete "%1"... - Lösche "%1"... - - - Meta+P,Meta+R - Meta+P,Meta+R - - - Meta+P,Meta+D - Meta+P,Meta+D - - - Log Project "%1" - Log für Projekt "%1" - - - Log Project - Log für Projekt - - - Submit Project "%1" - Submit des Projekts "%1" - - - Meta+P,Meta+S - Meta+P,Meta+S - - - Update Current Project - Projekt auf aktuellen Stand bringen - - - Revert Unchanged - Angeforderte, ungeänderte Dateien zurücksetzen - - - Revert Unchanged Files of Project "%1" - Angeforderte, ungeänderte Dateien des Projekts "%1" rücksetzen - - - Revert Project - Änderungen des Projekts rückgängig machen - - - Revert Project "%1" - Änderungen des Projekts "%1" rückgängig machen - - - Meta+P,Meta+O - Meta+P,Meta+O - - - Repository Log - Log des Repositorys - - - &Edit - B&earbeiten - - - &Hijack - &Hijack - - - Submit - Submit - - - p4 revert - Rückgängig machen - - - The file has been changed. Do you want to revert it? - Die Datei wurde geändert. Möchten Sie die Änderungen rückgängig machen? - - - Do you want to revert all changes to the project "%1"? - Möchten Sie alle ausstehenden Änderungen des Projektes "%1" verwerfen? - - - Another submit is currently executed. - Es läuft bereits ein Submit-Vorgang. - - - Project has no files - Das Projekt hat keine Dateien - - - p4 annotate - Annotationen - - - p4 annotate %1 - p4 annotate %1 - - - p4 filelog - Filelog - - - p4 filelog %1 - p4 filelog %1 - - - p4 changelists %1 - p4 changelists %1 - - - Could not start perforce "%1". Please check your settings in the preferences. - Das Perforce-Kommando "%1" konnte nicht gestartet werden. Bitte überprüfen Sie die Einstellungen. - - - Perforce did not respond within timeout limit (%1 s). - Perforce reagierte nicht innerhalb des Zeitlimits (%1 s). - - - The process terminated with exit code %1. - Der Prozess wurde beendet, Rückgabewert %1. - - - p4 submit failed: %1 - Fehler beim Submit: %1 - - - Error running "where" on %1: %2 - Failed to run p4 "where" to resolve a Perforce file name to a local file system name. - Fehler bei der Ausführung von "where" bei Datei "%1": %2 - - - The file is not mapped - File is not managed by Perforce - Die Datei wird nicht von Perforce verwaltet - - - Perforce repository: %1 - Perforce-Repository: %1 - - - Perforce: Unable to determine the repository: %1 - Perforce: Das Repository von konnte nicht bestimmt werden: %1 - - - The process terminated abnormally. - Der Prozess wurde unnormal beendet. - - - Unable to write input data to process %1: %2 - Es konnten keine Eingabedaten an den Prozess %1 übergeben werden: %2 - - - Perforce is not correctly configured. - Perforce ist nicht richtig konfiguriert. - - - [Only %n MB of output shown] - - [Nur %n MB der Ausgabe wird angezeigt] - [Nur %n MB der Ausgabe werden angezeigt] - - - - p4 diff %1 - p4 diff %1 - - - p4 describe %1 - p4 describe %1 - - - Pending change - Ausstehende Änderung - - - Could not submit the change, because your workspace was out of date. Created a pending submit instead. - Der Submit-Vorgang konnte nicht ausgeführt werden, weil Ihr Arbeitsbereich nicht auf dem aktuellsten Stand ist. Es wurde ein ausstehender Submit-Vorgang erzeugt. - - - - Perforce::Internal::PerforceSubmitEditor - - Perforce Submit - Perforce Submit - - - - Perforce::Internal::PromptDialog - - Perforce Prompt - Perforce Prompt - - - OK - OK - - - - Perforce::Internal::SettingsPage - - Perforce Command - Perforce-Kommando - - - Testing... - Test läuft... - - - Test succeeded (%1). - Der Test war erfolgreich (%1). - - - Perforce - Perforce - - - Test - Test - - - Configuration - Konfiguration - - - Miscellaneous - Sonstige Einstellungen - - - Timeout: - Zeitlimit: - - - s - s - - - Prompt on submit - Submit bestätigen - - - Log count: - Log-Anzeige beschränken auf: - - - P4 command: - P4-Kommando: - - - P4 client: - P4 Client: - - - P4 user: - P4 Nutzer: - - - P4 port: - P4 Port-Nummer: - - - Environment Variables - Umgebungsvariablen - - - Automatically open files when editing - Dateien bei Bearbeitung automatisch anfordern - - - - Perforce::Internal::SubmitPanel - - Submit - Submit - - - Change: - Änderung: - - - Client: - Client: - - - User: - Nutzer: - - - - PluginManager - - The plugin "%1" is specified twice for testing. - Das Plugin "%1" ist in der Testliste doppelt vorhanden. - - - The plugin "%1" does not exist. - Es existiert kein Plugin "%1". - - - The plugin "%1" is not tested. - Das Plugin "%1" ist ungetested. - - - Unknown option %1 - Ungültiges Kommandozeilenargument %1 - - - The option %1 requires an argument. - Das Kommandozeilenargument %1 erfordert ein Argument. - - - Failed Plugins - Nicht geladene Plugins (Fehlschlag beim Ladevorgang) - - - - PluginSpec - - "%1" is missing - "%1" fehlt - - - Value for key "%1" is not a string - Wert des Schlüssels "%1" ist keine Zeichenkette - - - Value for key "%1" is not a bool - Wert des Schlüssels "%1" ist kein Boolescher Wert - - - Value for key "%1" is not an array of objects - Wert des Schlüssels "%1" ist kein Feld von Objekten - - - Value for key "%1" is not a string and not an array of strings - Wert des Schlüssels "%1" ist keine Zeichenkette und auch kein Feld von Zeichenketten - - - Value "%2" for key "%1" has invalid format - Wert "%2" des Schlüssels "%1" ist in ungültigem Format - - - Resolving dependencies failed because state != Read - Das Bestimmen der Abhängigkeiten schlug fehl, weil der Status != Gelesen ist - - - Could not resolve dependency '%1(%2)' - Die Abhängigkeit '%1 (%2)' konnte nicht aufgelöst werden - - - Loading the library failed because state != Resolved - Das Laden der Bibliothek schlug fehl, weil der Status != 'Abhängigkeiten bestimmt' ist - - - Plugin is not valid (does not derive from IPlugin) - Das Plugin ist ungültig (nicht von Klasse IPlugin abgeleitet) - - - Initializing the plugin failed because state != Loaded - Die Initialisierung des Plugins schlug fehl, weil der Status != Geladen ist - - - Internal error: have no plugin instance to initialize - Interner Fehler: Es existiert keine Plugininstanz zur Initialisierung - - - Plugin initialization failed: %1 - Die Initialisierung des Plugins schlug fehl: %1 - - - Cannot perform extensionsInitialized because state != Initialized - extensionsInitialized kann nicht abgearbeitet werden, weil der Status != Initialisiert ist - - - Internal error: have no plugin instance to perform extensionsInitialized - Interner Fehler: Es existiert keine Plugininstanz zur Abarbeitung von extensionsInitialized - - - Internal error: have no plugin instance to perform delayedInitialize - Interner Fehler: Es existiert keine Plugininstanz zur Abarbeitung von delayedInitialize - - - - ProjectExplorer::AbstractProcessStep - - Configuration is faulty. Check the Issues view for details. - Die Konfiguration ist fehlerhaft. Details befinden sich in der Ansicht "Probleme". - - - Could not create directory "%1" - Das Verzeichnis "%1" konnte nicht angelegt werden - - - Starting: "%1" %2 - Starte: "%1" %2 - - - The process "%1" exited normally. - Der Prozess "%1" wurde normal beendet. - - - The process "%1" exited with code %2. - Der Prozess "%1" wurde mit dem Rückgabewert %2 beendet. - - - The process "%1" crashed. - Der Prozess "%1" ist abgestürzt. - - - Could not start process "%1" %2 - Der Prozess "%1" %2 konnte nicht gestartet werden - - - - ProjectExplorer::ApplicationLauncher - - User requested stop. Shutting down... - Abbruch auf Nutzeranforderung... - - - Failed to start program. Path or permissions wrong? - Das Programm konnte nicht gestartet werden. Möglicherweise stimmt der Pfad nicht oder die Berechtigungen sind nicht ausreichend? - - - The program has unexpectedly finished. - Das Programm ist abgestürzt. - - - Some error has occurred while running the program. - Bei der Ausführung des Programms trat ein Fehler auf. - - - Cannot retrieve debugging output. - Es konnte keine Debug-Ausgabe erhalten werden. - - - Cannot run: No device. - Fehler bei Ausführung: kein Gerät. - - - Cannot run: Device is not able to create processes. - Keine Ausführung möglich: Das Gerät kann keine Prozesse erzeugen. - - - Cannot run: No command given. - Keine Ausführung möglich: Kein Kommando angegeben. - - - Application failed to start: %1 - Die Anwendung konnte nicht gestartet werden: %1 - - - Application finished with exit code %1. - Die Anwendung wurde beendet, Rückgabewert %1. - - - Application finished with exit code 0. - Die Anwendung wurde beendet, Rückgabewert 0. - - - - ProjectExplorer::BuildManager - - Finished %1 of %n steps - - Schritt %1 von %n beendet - Schritt %1 von %n beendet - - - - Stop Applications - Anwendungen beenden - - - Stop these applications before building? - Diese Anwendungen vor dem Erstellen beenden? - - - The project %1 is not configured, skipping it. - Das Projekt %1 ist nicht konfiguriert, es wird übersprungen. - - - Compile - Category for compiler issues listed under 'Issues' - Kompilierung - - - Build System - Category for build system issues listed under 'Issues' - Build-System - - - Autotests - Category for autotest issues listed under 'Issues' - Autotests - - - Clean - Displayed name for a "cleaning" build step - Bereinigen - - - Deploy - Displayed name for a deploy step - Deployment - - - Build - Displayed name for a normal build step - Erstellen - - - Build/Deployment canceled - Erstellen/Deployment wurde abgebrochen - - - When executing step "%1" - Bei der Ausführung von Schritt "%1" - - - Deployment - Category for deployment issues listed under 'Issues' - Deployment - - - Canceled build/deployment. - Erstellen/Deployment abgebrochen. - - - Error while building/deploying project %1 (kit: %2) - Fehler beim Erstellen/Deployment des Projekts %1 (Kit: %2) - - - The kit %1 has configuration issues which might be the root cause for this problem. - Das Kit %1 enthält Konfigurationsprobleme, die die Ursache für dieses Problem sein könnten. - - - Running steps for project %1... - Führe Schritte für Projekt %1 aus... - - - Skipping disabled step %1. - Überspringe deaktivierten Schritt %1. - - - - ProjectExplorer::DebuggingHelperLibrary - - The target directory %1 could not be created. - Das Zielverzeichnis %1 konnte nicht erstellt werden. - - - The existing file %1 could not be removed. - Die existierende Datei %1 konnte nicht entfernt werden. - - - The file %1 could not be copied to %2. - Die Datei %1 konnte nicht nach %2 kopiert werden. - - - %1 not found in PATH - - %1 konnte im Pfad (PATH) nicht gefunden werden - - - - - ProjectExplorer::EnvironmentWidget - - Variable already exists. - Variable existiert bereits. - - - Ed&it - Bearbe&iten - - - &Add - Hinzu&fügen - - - &Reset - Zu&rücksetzen - - - &Unset - &Aufheben - - - Disable - Deaktivieren - - - Append Path... - Pfad anhängen... - - - Prepend Path... - Pfad voranstellen... - - - &Batch Edit... - Als &Text bearbeiten... - - - Open &Terminal - &Terminalfenster öffnen - - - Open a terminal with this environment set up. - Ein Terminalfenster mit dieser Umgebung öffnen. - - - Unset <a href="%1"><b>%1</b></a> - <a href="%1"><b>%1</b></a> zurücksetzen - - - Set <a href="%1"><b>%1</b></a> to <b>%2</b> - <b>%2</b> an <a href="%1"><b>%1</b></a> zuweisen - - - Set <a href="%1"><b>%1</b></a> to <b>%2</b> [disabled] - <b>%2</b> an <a href="%1"><b>%1</b></a> zuweisen [deaktiviert] - - - Use <b>%1</b> - %1 is "System Environment" or some such. - Verwende <b>%1</b> - - - <b>No environment changes</b> - <b>Keine Änderung der Umgebung</b> - - - Use <b>%1</b> and - Yup, word puzzle. The Set/Unset phrases above are appended to this. %1 is "System Environment" or some such. - Verwende <b>%1</b> und - - - Choose Directory - Verzeichnis wählen - - - Enable - Aktivieren - - - - ProjectExplorer::Internal::AllProjectsFilter - - Files in Any Project - Dateien aus allen Projekten - - - - ProjectExplorer::Internal::AllProjectsFind - - All Projects - Alle Projekte - - - All Projects: - Alle Projekte: - - - Filter: %1 -Excluding: %2 -%3 - Filter: %1 -Außer: %2 -%3 - - - - ProjectExplorer::Internal::BuildSettingsWidget - - No build settings available - Es sind keine Build-Einstellungen verfügbar - - - Edit build configuration: - Build-Konfiguration bearbeiten: - - - Add - Hinzufügen - - - Remove - Entfernen - - - Clone... - Klonen... - - - New Configuration - Neue Konfiguration - - - Cancel Build && Remove Build Configuration - Build abbrechen und Build-Konfiguration löschen - - - Do Not Remove - Nicht löschen - - - Remove Build Configuration %1? - Build-Konfiguration %1 löschen? - - - The build configuration <b>%1</b> is currently being built. - Die Build-Konfiguration <b>%1</b> wird gegenwärtig erstellt. - - - Do you want to cancel the build process and remove the Build Configuration anyway? - Möchten Sie die Erstellung abbrechen und die Build-Konfiguration trotzdem löschen? - - - Remove Build Configuration? - Build-Konfiguration löschen? - - - Do you really want to delete build configuration <b>%1</b>? - Möchten Sie die Build-Konfiguration <b>%1</b> wirklich löschen? - - - Clone Configuration - Title of a the cloned BuildConfiguration window, text of the window - Duplizierte Konfiguration - - - New configuration name: - Name der neuen Konfiguration: - - - Rename... - Umbenennen... - - - New name for build configuration <b>%1</b>: - Neuer Name der Build-Konfiguration <b>%1</b>: - - - - ProjectExplorer::Internal::CompileOutputWindow - - Compile Output - Kompilierung - - - Open Settings Page - Einstellungsseite öffnen - - - - ProjectExplorer::Internal::CurrentProjectFilter - - Files in Current Project - Dateien im aktuellen Projekt - - - - ProjectExplorer::Internal::CurrentProjectFind - - Project "%1" - Projekt "%1" - - - Current Project - Aktuelles Projekt - - - Project "%1": - Projekt "%1": - - - - ProjectExplorer::Internal::EditorSettingsPropertiesPage - - Editor settings: - Editoreinstellungen: - - - Global - Global - - - Custom - Benutzerdefiniert - - - Restore Global - Globale Einstellungen wiederherstellen - - - Display Settings - Anzeigeeinstellungen - - - Display right &margin at column: - Rechten &Rand anzeigen bei Spalte: - - - - ProjectExplorer::Internal::FolderNavigationWidgetFactory - - File System - Dateisystem - - - Meta+Y - Meta+Y - - - Alt+Y - Alt+Y - - - Options - Einstellungen - - - Add New... - Hinzufügen... - - - Rename... - Umbenennen... - - - Remove... - Entfernen... - - - - ProjectExplorer::Internal::ProjectExplorerSettingsPageUi - - Build and Run - Erstellung und Ausführung - - - Use jom instead of nmake - jom statt nmake verwenden - - - Current directory - Arbeitsverzeichnis - - - Directory - Verzeichnis - - - Projects Directory - Projektverzeichnis - - - Save all files before build - Alle Dateien vor Erstellen speichern - - - Always deploy project before running it - Vor Ausführung des Projekts stets Deployment durchführen - - - Always ask before stopping applications - Nachfrage beim Stoppen von Anwendungen - - - Asks before terminating the running application in response to clicking the stop button in Application Output. - Fragt vor dem Beenden der laufenden Anwendung bei Betätigen des Stop-Knopfes im Ausgabebereich "Ausgabe der Anwendung" nach. - - - Stop applications before building: - Anwendungen vor dem Erstellen beenden: - - - <i>jom</i> is a drop-in replacement for <i>nmake</i> which distributes the compilation process to multiple CPU cores. The latest binary is available at <a href="http://download.qt.io/official_releases/jom/">http://download.qt.io/official_releases/jom/</a>. Disable it if you experience problems with your builds. - <i>jom</i> ist ein Ersatz für <i>nmake</i>, der den Kompilationsprozess auf mehrere Prozessorkerne verteilt. Eine aktuelle Version erhalten Sie unter <a href="http://download.qt.io/official_releases/jom/">http://download.qt.io/official_releases/jom/</a>. Deaktivieren Sie es, wenn Probleme beim Build auftreten. - - - Add linker library search paths to run environment - Linker-Bibliothekspfade zur Ausführungsumgebung hinzufügen - - - Creates suitable run configurations automatically when setting up a new kit. - Erzeugt automatisch geeignete Ausführungskonfigurationen, wenn ein neues Kit hinzugefügt wird. - - - Create suitable run configurations automatically - Automatisch Ausführungskonfigurationen erzeugen - - - Closing Projects - Schließen von Projekten - - - Close source files along with project - Quelldateien zusammen mit Projekt schließen - - - Abort on error when building all projects - Bei Fehler abbrechen, wenn alle Projekte erstellt werden - - - Enable this if your system becomes unresponsive while building. - Aktivieren Sie dies, wenn Ihr System beim Erstellen nicht mehr reagiert. - - - Start build processes with low priority - Erstellungsprozesse mit niedriger Priorität starten - - - Clear issues list on new build - Problemliste bei neuer Erstellung leeren - - - Build before deploying: - Vor dem Deployment erstellen: - - - Default for "Run in terminal": - Vorgabe für "Im Terminal ausführen": - - - Enabled - Aktiviert - - - Disabled - Deaktiviert - - - Deduced from Project - Aus Projekt abgeleitet - - - - ProjectExplorer::Internal::ProjectFileWizardExtension - - Open project anyway? - Projekt trotzdem öffnen? - - - Version Control Failure - Fehlschlag der Versionsverwaltung - - - Failed to add subproject "%1" -to project "%2". - Das untergeordnete Projekt "%1" -konnte dem Projekt "%2" nicht hinzugefügt werden. - - - Failed to add one or more files to project -"%1" (%2). - Einige Dateien (%2) konnten nicht zum Projekt "%1" hinzugefügt werden. - - - - ProjectExplorer::Internal::ProjectTreeWidget - - Simplify Tree - Baum vereinfachen - - - Hide Generated Files - Generierte Dateien nicht zeigen - - - Hide Disabled Files - Deaktivierte Dateien verstecken - - - Focus Document in Project Tree - Dokument in Projektbaum hervorheben - - - Alt+Shift+L - Alt+Shift+L - - - Meta+Shift+L - Meta+Shift+L - - - Hide Empty Directories - Leere Verzeichnisse ausblenden - - - Synchronize with Editor - Mit Editor synchronisieren - - - - ProjectExplorer::Internal::ProjectTreeWidgetFactory - - Projects - Projekte - - - Meta+X - Meta+X - - - Alt+X - Alt+X - - - Filter Tree - Baum filtern - - - - ProjectExplorer::Internal::ProjectWelcomePage - - Open Session #%1 - Sitzung #%1 öffnen - - - Ctrl+Meta+%1 - Ctrl+Meta+%1 - - - Ctrl+Alt+%1 - Ctrl+Alt+%1 - - - Open Recent Project #%1 - Zuletzt bearbeitetes Projekt #%1 öffnen - - - Ctrl+Shift+%1 - Ctrl+Shift+%1 - - - Open %1 "%2" - %1 "%2" öffnen - - - Open %1 "%2" (%3) - %1 "%2" öffnen (%3) - - - session - Appears in "Open session <name>" - Sitzung - - - %1 (last session) - %1 (letzte Sitzung) - - - %1 (current session) - %1 (aktuelle Sitzung) - - - Clone - Klonen - - - Rename - Umbenennen - - - Delete - Löschen - - - project - Appears in "Open project <name>" - Projekt - - - Remove Project from Recent Projects - Projekt aus der Liste der zuletzt bearbeiteten Projekte entfernen - - - Clear Recent Project List - Liste der zuletzt bearbeiteten Projekte löschen - - - Manage - Verwalten - - - New - Neu - - - Open - Öffnen - - - Sessions - Sitzungen - - - Projects - Projekte - - - - ProjectExplorer::Internal::ProjectWizardPage - - Summary - Zusammenfassung - - - Add as a subproject to project: - Als Unterprojekt hinzufügen zu Projekt: - - - Add to &project: - Zu Projekt &hinzufügen: - - - <None> - <Kein> - - - A version control system repository could not be created in "%1". - Das Versionskontrollsystem konnte im Verzeichnis "%1" kein Repository anlegen. - - - Failed to add "%1" to the version control system. - "%1" konnte nicht unter Versionskontrolle gestellt werden. - - - Files to be added: - Zu erzeugende Dateien: - - - Files to be added in - Hinzuzufügende Dateien in - - - - ProjectExplorer::Internal::RunSettingsWidget - - Run Settings - Einstellungen zur Ausführung - - - Add - Hinzufügen - - - Remove - Entfernen - - - Clone... - Klonen... - - - Run configuration: - Ausführungskonfiguration: - - - Remove Run Configuration? - Aktive Ausführungskonfiguration löschen? - - - Do you really want to delete the run configuration <b>%1</b>? - Möchten Sie die Ausführungskonfiguration <b>%1</b> löschen? - - - Rename... - Umbenennen... - - - Add... - Hinzufügen... - - - Deployment - Deployment - - - Method: - Methode: - - - Run - Ausführen - - - Clone Configuration - Title of a the cloned RunConfiguration window, text of the window - Duplizierte Konfiguration - - - New configuration name: - Name der neuen Konfiguration: - - - New name for run configuration <b>%1</b>: - Neuer Name der Ausführungskonfiguration <b>%1</b>: - - - Cancel Build && Remove Deploy Configuration - Build abbrechen und Deployment-Konfiguration löschen - - - Do Not Remove - Nicht löschen - - - Remove Deploy Configuration %1? - Deployment-Konfiguration %1 löschen? - - - The deploy configuration <b>%1</b> is currently being built. - Die Deployment-Konfiguration <b>%1</b> wird gegenwärtig ausgeführt. - - - Do you want to cancel the build process and remove the Deploy Configuration anyway? - Möchten Sie die Erstellung abbrechen und die Deployment-Konfiguration trotzdem löschen? - - - Remove Deploy Configuration? - Deployment-Konfiguration löschen? - - - Do you really want to delete deploy configuration <b>%1</b>? - Möchten Sie die Deployment-Konfiguration<b>%1</b> löschen? - - - New name for deploy configuration <b>%1</b>: - Neuer Name der Deployment-Konfiguration <b>%1</b>: - - - - ProjectExplorer::Internal::SessionDialog - - Session Manager - Sitzungsverwaltung - - - &New - &Neu - - - &Rename - &Umbenennen - - - C&lone - &Duplizieren - - - &Delete - &Löschen - - - Restore last session on startup - Bei Start letzte Sitzung laden - - - <a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> - <a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-sessions.html">Was ist eine Sitzung?</a> - - - &Open - &Öffnen - - - - ProjectExplorer::Internal::TaskDelegate - - File not found: %1 - Datei nicht gefunden: %1 - - - - ProjectExplorer::Internal::WizardPage - - The following files will be added: - - - - - Die folgenden Dateien werden hinzugefügt: - - - - - - - Add to &project: - Zu Projekt &hinzufügen: - - - Add to &version control: - Unter &Versionskontrolle stellen: - - - Project Management - Projektverwaltung - - - - ProjectExplorer::ProjectExplorerPlugin - - &Build - &Erstellen - - - &Debug - Debugge&n - - - &Start Debugging - &Debuggen - - - Open With - Öffnen mit - - - New Project... - Neues Projekt... - - - Ctrl+Shift+N - Ctrl+Shift+N - - - Load Project... - Projekt laden... - - - Ctrl+Shift+O - Ctrl+Shift+O - - - Open File - Datei öffnen - - - Close Project - Projekt schließen - - - Ctrl+Shift+B - Ctrl+Shift+B - - - Build Project - Projekt erstellen - - - Ctrl+B - Ctrl+B - - - Rebuild Project - Projekt neu erstellen - - - Deploy Project - Deployment des Projekts durchführen - - - Deploy Project "%1" - Deployment des Projekts "%1" durchführen - - - Clean Project - Projekt bereinigen - - - Deploy Without Dependencies - Deployment unter Ausschluss der Abhängigkeiten durchführen - - - Run - Ausführen - - - Ctrl+R - Ctrl+R - - - Run Without Deployment - Ausführung ohne Deployment - - - Cancel Build - Erstellen abbrechen - - - Add Existing Files... - Existierende Datei hinzufügen... - - - Set as Active Project - Als aktives Projekt setzen - - - Collapse All - Alle einklappen - - - Open Build and Run Kit Selector... - Kit-Auswahl für Erstellung und Ausführung öffnen... - - - The name of the current project. - Der Name des aktuellen Projekts. - - - The name of the currently active kit. - Der Name des aktiven Kits. - - - The username with which to log into the device in the currently active kit. - Der Nutzername zum Einloggen in das Gerät im aktiven Kit. - - - Cancel Build && Unload - Erstellen abbrechen und schließen - - - Do Not Unload - Nicht schließen - - - Unload Project %1? - Projekt "%1" schließen? - - - The project %1 is currently being built. - Das Projekt "%1" wird gerade erstellt. - - - Do you want to cancel the build process and unload the project anyway? - Möchten Sie die Erstellung abbrechen und das Projekt trotzdem schließen? - - - All Projects - Alle Projekte - - - Failed opening project "%1": No plugin can open project type "%2". - Das Projekt "%1" konnte nicht geöffnet werden: Der Projekttyp "%2" kann von keinem Plugin geöffnet werden. - - - Found some build errors in current task. -Do you want to ignore them? - Es wurden einige Build-Fehler im aktuellen Task festgestellt. -Möchten Sie sie ignorieren? - - - Clean - Bereinigen - - - Build - Erstellen - - - Deploy - Deployment - - - The project "%1" has no active kit. - Das Projekt "%1" hat kein aktives Kit. - - - The kit "%1" for the project "%2" has no active run configuration. - Das Kit "%1" des Projektes "%2" hat keine aktive Ausführungskonfiguration. - - - Cannot run "%1". - "%1" kann nicht ausgeführt werden. - - - A build is still in progress. - Zur Zeit läuft ein Build-Vorgang. - - - Build All Projects for All Configurations - Alle Konfigurationen aller Projekte erstellen - - - Rebuild All Projects for All Configurations - Alle Konfigurationen aller Projekte neu erstellen - - - Clean All Projects for All Configurations - Alle Konfigurationen aller Projekte bereinigen - - - Adding Files to Project Failed - Das Hinzufügen der Dateien zum Projekt schlug fehl - - - Remove More Files? - Weitere Dateien entfernen? - - - Remove these files as well? - %1 - Auch diese Dateien entfernen? - %1 - - - Removing File Failed - Fehlschlag bei Entfernen der Datei - - - File "%1" was not removed, because the project has changed in the meantime. -Please try again. - Die Datei "%1" wurde nicht entfernt, weil sich das Projekt inzwischen geändert hat. -Bitte versuchen Sie es erneut. - - - Could not remove file "%1" from project "%2". - Die Datei "%1" konnte nicht aus dem Projekt "%2" entfernt werden. - - - Choose File Name - Dateinamen wählen - - - New file name: - Neuer Dateiname: - - - Failed to copy file "%1" to "%2": %3. - Die Datei "%1" konnte nicht nach "%2" kopiert werden: %3. - - - Failed to add new file "%1" to the project. - Die Datei "%1" konnte nicht zum Projekt hinzugefügt werden. - - - Deleting File Failed - Datei konnte nicht gelöscht werden - - - Delete File... - Datei löschen... - - - C - C - - - C++ - C++ - - - Open... - Öffnen... - - - Build Environment - Build-Umgebung - - - Run Environment - Ausführungsumgebung - - - S&essions - Sitzung&en - - - &Manage... - &Verwalten... - - - Close Pro&ject "%1" - Pro&jekt "%1" schließen - - - Close Pro&ject - Pro&jekt schließen - - - Build All Projects - Alle Projekte erstellen - - - Deploy All Projects - Deployment aller Projekte durchführen - - - Rebuild All Projects - Alle Projekte neu erstellen - - - Clean All Projects - Alle Projekte bereinigen - - - Build Project for All Configurations - Alle Konfigurationen des Projekts erstellen - - - Build Project "%1" for All Configurations - Alle Konfigurationen des Projekts "%1" erstellen - - - Build for Run Configuration - Für Ausführungskonfiguration erstellen - - - Build for Run Configuration "%1" - Für Ausführungskonfiguration "%1" erstellen - - - Rebuild Project for All Configurations - Alle Konfigurationen des Projekts neu erstellen - - - Rebuild Project "%1" for All Configurations - Alle Konfigurationen des Projekts "%1" neu erstellen - - - Clean Project for All Configurations - Alle Konfigurationen des Projekts bereinigen - - - Clean Project "%1" for All Configurations - Alle Konfigurationen des Projekts "%1" bereinigen - - - Meta+Backspace - Meta+Backspace - - - Alt+Backspace - Alt+Backspace - - - Add Existing Projects... - Bestehendes Projekt hinzufügen... - - - New Subproject... - Neues Teilprojekt... - - - Properties... - Eigenschaften... - - - Duplicate File... - Datei duplizieren... - - - Expand - Erweitern - - - Ctrl+T - Ctrl+T - - - Current project's main file. - Hauptdatei des aktuellen Projekts. - - - The name of the currently active kit as a filesystem-friendly version. - Der Name des aktiven Kits zur Verwendung als Dateiname. - - - The ID of the currently active kit. - Die ID des aktiven Kits. - - - The currently active run configuration's name. - Der Name der aktiven Ausführungskonfiguration. - - - The currently active run configuration's executable (if applicable). - Die ausführbare Datei der aktiven Ausführungskonfiguration (falls möglich). - - - Current Build Environment - Aktuelle Build-Umgebung - - - Current Run Environment - Aktuelle Ausführungsumgebung - - - Load Project - Projekt laden - - - Parse Build Output... - Build-Ausgabe auswerten... - - - New Project - Title of dialog - Neues Projekt - - - <h3>Project already open</h3> - <h3>Projekt bereits geöffnet</h3> - - - Failed opening project "%1": Project is not a file. - Das Projekt "%1" konnte nicht geöffnet werden: Die angegebene Projektdatei ist keine Datei. - - - No project loaded. - Es ist kein Projekt geladen. - - - Currently building the active project. - Das aktive Projekt wird gerade erstellt. - - - The project %1 is not configured. - Das Projekt %1 ist nicht konfiguriert. - - - Project has no build settings. - Das Projekt hat keine Build-Einstellungen. - - - A build is in progress. - Zur Zeit läuft ein Build-Vorgang. - - - Cancel Build && Close - Erstellen abbrechen und schließen - - - A project is currently being built. - Es wird gerade ein Projekt erstellt. - - - The project "%1" is not configured. - Das Projekt "%1" ist nicht konfiguriert. - - - A run action is already scheduled for the active project. - Für das aktive Projekt ist bereits eine Ausführung geplant. - - - Run %1 - %1 ausführen - - - %1 in %2 - %1 in %2 - - - New Subproject - Title of dialog - Neues Teilprojekt - - - Choose Project File - Projektdatei auswählen - - - The following subprojects could not be added to project "%1": - Die folgenden Unterprojekte konnten nicht zum Projekt "%1" hinzugefügt werden: - - - Adding Subproject Failed - Unterprojekt konnte nicht hinzugefügt werden - - - Could not add following files to project %1: - Die folgenden Dateien konnten nicht zum Projekt "%1" hinzugefügt werden: - - - _copy - _kopie - - - Duplicating File Failed - Datei konnte nicht dupliziert werden - - - Delete File - Datei löschen - - - Delete %1 from file system? - Soll die Datei "%1" gelöscht werden? - - - The file %1 could not be renamed %2. - Die Datei %1 konnte nicht in %2 umbenannt werden. - - - Cannot Rename File - Die Datei konnte nicht umbenannt werden - - - Close Project "%1" - Projekt "%1" schließen - - - Recent P&rojects - Zuletzt bearbeitete P&rojekte - - - Close All Projects and Editors - Alle Projekte und Editoren schließen - - - Build Project "%1" - Projekt "%1" erstellen - - - Rebuild Project "%1" - Projekt "%1" neu erstellen - - - Clean Project "%1" - Projekt "%1" bereinigen - - - Rebuild - Neu erstellen - - - Build Without Dependencies - Erstellen unter Ausschluss der Abhängigkeiten - - - Close All Files in Project - Alle Dateien im Projekt schließen - - - Close All Files in Project "%1" - Alle Dateien im Projekt "%1" schließen - - - Rebuild Without Dependencies - Neu erstellen unter Ausschluss der Abhängigkeiten - - - Clean Without Dependencies - Bereinigen unter Ausschluss der Abhängigkeiten - - - Add Existing Directory... - Vorhandenes Verzeichnis hinzufügen... - - - Close All Files - Alle Dateien schließen - - - Remove Project... - Remove project from parent profile (Project explorer view); will not physically delete any files. - Projekt entfernen... - - - Set "%1" as Active Project - "%1" als aktives Projekt setzen - - - Expand All - Alles aufklappen - - - Quick Switch Kit Selector - Schnelle Kitauswahl - - - Full build path of the current project's active build configuration. - Vollständiger Pfad der aktiven Build-Konfiguration des aktuellen Projekts. - - - The host address of the device in the currently active kit. - Die Host-Adresse des Geräts im aktiven Kit. - - - The SSH port of the device in the currently active kit. - Der SSH-Port des Geräts im gegenwärtig aktiven Kit. - - - The private key file with which to authenticate when logging into the device in the currently active kit. - Die private Schlüsseldatei zur Authentifizierung beim Einloggen in das Gerät im aktiven Kit. - - - The currently active build configuration's name. - Name der aktiven Build-Konfiguration. - - - The currently active build configuration's type. - Typ der aktiven Build-Konfiguration. - - - File where current session is saved. - Datei, in der die aktuelle Sitzung gespeichert wird. - - - Name of current session. - Name der aktuellen Sitzung. - - - Failed to Open Project - Projekt konnte nicht geöffnet werden - - - Ignore All Errors? - Alle Fehler ignorieren? - - - Run Configuration Removed - Ausführungskonfiguration gelöscht - - - The configuration that was supposed to run is no longer available. - Die auszuführende Konfiguration ist nicht mehr verfügbar. - - - Always save files before build - Alle Dateien vor Erstellen speichern - - - Do Not Close - Nicht schließen - - - Close %1? - %1 schließen? - - - Do you want to cancel the build process and close %1 anyway? - Möchten Sie die Erstellung abbrechen und %1 schließen? - - - No active project. - Kein aktives Projekt. - - - New File - Title of dialog - Neue Datei - - - Add Existing Files - Existierende Dateien hinzufügen - - - Project Editing Failed - Das Bearbeiten des Projekts schlug fehl - - - The project file %1 cannot be automatically changed. - -Rename %2 to %3 anyway? - Die Projektdatei %1 kann nicht automatisch geändert werden. - -%2 trotzdem in %3 umbenennen? - - - The file %1 was renamed to %2, but the project file %3 could not be automatically changed. - Die Datei %1 wurde in %2 umbenannt, aber die Projektdatei %3 konnte nicht automatisch geändert werden. - - - Could not delete file %1. - Die Datei "%1" konnte nicht gelöscht werden. - - - - ProjectExplorer::SessionManager - - Error while restoring session - Beim Wiederherstellen der Sitzung ist ein Fehler aufgetreten - - - Could not restore session %1 - Die Sitzung %1 konnte nicht wiederhergestellt werden - - - Delete Session - Sitzung löschen - - - Could not save session %1 - Die Sitzung %1 konnte nicht gespeichert werden - - - Delete Sessions - Sitzungen löschen - - - Delete session %1? - Soll die Sitzung %1 gelöscht werden? - - - Delete these sessions? - %1 - Diese Sitzungen löschen? - %1 - - - Failed to restore project files - Fehlschlag beim Wiederherstellen der Dateien des Projekts - - - Could not restore the following project files:<br><b>%1</b> - Die folgende Dateien konnten nicht wiederhergestellt werden: <br><b>%1</b> - - - Keep projects in Session - Projekte in Sitzung belassen - - - Remove projects from Session - Projekte aus Sitzung entfernen - - - Loading Session - Lade Sitzung - - - Error while saving session - Fehler beim Speichern der Sitzung - - - Could not save session to file %1 - Die Sitzung konnte nicht unter %1 gespeichert werden - - - Untitled - Unbenannt - - - - QrcEditor - - Remove - Entfernen - - - Properties - Eigenschaften - - - Prefix: - Präfix: - - - Language: - Sprache: - - - Alias: - Aliasname: - - - Remove Missing Files - Fehlende Dateien entfernen - - - Add Prefix - Präfix hinzufügen - - - Add Files - Dateien hinzufügen - - - - ResourceEditor - - &Undo - &Rückgängig - - - &Redo - &Wiederholen - - - Recheck Existence of Referenced Files - Nochmalige Überprüfung der Existenz der referenzierten Dateien - - - Add Prefix... - Präfix hinzufügen... - - - Change Prefix... - Präfix ändern... - - - Remove Prefix... - Präfix löschen... - - - Remove Missing Files - Fehlende Dateien entfernen - - - Rename... - Umbenennen... - - - Remove File... - Datei entfernen... - - - Open in Editor - In Editor öffnen - - - Open With - Öffnen mit - - - Copy Path - Pfad kopieren - - - Copy Path "%1" - Pfad "%1" kopieren - - - Copy URL - URL kopieren - - - Copy URL "%1" - URL "%1" kopieren - - - Add Prefix - Präfix hinzufügen - - - Remove Prefix - Präfix löschen - - - Remove prefix %1 and all its files? - Präfix %1 und alle zugehörigen Dateien löschen? - - - File Removal Failed - Fehlschlag bei Entfernen der Datei - - - Removing file %1 from the project failed. - Die Datei %1 konnte nicht aus dem Projekt entfernt werden. - - - Rename Prefix - Präfix umbenennen - - - - ResourceEditor - - Open File - Datei öffnen - - - Rename File... - Datei umbenennen... - - - Copy Resource Path to Clipboard - Ressourcenpfad in die Zwischenablage kopieren - - - Sort Alphabetically - Alphabetisch sortieren - - - - Subversion::Internal::SettingsPage - - Authentication - Authentifizierung - - - Password: - Passwort: - - - Configuration - Konfiguration - - - Miscellaneous - Sonstige Einstellungen - - - Timeout: - Zeitlimit: - - - s - s - - - Prompt on submit - Submit bestätigen - - - Ignore whitespace changes in annotation - Änderungen der Leerzeichen bei Annotation weglassen - - - Log count: - Log-Anzeige beschränken auf: - - - Subversion command: - Subversion-Kommando: - - - Username: - Nutzername: - - - - Subversion::Internal::SettingsPageWidget - - Subversion Command - Subversion-Kommando - - - Subversion - Subversion - - - - Subversion::Internal::SubversionPlugin - - &Subversion - &Subversion - - - Add - Hinzufügen - - - Add "%1" - "%1" hinzufügen - - - Alt+S,Alt+A - Alt+S,Alt+A - - - Diff Project - Diff für Projekt - - - Diff Current File - Diff für Datei - - - Diff "%1" - Diff für "%1" - - - Alt+S,Alt+D - Alt+S,Alt+D - - - Commit All Files - Commit aller Dateien - - - Commit Current File - Commit der aktuellen Datei - - - Commit "%1" - Commit von "%1" - - - Alt+S,Alt+C - Alt+S,Alt+C - - - Filelog Current File - Filelog für Datei - - - Filelog "%1" - Filelog für "%1" - - - Annotate Current File - Annotation für Datei - - - Annotate "%1" - Annotation für "%1" - - - Describe... - Beschreibung zu... - - - Project Status - Status des Projekts (status) - - - Update Project - Projekt auf aktuellen Stand bringen - - - Commit Project - Commit des Projekts - - - Commit Project "%1" - Commit des Projekts "%1" - - - Diff Repository - Diff des Repositorys - - - Repository Status - Status des Repositorys - - - Log Repository - Log des Repositorys - - - Update Repository - Repository auf den aktuellen Stand bringen - - - Revert all pending changes to the repository? - Möchten Sie alle ausstehenden Änderungen des Repositorys verwerfen? - - - The file has been changed. Do you want to revert it? - Die Datei wurde geändert. Möchten Sie sie zurücksetzen? - - - Delete... - Löschen... - - - Meta+S,Meta+D - Meta+S,Meta+D - - - Meta+S,Meta+A - Meta+S,Meta+A - - - Meta+S,Meta+C - Meta+S,Meta+C - - - Delete "%1"... - Lösche "%1"... - - - Revert... - Rückgängig machen... - - - Revert "%1"... - Änderungen in "%1" rückgängig machen... - - - Diff Project "%1" - Diff für Projekt "%1" - - - Status of Project "%1" - Status des Projekts "%1" - - - Log Project "%1" - Log für Projekt "%1" - - - Log Project - Log für Projekt - - - Update Project "%1" - Projekt "%1"auf aktuellen Stand bringen - - - Revert Repository... - Änderungen im gesamten Repository rückgängig machen... - - - Revert repository - Alle Änderungen rückgängig machen - - - Revert failed: %1 - Fehler beim Rücksetzen der Änderungen: %1 - - - Another commit is currently being executed. - Es läuft bereits ein Commit-Vorgang. - - - There are no modified files. - Es gibt keine geänderten Dateien. - - - Describe - Beschreibe - - - Revision number: - Revisionsnummer: - - - No subversion executable specified. - Es wurde keine Subversion-Anwendung angegeben. - - - - Subversion::Internal::SubversionSubmitEditor - - Subversion Submit - Subversion Submit - - - - TextEditor::BaseFileFind - - Searching - Suche - - - %n occurrences replaced. - - %n Vorkommen ersetzt. - %n Vorkommen ersetzt. - - - - %n found. - - Ein Treffer gefunden. - %n Treffer gefunden. - - - - Aborting replace. - Breche Ersetzung ab. - - - - TextEditor::BaseTextEditor - - A highlight definition was not found for this file. Would you like to download additional highlight definition files? - Für diese Datei ist keine Definition der Syntaxhervorhebung vorhanden. Möchten Sie weitere Definitionen der Syntaxhervorhebung herunterladen? - - - Download Definitions - Definitionen herunterladen - - - More than one highlight definition was found for this file. Which one should be used to highlight this file? - Für diese Datei wurden mehrere Definitionen der Syntaxhervorhebung gefunden. Welche soll für diese Datei verwendet werden? - - - Remember My Choice - Meine Auswahl speichern - - - - TextEditor::Internal::ColorScheme - - Not a color scheme file. - Keine Farbschema-Datei. - - - - TextEditor::Internal::ColorSchemeEdit - - Bold - Fett - - - Italic - Kursiv - - - Background: - Hintergrund: - - - Foreground: - Zeichen: - - - x - x - - - Erase foreground. - Vordergrund löschen. - - - Erase background. - Hintergrund löschen. - - - No Underline - Nicht unterstreichen - - - Single Underline - Einfach unterstreichen - - - Wave Underline - Gewellt unterstreichen - - - Dot Underline - Gepunktet unterstreichen - - - Dash Underline - Gestrichelt unterstreichen - - - Dash-Dot Underline - Strich-Punkt unterstreichen - - - Dash-Dot-Dot Underline - Strich-Punkt-Punkt unterstreichen - - - Relative Foreground - Relativer Vordergrund - - - Lightness: - Helligkeit: - - - Saturation: - Sättigung: - - - Font - Zeichensatz - - - Underline - Unterstreichung - - - Color: - Farbe: - - - Relative Background - Relativer Hintergrund - - - <p align='center'><b>Builtin color schemes need to be <a href="copy">copied</a><br/> before they can be changed</b></p> - <p align='center'><b>Mitgelieferte Farbschemata müssen <a href="copy">kopiert</a><br/> werden, bevor sie geändert werden können</b></p> - - - - TextEditor::Internal::FindInCurrentFile - - Current File - Aktuelle Datei - - - File "%1": - Datei "%1": - - - File path: %1 -%2 - Pfad zu Datei: %1 -%2 - - - - TextEditor::FontSettingsPageWidget - - Font - Zeichensatz - - - Family: - Name: - - - Size: - Größe: - - - Color Scheme - Farbschema - - - Antialias - Kantenglättung - - - Copy... - Kopieren... - - - Delete - Löschen - - - % - % - - - Zoom: - Vergrößerungsfaktor: - - - - TextEditor::Internal::LineNumberFilter - - Line %1, Column %2 - Zeile %1, Spalte %2 - - - Line %1 - Zeile %1 - - - Column %1 - Spalte %1 - - - Line in Current Document - Zeile im aktuellen Dokument - - - - TopicChooser - - Filter - Filter - - - Choose a topic for <b>%1</b>: - Wählen Sie ein Thema für <b>%1</b>: - - - Choose Topic - Themenwahl - - - &Topics - &Themen - - - - Utils::CheckableMessageBox - - Do not ask again - Nicht noch einmal nachfragen - - - Show Details... - Details anzeigen... - - - Hide Details... - Details ausblenden... - - - Do not &ask again - Nicht noch einmal nach&fragen - - - Do not &show again - Nicht noch einmal an&zeigen - - - - Utils::ClassNameValidatingLineEdit - - The class name must not contain namespace delimiters. - Der Klassenname darf keine Namensraum-Trenner enthalten. - - - Please enter a class name. - Bitte geben Sie einen Klassennamen ein. - - - The class name contains invalid characters. - Der Klassennamen enthält ungültige Zeichen. - - - - Utils::ConsoleProcess - - Cannot set up communication channel: %1 - Es konnte kein Kommunikationskanal hergestellt werden: %1 - - - 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? - - - Cannot create temporary directory "%1": %2 - Das temporäre Verzeichnis "%1" konnte nicht erstellt werden: %2 - - - Unexpected output from helper program (%1). - Die Ausgabe des Hilfsprogrammes (%1) kann nicht ausgewertet werden. - - - Cannot change to working directory "%1": %2 - Es konnte nicht zum Arbeitsverzeichnis "%1" gewechselt werden: %2 - - - Cannot execute "%1": %2 - Das Kommando "%1" konnte nicht ausgeführt werden: %2 - - - Press <RETURN> to close this window... - Betätigen Sie die <RETURN> Taste, um das Fenster zu schließen... - - - Quoting error in command. - Falsch gesetzte Anführungszeichen im Kommando. - - - Debugging complex shell commands in a terminal is currently not supported. - Das Debuggen komplexer Shell-Kommandos in einem Terminal wird gegenwärtig nicht unterstützt. - - - Quoting error in terminal command. - Quotierungsfehler in Terminal-Kommando. - - - Terminal command may not be a shell command. - Shell-Kommandos sind als Terminal-Kommando nicht zulässig. - - - Cannot start the terminal emulator "%1", change the setting in the Environment preferences. - Der Terminal-Emulator "%1" konnte nicht gestartet werden, ändern Sie den Wert in den Einstellungen zur Umgebung. - - - Cannot create socket "%1": %2 - Der Socket "%1" konnte nicht erstellt werden: %2 - - - The process "%1" could not be started: %2 - Der Prozess "%1" konnte nicht gestartet werden: %2 - - - Cannot obtain a handle to the inferior: %1 - Der zu debuggende Prozess konnte nicht angesprochen werden: %1 - - - Cannot obtain exit status from inferior: %1 - Der Rückgabewert des zu debuggenden Prozesses konnte nicht erhalten werden: %1 - - - - Utils::DetailsButton - - Details - Details - - - - Utils::FileSearch - - %1: canceled. %n occurrences found in %2 files. - - %1: Abgebrochen. Eine Fundstelle in %2 Dateien. - %1: Abgebrochen. %n Fundstellen in %2 Dateien. - - - - %1: %n occurrences found in %2 files. - - %1: Eine Fundstelle in %2 Dateien. - %1: %n Fundstellen in %2 Dateien. - - - - Fi&le pattern: - Such&muster für Dateinamen: - - - Excl&usion pattern: - Ausschl&ussmuster: - - - List of comma separated wildcard filters. Files with file name or full file path matching any filter are included. - Kommaseparierte Liste von Platzhalter-Filtern. Dateien werden eingeschlossen, wenn ihr Name oder vollständiger Pfad einem der Filter entspricht. - - - - Utils::PathChooser - - Choose... - Auswählen... - - - Browse... - Auswählen... - - - Choose Directory - Verzeichnis wählen - - - Choose Executable - Ausführbare Datei auswählen - - - Choose File - Datei wählen - - - The path must not be empty. - Der Pfad darf nicht leer sein. - - - The path "%1" expanded to an empty string. - Der Pfad "%1" expandierte zu einer leeren Zeichenkette. - - - The path "%1" does not exist. - Der Pfad "%1" existiert nicht. - - - The path "%1" is not a directory. - Der Pfad "%1" ist kein Verzeichnis. - - - The path "%1" is not a file. - Der Pfad "%1" ist keine Datei. - - - The directory "%1" does not exist. - Das Verzeichnis "%1" existiert nicht. - - - The path "%1" is not an executable file. - Der Pfad "%1" ist keine ausführbare Datei. - - - Cannot execute "%1". - "%1" konnte nicht ausgeführt werden. - - - Full path: "%1" - Vollständiger Pfad: "%1" - - - Path: - Pfad: - - - - Utils::PathListEditor - - Insert... - Einfügen... - - - Delete Line - Zeile löschen - - - Clear - Löschen - - - - Utils::ProjectIntroPage - - Enter project name - Geben Sie einen Namen für das Projekt ein - - - Location - Pfad - - - The project already exists. - Das Projekt existiert bereits. - - - A file with that name already exists. - Eine Datei dieses Namens existiert bereits. - - - Name is empty. - Der Name ist leer. - - - Name does not match "%1". - Der Name passt nicht zu "%1". - - - Invalid character "%1" found. - Ungültiges Zeichen "%1" gefunden. - - - Invalid character ".". - Ungültiges Zeichen ".". - - - Name: - Name: - - - Create in: - Erzeugen in: - - - Use as default project location - Als Vorgabe für Projektverzeichnis verwenden - - - Introduction and Project Location - Einführung und Projektverzeichnis - - - Project: - Projekt: - - - - Utils::WizardPage - - Path: - Pfad: - - - Choose the Location - Pfadangabe - - - File name: - Dateiname: - - - - Utils::reloadPrompt - - File Changed - Datei geändert - - - The unsaved file <i>%1</i> has been changed on disk. Do you want to reload it and discard your changes? - Die noch nicht gespeicherte Datei <i>%1</i> wurde auf dem Speichermedium geändert. Möchten Sie sie neu laden und Ihre Änderungen verwerfen? - - - The file <i>%1</i> has been changed on disk. Do you want to reload it? - Die Datei <i>%1</i> wurde auf dem Speichermedium geändert. Möchten Sie sie neu laden? - - - The default behavior can be set in Tools > Options > Environment > System. - Das vorgegebene Verhalten kann in Extras > Einstellungen > Umgebung > System eingestellt werden. - - - &Close - &Schließen - - - No to All && &Diff - Keine && &Diff - - - - VcsBase - - Version Control - Versionskontrolle - - - General - Allgemein - - - - VcsBase::Internal::NickNameDialog - - Name - Name - - - Email - E-Mail-Adresse - - - Alias email - Alias-E-Mail-Adresse - - - Alias - Alias - - - Nicknames - Nicknames - - - - VcsBase::SubmitFileModel - - State - Status - - - File - Datei - - - - VcsBase::VcsBaseSubmitEditor - - Check Message - Beschreibung prüfen - - - Insert Name... - Namen einfügen... - - - Close %1 %2 Editor - Editor für %1 %2 schließen - - - What do you want to do with these changes? - Was möchten Sie mit diesen Änderungen tun? - - - Cannot %1%2. -What do you want to do? - %2 is an optional error message with ': ' prefix. Don't add space in front. - %1 ist nicht möglich%2 -Was möchten Sie tun? - - - Prompt to %1 - %1 bestätigen - - - &Close - &Schließen - - - &Keep Editing - &Weiter bearbeiten - - - Submit Message Check Failed - Die Überprüfung der Beschreibung schlug fehl - - - Executing %1 - Führe %1 aus - - - Executing [%1] %2 - Ausführung [%1] %2 - - - The check script "%1" could not be started: %2 - Das Skript zur Überprüfung "%1" konnte nicht gestartet werden: %2 - - - The check script "%1" timed out. - Zeitüberschreitung bei Ausführung des Skripts "%1" zur Überprüfung. - - - The check script "%1" crashed. - Das Skript "%1" zur Überprüfung ist abgestürzt. - - - The check script returned exit code %1. - Das Skript zur Überprüfung wurde beendet, Rückgabewert %1. - - - - QmlParser - - Illegal syntax for exponential number - Ungültige Syntax des Exponenten der Zahl - - - Stray newline in string literal - Nicht zugehöriges Zeilenende-Zeichen in Zeichenkettenliteral - - - End of file reached at escape sequence - Escape-Sequenz am Dateiende gefunden - - - Illegal unicode escape sequence - Ungültige Unicode-Escape-Sequenz - - - Illegal hexadecimal escape sequence - Ungültige hexadezimale Escape-Sequenz - - - Octal escape sequences are not allowed - Oktale Escape-Sequenzen sind nicht zulässig - - - Unclosed string at end of line - Zeichenkette am Zeilenende nicht geschlossen - - - Decimal numbers can't start with '0' - Dezimalzahlen dürfen nicht mit "0" beginnen - - - At least one hexadecimal digit is required after '0%1' - Auf "0%1" muss mindestens eine Hexadezimalziffer folgen - - - Unexpected token '.' - Unerwartetes Token "." - - - At least one octal digit is required after '0%1' - Auf "0%1" muss mindestens eine Oktalziffer folgen - - - At least one binary digit is required after '0%1' - Auf "0%1" muss mindestens eine Binärziffer folgen - - - Invalid regular expression flag '%0' - Ungültiger Modifikator für regulären Ausdruck "%0" - - - Unterminated regular expression backslash sequence - Der reguläre Ausdruck endet mit einer nicht abgeschlossenen Backslash-Sequenz - - - Unterminated regular expression class - Nicht abgeschlossene Zeichenklassenangabe innerhalb des regulären Ausdrucks - - - Unterminated regular expression literal - Regulärer Ausdruck nicht abgeschlossen - - - Syntax error - Syntaxfehler - - - Imported file must be a script - Importierte Datei muss ein Skript sein - - - Invalid module URI - Ungültiger Modul-URI - - - Module import requires a version - Modul-Import benötigt eine Version - - - Module import requires a minor version (missing dot) - Modul-Import benötigt eine Minor-Version (fehlender Punkt) - - - Module import requires a minor version (missing number) - Modul-Import benötigt eine Minor-Version (fehlende Zahl) - - - File import requires a qualifier - Datei-Import benötigt einen Qualifizierer - - - Module import requires a qualifier - Modul-Import benötigt einen Qualifizierer - - - Invalid import qualifier - Ungültiger Import-Qualifizierer - - - Unexpected token `%1' - Unerwartetes Token "%1" - - - Expected token `%1' - Es wird das Token "%1" erwartet - - - - Git - - Stashes - Stashes - - - Name - Name - - - Branch - Branch - - - Message - Bezeichnung - - - Do you want to delete all stashes? - Möchten Sie alle Stashes löschen? - - - Do you want to delete %n stash(es)? - - Möchten Sie einen Stash löschen? - Möchten Sie %n Stashes löschen? - - - - Delete &All... - &Alle löschen... - - - &Delete... - &Löschen... - - - R&estore... - &Wiederherstellen... - - - Restore to &Branch... - Restore a git stash to new branch to be created - Als &Branch wiederherstellen... - - - Re&fresh - &Aktualisieren - - - Delete Stashes - Löschen von Stashes - - - Repository Modified - Repository geändert - - - %1 cannot be restored since the repository is modified. -You can choose between stashing the changes or discarding them. - %1 kann nicht wiederhergestellt werden, da Änderungen im Repository vorhanden sind. -Sie können die Änderungen in einem Stash ablegen oder zurücksetzen. - - - Discard - Zurücksetzen - - - Restore Stash to Branch - Als Branch wiederherstellen - - - Stash Restore - Stash wiederherstellen - - - Would you like to restore %1? - Möchten Sie %1 wiederherstellen? - - - Error restoring %1 - Fehler beim Wiederherstellen von %1 - - - - Mercurial - - General Information - Allgemeine Informationen - - - Repository: - Repository: - - - repository - repository - - - Branch: - Branch: - - - branch - branch - - - Commit Information - Informationen zu Commit - - - Author: - Autor: - - - Email: - E-Mail-Adresse: - - - Configuration - Konfiguration - - - Command: - Kommando: - - - User - Nutzer - - - Username to use by default on commit. - Nutzername für Commit. - - - Default username: - Vorgabe für Nutzernamen: - - - Email to use by default on commit. - E-Mail-Adresse für Commit. - - - Miscellaneous - Sonstige Einstellungen - - - Timeout: - Zeitlimit: - - - s - s - - - Log count: - Log-Anzeige beschränken auf: - - - Default email: - Vorgabe-E-Mail: - - - The number of recent commit logs to show, choose 0 to see all entries. - Zahl der anzuzeigenden Logeinträge, 0 für unbegrenzt. - - - Revert - Rückgängig machen - - - Specify a revision other than the default? - Möchten Sie eine Revision angeben? - - - Revision: - Revision: - - - Dialog - Dialog - - - Local filesystem: - Dateisystem: - - - Default Location - Vorgabe - - - Specify URL: - URL: - - - Prompt for credentials - Nutzerdaten abfragen - - - For example: 'https://[user[:pass]@]host[:port]/[path]'. - Zum Beispiel: 'https://[user[:pass]@]host[:port]/[path]'. - - - - QmlDesigner::Internal::SettingsPage - - Snapping - Raster - - - Qt Quick Designer - Qt Quick-Designer - - - Restart Required - Neustart erforderlich - - - The made changes will take effect after a restart of the QML Emulation layer or %1. - Die Änderungen werden nach einem Neustart der QML-Emulationsschicht oder von %1 wirksam. - - - Canvas - Leinwand - - - Warnings - Warnungen - - - Warn about unsupported features in the Qt Quick Designer - Zeige eine Warnung bei nicht unterstützten Features in Qt Quick Designer an - - - Warn about unsupported features of Qt Quick Designer in the code editor - Zeige eine Warnung bei nicht unterstützten Features in Qt Quick Designer auch im Code-Editor an - - - Debugging - Debuggen - - - Show the debugging view - Debugansicht anzeigen - - - Enable the debugging view - Debugansicht aktivieren - - - Parent item padding: - Abstand zu übergeordnetem Element: - - - Sibling item spacing: - Abstand zwischen gleichrangigen Elementen: - - - Subcomponents - Subkomponenten - - - Always save when leaving subcomponent in bread crumb - Immer speichern, wenn eine Subkomponente per Breadcrumb Navigation verlassen wird - - - QML Emulation Layer - QML-Emulationsschicht - - - Styling - Stil - - - Controls style: - Controls Stil: - - - Default style - Vorgabestil - - - Reset Style - Stil zurücksetzen - - - If you select this radio button, Qt Quick Designer always uses the QML emulation layer (QML Puppet) located at the following path. - Wenn Sie diesen Radiobutton auswählen, benutzt der Qt Quick Designer immer die QML-Emulationsschicht (QML Puppet) im folgenden Pfad. - - - Use fallback QML emulation layer - Fallback QML-Emulationsschicht benutzen - - - Path: - Pfad: - - - Reset Path - Pfad zurücksetzen - - - Top level build path: - Oberstes Build-Verzeichnis: - - - Warns about QML features that are not properly supported by the Qt Quick Designer. - Zeigt eine Warnung bei QML-Features an, die vom Qt Quick Designer nicht vollständig unterstützt werden. - - - Also warns in the code editor about QML features that are not properly supported by the Qt Quick Designer. - Zeigt auch im Code-Editor eine Warnung bei QML-Features an, die vom Qt Quick Designer nicht vollständig unterstützt werden. - - - Internationalization - Internationalisierung - - - qsTr() - qsTr() - - - qsTrId() - qsTrId() - - - Show property editor warnings - Zeige Warnungen des Eigenschafteneditors - - - Show warn exceptions - Zeige Warnungsausnahmen - - - Forward QML emulation layer output: - Ausgabe der QML-Emulationsschicht weiterleiten: - - - Debug QML emulation layer: - Debug-QML-Emulationsschicht: - - - Default - Vorgabe - - - Material - Material - - - Universal - Universal - - - Qt Quick Designer will propose to open .ui.qml files instead of opening a .qml file. - Qt Quick Designer wird vorschlagen, .ui.qml-Dateien statt einer .qml-Datei zu öffnen. - - - Warn about using .qml files instead of .ui.qml files - Bei der Benutzung von .qml-Dateien statt .ui.qml-Dateien warnen - - - Width: - Breite: - - - Height: - Höhe: - - - Root Item Init Size - Basisgröße des Wurzelelements - - - Controls 2 style: - Controls-2-Stil: - - - Use QML emulation layer that is built with the selected Qt - Mit dem gewählten Qt erstellte QML-Emulationsschicht benutzen - - - qsTranslate() - qsTranslate() - - - Path to the QML emulation layer executable (qmlpuppet). - Pfad zur ausführbaren Datei der QML-Emulationsschicht (qmlpuppet). - - - Resets the path to the built-in QML emulation layer. - Setzt den Pfad zurück auf die integrierte QML-Emulationsschicht. - - - Features - Zusatzfunktionen - - - Enable Timeline editor - Timeline-Editor aktivieren - - - Always open ui.qml files in Design mode - ui.qml-Dateien immer im Design-Modus öffnen - - - - Utils::UnixTools - - <table border=1 cellspacing=0 cellpadding=3><tr><th>Variable</th><th>Expands to</th></tr><tr><td>%d</td><td>directory of current file</td></tr><tr><td>%f</td><td>file name (with full path)</td></tr><tr><td>%n</td><td>file name (without path)</td></tr><tr><td>%%</td><td>%</td></tr></table> - <table border=1 cellspacing=0 cellpadding=3><tr><th>Variable</th><th>Expandiert zu</th></tr><tr><td>%d</td><td>Verzeichnis der aktuellen Datei</td></tr><tr><td>%f</td><td>Dateiname mit vollständigem Pfad</td></tr><tr><td>%n</td><td>Dateiname (ohne Pfad)</td></tr><tr><td>%%</td><td>%</td></tr></table> - - - - Core - - Show Left Sidebar - Linke Seitenleiste anzeigen - - - Hide Left Sidebar - Linke Seitenleiste verbergen - - - Show Right Sidebar - Rechte Seitenleiste anzeigen - - - Hide Right Sidebar - Rechte Seitenleiste verbergen - - - Qt - Qt - - - Environment - Umgebung - - - Clear Menu - Menü löschen - - - Configure... - msgShowOptionsDialog - Einstellungen... - - - Open Preferences dialog. - msgShowOptionsDialogToolTip (mac version) - Einstellungsdialog öffnen. - - - Open Options dialog. - msgShowOptionsDialogToolTip (non-mac version) - Einstellungsdialog öffnen. - - - All Files (*.*) - On Windows - Alle Dateien (*.*) - - - All Files (*) - On Linux/macOS - Alle Dateien (*) - - - - CodePaster - - Code Pasting - Code Pasting - - - - VCS - - CVS Commit Editor - CVS Commit-Editor - - - CVS Command Log Editor - CVS Kommando-Log-Editor - - - CVS File Log Editor - CVS Datei-Log-Editor - - - CVS Annotation Editor - CVS Annotations-Editor - - - CVS Diff Editor - CVS Diff-Editor - - - Git SVN Log Editor - Git SVN-Log-Editor - - - Git Log Editor - Git Log-Editor - - - Git Reflog Editor - Git Reflog-Editor - - - Git Annotation Editor - Git Annotations-Editor - - - Git Commit Editor - Git Commit-Editor - - - Git Rebase Editor - Git Rebase-Editor - - - Git Submit Editor - Git Submit-Editor - - - Mercurial File Log Editor - Mercurial Datei-Log-Editor - - - Mercurial Annotation Editor - Mercurial Annotations-Editor - - - Mercurial Diff Editor - Mercurial Diff-Editor - - - Mercurial Commit Log Editor - Mercurial Commit-Log-Editor - - - Perforce.SubmitEditor - Perforce Submit-Editor - - - Perforce Log Editor - Perforce Datei-Log-Editor - - - Perforce Diff Editor - Perforce Diff-Editor - - - Perforce Annotation Editor - Perforce Annotations-Editor - - - Subversion Commit Editor - Subversion Commit-Editor - - - Subversion File Log Editor - Subversion Datei-Log-Editor - - - Subversion Annotation Editor - Subversion Annotations-Editor - - - Bazaar File Log Editor - Bazaar Datei-Log-Editor - - - Bazaar Annotation Editor - Bazaar Annotations-Editor - - - Bazaar Diff Editor - Bazaar Diff-Editor - - - Bazaar Commit Log Editor - Bazaar Commit-Log-Editor - - - ClearCase Check In Editor - ClearCase Check-In-Editor - - - ClearCase File Log Editor - ClearCase Datei-Log-Editor - - - ClearCase Annotation Editor - ClearCase Annotations-Editor - - - ClearCase Diff Editor - ClearCase Diff-Editor - - - - Help - - Error loading page - Fehler beim Laden der Seite - - - <p>Check that you have the corresponding documentation set installed.</p> - <p>Stellen Sie sicher, dass Sie den zugehörigen Satz Dokumentation(en) installiert haben.</p> - - - Error loading: %1 - Fehler beim Laden: %1 - - - The page could not be found - Die Seite konnte nicht gefunden werden - - - - Mercurial - - Commit Editor - Commit-Editor - - - Unable to find parent revisions of %1 in %2: %3 - Die übergeordnete Revision von %1 im Repository %2 konnte nicht bestimmt werden: %3 - - - Cannot parse output: %1 - Die Ausgabe kann nicht ausgewertet werden: %1 - - - Hg incoming %1 - Hg eingehend %1 - - - Hg outgoing %1 - Hg ausgehend %1 - - - Mercurial Diff - Mercurial Diff - - - Mercurial Diff "%1" - Mercurial Diff für "%1" - - - Me&rcurial - Me&rcurial - - - Annotate Current File - Annotation für Datei - - - Annotate "%1" - Annotation für "%1" - - - Diff Current File - Diff für Datei - - - Diff "%1" - Diff für "%1" - - - Meta+H,Meta+D - Meta+H,Meta+D - - - Log Current File - Filelog für Datei - - - Log "%1" - Log für "%1" - - - Meta+H,Meta+L - Meta+H,Meta+L - - - Status Current File - Status der Datei - - - Status "%1" - Status von "%1" - - - Alt+G,Alt+D - Alt+G,Alt+D - - - Alt+G,Alt+L - Alt+G,Alt+L - - - Meta+H,Meta+S - Meta+H,Meta+S - - - Alt+G,Alt+S - Alt+G,Alt+S - - - Add - Hinzufügen - - - Add "%1" - "%1" hinzufügen - - - Delete... - Löschen... - - - Delete "%1"... - Lösche "%1"... - - - Revert Current File... - Änderungen der Datei rückgängig machen... - - - Revert "%1"... - Änderungen in "%1" rückgängig machen... - - - Diff - Diff - - - Log - Log - - - Revert... - Rückgängig machen... - - - Status - Status - - - Pull... - Pull... - - - Push... - Push... - - - Update... - Auf aktuellen Stand bringen... - - - Import... - Importieren... - - - Incoming... - Eingehend... - - - Outgoing... - Ausgehend... - - - Commit... - Commit... - - - Meta+H,Meta+C - Meta+H,Meta+C - - - Alt+G,Alt+C - Alt+G,Alt+C - - - Create Repository... - Repository erzeugen... - - - Pull Source - Quelle - - - Push Destination - Ziel - - - Update - Aktualisieren - - - Incoming Source - Quelle - - - There are no changes to commit. - Es sind keine ausstehenden Änderungen vorhanden. - - - Unable to create an editor for the commit. - Es konnte kein Editor für den Commit angelegt werden. - - - Commit changes for "%1". - Commit der Änderungen in "%1". - - - Mercurial - Mercurial - - - Mercurial Command - Ausführbare Datei - - - - Perforce::Internal::PerforceChecker - - No executable specified - Es wurde keine ausführbare Datei angegeben - - - "%1" timed out after %2 ms. - Zeitüberschreitung bei der Ausführung von "%1"(%2 ms). - - - Unable to launch "%1": %2 - "%1" konnte nicht ausgeführt werden: %2 - - - "%1" crashed. - "%1" ist abgestürzt. - - - "%1" terminated with exit code %2: %3 - Der Prozess "%1" wurde beendet (Rückgabewert %2): %3 - - - The client does not seem to contain any mapped files. - Der Perforce-Client enthält offenbar keine Dateizuordnungen. - - - Unable to determine the client root. - Unable to determine root of the p4 client installation - Das Wurzelverzeichnis der Perforce-Installation konnte nicht bestimmt werden. - - - The repository "%1" does not exist. - Es ist existiert kein Repository "%1". - - - - ProjectExplorer::BaseProjectWizardDialog - - untitled - File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks and using only ascii chars. - untitled - - - - ProjectExplorer::Internal::DependenciesModel - - <No other projects in this session> - <Es existieren keine anderen Projekte in der Sitzung> - - - - ProjectExplorer::Internal::FolderNavigationWidget - - Open "%1" - "%1" öffnen - - - Show Hidden Files - Versteckte Dateien zeigen - - - The file "%1" was renamed to "%2", but the following projects could not be automatically changed: %3 - Die Datei "%1" wurde in "%2" umbenannt, aber die folgenden Projekte konnten nicht automatisch geändert werden: %3 - - - Show Bread Crumbs - Breadcrumb-Navigation anzeigen - - - Show Folders on Top - Verzeichnisse zuerst anzeigen - - - Synchronize with Editor - Mit Editor synchronisieren - - - Synchronize Root Directory with Editor - Wurzelverzeichnis aus Editor übernehmen - - - The following projects failed to automatically remove the file: %1 - Die folgenden Projekte konnten die Datei nicht automatisch entfernen: %1 - - - New Folder - Neues Verzeichnis - - - Open Project in "%1" - Projekt in "%1" öffnen - - - Open Project "%1" - Projekt "%1" öffnen - - - Computer - Computer - - - Home - Benutzerverzeichnis - - - Projects - Projekte - - - - ProjectExplorer::Internal::MiniProjectTargetSelector - - Project - Projekt - - - Build - Erstellen - - - Kit - Kit - - - Deploy - Deployment - - - Run - Ausführen - - - Unconfigured - Nicht konfiguriert - - - <b>Project:</b> %1 - <b>Projekt:</b> %1 - - - <b>Build:</b> %1 - <b>Erstellung:</b> %1<br/> - - - <b>Deploy:</b> %1 - <b>Deployment:</b> %1 - - - <b>Run:</b> %1 - <b>Ausführung:</b> %1<br/> - - - %1 - %1 - - - Kit: <b>%1</b><br/> - Kit: <b>%1</b><br/> - - - <style type=text/css>a:link {color: rgb(128, 128, 255, 240);}</style>The project <b>%1</b> is not yet configured<br/><br/>You can configure it in the <a href="projectmode">Projects mode</a><br/> - <style type=text/css>a:link {color: rgb(128, 128, 255, 240);}</style>Das Projekt <b>%1</b> ist noch nicht konfiguriert<br/><br/>Sie können es im <a href="projectmode">Projektmodus</a> konfigurieren<br/> - - - Project: <b>%1</b><br/> - Projekt: <b>%1</b><br/> - - - <b>Path:</b> %1 - <b>Pfad:</b> %1 - - - <b>Kit:</b> %1 - <b>Kit:</b> %1 - - - Build: <b>%1</b><br/> - Erstellung: <b>%1</b><br/> - - - Deploy: <b>%1</b><br/> - Deployment: <b>%1</b><br/> - - - Run: <b>%1</b><br/> - Ausführung: <b>%1</b><br/> - - - - ProjectExplorer - - Build & Run - Erstellung und Ausführung - - - Other Project - Anderes Projekt - - - Application - Anwendung - - - Library - Bibliothek - - - Import Project - Projekt importieren - - - Devices - Geräte - - - Name of current build - Name der gegenwärtigen Build-Konfiguration - - - Main file of current project - Hauptdatei des aktuellen Projekts - - - Name of current project - Name des aktuellen Projekts - - - Type of current build - Typ der gegenwärtigen Build-Konfiguration - - - The currently active run configuration's name. - Der Name der aktiven Ausführungskonfiguration. - - - Kits - Kits - - - SSH - SSH - - - Kit is not valid. - Kit ist ungültig. - - - - QmlDesigner::NavigatorTreeModel - - Unknown item: %1 - Unbekanntes Element: %1 - - - Changing the setting "%1" might solve the issue. - Die Einstellung "%1" zu ändern könnte das Problem lösen. - - - Use QML emulation layer that is built with the selected Qt - Mit dem gewählten Qt erstellte QML-Emulationsschicht benutzen - - - Toggles whether this item is exported as an alias property of the root item. - Wählt aus, ob dieses Element als ein Alias des Wurzelelements exportiert wird. - - - Toggles the visibility of this item in the form editor. -This is independent of the visibility property in QML. - Schaltet die Sichtbarkeit dieses Elements im Formulareditor um. -Dies ist unabhängig vom Wert der Eigenschaft "visible" in QML. - - - - QmlDesigner::NavigatorWidget - - Navigator - Title of navigator view - Navigator - - - Become last sibling of parent (CTRL + Left). - Nach übergeordnetem Element anordnen (CTRL + Left). - - - Become child of last sibling (CTRL + Right). - Unter letztem gleichrangigen Element anordnen (CTRL + Right). - - - Move down (CTRL + Down). - Nach unten (CTRL + Down). - - - Move up (CTRL + Up). - Nach oben (CTRL + Up). - - - Filter Tree - Baum filtern - - - Show only visible items. - Nur sichtbare Elemente anzeigen. - - - - WidgetPluginManager - - Failed to create instance of file "%1": %2 - Es konnte keine Instanz der Datei "%1" erzeugt werden: %2 - - - Failed to create instance of file "%1". - Es konnte keine Instanz der Datei "%1" erzeugt werden. - - - File "%1" is not a Qt Quick Designer plugin. - Die Datei "%1" ist kein Qt Quick Designer-Plugin. - - - - QmlDesigner::StatesEditorWidget - - States - Title of Editor widget - Status - - - Cannot Create QtQuick View - QtQuick View konnte nicht erzeugt werden - - - StatesEditorWidget: %1 cannot be created. Most likely QtQuick.Controls 1 are not installed. - StatesEditorWidget: %1 konnte nicht erzeugt werden. Wahrscheinlich sind QtQuick.Controls 1 nicht installiert. - - - - QmlDesigner::Internal::DesignModeWidget - - &Workspaces - &Arbeitsbereiche - - - Switch the active workspace. - Den aktiven Arbeitsbereich wechseln. - - - Edit global annotation for current file. - Globale Annotation der aktuellen Datei bearbeiten. - - - - QmlJSEditor - - Show Qt Quick Toolbar - Qt Quick-Werkzeugleiste anzeigen - - - QML - QML - - - QML - SnippetProvider - QML - - - Run Checks - Prüfungen ausführen - - - Ctrl+Shift+C - Ctrl+Shift+C - - - Reformat File - Datei neu formatieren - - - Inspect API for Element Under Cursor - API für Element unter der Einfügemarke untersuchen - - - QML Analysis - QML-Analyse - - - - QtSupport - - No qmake path set - Es ist keine qmake-Pfad gesetzt - - - qmake does not exist or is not executable - Die qmake-Datei existiert nicht oder ist nicht ausführbar - - - Qt version has no name - Die Qt-Version hat keinen Namen - - - <unknown> - <unbekannt> - - - System - System - - - Qt %{Qt:Version} in PATH (%2) - Qt %{Qt:Version} in PATH (%2) - - - Qt %{Qt:Version} (%2) - Qt %{Qt:Version} (%2) - - - Qt version is not properly installed, please run make install - Die Qt-Version ist nicht richtig installiert, führen Sie bitte make install aus - - - Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong? - Der Pfad zu den ausführbaren Dateien der Qt-Installation konnte nicht bestimmt werden, möglicherweise ist der Pfad zu qmake falsch? - - - The default mkspec symlink is broken. - Der symbolische Link zu der Vorgabe-mkspec ist fehlerhaft. - - - ABI detection failed: Make sure to use a matching compiler when building. - Die ABI konnte nicht bestimmt werden. Stellen Sie sicher, dass Sie einen passenden Compiler zum Erstellen verwenden. - - - Non-installed -prefix build - for internal development only. - Nicht installierter Build (-prefix) - nur zur internen Entwicklung. - - - Cannot start "%1": %2 - "%1" konnte nicht gestarted werden: %2 - - - Timeout running "%1" (%2 ms). - Zeitüberschreitung bei Ausführung von "%1" (%2 ms). - - - "%1" crashed. - "%1" ist abgestürzt. - - - qmake "%1" is not an executable. - qmake "%1" ist keine ausführbare Datei. - - - Desktop - Qt Version is meant for the desktop - Desktop - - - No qmlscene installed. - qmlscene ist nicht installiert. - - - Embedded Linux - Qt Version is used for embedded Linux development - Embedded Linux - - - Boot2Qt - Qt version is used for Boot2Qt development - Boot2Qt - - - - TextEditor - - Text Editor - Texteditor - - - Cannot create temporary file "%1": %2. - Die temporäre Datei "%1" konnte nicht erstellt werden: %2. - - - Failed to format: %1. - Konnte nicht formatieren: %1. - - - Cannot read file "%1": %2. - Die Datei "%1" kann nicht gelesen werden: %2. - - - Cannot call %1 or some other error occurred. - %1 konnte nicht aufgerufen werden oder es trat ein anderer Fehler auf. - - - Cannot call %1 or some other error occurred. Timeout reached while formatting file %2. - %1 konnte nicht aufgerufen werden oder es trat ein anderer Fehler auf. Zeitüberschreitung während die Datei %2 formatiert wurde. - - - Error in text formatting: %1 - Fehlerhafte Formatierung: %1 - - - Could not format file %1. - Die Datei %1 konnte nicht formatiert werden. - - - File %1 was closed. - Datei %1 wurde geschlossen. - - - File was modified. - Datei geändert. - - - - QmlJS::Check - - 'int' or 'real' - 'int' oder 'real' - - - - Core::Internal::SystemEditor - - System Editor - Editor des Betriebssystems - - - Could not open URL %1. - URL %1 konnte nicht geöffnet werden. - - - - BuildSettingsPanel - - Build Settings - Build-Einstellungen - - - - DependenciesPanelFactory - - Dependencies - Abhängigkeiten - - - - EditorSettingsPanelFactory - - Editor - Editor - - - - QmlProjectManager::QmlProject - - Kit has no device. - Das Kit hat kein Gerät. - - - Qt version is too old. - Die Qt-Version ist zu alt. - - - Qt version has no qmlscene command. - Die Qt-Version hat kein qmlscene-Kommando. - - - Non-desktop Qt is used with a desktop device. - Eine Qt-Version, die nicht für den Desktop gedacht ist, wird mit einem Desktop-Gerät verwendet. - - - No Qt version set in kit. - Im Kit ist keine Qt-Version gesetzt. - - - - QmlProjectManager::QmlProjectRunConfiguration - - System Environment - Systemumgebung - - - Clean Environment - Saubere Umgebung - - - QML Viewer: - QML-Betrachter: - - - QML Scene - QMLRunConfiguration display name. - QML Scene - - - No qmlscene found. - qmlscene nicht gefunden. - - - No qmlscene binary specified for target device. - Für das Zielgerät ist keine ausführbare qmlscene-Datei angegeben. - - - QML Scene - QML Scene - - - No script file to execute. - Keine Skriptdatei zum Ausführen. - - - - Core::DesignMode - - Design - Design - - - - VcsBase::CleanDialog - - The directory %1 could not be deleted. - Das Verzeichnis %1 konnte nicht gelöscht werden. - - - The file %1 could not be deleted. - Die Datei %1 konnte nicht gelöscht werden. - - - There were errors when cleaning the repository %1: - Beim Bereinigen des Repositorys %1 traten Fehler auf: - - - Delete... - Löschen... - - - Name - Name - - - Repository: %1 - Repository: %1 - - - %n bytes, last modified %1. - - %n byte, zuletzt geändert %1. - %n bytes, zuletzt geändert %1. - - - - Delete - Löschen - - - Do you want to delete %n files? - - Möchten Sie eine Datei löschen? - Möchten Sie %n Dateien löschen? - - - - Cleaning "%1" - Bereinige "%1" - - - - ExtensionSystem::PluginDetailsView - - None - Keine - - - All - Alle - - - %1 (current: "%2") - %1 (aktuell: "%2") - - - - ExtensionSystem::PluginView - - Name - Name - - - Load - Geladen - - - Version - Version - - - Vendor - Anbieter - - - Load on Startup - Beim Start Laden - - - Utilities - Hilfsmittel - - - Plugin is not available on this platform. - Plugin ist auf dieser Plattform nicht verfügbar. - - - %1 (experimental) - %1 (experimentell) - - - Path: %1 -Plugin is not available on this platform. - Pfad: %1 -Plugin ist auf dieser Plattform nicht verfügbar. - - - Path: %1 -Plugin is enabled as dependency of an enabled plugin. - Pfad: %1 -Plugin aktiviert als Abhängigkeit eines aktivierten Plugins. - - - Path: %1 -Plugin is enabled by command line argument. - Pfad: %1 -Plugin durch ein Kommandozeilenargument aktiviert. - - - Path: %1 -Plugin is disabled by command line argument. - Pfad: %1 -Plugin durch ein Kommandozeilenargument deaktiviert. - - - Path: %1 - Pfad: %1 - - - Plugin is required. - Plugin ist erforderlich. - - - Load on startup - Beim Start Laden - - - Enabling Plugins - Plugins aktivieren - - - Enabling -%1 -will also enable the following plugins: - -%2 - %1 -zu aktivieren, aktiviert auch die folgenden Plugins: - -%2 - - - Disabling Plugins - Plugins deaktivieren - - - Disabling -%1 -will also disable the following plugins: - -%2 - %1 -zu deaktivieren, deaktiviert auch die folgenden Plugins: - -%2 - - - - Utils::fileDeletedPrompt - - File Has Been Removed - Die Datei wurde gelöscht - - - The file %1 has been removed from disk. Do you want to save it under a different name, or close the editor? - Die Datei %1 wurde vom Speichermedium gelöscht. Möchten Sie sie unter einem anderen Namen speichern oder den Editor schließen? - - - &Close - &Schließen - - - C&lose All - A&lle schließen - - - Save &as... - Speichern &unter... - - - &Save - &Speichern - - - - Core::CommandMappings - - Command Mappings - Zuordnung von Kommandos - - - Target - Ziel - - - Command - Kommando - - - Reset All - Alle zurücksetzen - - - Reset all to default. - Alle auf Vorgabewert zurücksetzen. - - - Reset - Zurücksetzen - - - Reset to default. - Auf Vorgabe zurücksetzen. - - - Import... - Importieren... - - - Export... - Exportieren... - - - Label - Beschreibung - - - - Core::EditorToolBar - - Drag to drag documents between splits - Ziehen um Dokumente in andere Editor-Ansichten zu verschieben - - - Split - Teilen - - - Remove Split - Teilung entfernen - - - Make Writable - Schreibbar machen - - - File is writable - Die Datei ist schreibbar - - - - ProjectExplorer::BuildConfiguration - - Build Settings - Build-Einstellungen - - - Build directory - Build-Verzeichnis - - - Name of current build - Name der aktuellen Build-Konfiguration - - - Variables in the current build environment - Variablen in der aktuellen Build-Umgebung - - - System Environment - Systemumgebung - - - Clean Environment - Saubere Umgebung - - - The project is currently being parsed. - Das Projekt wird gerade ausgewertet. - - - The project was not parsed successfully. - Das Projekt konnte nicht erfolgreich ausgewertet werden. - - - Build - Build - - - Default - The name of the build configuration created by default for a autotools project. ----------- -The name of the build configuration created by default for a generic project. - Vorgabe - - - Debug - The name of the debug build configuration created by default for a qbs project. ----------- -The name of the debug build configuration created by default for a qmake project. - Debug - - - Release - The name of the release build configuration created by default for a qbs project. ----------- -The name of the release build configuration created by default for a qmake project. - Release - - - Profile - The name of the profile build configuration created by default for a qmake project. - Profile - - - - ProjectExplorer::Internal::CustomWizardPage - - Path: - Pfad: - - - - QmlManager - - <Current File> - <Aktuelle Datei> - - - - QmlJS::Link - - File or directory not found. - Datei oder Verzeichnis nicht gefunden. - - - QML module not found (%1). - -Import paths: -%2 - -For qmake projects, use the QML_IMPORT_PATH variable to add import paths. -For Qbs projects, declare and set a qmlImportPaths property in your product to add import paths. -For qmlproject projects, use the importPaths property to add import paths. -For CMake projects, make sure QML_IMPORT_PATH variable is in CMakeCache.txt. - - QML-Modul nicht gefunden (%1). - -Importpfade: -%2 - -Für qmake-Projekte benutzen Sie die Variable QML_IMPORT_PATH, um Importpfade hinzuzufügen. -Für Qbs-Projekte geben Sie eine qmlImportPaths-Eigenschaft in Ihrem Produkt an, um Importpfade hinzuzufügen. -Für qmlproject-Projekte benutzen Sie die Eigenschaft importPaths, um Importpfade hinzuzufügen. -Für CMake-Projekte stellen Sie sicher, dass die Variable QML_IMPORT_PATH in CMakeCache.txt steht. - - - - Implicit import '%1' of QML module '%2' not found. - -Import paths: -%3 - -For qmake projects, use the QML_IMPORT_PATH variable to add import paths. -For Qbs projects, declare and set a qmlImportPaths property in your product to add import paths. -For qmlproject projects, use the importPaths property to add import paths. -For CMake projects, make sure QML_IMPORT_PATH variable is in CMakeCache.txt. - - Der implizite Import '%1' des QML-Moduls '%2' wurde nicht gefunden. - -Importpfade: -%3 - -Für qmake-Projekte benutzen Sie die Variable QML_IMPORT_PATH, um Importpfade hinzuzufügen. -Für Qbs-Projekte geben Sie eine qmlImportPaths-Eigenschaft in Ihrem Produkt an, um Importpfade hinzuzufügen. -Für qmlproject-Projekte benutzen Sie die Eigenschaft importPaths, um Importpfade hinzuzufügen. -Für CMake-Projekte stellen Sie sicher, dass die Variable QML_IMPORT_PATH in CMakeCache.txt steht. - - - - QML module contains C++ plugins, currently reading type information... - Der QML-Modul enthält C++-Plugins, lese Typinformationen aus... - - - - ImageSpecifics - - Image - Bild - - - Source - Bildquelle - - - Fill mode - Füllmodus - - - Source size - Größe der Bildquelle - - - Horizontal alignment - Horizontal ausrichten - - - Vertical alignment - Vertikal ausrichten - - - Asynchronous - Asynchron - - - Specifies that images on the local filesystem should be loaded asynchronously in a separate thread. - Legt fest, dass Bilder aus dem lokalen Dateisystem asynchron in einem eigenen Thread geladen werden. - - - Auto transform - Automatisch umwandeln - - - Specifies whether the image should automatically apply image transformation metadata such as EXIF orientation. - Legt fest, ob das Bild automatisch Metadaten zur Umwandlung verwenden soll, beispielsweise EXIF-Ausrichtung. - - - Cache - Cache - - - Specifies whether the image should be cached. - Legt fest, ob das Bild zwischengespeichert werden soll. - - - Mipmap - MIP Map - - - Specifies whether the image uses mipmap filtering when scaled or transformed. - Legt fest, ob das Bild MIP-Maps zum Skalieren oder Umwandeln verwendet. - - - Mirror - Spiegeln - - - Specifies whether the image should be horizontally inverted. - Legt fest, ob das Bild horizontal gespiegelt werden soll. - - - Smooth - Glatt - - - Specifies whether the image is smoothly filtered when scaled or transformed. - Legt fest, ob das Bild beim Skalieren oder Umwandeln geglättet wird. - - - - RectangleSpecifics - - Radius - Radius - - - Border - Rahmen - - - Color - Farbe - - - Border Color - Farbe des Rahmens - - - - TextEditSpecifics - - Text Color - Schriftfarbe - - - Selection Color - Farbe der Auswahl - - - Selected Text Color - Farbe von ausgewähltem Text - - - - Utils::LinearProgressWidget - - ... - ... - - - - CodePaster - - <Comment> - <Kommentar> - - - Paste - Einfügen - - - - Help - - Close %1 - Schließe %1 - - - Close All Except %1 - Alle außer %1 schließen - - - - ProjectExplorer::CustomWizard - - Creates a qmake-based test project for which a code snippet can be entered. - Erstellt ein qmake-basiertes Testprojekt, für welches ein Code-Ausschnitt angegeben werden kann. - - - Code Snippet - Code-Ausschnitt - - - Snippet Parameters - Parameter für Ausschnitt - - - Code: - Code: - - - Type: - Typ: - - - Console application - Konsolenanwendung - - - Application bundle (Mac) - Anwendungs-Bundle (Mac) - - - Headless (QtCore) - Kommandozeilenanwendung (QtCore) - - - Gui application (QtCore, QtGui, QtWidgets) - GUI-Anwendung (QtCore, QtGui, QtWidgets) - - - Other Project - Anderes Projekt - - - - BorderImageSpecifics - - Source - Bildquelle - - - Border Image - Border Image - - - Border Left - Linker Rand - - - Border Right - Rechter Rand - - - Border Top - Oberer Rand - - - Border Bottom - Unterer Rand - - - Horizontal Tile mode - Kachelmodus horizontal - - - Vertical Tile mode - Kachelmodus vertikal - - - Mirror - Spiegeln - - - Specifies whether the image should be horizontally inverted. - Legt fest, ob das Bild horizontal gespiegelt werden soll. - - - Smooth - Glatt - - - Specifies whether the image is smoothly filtered when scaled or transformed. - Legt fest, ob das Bild beim Skalieren oder Umwandeln geglättet wird. - - - Cache - Cache - - - Specifies whether the image should be cached. - Legt fest, ob das Bild zwischengespeichert werden soll. - - - Asynchronous - Asynchron - - - Specifies that images on the local filesystem should be loaded asynchronously in a separate thread. - Legt fest, dass Bilder aus dem lokalen Dateisystem asynchron in einem eigenen Thread geladen werden. - - - Source size - Größe der Bildquelle - - - - QmlDesigner::Internal::ModelPrivate - - invalid type - ungültiger Typ - - - - Utils::FancyMainWindow - - Central Widget - Zentrales Widget - - - Reset to Default Layout - Vorgabe wiederherstellen - - - Automatically Hide View Title Bars - Titelleisten von Anzeigen automatisch ausblenden - - - - CodePaster - - Cannot open %1: %2 - Die Datei %1 kann nicht geöffnet werden: %2 - - - %1 does not appear to be a paster file. - Die Datei %1 ist keine Paster-Datei. - - - Error in %1 at %2: %3 - Fehler in %1 bei %2: %3 - - - Please configure a path. - Bitte geben Sie einen Pfad an. - - - Pasted: %1 - Ausschnitt: %1 - - - Fileshare - Dateibasiert - - - %1 - Configuration Error - %1 - Konfigurationsfehler - - - - ProjectExplorer::Internal::SessionNameInputDialog - - Enter the name of the session: - Geben Sie den Namen der Sitzung an: - - - - TextEditor::Internal::TextEditorPlugin - - Ctrl+Space - Ctrl+Space - - - Meta+Space - Meta+Space - - - Trigger Completion - Code-Vervollständigung auslösen - - - Trigger Refactoring Action - Refactoring-Aktion auslösen - - - Alt+Return - Alt+Return - - - Show Context Menu - Kontextmenü anzeigen - - - Text - SnippetProvider - Text - - - Selected text within the current document. - Ausgewählter Text im aktuellen Dokument. - - - Line number of the text cursor position in current document (starts with 1). - Zeilennummer der Cursorposition des aktuellen Dokuments (beginnend bei 1). - - - Column number of the text cursor position in current document (starts with 0). - Spaltennummer der Cursorposition des aktuellen Dokuments (beginnend bei 0). - - - Number of lines visible in current document. - Anzahl der sichtbaren Zeilen des aktuellen Dokuments. - - - Number of columns visible in current document. - Anzahl der sichtbaren Spalten des aktuellen Dokuments. - - - Current document's font size in points. - Font-Größe des aktuellen Dokuments. - - - - Debugger Adapter start failed Der Start des Adapters schlug fehl @@ -10777,10 +4115,6 @@ Für CMake-Projekte stellen Sie sicher, dass die Variable QML_IMPORT_PATH in CMa Pdb I/O Error Pdb Eingabe/Ausgabefehler - - Unable to start pdb "%1": %2 - Der pdb-Debugger "%1" kann nicht ausgeführt werden: %2 - The Pdb process failed to start. Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. Der Start des Pdb-Prozesses schlug fehl. Entweder fehlt die ausführbare Datei "%1" oder die Berechtigungen sind nicht ausreichend. @@ -10801,638 +4135,6 @@ Für CMake-Projekte stellen Sie sicher, dass die Variable QML_IMPORT_PATH in CMa An unknown error in the Pdb process occurred. Im Pdb-Prozess trat ein unbekannter Fehler auf. - - - emptyPane - - None or multiple items selected. - Keines oder mehrere Elemente ausgewählt. - - - - QmlDesigner::FormEditorWidget - - No snapping. - Keine Ausrichtung. - - - Snap to parent or sibling items and generate anchors. - An übergeordnetem Element oder gleichrangigen Elementen ausrichten und Anker setzen. - - - Snap to parent or sibling items but do not generate anchors. - An übergeordnetem Element oder gleichrangigen Elementen ausrichten, aber keine Anker setzen. - - - Show bounding rectangles and stripes for empty items. - Rahmen und Schraffur für leere Elemente anzeigen. - - - Override Width - Breite überschreiben - - - Override width of root item. - Breite des Wurzelelements überschreiben. - - - Override Height - Höhe überschreiben - - - Override height of root item. - Höhe des Wurzelelements überschreiben. - - - Zoom in - Vergrößern - - - Zoom out - Verkleinern - - - Zoom screen to fit all content - Vergrößerung an gesamten Inhalt anpassen - - - Zoom screen to fit current selection - Vergrößerung an Auswahl anpassen - - - Reset View - Ansicht zurücksetzen - - - Export Current QML File as Image - Aktuelle QML-Datei als Bild exportieren - - - PNG (*.png);;JPG (*.jpg) - PNG (*.png);;JPG (*.jpg) - - - - InvalidIdException - - Only alphanumeric characters and underscore allowed. -Ids must begin with a lowercase letter. - Es sind nur alphanumerische Zeichen und Unterstriche zulässig. -IDs müssen außerdem mit einem Kleinbuchstaben beginnen. - - - Ids have to be unique. - IDs müssen eindeutig sein. - - - Invalid Id: %1 -%2 - Ungültige ID: %1 -%2 - - - - QmlDesigner::InvalidArgumentException - - Failed to create item of type %1 - Es konnte kein Element des Typs %1 erzeugt werden - - - - CppTools::QuickFix - - Rewrite Using %1 - Unter Verwendung von %1 umschreiben - - - Swap Operands - Operanden vertauschen - - - Rewrite Condition Using || - Bedingung unter Verwendung des ||-Operators umschreiben - - - Split Declaration - Deklaration aufspalten - - - Add Curly Braces - Geschweifte Klammern hinzufügen - - - Move Declaration out of Condition - Deklaration aus Bedingung entfernen - - - Split if Statement - if-Anweisung aufspalten - - - Convert to String Literal - In Zeichenkettenliteral umwandeln - - - Convert to Character Literal and Enclose in QLatin1Char(...) - In Zeichenliteral umwandeln und in QLatin1Char(...) einschließen - - - Convert to Character Literal - In Zeichenliteral umwandeln - - - Mark as Translatable - Zur Übersetzung vorsehen - - - Convert to Binary - In Binärdarstellung umwandeln - - - Add forward declaration for %1 - Forward declaration für %1 hinzufügen - - - Escape String Literal as UTF-8 - Zeichenkette als UTF-8-Escape-Sequenzen darstellen - - - Unescape String Literal as UTF-8 - Zeichenkette ohne UTF-8-Escape-Sequenzen darstellen - - - Convert connect() to Qt 5 Style - connect() in Qt5-Stil umwandeln - - - Add Local Declaration - Lokale Deklaration hinzufügen - - - Convert to Camel Case - In Camel-Case umwandeln - - - Add #include %1 - #include %1 hinzufügen - - - Switch with Previous Parameter - Mit vorangehendem Parameter tauschen - - - Switch with Next Parameter - Mit nächstem Parameter tauschen - - - Reformat to "%1" - In "%1" umformatieren - - - Reformat Pointers or References - Zeiger/Referenzen umformatieren - - - Extract Constant as Function Parameter - Konstante als Funktionsparameter extrahieren - - - Assign to Local Variable - Lokaler Variable zuweisen - - - Optimize for-Loop - for-Schleife optimieren - - - Convert to Objective-C String Literal - In Objective-C-Zeichenkettenliteral umwandeln - - - Enclose in %1(...) - In %1(...) einschließen - - - Convert to Hexadecimal - In Hexadezimaldarstellung umwandeln - - - Convert to Octal - In Oktaldarstellung umwandeln - - - Convert to Decimal - In Dezimaldarstellung umwandeln - - - Complete Switch Statement - Switch-Anweisung vervollständigen - - - - ContextPaneTextWidget - - Text - Text - - - Style - Stil - - - ... - ... - - - - ContextPaneWidgetBorderImage - - 10 x 10 - 10 x 10 - - - Stretch vertically. Scales the image to fit to the available area. - Vertikal anpassen. Skaliert das Bild, so dass es die zur Verfügung stehende Fläche ausfüllt. - - - Repeat vertically. Tiles the image until there is no more space. May crop the last image. - Vertikal mehrfach anordnen. Bild mehrfach untereinander anordnen, bis kein Platz mehr vorhanden ist. Das letzte Bild wird unter Umständen beschnitten. - - - Round. Like Repeat, but scales the images down to ensure that the last image is not cropped. - Runden. Wie 'Vertikal mehrfach anordnen' mit zusätzlicher Skalierung zur Vermeidung des Beschneidens des letzten Bildes. - - - Repeat horizontally. Tiles the image until there is no more space. May crop the last image. - Horizontal mehrfach anordnen. Bild mehrfach nebeneinander anordnen, bis kein Platz mehr vorhanden ist. Das letzte Bild wird unter Umständen beschnitten. - - - Stretch horizontally. Scales the image to fit to the available area. - Horizontal anpassen. Skaliert das Bild, so dass es die zur Verfügung stehende Fläche ausfüllt. - - - - ContextPaneWidgetImage - - 10 x 10 - 10 x 10 - - - The image is scaled to fit. - Das Bild ist skaliert, um die Fläche auszufüllen. - - - The image is stretched horizontally and tiled vertically. - Das Bild ist horizontal gestreckt und vertikal mehrfach untereinander angeordnet. - - - The image is stretched vertically and tiled horizontally. - Das Bild ist vertikal gestreckt und mehrfach nebeneinander angeordnet. - - - The image is duplicated horizontally and vertically. - Das Bild ist horizontal und vertikal mehrfach nebeneinander angeordnet. - - - The image is scaled uniformly to fit without cropping. - Das Bild ist gleichmäßig skaliert, um die Fläche auszufüllen ohne Überstehendes abzuschneiden. - - - The image is scaled uniformly to fill, cropping if necessary. - Das Bild ist gleichmäßig skaliert, Überstehendes wird abgeschnitten sofern nötig. - - - - ContextPaneWidgetRectangle - - Gradient - Gradient - - - Color - Farbe - - - ... - ... - - - Border - Rahmen - - - - EasingContextPane - - Dialog - Dialog - - - Easing - Easing - - - Subtype - Subtype - - - Duration - Dauer - - - INVALID - Ungültig - - - ms - ms - - - Amplitude - Amplitude - - - Period - Periode - - - Overshoot - Overshoot - - - Play simulation. - Simulation abspielen. - - - Type of easing curve. - Typ der Easing-Kurve. - - - Acceleration or deceleration of easing curve. - Beschleunigung/Verlangsamung der Easing-Kurve. - - - Duration of animation. - Dauer der Animation. - - - Amplitude of elastic and bounce easing curves. - Amplitude für Easing-Kurven des Typs Elastic und Bounce. - - - Easing period of an elastic curve. - Easing-Periode für Kurven des Typs Elastic. - - - Easing overshoot for a back curve. - Easing-Overshoot für Kurven des Typs Back. - - - - ClassView::Internal::NavigationWidget - - Show Subprojects - Untergeordnete Projekte anzeigen - - - - ImageViewer - - Image Viewer - Bildbetrachter - - - Zoom In - Vergrößern - - - Zoom Out - Verkleinern - - - Show Background - Hintergrund anzeigen - - - Show Outline - Umriss anzeigen - - - Fit to Screen - An Bildschirm anpassen - - - Original Size - Originalgröße - - - Export as Image - Als Bild exportieren - - - Export Images of Multiple Sizes - Bilder in mehreren Größen exportieren - - - - QmlEditorWidgets::ContextPaneWidget - - Hides this toolbar. - Schließt diese Werkzeugleiste. - - - Pin Toolbar - Werkzeugleiste verankern - - - Show Always - Stets anzeigen - - - Unpins the toolbar and moves it to the default position. - Löst die Verankerung und verschiebt die Werkzeugleiste an die Vorgabeposition. - - - Hides this toolbar. This toolbar can be permanently disabled in the options page or in the context menu. - Schließt diese Werkzeugleiste. Sie kann in den Einstellung oder durch das Kontextmenü dauerhaft abgeschaltet werden. - - - - QmlEditorWidgets::ContextPaneWidgetImage - - Double click for preview. - Doppelklick zur Vorschau. - - - - QmlEditorWidgets::FileWidget - - Open File - Datei öffnen - - - - Utils::SynchronousProcess - - The command "%1" finished successfully. - Das Kommando "%1" wurde beendet. - - - The command "%1" terminated with exit code %2. - Das Kommando "%1" wurde beendet, Rückgabewert %2. - - - The command "%1" terminated abnormally. - Das Kommando "%1" wurde unnormal beendet. - - - The command "%1" could not be started. - Das Kommando "%1" konnte nicht gestartet werden. - - - The command "%1" did not respond within the timeout limit (%2 s). - Das Kommando "%1" konnte nicht innerhalb des Zeitlimits (%2 s) beendet werden. - - - Process not Responding - Keine Antwort - - - The process is not responding. - Der Prozess antwortet nicht. - - - The process "%1" is not responding. - Der Prozess "%1" antwortet nicht. - - - Would you like to terminate it? - Möchten Sie abbrechen? - - - - ClassView::Internal::NavigationWidgetFactory - - Class View - Klassenanzeige - - - - Core::NavigationWidget - - Activate %1 View - Anzeige "%1" aktivieren - - - - CodePaster - - Checking connection - Prüfe Verbindung - - - Connecting to %1... - Verbinde zu %1... - - - - CppEditor::Internal::CppTypeHierarchyWidget - - No type hierarchy available - Keine Klassenhierarchie verfügbar - - - Bases - Basisklassen - - - Derived - Abgeleitet - - - - CppEditor::Internal::CppTypeHierarchyFactory - - Type Hierarchy - Klassenhierarchie - - - - CppTools::Internal::SymbolsFindFilter - - Searching for Symbol - Suche nach Symbol - - - C++ Symbols: - C++-Symbole: - - - Classes - Klassen - - - Functions - Funktionen - - - Enums - Enumerationen - - - Declarations - Deklarationen - - - Scope: %1 -Types: %2 -Flags: %3 - Bereich: %1 -Typen: %2 -Flags: %3 - - - All - Alle - - - Projects - Projekte - - - - CppTools::Internal::SymbolsFindFilterConfigWidget - - Types: - Typen: - - - Classes - Klassen - - - Functions - Funktionen - - - Enums - Enumerationen - - - Declarations - Deklarationen - - - Projects only - Nur Projekte - - - All files - Alle Dateien - - - - Debugger Failed to Start the Debugger Der Debugger konnte nicht gestartet werden @@ -11441,10 +4143,6 @@ Flags: %3 There is no CDB executable specified. Es wurde keine ausführbare Datei für CDB angegeben. - - Interrupting is not possible in remote sessions. - Das Unterbrechen ist bei entferntem Debuggen nicht möglich. - Debugger encountered an exception: %1 Der Debugger stellte einen Ausnahmefehler fest: %1 @@ -11477,6 +4175,17 @@ Wenn Sie %2 aus den Quelltexten erstellen und eine ausführbare CDB-Datei mit ei Switching to main thread... Wechsel zu Haupt-Thread... + + The installed %1 is missing debug information files. +Locals and Expression might not be able to display all Qt types in a human readable format. + +Install the "Qt Debug Information Files" Package from the Maintenance Tool for this Qt installation to get all relevant symbols for the debugger. + + + + Missing Qt Debug Information + + Value %1 obtained from evaluating the condition of breakpoint %2, stopping. Wert %1 von Bedingung des bedingten Haltepunkts %2 erhalten, stoppe. @@ -11485,9 +4194,6 @@ Wenn Sie %2 aus den Quelltexten erstellen und eine ausführbare CDB-Datei mit ei Value 0 obtained from evaluating the condition of breakpoint %1, continuing. Wert 0 von Bedingung des bedingten Haltepunkts %1 erhalten, setze fort. - - - Debugger Select Local Cache Folder Wählen Sie ein lokales Cache-Verzeichnis aus @@ -11508,9 +4214,6 @@ Wenn Sie %2 aus den Quelltexten erstellen und eine ausführbare CDB-Datei mit ei Cannot Create Verzeichnis kann nicht angelegt werden - - - Debugger Internal Name Interner Name @@ -11531,319 +4234,6 @@ Wenn Sie %2 aus den Quelltexten erstellen und eine ausführbare CDB-Datei mit ei Open File "%1" Datei "%1" öffnen - - - Git - - Set the environment variable HOME to "%1" -(%2). -This causes Git to look for the SSH-keys in that location -instead of its installation directory when run outside git bash. - Setze die Umgebungsvariable HOME auf "%1" -(%2). -Git wird an dieser Stelle statt in seinem Installationsverzeichnis nach SSH-Schlüsseln suchen, -wenn es außerhalb von git bash aufgerufen wird. - - - not currently set - momentan nicht gesetzt - - - currently set to "%1" - momentaner Wert "%1" - - - Git Repository Browser Command - Ausführbare Datei des Git-Repository-Browsers - - - Git - Git - - - - Help - - Copy Full Path to Clipboard - Vollständigen Pfad in die Zwischenablage kopieren - - - - ProjectExplorer::Internal::BuildStepListWidget - - %1 Steps - %1 is the name returned by BuildStepList::displayName - Schritte zum %1 - - - No %1 Steps - Keine Schritte für %1 - - - Add %1 Step - Schritt für %1 hinzufügen - - - Move Up - Nach oben - - - Disable - Deaktivieren - - - Move Down - Nach unten - - - Remove Item - Element löschen - - - Enable - Aktivieren - - - Removing Step failed - Das Entfernen des Build-Schritts schlug fehl - - - Cannot remove build step while building - Während des Build-Vorgangs ist das Entfernen eines Build-Schritts nicht möglich - - - No Build Steps - Keine Build-Schritte - - - - ProjectExplorer::Internal::CopyTaskHandler - - error: - Task is of type: error - Fehler: - - - warning: - Task is of type: warning - Warnung: - - - - ProjectExplorer::DeployConfiguration - - Deploy locally - Default DeployConfiguration display name - Lokales Deployment - - - Deploy Configuration - Display name of the default deploy configuration - Deployment-Konfiguration - - - - ProjectExplorer::RunControl - - Unexpected run control state %1 when worker %2 started. - Unerwarteter Run Control-Zustand %1 beim Start von Worker %2. - - - Application Still Running - Anwendung läuft noch - - - Force &Quit - &Beenden erzwingen - - - &Keep Running - &Fortsetzen - - - %1 crashed. - %1 ist abgestürzt. - - - %2 exited with code %1 - %2 wurde mit dem Rückgabewert %1 beendet - - - Starting %1 %2... - Starte %1 %2... - - - No executable specified. - Es wurde keine ausführbare Datei angegeben. - - - <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> läuft noch.<center/><center>Soll es beendet werden?</center></body></html> - - - PID %1 - PID %1 - - - Invalid - Ungültig - - - - ProjectExplorer::Internal::ShowInEditorTaskHandler - - Show in Editor - In Editor anzeigen - - - Show task location in an editor. - Fundstelle in Editor anzeigen. - - - - ProjectExplorer::Internal::ShowOutputTaskHandler - - Show &Output - &Ausgabe anzeigen - - - Show output generating this issue. - Zum Problem gehörende Ausgabe anzeigen. - - - O - O - - - - ProjectExplorer::Internal::TaskWindow - - Issues - Probleme - - - Show Warnings - Warnungen anzeigen - - - Filter by categories - Nach Kategorie filtern - - - - ProjectExplorer::Internal::VcsAnnotateTaskHandler - - &Annotate - &Annotation - - - Annotate using version control system. - Annotation durch Versionskontrollsystem. - - - - QmlJSEditor - - Move Component into Separate File - Verschiebe Komponente in separate Datei - - - Show All Bindings - Alle Bindings anzeigen - - - Split Initializer - Initalisierung aufspalten - - - - TaskList::Internal::StopMonitoringHandler - - Stop Monitoring - Überwachung beenden - - - Stop monitoring task files. - Überwachung von Aufgabendateien beenden. - - - - TextEditor::Internal::OutlineWidgetStack - - No outline available - Überblick nicht verfügbar - - - Synchronize with Editor - Mit Editor synchronisieren - - - Filter tree - Baum filtern - - - Sort Alphabetically - Alphabetisch sortieren - - - - TextEditor::Internal::OutlineFactory - - Outline - Überblick - - - - Utils::FileNameValidatingLineEdit - - Name is empty. - Der Dateiname ist leer. - - - Name contains white space. - Der Name enthält Leerzeichen. - - - Invalid character "%1". - Ungültiges Zeichen "%1". - - - Invalid characters "%1". - Ungültige Zeichen "%1". - - - Name matches MS Windows device (CON, AUX, PRN, NUL, COM1, COM2, ..., COM9, LPT1, LPT2, ..., LPT9) - Der Name entspricht einem MS Windows-Gerätenamen (CON, AUX, PRN, NUL, COM1, COM2, ..., COM9, LPT1, LPT2, ..., LPT9) - - - File extension %1 is required: - Dateisuffix %1 ist erforderlich: - - - File extensions %1 are required: - Einer der Dateisuffixe %1 ist erforderlich: - - - - QmlJS::Bind - - Hit maximal recursion depth in AST visit - Maximale Rekursionstiefe beim Durchlaufen des Syntaxbaums erreicht - - - package import requires a version number - Package-Import erfordert eine Versionsnummer - - - - Core::Internal::CommandComboBox - - Activate %1 View - Anzeige "%1" aktivieren - - - - Debugger Clear Contents Inhalt löschen @@ -11856,16 +4246,10 @@ wenn es außerhalb von git bash aufgerufen wird. Reload Debugging Helpers Ausgabe-Hilfsbibliothek neu laden - - - Debugger Type Ctrl-<Return> to execute a line. Sie können eine Zeile mittels <Strg+Return> ausführen. - - - Debugger Debugger &Log Debugger-&Log @@ -11896,397 +4280,6 @@ Sie werden möglicherweise gebeten, den Inhalt dieses Logs mitzuteilen, wenn Sie Log File Logdatei - - - QmlJSEditor - - Property assignments for %1: - Eigenschaftszuweisungen für %1: - - - Invalid component name - Der Name Komponente ist ungültig - - - Invalid path - Ungültiger Pfad - - - Component name: - Komponentenname: - - - Path: - Pfad: - - - Property assignments for - Eigenschaftszuweisungen für - - - Component Name - Komponentenname - - - ui.qml file - ui.qml-Datei - - - - ProjectExplorer::BuildableHelperLibrary - - Cannot start process: %1 - Der Prozess :"%1" konnte nicht gestartet werden - - - Timeout after %1 s. - Zeitüberschreitung nach %1 s. - - - The process crashed. - Der Prozess ist abgestürzt. - - - The process returned exit code %1: -%2 - Der Prozess wurde beendet, Rückgabewert %1: -%2 - - - Error running "%1" in %2: %3 - Fehler bei der Ausführung von "%1" in %2: %3 - - - Building helper "%1" in %2 - - Erstelle Ausgabe-Hilfsbibliothek "%1" in %2 - - - - Running %1 %2... - - Führe %1 %2 aus... - - - - Running %1 %2 ... - - Führe %1 %2 aus... - - - - %1 not found in PATH - - %1 konnte im Pfad (PATH) nicht gefunden werden - - - - - QmlJSEditor - - QML/JS Usages: - QML/JS Referenzen: - - - Searching for Usages - Suche nach Referenzen - - - - CppEditor::InsertDefOperation - - Add Definition in %1 - Definition in %1 hinzufügen - - - Add Definition Here - Definition hier einfügen - - - Add Definition Inside Class - Definition innerhalb der Klasse erstellen - - - Add Definition Outside Class - Definition außerhalb der Klasse erstellen - - - - CppEditor::InsertDeclOperation - - Add %1 Declaration - Deklaration für %1 hinzufügen - - - - Macros::Internal::MacroOptionsWidget - - Preferences - Einstellungen - - - Name - Name - - - Description - Beschreibung - - - Shortcut - Tastenkombination - - - Macro - Makro - - - Description: - Beschreibung: - - - Remove - Löschen - - - Macros - Makros - - - - Macros::Internal::SaveDialog - - Name: - Name: - - - Description: - Beschreibung: - - - Save Macro - Makro speichern - - - - QmlJS::TypeDescriptionReader - - Errors while loading qmltypes from %1: -%2 - Fehler beim Laden der qmltypes von %1: -%2 - - - Warnings while loading qmltypes from %1: -%2 - Warnungen beim Laden der qmltypes von %1: -%2 - - - Could not parse document. - Das Dokument konnte nicht ausgewertet werden. - - - Expected a single import. - Es wird ein einzelner Import erwartet. - - - Expected import of QtQuick.tooling. - Import von QtQuick.tooling erwartet. - - - Expected document to contain a single object definition. - Das Dokument sollte eine einzige Objektdefinition enthalten. - - - Expected document to contain a Module {} member. - Das Dokument sollte ein Modul-{}-Member enthalten. - - - Major version different from 1 not supported. - Andere Hauptversionen als 1 werden nicht unterstützt. - - - Expected dependency definitions - Abhängigkeitsdefinitionen erwartet - - - Component definition is missing a name binding. - Bei der Komponentendefinition fehlt ein Namens-Binding. - - - ModuleApi definition has no or invalid version binding. - Die ModuleApi-Definition hat kein oder ein ungültiges version-Binding. - - - Method or signal is missing a name script binding. - Bei der Methode oder dem Signal fehlt ein Namens-Skript-Binding. - - - Expected script binding. - Es wird ein Skript-Binding erwartet. - - - Property object is missing a name or type script binding. - Bei dem Eigenschaftsobjekt fehlt ein Namens- oder Typ-Skript-Binding. - - - Expected string after colon. - Nach dem Doppelpunkt wird eine Zeichenkette erwartet. - - - Expected boolean after colon. - Nach dem Doppelpunkt wird ein Boolescher Wert erwartet. - - - Expected true or false after colon. - Nach dem Doppelpunkt wird true oder false erwartet. - - - Expected numeric literal after colon. - Nach dem Doppelpunkt wird ein Zahlenliteral erwartet. - - - Expected integer after colon. - Nach dem Doppelpunkt wird ein ganzzahliger Wert erwartet. - - - Expected array of strings after colon. - Nach dem Doppelpunkt wird ein Feld von Zeichenketten erwartet. - - - Expected array literal with only string literal members. - Es wird ein nur aus Zeichenketten bestehendes Feldliteral erwartet. - - - Expected string literal to contain 'Package/Name major.minor' or 'Name major.minor'. - Das Zeichenkettenliteral sollte 'Package/Name major.minor' oder 'Name major.minor' enthalten./ - - - Expected array of numbers after colon. - Nach dem Doppelpunkt wird ein aus Zahlen bestehendes Feld erwartet. - - - Expected array literal with only number literal members. - Es wird ein nur aus Zahlenliteralen bestehendes Feldliteral erwartet. - - - Meta object revision without matching export. - Metaobjekt-Revision ohne entsprechenden Export. - - - Expected integer. - Ganzzahliger Wert erwartet. - - - Expected object literal after colon. - Nach dem Doppelpunkt wird ein Objektliteral erwartet. - - - Expected expression after colon. - Nach dem Doppelpunkt wird ein Ausdruck erwartet. - - - Expected strings as enum keys. - Als enum-Schlüssel werden Zeichenketten erwartet. - - - Expected either array or object literal as enum definition. - Als enum-Definition wird entweder ein Array oder ein Objektliteral erwartet. - - - - Utils::EnvironmentModel - - <VARIABLE> - <Variable> - - - - Utils::QtcProcess - - Error in command line. - Fehler in Kommandozeile. - - - Invalid command - Ungültiges Kommando - - - - Core::VcsManager - - %1 repository was detected but %1 is not configured. - Ein Repository des Versionskontrollsystems %1 wurde gefunden, aber %1 ist noch nicht konfiguriert. - - - Version Control - Versionskontrolle - - - Would you like to remove - %1 -from the version control system (%2)? -Note: This might remove the local file. - Möchten Sie die Datei - %1 -aus der Versionskontrolle (%2) entfernen? -Hinweis: Unter Umständen wird die lokale Datei gelöscht. - - - Add to Version Control - Unter Versionsverwaltung stellen - - - Add the file -%1 -to version control (%2)? - Datei -%1 -unter Versionsverwaltung (%2) stellen? - - - Add the files -%1 -to version control (%2)? - Dateien -%1 -unter Versionsverwaltung (%2) stellen? - - - Could not add the file -%1 -to version control (%2) - - Die Datei -%1 -konnte nicht unter Versionsverwaltung (%2) gestellt werden - - - - Could not add the following files to version control (%1) -%2 - Die folgenden Dateien konnten nicht unter Versionsverwaltung (%1) gestellt werden: -%2 - - - Adding to Version Control Failed - Das Hinzufügen der Dateien zur Versionsverwaltung schlug fehl - - - - CppEditor::Internal::CppOutlineTreeView - - Expand All - Alles aufklappen - - - Collapse All - Alle einklappen - - - - Debugger <html><body><p>The remote CDB needs to load the matching %1 CDB extension (<code>%2</code> or <code>%3</code>, respectively).</p><p>Copy it onto the remote machine and set the environment variable <code>%4</code> to point to its folder.</p><p>Launch the remote CDB as <code>%5 &lt;executable&gt;</code> to use TCP/IP as communication protocol.</p><p>Enter the connection parameters as:</p><pre>%6</pre></body></html> <html><body><p>Der entfernte CDB muss die passende CDB-Erweiterungsbibliothek von %1 (<code>%2</code> beziehungsweise <code>%3</code>) laden.</p><p>Kopieren Sie sie auf den entfernten Rechner und setzen Sie die Umgebungsvariable <code>%4</code> auf das Verzeichnis.</p><p>Starten Sie den entfernten CDB als <code>%5 &lt;ausführbare Datei&gt;</code> um TCP/IP als Kommunikationsprotokoll zu verwenden.</p><p>Geben Sie die Verbindungsparameter wie folgt an:</p><pre>%6</pre></body></html> @@ -12299,9 +4292,6 @@ konnte nicht unter Versionsverwaltung (%2) gestellt werden &Connection: &Verbindung: - - - Debugger Process %1 %1: PID @@ -12596,10 +4586,26 @@ konnte nicht unter Versionsverwaltung (%2) gestellt werden Ctrl+F6 Ctrl+F6 + + Ctrl+F8 + Ctrl+F8 + + + Ctrl+F9 + Ctrl+F9 + Start debugging of startup project Projekt starten und debuggen + + Start Debugging of Startup Project + + + + Reload debugging helpers skipped as no engine is running. + + Edit Breakpoint... Haltepunkt bearbeiten... @@ -12616,9 +4622,6 @@ konnte nicht unter Versionsverwaltung (%2) gestellt werden Show Application on Top Anwendung im Vordergrund zeigen - - - Debugger Memory at Register "%1" (0x%2) Speicher bei Register "%1" (0x%2) @@ -12631,9 +4634,6 @@ konnte nicht unter Versionsverwaltung (%2) gestellt werden Memory at 0x%1 Speicher bei 0x%1 - - - Debugger No application output received in time In der gegebenen Zeit wurde keine Ausgabe der Anwendung empfangen @@ -12684,1218 +4684,6 @@ Soll es noch einmal versucht werden? QML Debugger disconnected. QML-Debugger getrennt. - - - Git - - Use the patience algorithm for calculating the differences. - "patience diff"-Algorithmus verwenden. - - - Patience - Patience - - - Ignore whitespace only changes. - Änderungen der Leerzeichen ignorieren. - - - Ignore Whitespace - Leerzeichen ignorieren - - - Hide the date of a change from the output. - Datum der Änderung in Ausgabe nicht anzeigen. - - - Omit Date - Datum weglassen - - - No Move Detection - Keine verschobenen Daten erkennen - - - Detect Moves Within File - Innerhalb der Datei verschobene Daten erkennen - - - Detect Moves Between Files - Zwischen Dateien verschobene Daten erkennen - - - Detect Moves and Copies Between Files - Zwischen Dateien verschobene oder kopierte Daten erkennen - - - Move detection - Verschobene Daten erkennen - - - - GLSLEditor - - GLSL - GLSL - - - - Macros::Internal::MacroLocatorFilter - - Text Editing Macros - Textbearbeitungs-Makros - - - - Macros::Internal::MacrosPlugin - - Text Editing &Macros - Textbearbeitungs-&Makros - - - Record Macro - Makroaufnahme - - - Stop Recording Macro - Makroaufnahme anhalten - - - Ctrl+[ - Ctrl+[ - - - Alt+[ - Alt+[ - - - Ctrl+] - Ctrl+] - - - Alt+] - Alt+] - - - Play Last Macro - Letztes Makro abspielen - - - Alt+R - Alt+R - - - Meta+R - Meta+R - - - Save Last Macro - Letztes Makro speichern - - - - ProjectExplorer::ProjectsMode - - Projects - Projekte - - - - QmlDesigner::ItemLibraryWidget - - Library - Title of library view - Bibliothek - - - QML Types - Title of library QML types view - QML-Typen - - - Assets - Title of library assets view - Assets - - - QML Imports - Title of QML imports view - QML-Importe - - - Add New Assets... - Neue Assets hinzufügen... - - - Add new assets to project. - Neue Assets zum Projekt hinzufügen. - - - 3D Assets - 3D-Assets - - - Add Assets - Assets hinzufügen - - - <Filter> - Library search input hint text - <Filter> - - - Add import %1 - Import %1 hinzufügen - - - All Files (%1) - Alle Dateien (%1) - - - Failed to Add Files - Dateien konnten nicht hinzugefügt werden - - - Could not add %1 to project. - %1 konnte nicht zum Projekt hinzugefügt werden. - - - - QmlDesigner::StatesEditorModel - - base state - Implicit default state - Grundzustand - - - Invalid state name. - Ungültiger Name des Zustands. - - - The empty string as a name is reserved for the base state. - Eine leere Zeichenkette ist als Name des Basiszustands reserviert. - - - Name already used in another state. - Der Name wird bereits von einem anderen Zustand verwendet. - - - - QmlDesigner::StatesEditorView - - States - Der Plural von "Status" ist "Status": https://de.wiktionary.org/wiki/Status - States - - - base state - Grundzustand - - - - QmlJSEditor - - Expand All - Alles aufklappen - - - Collapse All - Alle einklappen - - - - QmlJSTools - - QML Functions - QML-Funktionen - - - - TextEditor::Internal::SnippetsTableModel - - Error - Fehler - - - Not a valid trigger. - Kein gültiger Auslöser. - - - Trigger - Auslöser - - - Trigger Variant - Variante - - - Error reverting snippet. - Fehler beim Zurücksetzen des Snippets. - - - - Bazaar - - General Information - Allgemeine Informationen - - - Branch: - Branch: - - - Local commit - Lokaler Commit - - - Commit Information - Informationen zu Commit - - - Author: - Autor: - - - Email: - E-Mail-Adresse: - - - Fixed bugs: - Behobene Bugs: - - - Performs a local commit in a bound branch. -Local commits are not pushed to the master branch until a normal commit is performed. - Führt einen lokalen Commit in einem gebundenen Branch aus. -Lokale Commits werden nicht zum Master-Branch gepusht, bis ein normaler Commit erfolgt. - - - - Bazaar - - Configuration - Konfiguration - - - Command: - Kommando: - - - User - Nutzer - - - Username to use by default on commit. - Nutzername für Commit. - - - Default username: - Vorgabe für Nutzernamen: - - - Email to use by default on commit. - E-Mail-Adresse für Commit. - - - Default email: - Vorgabe-E-Mail: - - - Miscellaneous - Sonstige Einstellungen - - - Log count: - Log-Anzeige beschränken auf: - - - Timeout: - Zeitlimit: - - - s - s - - - The number of recent commit logs to show. Choose 0 to see all entries. - Zahl der anzuzeigenden Logeinträge, 0 für unbegrenzt. - - - - Bazaar - - Dialog - Dialog - - - Local filesystem: - Dateisystem: - - - Options - Einstellungen - - - Remember specified location as default - Obige Einstellung als Vorgabe übernehmen - - - Overwrite - Überschreiben - - - Use existing directory - Vorhandenes Verzeichnis verwenden - - - Create prefix - Präfix erzeugen - - - Local - Lokale Variable - - - Pull Source - Quelle für Pull-Operation - - - Push Destination - Ziel für Push-Operation - - - Branch Location - Branch - - - Default location - Vorgabe - - - Specify URL: - URL: - - - 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. - Normalerweise schlägt eine push-Operation fehl, wenn das Zielverzeichnis vorhanden ist, aber kein Versionskontrollverzeichnis hat. -Die Einstellung gestattet es, unter diesen Umständen fortzusetzen. - - - For example: 'https://[user[:pass]@]host[:port]/[path]'. - Zum Beispiel: 'https://[user[:pass]@]host[:port]/[path]'. - - - Ignores differences between branches and overwrites -unconditionally. - Berücksichtigt die Unterschiede zwischen Branches nicht und -überschreibt immer. - - - Creates the path leading up to the branch if it does not already exist. - Legt einen Pfad bis zum Branch an, sofern er nicht existiert. - - - Performs a local pull in a bound branch. -Local pulls are not applied to the master branch. - Führt eine lokale Pull-Operation in einem gebundenem Branch aus. -Lokale Pull-Operationen werden nicht auf den Master-Branch angewandt. - - - Revert - Rückgängig machen - - - Specify a revision other than the default? - Möchten Sie eine Revision angeben? - - - - Core::ExternalToolConfig - - Add - Hinzufügen - - - Remove - Löschen - - - Reset - Zurücksetzen - - - Description: - Beschreibung: - - - Executable: - Ausführbare Datei: - - - Arguments: - Argumente: - - - Working directory: - Arbeitsverzeichnis: - - - Output: - Ausgabe: - - - Ignore - Unterdrücken - - - Error output: - Fehlerausgabe: - - - Text to pass to the executable via standard input. Leave empty if the executable should not receive any input. - Text, der dem Werkzeug auf der Standardeingabe übergeben wird. Wenn es leer ist, erhält das Werkzeug keine Eingabe. - - - Input: - Eingabe: - - - 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. - Diese Einstellung sollte aktiviert werden, wenn das Werkzeug das aktuelle Dokument ändert, um sicherzustellen, dass das Dokument vor Ausführung gesichert und nach Ablauf neu geladen wird. - - - Modifies current document - Ändert aktuelles Dokument - - - Show in Pane - Im Ausgabebereich anzeigen - - - Replace Selection - Ausgewählten Text ersetzen - - - Add tool. - Werkzeug hinzufügen. - - - Remove tool. - Werkzeug löschen. - - - Revert tool to default. - Werkzeug auf Vorgabewert zurücksetzen. - - - <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>Behandlung der Standardausgabe des Werkzeugs. -<ul><li>Unterdrücken: Ausgabe nicht behandeln.</li><li>Im Ausgabebereich anzeigen: Im Ausgabebereich 'Allgemeine Ausgaben' anzeigen.</li><li>Ausgewählten Text ersetzen: Der im aktuellen Dokument ausgewählte Text wird durch die Ausgabe ersetzt.</li></ul></p></body></html> - - - - <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>Behandlung der Fehlerausgabe des Werkzeugs.</p> -<ul><li>Unterdrücken: Ausgabe nicht behandeln.</li> -<li>Im Ausgabebereich anzeigen: Im Ausgabebereich 'Allgemeine Ausgaben' anzeigen.</li> -<li>Ausgewählten Text ersetzen: Der im aktuellen Dokument ausgewählte Text wird durch die Ausgabe ersetzt.</li> -</ul></body></html> - - - Environment: - Umgebung: - - - No changes to apply. - Keine Änderungen. - - - Change... - Ändern... - - - Base environment: - Basisumgebung: - - - - Core::VariableChooser - - Insert Variable - Variable einfügen - - - Current Value: %1 - Aktueller Wert: %1 - - - Insert Unexpanded Value - Nicht expandierten Wert einfügen - - - Insert "%1" - "%1" einfügen - - - Insert Expanded Value - Expandierten Wert einfügen - - - Select a variable to insert. - Wählen Sie eine Variable aus, die eingefügt werden soll. - - - Variables - Variablen - - - - Bazaar - - Annotate Current File - Annotation für Datei - - - Annotate "%1" - Annotation für "%1" - - - Diff Current File - Diff für Datei - - - Diff "%1" - Diff für "%1" - - - Log Current File - Filelog für Datei - - - Log "%1" - Log für "%1" - - - Status Current File - Status der Datei - - - Status "%1" - Status von "%1" - - - ALT+Z,Alt+D - ALT+Z,Alt+D - - - Meta+Z,Meta+D - Meta+Z,Meta+D - - - ALT+Z,Alt+L - ALT+Z,Alt+L - - - Meta+Z,Meta+L - Meta+Z,Meta+L - - - ALT+Z,Alt+S - ALT+Z,Alt+S - - - Meta+Z,Meta+S - Meta+Z,Meta+S - - - Add - Hinzufügen - - - Add "%1" - "%1" hinzufügen - - - Delete... - Löschen... - - - Delete "%1"... - Lösche "%1"... - - - Revert Current File... - Änderungen der Datei rückgängig machen... - - - Revert "%1"... - Änderungen in "%1" rückgängig machen... - - - Diff - Diff - - - Log - Log - - - Revert... - Rückgängig machen... - - - Status - Status - - - Pull... - Pull... - - - Push... - Push... - - - Update... - Auf aktuellen Stand bringen... - - - Commit... - Commit... - - - ALT+Z,Alt+C - ALT+Z,Alt+C - - - Meta+Z,Meta+C - Meta+Z,Meta+C - - - Uncommit... - Commit rückgängig machen... - - - Create Repository... - Repository erzeugen... - - - Update - Aktualisieren - - - There are no changes to commit. - Es sind keine ausstehenden Änderungen vorhanden. - - - Unable to create an editor for the commit. - Es konnte kein Editor für den Commit angelegt werden. - - - Unable to create a commit editor. - Es konnte kein Editor für den Commit angelegt werden. - - - Commit changes for "%1". - Commit der Änderungen in "%1". - - - - Bazaar - - Commit Editor - Commit-Editor - - - - Bazaar - - Bazaar Command - Bazaar-Kommando - - - Bazaar - Bazaar - - - - CMakeProjectManager - - Run CMake - CMake ausführen - - - Clear CMake Configuration - CMake-Konfiguration bereinigen - - - Rescan Project - Projekt neu auswerten - - - Parse and verify a CMake reply file. - CMake-Antwortdatei auswerten und überprüfen. - - - Build - Erstellen - - - Build File - Datei erstellen - - - Build File "%1" - Datei "%1" erstellen - - - Ctrl+Alt+B - Ctrl+Alt+B - - - Select a CMake Reply File - Eine CMake-Antwortdatei auswählen - - - The reply file "%1" and referenced data parsed OK and passed validation. - Die Antwortdatei "%1" und die verwiesenen Daten wurden korrekt ausgewertet und geprüft. - - - The reply file "%1" failed to parse or validate with error message:<br><b>"%2"</b> - Die Antwortdatei "%1" konnte nicht ausgewertet und geprüft werden. Fehlermeldung:<br><b>"%2"</b> - - - Parsing Result - Ergebnis der Auswertung - - - Build File is not supported for generator "%1" - Der Generator "%1" unterstützt das Erstellen einer Datei nicht - - - - Core::Internal::ExternalToolRunner - - Could not find executable for "%1" (expanded "%2") - Die ausführbare Datei von "%1" (expandiert: "%2") konnte nicht gefunden werden - - - Starting external tool "%1" - Starte externes Werkzeug "%1" - - - "%1" finished - "%1" beendet - - - - Core::ExternalToolManager - - &External - &Extern - - - Error: External tool in %1 has duplicate id - Fehler: Die externe Werkzeugspezifikation %1 enthält eine bereits vergebene ID - - - - Core::Internal::MimeTypeMagicDialog - - Add Magic Header - Magic-Header hinzufügen - - - Error - Fehler - - - Internal error: Type is invalid - Interner Fehler: Typ ist ungültig - - - Dialog - Dialog - - - Value: - Wert: - - - String - Zeichenkette - - - Byte - Byte - - - Use Recommended - Empfohlene verwenden - - - Priority: - Priorität: - - - <html><head/><body><p>MIME magic data is interpreted as defined by the Shared MIME-info Database specification from <a href="http://standards.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html">freedesktop.org</a>.<hr/></p></body></html> - <html><head/><body><p>MIME Magic Data wird interpretiert wie in der Shared MIME-Info Datenbank-Spezifikation von <a href="http://standards.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html">freedesktop.org</a> festgelegt.<hr/></p></body></html> - - - Type: - Typ: - - - RegExp - RegExp - - - Host16 - Host16 - - - Host32 - Host32 - - - Big16 - Big16 - - - Big32 - Big32 - - - Little16 - Little16 - - - Little32 - Little32 - - - Mask: - Maske: - - - Range start: - Bereichsbeginn: - - - Range end: - Bereichsende: - - - <html><head/><body><p><span style=" font-style:italic;">Note: Wide range values might impact performance when opening files.</span></p></body></html> - <html><head/><body><p><span style=" font-style:italic;">Hinweis: Große Bereiche können das Öffnen von Dateien verlangsamen.</span></p></body></html> - - - - Core::Internal::MimeTypeSettingsPrivate - - Reset MIME Types - MIME-Typen zurücksetzen - - - Changes will take effect after restart. - Änderungen werden nach einem Neustart wirksam. - - - - ProjectExplorer::Internal::GccToolChainConfigWidget - - &Compiler path: - &Compiler-Pfad: - - - Platform codegen flags: - Plattformspezifische Optionen für codegen: - - - Platform linker flags: - Plattformspezifische Linkeroptionen: - - - &ABI: - &ABI: - - - - ProjectExplorer::Internal::ToolChainOptionsPage - - Compilers - Compiler - - - Add - Hinzufügen - - - <nobr><b>ABI:</b> %1 - <nobr><b>ABI:</b> %1 - - - This toolchain is invalid. - Diese Toolchain ist ungültig. - - - not up-to-date - nicht aktuell - - - Toolchain Auto-detection Settings - Einstellungen für automatische Erkennung von Toolchains - - - Detect x86_64 GCC compilers as x86_64 and x86 - x86_64 GCC-Compiler als x86_64 und x86 erkennen - - - If checked, Qt Creator will set up two instances of each x86_64 compiler: -One for the native x86_64 target, and one for a plain x86 target. -Enable this if you plan to create 32-bit x86 binaries without using a dedicated cross compiler. - Wenn dies aktiviert ist, wird Qt Creator zwei Instanzen jedes x86_64-Compilers erstellen: -eine für das native x86_64-Ziel und eine für ein x86-Ziel. -Aktivieren Sie dies, wenn Sie 32bit-x86-Binärdateien erstellen wollen, ohne einen speziellen Cross-Compiler zu verwenden. - - - Name - Name - - - Type - Typ - - - Auto-detected - Automatisch bestimmt - - - Manual - Benutzerdefiniert - - - Clone - Klonen - - - Remove - Entfernen - - - Remove All - Alle entfernen - - - Re-detect - Neu erkennen - - - Auto-detection Settings... - Einstellungen für automatische Erkennung... - - - Duplicate Compilers Detected - Mehrfach auftretende Compiler - - - The following compiler was already configured:<br>&nbsp;%1<br>It was not configured again. - Der folgende Compiler ist bereits konfiguriert:<br>&nbsp;%1<br>Er wurde nicht noch einmal konfiguriert. - - - The following compilers were already configured:<br>&nbsp;%1<br>They were not configured again. - Die folgenden Compiler wurden bereits konfiguriert:<br>&nbsp;%1<br>Sie wurden nicht noch einmal konfiguriert. - - - - VcsBase::VcsBaseEditorWidget - - Annotate "%1" - Annotation für "%1" - - - Copy "%1" - "%1" Kopieren - - - &Describe Change %1 - Änderung %1 &beschreiben - - - Send to CodePaster... - An CodePaster senden... - - - Apply Chunk... - Änderung anwenden... - - - Revert Chunk... - Diese Änderung rückgängig machen... - - - Failed to retrieve data. - Es konnten keine Daten empfangen werden. - - - Revert Chunk - Änderung rückgängig machen - - - Apply Chunk - Änderung anwenden - - - Would you like to revert the chunk? - Möchten Sie diese Änderung rückgängig machen? - - - Would you like to apply the chunk? - Möchten Sie diese Änderung anwenden? - - - - Core::Internal::MimeTypeSettingsModel - - MIME Type - MIME-Typ - - - Handler - Editor - - - - Core::Internal::MimeTypeSettings - - MIME Types - MIME-Typen - - - - Valgrind - - Issue - Problem - - - %1 in function %2 - %1 in Funktion %2 - - - - Valgrind - - Location: - Ort: - - - Instruction pointer: - Instruktionszeiger: - - - - Valgrind - - Could not parse hex number from "%1" (%2) - "%1" (%2) ist keine gültige Hexadezimalzahl - - - trying to read element text although current position is not start of element - es wurde versucht, Elementtext auszulesen, obwohl nicht auf Startelement positioniert - - - Unexpected child element while reading element text - Unerwartetes Unterelement angetroffen beim Lesen von Elementtext - - - Unexpected token type %1 - Unerwartetes Token %1 - - - Could not parse protocol version from "%1" - Die Protokollversion konnte nicht aus "%1" bestimmt werden - - - XmlProtocol version %1 not supported (supported version: 4) - Die Protokollversion %1 wird nicht unterstützt (Unterstützte Version: 4) - - - Valgrind tool "%1" not supported - Das Valgrind-Werkzeug"%1" ist nicht unterstützt - - - Unknown memcheck error kind "%1" - Unbekannte memcheck-Fehlerkategorie "%1" - - - Unknown helgrind error kind "%1" - Unbekannte helgrind-Fehlerkategorie "%1" - - - Unknown ptrcheck error kind "%1" - Unbekannte ptrcheck-Fehlerkategorie "%1" - - - Could not parse error kind, tool not yet set. - Die Fehlerkategorie konnte nicht bestimmt werden, da kein Werkzeug aktiv ist. - - - Unknown state "%1" - Unbekannter Zustand "%1" - - - Unexpected exception caught during parsing. - Beim Parsen ist eine unerwartete Ausnahme aufgetreten. - - - - Valgrind - - Description - Beschreibung - - - Instruction Pointer - Instruktionszeiger - - - Object - Objekt - - - Directory - Verzeichnis - - - File - Datei - - - Line - Zeile - - - - Analyzer - - Analyzer - Analyzer - - - - Debugger <new source> <neue Quelle> @@ -13952,252 +4740,3068 @@ Aktivieren Sie dies, wenn Sie 32bit-x86-Binärdateien erstellen wollen, ohne ein Qt Sources Qt-Quellen - - - ProjectExplorer::ToolChain + + C++ exception + C++-Ausnahme + + + Thread creation + Thread-Erzeugung + + + Thread exit + Thread-Terminierung + + + Load module: + Laden eines Moduls: + + + Unload module: + Entladen eines Moduls: + + + Output: + Ausgabe: + + + Break On + + + + &Port: + &Port: + + + Start Remote Engine + Entfernte Engine starten + + + &Host: + &Host: + + + &Username: + &Nutzername: + + + &Password: + &Passwort: + + + &Engine path: + &Engine-Pfad: + + + &Inferior path: + Zu &debuggende Anwendung: + + + Type Formats + Formate der Datentypen + + + Qt Types + Qt-Datentypen + + + Standard Types + Standard-Datentypen + + + Misc Types + Andere Datentypen + + + Download of remote file succeeded. + Die Datei wurde erfolgreich heruntergeladen. + + + No + Nein + + + Yes + Ja + + + Plain + Einfach + + + Fast + Schnell + + + debuglnk + debuglnk + + + buildid + buildid + + + It is unknown whether this module contains debug information. +Use "Examine Symbols" from the context menu to initiate a check. + Es ist nicht bekannt, ob dieses Modul Debuginformation enthält. +Verwenden Sie die Option "Symbole untersuchen" des Kontextmenüs, um eine Prüfung zu starten. + + + This module neither contains nor references debug information. +Stepping into the module or setting breakpoints by file and line will not work. + Dieses Modul enthält keine Debuginformation und auch keinen Verweis auf eine Quelle. +Einzelschritt in das Modul oder das Setzen von Haltepunkten nach Datei und Zeilennummer wird nicht funktionieren. + + + This module contains debug information. +Stepping into the module or setting breakpoints by file and line is expected to work. + Dieses Modul enthält Debuginformation. +Einzelschritt in das Modul und das Setzen von Haltepunkten nach Datei und Zeilennummer sollten funktionieren. + + + This module does not contain debug information itself, but contains a reference to external debug information. + Dieses Modul enthält selbst keine Debuginformation, aber einen Verweis auf eine externe Quelle. + + + <unknown> + address + End address of loaded module + <unbekannt> + + + Update Module List + Modulliste aktualisieren + + + Show Source Files for Module "%1" + Quelldateien des Moduls "%1" anzeigen + + + Show Source Files for Module + Quelldateien des Moduls anzeigen + + + Show Dependencies of "%1" + Abhängigkeiten von "%1" anzeigen + + + Show Dependencies + Abhängigkeiten anzeigen + + + Load Symbols for All Modules + Symbole aller Module laden + + + Examine All Modules + Alle Module untersuchen + + + Load Symbols for Module "%1" + Symbole des Moduls "%1" laden + + + Load Symbols for Module + Symbole des Moduls laden + + + Edit File "%1" + Datei "%1" bearbeiten + + + Edit File + + + + Show Symbols in File "%1" + Symbole der Datei "%1" anzeigen + + + Show Symbols + Symbole anzeigen + + + Show Sections in File "%1" + Sektionen der Datei "%1" anzeigen + + + Show Sections + Sektionen anzeigen + + + Module Name + Modulname + + + Module Path + Modulpfad + + + Symbols Read + Gelesene Symbole + + + Symbols Type + Symboltyp + + + Start Address + Startadresse + + + End Address + Endadresse + + + Success: + Erfolg: + + + <anonymous> + <anonym> + + + Properties + Eigenschaften + + + Locals and Expressions + Lokale Variablen und Ausdrücke + + + Start Debugger + Debugger starten + + + Override server channel: + Kanal des Servers überschreiben: + + + For example, %1 + "For example, /dev/ttyS0, COM1, 127.0.0.1:1234" + Zum Beispiel %1 + + + Select Executable + Ausführbare Datei auswählen + + + Server port: + Server-Port: + + + Select Working Directory + Wählen Sie das Arbeitsverzeichnis aus + + + Select SysRoot Directory + SysRoot-Verzeichnis auswählen + + + This option can be used to override the kit's SysRoot setting. + Diese Option kann verwendet werden, um die SysRoot-Einstellung des Kits zu überschreiben. + + + Override S&ysRoot: + S&ysRoot überschreiben: + + + This option can be used to send the target init commands. + Diese Option kann verwendet werden, um Kommandos zum Einrichten des Ziels zu senden. + + + &Init commands: + Kommandos zum E&inrichten: + + + This option can be used to send the target reset commands. + Diese Option kann verwendet werden, um Kommandos zum Zurücksetzen des Ziels zu senden. + + + &Reset commands: + Kommandos zum Zu&rücksetzen: + + + Select Location of Debugging Information + Pfad zu Debug-Information + + + Base path for external debug information and debug sources. If empty, $SYSROOT/usr/lib/debug will be chosen. + Basispfad für Debuginformationen und Quellen. Als Vorgabe wird $SYSROOT/usr/lib/debug benutzt. + + + &Kit: + &Kit: + + + Local &executable: + Ausführbare Datei (&lokal): + + + Command line &arguments: + Kommandozeilen&argumente: + + + &Working directory: + + + + Run in &terminal: + Im &Terminal ausführen: + + + Break at "&main": + Haltepunkt bei "&main": + + + Use target extended-remote to connect: + + + + Debug &information: + Debug&information: + + + Attach to %1 + An %1 anhängen + + + Normally, the running server is identified by the IP of the device in the kit and the server port selected above. +You can choose another communication channel here, such as a serial line or custom ip:port. + Normalerweise wird der laufende Server durch die IP-Adresse des im Kit angegebenen Geräts und den oben ausgewählten Port bestimmt. +Sie können hier eine andere Verbindung wählen, beispielsweise eine serielle Verbindung oder eine beliebige IP:Port-Kombination. + + + &Recent: + &Letzte: + + + Debugger settings + Debuggereinstellungen + + + Enable C++ + C++ aktivieren + + + Enable QML + QML aktivieren + + + <a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">What are the prerequisites?</a> + <a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">Was sind die Voraussetzungen?</a> + + + Enable Debugging of Subprocesses + Debuggen von Unterprozessen zulassen + + + Additional startup commands: + Zusätzliche Kommandos beim Start: + + + Unable to start LLDB "%1": %2 + LLDB "%1" konnte nicht gestartet werden: %2 + + + Interrupt requested... + Unterbrechung angefordert... + + + The LLDB process failed to start. Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. + Der Start des LLDB-Prozesses schlug fehl. Entweder fehlt die ausführbare Datei "%1" oder die Berechtigungen sind nicht ausreichend. + + + An unknown error in the LLDB process occurred. + Im LLDB-Prozess trat ein unbekannter Fehler auf. + + + Adapter start failed. + Der Start des Adapters schlug fehl. + + + Stopping temporarily + Halte an + + + LLDB I/O Error + LLDB-Ein/Ausgabefehler + + + The LLDB process crashed some time after starting successfully. + Der LLDB-Prozess ist einige Zeit nach dem Start abgestürzt. + + + An error occurred when attempting to write to the LLDB process. For example, the process may not be running, or it may have closed its input channel. + Ein Fehler trat beim Versuch zum LLDB-Prozess zu schreiben auf. Möglicherweise läuft der Prozess nicht oder hat seinen Eingabekanal geschlossen. + + + An error occurred when attempting to read from the Lldb process. For example, the process may not be running. + Ein Fehler trat beim Versuch vom Lldb-Prozess zu lesen auf. Möglicherweise läuft der Prozess nicht. + + + Use Local Symbol Cache + Lokalen Symbolcache verwenden + + + Use Microsoft Symbol Server + Microsoft-Symbol-Server verwenden + + + <html><head/><body><p>The debugger is not configured to use the public Microsoft Symbol Server.<br/>This is recommended for retrieval of the symbols of the operating system libraries.</p><p><span style=" font-style:italic;">Note:</span> It is recommended, that if you use the Microsoft Symbol Server, to also use a local symbol cache.<br/>A fast internet connection is required for this to work smoothly,<br/>and a delay might occur when connecting for the first time and caching the symbols.</p><p>What would you like to set up?</p></body></html> + <html><head/><body><p>Der Debugger ist nicht zur Benutzung des öffentlichen Microsoft Symbol Servers eingerichtet.<br/>Dies wird zur Anzeige der Symbole der Betriebssystem-Bibliotheken empfohlen.</p><p><span style=" font-style:italic;">Hinweis:</span> Bei der Verwendung des Microsoft Symbol Servers wird zusätzlich die Benutzung eines lokalen Zwischenspeichers für Symbole empfohlen.<br/>Allerdings ist dabei eine schnelle Internetverbindung für flüssiges Arbeiten erforderlich<br/>und bei der ersten Verbindung zum Zwischenspeichern der Symbole können Verzögerungen auftreten.</p><p>Was möchten Sie einrichten?</p></body></html> + + + Set up Symbol Paths + Symbolpfade einrichten + + + Symbol Paths + Symbolpfade + + + Source Paths + Quellpfade + + + CDB Paths + CDB-Pfade + + + Auto-detected CDB at %1 + Automatisch bestimmter CDB bei %1 + + + System %1 at %2 + %1: Debugger engine type (GDB, LLDB, CDB...), %2: Path + %1 von System in %2 + + + Not recognized + Nicht erkannt + + + Could not determine debugger type + Der Typ des Debuggers konnte nicht bestimmt werden + + + Path + Pfad + + + Unknown + Unbekannt + + + Name: + Name: + + + Path: + Pfad: + + + Type: + Typ: + + + ABIs: + ABIs: + + + Version: + Version: + + + 64-bit version + 64-bit-Version + + + 32-bit version + 32-bit-Version + + + Specify the path to the <a href="%1">Windows Console Debugger executable</a> (%2) here. + Label text for path configuration. %2 is "x-bit version". + Geben Sie hier den Pfad zur ausführbaren Datei des <a href="%1">Windows Console Debuggers</a> (%2) an. + + + Searching debuggers... + + + + Detected %1 at %2 + + + + Found: "%1" + + + + Auto-detected uVision at %1 + Automatisch bestimmte uVision bei %1 + + + Removing debugger entries... + + + + Removed "%1" + + + + Debuggers: + + + + Attach to Process Not Yet Started + An noch nicht gestarteten Prozess anhängen + + + Reset + Zurücksetzen + + + Reopen dialog when application finishes + Dialog nach Beendigung der Anwendung wieder öffnen + + + Reopens this dialog when application finishes. + Öffnet den Dialog nach Beendigung der Anwendung wieder. + + + Continue on attach + Bei Anhängen fortsetzen + + + Debugger does not stop the application after attach. + Wenn aktiviert, wird der Debugger die Anwendung nach dem Anhängen nicht unterbrechen. + + + Start Watching + Beobachtung starten + + + Kit: + Kit: + + + Executable: + Ausführbare Datei: + + + Stop Watching + Nicht mehr beobachten + + + Select valid executable. + Bitte wählen Sie eine gültige ausführbare Datei. + + + Not watching. + Keine Beobachtung. + + + Waiting for process to start... + Warte auf Start des Prozesses... + + + Attach + Anhängen + + + The debugging helpers are used to produce a nice display of objects of certain types like QString or std::map in the &quot;Locals&quot; and &quot;Expressions&quot; views. + Die Ausgabe-Hilfsbibliothek wird benutzt um bestimmte Datentypen wie QString oder std::map in &quot;Lokale Variablen&quot; und &quot;Ausdrücke&quot; ansprechend anzuzeigen. + + + Extra Debugging Helper + + + + Debugging Helper Customization + Anpassung der Ausgabe-Hilfsbibliothek + + + Python commands entered here will be executed after built-in debugging helpers have been loaded and fully initialized. You can load additional debugging helpers or modify existing ones here. + Hier angegebene Python-Kommandos werden ausgeführt, nachdem die integrierte Ausgabe-Hilfsbibliothek geladen und vollständig initialisiert wurde. Sie können hier weitere Ausgabehelfer laden oder bereits existierende Ausgabehelfer ändern. + + + Extra Debugging Helpers + Zusätzliche Ausgabe-Hilfsbibliotheken + + + Path to a Python file containing additional data dumpers. + Pfad zu einer Python-Datei für zusätzliche Datenausgabe. + + + Maximum string length: + Maximale Zeichenkettenlänge: + + + Display string length: + Anzuzeigende Länge von Zeichenketten: + + + %1 (Previous) + %1 (Vorherig) + + + Expression %1 in function %2 from line %3 to %4 + Ausdruck %1 in Funktion %2 von Zeile %3 bis %4 + + + No valid expression + Kein gültiger Ausdruck + + + %1 (Restored) + %1 (Wiederhergestellt) + + + Expression too complex + Ausdruck zu komplex + + + Debug + Debug + + + Option "%1" is missing the parameter. + Das Kommandozeilenargument "%1" erfordert einen Parameter. + + + Only one executable allowed. + Nur eine ausführbare Datei erlaubt. + + + The parameter "%1" of option "%2" does not match the pattern <handle>:<pid>. + Der Parameter "%1" der Option "%2" entspricht nicht dem Muster <Handle>:<PID>. + + + Invalid debugger option: %1 + Ungültiger Debugger-Kommandozeilenparameter: %1 + + + Cannot start %1 without a project. Please open the project and try again. + Kann %1 nicht ohne Projekt starten. Bitte das Projekt öffnen und nochmal versuchen. + + + Profile + Profile + + + Release + Release + + + in Debug mode + im Debug-Modus + + + in Profile mode + im Profile-Modus + + + in Release mode + im Release-Modus + + + with debug symbols (Debug or Profile mode) + mit Debug-Symbolen (Debug- oder Profile-Modus) + + + on optimized code (Profile or Release mode) + auf optimiertem Programmcode (Profile- oder Release-Modus) + + + Run %1 in %2 Mode? + Soll %1 im %2-Modus ausgeführt werden? + + + <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 %3.</p><p>Run-time characteristics differ significantly between optimized and non-optimized binaries. Analytical findings for one mode may or may not be relevant for the other.</p><p>Running tools that need debug symbols on binaries that don't provide any may lead to missing function names or otherwise insufficient output.</p><p>Do you want to continue and run the tool in %2 mode?</p></body></html> + <html><head/><body><p>Sie versuchen das Werkzeug "%1" für eine Anwendung im %2-Modus auszuführen. Das Werkzeug ist dafür vorgesehen %3 ausgeführt zu werden.</p><p>Die Laufzeitcharakteristik von optimierten und nicht optimierten Maschinenprogrammen unterscheidet sich stark. Ergebnisse einer Analyse des einen Modus können, müssen aber nicht auf den anderen Modus übertragbar sein.</p><p>Werkzeuge, die Debug-Symbole benötigen, auf Dateien auszuführen, die diese nicht enthalten, kann zu fehlenden Funktionsnamen oder anderweitig unbrauchbaren Ergebnissen führen.</p><p>Wollen Sie fortfahren und das Werkzeug im %2-Modus ausführen?</p></body></html> + + + %1 is a 64 bit executable which can not be debugged by a 32 bit Debugger. +Please select a 64 bit Debugger in the kit settings for this kit. + %1 ist eine 64-bit-Anwendung, die nicht mit einem 32-bit-Debugger untersucht werden kann. +Bitte wählen Sie einen 64-bit-Debugger in den Kit-Einstellungen für dieses Kit. + + + Unable to create a debugging engine. + Eine Debugging-Engine kann nicht erzeugt werden. + + + Debugging complex command lines is currently not supported on Windows. + Komplexe Kommandozeilen werden beim Debuggen unter Windows gegenwärtig nicht unterstützt. + + + Not enough free ports for QML debugging. + Nicht genügend freie Ports für das QML-Debuggen vorhanden. + + + Debugger finished. + Debuggen beendet. + + + Continue + Fortsetzen + + + Interrupt + Anhalten + + + Abort Debugging + Debuggen abbrechen + + + Step Into + Einzelschritt herein + + + Step Out + Einzelschritt heraus + + + Run to Line + Ausführen bis Zeile + + + Run to Selected Function + Bis zu ausgewählter Funktion ausführen + + + Jump to Line + Zeile anspringen + + + Immediately Return From Inner Function + Sofortiges Herausspringen aus innerer Funktion + + + Step Over + Einzelschritt über + + + Operate by Instruction + Auf Anweisungsebene arbeiten + + + Record Information to Allow Reversal of Direction + Daten aufzeichnen, um Richtungsumkehr zu ermöglichen + + + Switches the debugger to instruction-wise operation mode. In this mode, stepping operates on single instructions and the source location view also shows the disassembled instructions. + Weist den Debugger an, auf Anweisungsebene zu arbeiten. In diesem Modus arbeitet die Einzelschritt-Funktion auf Maschinenanweisungen und die Quelltextanzeige zeigt die disassemblierten Anweisungen an. + + + Peripheral Reg&isters + Peripherie-Reg&ister + + + Restarts the debugging session. + Startet die Debugging-Sitzung neu. + + + Record information to enable stepping backwards. + Daten aufzeichnen, um Einzelschritte rückwärts ausführen zu können. + + + Note: + Hinweis: + + + This feature is very slow and unstable on the GDB side. It exhibits unpredictable behavior when going backwards over system calls and is very likely to destroy your debugging session. + Diese Funktionalität ist sehr langsam und instabil innerhalb von GDB. Es kann unvorhergesehenes Verhalten auftreten, wenn man rückwärts über einen Systemaufruf springt, und die Debugger-Sitzung kann leicht unbenutzbar werden. + + + Reverse Direction + Richtung umkehren + + + Continue %1 + %1 fortsetzen + + + Interrupt %1 + %1 anhalten + + + Take Snapshot of Process State + Aktuellen Prozessstatus aufzeichnen + + + Launching Debugger + Starte Debugger + + + &Modules + &Module + + + Reg&isters + Reg&ister + + + &Stack + &Stack + + + Source Files + Quelldateien + + + &Threads + &Threads + + + Locals + Lokale Variablen + + + &Expressions + &Ausdrücke + + + &Breakpoints + &Haltepunkte + + + Aborts debugging and resets the debugger to the initial state. + Bricht das Debuggen ab und versetzt den Debugger in den Ausgangszustand. + + + Threads: + Threads: + + + No Memory Viewer Available + Es ist kein Speicher-Anzeigemodul verfügbar + + + The memory contents cannot be shown as no viewer plugin for binary data has been loaded. + Der Speicherinhalt kann nicht angezeigt werden, da kein Plugin zur Anzeige binärer Daten geladen ist. + + + Set or Remove Breakpoint + + + + Enable or Disable Breakpoint + + + + Loading finished. + Laden beendet. + + + Run failed. + Ausführung fehlgeschlagen. + + + Running. + Läuft. + + + Stopped. + Angehalten. + + + Run requested... + Ausführung angefordert... + + + The %1 process terminated. + Der %1-Prozess wurde beendet. + + + The %2 process terminated unexpectedly (exit code %1). + Der %2-Prozess wurde unerwartet beendet (Rückgabewert %1). + + + Unexpected %1 Exit + %1 unerwartet beendet + + + Taking notice of pid %1 + PID %1 gemeldet + + + Reverse-execution history exhausted. Going forward again. + Keine weiteren rückwärts ausführbaren Schritte vorhanden. Führe sie wieder vorwärts aus. + + + Attempting to interrupt. + Unterbreche. + + + Could not find a widget. + Es konnte kein Widget gefunden werden. + + + %1 for "%2" + e.g. LLDB for "myproject", shows up i + %1 für "%2" + + + This debugger cannot handle user input. + Dieser Debugger kann keine Nutzereingaben verarbeiten. + + + Stopped: "%1". + Angehalten: "%1". + + + Stopped: %1 (Signal %2). + Angehalten: %1 (Signal %2). + + + Stopped in thread %1 by: %2. + Im Thread %1 angehalten durch: %2. + + + Interrupted. + Unterbrochen. + + + <Unknown> + name + <unbekannt> + + + <Unknown> + meaning + <unbekannt> + + + <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>Der Prozess wurde wegen eines Signals vom Betriebssystem angehalten.<p><table><tr><td>Name des Signals : </td><td>%1</td></tr><tr><td>Bedeutung : </td><td>%2</td></tr></table> + + + Signal Received + Signal erhalten + + + <p>The inferior stopped because it triggered an exception.<p>%1 + <p>Der zu debuggende Prozess wurde angehalten, da er eine Ausnahme ausgelöst hat.<p>%1 + + + Exception Triggered + Ausnahme ausgelöst + + + Finished retrieving data. + Alle Daten erhalten. + + + No function selected. + Keine Funktion ausgewählt. + + + Running to function "%1". + Ausführung bis zu Funktion "%1". + + + Select a valid expression to evaluate. + Wählen Sie einen gültigen Ausdruck zur Auswertung aus. + + + Symbol + Symbol + + + Code + Code + + + Section + Abschnitt + + + Name + Name + + + Symbols in "%1" + Symbole in "%1" + + + From + Von + + + To + Bis + + + Flags + Flags + + + Sections in "%1" + Abschnitte in "%1" + + + The inferior is in the Portable Executable format. +Selecting %1 as debugger would improve the debugging experience for this binary format. + Der zu debuggende Prozess hat das Portable Executable-Format. +Für dieses Binärformat wäre %1 besser als Debugger geeignet. + + + The selected debugger may be inappropriate for the inferior. +Examining symbols and setting breakpoints by file name and line number may fail. + + Der gewählte Debugger könnte ungeeignet für den zu debuggenden Prozess sein. +Vielleicht können Symbole nicht untersucht werden oder Haltepunkte nicht anhand von Dateiname und Zeilennummer gesetzt werden. + + + + The inferior is in the ELF format. +Selecting GDB or LLDB as debugger would improve the debugging experience for this binary format. + Der zu debuggende Prozess hat das ELF-Format. +Für dieses Binärformat wären GDB oder LLDB besser als Debugger geeignet. + + + Current debugger location of %1 + Aktueller Pfad zum Debugger von %1 + + + Debugging has failed. + Debuggen schlug fehl. + + + Operate in Reverse Direction + In umgekehrter Richtung arbeiten + + + Reverse-execution recording failed. + Aufzeichnung für Rückwärtsausführung gescheitert. + + + Found. + Gefunden. + + + Not found. + Nicht gefunden. + + + Section %1: %2 + Abschnitt %1: %2 + + + Warning + Warnung + + + This does not seem to be a "Debug" build. +Setting breakpoints by file name and line number may fail. + Es liegt offenbar kein "Debug"-Build vor. +Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehlschlagen. + + + Run to Address 0x%1 + Ausführung bis Adresse 0x%1 + + + Run to Line %1 + Ausführen bis Zeile %1 + + + Jump to Address 0x%1 + Zu Adresse 0x%1 springen + + + Jump to Line %1 + Zu Zeile %1 springen + + + Type + Typ + + + Add + Hinzufügen + + + Clone + Klonen + Clone of %1 Kopie von %1 + + New Debugger + Neuer Debugger + + + Restore + Wiederherstellen + + + Debuggers + Debugger + + + Terminal: Cannot open /dev/ptmx: %1 + Terminal: /dev/ptmx kann nicht geöffnet werden: %1 + + + Terminal: ptsname failed: %1 + Terminal: ptsname schlug fehl: %1 + + + Terminal: Error: %1 + Terminal: Fehler: %1 + + + Terminal: Slave is no character device. + Terminal: Slave ist kein zeichenorientiertes Gerät. + + + Terminal: grantpt failed: %1 + Terminal: grantpt schlug fehl: %1 + + + Terminal: unlock failed: %1 + Terminal: unlock schlug fehl: %1 + + + Terminal: Read failed: %1 + Terminal: Lesen schlug fehl: %1 + + + Global + Global + + + Custom + Benutzerdefiniert + + + Restore Global + Globale Einstellungen wiederherstellen + + + Use Customized Settings + Benutzerdefinierte Einstellungen verwenden + + + Use Global Settings + Globale Einstellungen verwenden + + + Copy + Kopieren + + + Start Remote Analysis + Entfernte Analyse starten + + + Executable: + Ausführbare Datei: + + + Arguments: + Argumente: + + + Working directory: + Arbeitsverzeichnis: + + + Show debug, log, and info messages. + Zeige Debug-, Log- und informative Nachrichten. + + + Show warning messages. + Warnungen anzeigen. + + + Show error messages. + Fehlermeldungen anzeigen. + + + Can only evaluate during a debug session. + Kann nur während einer Debugsitzung ermittelt werden. + + + QML Debugger Console + QML-Debuggerkonsole + + + &Copy + &Kopieren + + + &Show in Editor + In &Editor anzeigen + + + C&lear + &Löschen + + + %1 <shadowed %2> + Display of variables shadowed by variables of the same name in nested scopes: Variable %1 is the variable name, %2 is a simple count. + %1 <überlagert %2> + + + The kit does not have a debugger set. + + + + Unpacking core file to %1 + Entpacke Core-Datei nach %1 + + + Cannot debug: Local executable is not set. + Kann nicht debuggen: Lokale ausführbare Datei ist nicht angegeben. + + + No executable specified. + Es wurde keine ausführbare Datei angegeben. + + + Unsupported CDB host system. + Nicht unterstütztes CDB-Host-System. + + + Specify Debugger settings in Projects > Run. + + + + %1 - Snapshot %2 + %1 - Snapshot %2 + + + Some breakpoints cannot be handled by the debugger languages currently active, and will be ignored.<p>Affected are breakpoints %1 + + + + QML debugging needs to be enabled both in the Build and the Run settings. + + + + &Show this message again. + Diese Nachricht erneut an&zeigen. + + + Debugging %1 ... + + + + Debugging of %1 has finished with exit code %2. + + + + Debugging of %1 has finished. + + + + Starting debugger "%1" for ABI "%2"... + Starte Debugger "%1" für ABI "%2"... + + + Close Debugging Session + Debuggen beenden + + + A debugging session is still in progress. Terminating the session in the current state can leave the target in an inconsistent state. Would you still like to terminate it? + Der Debugger läuft noch. Das Beenden im gegenwärtigen Zustand könnte zu einem inkonsistenten Zustand des untersuchten Prozesses führen. Möchten Sie ihn trotzdem beenden? + + + Debugged executable + Vom Debugger gesteuerte ausführbare Datei + + + The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. + Die letzte waitFor...()-Funktion brauchte zu lange. Der Zustand des QProcess ist unverändert und Sie können versuchen waitFor...() erneut aufzurufen. + + + Debuggee + Untersuchtes Programm + + + Add Breakpoint + Haltepunkt setzen + + + Add Breakpoint... + Haltepunkt setzen... + + + Delete Selected Breakpoints + Ausgewählte Haltepunkte löschen + + + Edit Selected Breakpoints... + Ausgewählte Haltepunkte bearbeiten... + + + Disable Selected Breakpoints + Ausgewählte Haltepunkte deaktivieren + + + Enable Selected Breakpoints + Ausgewählte Haltepunkte aktivieren + + + Remove All Breakpoints + Alle Haltepunkte löschen + + + Are you sure you want to remove all breakpoints from all files in the current session? + Möchten Sie wirklich alle Haltepunkte aus allen Dateien der aktuellen Sitzung löschen? + + + Perspective + Perspektive + + + Debugged Application + Zu debuggende Anwendung + + + Debugger Preset + Debugger-Voreinstellung + + + Create Snapshot + Snapshot erzeugen + + + Abort Debugger + Debugger abbrechen + + + Global Debugger &Log + Globales Debugger-&Log + + + Use alternating row colors in debug views + Alternierende Farben für Zeilen in Debug-Ansichten benutzen + + + Changes the font size in the debugger views when the font size in the main editor changes. + Passt die Schriftgröße der Debuggerfenster den Editoren an. + + + Debugger font size follows main editor + Schriftgröße des Debuggers mit Editor synchronisieren + + + Stopping and stepping in the debugger will automatically open views associated with the current location. + Das Anhalten oder die Ausführung von Einzelschritten im Debugger öffnet automatisch Anzeigen mit Quelltext oder Disassembler der betreffenden Stelle. + + + Close temporary source views on debugger exit + Temporäre Quelltextanzeigen bei Beendigung des Debuggens schließen + + + Closes automatically opened source views when the debugger exits. + Schließt automatisch geöffnete Quelltextanzeigen, wenn der Debugger beendet wird. + + + Close temporary memory views on debugger exit + Temporäre Speicheranzeigen bei Beendigung des Debuggens schließen + + + Closes automatically opened memory views when the debugger exits. + Schließt automatisch geöffnete Speicheranzeigen, wenn der Debugger beendet wird. + + + Switch to previous mode on debugger exit + Beim Beenden des Debuggens den vorher aktiven Modus wiederherstellen + + + Bring %1 to foreground when application interrupts + %1 in den Vordergrund bringen, wenn die Anwendung stoppt + + + GDB shows by default AT&&T style disassembly. + + + + Use annotations in main editor when debugging + + + + <p>Shows simple variable values as annotations in the main editor during debugging. + + + + Use pseudo message tracepoints + + + + Uses Python to extend the ordinary GDB breakpoint class. + + + + Use automatic symbol cache + + + + It is possible for GDB to automatically save a copy of its symbol index in a cache on disk and retrieve it from there when loading the same binary in the future. + + + + <p>Enables tooltips for variable values during debugging. Since this can slow down debugging and does not provide reliable information as it does not use scope information, it is switched off by default. + + + + <p>Enables tooltips in the locals view during debugging. + + + + <p>Enables tooltips in the breakpoints view during debugging. + + + + <p>Enables tooltips in the stack view during debugging. + + + + Shows QML object tree in Locals and Expressions when connected and not stepping. + QML-Objektbaum in Fenster "Lokale Variablen" anzeigen, wenn eine Verbindung besteht und kein Einzelschrittbetrieb vorliegt. + + + Show QML object tree + QML-Objektbaum anzeigen + + + Enables a full file path in breakpoints by default also for GDB. + Vollständiger Pfad für Haltepunkte als Vorgabe, auch bei GDB. + + + Set breakpoints using a full absolute path + Vollständiger Pfad für Haltepunkte als Vorgabe + + + Registers %1 for debugging crashed applications. + %1 als Debugger für abgestürzte Anwendungen registrieren. + + + Use %1 for post-mortem debugging + %1 als Post-Mortem-Debugger verwenden + + + Warn when debugging "Release" builds + Warnung beim Versuch des Debuggens von "Release"-Builds anzeigen + + + Shows a warning when starting the debugger on a binary with insufficient debug information. + Zeigt eine Warnung an, wenn der Debugger für eine ausführbare Datei mit unzureichenden Debug-Informationen gestartet wird. + + + Keep editor stationary when stepping + Editor bei Einzelschritten nicht bewegen + + + Scrolls the editor only when it is necessary to keep the current line in view, instead of keeping the next statement centered at all times. + Verschiebt den Editor nur, um die aktuelle Zeile sichtbar zu halten, anstatt immer den nächsten Ausdruck zu zentrieren. + + + Maximum stack depth: + Maximale Stack-Tiefe: + + + <unlimited> + <unbegrenzt> + + + Stop when %1() is called + Bei Aufruf von %1() anhalten + + + Always adds a breakpoint on the <i>%1()</i> function. + Fügt bei der Funktion <i>%1()</i> stets einen Haltepunkt ein. + + + Type of Debugger Backend + Typ des Debugger-Backends + + + Unknown debugger version + Unbekannte Debuggerversion + + + Unknown debugger ABI + Unbekannte Debugger-ABI + + + None + Keine + + + The debugger to use for this kit. + Der für dieses Kit zu verwendende Debugger. + + + No debugger set up. + Es ist kein Debugger eingerichtet. + + + Debugger "%1" not found. + Der Debugger "%1" konnte nicht gefunden werden. + + + Debugger "%1" not executable. + Der Debugger "%1" ist nicht ausführbar. + + + The debugger location must be given as an absolute path (%1). + Der Pfad zum Debugger muss als absoluter Pfad angegeben werden (%1). + + + The ABI of the selected debugger does not match the toolchain ABI. + Die ABI des gewählten Debuggers passt nicht zur ABI der Toolchain. + + + Name of Debugger + Name des Debuggers + + + Unknown debugger + Unbekannter Debugger + + + Unknown debugger type + Unbekannter Debuggertyp + + + No Debugger + Kein Debugger + + + %1 Engine + %1-Engine + + + %1 <None> + %1 <keine> + + + %1 using "%2" + %1 unter Verwendung von "%2" + + + N/A + N/A + + + Access + Zugriff + + + Format + Format + + + %1.%2 + %1.%2 + + + Unknown error. + + + + Connection is not open. + + + + &Views + &Ansichten + + + Leave Debug Mode + Debug-Modus verlassen + + + Toolbar + Werkzeugleiste + + + Editor + Editor + + + Next Item + Nächster Eintrag + + + Previous Item + Vorangehender Eintrag + + + Color at %1,%2: red: %3 green: %4 blue: %5 alpha: %6 + Farbe bei %1,%2: rot: %3 grün: %4 blau: %5 alpha: %6 + + + <Click to display color> + <Klicken Sie, um die Farbe anzuzeigen> + + + Copy Image + Bild kopieren + + + Open Image Viewer + Bildbetrachter öffnen + + + Internal error: Invalid TCP/IP port specified %1. + + + + Internal error: No uVision executable specified. + + + + Internal error: The specified uVision executable does not exist. + + + + Internal error: Cannot resolve the library: %1. + + + + UVSC Version: %1, UVSOCK Version: %2. + + + + Internal error: Cannot open the session: %1. + + + + Internal error: Failed to start the debugger: %1 + + + + UVSC: Starting execution failed. + + + + UVSC: Stopping execution failed. + + + + UVSC: Setting local value failed. + + + + UVSC: Setting watcher value failed. + + + + UVSC: Disassembling by address failed. + + + + UVSC: Changing memory at address 0x%1 failed. + + + + UVSC: Fetching memory at address 0x%1 failed. + + + + Internal error: The specified uVision project options file does not exist. + + + + Internal error: The specified uVision project file does not exist. + + + + Internal error: Unable to open the uVision project %1: %2. + + + + Internal error: Unable to set the uVision debug target: %1. + + + + Internal error: The specified output file does not exist. + + + + Internal error: Unable to set the uVision output file %1: %2. + + + + UVSC: Reading registers failed. + + + + UVSC: Fetching peripheral register failed. + + + + UVSC: Locals enumeration failed. + + + + UVSC: Watchers enumeration failed. + + + + UVSC: Inserting breakpoint failed. + + + + UVSC: Removing breakpoint failed. + + + + UVSC: Enabling breakpoint failed. + + + + UVSC: Disabling breakpoint failed. + + + + Failed to initialize the UVSC. + + + + Failed to de-initialize the UVSC. + + + + Failed to run the UVSC. + + + + Cannot continue debugged process: + + + + + Cannot stop debugged process: + + + - CppTools::Internal::CppCodeStyleSettingsPage + QtDumperHelper - General - Allgemein - - - Content - Inhalt - - - Indent - Einrückung - - - "public", "protected" and -"private" within class body - "public", "protected" und -"private" im Klassenrumpf - - - Declarations relative to "public", -"protected" and "private" - Deklarationen relativ zu "public", -"protected" und "private" - - - Statements within blocks - Anweisungen in Blöcken - - - Declarations within -"namespace" definition - Deklarationen in -Namensraum-Definition - - - Braces - Klammern - - - Indent Braces - Klammern einrücken - - - Class declarations - Klassendeklarationen - - - Namespace declarations - Namensraum-Deklarationen - - - Enum declarations - Deklarationen von Aufzählungen - - - Blocks - Blöcke - - - "switch" - "switch" - - - Indent within "switch" - Einrückung in "switch" - - - "case" or "default" - "case" oder "default" - - - Statements relative to -"case" or "default" - Anweisungen relativ zu -"case" oder "default" - - - Blocks relative to -"case" or "default" - Blöcke relativ zu -"case" oder "default" - - - "break" statement relative to -"case" or "default" - "break"-Anweisung relativ zu -"case" oder "default" - - - Alignment - Ausrichtung - - - Align - Ausrichten - - - Align after assignments - Nach Zuweisung ausrichten - - - Add extra padding to conditions -if they would align to the next line - Bedingungen weiter einrücken -wenn sie sonst an der nächsten Zeile ausgerichtet werden würden - - - <html><head/><body> -Enables alignment to tokens after =, += etc. When the option is disabled, regular continuation line indentation will be used.<br> -<br> -With alignment: -<pre> -a = a + - b -</pre> -Without alignment: -<pre> -a = a + - b -</pre> -</body></html> - <html><head/><body> -Bewirkt die Ausrichtung an Operanden nach =, += etc. Wenn die Option deaktiviert ist, wird die reguläre Einrückung von Fortsetzungszeilen verwendet.<br> -<br> -Mit Ausrichtung: -<pre> -a = a + - b -</pre> -Ohne Ausrichtung: -<pre> -a = a + - b -</pre> -</body></html> - - - <html><head/><body> -Adds an extra level of indentation to multiline conditions in the switch, if, while and foreach statements if they would otherwise have the same or less indentation than a nested statement. + ptrace: Operation not permitted. -For four-spaces indentation only if statement conditions are affected. Without extra padding: -<pre> -if (a && - b) - c; -</pre> -With extra padding: -<pre> -if (a && - b) - c; -</pre> -</body></html> - <html><head/><body> -Gibt an, wie sich die Rücktaste bezüglich Einrückung verhält. +Could not attach to the process. Make sure no other debugger traces this process. +Check the settings of +/proc/sys/kernel/yama/ptrace_scope +For more details, see /etc/sysctl.d/10-ptrace.conf + + ptrace: Operation not permitted. -<ul> -<li>Keine: Kein besondere Behandlung, normales Verhalten der Rücktaste. -</li> - -<li>Vorangehender Einrückung folgen: In führenden Leerzeichen wird die Einfügemarke auf die nächstliegende Einrückung vorangehender Zeilen gestellt. -</li> - -<li>Ausrücken: Wenn das hinter der Einfügemarke befindliche Zeichen ein Leerzeichen ist, verhält sich die Rücktaste wie ein rückwärtiger Tabulator. -</li> -</ul></body></html> +Der Debugger konnte nicht an den laufenden Prozess angehängt werden. Stellen Sie sicher, dass kein anderer Debugger an diesen Prozess angehängt ist. Prüfen Sie die Einstellungen von +/proc/sys/kernel/yama/ptrace_scope +Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf - Pointers and References - Zeiger und Referenzen - - - Bind '*' and '&&' in types/declarations to - Binde '*' und '&&' in Typen und Deklarationen an - - - <html><head/><body>This does not apply to the star and reference symbol in pointer/reference to functions and arrays, e.g.: -<pre> int (&rf)() = ...; - int (*pf)() = ...; + ptrace: Operation not permitted. - int (&ra)[2] = ...; - int (*pa)[2] = ...; +Could not attach to the process. Make sure no other debugger traces this process. +If your uid matches the uid +of the target process, check the settings of +/proc/sys/kernel/yama/ptrace_scope +For more details, see /etc/sysctl.d/10-ptrace.conf + + ptrace: Operation not permitted. -</pre></body></html> - <html><head/><body>Dies bezieht sich nicht auf die Stern- und Referenzsymbole in Zeigern auf / Referenzen zu Funktionen und Feldern, zum Beispiel: -<pre> int (&rf)() = ...; - int (*pf)() = ...; - - int (&ra)[2] = ...; - int (*pa)[2] = ...; - -</pre></body></html> +Der Debugger konnte nicht an den laufenden Prozess angehängt werden. Stellen Sie sicher, dass kein anderer Debugger an diesen Prozess angehängt ist. Wenn Ihre uid mit der uid des Prozesses übereinstimmt, prüfen Sie die Einstellungen von +/proc/sys/kernel/yama/ptrace_scope +Weiterführende Informationen befinden sich in /etc/sysctl.d/10-ptrace.conf + + + + + DependenciesModel + + Unable to Add Dependency + Die Abhängigkeit konnte nicht hinzugefügt werden - Identifier - Bezeichner + This would create a circular dependency. + Dadurch würde eine zirkuläre Abhängigkeit entstehen. + + + + Designer + + Designer + Designer - Type name - Typname + Form Editor + Formulareditor - Left const/volatile - Linkes const/volatile + The generated header of the form "%1" could not be found. +Rebuilding the project might help. + Die automatisch erstellte Header-Datei des Formulars "%1" konnte nicht gefunden werden. +Versuchen Sie, das Projekt neu zu erstellen. - This does not apply to references. - Bezieht sich nicht auf Referenzen. + The generated header "%1" could not be found in the code model. +Rebuilding the project might help. + Die automatisch erstellte Header-Datei "%1" konnte nicht im Codemodell gefunden werden. +Versuchen Sie, das Projekt neu zu erstellen. - Right const/volatile - Rechtes const/volatile + Qt Designer Form Class + Qt-Designer-Formularklasse - Statements within function body - Anweisungen im Funktionsrumpf + Class Details + Klassendetails - Function declarations - Funktionsdeklarationen + %1 - Error + %1 - Fehler - Getter and Setter - Getter und Setter + Class + Klasse - Prefer getter names without "get" - Getter-Namen ohne "get" bevorzugen + Choose a Class Name + Name der Klasse + + + Switch Source/Form + Zwischen Quelldatei und Formular wechseln + + + For&m Editor + For&mulareditor + + + Shift+F4 + Shift+F4 + + + 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. + Erstellt ein Qt-Designer-Formular mit zugehörigem Klassenrumpf (bestehend aus C++-Header- und -Quelldatei) für Implementierungszwecke. Sie können Formular und Klasse zu einem existierenden Qt-Widget-Projekt hinzufügen. + + + Choose a Form Template + Formularvorlage auswählen + + + Form Template + Formularvorlage + + + The class containing "%1" could not be found in %2. +Please verify the #include-directives. + Die Klasse, die "%1" enthält, konnte nicht innerhalb von '%2' gefunden werden. +Bitte prüfen Sie die #include-Anweisungen. + + + Error finding/adding a slot. + Fehler beim Auffinden/Hinzufügen des Slot-Codes. + + + No documents matching "%1" could be found. +Rebuilding the project might help. + Es konnten keine dem Suchmuster "%1" entsprechenden Dokumente gefunden werden. +Versuchen Sie, das Projekt neu zu erstellen. + + + Unable to add the method definition. + Die Definition der Methode konnte nicht hinzugefügt werden. + + + Widget box + Widget-Box + + + Object Inspector + Objektanzeige + + + Property Editor + Eigenschaften + + + Signals && Slots Editor + Signals und Slots + + + Action Editor + Aktionseditor + + + Widget Box + Widget-Box + + + Signals and Slots Editor + + + + Edit Widgets + Widgets bearbeiten + + + F3 + F3 + + + Edit Signals/Slots + Signals und Slots bearbeiten + + + F4 + F4 + + + Edit Buddies + Buddies bearbeiten + + + Edit Tab Order + Tabulatorreihenfolge bearbeiten + + + Meta+Shift+H + Meta+Shift+H + + + Ctrl+H + Ctrl+H + + + Meta+L + Meta+L + + + Ctrl+L + Ctrl+L + + + Meta+Shift+G + Meta+Shift+G + + + Ctrl+G + Ctrl+G + + + Meta+J + Meta+J + + + Ctrl+J + Ctrl+J + + + Alt+Shift+R + Alt+Shift+R + + + About Qt Designer Plugins... + Über Qt Designer-Plugins... + + + Preview in + Vorschau in + + + This file can only be edited in <b>Design</b> mode. + Datei kann nur im <b>Design</b>-Modus bearbeitet werden. + + + Switch Mode + Modus umschalten + + + The image could not be created: %1 + Das Bild konnte nicht erstellt werden: %1 + + + &Class name: + &Klassenname: + + + &Header file: + &Header-Datei: + + + &Source file: + &Quelldatei: + + + &Form file: + &Form-Datei: + + + &Path: + &Pfad: + + + Invalid header file name: "%1" + Ungültiger Header-Dateiname: "%1" + + + Invalid source file name: "%1" + Ungültiger Quelldateiname: "%1" + + + Invalid form file name: "%1" + Ungültiger Form-Dateiname: "%1" + + + + ExtensionSystem::Internal::PluginDetailsView + + Name: + Name: + + + Version: + Version: + + + Vendor: + Anbieter: + + + Location: + Pfad: + + + Description: + Beschreibung: + + + Copyright: + Copyright: + + + License: + Lizenz: + + + Dependencies: + Abhängigkeiten: + + + Group: + Gruppe: + + + Compatibility version: + Kompatibel zu Version: + + + URL: + URL: + + + Platforms: + Plattformen: + + + + ExtensionSystem::Internal::PluginErrorView + + State: + Status: + + + Error message: + Fehlermeldung: + + + + ExtensionSystem::Internal::PluginSpecPrivate + + Plugin meta data not found + Plugin-Metadaten nicht gefunden + + + Invalid platform specification "%1": %2 + Ungültige Plattformspezifikation "%1": %2 + + + Dependency: %1 + Abhängigkeit: %1 + + + Dependency: "%1" must be "%2" or "%3" (is "%4"). + Abhängigkeit: "%1" muss "%2" oder "%3" sein (ist "%4"). + + + Argument: %1 + Argument: %1 + + + Argument: "%1" is empty + Argument: "%1" ist leer + + + + ExtensionSystem::PluginErrorView + + Invalid + Ungültig + + + Description file found, but error on read. + Fehlerhafte Beschreibungsdatei gefunden. + + + Description successfully read. + Beschreibungsdatei gelesen. + + + Dependencies are successfully resolved. + Die Abhängigkeiten wurden erfolgreich bestimmt. + + + Library is loaded. + Die Bibliothek wurde geladen. + + + Plugin's initialization function succeeded. + Die Initialisierungsfunktion des Plugins wurde erfolgreich abgearbeitet. + + + Plugin successfully loaded and running. + Das Plugin wurde erfolgreich geladen und läuft. + + + Plugin was shut down. + Das Plugin wurde angehalten. + + + Plugin ended its life cycle and was deleted. + Das Plugin wurde nach Ablauf seiner Nutzungsdauer gelöscht. + + + Read + Gelesen + + + Resolved + Abhängigkeiten bestimmt + + + Loaded + Geladen + + + Initialized + Initialisiert + + + Running + Läuft + + + Stopped + Angehalten + + + Deleted + Gelöscht + + + + ExtensionSystem::PluginManager + + Circular dependency detected: + Zirkuläre Abhängigkeit festgestellt: + + + %1 (%2) depends on + %1 (%2) hängt ab von + + + %1 (%2) + %1 (%2) + + + Cannot load plugin because dependency failed to load: %1 (%2) +Reason: %3 + Das Plugin kann nicht geladen werden, weil eine Abhängigkeit nicht geladen werden konnte: %1 (%2) +Grund: %3 + + + Cannot load plugin because dependency failed to load: %1(%2) +Reason: %3 + Das Plugin kann nicht geladen werden, weil eine Abhängigkeit nicht geladen werden konnte: %1(%2) +Grund: %3 + + + + GenericProjectManager::Internal::GenericProjectWizard + + Import Existing Project + Import eines existierenden Projekts + + + Imports existing projects that do not use qmake, CMake, Qbs, Meson, or Autotools. This allows you to use %1 as a code editor. + + + + + GenericProjectManager::Internal::GenericProjectWizardDialog + + Import Existing Project + Import eines existierenden Projekts + + + Project Name and Location + Name und Verzeichnis des Projekts + + + Project name: + Projektname: + + + Location: + Pfad: + + + File Selection + Dateiauswahl Git - Add Remote - Git Remote hinzufügen + Browse &History... + Von &History... + + + &Show + &Anzeigen + + + Cherry &Pick + Cherry-&Pick + + + &Revert + &Rückgängig machen + + + Check&out + Aus&checken + + + &Close + &Schließen + + + Working directory: + Arbeitsverzeichnis: + + + Select Commit + Commit auswählen + + + Select Git Directory + Git-Verzeichnis auswählen + + + Error: Unknown reference + Fehler: Unbekannte Referenz + + + Error: Bad working directory. + Fehler: Ungültiges Arbeitsverzeichnis. + + + Error: Could not start Git. + Fehler: git konnte nicht gestartet werden. + + + Fetching commit data... + Commit-Daten werden geholt... + + + Change: + Änderung: + + + HEAD + HEAD + + + Select a Git Commit + Git Commit auswählen + + + &Archive... + &Archiv erzeugen... + + + Invalid revision + Ungültige Revision + + + REBASING + REBASING + + + REVERTING + REVERTING + + + CHERRY-PICKING + CHERRY-PICKING + + + MERGING + MERGING + + + Description: + Beschreibung: + + + Git Diff Project + Git Diff für Projekt + + + Create Local Branch + Lokalen Branch erstellen + + + Stash Description + Beschreibung + + + Rebase is in progress. What do you want to do? + Zur Zeit läuft ein Rebase-Vorgang. Was möchten Sie tun? + + + You need to commit changes to finish merge. +Commit now? + Sie müssen einen Commit der Änderungen ausführen, um den Merge abzuschließen. +Jetzt Commit ausführen? + + + No changes found. + Es wurden keine Änderungen gefunden. + + + Conflicts detected with commit %1. + Bei Commit %1 wurden Konflikte festgestellt. + + + Conflicts detected with files: +%1 + Bei dem Commit wurden Konflikte in den folgenden Dateien festgestellt: +%1 + + + Conflicts detected. + Es wurden Konflikte festgestellt. + + + Rebase, merge or am is in progress. Finish or abort it and then try again. + Es ist eine Rebase-, Merge- oder am-Operation aktiv. Bitte beenden oder brechen Sie sie ab und versuchen Sie es noch einmal. + + + Stash local changes and pop when %1 finishes. + Stash der lokalen Änderungen anlegen und bei Beendigung von %1 wiederherstellen. + + + Stash + Stash + + + Stash local changes and execute %1. + Stash der lokalen Änderungen anlegen und %1 ausführen. + + + Git SVN Log + Git SVN Log + + + Cannot determine the repository for "%1". + Das Repository von "%1" konnte nicht bestimmt werden. + + + Cannot parse the file output. + Die Ausgabe der Datei konnte nicht ausgewertet werden. + + + Stage Chunk + Chunk für Commit vorsehen + + + Unstage Chunk + Chunk aus Commit entfernen + + + Chunk successfully unstaged + Chunk wurde aus Commit entfernt + + + Chunk successfully staged + Chunk wurde für Commit vorgesehen + + + Git Diff Repository + Git Diff des Repositorys + + + Git Diff Files + Git Diff von Dateien + + + Cannot run "%1" in "%2": %3 + Das Kommando "%1" konnte im Verzeichnis "%2" nicht ausgeführt werden: %3 + + + Stage Selection (%n Lines) + + Auswahl für Commit vorsehen (eine Zeile) + Auswahl für Commit vorsehen (%n Zeilen) + + + + Unstage Selection (%n Lines) + + Auswahl aus Commit entfernen (eine Zeile) + Auswahl aus Commit entfernen (%n Zeilen) + + + + Git Diff "%1" + Git Diff "%1" + + + Git Diff Branch "%1" + Git Diff Branch "%1" + + + Git Log "%1" + Git Log "%1" + + + Git Reflog "%1" + Git Reflog "%1" + + + Cannot describe "%1". + Zur Änderung "%1" können keine Details angezeigt werden. + + + Git Show "%1" + Git Show "%1" + + + Generate %1 archive + Archiv für %1 erzeugen + + + Overwrite? + Überschreiben? + + + An item named "%1" already exists at this location. Do you want to overwrite it? + Es existiert bereits eine Datei des Namens "%1" an dieser Stelle. Wollen Sie sie überschreiben? + + + Git Blame "%1" + Blame für "%1" + + + Would you like to create a local branch? + Möchten Sie einen lokalen Branch erstellen? + + + Nothing to recover + Nichts wiederherzustellen + + + Files recovered + Dateien wiederhergestellt + + + Cannot obtain log of "%1": %2 + Das Log von "%1" konnte nicht erhalten werden: %2 + + + Cannot checkout "%1" of %2 in "%3": %4 + Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message + Die Dateien %2 der Revision "%1" im Repository "%3" konnten nicht ausgecheckt werden: %4 + + + Cannot find parent revisions of "%1" in "%2": %3 + Failed to find parent revisions of a SHA1 for "annotate previous" + Die übergeordnete Revision von "%1" im Repository "%2" konnte nicht bestimmt werden: %3 + + + Committed %n files. + + Commit mit einer Datei durchgeführt. + Commit mit %n Dateien durchgeführt. + + + + Amended "%1" (%n files). + + Commit "%1" geändert (eine Datei). + Commit "%1" geändert (%n Dateien). + + + + Only graphical merge tools are supported. Please configure merge.tool. + Nur grafische Merge-Tools werden unterstützt. Bitte konfigurieren Sie ein Merge-Tool. + + + Force Push + Push erzwingen + + + Push failed. Would you like to force-push <span style="color:#%1">(rewrites remote history)</span>? + Push ist fehlgeschlagen. Möchten Sie Push erzwingen <span style="color:#%1">(überschreibt den Verlauf)</span>? + + + No Upstream Branch + Kein Ziel-Branch + + + Push failed because the local branch "%1" does not have an upstream branch on the remote. + +Would you like to create the branch "%1" on the remote and set it as upstream? + Push ist fehlgeschlagen, weil der lokale Branch "%1" keinen Ziel-Branch im entfernten Repository hat. + +Möchten Sie den Branch "%1" im entfernten Repository erzeugen und ihn als Ziel-Branch festlegen? + + + Stash && &Pop + + + + &Discard + + + + Discard (reset) local changes and execute %1. + Verwerfen (reset) der lokalen Änderungen und %1 ausführen. + + + Execute %1 with local changes in working directory. + Führe %1 bei bestehenden lokalen Änderungen aus. + + + Cancel %1. + %1 Abbrechen. + + + &Reset to Change %1 + Zu&rücksetzen auf Änderung %1 + + + &Hard + &Hard + + + &Mixed + &Mixed + + + &Soft + &Soft + + + Di&ff Against %1 + Mit %1 &vergleichen + + + Di&ff %1 + + + + Diff &Against Saved %1 + Mit gespeichertem %1 &vergleichen + + + &Save for Diff + Für Vergleich &speichern + + + Detached HEAD + Detached HEAD + + + Cannot reset %n files in "%1": %2 + + Eine Datei in "%1" konnte nicht zurückgesetzt werden: %2 + %n Dateien in "%1" konnten nicht zurückgesetzt werden: %2 + + + + and %n more + Displayed after the untranslated message "Branches: branch1, branch2 'and %n more'" + + und ein weiterer + und %n weitere + + + + Cannot describe revision "%1" in "%2": %3 + Die Beschreibung der Revision "%1" im Repository "%2" kann nicht bestimmt werden: %3 + + + Cannot resolve stash message "%1" in "%2". + Look-up of a stash via its descriptive message failed. + Es konnte kein Stash mit der Beschreibung "%1" im Repository "%2" gefunden werden. + + + Cannot retrieve submodule status of "%1": %2 + Der Status des Sub-Modules "%1" konnte nicht bestimmt werden: %2 + + + There were warnings while applying "%1" to "%2": +%3 + Beim Anwenden der Patch-Datei "%1" auf das Repository "%2" traten Warnungen auf: +%3 + + + Cannot apply patch "%1" to "%2": %3 + Die Patch-Datei "%1" konnte nicht auf das Repository "%2" angewandt werden: %3 + + + Submodules Found + Submodule gefunden + + + Would you like to update submodules? + Möchten Sie die Submodule aktualisieren? + + + Cannot obtain status: %1 + Der Status konnte nicht abgefragt werden: %1 + + + Continue Merge + Mergen fortsetzen + + + Continue Rebase + Rebase fortsetzen + + + Continue + Fortsetzen + + + Continue Revert + Revert fortsetzen + + + You need to commit changes to finish revert. +Commit now? + Sie müssen einen Commit der Änderungen ausführen, um den Revert abzuschließen. +Jetzt Commit ausführen? + + + Commit + Commit + + + Continue Cherry-Picking + Cherry-Pick fortsetzen + + + You need to commit changes to finish cherry-picking. +Commit now? + Sie müssen einen Commit der Änderungen ausführen, um den Cherry-Pick abzuschließen. +Jetzt Commit ausführen? + + + Skip + Überspringen + + + <Detached HEAD> + <Detached HEAD> + + + Cannot launch "%1". + "%1" konnte nicht gestartet werden. + + + The repository "%1" is not initialized. + Das Repository "%1" ist noch nicht initialisiert. + + + Cannot retrieve last commit data of repository "%1". + Die Daten des letzten Commits im Repository "%1" konnte nicht bestimmt werden. + + + <None> + <Kein> + + + <resolving> + + + + Filter commits by message or content. + + + + Show Date + + + + Show date instead of sequence. + + + + Reset + Zurücksetzen + + + All changes in working directory will be discarded. Are you sure? + Alle Änderungen im Arbeitsverzeichnis werden verworfen. Sind Sie sicher? + + + Amended "%1". + Commit "%1" geändert. + + + Cannot commit %n files + + + + + + + + Revert + Rückgängig machen + + + The file has been changed. Do you want to revert it? + Die Datei wurde geändert. Möchten Sie die Änderungen rückgängig machen? + + + The file is not modified. + Datei ungeändert. + + + Conflicts Detected + Es wurden Konflikte festgestellt + + + Run &Merge Tool + &Merge-Tool ausführen + + + &Skip + Über&springen + + + There are no modified files. + Es gibt keine geänderten Dateien. + + + No commits were found + Es konnten keine Commits gefunden werden + + + No local commits were found + Es konnten keine lokalen Commits gefunden werden + + + Uncommitted Changes Found + Ausstehende Änderungen gefunden + + + What would you like to do with local changes in: + Wie möchten Sie die folgenden lokalen Änderungen behandeln: + + + Cherr&y-Pick %1 + + + + Re&vert %1 + + + + C&heckout %1 + + + + &Interactive Rebase from %1... + + + + &Log for %1 + + + + Sh&ow file "%1" on revision %2 + + + + Add &Tag for %1... + + + + <No repository> + <Kein Repository> + + + Repository: %1 + Repository: %1 + + + The binary "%1" could not be located in the path "%2" + Die ausführbare Datei "%1" konnte nicht im Pfad "%2" gefunden werden + + + General Information + Allgemeine Informationen + + + Repository: + Repository: + + + repository + Repository + + + Branch: + Branch: + + + branch + branch + + + <a href="head">Show HEAD</a> + + + + Commit Information + Informationen zu Commit + + + Author: + Autor: + + + Email: + E-Mail-Adresse: + + + By&pass hooks + &Hooks umgehen + + + Sign off + Unterschreiben + + + Note that huge amount of commits might take some time. + Beachten Sie, dass eine hohe Anzahl Commits lange Wartezeiten hervorrufen kann. + + + Miscellaneous + Sonstige Einstellungen + + + Pull with rebase + pull mit rebase + + + Set "HOME" environment variable + Umgebungsvariable "HOME" setzen + + + Gitk + Gitk + + + Arguments: + Argumente: + + + Configuration + Konfiguration + + + Prepend to PATH: + PATH voranstellen: + + + Command: + Kommando: + + + Stashes + Stashes + + + Name + Name + + + Branch + Branch + + + Message + Bezeichnung + + + Do you want to delete all stashes? + Möchten Sie alle Stashes löschen? + + + Do you want to delete %n stash(es)? + + Möchten Sie einen Stash löschen? + Möchten Sie %n Stashes löschen? + + + + Delete &All... + &Alle löschen... + + + &Delete... + &Löschen... + + + R&estore... + &Wiederherstellen... + + + Restore to &Branch... + Restore a git stash to new branch to be created + Als &Branch wiederherstellen... + + + Re&fresh + &Aktualisieren + + + Delete Stashes + Löschen von Stashes + + + Repository Modified + Repository geändert + + + %1 cannot be restored since the repository is modified. +You can choose between stashing the changes or discarding them. + %1 kann nicht wiederhergestellt werden, da Änderungen im Repository vorhanden sind. +Sie können die Änderungen in einem Stash ablegen oder zurücksetzen. + + + Discard + Zurücksetzen + + + Restore Stash to Branch + Als Branch wiederherstellen + + + Stash Restore + Stash wiederherstellen + + + Would you like to restore %1? + Möchten Sie %1 wiederherstellen? + + + Error restoring %1 + Fehler beim Wiederherstellen von %1 + + + Set the environment variable HOME to "%1" +(%2). +This causes Git to look for the SSH-keys in that location +instead of its installation directory when run outside git bash. + Setze die Umgebungsvariable HOME auf "%1" +(%2). +Git wird an dieser Stelle statt in seinem Installationsverzeichnis nach SSH-Schlüsseln suchen, +wenn es außerhalb von git bash aufgerufen wird. + + + not currently set + momentan nicht gesetzt + + + currently set to "%1" + momentaner Wert "%1" + + + Git Repository Browser Command + Ausführbare Datei des Git-Repository-Browsers + + + Git + Git + + + Use the patience algorithm for calculating the differences. + "patience diff"-Algorithmus verwenden. + + + Patience + Patience + + + Ignore whitespace only changes. + Änderungen der Leerzeichen ignorieren. + + + Ignore Whitespace + Leerzeichen ignorieren + + + Hide the date of a change from the output. + Datum der Änderung in Ausgabe nicht anzeigen. + + + Omit Date + Datum weglassen + + + No Move Detection + Keine verschobenen Daten erkennen + + + Detect Moves Within File + Innerhalb der Datei verschobene Daten erkennen + + + Detect Moves Between Files + Zwischen Dateien verschobene Daten erkennen + + + Detect Moves and Copies Between Files + Zwischen Dateien verschobene oder kopierte Daten erkennen + + + Move detection + Verschobene Daten erkennen Name: @@ -14243,1647 +7847,6 @@ Gibt an, wie sich die Rücktaste bezüglich Einrückung verhält. &Push &Push - - - QmlProfiler - - QML Profiler - QML-Profiler - - - &Host: - &Host: - - - localhost - localhost - - - &Port: - &Port: - - - Sys&root: - Sys&root: - - - Start QML Profiler - QML-Profiler starten - - - Select an externally started QML-debug enabled application.<p>Commonly used command-line arguments are: - Wählen Sie eine extern gestartete Anwendung aus, die QML-Debugging erlaubt.<p>Häufig verwendete Kommandozeilenargumente sind: - - - Kit: - Kit: - - - - QtSupport - - Version name: - Name der Version: - - - qmake location: - QMake-Pfad: - - - Edit - Ändern - - - - QtSupport - - Remove - Entfernen - - - Add... - Hinzufügen... - - - Clean Up - Bereinigen - - - Register documentation: - Dokumentation registrieren: - - - Link with Qt... - Mit Qt verknüpfen... - - - - Valgrind - - Suppression File: - Ausschluss-Datei: - - - Suppression: - Ausschlüsse: - - - Select Suppression File - Ausschluss-Datei wählen - - - Save Suppression - Ausschlüsse speichern - - - - Valgrind - - Generic Settings - Allgemeine Einstellungen - - - Valgrind executable: - Ausführbare Datei von Valgrind: - - - Valgrind Command - Valgrind-Kommando - - - KCachegrind Command - KCachegrind-Kommando - - - Valgrind Suppression Files - Valgrind-Ausschlussdateien - - - Valgrind Suppression File (*.supp);;All Files (*) - Valgrind Ausschlussdatei (*.supp);;Alle Dateien (*) - - - Valgrind - Valgrind - - - Memory Analysis Options - Einstellungen zur Speicheranalyse - - - Backtrace frame count: - Stack-Frames: - - - Suppression files: - Ausschluss-Dateien: - - - Add... - Hinzufügen... - - - Remove - Entfernen - - - Track origins of uninitialized memory - Herkunft von nicht initialisiertem Speicher verfolgen - - - Profiling Options - Einstellungen des Profilers - - - Limits the amount of results the profiler gives you. A lower limit will likely increase performance. - Diese Einstellung beschränkt die Anzahl der Ergebnisse des Profilers. Kleinere Werte steigern die Geschwindigkeit. - - - Result view: Minimum event cost: - Minimale Ereigniskosten für Ergebnisanzeige: - - - % - % - - - Show additional information for events in tooltips - Zusätzliche Informationen zu Ereignissen in Tooltips anzeigen - - - Enable cache simulation - Cache-Simulation aktivieren - - - Enable branch prediction simulation - Simulation der Verzweigungsvorhersage aktivieren - - - Collect system call time - In Systemaufrufen verbrachte Zeit aufnehmen - - - Collect the number of global bus events that are executed. The event type "Ge" is used for these events. - Gibt an, ob die Anzahl der ausgeführten globalen Bus-Ereignisse aufgenommen werden soll. Der Ereignistyp "Ge" wird dafür verwendet. - - - Collect global bus events - Globale Bus-Ereignisse aufnehmen - - - Visualization: Minimum event cost: - Minimale Ereigniskosten für Visualisierung: - - - Detect self-modifying code: - Selbstmodifizierenden Code erkennen: - - - No - Nein - - - Only on Stack - Nur auf Stack - - - Everywhere - Überall - - - Everywhere Except in File-backend Mappings - Überall außer File-backend Mappings - - - Show reachable and indirectly lost blocks - Zeige erreichbare und indirekt verlorengegangene Blöcke - - - Check for leaks on finish: - Speicherlecks beim Beenden suchen: - - - Summary Only - Nur Zusammenfassung - - - Full - Vollständig - - - <html><head/><body> -<p>Does full cache simulation.</p> -<p>By default, only instruction read accesses will be counted ("Ir").</p> -<p> -With cache simulation, further event counters are enabled: -<ul><li>Cache misses on instruction reads ("I1mr"/"I2mr").</li> -<li>Data read accesses ("Dr") and related cache misses ("D1mr"/"D2mr").</li> -<li>Data write accesses ("Dw") and related cache misses ("D1mw"/"D2mw").</li></ul> -</p> - -</body></html> - <html><head/><body> -<p>Gibt an, ob eine vollständige Simulation des Caches erfolgen soll.</p> -<p>In der Vorgabeinstellungen werden nur Lesezugriffe für Anweisungen gezählt ("Ir").</p> -<p> -Bei vollständiger Cache-Simulation werden weitere Ereigniszähler aktiviert: -<ul><li>Cache-Fehlzugriffe beim Lesen von Anweisungen ("I1mr"/"I2mr").</li> -<li>Daten-Lesezugriffe ("Dr") und diesbezügliche Fehlzugriffe ("D1mr"/"D2mr").</li> -<li>Daten-Schreibzugriffe ("Dw") und diesbezügliche Fehlzugriffe ("D1mw"/"D2mw").</li></ul> -</p> - -</body></html> - - - <html><head/><body> -<p>Does branch prediction simulation.</p> -<p>Further event counters are enabled: </p> -<ul><li>Number of executed conditional branches and related predictor misses ( -"Bc"/"Bcm").</li> -<li>Executed indirect jumps and related misses of the jump address predictor ( -"Bi"/"Bim").</li></ul></body></html> - <html><head/><body> -<p>Gibt an, ob die Simulation der Verzweigungsvorhersage aktiviert ist.</p> -<p>Zusätzliche aktivierte Ereigniszähler: </p> -<ul><li>Zahl der ausgeführten bedingten Zweige und fehlerhaften Vorhersagen ( -"Bc"/"Bcm").</li> -<li>Ausgeführte indirekte Sprünge und fehlerhafte Vorhersagen der Sprungadresse ( -"Bi"/"Bim").</li></ul></body></html> - - - Collects information for system call times. - In Systemaufrufen verbrachte Zeit aufnehmen. - - - KCachegrind executable: - Ausführbare Datei von KCachegrind: - - - - VcsBase::VcsConfigurationPage - - Configuration - Konfiguration - - - No version control set on "VcsConfiguration" page. - Do not translate "VcsConfiguration", because it is the id of a page. - Kein Versionskontrollsystem auf der Seite "VcsConfiguration" angegeben. - - - "vcsId" ("%1") is invalid for "VcsConfiguration" page. Possible values are: %2. - Do not translate "VcsConfiguration", because it is the id of a page. - "vcsId" ("%1") ist für die Seite "VcsConfiguration" ungültig. Mögliche Werden sind: %2. - - - Please configure <b>%1</b> now. - Bitte konfigurieren Sie jetzt <b>%1</b>. - - - No known version control selected. - Kein Versionskontrollsystem ausgewählt. - - - - FlowSpecifics - - Flow - Anordnung - - - Spacing - Abstand - - - Layout Direction - Layout-Richtung - - - - GridSpecifics - - Grid - Gitter - - - Columns - Spalten - - - Rows - Zeilen - - - Flow - Anordnung - - - Horizontal item alignment - Horizontale Ausrichtung - - - Vertical item alignment - Vertikale Ausrichtung - - - Spacing - Abstand - - - Layout Direction - Layout-Richtung - - - - GridViewSpecifics - - Grid View - Gitteranzeige - - - Cache - Cache - - - Cache buffer - Cache-Puffer - - - Flow - Anordnung - - - Navigation wraps - Tastennavigation bricht um - - - Determines whether the grid wraps key navigation. - ? - Bestimmt, ob das Grid bei Tastennavigation umbricht. - - - Snap mode - Einrasten - - - Determines how the view scrolling will settle following a drag or flick. - Bestimmt, wie die Anzeige nach einer Drag- oder -Flick-Operation zum Stehen kommt. - - - Grid View Highlight - Hervorhebung im Grid View - - - Range - Bereich - - - Highlight range - Bereich hervorheben - - - Move duration - Dauer der Bewegung - - - Move animation duration of the highlight delegate. - Dauer der Bewegungsanimation des hervorgehobenen Delegates. - - - Move speed - Geschwindigkeit - - - Move animation speed of the highlight delegate. - Geschwindigkeit der Bewegungsanimation des hervorgehobenen Delegates. - - - Preferred begin - Anfang - - - Preferred highlight begin - must be smaller than Preferred end. - Beginn der Hervorhebung - muss kleiner sein als der Endwert. - - - Preferred end - Ende - - - Preferred highlight end - must be larger than Preferred begin. - Ende der Hervorhebung - muss größer sein als der Anfangswert. - - - Follows current - Aktuellem Element folgen - - - Determines whether the highlight is managed by the view. - Bestimmt, ob die Hervorhebung vom View verwaltet wird. - - - Cell Size - Zellengröße - - - Layout Direction - Layout-Richtung - - - - ListViewSpecifics - - List View - List View - - - Cache - Cache - - - Cache buffer - Cache-Puffer - - - Navigation wraps - Tastennavigation bricht um - - - Determines whether the grid wraps key navigation. - Bestimmt, ob das Grid bei Tastennavigation umbricht. - - - Orientation - Ausrichtung - - - Orientation of the list. - Ausrichtung der Liste. - - - Snap mode - Einrasten - - - Determines how the view scrolling will settle following a drag or flick. - Bestimmt, wie die Anzeige nach einer Drag- oder -Flick-Operation zum Stehen kommt. - - - Spacing - Abstand - - - Spacing between items. - Abstand zwischen Elementen. - - - List View Highlight - Hervorhebung im List View - - - Range - Bereich - - - Highlight range - Bereich hervorheben - - - Move duration - Dauer der Bewegung - - - Move animation duration of the highlight delegate. - Dauer der Bewegungsanimation des hervorgehobenen Delegates. - - - Move speed - Geschwindigkeit - - - Move animation speed of the highlight delegate. - Geschwindigkeit der Bewegungsanimation des hervorgehobenen Delegates. - - - Resize duration - Dauer der Größenänderung - - - Resize animation duration of the highlight delegate. - Dauer der Größenänderungsanimation des hervorgehobenen Delegates. - - - Preferred begin - Anfang - - - Preferred highlight begin - must be smaller than Preferred end. - Beginn der Hervorhebung - muss kleiner sein als der Endwert. - - - Preferred end - Ende - - - Preferred highlight end - must be larger than Preferred begin. - Ende der Hervorhebung - muss größer sein als der Anfangswert. - - - Follows current - Aktuellem Element folgen - - - Determines whether the highlight is managed by the view. - Bestimmt, ob die Hervorhebung vom View verwaltet wird. - - - Layout Direction - Layout-Richtung - - - - PathViewSpecifics - - Path View - Path View - - - Drag margin - Rand bei Drag-Operation - - - Flick deceleration - Abbremsung der Flick-Interaktion - - - A user cannot drag or flick a PathView that is not interactive. - Bei einem nicht-interaktiven PathView kann der Nutzer keine Drag- oder Flick-Operationen durchführen. - - - Offset - Abstand - - - Specifies how far along the path the items are from their initial positions. This is a real number that ranges from 0.0 to the count of items in the model. - Gibt an, wie weit die Elemente des Pfades von ihren initialen Positionen entfernt sind. Es ist ein Fließkommawert im Bereich von 0 bis zur Anzahl der Elemente im Modell. - - - Item count - Anzahl der Elemente - - - pathItemCount: number of items visible on the path at any one time. - pathItemCount: Anzahl der zu einer gegebenen Zeit sichtbaren Elemente entlang des Pfades. - - - Path View Highlight - Hervorhebung im Path View - - - Highlight range - Bereich hervorheben - - - Move duration - Dauer der Bewegung - - - Move animation duration of the highlight delegate. - Dauer der Bewegungsanimation des hervorgehobenen Delegates. - - - Preferred begin - Anfang - - - Preferred highlight begin - must be smaller than Preferred end. Note that the user has to add a highlight component. - Beginn der Hervorhebung - muss kleiner sein als der Endwert. Beachten Sie, dass der Benutzer eine Hervorhebungs-Komponente hinzufügen muss. - - - Preferred highlight end - must be larger than Preferred begin. Note that the user has to add a highlight component. - Ende der Hervorhebung - muss größer sein als der Anfangswert. Beachten Sie, dass der Benutzer eine Hervorhebungs-Komponente hinzufügen muss. - - - Preferred end - Ende - - - Interactive - Interaktiv - - - Range - Bereich - - - - RowSpecifics - - Row - Zeile - - - Spacing - Abstand - - - Layout Direction - Layout-Richtung - - - - Valgrind - - Callee - Aufgerufene Funktion - - - Caller - Aufrufer - - - Cost - Kosten - - - Calls - Aufrufe - - - - Valgrind - - Previous command has not yet finished. - Das vorangegangene Kommando ist noch nicht beendet. - - - Dumping profile data... - Schreibe Profiling-Daten aus... - - - Resetting event counters... - Setze Ereigniszähler zurück... - - - Pausing instrumentation... - Pausiere Überwachung... - - - Unpausing instrumentation... - Setze Überwachung fort... - - - An error occurred while trying to run %1: %2 - Bei der Ausführung von %1 trat ein Fehler auf: %2 - - - Callgrind dumped profiling info - Callgrind hat die Profiling-Information ausgeschrieben - - - Callgrind unpaused. - Callgrind fortgesetzt. - - - - Valgrind - - Function: - Funktion: - - - File: - Datei: - - - Object: - Objekt: - - - Called: - Aufgerufen: - - - %n time(s) - - einmal - %n mal - - - - Events - Ereignisse - - - Self costs - Eigene Kosten - - - (%) - (%) - - - Incl. costs - Einschließliche Kosten - - - (%1%) - (%1%) - - - %1 cost spent in a given function excluding costs from called functions. - %1 Kosten in einer gegebenen Funktion auschließlich der Kosten aufgerufenener Funktionen. - - - %1 cost spent in a given function including costs from called functions. - %1 Kosten in einer gegebenen Funktion einchließlich der Kosten aufgerufenener Funktionen. - - - Function - Funktion - - - Location - Pfad - - - Called - Aufgerufen - - - Self Cost: %1 - Eigene Kosten: %1 - - - Incl. Cost: %1 - Einschließliche Kosten: %1 - - - - Core::OutputWindow - - Elided %n characters due to Application Output settings - - Ein Zeichen wurde wegen der Einstellungen für die Ausgabe der Anwendung ausgelassen - %n Zeichen wurden wegen der Einstellungen für die Ausgabe der Anwendung ausgelassen - - - - [Discarding excessive amount of pending output.] - - [Überschüssige anstehende Ausgaben werden verworfen.] - - - - - CppTools::CppToolsSettings - - Global - Settings - Global - - - Qt - Qt - - - GNU - GNU - - - Old Creator - Veraltete Creator-Konvention - - - - ImageViewer - - Play Animation - Animation abspielen - - - Pause Animation - Animation anhalten - - - - Macros - - Macros - Makros - - - - ProjectExplorer::AbiWidget - - <custom> - <benutzerdefiniert> - - - - ProjectExplorer::Internal::AppOutputPane - - Stop - Anhalten - - - Attach debugger to this process - Debugger an diesen Prozess anhängen - - - Attach debugger to %1 - Debugger an %1 anhängen - - - Close Tab - Reiter schließen - - - Close All Tabs - Alle schließen - - - Close Other Tabs - Andere Reiter schließen - - - Re-run this run-configuration. - Ausführungskonfiguration erneut ausführen. - - - Stop running program. - Laufendes Programm anhalten. - - - Open Settings Page - Einstellungsseite öffnen - - - Application Output - Ausgabe der Anwendung - - - Application Output Window - Ausgabe der Anwendung - - - - CodeStyleSettingsPanelFactory - - Code Style - Coding-Stil - - - - ProjectExplorer::EditorConfiguration - - Project - Settings - Projekt - - - Project %1 - Settings, %1 is a language (C++ or QML) - Projekt %1 - - - - QmlDesigner::ComponentAction - - Edit sub components defined in this file. - In dieser Datei definierte Subkomponenten bearbeiten. - - - - QmlDesigner::NodeInstanceServerProxy - - Cannot Connect to QML Emulation Layer (QML Puppet) - Konnte keine Verbindung zur QML-Emulationsschicht (QML Puppet) herstellen - - - The executable of the QML emulation layer (QML Puppet) may not be responding. Switching to another kit might help. - Die ausführbare Datei der QML-Emulationsschicht (QML-Puppet) reagiert nicht. Versuchen Sie ein anderes Kit zu verwenden. - - - QML Emulation Layer (QML Puppet) Crashed - QML-Emulationsschicht (QML-Puppet) ist abgestürzt - - - You are recording a puppet stream and the emulations layer crashed. It is recommended to reopen the Qt Quick Designer and start again. - Sie nehmen einen Ausgabestrom von Puppet auf, welche abgestürzt ist. Es wird empfohlen, Qt Quick Designer neu zu öffnen und von vorn zu beginnen. - - - - QmlJSTools - - Code Style - Coding-Stil - - - Qt Quick - Qt Quick - - - Global - Settings - Global - - - Qt - Qt - - - Old Creator - Veraltete Creator-Konvention - - - - QmlProfiler - - Load QML Trace - QML-Trace laden - - - Save QML Trace - QML-Trace speichern - - - A QML Profiler analysis is still in progress. - Eine QML-Profiler-Analyse läuft noch. - - - Start QML Profiler analysis. - Starte QML-Profiler-Analyse. - - - Disable Profiling - Profiling deaktivieren - - - Enable Profiling - Profiling aktivieren - - - The application finished before a connection could be established. No data was loaded. - Die Anwendung wurde beendet, bevor eine Verbindung aufgebaut werden konnte. Es wurden keine Daten geladen. - - - Could not connect to the in-process QML profiler within %1 s. -Do you want to retry and wait %2 s? - Innerhalb von %1 s konnte keine Verbindung zum QML-Profiler im Prozess hergestellt werden. -Wollen Sie es noch einmal versuchen und %2 s warten? - - - %1 s - %1 s - - - Elapsed: %1 - Vergangen: %1 - - - QML traces (*%1 *%2) - QML-Traces (*%1 *%2) - - - Saving Trace Data - Speichere Trace-Daten - - - Loading Trace Data - Lade Trace-Daten - - - You are about to discard the profiling data, including unsaved notes. Do you want to continue? - Sie sind dabei die Profildaten einschließlich ungespeicherter Notizen zu verwerfen. Wollen Sie fortfahren? - - - Application finished before loading profiled data. -Please use the stop button instead. - Die Anwendung wurde vor dem Laden der Profildaten beendet. -Bitte verwenden Sie den Stop-Button. - - - Starting a new profiling session will discard the previous data, including unsaved notes. -Do you want to save the data first? - Wenn Sie eine neue Profiling-Sitzung beginnen, werden die Profildaten einschließlich ungespeicherter Notizen verworfen. -Wollen Sie die Daten vorher speichern? - - - Discard data - Daten löschen - - - Search timeline event notes. - Notizen zu Ereignissen in der Zeitleiste durchsuchen. - - - Hide or show event categories. - Ereigniskategorien verstecken oder anzeigen. - - - Failed to connect. - Verbindung fehlgeschlagen. - - - - BaseQtVersion - - Name: - Name: - - - Invalid Qt version - Ungültige Qt-Version - - - ABI: - ABI: - - - Source: - Quelle: - - - mkspec: - mkspec: - - - qmake: - qmake: - - - Default: - Vorgabe: - - - Version: - Version: - - - No Qt version. - Keine Qt-Version. - - - Invalid Qt version. - Ungültige Qt-Version. - - - Requires Qt 5.0.0 or newer. - Erfordert Qt 5.0.0 oder neuer. - - - This Qt Version does not contain Qt Quick Compiler. - Diese Qt-Version enthält keinen Qt Quick Compiler. - - - Requires Qt 5.3.0 or newer. - Erfordert Qt 5.3.0 oder neuer. - - - - QtSupport - - <specify a name> - <Geben Sie einen Namen an> - - - Auto-detected - Automatisch bestimmt - - - Manual - Benutzerdefiniert - - - Do you want to remove all invalid Qt Versions?<br><ul><li>%1</li></ul><br>will be removed. - Möchten Sie alle ungültigen Qt-Versionen entfernen? <br><ul><li>%1</li></ul><br> wird entfernt. - - - No compiler can produce code for this Qt version. Please define one or more compilers for: %1 - Kein Compiler kann für diese Qt-Version Code erzeugen. Bitte richten Sie einen oder mehrere Compiler ein, geeignet für: %1 - - - The following ABIs are currently not supported: %1 - Die folgenden ABIs werden gegenwärtig nicht unterstützt: %1 - - - Select a qmake Executable - Wählen Sie die ausführbare qmake-Datei aus - - - Qmake Not Executable - Qmake ist nicht ausführbar - - - This Qt version was already registered as "%1". - Diese Qt-Version ist bereits unter "%1" registriert. - - - Qt version %1 for %2 - Qt-Version %1 für %2 - - - Name - Name - - - qmake Location - QMake-Pfad - - - Highest Version Only - Nur höchste Version - - - All - Alle - - - Remove Invalid Qt Versions - Ungültige Qt-Versionen entfernen - - - Display Name is not unique. - Der Anzeigename ist nicht einmalig. - - - Not all possible target environments can be supported due to missing compilers. - Es können nicht alle Zielumgebungen unterstützt werden, da einige Compiler fehlen. - - - Debugging Helper Build Log for "%1" - Erstellungsprotokoll der Ausgabe-Hilfsbibliothek für "%1" - - - Qt Version Already Known - Qt-Version bereits bekannt - - - The qmake executable %1 could not be added: %2 - Die ausführbare qmake-Datei %1 konnte nicht hinzugefügt werden: %2 - - - Incompatible Qt Versions - Inkompatible Qt-Versionen - - - The Qt version selected must match the device type. - Die ausgewählte Qt-Version muss dem Gerät entsprechen. - - - Linking with a Qt installation automatically registers Qt versions and kits. - Die Verknüpfung mit einer Qt-Installation registriert Qt-Versionen und -Kits automatisch. - - - %1's resource directory is not writable. - Das Ressourcenverzeichnis von %1 ist nicht beschreibbar. - - - %1 is part of a Qt installation. - %1 ist Teil einer Qt-Installation. - - - %1 is currently linked to "%2". - %1 ist zur Zeit mit "%2" verknüpft. - - - Qt installation information was not found in "%1". Choose a directory that contains one of the files %2 - In "%1" wurde keine Qt-Installationsinformation gefunden. Wählen Sie ein Verzeichnis, das eine der folgenden Dateien enthält %2 - - - Choose Qt Installation - Qt-Installation wählen - - - The change will take effect after restart. - Die Änderung wird nach einem Neustart wirksam. - - - Qt installation path: - Qt-Installationspfad: - - - Choose the Qt installation directory, or a directory that contains "%1". - Wählen Sie das Qt-Installationsverzeichnis oder ein Verzeichnis, das "%1" enthält. - - - Cancel - Abbrechen - - - Remove Link - Verknüpfung entfernen - - - - TextEditor::BehaviorSettingsPage - - Global - Settings - Global - - - Behavior - Verhalten - - - - TextEditor::FunctionHintProposalWidget - - %1 of %2 - %1 von %2 - - - - TextEditor::Internal::SnippetsCollection - - Cannot create user snippet directory %1 - Das Snippet-Verzeichnis des Nutzers konnte nicht erstellt werden: %1 - - - - Valgrind - - %1%2 - %1%2 - - - in %1 - in %1 - - - - Valgrind - - Suppress Error - Fehler unterdrücken - - - - Valgrind - - External Errors - Externe Fehler - - - Suppressions - Ausschlüsse - - - Definite Memory Leaks - Definitive Speicherlecks - - - Possible Memory Leaks - Potenzielle Speicherlecks - - - Use of Uninitialized Memory - Benutzung von nicht initialisiertem Speicher - - - Show issues originating outside currently opened projects. - Zeigt Fehler an, deren Ursache außerhalb der aktuellen Projekte liegt. - - - These suppression files were used in the last memory analyzer run. - Die Ausschlussdateien wurden beim letzten Lauf der Speicheranalyse verwendet. - - - Invalid Calls to "free()" - Ungültige Aufrufe von "free()" - - - Memory Issues - Speicherprobleme - - - Memcheck - Memcheck - - - Analyzing Memory - Analysiere Speicher - - - Load External XML Log File - Externe XML-Logdatei laden - - - Go to previous leak. - Gehe zu vorigem Speicherleck. - - - Go to next leak. - Gehe zum nächsten Speicherleck. - - - Error Filter - Fehlerfilter - - - Valgrind Analyze Memory uses the Memcheck tool to find memory leaks. - Die Speicheranalyse von Valgrind benutzt das Programm "memcheck", um Speicherlecks zu finden. - - - Valgrind Memory Analyzer - Speicheranalyse mit Valgrind - - - Valgrind Memory Analyzer with GDB - Speicheranalyse mit Valgrind und GDB - - - Valgrind Analyze Memory with GDB uses the Memcheck tool to find memory leaks. -When a problem is detected, the application is interrupted and can be debugged. - Die Speicheranalyse mit Valgrind und GDB benutzt das Programm "memcheck", um Speicherlecks zu finden. -Wird ein Problem gefunden, dann wird die Anwendung angehalten und kann untersucht werden. - - - Heob - Heob - - - Ctrl+Alt+H - Ctrl+Alt+H - - - Valgrind Memory Analyzer (External Application) - Speicheranalyse mit Valgrind (externe Anwendung) - - - Heob: No local run configuration available. - Heob: Keine lokale Ausführungskonfiguration verfügbar. - - - Heob: No toolchain available. - Heob: Keine Toolchain verfügbar. - - - Heob: No executable set. - Heob: Keine ausführbare Datei angegeben. - - - Heob: Cannot find %1. - Heob: Kann %1 nicht finden. - - - The %1 executables must be in the appropriate location. - Die ausführbaren %1-Dateien müssen am richtigen Ort liegen. - - - Heob used with MinGW projects needs the %1 DLLs for proper stacktrace resolution. - Für MinGW-Projekte braucht Heob die %1-DLLs zur korrekten Stacktrace-Auflösung. - - - Heob: Cannot create %1 process (%2). - Avoiding "heob64.exe-Prozess" - Heob: Kann Prozess %1 nicht erzeugen (%2). - - - A Valgrind Memcheck analysis is still in progress. - Ein Valgrind Speichertest läuft noch. - - - Start a Valgrind Memcheck analysis. - Starte einen Valgrind Speichertest. - - - Start a Valgrind Memcheck with GDB analysis. - Starte einen Valgrind Speichertest mit GDB Analyse. - - - Open Memcheck XML Log File - Memcheck-XML-Logdatei öffnen - - - XML Files (*.xml);;All Files (*) - XML-Dateien (*.xml);;Alle Dateien (*) - - - Memcheck: Failed to open file for reading: %1 - Memcheck: Konnte Datei nicht zum Lesen öffnen: %1 - - - Memcheck: Error occurred parsing Valgrind output: %1 - Memcheck: Fehler beim Auswerten der Valgrind-Ausgabe: %1 - - - Memory Analyzer Tool finished. %n issues were found. - - Das Speicheranalysewerkzeug wurde beendet. Ein Problem wurde gefunden. - Das Speicheranalysewerkzeug wurde beendet. %n Probleme wurde gefunden. - - - - Log file processed. %n issues were found. - - Die Logdatei wurde verarbeitet. Ein Problem wurde gefunden. - Die Logdatei wurde verarbeitet. %n Probleme wurden gefunden. - - - - - Welcome - - Welcome - Willkommen - - - - Valgrind - - Last-level - Letzte Ebene - - - Instruction - Anweisung - - - Cache - Cache - - - Conditional branches - Bedingte Verzweigung - - - Indirect branches - Indirekte Verzweigung - - - level %1 - Ebene %1 - - - read - lesen - - - write - schreiben - - - mispredicted - falsch vorhergesagt - - - executed - ausgeführt - - - miss - Fehlschlag - - - access - Zugriff - - - Line: - Zeile: - - - Position: - Position: - - - - Utils::FileUtils - - Refusing to remove root directory. - Das Wurzelverzeichnis kann nicht entfernt werden. - - - Refusing to remove your home directory. - Das Nutzerverzeichnis (Home) kann nicht entfernt werden. - - - Failed to remove directory "%1". - Das Verzeichnis "%1" konnte nicht gelöscht werden. - - - Failed to remove file "%1". - Die Datei "%1" konnte nicht gelöscht werden. - - - Failed to create directory "%1". - Das Verzeichnis "%1" konnte nicht erstellt werden. - - - Could not copy file "%1" to "%2". - Die Datei "%1" konnte nicht nach "%2" kopiert werden. - - - Cannot open %1 for reading: %2 - Die Datei %1 kann nicht zum Lesen geöffnet werden: %2 - - - Cannot read %1: %2 - Datei %1 kann nicht gelesen werden: %2 - - - File Error - Dateifehler - - - Cannot write file %1: %2 - In die Datei %1 konnte nicht geschrieben werden: %2 - - - Cannot write file %1. Disk full? - Die Datei %1 konnte nicht geschrieben werden. Möglicherweise ist kein Speicherplatz mehr auf der Festplatte vorhanden? - - - %1: Is a reserved filename on Windows. Cannot save. - %1 ist ein von Windows reservierter Dateiname. Speichern fehlgeschlagen. - - - Cannot overwrite file %1: %2 - Die Datei %1 konnte nicht überschrieben werden: %2 - - - Cannot create file %1: %2 - Die Datei %1 konnte nicht erzeugt werden: %2 - - - Cannot create temporary file in %1: %2 - Es konnte keine temporäre Datei erstellt in %1 werden: %2 - - - Overwrite File? - Datei überschreiben? - - - Overwrite existing file "%1"? - Soll die Datei "%1" überschrieben werden? - - - - Valgrind - - %1 in %2 - %1 in %2 - - - %1:%2 in %3 - %1:%2 in %3 - - - - RemoteLinux - - New Generic Linux Device Configuration Setup - Einrichtung einer neuen Gerätekonfiguration für generisches Linux - - - - RemoteLinux - - Connection - Verbindung - - - - RemoteLinux - - Choose Public Key File - Datei mit öffentlichem Schlüssel auswählen - - - Public Key Files (*.pub);;All Files (*) - Öffentliche Schlüssel (*.pub);;Alle Dateien (*) - - - Deploying... - Sende Schlüssel... - - - Deployment finished successfully. - Schlüssel erfolgreich versandt. - - - Close - Schließen - - - - RemoteLinux - - Summary - Zusammenfassung - - - The new device configuration will now be created. -In addition, device connectivity will be tested. - Es wird eine neue Gerätekonfiguration erzeugt. -Zusätzlich wird die Verbindung zum Gerät getestet. - - - - Git Branch Name: Branch: @@ -15920,16 +7883,6 @@ Zusätzlich wird die Verbindung zum Gerät getestet. Checkout new branch Neuen Branch auschecken - - - GenericProjectManager::Internal::FilesSelectionWizardPage - - Files - Dateien - - - - Git Local Branches Lokale Branches @@ -15942,2137 +7895,6 @@ Zusätzlich wird die Verbindung zum Gerät getestet. Tags Tags - - - QmlJSTools - - &QML/JS - &QML/JS - - - Reset Code Model - Codemodell zurücksetzen - - - - text - - Text - Text - - - - textedit - - Text Edit - Text Edit - - - - textinput - - Text - Text - - - - MouseAreaSpecifics - - Enabled - Aktiviert - - - This property holds whether the item accepts mouse events. - Diese Eigenschaft bestimmt, ob das Element Mausereignisse akzeptiert. - - - Hover enabled - Hover aktiviert - - - Accepted buttons - Akzeptierte Tasten - - - This property holds the mouse buttons that the mouse area reacts to. - Diese Eigenschaft enthält die Maustasten, auf die die MouseArea reagiert. - - - Press and hold interval - pressAndHold-Zeitspanne - - - This property overrides the elapsed time in milliseconds before pressAndHold is emitted. - Diese Eigenschaft bestimmt vorrangig die Zeit, die verstreichen muss, bevor das pressAndHold-Signal gesendet wird. - - - Scroll gesture enabled - Bildlaufgeste aktiviert - - - This property controls whether this MouseArea responds to scroll gestures from non-mouse devices. - Diese Eigenschaft bestimmt, ob diese MouseArea auf Bildlaufgesten von Geräten reagiert, die keine Maus sind. - - - Cursor shape - Mauszeiger-Form - - - This property holds the cursor shape for this mouse area. - Diese Eigenschaft enthält die Form des Mauszeigers für diese MouseArea. - - - Prevent stealing - Stealing verhindern - - - This property controls whether the mouse events may be stolen from this MouseArea. - Diese Eigenschaft bestimmt, ob Stealing von Mausereignissen für diese MouseArea erlaubt ist. - - - Propagate composed events - Zusammengesetzte Ereignisse verbreiten - - - This property controls whether composed mouse events will automatically propagate to other MouseAreas. - Diese Eigenschaft bestimmt, ob zusammengesetzte Mausereignisse an andere MouseAreas verbreitet werden. - - - Drag - Ziehen - - - Target - Ziel - - - Sets the id of the item to drag. - Legt die ID des zu ziehenden Items fest. - - - Axis - Achse - - - Specifies whether dragging can be done horizontally, vertically, or both. - Legt fest, ob Ziehen horizontal, vertikal oder in beiden Richtung erlaubt ist. - - - Filter children - Children filtern - - - Specifies whether a drag overrides descendant MouseAreas. - Legt fest, ob Ziehen nachgeordnete MouseAreas überstimmt. - - - Threshold - Grenze - - - Determines the threshold in pixels of when the drag operation should start. - Bestimmt die Untergrenze in Pixeln, ab der eine Mausbewegung als Drag and Drop gewertet wird. - - - Smoothed - Glatt - - - If set to true, the target will be moved only after the drag operation has started. -If set to false, the target will be moved straight to the current mouse position. - Wenn wahr, wird das Zielobjekt erst bewegt, wenn das Ziehen begonnen hat. -Wenn falsch, wird das Zielobjekt sofort zur aktuellen Mouseposition bewegt. - - - This property holds whether hover events are handled. - Diese Eigenschaft legt fest, ob das Element Hover-Ereignisse akzeptiert. - - - Mouse Area - Mouse Area - - - - Core::Internal::ExternalTool - - Creates qm translation files that can be used by an application from the translator's ts files - Erzeugt aus den ts-Dateien des Übersetzers qm-Übersetzungsdateien, die von einer Anwendung genutzt werden können - - - Release Translations (lrelease) - Übersetzungen freigeben (lrelease) - - - Linguist - Linguist - - - Synchronizes translator's ts files with the program code - Synchronisiert die ts-Dateien des Übersetzers mit dem Quelltext - - - Update Translations (lupdate) - Übersetzungen aktualisieren (lupdate) - - - Opens the current file in Notepad - Öffnet die aktuelle Datei im Editor - - - Edit with Notepad - Mit Editor bearbeiten - - - Text - Text - - - Runs the current QML file with qmlscene. This requires Qt 5. - Führt die aktuelle QML-Datei mit qmlscene aus. Erfordert Qt 5. - - - Qt Quick 2 Preview (qmlscene) - Qt Quick 2-Vorschau (qmlscene) - - - Runs the current QML file with qmlviewer - Führt die aktuelle QML-Datei mit qmlviewer aus - - - Qt Quick - Qt Quick - - - Qt Quick 1 Preview (qmlviewer) - Qt Quick 1-Vorschau (qmlviewer) - - - Opens the current file in vi - Öffnet die aktuelle Datei in vi - - - Edit with vi - Mit vi bearbeiten - - - Error while parsing external tool %1: %2 - Fehler beim Auswerten der Ausgabe des externen Programms %1: %2 - - - System Environment - Systemumgebung - - - - ExtensionSystem::Internal::PluginErrorOverview - - The following plugins have errors and cannot be loaded: - Die folgenden Plugins sind fehlerhaft und konnten nicht geladen werden: - - - - Details: - Details: - - - Plugin Loader Messages - Meldungen der Plugin-Verwaltung - - - - QmlProfiler - - Memory Usage - Speicherverbrauch - - - Pixmap Cache - Pixmap Cache - - - Scene Graph - Scene Graph - - - Animations - Animationen - - - Painting - Zeichnen - - - Compiling - Kompilieren - - - Creating - Erstellen - - - Binding - Binding - - - Input Events - Eingabeereignisse - - - Debug Messages - Debugnachrichten - - - JavaScript - JavaScript - - - GUI Thread - GUI-Thread - - - Render Thread - Render-Thread - - - Render Thread Details - Render-Thread Details - - - Polish - Bereinigen - - - Wait - Warten - - - GUI Thread Sync - GUI-Thread Synchronisation - - - Render Thread Sync - Render-Thread Synchronisation - - - Render - Render - - - Swap - Tauschen - - - Render Preprocess - Render Preprocess - - - Render Update - Render Update - - - Render Bind - Render Bind - - - Render Render - Render Render - - - Material Compile - Material Compile - - - Glyph Render - Glyph Render - - - Glyph Upload - Glyph Upload - - - Texture Bind - Texture Bind - - - Texture Convert - Texture Convert - - - Texture Swizzle - Texture Swizzle - - - Texture Upload - Texture Upload - - - Texture Mipmap - Texture Mipmap - - - Texture Delete - Texture Löschen - - - - Utils::TextFileFormat - - Out of memory. - Es ist kein Speicher mehr verfügbar. - - - An encoding error was encountered. - Fehlerhafte Zeichenkodierung. - - - - Core::Internal - - Launching a file browser failed - Das Starten des Datei-Browsers schlug fehl - - - Unable to start the file manager: - -%1 - - - Der Dateibrowser konnte nicht gestartet werden: - -%1 - - - - - "%1" returned the following error: - -%2 - "%1" gab einen Fehler zurück: - -%2 - - - Launching Windows Explorer Failed - Das Starten des Windows-Explorers schlug fehl - - - Could not find explorer.exe in path to launch Windows Explorer. - Windows Explorer konnte nicht gestartet werden, da die Datei explorer.exe nicht im Pfad gefunden werden konnte. - - - Find in This Directory... - In diesem Verzeichnis suchen... - - - Show in Explorer - In Explorer anzeigen - - - Show in Finder - In Finder anzeigen - - - Show Containing Folder - Beinhaltendes Verzeichnis anzeigen - - - Open Command Prompt Here - Kommandoprompt öffnen - - - Open Terminal Here - Terminalfenster hier öffnen - - - Open Command Prompt With - Opens a submenu for choosing an environment, such as "Run Environment" - Kommandoprompt öffnen mit - - - Open Terminal With - Opens a submenu for choosing an environment, such as "Run Environment" - Terminalfenster öffnen mit - - - Deleting File Failed - Fehlschlag beim Löschen der Datei - - - Could not delete file %1. - Die Datei %1 konnte nicht gelöscht werden. - - - - BaseFileWizard - - Unable to create the directory %1. - Das Verzeichnis %1 kann nicht erstellt werden. - - - - QmlJSEditor - - Qt Quick - Qt Quick - - - - RemoteLinux - - No deployment action necessary. Skipping. - Alle Dateien sind auf dem aktuellen Stand, es ist keine Installation erforderlich. - - - No device configuration set. - Es ist keine Gerätekonfiguration eingestellt. - - - Connecting to device "%1" (%2). - Verbinde zu Mobilgerät "%1" (%2). - - - Could not connect to host: %1 - Es konnte keine Verbindung zum Host hergestellt werden: %1 - - - Did the emulator fail to start? - Ist der Emulator nicht gestartet? - - - Is the device connected and set up for network access? - Ist das Gerät verbunden und für Netzwerkzugriff eingerichtet? - - - Connection error: %1 - Verbindungsfehler: %1 - - - - RemoteLinux - - Cannot deploy: %1 - Fehlschlag beim Deployment von %1 - - - User requests deployment to stop; cleaning up. - Abbruch des Deployments durch Nutzer, Bereinigung. - - - Deploy step failed. - Deployment fehlgeschlagen. - - - Deploy step finished. - Deployment beendet. - - - - RemoteLinux - - Successfully uploaded package file. - Die Paketdatei wurde hochgeladen. - - - Installing package to device... - Installiere Paket auf Mobilgerät... - - - Package installed. - Paket installiert. - - - - RemoteLinux - - Failed to retrieve remote timestamp for file "%1". Incremental deployment will not work. Error message was: %2 - Der Zeitstempel der Datei "%1" konnte nicht gelesen werden. Inkrementelles Deployment wird daher nicht funktionieren. Die Fehlermeldung war: %2 - - - Unexpected stat output for remote file "%1": %2 - Unerwartete Ausgabe von "stat" für die entfernte Datei "%1": %2 - - - All files successfully deployed. - Alle Dateien erfolgreich versandt. - - - No files need to be uploaded. - Es müssen keine Dateien hochgeladen werden. - - - %n file(s) need to be uploaded. - - Eine Datei muss hochgeladen werden. - %n Dateien müssen hochgeladen werden. - - - - Local file "%1" does not exist. - Es gibt keine lokale Datei "%1". - - - Remote chmod failed for file "%1": %2 - "chmod" für die entfernte Datei "%1" ist fehlgeschlagen: %2 - - - - RemoteLinux - - Incremental deployment - Inkrementelles Deployment - - - Upload files via SFTP - Dateien mittels SFTP hochladen - - - - RemoteLinux - - Connecting to host... - Verbinde zu Host... - - - Checking kernel version... - Prüfe Kernel-Version... - - - uname failed: %1 - Fehlschlag des uname-Kommandos: %1 - - - uname failed. - Fehlschlag des uname-Kommandos. - - - Error gathering ports: %1 - Fehlschlag bei Prüfung der Ports: %1 - - - All specified ports are available. - Alle angegebenen Ports sind verfügbar. - - - The following specified ports are currently in use: %1 - Die folgenden angegebenen Ports sind auf dem Gerät in Verwendung: %1 - - - Checking whether an SFTP connection can be set up... - Prüfe, ob eine SFTP-Verbindung aufgebaut werden kann... - - - SFTP service available. - - SFTP-Dienst verfügbar. - - - - Error setting up SFTP connection: %1 - - Fehler beim Aufbau einer SFTP-Verbindung: %1 - - - - Checking whether rsync works... - Prüfe ob rsync funktioniert... - - - Failed to start rsync: %1 - - rsync konnte nicht gestartet weden: %1 - - - - rsync crashed. - - rsync ist abgestürzt. - - - - rsync failed with exit code %1: %2 - - rsync scheiterte mit dem Rückgabewert %1: %2 - - - - SFTP will be used for deployment, because rsync is not available. - - SFTP wird fürs Deployment verwendet, weil rsync nicht verfügbar ist. - - - - Deployment to this device will not work out of the box. - - Deployment auf dieses Gerät wird nicht von Anfang an funktionieren. - - - - rsync is functional. - - rsync funktioniert. - - - - Checking if specified ports are available... - Prüfe Verfügbarkeit der angegebenen Ports... - - - - RemoteLinux - - Preparing SFTP connection... - Bereite SFTP-Verbindung vor... - - - Package upload canceled. - Hochladen des Pakets abgebrochen. - - - Connection failed: %1 - Fehler beim Herstellen der Verbindung: %1 - - - Failed to upload package: %2 - Fehlschlag beim Hochladen des Pakets: %2 - - - - RemoteLinux - - Deploy to Remote Linux Host - Auf Linux-Mobilgerät ausführen - - - - RemoteLinux - - Error: No device - Fehler: Kein Gerät - - - Error: %1 - Fehler: %1 - - - Process exited with code %1. - Der Prozess wurde mit dem Rückgabewert %1 beendet. - - - Error running 'env': %1 - Fehler bei Ausführung des 'env'-Kommandos: %1 - - - Remote stderr was: "%1" - Fehlerausgabe: "%1" - - - - RemoteLinux - - Connection failure: %1 - Fehler beim Herstellen der Verbindung: %1 - - - Installing package failed. - Die Installation des Pakets schlug fehl. - - - Public key error: %1 - Fehler im öffentlich Schlüssel: %1 - - - Key deployment failed: %1. - Das Versenden des Schlüssels schlug fehl: %1. - - - - RemoteLinux - - Packaging finished successfully. - Paketierung erfolgreich abgeschlossen. - - - Packaging failed. - Die Paketerstellung schlug fehl. - - - Creating tarball... - Tarball erzeugen... - - - Package modified files only - Nur geänderte Dateien einpacken - - - Tarball up to date, skipping packaging. - Tarball auf aktuellem Stand, Paketierung wird übersprungen. - - - Error: tar file %1 cannot be opened (%2). - Fehler: Die tar-Datei '%1' kann nicht geöffnet werden (%2). - - - No remote path specified for file "%1", skipping. - Der Datei "%1" ist kein entfernter Pfad zugeordnet, sie wird übersprungen. - - - Error writing tar file "%1": %2. - Fehler beim Schreiben der tar-Datei "%1": %2. - - - Error reading file "%1": %2. - Fehler beim Lesen der Datei "%1": %2. - - - Adding file "%1" to tarball... - Füge Datei "%1" zu Tarball hinzu... - - - Cannot add file "%1" to tar-archive: path too long. - Die Datei "%1" kann nicht zu dem Tar-Archiv hinzugefügt werden: Der Pfad ist zu lang. - - - Error writing tar file "%1": %2 - Fehler beim Schreiben der tar-Datei "%1": %2 - - - Tarball creation not possible. - Erstellung eines Tarballs nicht möglich. - - - Create tarball: - Tarball erzeugen: - - - Create tarball - Tarball erzeugen - - - - RemoteLinux - - %1 (default) - %1 (Vorgabe) - - - - RemoteLinux - - No tarball creation step found. - Es konnte kein passender Schritt zur Erzeugung eines Tarballs gefunden werden. - - - Deploy tarball via SFTP upload - Deployment eines tar-Pakets mittels SFTP - - - - TextEditor::Internal::CodeStyleDialog - - Edit Code Style - Coding-Stil bearbeiten - - - Code style name: - Coding Style: - - - You cannot save changes to a built-in code style. Copy it first to create your own version. - Die eingebauten Coding-Stile können nicht geändert werden. Erstellen Sie eine zuerst eine Kopie. - - - Copy Built-in Code Style - Kopiere eingebauten Coding-Stil - - - %1 (Copy) - %1 (Kopie) - - - - TextEditor::CodeStyleSelectorWidget - - Copy Code Style - Coding Style kopieren - - - Code style name: - Coding Style: - - - %1 (Copy) - %1 (Kopie) - - - Delete Code Style - Coding Style löschen - - - Are you sure you want to delete this code style permanently? - Möchten Sie diesen Coding-Stil endgültig löschen? - - - Delete - Löschen - - - Import Code Style - Coding Style importieren - - - Code styles (*.xml);;All files (*) - Coding-Stile (*.xml);;Alle Dateien (*) - - - Cannot import code style from %1 - Der Coding-Stil kann nicht von %1 importiert werden - - - Export Code Style - Coding-Stil exportieren - - - %1 [proxy: %2] - %1 [proxy: %2] - - - %1 [built-in] - %1 [eingebaut] - - - - TextEditor::FindInFiles - - Files in File System - Dateien aus Dateisystem - - - %1 "%2": - %1 "%2": - - - Path: %1 -Filter: %2 -Excluding: %3 -%4 - the last arg is filled by BaseFileFind::runNewSearch - Pfad: %1 -Filter: %2 -Außer: %3 -%4 - - - Search engine: - Suchwerkzeug: - - - Director&y: - &Verzeichnis: - - - Directory to Search - Suchverzeichnis - - - - UpdateInfo::Internal::UpdateInfoPlugin - - Checking for Updates - Aktualisierungen werden gesucht - - - New updates are available. Start the update? - Neue Aktualisierungen sind verfügbar. Wollen Sie eine Aktualisierung starten? - - - Start Update - Aktualisierung beginnen - - - Available updates: - Verfügbare Aktualisierungen: - - - No updates found. - Es wurden keine Aktualisierungen gefunden. - - - Could not determine location of maintenance tool. Please check your installation if you did not enable this plugin manually. - Das Verwaltungswerkzeug konnte nicht gefunden werden. Bitte überprüfen Sie Ihre Installation, sofern Sie das Plugin nicht manuell aktiviert haben. - - - The maintenance tool at "%1" is not an executable. Check your installation. - Das Verwaltungswerkzeug "%1" kann nicht ausgeführt werden. Bitte überprüfen Sie Ihre Installation. - - - Check for Updates - Nach Aktualisierungen suchen - - - - RemoteLinux - - No command line given. - Keine Kommandozeile angegeben. - - - Starting remote command "%1"... - Starte entferntes Kommando "%1"... - - - Remote process finished with exit code %1. - Der entfernte Prozess wurde beendet, Rückgabewert %1. - - - Remote command finished successfully. - Das entfernte Kommando wurde erfolgreich ausgeführt. - - - - Debugger - - C++ exception - C++-Ausnahme - - - Thread creation - Thread-Erzeugung - - - Thread exit - Thread-Terminierung - - - Load module: - Laden eines Moduls: - - - Unload module: - Entladen eines Moduls: - - - Output: - Ausgabe: - - - - TextEditor::CodeStyleEditor - - Edit preview contents to see how the current settings are applied to custom code snippets. Changes in the preview do not affect the current settings. - Ändern Sie den Inhalt der Vorschau, um zu sehen wie sich die gegenwärtigen Einstellungen auf die benutzerdefinierten Snippets auswirken. Änderungen der Vorschau haben keinen Einfluss auf die Einstellungen. - - - - Core::Internal::MimeTypeSettingsPage - - Registered MIME Types - Registrierte MIME-Typen - - - Reset all to default. - Alle auf Vorgabewert zurücksetzen. - - - Details - Details - - - Patterns: - Muster: - - - Type - Typ - - - Range - Bereich - - - Priority - Priorität - - - Add... - Hinzufügen... - - - Edit... - Bearbeiten... - - - Remove - Entfernen - - - Filter - Filter - - - Reset MIME Types - MIME-Typen zurücksetzen - - - Reset Handlers - Handler zurücksetzen - - - - CodePaster - - The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. - Das dateibasierte Paster-Protokoll dient zum Austausch von Textauschnitten mittels einfacher Dateien auf einem Netzlaufwerk. Die Dateien werden nicht gelöscht. - - - &Path: - &Pfad: - - - &Display: - &Anzeige: - - - entries - Einträge - - - <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> erlaubt das Senden an benutzerdefinierte Subdomänen (zum Beispiel creator.pastebin.com). Geben Sie das gewünschte Präfix an. - - - Server prefix: - Server-Präfix: - - - <i>Note: The plugin will use this for posting as well as fetching.</i> - <i>Hinweis: Es wird sowohl zum Senden als auch zum Abholen verwendet.</i> - - - Protocol: - Protokoll: - - - Paste: - Ausschnitt: - - - Send to Codepaster - An CodePaster senden - - - &Username: - &Nutzername: - - - <Username> - <Nutzername> - - - &Description: - &Beschreibung: - - - <Description> - <Beschreibung> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">&lt;Comment&gt;</p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:9pt;">&lt;Kommentar&gt;</span></p></body></html> - - - Parts to Send to Server - Zu versendende Ausschnitte - - - Patch 1 - Patch 1 - - - Patch 2 - Patch 2 - - - &Expires after: - &Verfällt nach: - - - Days - Tagen - - - Make public: - Öffentlich machen: - - - Display Output pane after sending a post - Ausgabebereich nach Senden anzeigen - - - Copy-paste URL to clipboard - Kopiere den URL in die Zwischenablage - - - Username: - Nutzername: - - - Default protocol: - Vorgabeprotokoll: - - - Make pasted content public by default - Hochgeladene Inhalte standardmäßig öffentlich machen - - - - CppTools::Internal::CppFileSettingsPage - - Headers - Header-Dateien - - - &Suffix: - &Endung: - - - S&earch paths: - &Suchpfade: - - - Comma-separated list of header paths. - -Paths can be absolute or relative to the directory of the current open document. - -These paths are used in addition to current directory on Switch Header/Source. - Kommaseparierte Liste von Pfaden für Header-Dateien. - -Die Pfade können absolut oder relativ zum Verzeichnis des gegenwärtig geöffneten Dokuments angegeben werden. - -Diese Pfade werden zusätzlich zum aktuellen Verzeichnis beim Wechseln zwischen Header- und Quelldatei verwendet. - - - Sources - Quelldateien - - - S&uffix: - E&ndung: - - - Se&arch paths: - S&uchpfade: - - - Comma-separated list of source paths. - -Paths can be absolute or relative to the directory of the current open document. - -These paths are used in addition to current directory on Switch Header/Source. - Kommaseparierte Liste von Pfaden für Quelldateien. - -Die Pfade können absolut oder relativ zum Verzeichnis des gegenwärtig geöffneten Dokuments angegeben werden. - -Diese Pfade werden zusätzlich zum aktuellen Verzeichnis beim Wechseln zwischen Header- und Quelldatei verwendet. - - - &Lower case file names - &Kleinbuchstaben für Dateinamen verwenden - - - License &template: - Lizenz-&Vorlage: - - - &Prefixes: - &Präfixe: - - - Comma-separated list of header prefixes. - -These prefixes are used in addition to current file name on Switch Header/Source. - Kommaseparierte Liste der Header-Präfixe. - -Diese Präfixe werden zusätzlich zum Dateinamen beim Wechseln zwischen Header- und Quelldatei verwendet. - - - P&refixes: - P&räfixe: - - - Comma-separated list of source prefixes. - -These prefixes are used in addition to current file name on Switch Header/Source. - Kommaseparierte Liste der Quelldatei-Präfixe. - -Diese Präfixe werden zusätzlich zum Dateinamen beim Wechseln zwischen Header- und Quelldatei verwendet. - - - Include guards - Include-Guards - - - Uses "#pragma once" instead of "#ifndef" include guards. - Verwendet "#pragma once" statt Include-Guards mit "#ifndef". - - - Use "#pragma once" instead of "#ifndef" guards - "#pragma once" statt Include-Guards mit "#ifndef" verwenden - - - - Debugger - - &Port: - &Port: - - - - Debugger - - Start Remote Engine - Entfernte Engine starten - - - &Host: - &Host: - - - &Username: - &Nutzername: - - - &Password: - &Passwort: - - - &Engine path: - &Engine-Pfad: - - - &Inferior path: - Zu &debuggende Anwendung: - - - - ProjectExplorer::Internal::CodeStyleSettingsPropertiesPage - - Language: - Sprache: - - - - Tracing - - Selection - Auswahl - - - Start - Anfang - - - End - Ende - - - Duration - Dauer - - - Close - Schließen - - - - QmakeProjectManager - - qmake - QMakeStep default display name - qmake - - - No Qt version configured. - Keine Qt-Version konfiguriert. - - - Could not determine which "make" command to run. Check the "make" step in the build configuration. - Es konnte nicht bestimmt werden, welches "make"-Kommando ausgeführt werden soll. Überprüfen Sie den "make"-Schritt in der Build-Konfiguration. - - - Configuration unchanged, skipping qmake step. - Unveränderte Konfiguration, qmake-Schritt wird übersprungen. - - - <no Qt version> - <keine Qt-Version> - - - <no Make step found> - <kein Make-Schritt gefunden> - - - - QtSupport - - Debugging Helper Build Log - Erstellungsprotokoll der Ausgabe-Hilfsbibliothek - - - - RemoteLinux - - WizardPage - WizardPage - - - The name to identify this configuration: - Name der Konfiguration: - - - The device's host name or IP address: - Hostname oder IP-Adresse des Geräts: - - - The username to log into the device: - Nutzername für Geräte-Login: - - - - TextEditor::BehaviorSettingsWidget - - Typing - Beim Tippen - - - Enable automatic &indentation - Automatische Ein&rückung - - - Backspace indentation: - Einrückung bei Rücktaste: - - - <html><head/><body> -Specifies how backspace interacts with indentation. - -<ul> -<li>None: No interaction at all. Regular plain backspace behavior. -</li> - -<li>Follows Previous Indents: In leading white space it will take the cursor back to the nearest indentation level used in previous lines. -</li> - -<li>Unindents: If the character behind the cursor is a space it behaves as a backtab. -</li> -</ul></body></html> - - <html><head/><body> -Gibt an, wie sich die Rücktaste bezüglich Einrückung verhält. - -<ul> -<li>Keine: Kein besondere Behandlung, normales Verhalten der Rücktaste. -</li> - -<li>Vorangehender Einrückung folgen: In führenden Leerzeichen wird die Einfügemarke auf die nächstliegende Einrückung vorangehender Zeilen gestellt. -</li> - -<li>Ausrücken: Wenn das hinter der Einfügemarke befindliche Zeichen ein Leerzeichen ist, verhält sich die Rücktaste wie ein rückwärtiger Tabulator. -</li> -</ul></body></html> - - - - None - Keine - - - Follows Previous Indents - Vorangehender Einrückung folgen - - - Unindents - Ausrücken - - - Tab key performs auto-indent: - Tabulator-Taste bewirkt automatische Einrückung: - - - Never - Niemals - - - Always - Immer - - - In Leading White Space - Nur in Leerzeichen am Zeilenanfang - - - Cleanup actions which are automatically performed right before the file is saved to disk. - Korrekturen die unmittelbar vor dem Speichern durchgeführt werden. - - - Cleanups Upon Saving - Korrekturen beim Speichern - - - Removes trailing whitespace upon saving. - Leerzeichen am Zeilenende beim Abspeichern entfernen. - - - &Clean whitespace - &Leerzeichen bereinigen - - - In entire &document - Im &gesamten Dokument - - - Clean indentation - Einrückung korrigieren - - - &Ensure newline at end of file - &Zeilenvorschub am Dateiende anfügen - - - File Encodings - Datei-Zeichenkodierungen - - - Default encoding: - Zeichenkodierungs-Vorgabe: - - - UTF-8 BOM: - UTF-8 BOM: - - - Add If Encoding Is UTF-8 - Bei UTF-8-Zeichenkodierung hinzufügen - - - Keep If Already Present - Beibehalten, falls vorhanden - - - Always Delete - Immer entfernen - - - Mouse and Keyboard - Maus und Tastatur - - - Enable &mouse navigation - &Mausnavigation aktivieren - - - Enable scroll &wheel zooming - Zoom mittels Maus&rad aktivieren - - - Enable built-in camel case &navigation - Eingebaute CamelCase-&Navigation aktivieren - - - On Mouseover - Wenn sich der Mauszeiger über dem Element befindet - - - On Shift+Mouseover - Wenn sich der Mauszeiger über dem Element befindet und die Umschalttaste gedrückt ist - - - Show help tooltips using keyboard shortcut (Alt) - Hilfe-Tooltips mit der Tastatur aufrufen (Alt-Taste) - - - Show help tooltips using the mouse: - Hilfe-Tooltips mit der Maus aufrufen: - - - Cleans whitespace in entire document instead of only for changed parts. - Bereinigt Leerzeichen im gesamten Dokument und nicht nur in den geänderten Teilen. - - - Corrects leading whitespace according to tab settings. - Leerzeichen am Zeilenanfang entsprechend Tabulatoreinstellungen korrigieren. - - - Always writes a newline character at the end of the file. - Am Ende einer Datei stets einen Zeilenvorschub anfügen. - - - Hide mouse cursor while typing - Mauszeiger beim Tippen ausblenden - - - Pressing Alt displays context-sensitive help or type information as tooltips. - Drücken Sie die Alt-Taste um kontextabhängige Hilfe oder Typinformation als Tool-Tip anzuzeigen. - - - Using Select Block Up / Down actions will now provide smarter selections. - "Einen Block nach open/unten auswählen" funktioniert nun intelligenter. - - - Enable smart selection changing - Die Änderung der intelligenten Auswahl einschalten - - - <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 the text editor 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>Gibt an, wie sich der Texteditor bezüglich UTF-8 Byte Order Marks verhält. Zur Auswahl stehen:</p> -<ul ><li><i>Bei UTF-8-Zeichenkodierung hinzufügen</i> BOM bei UTF-8-Zeichenkodierung stets hinzufügen. Dies wird jedoch bei der Zeichenkodierung <i>System</i> nicht funktionieren, da der Editor in diesem Fall die Zeichenkodierung nicht bestimmen kann.</li> -<li><i>Beibehalten, falls vorhanden: </i>BOM ausschreiben, wenn beim Laden ein BOM festgestellt wurde.</li> -<li><i>Immer entfernen:</i> UTF-8 BOM niemals ausschreiben, existierende unter Umständen entfernen.</li></ul> -<p>Beachten Sie, dass UTF-8 BOMs selten sind und von einigen Editoren falsch behandelt werden. Daher ist es meist sinnlos sie hinzuzufügen.</p> -<p>Die Einstellung beeinflusst <b>nicht</b> die Verwendung von UTF-16 und UTF-32 BOMs.</p></body></html> - - - Default line endings: - Vorgabe für Zeilenenden: - - - For the file patterns listed, do not trim trailing whitespace. - Leerzeichen am Ende nicht in den aufgelisteten Dateitypen bereinigen. - - - Skip clean whitespace for file types: - Leerzeichen nicht in Dateitypen bereinigen: - - - List of wildcard-aware file patterns, separated by commas or semicolons. - Eine durch Kommas oder Semikolons getrennte Liste von Dateinamen. (Platzhalter sind möglich) - - - - TextEditor::Internal::CodeStyleSelectorWidget - - Current settings: - Gegenwärtige Einstellungen: - - - Copy... - Kopieren... - - - Edit... - Bearbeiten... - - - Remove - Entfernen - - - Export... - Exportieren... - - - Import... - Importieren... - - - - TextEditor::DisplaySettingsPage - - Display - Anzeige - - - Display line &numbers - Zeilen&nummern anzeigen - - - Highlight current &line - Aktuelle &Zeile hervorheben - - - Display &folding markers - Code&folding-Zeichen anzeigen - - - Highlight &blocks - &Blöcke hervorheben - - - Mark &text changes - &Textänderungen hervorheben - - - &Visualize whitespace - &Leerzeichen darstellen - - - &Animate matching parentheses - Passende Klammern &animieren - - - Auto-fold first &comment - Ersten &Kommentarblock einklappen - - - Center &cursor on scroll - Cursor beim Scrollen in der &Mitte halten - - - Text Wrapping - Umbruch - - - Enable text &wrapping - &Umbruch aktivieren - - - Display right &margin at column: - Rechten &Rand anzeigen bei Spalte: - - - &Highlight matching parentheses - Passende Klammern &hervorheben - - - Always open links in another split - Verweise immer in anderem geteilten Fenster öffnen - - - Display file encoding - Datei-Zeichenkodierung anzeigen - - - Shows tabs and spaces. - Tabulatoren und Leerzeichen darstellen. - - - Highlight search results on the scrollbar - Suchergebnisse in der Bildlaufleiste hervorheben - - - Animate navigation within file - Navigation innerhalb einer Datei animieren - - - Next to editor content - Neben Editorinhalt - - - Next to right margin - Am rechten Rand - - - Aligned at right side - Rechtsbündig - - - Line annotations - Zeilenannotationen - - - Between lines - Zwischen den Zeilen - - - - TextEditor::Internal::HighlighterSettingsPage - - Syntax Highlight Definition Files - Definitionsdateien für die Syntaxhervorhebung - - - Ignored file patterns: - Ausgeschlossene Datei-Suchmuster: - - - <html><head/><body><p>Highlight definitions are provided by the <a href="https://api.kde.org/frameworks/syntax-highlighting/html/index.html">KSyntaxHighlighting</a> engine.</p></body></html> - <html><head/><body><p>Definitionsdateien für die Syntaxhervorhebung werden von <a href="https://api.kde.org/frameworks/syntax-highlighting/html/index.html">KSyntaxHighlighting</a> bereitgestellt.</p></body></html> - - - User Highlight Definition Files - Dateien für benutzerdefinierte Syntaxhervorhebung - - - Reset Remembered Definitions - Gespeicherte Definitionen zurücksetzen - - - Reset definitions remembered for files that can be associated with more than one highlighter definition. - Gespeicherte Definitionen für Dateien, denen mehrere Definitionsdateien zur Syntaxhervorhebung zugeordnet werden können, zurücksetzen. - - - Download missing and update existing syntax definition files. - Fehlende Syntax-Definitionsdateien herunterladen und bestehende aktualisieren. - - - Download Definitions - Definitionen herunterladen - - - Reload externally modified definition files. - Extern geänderte Definitionsdateien neu laden. - - - Reload Definitions - Definitionen neu laden - - - Generic Highlighter - Generische Syntaxhervorhebung - - - Download finished - Herunterladen beendet - - - - TextEditor::Internal::SnippetsSettingsPage - - Group: - Gruppe: - - - Add - Hinzufügen - - - Remove - Entfernen - - - Revert Built-in - Internes Snippet zurücksetzen - - - Restore Removed Built-ins - Alle internen Snippets zurücksetzen - - - Reset All - Alle zurücksetzen - - - Error While Saving Snippet Collection - Fehler beim Speichern der Snippet-Sammlung - - - Error - Fehler - - - No snippet selected. - Kein Snippet ausgewählt. - - - Snippets - Snippets - - - - TextEditor::TabSettingsWidget - - Tabs And Indentation - Tabulatoren und Einrückung - - - Tab policy: - Tabulatorverhalten: - - - Spaces Only - Nur Leerzeichen - - - Tabs Only - Nur Tabulatoren - - - Mixed - Gemischt - - - Ta&b size: - Tabulator&weite: - - - &Indent size: - &Einrückung: - - - Align continuation lines: - Einrückung von Fortsetzungszeilen: - - - <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> -Bestimmt das Verhalten bezüglich der Einrückung von Fortsetzungszeilen. - -<ul> -<li>Keine Einrückung: Keine Einrückung zusätzlich zur logischen Einrückung. -<pre> -(tab)int i = foo(a, b -(tab)c, d); -</pre> -</li> - -<li>Leerzeichen: Zusätzliche Einrückung mittels Leerzeichen. -<pre> -(tab)int i = foo(a, b -(tab) c, d); -</pre> -</li> - -<li>Normale Einrückung: Benutze Tabulatoren oder Leerzeichen entsprechend obiger Konfiguration. -<pre> -(tab)int i = foo(a, b -(tab)(tab)(tab) c, d); -</pre> -</li> -</ul></body></html> - - - Not At All - Keine Einrückung - - - With Spaces - Leerzeichen - - - With Regular Indent - Benutze normale Einrückung - - - The text editor indentation setting is used for non-code files only. See the C++ and Qt Quick coding style settings to configure indentation for code files. - Die Einstellungen des Texteditors bezüglich Einrückung werden nur für Dateien verwendet, die keinen Code enthalten. Verwenden Sie die Einstellungen zu C++ und Qt Quick Coding-Style, um Einrückungen in Code-Dateien festzulegen. - - - <i>Code indentation is configured in <a href="C++">C++</a> and <a href="QtQuick">Qt Quick</a> settings.</i> - <i>Die Einrückung von Code wird in den <a href="C++">C++</a> und <a href="QtQuick">Qt Quick</a> Einstellungen konfiguriert.</i> - - - - VcsBase::Internal::CleanDialog - - Clean Repository - Repository bereinigen - - - Select All - Alles auswählen - - - - VcsBase::Internal::CommonSettingsPage - - Wrap submit message at: - Beschreibung umbrechen bei: - - - characters - Zeichen - - - An executable which is called with the submit message in a temporary file as first argument. It should return with an exit != 0 and a message on standard error to indicate failure. - Eine ausführbare Datei, die mit der Beschreibung in einer temporären Datei als erstem Kommandozeilenparameter aufgerufen wird. Bei Fehlschlag sollte sie einen Rückgabewert ungleich Null mit einer entsprechende Nachricht auf der Fehlerausgabe zurückgeben. - - - Submit message &check script: - Skript zur &Überprüfung der Beschreibung: - - - User/&alias configuration file: - Nutzer/&Alias-Konfigurationsdatei: - - - A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. - Eine Datei, die Zeilen mit Feldnamen (zum Beispiel "Reviewed-By:") enthält, die im Abgabefenster unter der Beschreibung erscheinen. - - - User &fields configuration file: - Nutzer&feld-Konfigurationsdatei: - - - &SSH prompt command: - Graphische &SSH-Passwortabfrage: - - - 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). - Kommando zur graphischen Passwortabfrage bei SSH-Authorisierung eines Repositorys -(siehe SSH-Dokumentation zur Umgebungsvariable SSH-ASKPASS). - - - A file listing nicknames in a 4-column mailmap format: -'name <email> alias <email>'. - Eine Datei, die Nutzernamen in einem vierspaltigen Format (mailmap) enthält: -'Name <E-Mail> Alias <E-Mail>'. - - - Reset information about which version control system handles which directory. - Die Zuordnung, welches Versionsverwaltungssystem welches Verzeichnis behandelt, zurücksetzen. - - - Reset VCS Cache - VCS-Cache zurücksetzen - - - - Utils::SettingsSelector - - Add - Hinzufügen - - - Remove - Entfernen - - - Rename - Umbenennen - - - Do you really want to delete the configuration <b>%1</b>? - Möchten Sie wirklich die Konfiguration <b>%1</b> löschen? - - - New name for configuration <b>%1</b>: - Neuer Name der Konfiguration <b>%1</b>: - - - Rename... - Umbenennen... - - - - Android - - Autogen - Display name for AutotoolsProjectManager::AutogenStep id. - Autogen - - - Autogen - Autogen - - - Arguments: - Argumente: - - - Configuration unchanged, skipping autogen step. - Unveränderte Konfiguration, autogen-Schritt wird übersprungen. - - - Autoreconf - Display name for AutotoolsProjectManager::AutoreconfStep id. - Autoreconf - - - Autoreconf - Autoreconf - - - Configuration unchanged, skipping autoreconf step. - Unveränderte Konfiguration, autoreconf-Schritt wird übersprungen. - - - Autotools Wizard - Autotools-Assistent - - - Please enter the directory in which you want to build your project. It is not recommended to use the source directory for building. This ensures that the source directory remains clean and enables multiple builds with different settings. - Bitte geben Sie das Verzeichnis ein, in dem das Projekt erstellt werden soll. Es wird empfohlen, nicht das Quellverzeichnis zum Erstellen zu verwenden. Das ermöglicht es, das Projekt mehrmals mit verschiedenen Einstellungen zu erstellen. - - - Build directory: - Build-Verzeichnis: - - - Build Location - Build-Verzeichnis - - - Configure - Display name for AutotoolsProjectManager::ConfigureStep id. - Konfigurieren - - - Configure - Konfigurieren - - - Configuration unchanged, skipping configure step. - Unveränderte Konfiguration, configure-Schritt wird übersprungen. - - - Parsing %1 in directory %2 - Werte %1 im Verzeichnis %2 aus - - - Parsing directory %1 - Werte Verzeichnis %1 aus - - - - Debugger - - Type Formats - Formate der Datentypen - - - Qt Types - Qt-Datentypen - - - Standard Types - Standard-Datentypen - - - Misc Types - Andere Datentypen - - - - Git untracked nicht unter Versionskontrolle @@ -18149,1087 +7971,6 @@ should a repository require SSH-authentication (see documentation on SSH and the Show log also for previous names of the file. Log auch für vorherige Namen der Datei anzeigen. - - - QtSupport - - Examples - Beispiele - - - Tutorials - Anleitungen - - - Copy Project to writable Location? - Projekt an schreibbaren Pfad kopieren? - - - <p>The project you are about to open is located in the write-protected location:</p><blockquote>%1</blockquote><p>Please select a writable location below and click "Copy Project and Open" to open a modifiable copy of the project or click "Keep Project and Open" to open the project in location.</p><p><b>Note:</b> You will not be able to alter or compile your project in the current location.</p> - <p>Das zu öffnende Projekt befindet sich in einem schreibgeschützten Verzeichnis:</p><blockquote>%1</blockquote><p>Bitte geben Sie ein schreibbares Verzeichnis an und wählen dann "Kopieren und öffne Projekt", um eine modifizierbare Kopie des Projektes erhalten, oder "Öffne Projekt hier", um das Projekt im gegenwärtigen Verzeichnis zu öffnen</p><p><b>Hinweis:</b> Im gegenwärtigen.Verzeichnis kann das Projekt weder compiliert noch modifiziert werden.</p> - - - &Location: - &Ziel: - - - &Copy Project and Open - &Kopiere und öffne Projekt - - - &Keep Project and Open - &Öffne Projekt hier - - - Cannot Use Location - Ziel kann nicht verwendet werden - - - The specified location already exists. Please specify a valid location. - Der angegebene Pfad existiert bereits. Bitte geben Sie einen gültigen Pfad ein. - - - Cannot Copy Project - Fehler beim Kopieren des Projekts - - - Search in Examples... - Suche in Beispielen... - - - Search in Tutorials... - Suche in Anleitungen... - - - - QmlJSEditor - - Wrap Component in Loader - Komponente in Loader einbetten - - - // TODO: Move position bindings from the component to the Loader. -// Check all uses of 'parent' inside the root element of the component. - // TODO: Move position bindings from the component to the Loader. -// Check all uses of 'parent' inside the root element of the component. - - - // Rename all outer uses of the id "%1" to "%2.item". - // Rename all outer uses of the id "%1" to "%2.item". - - - // Rename all outer uses of the id "%1" to "%2.item.%1". - - // Rename all outer uses of the id "%1" to "%2.item.%1". - - - - - QuickFix::ExtractFunction - - Extract Function - Funktion herausziehen - - - Extract Function Refactoring - Funktion herausziehen - - - Function name - Funktionsname - - - Access - Zugriff - - - - TextEditor::Internal::FindInOpenFiles - - Open Documents - Offene Dokumente - - - Open documents: - Offene Dokumente: - - - Open Documents -%1 - Offene Dokumente -%1 - - - - VcsBase::Internal::UrlTextCursorHandler - - Open URL in Browser... - URL in Browser öffnen... - - - Copy URL Location - URL kopieren - - - - VcsBase::Internal::EmailTextCursorHandler - - Send Email To... - Sende E-Mail an... - - - Copy Email Address - E-Mail Adresse kopieren - - - - QtSupport - - Qt Versions - Qt-Versionen - - - Qt Class Generation - Qt-Klassenerzeugung - - - - RemoteLinux - - Authentication type: - Art der Authentifizierung: - - - &Host name: - &Hostname: - - - IP or host name of the device - IP-Adresse oder Hostname des Geräts - - - &SSH port: - &SSH-Port: - - - Free ports: - Freie Ports: - - - Timeout: - Zeitlimit: - - - s - s - - - &Username: - &Nutzername: - - - Physical Device - Physisches Gerät - - - Emulator - Emulator - - - You will need at least one port. - Sie benötigen mindestens einen freien Port. - - - Create New... - Neu erstellen... - - - Machine type: - Gerätetyp: - - - GDB server executable: - Ausführbare Datei des GDB-Servers: - - - Leave empty to look up executable in $PATH - Wenn der Wert leer ist, wird die ausführbare Datei in $PATH gesucht - - - You can enter lists and ranges like this: '1024,1026-1028,1030'. - Sie können Listen und Bereiche wie folgt angeben: '1024,1026-1028,1030'. - - - &Check host key - Host-S&chlüssel prüfen - - - Default - Vorgabe - - - Specific &key - Aus&gewählter Schlüssel - - - - Todo - - Keywords - Schlüsselworte - - - Edit - Bearbeiten - - - Reset - Zurücksetzen - - - Scanning scope - Suchbereich - - - Scan the whole active project - Im gesamten aktiven Projekt suchen - - - Scan only the currently edited document - Nur im gegenwärtig bearbeiteten Dokument suchen - - - Scan the current subproject - Im aktuellen Teilprojekt suchen - - - - Core::DocumentManager - - Could not save the files. - error message - Die Dateien konnten nicht gespeichert werden. - - - File Error - Dateifehler - - - Error while saving file: %1 - Fehler beim Speichern der Datei: %1 - - - Overwrite? - Überschreiben? - - - An item named "%1" already exists at this location. Do you want to overwrite it? - Es existiert bereits eine Datei des Namens "%1" an dieser Stelle. Wollen Sie sie überschreiben? - - - Save File As - Datei speichern - - - Open File - Datei öffnen - - - Cannot reload %1 - %1 konnte nicht neu geladen werden - - - - Core::IDocument - - File was restored from auto-saved copy. Select Save to confirm or Revert to Saved to discard changes. - Die Datei wurde von einer Sicherheitskopie wiederhergestellt. Wählen Sie Speichern zur Bestätigung oder Wiederherstellen um die Änderungen zu verwerfen. - - - - ProjectExplorer::Internal::SessionModel - - Session - Sitzung - - - Last Modified - Zuletzt geändert - - - New Session Name - Name der neuen Sitzung - - - &Create - &Erstellen - - - Create and &Open - Erstellen und ö&ffnen - - - &Clone - &Klonen - - - Clone and &Open - Klonen und ö&ffnen - - - Rename Session - Sitzung umbenennen - - - &Rename - &Umbenennen - - - Rename and &Open - Umbenennen und ö&ffnen - - - - Todo - - Description - Beschreibung - - - File - Datei - - - Line - Zeile - - - - Todo - - To-Do Entries - To-do-Einträge - - - Current Document - Aktuelles Dokument - - - Scan only the currently edited document. - Nur im gegenwärtig bearbeiteten Dokument suchen. - - - Active Project - Aktives Projekt - - - Scan the whole active project. - Im gesamten aktiven Projekt suchen. - - - Subproject - Teilprojekt - - - Scan the current subproject. - Im aktuellen Teilprojekt suchen. - - - Show "%1" entries - "%1"-Einträge anzeigen - - - - QSsh::SshKeyCreationDialog - - SSH Key Configuration - SSH-Schlüsselkonfiguration - - - Options - Einstellungen - - - Key algorithm: - Schlüsselalgorithmus: - - - &RSA - &RSA - - - Key &size: - Schlüssel&länge: - - - Private key file: - Private Schlüsseldatei: - - - Browse... - Auswählen... - - - Public key file: - Öffentliche Schlüsseldatei: - - - &Generate And Save Key Pair - &Erzeuge und speichere Schlüsselpaar - - - &Cancel - &Abbrechen - - - The ssh-keygen tool was not found. - Das Programm "ssh-keygen" wurde nicht gefunden. - - - Refusing to overwrite existing private key file "%1". - Die private Schlüsseldatei "%1" wird nicht überschrieben. - - - The ssh-keygen tool at "%1" failed: %2 - Das Programm "ssh-keygen" in "%1" hat einen Fehler festgestellt: %2 - - - Key Generation Failed - Fehler bei Erzeugung der Schlüssel - - - Choose Private Key File Name - Name der privaten Schlüsseldatei auswählen - - - Choose... - Auswählen... - - - ECDSA - ECDSA - - - - Android - - Keystore - Keystore - - - Password: - Passwort: - - - Retype password: - Passwort noch einmal eingeben: - - - Show password - Passwort anzeigen - - - Certificate - Zertifikat - - - Alias name: - Alias: - - - Keysize: - Schlüssellänge: - - - Validity (days): - Gültigkeitsdauer (Tage): - - - First and last name: - Vor- und Nachname: - - - Organizational unit (e.g. Necessitas): - Organisationseinheit (z.B. Necessitas): - - - Organization (e.g. KDE): - Organisation (z.B. KDE): - - - Two-letter country code for this unit (e.g. RO): - Länderkennung für die Einheit (2 Buchstaben, z.B. RO): - - - Create a keystore and a certificate - Keystore und Zertifikat erzeugen - - - Certificate Distinguished Names - Namen des Zertifikats - - - City or locality: - Stadt: - - - State or province: - Bundesland oder Provinz: - - - Use Keystore password - Keystore-Passwort verwenden - - - Android Configuration - Android-Konfiguration - - - Android SDK location: - Android-SDK: - - - AVD Manager - AVD-Manager - - - System/data partition size: - Größe der System- und Datenpartition: - - - Mb - Mb - - - Remove - Entfernen - - - Automatically create kits for Android tool chains - Kits für Android-Toolchains automatisch erstellen - - - JDK location: - JDK-Pfad: - - - Start... - Start... - - - Add... - Hinzufügen... - - - Java Settings - Java-Einstellungen - - - Android Settings - Android-Einstellungen - - - SDK Manager - SDK-Manager - - - Android NDK list: - Android NDK-Liste: - - - Add the selected custom NDK. The toolchains and debuggers will be created automatically. - Das gewählte benutzerdefinierte NDK hinzufügen. Die Toolchains und Debugger werden automatisch erstellt. - - - Refresh List - Liste aktualisieren - - - Remove the selected NDK if it has been added manually. - Das gewählte NDK entfernen, wenn Sie es selbst hinzugefügt haben. - - - Select the path of the prebuilt OpenSSL binaries. - Wählen Sie den Pfad der bereits erstellten OpenSSL-Bibliotheken. - - - Open JDK download URL in the system's browser. - URL zum Herunterladen des Open JDK im Browser des System öffnen. - - - Open Android SDK download URL in the system's browser. - URL zum Herunterladen des Android SDK im Browser des System öffnen. - - - Open Android NDK download URL in the system's browser. - URL zum Herunterladen des Android NDK im Browser des System öffnen. - - - Set Up SDK - SDK einrichten - - - Android OpenSSL settings (Optional) - OpenSSL-Einstellungen für Android (optional) - - - OpenSSL binaries location: - Pfad zu OpenSSL-Binärdateien: - - - Download OpenSSL - OpenSSL herunterladen - - - - ProjectExplorer::Internal::DeviceFactorySelectionDialog - - Device Configuration Wizard Selection - Einrichtung einer neuen Gerätekonfiguration - - - Available device types: - Verfügbare Gerätetypen: - - - Start Wizard - Assistent starten - - - - ProjectExplorer::Internal::DeviceSettingsWidget - - Linux Device Configurations - Linux-Geräte-Konfigurationen - - - &Device: - &Gerät: - - - General - Allgemein - - - &Name: - &Name: - - - Type: - Typ: - - - Auto-detected: - Automatisch bestimmt: - - - Current state: - Status: - - - Type Specific - typspezifisch - - - &Add... - &Hinzufügen... - - - &Remove - &Entfernen - - - Set As Default - Als Vorgabe setzen - - - Yes (id is "%1") - Ja (id ist "%1") - - - No - Nein - - - Test - Test - - - Show Running Processes... - Laufende Prozesse anzeigen... - - - Devices - Geräte - - - - Todo - - Keyword - Schlüsselwort - - - Icon - Symbol - - - Color - Farbe - - - errorLabel - errorLabel - - - Keyword cannot be empty, contain spaces, colons, slashes or asterisks. - Das Schlüsselwort darf weder leer sein, noch Leerzeichen, Doppelpunkte, Schrägstriche oder Sternchen enthalten. - - - There is already a keyword with this name. - Ein Schlüsselwort dieses Namens existiert bereits. - - - - QmlDebug::QmlOutputParser - - The port seems to be in use. - Error message shown after 'Could not connect ... debugger:" - Der Port wird bereits verwendet. - - - The application is not set up for QML/JS debugging. - Error message shown after 'Could not connect ... debugger:" - Diese Anwendung ist nicht für QML/JS-Debuggen eingerichtet. - - - - QSsh::SftpFileSystemModel - - File Type - Dateityp - - - File Name - Dateiname - - - Error listing root directory "%1": %2 - Fehler beim Auslesen des Wurzelverzeichnisses "%1": %2 - - - Error listing contents of directory "%1": %2 - Fehler beim Auslesen des Verzeichnisses "%1": %2 - - - - Android - - Keystore password is too short. - Das Keystore-Passwort ist zu kurz. - - - Keystore passwords do not match. - Die Keystore-Passwörter stimmen nicht überein. - - - Certificate password is too short. - Das Passwort des Zertifikats ist zu kurz. - - - Certificate passwords do not match. - Die Passwörter des Zertifikats stimmen nicht überein. - - - Certificate alias is missing. - Der Alias des Zertifikats fehlt. - - - Invalid country code. - Ungültiger Ländercode. - - - Keystore Filename - Dateiname für Keystore - - - Keystore files (*.keystore *.jks) - Keystore-Dateien (*.keystore *.jks) - - - Error - Fehler - - - "%1" terminated. - "%1" beendet. - - - Select JDK Path - Pfad zum JDK auswählen - - - The selected path already has a valid SDK Tools package. - Der gewählte Pfad enthält bereits ein gültiges SDK-Tools-Paket. - - - Remove Android Virtual Device - Android Virtual Device entfernen - - - Cloning OpenSSL prebuilt libraries... - Bereits erstellte OpenSSL-Bibliotheken werden geklont... - - - Remove device "%1"? This cannot be undone. - Gerät "%1" entfernen? Dies kann nicht rückgängig gemacht werden. - - - Select an NDK - NDK auswählen - - - Add Custom NDK - Benutzerdefiniertes NDK hinzufügen - - - The selected path has an invalid NDK. This might mean that the path contains space characters, or that it does not have a "toolchains" sub-directory, or that the NDK version could not be retrieved because of a missing "source.properties" or "RELEASE.TXT" file - Der gewählte Pfad enthält ein ungültiges NDK. Das könnte daran liegen, dass der Pfad Leerzeichen enthält, dass er kein Unterverzeichnis "toolchains" enthält oder dass die NDK-Version nicht bestimmt werden konnte, weil die Dateien "source.properties" oder "RELEASE.TXT" fehlen - - - JDK path exists. - Pfad zum JDK existiert. - - - JDK path is a valid JDK root folder. - Pfad zum JDK ist ein gültiges JDK-Wurzelverzeichnis. - - - Java Settings are OK. - Java-Einstellungen sind korrekt. - - - Java settings have errors. - Java-Einstellungen sind fehlerhaft. - - - Android SDK path exists. - Pfad zum Android-SDK existiert. - - - Android SDK path writable. - Pfad zum Android-SDK ist schreibbar. - - - SDK tools installed. - SDK-Tools sind installiert. - - - Platform tools installed. - Plattformwerkzeuge sind installiert. - - - All essential packages installed for all installed Qt versions. - Für alle installierten Qt-Versionen sind alle notwendigen Pakete installiert. - - - Build tools installed. - Build-Werkzeuge sind installiert. - - - Platform SDK installed. - Plattform-SDK ist installiert. - - - OpenSSL path exists. - Pfad zu OpenSSL existiert. - - - QMake include project (openssl.pri) exists. - QMake-Include-Projekt (openssl.pri) existiert. - - - CMake include project (CMakeLists.txt) exists. - CMake-Include-Projekt (CMakeLists.txt) existiert. - - - OpenSSL Settings are OK. - OpenSSL-Einstellungen sind korrekt. - - - OpenSSL settings have errors. - OpenSSL-Einstellungen sind fehlerhaft. - - - Select Android SDK Folder - Android-SDK-Verzeichnis auswählen - - - Select OpenSSL Include Project File - Include-Projektdatei für OpenSSL wählen - - - OpenSSL Cloning - OpenSSL klonen - - - OpenSSL prebuilt libraries repository is already configured. - Das Repository für bereits erstellte OpenSSL-Bibliotheken ist bereits konfiguriert. - - - The selected download path (%1) for OpenSSL already exists and the directory is not empty. Select a different path or make sure it is an empty directory. - Das gewählte Zielverzeichnis zum Herunterladen von OpenSSL (%1) ist bereits vorhanden und nicht leer. Bitte wählen Sie einen anderen Pfad oder sorgen Sie dafür, dass er leer ist. - - - OpenSSL prebuilt libraries cloning failed. - Das Klonen bereits erstellter OpenSSL-Bibliotheken ist gescheitert. - - - Opening OpenSSL URL for manual download. - Die URL zum manuellen Herunterladen von OpenSSL wird geöffnet. - - - Open Download URL - URL zum Herunterladen öffnen - - - The Git tool might not be installed properly on your system. - Möglicherweise ist Git nicht korrekt auf Ihrem System installiert. - - - (SDK Version: %1, NDK Version: %2) - (SDK-Version: %1, NDK-Version: %2) - - - Download and install Android SDK Tools to %1? - Android-SDK-Tools herunterladen und nach %1 installieren? - - - Cancel - Abbrechen - - - Automatically download Android SDK Tools to selected location. - -If the selected path contains no valid SDK Tools, the SDK Tools package is downloaded -from %1, -and extracted to the selected path. -After the SDK Tools are properly set up, you are prompted to install any essential -packages required for Qt to build for Android. - Android-SDK-Tools automatisch an den gewählten Ort herunterladen. - -Wenn der gewählte Pfad keine gültigen SDK-Tools enthält, wird das Paket -von %1 -heruntergeladen und in den gewählten Pfad entpackt. -Nachdem die SDK-Tools vollständig eingerichtet wurden, werden Sie aufgefordert, alle -notwendigen Pakete zu installieren, die Qt benötigt, um für Android zu erstellen. - - - Automatically download OpenSSL prebuilt libraries. - -These libraries can be shipped with your application if any SSL operations -are performed. Find the checkbox under "Projects > Build > Build Steps > -Build Android APK > Additional Libraries". -If the automatic download fails, Qt Creator proposes to open the download URL -in the system's browser for manual download. - Bereits erstellte OpenSSL-Bibliotheken automatisch herunterladen. - -Diese Bibliotheken können mit Ihrer Anwendung weitergegeben werden, falls -diese SSL-Funktionen verwendet. Sie finden eine Checkbox unter "Projekte > Erstellen > -Schritte zum Erstellen > Android-APK erstellen > Zusätzliche Bibliotheken". -Falls das automatische Herunterladen scheitert, wird Qt Creator vorschlagen, die URL zum -manuellen Herunterladen im Browser des System zu öffnen. - - - Missing Android SDK Packages - Fehlende Android-SDK-Pakete - - - Android settings are OK. - Android-Einstellungen sind korrekt. - - - SDK manager runs (SDK Tools versions <= 26.x require exactly Java 1.8). - SDK-Manager läuft (SDK-Tools-Versionen <= 26.x benötigen die genaue Java-Version 1.8). - - - Android settings have errors. - Android-Einstellungen sind fehlerhaft. - - - Android SDK installation is missing necessary packages. Do you want to install the missing packages? - Der Android-SDK-Installation fehlen notwendige Pakete. Wollen Sie die fehlenden Pakete installieren? - - - - Bookmarks - - Alt+Meta+M - Alt+Meta+M - - - Alt+M - Alt+M - - - - Debugger - - Download of remote file succeeded. - Die Datei wurde erfolgreich heruntergeladen. - - - - Debugger - - Module Name - Modulname - - - Module Path - Modulpfad - - - Symbols Read - Gelesene Symbole - - - Symbols Type - Symboltyp - - - Start Address - Startadresse - - - End Address - Endadresse - - - - Debugger - - Success: - Erfolg: - - - <anonymous> - <anonym> - - - Properties - Eigenschaften - - - - Debugger - - Locals and Expressions - Lokale Variablen und Ausdrücke - - - - Git Changes Änderungen @@ -19266,18 +8007,6 @@ manuellen Herunterladen im Browser des System zu öffnen. Remote: Remote: - - Certificate Error - Zertifikatsfehler - - - Server certificate for %1 cannot be authenticated. -Do you want to disable SSL verification for this server? -Note: This can expose you to man-in-the-middle attack. - Server-Zertifikat für %1 kann nicht authentifiziert werden. -Möchten Sie die SSL-Verifikation für diesen Server abschalten? -Hinweis: Dies macht Sie anfällig für Man-in-the-middle-Angriffe. - (Draft) (Entwurf) @@ -19496,997 +8225,14 @@ gehören nicht zu den verifizierten Remotes in %3. Anderes Verzeichnis angeben?< &Commit &Commit - - - ProjectExplorer::DesktopDevice - - Local PC - Lokaler PC - - - Desktop - Desktop - - - - ProjectExplorer::DeviceManagerModel - - %1 (default for %2) - %1 (Vorgabe für %2) - - - - ProjectExplorer::IDevice - - Device - Gerät - - - - QmlProfiler - - Profiling application: %n events - - Profiling der Anwendung: ein Ereignis - Profiling der Anwendung: %n Ereignisse - - - - Profiling application - Profiling der Anwendung - - - No QML events recorded - Es wurden keine QML-Ereignisse aufgenommen - - - Loading buffered data: %n events - - Lade zwischengespeicherte Daten: ein Ereignis - Lade zwischengespeicherte Daten: %n Ereignisse - - - - Loading offline data: %n events - - Lade Offline-Daten: ein Ereignis - Lade Offline-Daten: %n Ereignisse - - - - Waiting for data - Warte auf Daten - - - Timeline - Zeitleiste - - - Analyze Current Range - Analysiere aktuellen Bereich - - - Analyze Full Range - Analysiere kompletten Bereich - - - Reset Zoom - Vergrößerung zurücksetzen - - - - Qnx - - Preparing remote side... - Bereite Gegenseite vor... - - - Project source directory: - Quellverzeichnis des Projekts: - - - Local executable: - Lokale ausführbare Datei: - - - - Qnx - - Executable on device: - Ausführbare Datei auf Mobilgerät: - - - Remote path not set - Der entfernte Pfad ist nicht eingestellt - - - Executable on host: - Ausführbare Datei auf Hostrechner: - - - Path to Qt libraries on device - Pfad zu den Qt-Bibliotheken auf dem Gerät - - - - RemoteLinux - - Unexpected output from remote process: "%1" - Unerwartete Ausgabe des entfernten Prozesses: "%1" - - - Cannot check for free disk space: "%1" is not an absolute path. - Der freie Speicherplatz kann nicht bestimmt werden: "%1" ist kein absoluter Pfad. - - - The remote file system has only %n megabytes of free space, but %1 megabytes are required. - - Das entfernte Dateisystem hat nur 1 Megabyte freien Speicherplatz; es sind aber %1 Megabytes erforderlich. - Das entfernte Dateisystem hat nur %n Megabytes freien Speicherplatz; es sind aber %1 Megabytes erforderlich. - - - - Remote process failed: %1 - Der entfernte Prozess schlug fehl: %1 - - - The remote file system has %n megabytes of free space, going ahead. - - Das entfernte Dateisystem hat 1 Megabyte freien Speicherplatz; setze fort. - Das entfernte Dateisystem hat %n Megabytes freien Speicherplatz; setze fort. - - - - - RemoteLinux - - Remote path to check for free space: - Zu überprüfender Pfad: - - - Required disk space: - Erforderlicher Speicherplatz: - - - MB - MB - - - Check for free disk space - Freien Plattenplatz überprüfen - - - - ResourceEditor - - Invalid file location - Ungültiger Pfad - - - Copy - Kopieren - - - Abort - Abbrechen - - - Skip - Überspringen - - - The file %1 is not in a subdirectory of the resource file. You now have the option to copy this file to a valid location. - Die Datei %1 befindet sich nicht in einem Unterverzeichnis der Ressourcendatei. Sie können sie jetzt an die richtige Stelle kopieren. - - - Choose Copy Location - Wählen Sie ein Ziel zum Kopieren - - - Overwriting Failed - Fehler beim Überschreiben - - - Could not overwrite file %1. - Die Datei %1 konnte nicht überschrieben werden. - - - Copying Failed - Fehler beim Kopieren - - - Could not copy the file to %1. - Die Datei konnte nicht nach %1 kopiert werden. - - - - ResourceEditor - - All files (*) - Alle Dateien (*) - - - - Android - - Run on Android - Ausführung auf Android-Gerät - - - Android Device - Android-Gerät - - - NDK is not configured in Devices > Android. - In Geräte > Android ist kein NDK konfiguriert. - - - SDK is not configured in Devices > Android. - In Geräte > Android ist kein SDK konfiguriert. - - - Failed to detect the ABIs used by the Qt version. Check the settings in Devices > Android for errors. - Die von der Qt-Version verwendeten ABIs konnten nicht bestimmt werden. Bitte prüfen Sie die Einstellungen in Geräte > Android auf Fehler. - - - Android - Qt Version is meant for Android - Android - - - - CppEditor::Internal::FunctionDeclDefLink - - Target file was changed, could not apply changes - Die Änderungen konnten nicht vorgenommen werden, da die Zieldatei geändert wurde - - - Apply changes to definition - Änderungen der Definition anwenden - - - Apply changes to declaration - Änderungen der Deklaration anwenden - - - Apply Function Signature Changes - Änderungen der Funktionssignatur anwenden - - - - QmlJSTools - - The type will only be available in the QML editors when the type name is a string literal. - Dieser Typ wird im QML Editor nur sichtbar sein, wenn der Typname ein Zeichenketten-Literal ist. - - - The module URI cannot be determined by static analysis. The type will be available -globally in the QML editor. You can add a "// @uri My.Module.Uri" annotation to let -the QML editor know about a likely URI. - Der Modul-URI kann nicht mittels statischer Analyse bestimmt werden. Der Typ wird im -QML-Editor global verfügbar sein. Sie können eine Annotation der Form "// @uri My.Module.Uri" -hinzufügen, um dem QML-Editor den wahrscheinlichen URI mitzuteilen. - - - must be a string literal to be available in the QML editor - muss eine Zeichenkette sein, um im QML-Editor verfügbar zu sein - - - - Qnx - - QNX %1 - Qt Version is meant for QNX - QNX %1 - - - No SDP path was set up. - Es ist kein SDP-Pfad eingestellt. - - - - ProjectExplorer::DeviceProcessesDialog - - Filter - Filter - - - &Update List - Liste &aktualisieren - - - &Kill Process - Prozess b&eenden - - - Kit: - Kit: - - - &Filter: - &Filter: - - - List of Processes - Liste der Prozesse - - - &Attach to Process - &An Prozess anhängen - - - - ProjectExplorer::DeviceProcessList - - Command Line - Kommandozeile - - - Process ID - Prozess-ID - - - - Utils::ElfReader - - "%1" is an invalid ELF object (%2) - "%1" ist keine gültige ELF-Objektdatei (%2) - - - "%1" is not an ELF object (file too small) - "%1" ist keine ELF-Objektdatei (Datei zu klein) - - - "%1" is not an ELF object - "%1" ist keine ELF-Objektdatei - - - odd cpu architecture - Unbekannte CPU-Architektur - - - odd endianness - Unbekannte Endianness - - - unexpected e_shsize - unerwartete e_shsize - - - unexpected e_shentsize - unerwartete e_shentsize - - - announced %n sections, each %1 bytes, exceed file size - - Es wurde eine Sektion der Größe %1 bytes angekündigt, was die Dateigröße überschreiten würde - Es wurden %n Sektionen der Größe %1 bytes angekündigt, was die Dateigröße überschreiten würde - - - - string table seems to be at 0x%1 - Die Zeichenkettentabelle ist offenbar bei 0x%1 - - - section name %1 of %2 behind end of file - Der Sektionsname %1 von %2 ist hinter dem Dateiende - - - - ProjectExplorer::DeviceUsedPortsGatherer - - Connection error: %1 - Verbindungsfehler: %1 - - - Remote process crashed: %1 - Der entfernte Prozess ist abgestürzt: %1 - - - Remote process failed; exit code was %1. - Der entfernte Prozess schlug fehl, Rückgabewert %1. - - - Remote error output was: %1 - Fehlerausgabe: %1 - - - - RemoteLinux - - Generic Linux - Generisches Linux - - - Generic Linux Device - Generisches Linux-Gerät - - - Deploy Public Key... - Öffentlichen Schlüssel senden... - - - Open Remote Shell - Entfernte Shell starten - - - Error running remote shell: %1 - Fehler bei der Ausführung der entfernten Shell: %1 - - - Error starting remote shell. - Fehler beim Start der entfernten Shell. - - - - ClearCase - - Check Out - Check Out - - - &Reserved - &Reserviert - - - &Unreserved if already reserved - &Nicht reserviert, falls bereits reserviert - - - &Preserve file modification time - Änderungsdatum von D&ateien beibehalten - - - Use &Hijacked file - Hijack: Unset read-only flag without check-out. This is used for local changes which the user does not want to commit. - Datei &hijacked verwenden - - - &Checkout comment: - &Checkout-Kommentar: - - - Configuration - Konfiguration - - - &Command: - &Kommando: - - - Diff - Diff - - - &External - &Extern - - - Arg&uments: - Arg&umente: - - - Miscellaneous - Sonstige Einstellungen - - - &History count: - Beschränkung der &History: - - - &Timeout: - &Zeitlimit: - - - s - s - - - &Automatically check out files on edit - Bearbeitete Dateien &automatisch auschecken - - - Aut&o assign activity names - Aktivitäten aut&omatisch Namen zuweisen - - - &Prompt on check-in - &Abgabe bestätigen - - - Di&sable indexer - Indexer ab&schalten - - - &Index only VOBs: - VOB: Versioned Object Base - Nur VOBs &indizieren: - - - Check this if you have a trigger that renames the activity automatically. You will not be prompted for activity name. - Aktivieren Sie diese Einstellung, wenn Sie einen Trigger verwenden, der die Aktivität automatisch umbenennt. Sie werden nicht nach dem Namen der Aktivität gefragt. - - - VOBs list, separated by comma. Indexer will only traverse the specified VOBs. If left blank, all active VOBs will be indexed. - VOB-Liste, durch Kommata getrennt. Der Indexer wird nur die hier angegebenen VOBs abarbeiten. Wenn das Feld leer ist, werden alle aktiven VOBs indiziert. - - - &Graphical (single file only) - &Grafisch (nur eine Datei) - - - Check out or check in files with no comment (-nc/omment). - Dateien ohne Kommentar aus- oder einchecken (-nc/omment). - - - Do &not prompt for comment during checkout or check-in - Beim Check-in oder Check-out &nicht nach Kommentaren fragen - - - Dialog - Dialog - - - &Save copy of the file with a '.keep' extension - &Kopie der Datei mit dem Suffix '.keep' erstellen - - - The file was changed. - Die Datei wurde geändert. - - - Confirm Version to Check Out - Bestätigung der Check-Out-Version - - - Version after &update - Version nach &Aktualisierung - - - Created by: - Erstellt von: - - - Created on: - Date - Erstellt am: - - - Multiple versions of "%1" can be checked out. Select the version to check out: - Mehrere Versionen von "%1", kommen für einen Checkout in Frage. Bitte wählen Sie eine Version für den Checkout: - - - &Loaded version - Ge&ladene Version - - - Note: You will not be able to check in this file without merging the changes (not supported by the plugin) - Hinweis: Diese Datei kann nicht ohne Mergen der Änderungen eingecheckt werden (durch das Plugin nicht unterstützt) - - - - Android - - AVD Name - AVD - Android Virtual Device - AVD-Name - - - API - API - - - Device Type - Gerätetyp - - - SD-card Size - Größe der SD-Karte - - - Target - Ziel - - - CPU/ABI - CPU/ABI - - - - ClearCase - - Select &activity: - Aktivität &auswählen: - - - Add - Hinzufügen - - - Keep item activity - Aktivität des Elements beibehalten - - - ClearCase Check In - ClearCase Einchecken - - - Chec&k in even if identical to previous version - Einchec&ken auch wenn zur Vorgängerversion identisch - - - &Check In - &Einchecken - - - ClearCase Command - ClearCase-Befehl - - - In order to use External diff, "diff" command needs to be accessible. - Zur Verwendung von externen Diffs muss ein "diff"-Kommando verfügbar sein. - - - DiffUtils is available for free download at http://gnuwin32.sourceforge.net/packages/diffutils.htm. Extract it to a directory in your PATH. - DiffUtils sind kostenlos erhältlich unter http://gnuwin32.sourceforge.net/packages/diffutils.htm . Bitte entpacken Sie sie in ein im Suchpfad befindliches Verzeichnis. - - - ClearCase - ClearCase - - - - Debugger - - Start Debugger - Debugger starten - - - Override server channel: - Kanal des Servers überschreiben: - - - For example, %1 - "For example, /dev/ttyS0, COM1, 127.0.0.1:1234" - Zum Beispiel %1 - - - Select Executable - Ausführbare Datei auswählen - - - Server port: - Server-Port: - - - Select Working Directory - Wählen Sie das Arbeitsverzeichnis aus - - - Select Server Start Script - Server-Startskript wählen - - - This option can be used to point to a script that will be used to start a debug server. If the field is empty, default methods to set up debug servers will be used. - Mit dieser Einstellung kann ein Skript zum Start eines Debug-Servers angegeben werden. Wenn das Feld leer ist, wird der Debug-Server mit den integrierten Methoden eingerichtet. - - - &Server start script: - &Server-Startskript: - - - Select SysRoot Directory - SysRoot-Verzeichnis auswählen - - - This option can be used to override the kit's SysRoot setting. - Diese Option kann verwendet werden, um die SysRoot-Einstellung des Kits zu überschreiben. - - - Override S&ysRoot: - S&ysRoot überschreiben: - - - This option can be used to send the target init commands. - Diese Option kann verwendet werden, um Kommandos zum Einrichten des Ziels zu senden. - - - &Init commands: - Kommandos zum E&inrichten: - - - This option can be used to send the target reset commands. - Diese Option kann verwendet werden, um Kommandos zum Zurücksetzen des Ziels zu senden. - - - &Reset commands: - Kommandos zum Zu&rücksetzen: - - - Select Location of Debugging Information - Pfad zu Debug-Information - - - Base path for external debug information and debug sources. If empty, $SYSROOT/usr/lib/debug will be chosen. - Basispfad für Debuginformationen und Quellen. Als Vorgabe wird $SYSROOT/usr/lib/debug benutzt. - - - &Kit: - &Kit: - - - Local &executable: - Ausführbare Datei (&lokal): - - - Command line &arguments: - Kommandozeilen&argumente: - - - Run in &terminal: - Im &Terminal ausführen: - - - Break at "&main": - Haltepunkt bei "&main": - - - Debug &information: - Debug&information: - - - Attach to %1 - An %1 anhängen - - - Normally, the running server is identified by the IP of the device in the kit and the server port selected above. -You can choose another communication channel here, such as a serial line or custom ip:port. - Normalerweise wird der laufende Server durch die IP-Adresse des im Kit angegebenen Geräts und den oben ausgewählten Port bestimmt. -Sie können hier eine andere Verbindung wählen, beispielsweise eine serielle Verbindung oder eine beliebige IP:Port-Kombination. - - - &Recent: - &Letzte: - - - - ProjectExplorer::Internal::DeviceProcessesDialogPrivate - - Remote Error - Entfernter Fehler - - - - ProjectExplorer::SshDeviceProcessList - - Connection failure: %1 - Fehler beim Herstellen der Verbindung: %1 - - - Process listing command failed with exit code %1. - Das Kommando zur Auflistung der Prozesse schlug mit Rückgabewert %1 fehl. - - - Error: Kill process failed: %1 - Fehlschlag beim Beenden des Prozesses: %1 - - - Remote stderr was: %1 - Fehlerausgabe: %1 - - - - ProjectExplorer::ToolChainConfigWidget - - Name: - Name: - - - - ResourceEditor - - The file name is empty. - Der Dateiname ist leer. - - - XML error on line %1, col %2: %3 - XML-Fehler in Zeile %1, Spalte %2: %3 - - - The <RCC> root element is missing. - Das Wurzelelement (<RCC>) fehlt. - - - Cannot save file. - Die Datei konnte nicht gespeichert werden. - - - - Core::IVersionControl - - Open with VCS (%1) - Öffnen mittels Versionskontrollsystem (%1) - - - - ProjectExplorer::Kit - - Unnamed - Unbenannt - - - Kit - Kit - - - Kit ID - Kit-ID - - - Kit filesystem-friendly name - Kit-Name zur Verwendung als Dateiname - - - The name of the currently active kit. - Der Name des aktiven Kits. - - - The name of the currently active kit in a filesystem-friendly version. - Der Name des aktiven Kits zur Verwendung als Dateiname. - - - The id of the currently active kit. - Die ID des aktiven Kits. - - - Clone of %1 - Kopie von %1 - - - Error: - Fehler: - - - Warning: - Warnung: - - - - ProjectExplorer::KitManager - - Desktop (%1) - Desktop (%1) - - - Desktop - Desktop - - - - ProjectExplorer::Internal::KitManagerConfigWidget - - Name: - Name: - - - Kit name and icon. - Kit-Name und Symbol. - - - <html><head/><body><p>The name of the kit suitable for generating directory names. This value is used for the variable <i>%1</i>, which for example determines the name of the shadow build directory.</p></body></html> - <html><head/><body><p>Der Name des Kits, der zum Erzeugen von Verzeichnisnamen geeignet ist. Dieser Wert wird für die Variable <i>%1</i> benutzt, die zum Beispiel den Namen des Shadow-Build-Verzeichnisses bestimmt.</p></body></html> - - - File system name: - Dateisystemname: - - - Kit icon. - Kit-Symbol. - - - Select Icon... - Symbol auswählen... - - - Reset to Device Default Icon - Auf vorgegebenes Gerätesymbol zurücksetzen - - - Display name is not unique. - Der anzuzeigende Name ist nicht einmalig. - - - Mark as Mutable - Als veränderlich kennzeichnen - - - Default for %1 - Vorgabe für %1 - - - Select Icon - Symbol auswählen - - - Images (*.png *.xpm *.jpg) - Bilddateien (*.png *.xpm *.jpg) - - - - ProjectExplorer::Internal::KitModel - - Auto-detected - Automatisch bestimmt - - - Manual - Benutzerdefiniert - - - %1 (default) - Mark up a kit as the default one. - %1 (Vorgabe) - - - Name - Name - - - - QtSupport - - %1 (invalid) - %1 (ungültig) - - - - ProjectExplorer::RunConfiguration - - Run Settings - Einstellungen zur Ausführung - - - Variables in the current run environment - Variablen in der aktuellen Ausführungsumgebung - - - The currently active run configuration's working directory - Das Arbeitsverzeichnis der aktiven Ausführungskonfiguration - - - No build system active - Kein Build-System aktiv - - - Run on %1 - Shown in Run configuration if no executable is given, %1 is device name - Auf %1 ausführen - - - %1 (on %2) - Shown in Run configuration, Add menu: "name of runnable (on device name)" - %1 (auf %2) - - - - Git Local Changes Found. Choose Action: Es wurden lokale Änderungen festgestellt: Wählen Sie eine Aktion: - - RadioButton - RadioButton - Discard Local Changes Lokale Änderungen verwerfen - - CheckBox - CheckBox - Checkout branch "%1" Branch "%1" auschecken @@ -20507,178 +8253,6 @@ Sie können hier eine andere Verbindung wählen, beispielsweise eine serielle Ve Create Branch Stash for Current Branch Branch-Stash für akuellen Branch anlegen - - - texteditv2 - - Text Edit - Text Edit - - - - textinputv2 - - Text - Text - - - - textv2 - - Text - Text - - - - VcsBase::SubmitEditorWidget - - Subversion Submit - Subversion Submit - - - Descriptio&n - &Beschreibung - - - F&iles - &Dateien - - - %1 %2/%n File(s) - - %1 %2/%n Datei - %1 %2/%n Dateien - - - - Update in progress - Aktualisierung läuft - - - Description is empty - Beschreibung ist leer - - - No files checked - Keine Dateien ausgewählt - - - &Commit - &Commit - - - Select All - Check all for submit - Alle für Submit auswählen - - - Unselect All - Uncheck all for submit - Alle für Submit abwählen - - - Select a&ll - A&lle auswählen - - - - ExtensionSystem::PluginErrorOverview - - Continue - Fortsetzen - - - - QmlJS::SimpleAbstractStreamReader - - Cannot find file %1. - Die Datei '%1' kann nicht gefunden werden. - - - Could not parse document. - Das Dokument konnte nicht ausgewertet werden. - - - Expected document to contain a single object definition. - Das Dokument sollte eine einzige Objektdefinition enthalten. - - - Expected expression statement after colon. - Nach dem Doppelpunkt wird ein Ausdruck erwartet. - - - - QmlJS::SimpleReader - - Property is defined twice. - Eigenschaft ist doppelt definiert. - - - - Bookmarks - - Note text: - Anmerkungstext: - - - Line number: - Zeilennummer: - - - - CPlusplus::CheckSymbols - - Only virtual functions can be marked 'override' - Nur virtuelle Funktionen können als 'override' gekennzeichnet werden - - - - CPlusPlus::CheckSymbols - - Only virtual functions can be marked 'final' - Nur virtuelle Funktionen können als 'final' gekennzeichnet werden - - - Expected a namespace-name - Angabe eines Namensraums erforderlich - - - Too many arguments - Zu viele Argumente - - - - CplusPlus::CheckSymbols - - Too few arguments - Zu wenige Argumente - - - - ImageViewer - - Color at %1,%2: red: %3 green: %4 blue: %5 alpha: %6 - Farbe bei %1,%2: rot: %3 grün: %4 blau: %5 alpha: %6 - - - Size: %1x%2, %3 byte, format: %4, depth: %5 - Größe: %1x%2, %3 Bytes, Format: %4, Tiefe: %5 - - - <Click to display color> - <Klicken Sie, um die Farbe anzuzeigen> - - - Copy Image - Bild kopieren - - - Open Image Viewer - Bildbetrachter öffnen - - - - Git Normal Normal @@ -20772,12 +8346,18289 @@ Entfernt: %4 Führen Sie git config --global merge.tool &lt;tool&gt; aus, um es zu konfigurieren, und versuchen Sie es erneut. - Merge tool process finished successfully. - Mergetool-Prozess wurde erfolgreich beendet. + Cannot find a Gerrit remote. Add one and try again. + Es wurde kein Remote-Repository für Gerrit gefunden. Bitte fügen Sie eines hinzu und versuchen es erneut. - Merge tool process terminated with exit code %1 - Der mergetool-Prozess wurde beendet, Rückgabewert %1 + Number of commits between %1 and %2: %3 + Anzahl der Commits zwischen %1 und %2: %3 + + + Are you sure you selected the right target branch? + Sind Sie sicher, dass Sie den richtigen Ziel-Branch gewählt haben? + + + Checked - Mark change as WIP. +Unchecked - Mark change as ready for review. +Partially checked - Do not change current state. + Markiert - Änderung als "WIP" markieren. +Nicht markiert - Änderung als bereit zur Prüfung markieren. +Teilmarkiert - Zustand nicht verändern. + + + Checked - Mark change as private. +Unchecked - Remove mark. +Partially checked - Do not change current state. + Markiert - Änderung als privat markieren. +Nicht markiert - Markierung entfernen. +Teilmarkiert - Zustand nicht verändern. + + + Supported on Gerrit 2.15 and later. + Unterstützt von Gerrit 2.15 und höher. + + + Checked - The change is a draft. +Unchecked - The change is not a draft. + Markiert - Die Änderung ist ein Entwurf. +Nicht markiert - Die Änderung ist kein Entwurf. + + + No remote branches found. This is probably the initial commit. + Keine Branches im Remote-Repository gefunden. Dies ist wahrscheinlich der erste Commit. + + + Branch name + Branch-Name + + + ... Include older branches ... + ... Ältere Branches einschließen ... + + + Reset to: + Zurücksetzen auf: + + + Select change: + Change auswählen: + + + Reset type: + Rücksetzmodus: + + + Mixed + Using the English original because this is what will be passed to git (--mixed). + Mixed + + + Hard + Hard + + + Soft + Soft + + + Sha1 + Sha1 + + + Refreshing Commit Data + Aktualisiere Commit-Daten + + + Filter by message + + + + Filter log entries by text in the commit message. + + + + Filter by content + + + + Filter log entries by added or removed string. + + + + Filter by author + + + + Filter log entries by author. + + + + &Blame %1 + &Blame %1 + + + Blame &Parent Revision %1 + Blame der über&geordneten Revision %1 + + + Stage Chunk... + Chunk für Commit vorsehen... + + + Unstage Chunk... + Chunk aus Commit entfernen... + + + Tree (optional) + Baum (optional) + + + Can be HEAD, tag, local or remote branch, or a commit hash. +Leave empty to search through the file system. + Kann HEAD sein, ein Tag oder ein lokaler oder entfernter Branch oder ein Commit-Hash. +Leer lassen, um das Dateisystem zu durchsuchen. + + + Recurse submodules + In Submodule hinabsteigen + + + Git Grep + Git Grep + + + Ref: %1 +%2 + Ref: %1 +%2 + + + Git Show %1:%2 + Git Show %1:%2 + + + Authentication + Authentifizierung + + + <html><head/><body><p>Gerrit server with HTTP was detected, but you need to set up credentials for it.</p><p>To get your password, <a href="LINK_PLACEHOLDER"><span style=" text-decoration: underline; color:#007af4;">click here</span></a> (sign in if needed). Click Generate Password if the password is blank, and copy the user name and password to this form.</p><p>Choose Anonymous if you do not want authentication for this server. In this case, changes that require authentication (like draft changes or private projects) will not be displayed.</p></body></html> + <html><head/><body><p>Ein Gerrit-Server mit HTTP wurde erkannt, aber Sie müssen Zugangsdaten angeben.</p><p>Um Ihr Passwort zu erhalten, <a href="LINK_PLACEHOLDER"><span style=" text-decoration: underline; color:#007af4;">klicken Sie hier</span></a>. (Melden Sie sich an, wenn nötig.). Wenn das Passwortfeld leer ist, klicken Sie "Generate Password" und kopieren den Benutzernamen und das Passwort in dieses Formular.</p><p>Wählen Sie "Anonym", wenn Sie keine Authentifizierung für diesen Server wünschen. In diesem Fall werden Änderungen, die eine Authentifizierung benötigen (wie "Drafts" oder private Projekte), nicht angezeigt.</p></body></html> + + + &Password: + &Passwort: + + + Server: + Server: + + + Anonymous + Anonym + + + Refresh Remote Servers + Remote-Server aktualisieren + + + Fallback + Fallback + + + Include Old Entries + Alte Einträge einschließen + + + Include Tags + Tags anzeigen + + + Refresh + Aktualisieren + + + Include branches and tags that have not been active for %n days. + + Branches und Tags einschließen, die seit einem Tag nicht benutzt wurden. + Branches und Tags einschließen, die seit %n Tagen nicht benutzt wurden. + + + + Create Git Repository... + Git-Repository erzeugen... + + + Add Branch... + Branch hinzufügen... + + + &Fetch + &Fetch + + + Remove &Stale Branches + + + + Manage &Remotes... + &Remotes verwalten... + + + Rem&ove... + En&tfernen... + + + Re&name... + Umbe&nennen... + + + &Checkout + Aus&checken + + + &Diff + &Diff + + + &Log + &Log + + + Reflo&g + + + + Re&set + Zurück&setzen + + + &Merge "%1" into "%2" (Fast-Forward) + + + + Merge "%1" into "%2" (No &Fast-Forward) + + + + &Merge "%1" into "%2" + + + + &Rebase "%1" on "%2" + + + + &Track + &Folgen + + + Would you like to delete the tag "%1"? + Möchten Sie das Tag "%1" löschen? + + + Would you like to delete the branch "%1"? + Möchten Sie den Branch "%1" löschen? + + + Would you like to delete the <b>unmerged</b> branch "%1"? + Es wurde mit dem Branch "%1" noch <b>keine</b> Merge-Operation durchgeführt. Möchten Sie ihn dennoch löschen? + + + Delete Tag + Tag löschen + + + Delete Branch + Branch löschen + + + Git Reset + Git Reset + + + Reset branch "%1" to "%2"? + + + + Git Branches + Git Branches + + + Filter + Filter + + + Diff + Diff + + + Show difference. + Änderung anzeigen. + + + Filter: + Filter: + + + Case Sensitive + Groß-/Kleinschreibung + + + &Copy "%1" + "%1" &Kopieren + + + &Describe Change %1 + Änderung %1 &beschreiben + + + Git Settings + Git-Einstellungen + + + Triggers a Git version control operation. + + + + &Git + &Git + + + Current &File + Aktuelle &Datei + + + Meta+G,Meta+D + Meta+G,Meta+D + + + Alt+G,Alt+D + Alt+G,Alt+D + + + Meta+G,Meta+L + Meta+G,Meta+L + + + Alt+G,Alt+L + Alt+G,Alt+L + + + Meta+G,Meta+B + Meta+G,Meta+B + + + Alt+G,Alt+B + Alt+G,Alt+B + + + Stage File for Commit + Datei zu Commit hinzufügen (stage) + + + Stage "%1" for Commit + "%1" zu Commit hinzufügen (stage) + + + Meta+G,Meta+A + Meta+G,Meta+A + + + Alt+G,Alt+A + Alt+G,Alt+A + + + Unstage File from Commit + Datei aus Commit entfernen (unstage) + + + Unstage "%1" from Commit + "%1" aus Commit entfernen (unstage) + + + Undo Unstaged Changes + Nicht bereitgestellte Änderungen rückgängig machen (unstaged) + + + Undo Unstaged Changes for "%1" + Nicht bereitgestellte Änderungen in "%1" rückgängig machen (unstaged) + + + Undo Uncommitted Changes + Ausstehende Änderungen rückgängig machen + + + Undo Uncommitted Changes for "%1" + Ausstehende Änderungen in "%1" rückgängig machen + + + Meta+G,Meta+U + Meta+G,Meta+U + + + Alt+G,Alt+U + Alt+G,Alt+U + + + Current &Project + Aktuelles &Projekt + + + Meta+G,Meta+Shift+D + Meta+G,Meta+Shift+D + + + Alt+G,Alt+Shift+D + Alt+G,Alt+Shift+D + + + Meta+G,Meta+K + Meta+G,Meta+K + + + Alt+G,Alt+K + Alt+G,Alt+K + + + &Local Repository + &Lokales Repository + + + Meta+G,Meta+C + Meta+G,Meta+C + + + Alt+G,Alt+C + Alt+G,Alt+C + + + Recover Deleted Files + Gelöschte Dateien wiederherstellen + + + Update Submodules + Submodule aktualisieren + + + Skip Rebase + Rebase überspringen + + + Continue Cherry Pick + Cherry-Pick fortsetzen + + + Branches... + Branches... + + + &Patch + &Patch + + + Apply from Editor + Von Editor + + + Apply "%1" + Patch "%1" anwenden + + + Apply from File... + Von Datei... + + + &Stash + &Stash + + + Saves the current state of your work and resets the repository. + Speichert den gegenwärtigen Stand der Arbeit und setzt das Repository zurück. + + + Saves the current state of your unstaged files and resets the repository to its staged state. + Speichert den gegenwärtigen Stand der nicht bereitgestellten Dateien und setzt das Repository auf den bereitgestellten Zustand zurück. + + + Take Snapshot... + Snapshot erzeugen... + + + Saves the current state of your work. + Sichert den gegenwärtigen Arbeitsstand. + + + Restores changes saved to the stash list using "Stash". + Stellt den gesicherten Zustand von "Stash" wieder her. + + + &Remote Repository + &Entferntes Repository + + + &Subversion + &Subversion + + + DCommit + DCommit + + + Manage Remotes... + Remotes verwalten... + + + Archive... + Archive... + + + Diff Current File + Avoid translating "Diff" + + + + Diff of "%1" + Avoid translating "Diff" + Diff für "%1" + + + Log Current File + Avoid translating "Log" + + + + Log of "%1" + Avoid translating "Log" + Log für "%1" + + + Blame Current File + Avoid translating "Blame" + Blame für Datei + + + Blame for "%1" + Avoid translating "Blame" + Blame für "%1" + + + Diff Current Project + Avoid translating "Diff" + Diff für Projekt + + + Diff Project "%1" + Avoid translating "Diff" + Diff für Projekt "%1" + + + Log Project + Avoid translating "Log" + Log für Projekt + + + Log Project "%1" + Avoid translating "Log" + Log für Projekt "%1" + + + Clean Project... + Avoid translating "Clean" + Projekt bereinigen... + + + Clean Project "%1"... + Avoid translating "Clean" + Projekt "%1" bereinigen... + + + Amend Last Commit... + Avoid translating "Commit" + Letzten Commit ändern... + + + Fixup Previous Commit... + Avoid translating "Commit" + Vorangehenden Commit verbessern... + + + Interactive Rebase... + Avoid translating "Rebase" + Interaktives Rebase... + + + Abort Merge + Avoid translating "Merge" + Merge abbrechen + + + Abort Rebase + Avoid translating "Rebase" + Rebase abbrechen + + + Abort Cherry Pick + Avoid translating "Cherry Pick" + Cherry-Pick abbrechen + + + Abort Revert + Avoid translating "Revert" + Revert abbrechen + + + Stash Unstaged Files + Avoid translating "Stash" + Stash nicht bereitgestellter Dateien (unstaged) + + + Stash Pop + Avoid translating "Stash" + Stash Pop + + + Git &Tools + Git-&Werkzeuge + + + Gitk Current File + Gitk mit Datei + + + Gitk of "%1" + Gitk mit "%1" + + + Gitk for folder of Current File + Gitk für Verzeichnis der Datei + + + Gitk for folder of "%1" + Gitk für Verzeichnis von "%1" + + + Git Gui + Git Gui + + + Repository Browser + Repository-Browser + + + Git Bash + Git Bash + + + Actions on Commits... + Aktionen mit Commits... + + + Create Repository... + Repository erzeugen... + + + Undo Changes to %1 + Änderungen in %1 rückgängig machen + + + Interactive Rebase + Interaktives Rebase + + + Another submit is currently being executed. + Ein weiterer Submit-Vorgang findet gerade statt. + + + Unsupported version of Git found. Git %1 or later required. + Es wurde eine nicht unterstützte Version von Git festgestellt. Es wird Git %1 oder neuer benötigt. + + + Amend %1 + Abgabe %1 ändern (amend) + + + Git Fixup Commit + Git Fixup Commit + + + Git Commit + Git Commit + + + Unable to Retrieve File List + Die Dateiliste konnte nicht bestimmt werden + + + Repository Clean + Repository bereinigt + + + The repository is clean. + Das Repository wurde bereits bereinigt. + + + Patches (*.patch *.diff) + Patch-Dateien (*.patch *.diff) + + + Choose Patch + Patch-Datei auswählen + + + Patch %1 successfully applied to %2 + Die Patch-Datei %1 wurde erfolgreich auf das Repository %2 angewandt + + + + Help + + Add and remove compressed help files, .qch. + Hinzufügen oder Entfernen von komprimierten Hilfedateien (.qch). + + + Registered Documentation + Registrierte Dokumentationen + + + Add... + Hinzufügen... + + + Remove + Entfernen + + + Filters + Filter + + + Unfiltered + Ungefiltert + + + General + Allgemein + + + Change takes effect after reloading help pages. + Änderung wird wirksam, wenn die Hilfeseiten neu geladen werden. + + + Note: The above setting takes effect only if the HTML file does not use a style sheet. + Hinweis: Die obige Einstellung ist nur wirksam, wenn die HTML-Seite kein Stylesheet verwendet. + + + Zoom: + Vergrößerungsfaktor: + + + % + % + + + Default (%1) + Default viewer backend + Vorgabe (%1) + + + Import Bookmarks + Lesezeichen importieren + + + Files (*.xbel) + XBEL-Dateien (*.xbel) + + + Cannot import bookmarks. + Lesezeichen konnten nicht importiert werden. + + + Save File + Datei speichern + + + Font + Zeichensatz + + + Family: + Name: + + + Style: + Stil: + + + Size: + Größe: + + + Startup + Start + + + On context help: + Kontexthilfe: + + + Show Side-by-Side if Possible + Möglichst nebeneinander zeigen + + + Always Show Side-by-Side + Immer nebeneinander zeigen + + + On help start: + Zu Beginn: + + + Show My Home Page + Startseite zeigen + + + Show a Blank Page + Leere Seite zeigen + + + Show My Tabs from Last Session + Reiter aus letzter Sitzung zeigen + + + Home page: + Startseite: + + + Use &Current Page + &Aktuelle Seite verwenden + + + Use &Blank Page + &Leere Seite + + + Reset + Zurücksetzen + + + Behaviour + Verhalten + + + Return to editor on closing the last page + Nach Schließen der letzten Hilfeseite zum Editor schalten + + + Import Bookmarks... + Lesezeichen importieren... + + + Export Bookmarks... + Lesezeichen exportieren... + + + Reset to default. + Auf Vorgabe zurücksetzen. + + + Switches to editor context after last help page is closed. + Nach Schließen der letzten Hilfeseite zum Editor schalten. + + + Always Show in Help Mode + Immer im Modus "Hilfe" anzeigen + + + Always Show in External Window + Stets in separatem Fenster anzeigen + + + Enable scroll wheel zooming + Zoom mittels Mausrad aktivieren + + + Viewer backend: + Anzeigen mit: + + + Help Index + Hilfe - Index + + + Help + Hilfe + + + Search + Suche + + + Bookmarks + Lesezeichen + + + Open Pages + Offene Seiten + + + Index + Index + + + Contents + Inhalt + + + Context Help + Kontexthilfe + + + Technical Support... + Technischer Support... + + + Report Bug... + Fehler melden... + + + System Information... + Systeminformationen... + + + No Documentation + Dokumentation fehlt + + + No documentation available. + Es ist keine Dokumentation verfügbar. + + + System Information + Systeminformationen + + + Use the following to provide more detailed information about your system to bug reports: + Hiermit können Sie Ihren Fehlermeldungen detaillierte Informationen über Ihr System hinzufügen: + + + Copy to Clipboard + In die Zwischenablage kopieren + + + Indexing Documentation + Indiziere Dokumentation + + + Open Link + Verweis öffnen + + + Open Link as New Page + Verweis in neuer Seite öffnen + + + Copy Link + Verweis kopieren + + + Copy + Kopieren + + + Reload + Neu laden + + + The file is not an XBEL version 1.0 file. + Die Datei ist keine XBEL-Datei der Version 1.0. + + + Unknown title + Unbekannter Titel + + + Error loading page + Fehler beim Laden der Seite + + + <p>Check that you have the corresponding documentation set installed.</p> + <p>Stellen Sie sicher, dass Sie den zugehörigen Satz Dokumentation(en) installiert haben.</p> + + + Error loading: %1 + Fehler beim Laden: %1 + + + The page could not be found + Die Seite konnte nicht gefunden werden + + + Close %1 + Schließe %1 + + + Close All Except %1 + Alle außer %1 schließen + + + Copy Full Path to Clipboard + Vollständigen Pfad in die Zwischenablage kopieren + + + (Untitled) + (Ohne Titel) + + + Show Context Help Side-by-Side if Possible + Kontexthilfe möglichst seitlich anzeigen + + + Always Show Context Help Side-by-Side + Kontexthilfe immer seitlich anzeigen + + + Always Show Context Help in Help Mode + Kontexthilfe immer im Hilfemodus anzeigen + + + Always Show Context Help in External Window + Kontexthilfe immer in separatem Fenster anzeigen + + + Open in Help Mode + Im Hilfsmodus öffnen + + + Home + Startseite + + + Back + Zurück + + + Forward + Nächstes + + + Add Bookmark + Lesezeichen hinzufügen + + + Meta+M + Meta+M + + + Ctrl+M + Ctrl+M + + + Open Online Documentation... + Online-Dokumentation öffnen... + + + Increase Font Size + Schrift vergrößern + + + Decrease Font Size + Schrift verkleinern + + + Reset Font Size + Schriftgröße zurücksetzen + + + Open in Edit Mode + Im Editieren-Modus öffnen + + + Open in New Page + Auf neuer Seite öffnen + + + Open in Window + In Fenster öffnen + + + Meta+Shift+C + Meta+Shift+C + + + Ctrl+Shift+C + Ctrl+Shift+C + + + Meta+I + Meta+I + + + Ctrl+Shift+I + Ctrl+Shift+I + + + Activate Help Bookmarks View + Lesezeichen-Anzeige für Hilfe aktivieren + + + Alt+Meta+M + Alt+Meta+M + + + Ctrl+Shift+B + Ctrl+Shift+B + + + Activate Help Search View + Such-Anzeige für Hilfe aktivieren + + + Meta+/ + Meta+/ + + + Ctrl+Shift+/ + Ctrl+Shift+/ + + + Activate Open Help Pages View + Anzeige geöffneter Seiten in Hilfe aktivieren + + + Meta+O + Meta+O + + + Ctrl+Shift+O + Ctrl+Shift+O + + + Help - %1 + Hilfe - %1 + + + Print Documentation + Dokumentation drucken + + + Get Help Online + Onlinehilfe + + + Regenerate Index + Index neu erstellen + + + Open Link in Window + Verweis in Fenster öffnen + + + &Look for: + &Suche nach: + + + Update Documentation + Dokumentation aktualisieren + + + QtWebEngine + QtWebEngine + + + litehtml + litehtml + + + WebKit + WebKit + + + QTextBrowser + QTextBrowser + + + %1 (auto-detected) + %1 (automatisch bestimmt) + + + Add Documentation + Dokumentation hinzufügen + + + Qt Help Files (*.qch) + Qt-Hilfedateien (*.qch) + + + Invalid documentation file: + Ungültige Dokumentationsdatei: + + + Namespace already registered: + Der Namensraum ist bereits registriert: + + + Registration Failed + Registrierung fehlgeschlagen + + + Unable to register documentation. + Die Dokumentation konnte nicht registriert werden. + + + Documentation + Dokumentation + + + Zoom: %1% + Vergrößerung: %1% + + + + Locator + + Locator + Locator + + + + OpenWith::Editors + + Plain Text Editor + Texteditor + + + Binary Editor + Binäreditor + + + C++ Editor + C++-Editor + + + .pro File Editor + .pro-Dateieditor + + + .files Editor + .files-Dateieditor + + + QMLJS Editor + QMLJS-Editor + + + Qt Designer + Qt Designer + + + Qt Linguist + Qt Linguist + + + Resource Editor + Ressourceneditor + + + GLSL Editor + GLSL Editor + + + Python Editor + Python-Editor + + + Model Editor + Model-Editor + + + Nim Editor + Nim-Editor + + + SCXML Editor + SCXML-Editor + + + Java Editor + Java-Editor + + + CMake Editor + CMake-Editor + + + Compilation Database + Kompilierungsdatenbank + + + Qt Quick Designer + Qt Quick-Designer + + + + Perforce::Internal::ChangeNumberDialog + + Change Number + Change-Nummer + + + Change Number: + Change-Nummer: + + + + Perforce::Internal::PendingChangesDialog + + P4 Pending Changes + P4 Ausstehende Changes + + + Submit + Submit + + + Cancel + Abbrechen + + + Change %1: %2 + Change %1: %2 + + + + Perforce::Internal::PerforcePlugin + + &Perforce + &Perforce + + + Edit + Anfordern + + + Edit "%1" + "%1" anfordern + + + Alt+P,Alt+E + Alt+P,Alt+E + + + Edit File + Datei zum Editieren anfordern + + + Add + Hinzufügen + + + Add "%1" + "%1" hinzufügen + + + Alt+P,Alt+A + Alt+P,Alt+A + + + Add File + Datei hinzufügen + + + Delete File + Datei löschen + + + Revert + Rückgängig machen + + + Revert "%1" + Änderungen in "%1" rückgängig machen (revert) + + + Alt+P,Alt+R + Alt+P,Alt+R + + + Revert File + Änderungen in Datei rückgängig machen (revert) + + + Diff Current File + Diff für Datei + + + Diff "%1" + Diff für "%1" + + + Diff Current Project/Session + Diff für Projekt/Sitzung + + + Diff Project "%1" + Diff für Projekt "%1" + + + Alt+P,Alt+D + Alt+P,Alt+D + + + Diff Opened Files + Diff für angeforderte Dateien + + + Opened + Angefordert + + + Alt+P,Alt+O + Alt+P,Alt+O + + + Submit Project + Submit des Projekts + + + Alt+P,Alt+S + Alt+P,Alt+S + + + Pending Changes... + Ausstehende Changes... + + + Update Project "%1" + Projekt "%1"auf aktuellen Stand bringen + + + Describe... + Change anzeigen... + + + Annotate Current File + Annotation für Datei + + + Annotate "%1" + Annotation für "%1" + + + Annotate... + Annotation... + + + Filelog Current File + Filelog für Datei + + + Filelog "%1" + Filelog für "%1" + + + Alt+P,Alt+F + Alt+P,Alt+F + + + Filelog... + Filelog... + + + Update All + Auf aktuellen Stand bringen + + + Triggers a Perforce version control operation. + + + + Meta+P,Meta+F + Meta+P,Meta+F + + + Meta+P,Meta+E + Meta+P,Meta+E + + + Meta+P,Meta+A + Meta+P,Meta+A + + + Delete... + Löschen... + + + Delete "%1"... + Lösche "%1"... + + + Meta+P,Meta+R + Meta+P,Meta+R + + + Meta+P,Meta+D + Meta+P,Meta+D + + + Log Project "%1" + Log für Projekt "%1" + + + Log Project + Log für Projekt + + + Submit Project "%1" + Submit des Projekts "%1" + + + Meta+P,Meta+S + Meta+P,Meta+S + + + Update Current Project + Projekt auf aktuellen Stand bringen + + + Revert Unchanged + Angeforderte, ungeänderte Dateien zurücksetzen + + + Revert Unchanged Files of Project "%1" + Angeforderte, ungeänderte Dateien des Projekts "%1" rücksetzen + + + Revert Project + Änderungen des Projekts rückgängig machen + + + Revert Project "%1" + Änderungen des Projekts "%1" rückgängig machen + + + Meta+P,Meta+O + Meta+P,Meta+O + + + Repository Log + Log des Repositorys + + + &Edit + B&earbeiten + + + &Hijack + &Hijack + + + Submit + Submit + + + p4 revert + Rückgängig machen + + + The file has been changed. Do you want to revert it? + Die Datei wurde geändert. Möchten Sie die Änderungen rückgängig machen? + + + Do you want to revert all changes to the project "%1"? + Möchten Sie alle ausstehenden Änderungen des Projektes "%1" verwerfen? + + + Another submit is currently executed. + Es läuft bereits ein Submit-Vorgang. + + + Project has no files + Das Projekt hat keine Dateien + + + p4 annotate + Annotationen + + + p4 annotate %1 + p4 annotate %1 + + + p4 filelog + Filelog + + + p4 filelog %1 + p4 filelog %1 + + + p4 changelists %1 + p4 changelists %1 + + + Could not start perforce "%1". Please check your settings in the preferences. + Das Perforce-Kommando "%1" konnte nicht gestartet werden. Bitte überprüfen Sie die Einstellungen. + + + Perforce did not respond within timeout limit (%1 s). + Perforce reagierte nicht innerhalb des Zeitlimits (%1 s). + + + The process terminated with exit code %1. + Der Prozess wurde beendet, Rückgabewert %1. + + + p4 submit failed: %1 + Fehler beim Submit: %1 + + + Error running "where" on %1: %2 + Failed to run p4 "where" to resolve a Perforce file name to a local file system name. + Fehler bei der Ausführung von "where" bei Datei "%1": %2 + + + The file is not mapped + File is not managed by Perforce + Die Datei wird nicht von Perforce verwaltet + + + Perforce repository: %1 + Perforce-Repository: %1 + + + Perforce: Unable to determine the repository: %1 + Perforce: Das Repository von konnte nicht bestimmt werden: %1 + + + The process terminated abnormally. + Der Prozess wurde unnormal beendet. + + + Perforce is not correctly configured. + Perforce ist nicht richtig konfiguriert. + + + [Only %n MB of output shown] + + [Nur %n MB der Ausgabe wird angezeigt] + [Nur %n MB der Ausgabe werden angezeigt] + + + + p4 diff %1 + p4 diff %1 + + + p4 describe %1 + p4 describe %1 + + + Pending change + Ausstehende Änderung + + + Could not submit the change, because your workspace was out of date. Created a pending submit instead. + Der Submit-Vorgang konnte nicht ausgeführt werden, weil Ihr Arbeitsbereich nicht auf dem aktuellsten Stand ist. Es wurde ein ausstehender Submit-Vorgang erzeugt. + + + + Perforce::Internal::PerforceSubmitEditor + + Perforce Submit + Perforce Submit + + + + Perforce::Internal::SettingsPage + + Perforce Command + Perforce-Kommando + + + Testing... + Test läuft... + + + Test succeeded (%1). + Der Test war erfolgreich (%1). + + + Perforce + Perforce + + + Test + Test + + + Configuration + Konfiguration + + + Miscellaneous + Sonstige Einstellungen + + + Timeout: + Zeitlimit: + + + s + s + + + Prompt on submit + Submit bestätigen + + + Log count: + Log-Anzeige beschränken auf: + + + P4 command: + P4-Kommando: + + + P4 client: + P4 Client: + + + P4 user: + P4 Nutzer: + + + P4 port: + P4 Port-Nummer: + + + Environment Variables + Umgebungsvariablen + + + Automatically open files when editing + Dateien bei Bearbeitung automatisch anfordern + + + + Perforce::Internal::SubmitPanel + + Submit + Submit + + + Change: + Änderung: + + + Client: + Client: + + + User: + Nutzer: + + + + PluginManager + + The plugin "%1" is specified twice for testing. + Das Plugin "%1" ist in der Testliste doppelt vorhanden. + + + The plugin "%1" does not exist. + Es existiert kein Plugin "%1". + + + The plugin "%1" is not tested. + Das Plugin "%1" ist ungetested. + + + Cannot request scenario "%1" as it was already requested. + + + + Unknown option %1 + Ungültiges Kommandozeilenargument %1 + + + The option %1 requires an argument. + Das Kommandozeilenargument %1 erfordert ein Argument. + + + Failed Plugins + Nicht geladene Plugins (Fehlschlag beim Ladevorgang) + + + + PluginSpec + + "%1" is missing + "%1" fehlt + + + Value for key "%1" is not a string + Wert des Schlüssels "%1" ist keine Zeichenkette + + + Value for key "%1" is not a bool + Wert des Schlüssels "%1" ist kein Boolescher Wert + + + Value for key "%1" is not an array of objects + Wert des Schlüssels "%1" ist kein Feld von Objekten + + + Value for key "%1" is not a string and not an array of strings + Wert des Schlüssels "%1" ist keine Zeichenkette und auch kein Feld von Zeichenketten + + + Value "%2" for key "%1" has invalid format + Wert "%2" des Schlüssels "%1" ist in ungültigem Format + + + Resolving dependencies failed because state != Read + Das Bestimmen der Abhängigkeiten schlug fehl, weil der Status != Gelesen ist + + + Could not resolve dependency '%1(%2)' + Die Abhängigkeit '%1 (%2)' konnte nicht aufgelöst werden + + + Loading the library failed because state != Resolved + Das Laden der Bibliothek schlug fehl, weil der Status != 'Abhängigkeiten bestimmt' ist + + + Plugin is not valid (does not derive from IPlugin) + Das Plugin ist ungültig (nicht von Klasse IPlugin abgeleitet) + + + Initializing the plugin failed because state != Loaded + Die Initialisierung des Plugins schlug fehl, weil der Status != Geladen ist + + + Internal error: have no plugin instance to initialize + Interner Fehler: Es existiert keine Plugininstanz zur Initialisierung + + + Plugin initialization failed: %1 + Die Initialisierung des Plugins schlug fehl: %1 + + + Cannot perform extensionsInitialized because state != Initialized + extensionsInitialized kann nicht abgearbeitet werden, weil der Status != Initialisiert ist + + + Internal error: have no plugin instance to perform extensionsInitialized + Interner Fehler: Es existiert keine Plugininstanz zur Abarbeitung von extensionsInitialized + + + Internal error: have no plugin instance to perform delayedInitialize + Interner Fehler: Es existiert keine Plugininstanz zur Abarbeitung von delayedInitialize + + + + ProjectExplorer::AbstractProcessStep + + Configuration is faulty. Check the Issues view for details. + Die Konfiguration ist fehlerhaft. Details befinden sich in der Ansicht "Probleme". + + + Could not create directory "%1" + Das Verzeichnis "%1" konnte nicht angelegt werden + + + Starting: "%1" %2 + Starte: "%1" %2 + + + The process "%1" exited normally. + Der Prozess "%1" wurde normal beendet. + + + The process "%1" exited with code %2. + Der Prozess "%1" wurde mit dem Rückgabewert %2 beendet. + + + The process "%1" crashed. + Der Prozess "%1" ist abgestürzt. + + + Could not start process "%1" %2. + Der Prozess "%1" %2. konnte nicht gestartet werden {1"?} + + + + ProjectExplorer::BuildManager + + Finished %1 of %n steps + + Schritt %1 von %n beendet + Schritt %1 von %n beendet + + + + Stop Applications + Anwendungen beenden + + + Stop these applications before building? + Diese Anwendungen vor dem Erstellen beenden? + + + The project %1 is not configured, skipping it. + Das Projekt %1 ist nicht konfiguriert, es wird übersprungen. + + + The build device failed to prepare for the build of %1 (%2). + + + + Compile + Category for compiler issues listed under 'Issues' + Kompilierung + + + Build System + Category for build system issues listed under 'Issues' + Build-System + + + Autotests + Category for autotest issues listed under 'Issues' + Autotests + + + Clean + Displayed name for a "cleaning" build step + Bereinigen + + + Deploy + Displayed name for a deploy step + Deployment + + + Build + Displayed name for a normal build step + Erstellen + + + Build/Deployment canceled + Erstellen/Deployment wurde abgebrochen + + + When executing step "%1" + Bei der Ausführung von Schritt "%1" + + + Deployment + Category for deployment issues listed under 'Issues' + Deployment + + + Canceled build/deployment. + Erstellen/Deployment abgebrochen. + + + Error while building/deploying project %1 (kit: %2) + Fehler beim Erstellen/Deployment des Projekts %1 (Kit: %2) + + + The kit %1 has configuration issues which might be the root cause for this problem. + Das Kit %1 enthält Konfigurationsprobleme, die die Ursache für dieses Problem sein könnten. + + + Running steps for project %1... + Führe Schritte für Projekt %1 aus... + + + Skipping disabled step %1. + Überspringe deaktivierten Schritt %1. + + + + ProjectExplorer::EnvironmentWidget + + Variable already exists. + Variable existiert bereits. + + + Ed&it + Bearbe&iten + + + &Add + Hinzu&fügen + + + &Reset + Zu&rücksetzen + + + &Unset + &Aufheben + + + Disable + Deaktivieren + + + Append Path... + Pfad anhängen... + + + Prepend Path... + Pfad voranstellen... + + + &Batch Edit... + Als &Text bearbeiten... + + + Open &Terminal + &Terminalfenster öffnen + + + Open a terminal with this environment set up. + Ein Terminalfenster mit dieser Umgebung öffnen. + + + Unset <a href="%1"><b>%1</b></a> + <a href="%1"><b>%1</b></a> zurücksetzen + + + Set <a href="%1"><b>%1</b></a> to <b>%2</b> + <b>%2</b> an <a href="%1"><b>%1</b></a> zuweisen + + + Append <b>%2</b> to <a href="%1"><b>%1</b></a> + + + + Prepend <b>%2</b> to <a href="%1"><b>%1</b></a> + + + + Set <a href="%1"><b>%1</b></a> to <b>%2</b> [disabled] + <b>%2</b> an <a href="%1"><b>%1</b></a> zuweisen [deaktiviert] + + + Use <b>%1</b> + %1 is "System Environment" or some such. + Verwende <b>%1</b> + + + <b>No environment changes</b> + <b>Keine Änderung der Umgebung</b> + + + Use <b>%1</b> and + Yup, word puzzle. The Set/Unset phrases above are appended to this. %1 is "System Environment" or some such. + Verwende <b>%1</b> und + + + Choose Directory + Verzeichnis wählen + + + Enable + Aktivieren + + + + ProjectExplorer::Internal::AllProjectsFilter + + Files in Any Project + Dateien aus allen Projekten + + + Matches all files of all open projects. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + + + + + ProjectExplorer::Internal::AllProjectsFind + + All Projects + Alle Projekte + + + All Projects: + Alle Projekte: + + + Filter: %1 +Excluding: %2 +%3 + Filter: %1 +Außer: %2 +%3 + + + + ProjectExplorer::Internal::BuildSettingsWidget + + No build settings available + Es sind keine Build-Einstellungen verfügbar + + + Edit build configuration: + Build-Konfiguration bearbeiten: + + + Add + Hinzufügen + + + Remove + Entfernen + + + Clone... + Klonen... + + + New Configuration + Neue Konfiguration + + + Cancel Build && Remove Build Configuration + Build abbrechen und Build-Konfiguration löschen + + + Do Not Remove + Nicht löschen + + + Remove Build Configuration %1? + Build-Konfiguration %1 löschen? + + + The build configuration <b>%1</b> is currently being built. + Die Build-Konfiguration <b>%1</b> wird gegenwärtig erstellt. + + + Do you want to cancel the build process and remove the Build Configuration anyway? + Möchten Sie die Erstellung abbrechen und die Build-Konfiguration trotzdem löschen? + + + Remove Build Configuration? + Build-Konfiguration löschen? + + + Do you really want to delete build configuration <b>%1</b>? + Möchten Sie die Build-Konfiguration <b>%1</b> wirklich löschen? + + + Clone Configuration + Title of a the cloned BuildConfiguration window, text of the window + Duplizierte Konfiguration + + + New configuration name: + Name der neuen Konfiguration: + + + Rename... + Umbenennen... + + + New name for build configuration <b>%1</b>: + Neuer Name der Build-Konfiguration <b>%1</b>: + + + + ProjectExplorer::Internal::CompileOutputWindow + + Compile Output + Kompilierung + + + Open Settings Page + Einstellungsseite öffnen + + + Show Compile &Output + + + + Show the output that generated this issue in Compile Output. + + + + O + O + + + + ProjectExplorer::Internal::CurrentProjectFilter + + Files in Current Project + Dateien im aktuellen Projekt + + + Matches all files from the current document's project. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + + + + + ProjectExplorer::Internal::CurrentProjectFind + + Project "%1" + Projekt "%1" + + + Current Project + Aktuelles Projekt + + + Project "%1": + Projekt "%1": + + + + ProjectExplorer::Internal::ProjectFileWizardExtension + + Open project anyway? + Projekt trotzdem öffnen? + + + Version Control Failure + Fehlschlag der Versionsverwaltung + + + Failed to add subproject "%1" +to project "%2". + Das untergeordnete Projekt "%1" +konnte dem Projekt "%2" nicht hinzugefügt werden. + + + Failed to add one or more files to project +"%1" (%2). + Einige Dateien (%2) konnten nicht zum Projekt "%1" hinzugefügt werden. + + + + ProjectExplorer::Internal::ProjectTreeWidget + + Simplify Tree + Baum vereinfachen + + + Hide Generated Files + Generierte Dateien nicht zeigen + + + Hide Disabled Files + Deaktivierte Dateien verstecken + + + Focus Document in Project Tree + Dokument in Projektbaum hervorheben + + + Alt+Shift+L + Alt+Shift+L + + + Meta+Shift+L + Meta+Shift+L + + + Hide Empty Directories + Leere Verzeichnisse ausblenden + + + Hide Source and Header Groups + + + + Synchronize with Editor + Mit Editor synchronisieren + + + Filter Tree + Baum filtern + + + + ProjectExplorer::Internal::ProjectTreeWidgetFactory + + Projects + Projekte + + + Meta+X + Meta+X + + + Alt+X + Alt+X + + + + ProjectExplorer::Internal::ProjectWelcomePage + + Open Session #%1 + Sitzung #%1 öffnen + + + Ctrl+Meta+%1 + Ctrl+Meta+%1 + + + Ctrl+Alt+%1 + Ctrl+Alt+%1 + + + Open Recent Project #%1 + Zuletzt bearbeitetes Projekt #%1 öffnen + + + Ctrl+Shift+%1 + Ctrl+Shift+%1 + + + Open %1 "%2" + %1 "%2" öffnen + + + Open %1 "%2" (%3) + %1 "%2" öffnen (%3) + + + session + Appears in "Open session <name>" + Sitzung + + + %1 (last session) + %1 (letzte Sitzung) + + + %1 (current session) + %1 (aktuelle Sitzung) + + + Clone + Klonen + + + Rename + Umbenennen + + + Delete + Löschen + + + project + Appears in "Open project <name>" + Projekt + + + Remove Project from Recent Projects + Projekt aus der Liste der zuletzt bearbeiteten Projekte entfernen + + + Clear Recent Project List + Liste der zuletzt bearbeiteten Projekte löschen + + + Manage... + Verwalten... + + + Sessions + Sitzungen + + + Projects + Projekte + + + + ProjectExplorer::Internal::ProjectWizardPage + + Add to &version control: + Unter &Versionskontrolle stellen: + + + Summary + Zusammenfassung + + + Add as a subproject to project: + Als Unterprojekt hinzufügen zu Projekt: + + + Add to &project: + Zu Projekt &hinzufügen: + + + <None> + <Kein> + + + A version control system repository could not be created in "%1". + Das Versionskontrollsystem konnte im Verzeichnis "%1" kein Repository anlegen. + + + Failed to add "%1" to the version control system. + "%1" konnte nicht unter Versionskontrolle gestellt werden. + + + Files to be added: + Zu erzeugende Dateien: + + + Files to be added in + Hinzuzufügende Dateien in + + + + ProjectExplorer::Internal::RunSettingsWidget + + Run Settings + Einstellungen zur Ausführung + + + Add + Hinzufügen + + + Remove + Entfernen + + + Clone... + Klonen... + + + Run configuration: + Ausführungskonfiguration: + + + Remove Run Configuration? + Aktive Ausführungskonfiguration löschen? + + + Do you really want to delete the run configuration <b>%1</b>? + Möchten Sie die Ausführungskonfiguration <b>%1</b> löschen? + + + Rename... + Umbenennen... + + + Add... + Hinzufügen... + + + Deployment + Deployment + + + Method: + Methode: + + + Run + Ausführen + + + Clone Configuration + Title of a the cloned RunConfiguration window, text of the window + Duplizierte Konfiguration + + + New configuration name: + Name der neuen Konfiguration: + + + New name for run configuration <b>%1</b>: + Neuer Name der Ausführungskonfiguration <b>%1</b>: + + + Cancel Build && Remove Deploy Configuration + Build abbrechen und Deployment-Konfiguration löschen + + + Do Not Remove + Nicht löschen + + + Remove Deploy Configuration %1? + Deployment-Konfiguration %1 löschen? + + + The deploy configuration <b>%1</b> is currently being built. + Die Deployment-Konfiguration <b>%1</b> wird gegenwärtig ausgeführt. + + + Do you want to cancel the build process and remove the Deploy Configuration anyway? + Möchten Sie die Erstellung abbrechen und die Deployment-Konfiguration trotzdem löschen? + + + Remove Deploy Configuration? + Deployment-Konfiguration löschen? + + + Do you really want to delete deploy configuration <b>%1</b>? + Möchten Sie die Deployment-Konfiguration<b>%1</b> löschen? + + + New name for deploy configuration <b>%1</b>: + Neuer Name der Deployment-Konfiguration <b>%1</b>: + + + + ProjectExplorer::Internal::SessionDialog + + Session Manager + Sitzungsverwaltung + + + &New + &Neu + + + &Rename + &Umbenennen + + + C&lone + &Duplizieren + + + &Delete + &Löschen + + + Restore last session on startup + Bei Start letzte Sitzung laden + + + <a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> + <a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-sessions.html">Was ist eine Sitzung?</a> + + + &Open + &Öffnen + + + + ProjectExplorer::Internal::TaskDelegate + + File not found: %1 + Datei nicht gefunden: %1 + + + + ProjectExplorer::ProjectExplorerPlugin + + &Build + &Erstellen + + + &Debug + Debugge&n + + + &Start Debugging + &Debuggen + + + Open With + Öffnen mit + + + New Project... + Neues Projekt... + + + Load Project... + Projekt laden... + + + Ctrl+Shift+O + Ctrl+Shift+O + + + Open File + Datei öffnen + + + Close Project + Projekt schließen + + + Ctrl+Shift+B + Ctrl+Shift+B + + + Build Project + Projekt erstellen + + + Ctrl+B + Ctrl+B + + + Rebuild Project + Projekt neu erstellen + + + Deploy Project + Deployment des Projekts durchführen + + + Clean Project + Projekt bereinigen + + + Deploy Without Dependencies + Deployment unter Ausschluss der Abhängigkeiten durchführen + + + Run + Ausführen + + + Ctrl+R + Ctrl+R + + + Run Without Deployment + Ausführung ohne Deployment + + + Cancel Build + Erstellen abbrechen + + + Add Existing Files... + Existierende Datei hinzufügen... + + + Set as Active Project + Als aktives Projekt setzen + + + Collapse All + Alle einklappen + + + Open Build and Run Kit Selector... + Kit-Auswahl für Erstellung und Ausführung öffnen... + + + The name of the current project. + Der Name des aktuellen Projekts. + + + Cancel Build && Unload + Erstellen abbrechen und schließen + + + Do Not Unload + Nicht schließen + + + Unload Project %1? + Projekt "%1" schließen? + + + The project %1 is currently being built. + Das Projekt "%1" wird gerade erstellt. + + + Do you want to cancel the build process and unload the project anyway? + Möchten Sie die Erstellung abbrechen und das Projekt trotzdem schließen? + + + All Projects + Alle Projekte + + + Failed opening project "%1": No plugin can open project type "%2". + Das Projekt "%1" konnte nicht geöffnet werden: Der Projekttyp "%2" kann von keinem Plugin geöffnet werden. + + + Found some build errors in current task. +Do you want to ignore them? + Es wurden einige Build-Fehler im aktuellen Task festgestellt. +Möchten Sie sie ignorieren? + + + Clean + Bereinigen + + + Build + Erstellen + + + Deploy + Deployment + + + The project "%1" has no active kit. + Das Projekt "%1" hat kein aktives Kit. + + + The kit "%1" for the project "%2" has no active run configuration. + Das Kit "%1" des Projektes "%2" hat keine aktive Ausführungskonfiguration. + + + Cannot run "%1". + "%1" kann nicht ausgeführt werden. + + + A build is still in progress. + Zur Zeit läuft ein Build-Vorgang. + + + Build All Projects for All Configurations + Alle Konfigurationen aller Projekte erstellen + + + Rebuild All Projects for All Configurations + Alle Konfigurationen aller Projekte neu erstellen + + + Clean All Projects for All Configurations + Alle Konfigurationen aller Projekte bereinigen + + + Build for &Run Configuration + + + + Build for &Run Configuration "%1" + + + + Add New... + Hinzufügen... + + + Close Other Projects + + + + Close All Projects Except "%1" + + + + Remove... + Entfernen... + + + Rename... + Umbenennen... + + + Main file of the project the current document belongs to. + + + + The name of the project the current document belongs to. + + + + Adding Files to Project Failed + Das Hinzufügen der Dateien zum Projekt schlug fehl + + + Remove More Files? + Weitere Dateien entfernen? + + + Remove these files as well? + %1 + Auch diese Dateien entfernen? + %1 + + + Removing File Failed + Fehlschlag bei Entfernen der Datei + + + File "%1" was not removed, because the project has changed in the meantime. +Please try again. + Die Datei "%1" wurde nicht entfernt, weil sich das Projekt inzwischen geändert hat. +Bitte versuchen Sie es erneut. + + + Could not remove file "%1" from project "%2". + Die Datei "%1" konnte nicht aus dem Projekt "%2" entfernt werden. + + + Choose File Name + Dateinamen wählen + + + New file name: + Neuer Dateiname: + + + Failed to copy file "%1" to "%2": %3. + Die Datei "%1" konnte nicht nach "%2" kopiert werden: %3. + + + Failed to add new file "%1" to the project. + Die Datei "%1" konnte nicht zum Projekt hinzugefügt werden. + + + Deleting File Failed + Datei konnte nicht gelöscht werden + + + Delete File... + Datei löschen... + + + C + C + + + C++ + C++ + + + Open... + Öffnen... + + + Build Environment + Build-Umgebung + + + Run Environment + Ausführungsumgebung + + + S&essions + Sitzung&en + + + &Manage... + &Verwalten... + + + Close Pro&ject "%1" + Pro&jekt "%1" schließen + + + Close Pro&ject + Pro&jekt schließen + + + Build All Projects + Alle Projekte erstellen + + + Deploy All Projects + Deployment aller Projekte durchführen + + + Rebuild All Projects + Alle Projekte neu erstellen + + + Clean All Projects + Alle Projekte bereinigen + + + Build Project for All Configurations + Alle Konfigurationen des Projekts erstellen + + + Build Project "%1" for All Configurations + Alle Konfigurationen des Projekts "%1" erstellen + + + Rebuild Project for All Configurations + Alle Konfigurationen des Projekts neu erstellen + + + Clean Project for All Configurations + Alle Konfigurationen des Projekts bereinigen + + + Meta+Backspace + Meta+Backspace + + + Alt+Backspace + Alt+Backspace + + + Add Existing Projects... + Bestehendes Projekt hinzufügen... + + + New Subproject... + Neues Teilprojekt... + + + Properties... + Eigenschaften... + + + Duplicate File... + Datei duplizieren... + + + Expand + Erweitern + + + Ctrl+T + Ctrl+T + + + Current project's main file. + Hauptdatei des aktuellen Projekts. + + + Current Build Environment + Aktuelle Build-Umgebung + + + Current Run Environment + Aktuelle Ausführungsumgebung + + + The name of the active project. + + + + Active project's main file. + + + + The type of the active project's active build configuration. + + + + Full build path of the active project's active build configuration. + + + + Active build environment of the active project. + + + + Name of the active project's active run configuration. + + + + The executable of the active project's active run configuration. + + + + Active run environment of the active project. + + + + Variables in the environment of the active project's active run configuration. + + + + The working directory of the active project's active run configuration. + + + + Load Project + Projekt laden + + + Sanitizer + Category for sanitizer issues listed under 'Issues' + + + + Parse Build Output... + Build-Ausgabe auswerten... + + + New Project + Title of dialog + Neues Projekt + + + <h3>Project already open</h3> + <h3>Projekt bereits geöffnet</h3> + + + Failed opening project "%1": Project is not a file. + Das Projekt "%1" konnte nicht geöffnet werden: Die angegebene Projektdatei ist keine Datei. + + + Open Project in "%1" + Projekt in "%1" öffnen + + + Open Project "%1" + Projekt "%1" öffnen + + + The file "%1" was renamed to "%2", but the following projects could not be automatically changed: %3 + Die Datei "%1" wurde in "%2" umbenannt, aber die folgenden Projekte konnten nicht automatisch geändert werden: %3 + + + The following projects failed to automatically remove the file: %1 + Die folgenden Projekte konnten die Datei nicht automatisch entfernen: %1 + + + No project loaded. + Es ist kein Projekt geladen. + + + Currently building the active project. + Das aktive Projekt wird gerade erstellt. + + + The project %1 is not configured. + Das Projekt %1 ist nicht konfiguriert. + + + Project has no build settings. + Das Projekt hat keine Build-Einstellungen. + + + A build is in progress. + Zur Zeit läuft ein Build-Vorgang. + + + Cancel Build && Close + Erstellen abbrechen und schließen + + + A project is currently being built. + Es wird gerade ein Projekt erstellt. + + + The project "%1" is not configured. + Das Projekt "%1" ist nicht konfiguriert. + + + A run action is already scheduled for the active project. + Für das aktive Projekt ist bereits eine Ausführung geplant. + + + Run %1 + %1 ausführen + + + %1 in %2 + %1 in %2 + + + New Subproject + Title of dialog + Neues Teilprojekt + + + Choose Project File + Projektdatei auswählen + + + The following subprojects could not be added to project "%1": + Die folgenden Unterprojekte konnten nicht zum Projekt "%1" hinzugefügt werden: + + + Adding Subproject Failed + Unterprojekt konnte nicht hinzugefügt werden + + + Could not add following files to project %1: + Die folgenden Dateien konnten nicht zum Projekt "%1" hinzugefügt werden: + + + _copy + _kopie + + + Duplicating File Failed + Datei konnte nicht dupliziert werden + + + Delete File + Datei löschen + + + Delete %1 from file system? + Soll die Datei "%1" gelöscht werden? + + + The file %1 could not be renamed %2. + Die Datei %1 konnte nicht in %2 umbenannt werden. + + + Cannot Rename File + Die Datei konnte nicht umbenannt werden + + + Matches all files from all project directories. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + + + + Run run configuration + + + + Run a run configuration of the current active project + + + + Switch run configuration + + + + Switch active run configuration + + + + Switched run configuration to +%1 + + + + Close Project "%1" + Projekt "%1" schließen + + + Recent P&rojects + Zuletzt bearbeitete P&rojekte + + + Close All Projects and Editors + Alle Projekte und Editoren schließen + + + Build Project "%1" + Projekt "%1" erstellen + + + Rebuild + Neu erstellen + + + Build Without Dependencies + Erstellen unter Ausschluss der Abhängigkeiten + + + Close All Files in Project + Alle Dateien im Projekt schließen + + + Close All Files in Project "%1" + Alle Dateien im Projekt "%1" schließen + + + Rebuild Without Dependencies + Neu erstellen unter Ausschluss der Abhängigkeiten + + + Clean Without Dependencies + Bereinigen unter Ausschluss der Abhängigkeiten + + + Add Existing Directory... + Vorhandenes Verzeichnis hinzufügen... + + + Close All Files + Alle Dateien schließen + + + Remove Project... + Remove project from parent profile (Project explorer view); will not physically delete any files. + Projekt entfernen... + + + Set "%1" as Active Project + "%1" als aktives Projekt setzen + + + Expand All + Alles aufklappen + + + Quick Switch Kit Selector + Schnelle Kitauswahl + + + File where current session is saved. + Datei, in der die aktuelle Sitzung gespeichert wird. + + + Name of current session. + Name der aktuellen Sitzung. + + + Failed to Open Project + Projekt konnte nicht geöffnet werden + + + Ignore All Errors? + Alle Fehler ignorieren? + + + Run Configuration Removed + Ausführungskonfiguration gelöscht + + + The configuration that was supposed to run is no longer available. + Die auszuführende Konfiguration ist nicht mehr verfügbar. + + + Always save files before build + Alle Dateien vor Erstellen speichern + + + Do Not Close + Nicht schließen + + + Close %1? + %1 schließen? + + + Do you want to cancel the build process and close %1 anyway? + Möchten Sie die Erstellung abbrechen und %1 schließen? + + + No active project. + Kein aktives Projekt. + + + New File + Title of dialog + Neue Datei + + + Add Existing Files + Existierende Dateien hinzufügen + + + Project Editing Failed + Das Bearbeiten des Projekts schlug fehl + + + The project file %1 cannot be automatically changed. + +Rename %2 to %3 anyway? + Die Projektdatei %1 kann nicht automatisch geändert werden. + +%2 trotzdem in %3 umbenennen? + + + The file %1 was renamed to %2, but the project file %3 could not be automatically changed. + Die Datei %1 wurde in %2 umbenannt, aber die Projektdatei %3 konnte nicht automatisch geändert werden. + + + Could not delete file %1. + Die Datei "%1" konnte nicht gelöscht werden. + + + + ProjectExplorer::SessionManager + + Error while restoring session + Beim Wiederherstellen der Sitzung ist ein Fehler aufgetreten + + + Could not restore session %1 + Die Sitzung %1 konnte nicht wiederhergestellt werden + + + Delete Session + Sitzung löschen + + + Could not save session %1 + Die Sitzung %1 konnte nicht gespeichert werden + + + Delete Sessions + Sitzungen löschen + + + Delete session %1? + Soll die Sitzung %1 gelöscht werden? + + + Delete these sessions? + %1 + Diese Sitzungen löschen? + %1 + + + Failed to restore project files + Fehlschlag beim Wiederherstellen der Dateien des Projekts + + + Could not restore the following project files:<br><b>%1</b> + Die folgende Dateien konnten nicht wiederhergestellt werden: <br><b>%1</b> + + + Keep projects in Session + Projekte in Sitzung belassen + + + Remove projects from Session + Projekte aus Sitzung entfernen + + + Loading Session + Lade Sitzung + + + Error while saving session + Fehler beim Speichern der Sitzung + + + Could not save session to file %1 + Die Sitzung konnte nicht unter %1 gespeichert werden + + + Untitled + Unbenannt + + + + ResourceEditor + + &Undo + &Rückgängig + + + &Redo + &Wiederholen + + + Recheck Existence of Referenced Files + Nochmalige Überprüfung der Existenz der referenzierten Dateien + + + Add Prefix... + Präfix hinzufügen... + + + Change Prefix... + Präfix ändern... + + + Remove Prefix... + Präfix löschen... + + + Remove Missing Files + Fehlende Dateien entfernen + + + Rename... + Umbenennen... + + + Remove File... + Datei entfernen... + + + Open in Editor + In Editor öffnen + + + Open With + Öffnen mit + + + Copy Path + Pfad kopieren + + + Copy Path "%1" + Pfad "%1" kopieren + + + Copy URL + URL kopieren + + + Copy URL "%1" + URL "%1" kopieren + + + Add Prefix + Präfix hinzufügen + + + Remove Prefix + Präfix löschen + + + Remove prefix %1 and all its files? + Präfix %1 und alle zugehörigen Dateien löschen? + + + File Removal Failed + Fehlschlag bei Entfernen der Datei + + + Removing file %1 from the project failed. + Die Datei %1 konnte nicht aus dem Projekt entfernt werden. + + + Rename Prefix + Präfix umbenennen + + + Open File + Datei öffnen + + + Rename File... + Datei umbenennen... + + + Copy Resource Path to Clipboard + Ressourcenpfad in die Zwischenablage kopieren + + + Sort Alphabetically + Alphabetisch sortieren + + + Add Files + Dateien hinzufügen + + + Remove + + + + Alias: + Aliasname: + + + Properties + Eigenschaften + + + Invalid file location + Ungültiger Pfad + + + Copy + Kopieren + + + Abort + Abbrechen + + + Skip + Überspringen + + + The file %1 is not in a subdirectory of the resource file. You now have the option to copy this file to a valid location. + Die Datei %1 befindet sich nicht in einem Unterverzeichnis der Ressourcendatei. Sie können sie jetzt an die richtige Stelle kopieren. + + + Choose Copy Location + Wählen Sie ein Ziel zum Kopieren + + + Overwriting Failed + Fehler beim Überschreiben + + + Could not overwrite file %1. + Die Datei %1 konnte nicht überschrieben werden. + + + Copying Failed + Fehler beim Kopieren + + + Could not copy the file to %1. + Die Datei konnte nicht nach %1 kopiert werden. + + + All files (*) + Alle Dateien (*) + + + The file name is empty. + Der Dateiname ist leer. + + + XML error on line %1, col %2: %3 + XML-Fehler in Zeile %1, Spalte %2: %3 + + + The <RCC> root element is missing. + Das Wurzelelement (<RCC>) fehlt. + + + Cannot save file. + Die Datei konnte nicht gespeichert werden. + + + Prefix: + Präfix: + + + Language: + Sprache: + + + + Subversion::Internal::SubversionPlugin + + &Subversion + &Subversion + + + Add + Hinzufügen + + + Add "%1" + "%1" hinzufügen + + + Alt+S,Alt+A + Alt+S,Alt+A + + + Diff Project + Diff für Projekt + + + Diff Current File + Diff für Datei + + + Diff "%1" + Diff für "%1" + + + Alt+S,Alt+D + Alt+S,Alt+D + + + Commit All Files + Commit aller Dateien + + + Commit Current File + Commit der aktuellen Datei + + + Commit "%1" + Commit von "%1" + + + Alt+S,Alt+C + Alt+S,Alt+C + + + Filelog Current File + Filelog für Datei + + + Filelog "%1" + Filelog für "%1" + + + Annotate Current File + Annotation für Datei + + + Annotate "%1" + Annotation für "%1" + + + Describe... + Beschreibung zu... + + + Project Status + Status des Projekts (status) + + + Update Project + Projekt auf aktuellen Stand bringen + + + Commit Project + Commit des Projekts + + + Commit Project "%1" + Commit des Projekts "%1" + + + Diff Repository + Diff des Repositorys + + + Repository Status + Status des Repositorys + + + Log Repository + Log des Repositorys + + + Update Repository + Repository auf den aktuellen Stand bringen + + + Revert all pending changes to the repository? + Möchten Sie alle ausstehenden Änderungen des Repositorys verwerfen? + + + The file has been changed. Do you want to revert it? + Die Datei wurde geändert. Möchten Sie sie zurücksetzen? + + + Delete... + Löschen... + + + Triggers a Subversion version control operation. + + + + Meta+S,Meta+D + Meta+S,Meta+D + + + Meta+S,Meta+A + Meta+S,Meta+A + + + Meta+S,Meta+C + Meta+S,Meta+C + + + Delete "%1"... + Lösche "%1"... + + + Revert... + Rückgängig machen... + + + Revert "%1"... + Änderungen in "%1" rückgängig machen... + + + Diff Project "%1" + Diff für Projekt "%1" + + + Status of Project "%1" + Status des Projekts "%1" + + + Log Project "%1" + Log für Projekt "%1" + + + Log Project + Log für Projekt + + + Update Project "%1" + Projekt "%1"auf aktuellen Stand bringen + + + Revert Repository... + Änderungen im gesamten Repository rückgängig machen... + + + Revert repository + Alle Änderungen rückgängig machen + + + Revert failed: %1 + Fehler beim Rücksetzen der Änderungen: %1 + + + Another commit is currently being executed. + Es läuft bereits ein Commit-Vorgang. + + + There are no modified files. + Es gibt keine geänderten Dateien. + + + Describe + Beschreibe + + + Revision number: + Revisionsnummer: + + + No subversion executable specified. + Es wurde keine Subversion-Anwendung angegeben. + + + + Subversion::Internal::SubversionSubmitEditor + + Subversion Submit + Subversion Submit + + + + TextEditor::BaseFileFind + + Searching + Suche + + + %n occurrences replaced. + + %n Vorkommen ersetzt. + %n Vorkommen ersetzt. + + + + %n found. + + Ein Treffer gefunden. + %n Treffer gefunden. + + + + Aborting replace. + Breche Ersetzung ab. + + + + TextEditor::BaseTextEditor + + A highlight definition was not found for this file. Would you like to download additional highlight definition files? + Für diese Datei ist keine Definition der Syntaxhervorhebung vorhanden. Möchten Sie weitere Definitionen der Syntaxhervorhebung herunterladen? + + + Download Definitions + Definitionen herunterladen + + + More than one highlight definition was found for this file. Which one should be used to highlight this file? + Für diese Datei wurden mehrere Definitionen der Syntaxhervorhebung gefunden. Welche soll für diese Datei verwendet werden? + + + Remember My Choice + Meine Auswahl speichern + + + + TextEditor::Internal::ColorScheme + + Not a color scheme file. + Keine Farbschema-Datei. + + + + TextEditor::Internal::ColorSchemeEdit + + Bold + Fett + + + Italic + Kursiv + + + Background: + Hintergrund: + + + Foreground: + Zeichen: + + + No Underline + Nicht unterstreichen + + + Single Underline + Einfach unterstreichen + + + Wave Underline + Gewellt unterstreichen + + + Dot Underline + Gepunktet unterstreichen + + + Dash Underline + Gestrichelt unterstreichen + + + Dash-Dot Underline + Strich-Punkt unterstreichen + + + Dash-Dot-Dot Underline + Strich-Punkt-Punkt unterstreichen + + + Relative Foreground + Relativer Vordergrund + + + Lightness: + Helligkeit: + + + Saturation: + Sättigung: + + + Unset + Aufheben + + + Unset foreground. + Zeichenfarbe aufheben. + + + Unset background. + Hintergrundfarbe aufheben. + + + Font + Zeichensatz + + + Underline + Unterstreichung + + + Color: + Farbe: + + + Relative Background + Relativer Hintergrund + + + <p align='center'><b>Builtin color schemes need to be <a href="copy">copied</a><br/> before they can be changed</b></p> + <p align='center'><b>Mitgelieferte Farbschemata müssen <a href="copy">kopiert</a><br/> werden, bevor sie geändert werden können</b></p> + + + + TextEditor::Internal::FindInCurrentFile + + Current File + Aktuelle Datei + + + File "%1": + Datei "%1": + + + File path: %1 +%2 + Pfad zu Datei: %1 +%2 + + + + TextEditor::FontSettingsPageWidget + + Font + Zeichensatz + + + Family: + Name: + + + Size: + Größe: + + + Antialias + Kantenglättung + + + A line spacing value other than 100% disables text wrapping. +A value less than 100% can result in overlapping and misaligned graphics. + Wenn Sie den Zeilenabstand auf einen anderen Wert als 100% setzen, wird die Einstellung für Textumbruch deaktiviert. +Werte kleiner als 100% können überlappende und falsch ausgerichtete Darstellung zur Folge haben. + + + Copy... + Kopieren... + + + Delete + Löschen + + + % + % + + + Import + Importieren + + + Export + Exportieren + + + Zoom: + Vergrößerungsfaktor: + + + Line spacing: + Zeilenabstand: + + + Color Scheme for Theme "%1" + Farbschema für Thema "%1" + + + Copy Color Scheme + Farbschema kopieren + + + Color scheme name: + Name des Farbschemas: + + + %1 (copy) + %1 (Kopie) + + + Delete Color Scheme + Farbschema löschen + + + Are you sure you want to delete this color scheme permanently? + Möchten Sie das Farbschema löschen? + + + Import Color Scheme + Farbschema importieren + + + Color scheme (*.xml);;All files (*) + Farbschema (*.xml);;Alle Dateien (*) + + + Export Color Scheme + Farbschema exportieren + + + Color Scheme Changed + Farbschema geändert + + + The color scheme "%1" was modified, do you want to save the changes? + Das Farbschema "%1" wurde geändert, möchten Sie die Änderungen speichern? + + + Discard + Verwerfen + + + Font && Colors + Zeichensatz && Farben + + + + TextEditor::Internal::LineNumberFilter + + Jumps to the given line in the current document. + Springt im aktuellen Dokument zur angegebenen Zeile. + + + <line>:<column> + <Zeilennummer>:<Spaltennummer> + + + Line %1, Column %2 + Zeile %1, Spalte %2 + + + Line %1 + Zeile %1 + + + Column %1 + Spalte %1 + + + Line in Current Document + Zeile im aktuellen Dokument + + + + TopicChooser + + Choose a topic for <b>%1</b>: + Wählen Sie ein Thema für <b>%1</b>: + + + Choose Topic + Themenwahl + + + + Utils::CheckableMessageBox + + Do not ask again + Nicht noch einmal nachfragen + + + Show Details... + Details anzeigen... + + + Hide Details... + Details ausblenden... + + + Do not &ask again + Nicht noch einmal nach&fragen + + + Do not &show again + Nicht noch einmal an&zeigen + + + + Utils::ClassNameValidatingLineEdit + + The class name must not contain namespace delimiters. + Der Klassenname darf keine Namensraum-Trenner enthalten. + + + Please enter a class name. + Bitte geben Sie einen Klassennamen ein. + + + The class name contains invalid characters. + Der Klassennamen enthält ungültige Zeichen. + + + + Utils::DetailsButton + + Details + Details + + + + Utils::FileSearch + + %1: canceled. %n occurrences found in %2 files. + + %1: Abgebrochen. Eine Fundstelle in %2 Dateien. + %1: Abgebrochen. %n Fundstellen in %2 Dateien. + + + + %1: %n occurrences found in %2 files. + + %1: Eine Fundstelle in %2 Dateien. + %1: %n Fundstellen in %2 Dateien. + + + + Fi&le pattern: + Such&muster für Dateinamen: + + + Excl&usion pattern: + Ausschl&ussmuster: + + + List of comma separated wildcard filters. Files with file name or full file path matching any filter are included. + Kommaseparierte Liste von Platzhalter-Filtern. Dateien werden eingeschlossen, wenn ihr Name oder vollständiger Pfad einem der Filter entspricht. + + + + Utils::PathChooser + + Choose... + Auswählen... + + + Browse... + Auswählen... + + + Choose Directory + Verzeichnis wählen + + + Choose Executable + Ausführbare Datei auswählen + + + Choose File + Datei wählen + + + The path must not be empty. + Der Pfad darf nicht leer sein. + + + The path "%1" expanded to an empty string. + Der Pfad "%1" expandierte zu einer leeren Zeichenkette. + + + The path "%1" does not exist. + Der Pfad "%1" existiert nicht. + + + The path "%1" is not a directory. + Der Pfad "%1" ist kein Verzeichnis. + + + The path "%1" is not a file. + Der Pfad "%1" ist keine Datei. + + + The directory "%1" does not exist. + Das Verzeichnis "%1" existiert nicht. + + + The path "%1" is not an executable file. + Der Pfad "%1" ist keine ausführbare Datei. + + + Invalid path "%1". + + + + Cannot execute "%1". + "%1" konnte nicht ausgeführt werden. + + + Full path: "%1" + Vollständiger Pfad: "%1" + + + Path: + Pfad: + + + + Utils::PathListEditor + + Insert... + Einfügen... + + + Delete Line + Zeile löschen + + + Clear + Löschen + + + + Utils::ProjectIntroPage + + Enter project name + Geben Sie einen Namen für das Projekt ein + + + Location + Pfad + + + The project already exists. + Das Projekt existiert bereits. + + + A file with that name already exists. + Eine Datei dieses Namens existiert bereits. + + + Project name is invalid. + + + + Name is empty. + Der Name ist leer. + + + Invalid character "%1" found. + Ungültiges Zeichen "%1" gefunden. + + + Invalid character ".". + Ungültiges Zeichen ".". + + + Name: + Name: + + + Create in: + Erzeugen in: + + + Use as default project location + Als Vorgabe für Projektverzeichnis verwenden + + + Introduction and Project Location + Einführung und Projektverzeichnis + + + + Utils::reloadPrompt + + File Changed + Datei geändert + + + The unsaved file <i>%1</i> has been changed on disk. Do you want to reload it and discard your changes? + Die noch nicht gespeicherte Datei <i>%1</i> wurde auf dem Speichermedium geändert. Möchten Sie sie neu laden und Ihre Änderungen verwerfen? + + + The file <i>%1</i> has been changed on disk. Do you want to reload it? + Die Datei <i>%1</i> wurde auf dem Speichermedium geändert. Möchten Sie sie neu laden? + + + The default behavior can be set in %1 > Preferences > Environment > System. + macOS + + + + The default behavior can be set in Edit > Preferences > Environment > System. + + + + &Close + &Schließen + + + No to All && &Diff + Keine && &Diff + + + + VcsBase + + Version Control + Versionskontrolle + + + General + Allgemein + + + + VcsBase::Internal::NickNameDialog + + Name + Name + + + Email + E-Mail-Adresse + + + Alias email + Alias-E-Mail-Adresse + + + Alias + Alias + + + + VcsBase::SubmitFileModel + + State + Status + + + File + Datei + + + + VcsBase::VcsBaseSubmitEditor + + Check Message + Beschreibung prüfen + + + Insert Name... + Namen einfügen... + + + Close %1 %2 Editor + Editor für %1 %2 schließen + + + What do you want to do with these changes? + Was möchten Sie mit diesen Änderungen tun? + + + Cannot %1%2. +What do you want to do? + %2 is an optional error message with ': ' prefix. Don't add space in front. + %1 ist nicht möglich%2 +Was möchten Sie tun? + + + Prompt to %1 + %1 bestätigen + + + &Close + &Schließen + + + &Keep Editing + &Weiter bearbeiten + + + Submit Message Check Failed + Die Überprüfung der Beschreibung schlug fehl + + + Executing %1 + Führe %1 aus + + + Executing [%1] %2 + Ausführung [%1] %2 + + + + QmlParser + + Illegal syntax for exponential number + Ungültige Syntax des Exponenten der Zahl + + + Stray newline in string literal + Nicht zugehöriges Zeilenende-Zeichen in Zeichenkettenliteral + + + End of file reached at escape sequence + Escape-Sequenz am Dateiende gefunden + + + Illegal unicode escape sequence + Ungültige Unicode-Escape-Sequenz + + + Illegal hexadecimal escape sequence + Ungültige hexadezimale Escape-Sequenz + + + Octal escape sequences are not allowed + Oktale Escape-Sequenzen sind nicht zulässig + + + Unclosed string at end of line + Zeichenkette am Zeilenende nicht geschlossen + + + Decimal numbers can't start with '0' + Dezimalzahlen dürfen nicht mit "0" beginnen + + + At least one hexadecimal digit is required after '0%1' + Auf "0%1" muss mindestens eine Hexadezimalziffer folgen + + + Unexpected token '.' + Unerwartetes Token "." + + + At least one octal digit is required after '0%1' + Auf "0%1" muss mindestens eine Oktalziffer folgen + + + At least one binary digit is required after '0%1' + Auf "0%1" muss mindestens eine Binärziffer folgen + + + Invalid regular expression flag '%0' + Ungültiger Modifikator für regulären Ausdruck "%0" + + + Unterminated regular expression backslash sequence + Der reguläre Ausdruck endet mit einer nicht abgeschlossenen Backslash-Sequenz + + + Unterminated regular expression class + Nicht abgeschlossene Zeichenklassenangabe innerhalb des regulären Ausdrucks + + + Unterminated regular expression literal + Regulärer Ausdruck nicht abgeschlossen + + + Syntax error + Syntaxfehler + + + Imported file must be a script + Importierte Datei muss ein Skript sein + + + Invalid module URI + Ungültiger Modul-URI + + + Incomplete version number (dot but no minor) + + + + File import requires a qualifier + Datei-Import benötigt einen Qualifizierer + + + Module import requires a qualifier + Modul-Import benötigt einen Qualifizierer + + + Invalid import qualifier + Ungültiger Import-Qualifizierer + + + Unexpected token `%1' + Unerwartetes Token "%1" + + + Expected token `%1' + Es wird das Token "%1" erwartet + + + + Mercurial + + General Information + Allgemeine Informationen + + + Repository: + Repository: + + + Branch: + Branch: + + + Commit Information + Informationen zu Commit + + + Author: + Autor: + + + Email: + E-Mail-Adresse: + + + Configuration + Konfiguration + + + Command: + Kommando: + + + User + Nutzer + + + Username to use by default on commit. + Nutzername für Commit. + + + Default username: + Vorgabe für Nutzernamen: + + + Email to use by default on commit. + E-Mail-Adresse für Commit. + + + Miscellaneous + Sonstige Einstellungen + + + Default email: + Vorgabe-E-Mail: + + + Revert + Rückgängig machen + + + Specify a revision other than the default? + Möchten Sie eine Revision angeben? + + + Revision: + Revision: + + + Local filesystem: + Dateisystem: + + + Default Location + Vorgabe + + + Specify URL: + URL: + + + Prompt for credentials + Nutzerdaten abfragen + + + For example: 'https://[user[:pass]@]host[:port]/[path]'. + Zum Beispiel: 'https://[user[:pass]@]host[:port]/[path]'. + + + Commit Editor + Commit-Editor + + + Unable to find parent revisions of %1 in %2: %3 + Die übergeordnete Revision von %1 im Repository %2 konnte nicht bestimmt werden: %3 + + + Cannot parse output: %1 + Die Ausgabe kann nicht ausgewertet werden: %1 + + + Hg incoming %1 + Hg eingehend %1 + + + Hg outgoing %1 + Hg ausgehend %1 + + + Mercurial Diff + Mercurial Diff + + + Mercurial Diff "%1" + Mercurial Diff für "%1" + + + Me&rcurial + Me&rcurial + + + Annotate Current File + Annotation für Datei + + + Annotate "%1" + Annotation für "%1" + + + Diff Current File + Diff für Datei + + + Diff "%1" + Diff für "%1" + + + Meta+H,Meta+D + Meta+H,Meta+D + + + Log Current File + Filelog für Datei + + + Log "%1" + Log für "%1" + + + Meta+H,Meta+L + Meta+H,Meta+L + + + Status Current File + Status der Datei + + + Status "%1" + Status von "%1" + + + Alt+G,Alt+D + Alt+G,Alt+D + + + Triggers a Mercurial version control operation. + + + + Alt+G,Alt+L + Alt+G,Alt+L + + + Meta+H,Meta+S + Meta+H,Meta+S + + + Alt+G,Alt+S + Alt+G,Alt+S + + + Add + Hinzufügen + + + Add "%1" + "%1" hinzufügen + + + Delete... + Löschen... + + + Delete "%1"... + Lösche "%1"... + + + Revert Current File... + Änderungen der Datei rückgängig machen... + + + Revert "%1"... + Änderungen in "%1" rückgängig machen... + + + Diff + Diff + + + Log + Log + + + Revert... + Rückgängig machen... + + + Status + Status + + + Pull... + Pull... + + + Push... + Push... + + + Update... + Auf aktuellen Stand bringen... + + + Import... + Importieren... + + + Incoming... + Eingehend... + + + Outgoing... + Ausgehend... + + + Commit... + Commit... + + + Meta+H,Meta+C + Meta+H,Meta+C + + + Alt+G,Alt+C + Alt+G,Alt+C + + + Create Repository... + Repository erzeugen... + + + Pull Source + Quelle + + + Push Destination + Ziel + + + Update + Aktualisieren + + + Incoming Source + Quelle + + + There are no changes to commit. + Es sind keine ausstehenden Änderungen vorhanden. + + + Unable to create an editor for the commit. + Es konnte kein Editor für den Commit angelegt werden. + + + Commit changes for "%1". + Commit der Änderungen in "%1". + + + Mercurial + Mercurial + + + Mercurial Command + Ausführbare Datei + + + Password: + Passwort: + + + Username: + Benutzername: + + + &Annotate %1 + &Annotate %1 + + + Annotate &parent revision %1 + Annotation der über&geordneten Revision %1 + + + + QmlDesigner::Internal::SettingsPage + + Snapping + Raster + + + Qt Quick Designer + Qt Quick-Designer + + + Restart Required + Neustart erforderlich + + + The made changes will take effect after a restart of the QML Emulation layer or %1. + Die Änderungen werden nach einem Neustart der QML-Emulationsschicht oder von %1 wirksam. + + + Canvas + Leinwand + + + Warnings + Warnungen + + + Debugging + Debuggen + + + Show the debugging view + Debugansicht anzeigen + + + Enable the debugging view + Debugansicht aktivieren + + + Subcomponents + Subkomponenten + + + Always save when leaving subcomponent in bread crumb + Immer speichern, wenn eine Subkomponente per Breadcrumb Navigation verlassen wird + + + QML Emulation Layer + QML-Emulationsschicht + + + Styling + Stil + + + Controls style: + Controls Stil: + + + Default style + Vorgabestil + + + Reset Style + Stil zurücksetzen + + + If you select this radio button, Qt Quick Designer always uses the QML emulation layer (QML Puppet) located at the following path. + Wenn Sie diesen Radiobutton auswählen, benutzt der Qt Quick Designer immer die QML-Emulationsschicht (QML Puppet) im folgenden Pfad. + + + Use fallback QML emulation layer + Fallback QML-Emulationsschicht benutzen + + + Path: + Pfad: + + + Reset Path + Pfad zurücksetzen + + + Top level build path: + Oberstes Build-Verzeichnis: + + + Warns about QML features that are not properly supported by the Qt Quick Designer. + Zeigt eine Warnung bei QML-Features an, die vom Qt Quick Designer nicht vollständig unterstützt werden. + + + Also warns in the code editor about QML features that are not properly supported by the Qt Quick Designer. + Zeigt auch im Code-Editor eine Warnung bei QML-Features an, die vom Qt Quick Designer nicht vollständig unterstützt werden. + + + Internationalization + Internationalisierung + + + qsTr() + qsTr() + + + qsTrId() + qsTrId() + + + Show property editor warnings + Zeige Warnungen des Eigenschafteneditors + + + Show warn exceptions + Zeige Warnungsausnahmen + + + Forward QML emulation layer output: + Ausgabe der QML-Emulationsschicht weiterleiten: + + + Debug QML emulation layer: + Debug-QML-Emulationsschicht: + + + Default + Vorgabe + + + Material + Material + + + Universal + Universal + + + Qt Quick Designer will propose to open .ui.qml files instead of opening a .qml file. + Qt Quick Designer wird vorschlagen, .ui.qml-Dateien statt einer .qml-Datei zu öffnen. + + + Warn about using .qml files instead of .ui.qml files + Bei der Benutzung von .qml-Dateien statt .ui.qml-Dateien warnen + + + Width: + Breite: + + + Height: + Höhe: + + + Controls 2 style: + Controls-2-Stil: + + + Use QML emulation layer that is built with the selected Qt + Mit dem gewählten Qt erstellte QML-Emulationsschicht benutzen + + + qsTranslate() + qsTranslate() + + + Path to the QML emulation layer executable (qmlpuppet). + Pfad zur ausführbaren Datei der QML-Emulationsschicht (qmlpuppet). + + + Resets the path to the built-in QML emulation layer. + Setzt den Pfad zurück auf die integrierte QML-Emulationsschicht. + + + Features + Zusatzfunktionen + + + Enable Timeline editor + Timeline-Editor aktivieren + + + Always open ui.qml files in Design mode + ui.qml-Dateien immer im Design-Modus öffnen + + + Parent component padding: + + + + Sibling component spacing: + + + + Enable smooth rendering in the 2D view. + + + + Smooth rendering: + + + + Root Component Init Size + + + + Warn about unsupported features of .ui.qml files in code editor + + + + Warn about unsupported features in .ui.qml files + + + + Ask for confirmation before deleting asset + + + + + Utils::UnixTools + + <table border=1 cellspacing=0 cellpadding=3><tr><th>Variable</th><th>Expands to</th></tr><tr><td>%d</td><td>directory of current file</td></tr><tr><td>%f</td><td>file name (with full path)</td></tr><tr><td>%n</td><td>file name (without path)</td></tr><tr><td>%%</td><td>%</td></tr></table> + <table border=1 cellspacing=0 cellpadding=3><tr><th>Variable</th><th>Expandiert zu</th></tr><tr><td>%d</td><td>Verzeichnis der aktuellen Datei</td></tr><tr><td>%f</td><td>Dateiname mit vollständigem Pfad</td></tr><tr><td>%n</td><td>Dateiname (ohne Pfad)</td></tr><tr><td>%%</td><td>%</td></tr></table> + + + + Core + + Show Left Sidebar + Linke Seitenleiste anzeigen + + + Hide Left Sidebar + Linke Seitenleiste verbergen + + + Show Right Sidebar + Rechte Seitenleiste anzeigen + + + Hide Right Sidebar + Rechte Seitenleiste verbergen + + + Qt + Qt + + + on + an + + + off + aus + + + Environment + Umgebung + + + Clear Menu + Menü löschen + + + Configure... + msgShowOptionsDialog + Einstellungen... + + + Open Preferences dialog. + msgShowOptionsDialogToolTip (mac version) + Einstellungsdialog öffnen. + + + Open Options dialog. + msgShowOptionsDialogToolTip (non-mac version) + Einstellungsdialog öffnen. + + + All Files (*.*) + On Windows + Alle Dateien (*.*) + + + All Files (*) + On Linux/macOS + Alle Dateien (*) + + + %1 > %2 Preferences... + %1 > %2 Einstellungen... + + + Open From Device... + Von Gerät öffnen... + + + Apply Chunk + Änderung anwenden + + + Revert Chunk + Änderung rückgängig machen + + + Would you like to apply the chunk? + Möchten Sie diese Änderung anwenden? + + + Would you like to revert the chunk? + Möchten Sie diese Änderung rückgängig machen? + + + There is no patch-command configured in the general "Environment" settings. + Es ist keine ausführbare Datei für das patch-Kommando in den allgemeinen Umgebungseinstellungen konfiguriert. + + + The patch-command configured in the general "Environment" settings does not exist. + Das in den allgemeinen Umgebungseinstellungen konfigurierte patch-Kommando existiert nicht. + + + Running in %1: %2 %3 + Führe in %1 aus: %2 %3 + + + Unable to launch "%1": %2 + "%1" konnte nicht gestartet werden: %2 + + + A timeout occurred running "%1" + Zeitüberschreitung bei Ausführung von "%1" + + + "%1" crashed. + "%1" ist abgestürzt. + + + "%1" failed (exit code %2). + "%1" schlug fehl (Rückgabewert %2). + + + + VCS + + CVS Commit Editor + CVS Commit-Editor + + + CVS Command Log Editor + CVS Kommando-Log-Editor + + + CVS File Log Editor + CVS Datei-Log-Editor + + + CVS Annotation Editor + CVS Annotations-Editor + + + CVS Diff Editor + CVS Diff-Editor + + + Git SVN Log Editor + Git SVN-Log-Editor + + + Git Log Editor + Git Log-Editor + + + Git Reflog Editor + Git Reflog-Editor + + + Git Annotation Editor + Git Annotations-Editor + + + Git Commit Editor + Git Commit-Editor + + + Git Rebase Editor + Git Rebase-Editor + + + Git Submit Editor + Git Submit-Editor + + + Mercurial File Log Editor + Mercurial Datei-Log-Editor + + + Mercurial Annotation Editor + Mercurial Annotations-Editor + + + Mercurial Diff Editor + Mercurial Diff-Editor + + + Mercurial Commit Log Editor + Mercurial Commit-Log-Editor + + + Perforce.SubmitEditor + Perforce Submit-Editor + + + Perforce Log Editor + Perforce Datei-Log-Editor + + + Perforce Diff Editor + Perforce Diff-Editor + + + Perforce Annotation Editor + Perforce Annotations-Editor + + + Subversion Commit Editor + Subversion Commit-Editor + + + Subversion File Log Editor + Subversion Datei-Log-Editor + + + Subversion Annotation Editor + Subversion Annotations-Editor + + + Bazaar File Log Editor + Bazaar Datei-Log-Editor + + + Bazaar Annotation Editor + Bazaar Annotations-Editor + + + Bazaar Diff Editor + Bazaar Diff-Editor + + + Bazaar Commit Log Editor + Bazaar Commit-Log-Editor + + + ClearCase Check In Editor + ClearCase Check-In-Editor + + + ClearCase File Log Editor + ClearCase Datei-Log-Editor + + + ClearCase Annotation Editor + ClearCase Annotations-Editor + + + ClearCase Diff Editor + ClearCase Diff-Editor + + + + Perforce::Internal::PerforceChecker + + No executable specified + Es wurde keine ausführbare Datei angegeben + + + "%1" timed out after %2 ms. + Zeitüberschreitung bei der Ausführung von "%1"(%2 ms). + + + Unable to launch "%1": %2 + "%1" konnte nicht ausgeführt werden: %2 + + + "%1" crashed. + "%1" ist abgestürzt. + + + "%1" terminated with exit code %2: %3 + Der Prozess "%1" wurde beendet (Rückgabewert %2): %3 + + + The client does not seem to contain any mapped files. + Der Perforce-Client enthält offenbar keine Dateizuordnungen. + + + Unable to determine the client root. + Unable to determine root of the p4 client installation + Das Wurzelverzeichnis der Perforce-Installation konnte nicht bestimmt werden. + + + The repository "%1" does not exist. + Es ist existiert kein Repository "%1". + + + + ProjectExplorer::BaseProjectWizardDialog + + untitled + File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks and using only ascii chars. + untitled + + + + ProjectExplorer::Internal::DependenciesModel + + <No other projects in this session> + <Es existieren keine anderen Projekte in der Sitzung> + + + + ProjectExplorer::Internal::MiniProjectTargetSelector + + Project + Projekt + + + Build + Erstellen + + + Kit + Kit + + + Deploy + Deployment + + + Run + Ausführen + + + Unconfigured + Nicht konfiguriert + + + <b>Project:</b> %1 + <b>Projekt:</b> %1 + + + <b>Build:</b> %1 + <b>Erstellung:</b> %1<br/> + + + <b>Deploy:</b> %1 + <b>Deployment:</b> %1 + + + <b>Run:</b> %1 + <b>Ausführung:</b> %1<br/> + + + %1 + %1 + + + Kit: <b>%1</b><br/> + Kit: <b>%1</b><br/> + + + <style type=text/css>a:link {color: rgb(128, 128, 255);}</style>The project <b>%1</b> is not yet configured<br/><br/>You can configure it in the <a href="projectmode">Projects mode</a><br/> + <style type=text/css>a:link {color: rgb(128, 128, 255, 240);}</style>Das Projekt <b>%1</b> ist noch nicht konfiguriert<br/><br/>Sie können es im <a href="projectmode">Projektmodus</a> konfigurieren<br/> {128, 128, 255)?} {1<?} + + + Project: <b>%1</b><br/> + Projekt: <b>%1</b><br/> + + + <b>Path:</b> %1 + <b>Pfad:</b> %1 + + + <b>Kit:</b> %1 + <b>Kit:</b> %1 + + + Build: <b>%1</b><br/> + Erstellung: <b>%1</b><br/> + + + Deploy: <b>%1</b><br/> + Deployment: <b>%1</b><br/> + + + Run: <b>%1</b><br/> + Ausführung: <b>%1</b><br/> + + + + ProjectExplorer + + Build & Run + Erstellung und Ausführung + + + Other Project + Anderes Projekt + + + Application + Anwendung + + + Library + Bibliothek + + + Import Project + Projekt importieren + + + Devices + Geräte + + + Name of current build + Name der gegenwärtigen Build-Konfiguration + + + Main file of current project + Hauptdatei des aktuellen Projekts + + + Main file of the project + + + + Name of current project + Name des aktuellen Projekts + + + Name of the project + + + + Name of the project's active build configuration + + + + Name of the project's active build system + + + + Type of current build + Typ der gegenwärtigen Build-Konfiguration + + + Type of the project's active build configuration + + + + Kits + Kits + + + SSH + SSH + + + Kit is not valid. + Kit ist ungültig. + + + Start removing auto-detected items associated with this docker image. + + + + Removing kits... + + + + Removed "%1" + + + + Removing Qt version entries... + + + + Removing toolchain entries... + + + + Removal of previously auto-detected kit items finished. + + + + Start listing auto-detected items associated with this docker image. + + + + Kits: + + + + Qt versions: + + + + Toolchains: + + + + Listing of previously auto-detected kit items finished. + + + + Found "%1" + + + + Searching for qmake executables... + + + + Error: %1. + Fehler: %1. + + + No Qt installation found. + + + + Searching toolchains... + + + + Searching toolchains of type %1 + + + + %1 new toolchains found. + + + + Starting auto-detection. This will take a while... + + + + Registered kit %1 + + + + Auto-detected + Automatisch bestimmt + + + Automatically managed by %1 or the installer. + + + + Manual + Benutzerdefiniert + + + Debug + Debug + + + Release + Release + + + + QmlDesigner::NavigatorTreeModel + + Unknown component: %1 + + + + Toggles whether this component is exported as an alias property of the root component. + + + + Toggles the visibility of this component in the 2D view. +This is independent of the visibility property. + + + + Toggles whether this component is locked. +Locked components cannot be modified or selected. + + + + + QmlDesigner::NavigatorWidget + + Navigator + Title of navigator view + Navigator + + + Become last sibling of parent (CTRL + Left). + Nach übergeordnetem Element anordnen (CTRL + Left). + + + Become child of last sibling (CTRL + Right). + Unter letztem gleichrangigen Element anordnen (CTRL + Right). + + + Move down (CTRL + Down). + Nach unten (CTRL + Down). + + + Move up (CTRL + Up). + Nach oben (CTRL + Up). + + + Filter Tree + Baum filtern + + + Show Only Visible Components + + + + Reverse Component Order + + + + + WidgetPluginManager + + Failed to create instance of file "%1": %2 + Es konnte keine Instanz der Datei "%1" erzeugt werden: %2 + + + Failed to create instance of file "%1". + Es konnte keine Instanz der Datei "%1" erzeugt werden. + + + File "%1" is not a Qt Quick Designer plugin. + Die Datei "%1" ist kein Qt Quick Designer-Plugin. + + + + QmlDesigner::StatesEditorWidget + + States + Title of Editor widget + Status + + + Cannot Create QtQuick View + QtQuick View konnte nicht erzeugt werden + + + StatesEditorWidget: %1 cannot be created.%2 + + + + + QmlDesigner::Internal::DesignModeWidget + + &Workspaces + &Arbeitsbereiche + + + Output + Ausgaben + + + Switch the active workspace. + Den aktiven Arbeitsbereich wechseln. + + + Edit global annotation for current file. + Globale Annotation der aktuellen Datei bearbeiten. + + + Manage... + Verwalten... + + + Reset Active + + + + + QmlJSEditor + + Show Qt Quick Toolbar + Qt Quick-Werkzeugleiste anzeigen + + + QML + QML + + + QML + SnippetProvider + QML + + + Run Checks + Prüfungen ausführen + + + Ctrl+Shift+C + Ctrl+Shift+C + + + Reformat File + Datei neu formatieren + + + Inspect API for Element Under Cursor + API für Element unter der Einfügemarke untersuchen + + + QML Analysis + QML-Analyse + + + Move Component into Separate File + Verschiebe Komponente in separate Datei + + + Show All Bindings + Alle Bindings anzeigen + + + Split Initializer + Initalisierung aufspalten + + + Add a Comment to Suppress This Message + Fügen Sie einen Kommentar ein, um diese Nachricht zu unterdrücken + + + Property assignments for %1: + Eigenschaftszuweisungen für %1: + + + Component name: + Komponentenname: + + + Path: + Pfad: + + + Invalid component name. + + + + Invalid path. + + + + Component already exists. + Komponente existiert bereits. + + + Component Name + Komponentenname + + + ui.qml file + ui.qml-Datei + + + QML/JS Usages: + QML/JS Referenzen: + + + Searching for Usages + Suche nach Referenzen + + + Expand All + Alles aufklappen + + + Collapse All + Alle einklappen + + + Wrap Component in Loader + Komponente in Loader einbetten + + + // TODO: Move position bindings from the component to the Loader. +// Check all uses of 'parent' inside the root element of the component. + // TODO: Move position bindings from the component to the Loader. +// Check all uses of 'parent' inside the root element of the component. + + + // Rename all outer uses of the id "%1" to "%2.item". + // Rename all outer uses of the id "%1" to "%2.item". + + + // Rename all outer uses of the id "%1" to "%2.item.%1". + + // Rename all outer uses of the id "%1" to "%2.item.%1". + + + + Qt Quick Toolbars + Qt Quick-Werkzeugleisten + + + Pin Qt Quick Toolbar + Qt Quick-Werkzeugleiste verankern + + + Always show Qt Quick Toolbar + Qt Quick-Werkzeugleiste immer anzeigen + + + Always Ask + Stets fragen + + + Qt Design Studio + Qt Design Studio + + + Qt Creator + + + + Automatic Formatting on File Save + Automatische Formatierung beim Speichern einer Datei + + + Open .ui.qml files with: + + + + Enable auto format on file save + Beim Speichern einer Datei automatisch formatieren + + + Restrict to files contained in the current project + Auf Dateien des aktuellen Projekts beschränken + + + Features + Zusatzfunktionen + + + Auto-fold auxiliary data + Hilfsdaten automatisch einklappen + + + Code Model Warning + Codemodell-Warnung + + + Code Model Error + Codemodell-Fehler + + + QML/JS Editing + QML/JS-Bearbeitung + + + Show Qt Quick ToolBar + Qt-Quick-Werkzeugleiste anzeigen + + + Code Model Not Available + Codemodell nicht verfügbar + + + Code model not available. + Codemodell nicht verfügbar. + + + Code Model of %1 + Codemodell von %1 + + + Refactoring + Refactoring + + + This file should only be edited in <b>Design</b> mode. + Diese Datei sollte nur im <b>Design</b>-Modus bearbeitet werden. + + + Switch Mode + Modus umschalten + + + Library at %1 + Bibliothek bei %1 + + + Dumped plugins successfully. + Plugin-Information erfolgreich bestimmt. + + + Read typeinfo files successfully. + typeinfo-Dateien gelesen. + + + + QtSupport + + No qmake path set + Es ist keine qmake-Pfad gesetzt + + + qmake does not exist or is not executable + Die qmake-Datei existiert nicht oder ist nicht ausführbar + + + Qt version has no name + Die Qt-Version hat keinen Namen + + + <unknown> + <unbekannt> + + + System + System + + + Qt %{Qt:Version} in PATH (%2) + Qt %{Qt:Version} in PATH (%2) + + + Qt %{Qt:Version} (%2) + Qt %{Qt:Version} (%2) + + + Qt version is not properly installed, please run make install + Die Qt-Version ist nicht richtig installiert, führen Sie bitte make install aus + + + Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong? + Der Pfad zu den ausführbaren Dateien der Qt-Installation konnte nicht bestimmt werden, möglicherweise ist der Pfad zu qmake falsch? + + + The default mkspec symlink is broken. + Der symbolische Link zu der Vorgabe-mkspec ist fehlerhaft. + + + ABI detection failed: Make sure to use a matching compiler when building. + Die ABI konnte nicht bestimmt werden. Stellen Sie sicher, dass Sie einen passenden Compiler zum Erstellen verwenden. + + + Non-installed -prefix build - for internal development only. + Nicht installierter Build (-prefix) - nur zur internen Entwicklung. + + + "%1" crashed. + "%1" ist abgestürzt. + + + "%1" produced no output: %2. + + + + qmake "%1" is not an executable. + qmake "%1" ist keine ausführbare Datei. + + + No QML utility installed. + + + + Desktop + Qt Version is meant for the desktop + Desktop + + + Embedded Linux + Qt Version is used for embedded Linux development + Embedded Linux + + + Edit + Ändern + + + Remove + Entfernen + + + Add... + Hinzufügen... + + + Clean Up + Bereinigen + + + qmake path: + + + + Register documentation: + Dokumentation registrieren: + + + Link with Qt... + Mit Qt verknüpfen... + + + <specify a name> + <Geben Sie einen Namen an> + + + Do you want to remove all invalid Qt Versions?<br><ul><li>%1</li></ul><br>will be removed. + Möchten Sie alle ungültigen Qt-Versionen entfernen? <br><ul><li>%1</li></ul><br> wird entfernt. + + + No compiler can produce code for this Qt version. Please define one or more compilers for: %1 + Kein Compiler kann für diese Qt-Version Code erzeugen. Bitte richten Sie einen oder mehrere Compiler ein, geeignet für: %1 + + + The following ABIs are currently not supported: %1 + Die folgenden ABIs werden gegenwärtig nicht unterstützt: %1 + + + Select a qmake Executable + Wählen Sie die ausführbare qmake-Datei aus + + + Qmake Not Executable + Qmake ist nicht ausführbar + + + This Qt version was already registered as "%1". + Diese Qt-Version ist bereits unter "%1" registriert. + + + qmake Path + + + + Qt version %1 for %2 + Qt-Version %1 für %2 + + + Name + Name + + + Highest Version Only + Nur höchste Version + + + All + Alle + + + Remove Invalid Qt Versions + Ungültige Qt-Versionen entfernen + + + Display Name is not unique. + Der Anzeigename ist nicht einmalig. + + + Not all possible target environments can be supported due to missing compilers. + Es können nicht alle Zielumgebungen unterstützt werden, da einige Compiler fehlen. + + + Qt Version Already Known + Qt-Version bereits bekannt + + + The qmake executable %1 could not be added: %2 + Die ausführbare qmake-Datei %1 konnte nicht hinzugefügt werden: %2 + + + Incompatible Qt Versions + Inkompatible Qt-Versionen + + + The Qt version selected must match the device type. + Die ausgewählte Qt-Version muss dem Gerät entsprechen. + + + Linking with a Qt installation automatically registers Qt versions and kits, and other tools that were installed with that Qt installer, in this Qt Creator installation. Other Qt Creator installations are not affected. + + + + %1's resource directory is not writable. + Das Ressourcenverzeichnis von %1 ist nicht beschreibbar. + + + %1 is part of a Qt installation. + %1 ist Teil einer Qt-Installation. + + + %1 is currently linked to "%2". + %1 ist zur Zeit mit "%2" verknüpft. + + + Qt installation information was not found in "%1". Choose a directory that contains one of the files %2 + In "%1" wurde keine Qt-Installationsinformation gefunden. Wählen Sie ein Verzeichnis, das eine der folgenden Dateien enthält %2 + + + Choose Qt Installation + Qt-Installation wählen + + + The change will take effect after restart. + Die Änderung wird nach einem Neustart wirksam. + + + Qt installation path: + Qt-Installationspfad: + + + Choose the Qt installation directory, or a directory that contains "%1". + Wählen Sie das Qt-Installationsverzeichnis oder ein Verzeichnis, das "%1" enthält. + + + Cancel + Abbrechen + + + Remove Link + Verknüpfung entfernen + + + Examples + Beispiele + + + Tutorials + Anleitungen + + + Copy Project to writable Location? + Projekt an schreibbaren Pfad kopieren? + + + <p>The project you are about to open is located in the write-protected location:</p><blockquote>%1</blockquote><p>Please select a writable location below and click "Copy Project and Open" to open a modifiable copy of the project or click "Keep Project and Open" to open the project in location.</p><p><b>Note:</b> You will not be able to alter or compile your project in the current location.</p> + <p>Das zu öffnende Projekt befindet sich in einem schreibgeschützten Verzeichnis:</p><blockquote>%1</blockquote><p>Bitte geben Sie ein schreibbares Verzeichnis an und wählen dann "Kopieren und öffne Projekt", um eine modifizierbare Kopie des Projektes erhalten, oder "Öffne Projekt hier", um das Projekt im gegenwärtigen Verzeichnis zu öffnen</p><p><b>Hinweis:</b> Im gegenwärtigen.Verzeichnis kann das Projekt weder compiliert noch modifiziert werden.</p> + + + &Location: + &Ziel: + + + &Copy Project and Open + &Kopiere und öffne Projekt + + + &Keep Project and Open + &Öffne Projekt hier + + + Cannot Use Location + Ziel kann nicht verwendet werden + + + The specified location already exists. Please specify a valid location. + Der angegebene Pfad existiert bereits. Bitte geben Sie einen gültigen Pfad ein. + + + Cannot Copy Project + Fehler beim Kopieren des Projekts + + + Search in Examples... + Suche in Beispielen... + + + Search in Tutorials... + Suche in Anleitungen... + + + Qt Versions + Qt-Versionen + + + Qt Class Generation + Qt-Klassenerzeugung + + + %1 (invalid) + %1 (ungültig) + + + Link with Qt + Mit Qt verknüpfen + + + No factory found for qmake: "%1" + Es konnte keine Factory für qmake gefunden werden: "%1" + + + The Qt version is invalid: %1 + %1: Reason for being invalid + Ungültige Qt-Version: %1 + + + The qmake command "%1" was not found or is not executable. + %1: Path to qmake executable + Das qmake-Kommando "%1" konnte nicht gefunden werden, oder die Datei ist nicht ausführbar. + + + Embedding of the UI Class + Verwendung der UI-Klasse + + + Aggregation as a pointer member + Aggregation als Zeiger + + + Aggregation + Aggregation + + + Multiple inheritance + Mehrfachvererbung + + + Code Generation + Code-Erzeugung + + + Support for changing languages at runtime + Wechsel der Sprache zur Laufzeit unterstützen + + + Use Qt module name in #include-directive + Qt-Modulnamen in #include-Direktive verwenden + + + Add Qt version #ifdef for module names + Von Qt-Version abhängige #ifdef-Direktiven für Modulnamen einfügen + + + Device type is not supported by Qt version. + Der Gerätetyp wird von der Qt-Version nicht unterstützt. + + + The compiler "%1" (%2) cannot produce code for the Qt version "%3" (%4). + Der Compiler "%1" (%2) kann für die Qt-Version "%3" (%4) keinen Code erstellen. + + + The compiler "%1" (%2) may not produce code compatible with the Qt version "%3" (%4). + Der Compiler "%1" (%2) erstellt möglicherweise keinen mit der Qt-Version "%3" (%4) kompatiblen Code. + + + The kit has a Qt version, but no C++ compiler. + Das Kit hat eine Qt-Version, aber keinen C++-Compiler. + + + Name: + Name: + + + Invalid Qt version + Ungültige Qt-Version + + + ABI: + ABI: + + + Source: + Quelle: + + + mkspec: + mkspec: + + + qmake: + qmake: + + + Default: + Vorgabe: + + + Version: + Version: + + + Qt version + Qt-Version + + + The version string of the current Qt version. + Die Versionsbezeichnung der aktuellen Qt-Version. + + + The type of the current Qt version. + Der Typ der aktuellen Qt-Version. + + + The mkspec of the current Qt version. + Die mkspec der aktuellen Qt-Version. + + + The installation prefix of the current Qt version. + Das Installationspräfix der aktuellen Qt-Version. + + + The installation location of the current Qt version's data. + Das Installationsverzeichnis für Daten der aktuellen Qt-Version. + + + The host location of the current Qt version. + + + + The installation location of the current Qt version's internal host executable files. + + + + The installation location of the current Qt version's header files. + Das Installationsverzeichnis für Header-Dateien der aktuellen Qt-Version. + + + The installation location of the current Qt version's library files. + Das Installationsverzeichnis für Bibliotheken der aktuellen Qt-Version. + + + The installation location of the current Qt version's documentation files. + Das Installationsverzeichnis für Dokumentationsdateien der aktuellen Qt-Version. + + + The installation location of the current Qt version's executable files. + Das Installationsverzeichnis für ausführbare Dateien der aktuellen Qt-Version. + + + The installation location of the current Qt version's internal executable files. + + + + The installation location of the current Qt version's plugins. + Das Installationsverzeichnis für Plugins der aktuellen Qt-Version. + + + The installation location of the current Qt version's QML files. + Das Installationsverzeichnis für QML-Dateien der aktuellen Qt-Version. + + + The installation location of the current Qt version's imports. + Das Installationsverzeichnis für Imports der aktuellen Qt-Version. + + + The installation location of the current Qt version's translation files. + Das Installationsverzeichnis für Übersetzungen der aktuellen Qt-Version. + + + The installation location of the current Qt version's examples. + Das Installationsverzeichnis für Beispielprojekte der aktuellen Qt-Version. + + + The installation location of the current Qt version's demos. + Das Installationsverzeichnis für Demoprojekte der aktuellen Qt-Version. + + + The current Qt version's default mkspecs (Qt 4). + Die Vorgabe-mkspecs der aktuellen Qt-Version (Qt 4). + + + The current Qt version's default mkspec (Qt 5; host system). + Die Vorgabe-mkspec der aktuellen Qt-Version (Qt 5; Host-System). + + + The current Qt version's default mkspec (Qt 5; target system). + Die Vorgabe-mkspec der aktuellen Qt-Version (Qt 5; Zielsystem). + + + The current Qt's qmake version. + Die qmake-Version der aktuellen Qt-Version. + + + Timeout running "%1". + + + + No Qt version. + Keine Qt-Version. + + + Invalid Qt version. + Ungültige Qt-Version. + + + Requires Qt 5.0.0 or newer. + Erfordert Qt 5.0.0 oder neuer. + + + Requires Qt 5.3.0 or newer. + Erfordert Qt 5.3.0 oder neuer. + + + This Qt Version does not contain Qt Quick Compiler. + Diese Qt-Version enthält keinen Qt Quick Compiler. + + + The Qt library to use for all projects using this kit.<br>A Qt version is required for qmake-based projects and optional when using other build systems. + Die für alle Projekte, die dieses Kit verwenden, zu benutzende Qt-Bibliothek.<br>Für qmake-basierende Projekte ist diese Angabe erforderlich, für andere Build-Systeme optional. + + + None + Keine + + + Name of Qt Version + Name der Qt-Version + + + unknown + unbekannt + + + Path to the qmake executable + Pfad zur ausführbaren Datei von qmake + + + QML debugging and profiling: + + + + Might make your application vulnerable.<br/>Only use in a safe environment. + + + + Qt Quick Compiler: + Qt-Quick-Compiler: + + + Disables QML debugging. QML profiling will still work. + Deaktiviert QML-Debuggen. QML-Profiling funktioniert weiterhin. + + + If you plan to provide translations for your project's user interface via the Qt Linguist tool, please select a language here. A corresponding translation (.ts) file will be generated for you. + + + + <none> + <leer> + + + Language: + Sprache: + + + Translation file: + Übersetzungsdatei: + + + Qt Version + Qt-Version + + + Location of qmake + QMake-Pfad + + + Link with a Qt installation to automatically register Qt versions and kits? To do this later, select Edit > Preferences > Kits > Qt Versions > Link with Qt. + + + + Full path to the host bin directory of the Qt version in the active kit of the project containing the current document. + + + + Full path to the target bin directory of the Qt version in the active kit of the project containing the current document.<br>You probably want %1 instead. + + + + Full path to the host libexec directory of the Qt version in the active kit of the project containing the current document. + + + + Full path to the host bin directory of the Qt version in the active kit of the active project. + + + + Full path to the target bin directory of the Qt version in the active kit of the active project.<br>You probably want %1 instead. + + + + Full path to the libexec bin directory of the Qt version in the active kit of the active project. + + + + + TextEditor + + Text Editor + Texteditor + + + Cannot create temporary file "%1": %2. + Die temporäre Datei "%1" konnte nicht erstellt werden: %2. + + + Failed to format: %1. + Konnte nicht formatieren: %1. + + + Cannot read file "%1": %2. + Die Datei "%1" kann nicht gelesen werden: %2. + + + Cannot call %1 or some other error occurred. Timeout reached while formatting file %2. + %1 konnte nicht aufgerufen werden oder es trat ein anderer Fehler auf. Zeitüberschreitung während die Datei %2 formatiert wurde. + + + Error in text formatting: %1 + Fehlerhafte Formatierung: %1 + + + Could not format file %1. + Die Datei %1 konnte nicht formatiert werden. + + + File %1 was closed. + Datei %1 wurde geschlossen. + + + File was modified. + Datei geändert. + + + + QmlJS::Check + + 'int' or 'real' + 'int' oder 'real' + + + + Core::Internal::SystemEditor + + System Editor + Editor des Betriebssystems + + + Could not open URL %1. + URL %1 konnte nicht geöffnet werden. + + + + BuildSettingsPanel + + Build Settings + Build-Einstellungen + + + + DependenciesPanelFactory + + Dependencies + Abhängigkeiten + + + + EditorSettingsPanelFactory + + Editor + Editor + + + + QmlProjectManager::QmlProject + + Kit has no device. + Das Kit hat kein Gerät. + + + Qt version is too old. + Die Qt-Version ist zu alt. + + + Qt version has no QML utility. + + + + Non-desktop Qt is used with a desktop device. + Eine Qt-Version, die nicht für den Desktop gedacht ist, wird mit einem Desktop-Gerät verwendet. + + + No Qt version set in kit. + Im Kit ist keine Qt-Version gesetzt. + + + + QmlProjectManager::QmlProjectRunConfiguration + + System Environment + Systemumgebung + + + Clean Environment + Saubere Umgebung + + + QML Utility + QMLRunConfiguration display name. + + + + No QML utility found. + + + + No QML utility specified for target device. + + + + Qt Version: + + + + Qt 6 + Qt 6 + + + Qt 5 + Qt 5 + + + QML Runtime + + + + QML Viewer: + QML-Betrachter: + + + No script file to execute. + Keine Skriptdatei zum Ausführen. + + + + Core::DesignMode + + Design + Design + + + + VcsBase::CleanDialog + + The directory %1 could not be deleted. + Das Verzeichnis %1 konnte nicht gelöscht werden. + + + The file %1 could not be deleted. + Die Datei %1 konnte nicht gelöscht werden. + + + There were errors when cleaning the repository %1: + Beim Bereinigen des Repositorys %1 traten Fehler auf: + + + Clean Repository + Repository bereinigen + + + Select All + + + + Delete... + Löschen... + + + Name + Name + + + Repository: %1 + Repository: %1 + + + %n bytes, last modified %1. + + %n byte, zuletzt geändert %1. + %n bytes, zuletzt geändert %1. + + + + Delete + Löschen + + + Do you want to delete %n files? + + Möchten Sie eine Datei löschen? + Möchten Sie %n Dateien löschen? + + + + Cleaning "%1" + Bereinige "%1" + + + + ExtensionSystem::PluginDetailsView + + None + Keine + + + All + Alle + + + %1 (current: "%2") + %1 (aktuell: "%2") + + + + ExtensionSystem::PluginView + + Name + Name + + + Load + Geladen + + + Version + Version + + + Vendor + Anbieter + + + Load on Startup + Beim Start Laden + + + Utilities + Hilfsmittel + + + Plugin is not available on this platform. + Plugin ist auf dieser Plattform nicht verfügbar. + + + %1 (experimental) + %1 (experimentell) + + + Path: %1 +Plugin is not available on this platform. + Pfad: %1 +Plugin ist auf dieser Plattform nicht verfügbar. + + + Path: %1 +Plugin is enabled as dependency of an enabled plugin. + Pfad: %1 +Plugin aktiviert als Abhängigkeit eines aktivierten Plugins. + + + Path: %1 +Plugin is enabled by command line argument. + Pfad: %1 +Plugin durch ein Kommandozeilenargument aktiviert. + + + Path: %1 +Plugin is disabled by command line argument. + Pfad: %1 +Plugin durch ein Kommandozeilenargument deaktiviert. + + + Path: %1 + Pfad: %1 + + + Plugin is required. + Plugin ist erforderlich. + + + Load on startup + Beim Start Laden + + + Enabling Plugins + Plugins aktivieren + + + Enabling +%1 +will also enable the following plugins: + +%2 + %1 +zu aktivieren, aktiviert auch die folgenden Plugins: + +%2 + + + Disabling Plugins + Plugins deaktivieren + + + Disabling +%1 +will also disable the following plugins: + +%2 + %1 +zu deaktivieren, deaktiviert auch die folgenden Plugins: + +%2 + + + + Utils::fileDeletedPrompt + + File Has Been Removed + Die Datei wurde gelöscht + + + The file %1 has been removed from disk. Do you want to save it under a different name, or close the editor? + Die Datei %1 wurde vom Speichermedium gelöscht. Möchten Sie sie unter einem anderen Namen speichern oder den Editor schließen? + + + &Close + &Schließen + + + C&lose All + A&lle schließen + + + Save &as... + Speichern &unter... + + + &Save + &Speichern + + + + Core::CommandMappings + + Command Mappings + Zuordnung von Kommandos + + + Target + Ziel + + + Command + Kommando + + + Reset All + Alle zurücksetzen + + + Reset all to default. + Alle auf Vorgabewert zurücksetzen. + + + Reset + Zurücksetzen + + + Reset to default. + Auf Vorgabe zurücksetzen. + + + Import... + Importieren... + + + Export... + Exportieren... + + + Label + Beschreibung + + + + Core::EditorToolBar + + Drag to drag documents between splits + Ziehen um Dokumente in andere Editor-Ansichten zu verschieben + + + Split + Teilen + + + Remove Split + Teilung entfernen + + + Make Writable + Schreibbar machen + + + File is writable + Die Datei ist schreibbar + + + + ProjectExplorer::BuildConfiguration + + Build Settings + Build-Einstellungen + + + Build directory + Build-Verzeichnis + + + Name of current build + Name der aktuellen Build-Konfiguration + + + Name of the build configuration + + + + Variables in the current build environment + Variablen in der aktuellen Build-Umgebung + + + Variables in the build configuration's environment + + + + Tooltip in target selector: + + + + Appears as a tooltip when hovering the build configuration + + + + System Environment + Systemumgebung + + + Clean Environment + Saubere Umgebung + + + The project was not parsed successfully. + Das Projekt konnte nicht erfolgreich ausgewertet werden. + + + Build + Build + + + Default + The name of the build configuration created by default for a autotools project. +---------- +The name of the build configuration created by default for a generic project. + Vorgabe + + + Debug + Debug + + + Release + Release + + + Variables in the current build environment. + + + + Variables in the active build environment of the project containing the currently open document. + + + + Variables in the active build environment of the active project. + + + + + ProjectExplorer::Internal::CustomWizardPage + + Path: + Pfad: + + + + QmlManager + + <Current File> + <Aktuelle Datei> + + + + QmlJS::Link + + File or directory not found. + Datei oder Verzeichnis nicht gefunden. + + + QML module not found (%1). + +Import paths: +%2 + +For qmake projects, use the QML_IMPORT_PATH variable to add import paths. +For Qbs projects, declare and set a qmlImportPaths property in your product to add import paths. +For qmlproject projects, use the importPaths property to add import paths. +For CMake projects, make sure QML_IMPORT_PATH variable is in CMakeCache.txt. +For qmlRegister... calls, make sure that you define the Module URI as a string literal. + + + + + QML module contains C++ plugins, currently reading type information... %1 + + + + Implicit import '%1' of QML module '%2' not found. + +Import paths: +%3 + +For qmake projects, use the QML_IMPORT_PATH variable to add import paths. +For Qbs projects, declare and set a qmlImportPaths property in your product to add import paths. +For qmlproject projects, use the importPaths property to add import paths. +For CMake projects, make sure QML_IMPORT_PATH variable is in CMakeCache.txt. + + Der implizite Import '%1' des QML-Moduls '%2' wurde nicht gefunden. + +Importpfade: +%3 + +Für qmake-Projekte benutzen Sie die Variable QML_IMPORT_PATH, um Importpfade hinzuzufügen. +Für Qbs-Projekte geben Sie eine qmlImportPaths-Eigenschaft in Ihrem Produkt an, um Importpfade hinzuzufügen. +Für qmlproject-Projekte benutzen Sie die Eigenschaft importPaths, um Importpfade hinzuzufügen. +Für CMake-Projekte stellen Sie sicher, dass die Variable QML_IMPORT_PATH in CMakeCache.txt steht. + + + + + RectangleSpecifics + + Rectangle + + + + Fill color + + + + Border color + + + + Border width + + + + Radius + Radius + + + + Utils::LinearProgressWidget + + ... + ... + + + + BorderImageSpecifics + + Source + Bildquelle + + + Border Image + Border Image + + + W + width + The width of the object + + + + H + height + The height of the object + H + + + Tile mode H + + + + Tile mode V + + + + Border left + + + + Border right + + + + Border top + + + + Border bottom + + + + Mirror + Spiegeln + + + Specifies whether the image should be horizontally inverted. + Legt fest, ob das Bild horizontal gespiegelt werden soll. + + + Smooth + Glatt + + + Specifies whether the image is smoothly filtered when scaled or transformed. + Legt fest, ob das Bild beim Skalieren oder Umwandeln geglättet wird. + + + Cache + Cache + + + Specifies whether the image should be cached. + Legt fest, ob das Bild zwischengespeichert werden soll. + + + Asynchronous + Asynchron + + + Specifies that images on the local filesystem should be loaded asynchronously in a separate thread. + Legt fest, dass Bilder aus dem lokalen Dateisystem asynchron in einem eigenen Thread geladen werden. + + + Source size + Größe der Bildquelle + + + + QmlDesigner::Internal::ModelPrivate + + Exception thrown by view %1. + + + + + Utils::FancyMainWindow + + Central Widget + Zentrales Widget + + + Reset to Default Layout + Vorgabe wiederherstellen + + + Automatically Hide View Title Bars + Titelleisten von Anzeigen automatisch ausblenden + + + + ProjectExplorer::Internal::SessionNameInputDialog + + Enter the name of the session: + Geben Sie den Namen der Sitzung an: + + + + TextEditor::Internal::TextEditorPlugin + + Ctrl+Space + Ctrl+Space + + + Meta+Space + Meta+Space + + + Trigger Completion + Code-Vervollständigung auslösen + + + Display Function Hint + Funktionsdetails anzeigen + + + Meta+Shift+D + Meta+Shift+D + + + Ctrl+Shift+D + Ctrl+Shift+D + + + Trigger Refactoring Action + Refactoring-Aktion auslösen + + + Alt+Return + Alt+Return + + + Show Context Menu + Kontextmenü anzeigen + + + Text + SnippetProvider + Text + + + Selected text within the current document. + Ausgewählter Text im aktuellen Dokument. + + + Line number of the text cursor position in current document (starts with 1). + Zeilennummer der Cursorposition des aktuellen Dokuments (beginnend bei 1). + + + Column number of the text cursor position in current document (starts with 0). + Spaltennummer der Cursorposition des aktuellen Dokuments (beginnend bei 0). + + + Number of lines visible in current document. + Anzahl der sichtbaren Zeilen des aktuellen Dokuments. + + + Number of columns visible in current document. + Anzahl der sichtbaren Spalten des aktuellen Dokuments. + + + Current document's font size in points. + Font-Größe des aktuellen Dokuments. + + + Word under the current document's text cursor. + Wort an der Einfügemarke des aktuellen Dokuments. + + + + emptyPane + + Select a component in the 2D, Navigator, or Code view to see its properties. + + + + + QmlDesigner::FormEditorWidget + + No snapping. + Keine Ausrichtung. + + + Override Width + Breite überschreiben + + + Override Height + Höhe überschreiben + + + Snap to parent or sibling components and generate anchors. + + + + Snap to parent or sibling components but do not generate anchors. + + + + Show bounding rectangles and stripes for empty components. + + + + Override width of root component. + + + + Override height of root component. + + + + Zoom In + Vergrößern + + + Zoom Out + Verkleinern + + + Zoom screen to fit all content. + + + + Ctrl+Alt+0 + + + + Zoom screen to fit current selection. + + + + Ctrl+Alt+i + + + + Reset View + Ansicht zurücksetzen + + + Export Current QML File as Image + Aktuelle QML-Datei als Bild exportieren + + + PNG (*.png);;JPG (*.jpg) + PNG (*.png);;JPG (*.jpg) + + + + InvalidIdException + + Only alphanumeric characters and underscore allowed. +Ids must begin with a lowercase letter. + Es sind nur alphanumerische Zeichen und Unterstriche zulässig. +IDs müssen außerdem mit einem Kleinbuchstaben beginnen. + + + Ids have to be unique. + IDs müssen eindeutig sein. + + + Invalid Id: %1 +%2 + Ungültige ID: %1 +%2 + + + + QmlDesigner::InvalidArgumentException + + Failed to create item of type %1 + Es konnte kein Element des Typs %1 erzeugt werden + + + + ContextPaneTextWidget + + Text + Text + + + Style + Stil + + + ... + ... + + + + ContextPaneWidgetBorderImage + + 10 x 10 + 10 x 10 + + + Stretch vertically. Scales the image to fit to the available area. + Vertikal anpassen. Skaliert das Bild, so dass es die zur Verfügung stehende Fläche ausfüllt. + + + Repeat vertically. Tiles the image until there is no more space. May crop the last image. + Vertikal mehrfach anordnen. Bild mehrfach untereinander anordnen, bis kein Platz mehr vorhanden ist. Das letzte Bild wird unter Umständen beschnitten. + + + Round. Like Repeat, but scales the images down to ensure that the last image is not cropped. + Runden. Wie 'Vertikal mehrfach anordnen' mit zusätzlicher Skalierung zur Vermeidung des Beschneidens des letzten Bildes. + + + Repeat horizontally. Tiles the image until there is no more space. May crop the last image. + Horizontal mehrfach anordnen. Bild mehrfach nebeneinander anordnen, bis kein Platz mehr vorhanden ist. Das letzte Bild wird unter Umständen beschnitten. + + + Stretch horizontally. Scales the image to fit to the available area. + Horizontal anpassen. Skaliert das Bild, so dass es die zur Verfügung stehende Fläche ausfüllt. + + + + ContextPaneWidgetImage + + 10 x 10 + 10 x 10 + + + The image is scaled to fit. + Das Bild ist skaliert, um die Fläche auszufüllen. + + + The image is stretched horizontally and tiled vertically. + Das Bild ist horizontal gestreckt und vertikal mehrfach untereinander angeordnet. + + + The image is stretched vertically and tiled horizontally. + Das Bild ist vertikal gestreckt und mehrfach nebeneinander angeordnet. + + + The image is duplicated horizontally and vertically. + Das Bild ist horizontal und vertikal mehrfach nebeneinander angeordnet. + + + The image is scaled uniformly to fit without cropping. + Das Bild ist gleichmäßig skaliert, um die Fläche auszufüllen ohne Überstehendes abzuschneiden. + + + The image is scaled uniformly to fill, cropping if necessary. + Das Bild ist gleichmäßig skaliert, Überstehendes wird abgeschnitten sofern nötig. + + + + ContextPaneWidgetRectangle + + Gradient + Gradient + + + Color + Farbe + + + ... + ... + + + Border + Rahmen + + + + EasingContextPane + + Dialog + Dialog + + + Easing + Easing + + + Subtype + Subtype + + + Duration + Dauer + + + INVALID + Ungültig + + + ms + ms + + + Amplitude + Amplitude + + + Period + Periode + + + Overshoot + Overshoot + + + Play simulation. + Simulation abspielen. + + + Type of easing curve. + Typ der Easing-Kurve. + + + Acceleration or deceleration of easing curve. + Beschleunigung/Verlangsamung der Easing-Kurve. + + + Duration of animation. + Dauer der Animation. + + + Amplitude of elastic and bounce easing curves. + Amplitude für Easing-Kurven des Typs Elastic und Bounce. + + + Easing period of an elastic curve. + Easing-Periode für Kurven des Typs Elastic. + + + Easing overshoot for a back curve. + Easing-Overshoot für Kurven des Typs Back. + + + + ClassView::Internal::NavigationWidget + + Show Subprojects + Untergeordnete Projekte anzeigen + + + + ImageViewer + + Export + Export + + + Set as Default + Als Vorgabe setzen + + + on + an + + + off + aus + + + Use the current settings for background, outline, and fitting to screen as the default for new image viewers. Current default: + + + + Background: %1 + + + + Outline: %1 + + + + Fit to Screen: %1 + + + + Image Viewer + Bildbetrachter + + + Fit to Screen + An Bildschirm anpassen + + + Ctrl+= + Ctrl+= + + + Switch Background + Hintergrund umschalten + + + Ctrl+[ + Ctrl+[ + + + Switch Outline + Umriss umschalten + + + Ctrl+] + Ctrl+] + + + Toggle Animation + Animation umschalten + + + Export Multiple Images + Mehrere Bilder exportieren + + + Copy as Data URL + + + + Play Animation + Animation abspielen + + + Pause Animation + Animation anhalten + + + Image format not supported. + Bildformat nicht unterstützt. + + + Failed to read SVG image. + Das SVG-Bild konnte nicht gelesen werden. + + + Failed to read image. + Das Bild konnte nicht gelesen werden. + + + x + Multiplication, as in 32x32 + x + + + Size: + Größe: + + + %1 already exists. +Would you like to overwrite it? + %1 existiert bereits. +Möchten Sie sie überschreiben? + + + Export %1 + %1 exportieren + + + Exported "%1", %2x%3, %4 bytes + "%1" exportiert, %2x%3, %4 Bytes + + + Export Image + Bild exportieren + + + Export a Series of Images from %1 (%2x%3) + Eine Bilderserie aus %1 exportieren (%2x%3) + + + Could not write file "%1". + Die Datei "%1" konnte nicht geschrieben werden. + + + Enter a file name containing place holders %1 which will be replaced by the width and height of the image, respectively. + Geben Sie einen Dateinamen ein, der die Platzhalter %1 enthält, die durch Breite und Höhe des Bilds ersetzt werden. + + + File: + Datei: + + + Clear + Löschen + + + Set Standard Icon Sizes + Standard-Symbolgröße einstellen + + + Generate Sizes + Größen erzeugen + + + A comma-separated list of size specifications of the form "<width>x<height>". + Eine kommaseparierte Liste von Größenangaben der Form "<Breite>x<Höhe>". + + + Sizes: + Größen: + + + Please specify some sizes. + Bitte geben Sie einige Größen an. + + + Invalid size specification: %1 + Ungültige Größenangabe: %1 + + + The file name must contain one of the placeholders %1, %2. + Der Dateiname muss einen der Platzhalter %1, %2 enthalten. + + + The file %1 already exists. +Would you like to overwrite it? + Die Datei %1 existiert bereits. +Möchten Sie sie überschreiben? + + + The files %1 already exist. +Would you like to overwrite them? + Die Dateien %1 existieren bereits. +Möchten Sie sie überschreiben? + + + + QmlEditorWidgets::ContextPaneWidget + + Hides this toolbar. + Schließt diese Werkzeugleiste. + + + Pin Toolbar + Werkzeugleiste verankern + + + Show Always + Stets anzeigen + + + Unpins the toolbar and moves it to the default position. + Löst die Verankerung und verschiebt die Werkzeugleiste an die Vorgabeposition. + + + Hides this toolbar. This toolbar can be permanently disabled in the options page or in the context menu. + Schließt diese Werkzeugleiste. Sie kann in den Einstellung oder durch das Kontextmenü dauerhaft abgeschaltet werden. + + + + QmlEditorWidgets::ContextPaneWidgetImage + + Double click for preview. + Doppelklick zur Vorschau. + + + + QmlEditorWidgets::FileWidget + + Open File + Datei öffnen + + + + ClassView::Internal::NavigationWidgetFactory + + Class View + Klassenanzeige + + + + Core::NavigationWidget + + Activate %1 View + Anzeige "%1" aktivieren + + + + CppEditor::Internal::CppTypeHierarchyWidget + + No type hierarchy available + Keine Klassenhierarchie verfügbar + + + Bases + Basisklassen + + + Evaluating Type Hierarchy + + + + Derived + Abgeleitet + + + Evaluating type hierarchy... + + + + + CppEditor::Internal::CppTypeHierarchyFactory + + Type Hierarchy + Klassenhierarchie + + + + ProjectExplorer::Internal::BuildStepListWidget + + %1 Steps + %1 is the name returned by BuildStepList::displayName + Schritte zum %1 + + + No %1 Steps + Keine Schritte für %1 + + + Add %1 Step + Schritt für %1 hinzufügen + + + Move Up + Nach oben + + + Disable + Deaktivieren + + + Move Down + Nach unten + + + Remove Item + Element löschen + + + Enable + Aktivieren + + + Removing Step failed + Das Entfernen des Build-Schritts schlug fehl + + + Cannot remove build step while building + Während des Build-Vorgangs ist das Entfernen eines Build-Schritts nicht möglich + + + No Build Steps + Keine Build-Schritte + + + + ProjectExplorer::Internal::CopyTaskHandler + + error: + Task is of type: error + Fehler: + + + warning: + Task is of type: warning + Warnung: + + + + ProjectExplorer::DeployConfiguration + + Deploy locally + Default DeployConfiguration display name + Lokales Deployment + + + Deploy Configuration + Display name of the default deploy configuration + Deployment-Konfiguration + + + + ProjectExplorer::RunControl + + Unexpected run control state %1 when worker %2 started. + Unerwarteter Run Control-Zustand %1 beim Start von Worker %2. + + + Application Still Running + Anwendung läuft noch + + + Force &Quit + &Beenden erzwingen + + + &Keep Running + &Fortsetzen + + + Starting %1... + Starte %1 %2... {1.?} + + + No executable specified. + Es wurde keine ausführbare Datei angegeben. + + + <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> läuft noch.<center/><center>Soll es beendet werden?</center></body></html> + + + PID %1 + PID %1 + + + Invalid + Ungültig + + + + ProjectExplorer::Internal::ShowInEditorTaskHandler + + Show in Editor + In Editor anzeigen + + + Show task location in an editor. + Fundstelle in Editor anzeigen. + + + + ProjectExplorer::Internal::TaskWindow + + Issues + Probleme + + + Show Warnings + Warnungen anzeigen + + + Filter by categories + Nach Kategorie filtern + + + + ProjectExplorer::Internal::VcsAnnotateTaskHandler + + &Annotate + &Annotation + + + Annotate using version control system. + Annotation durch Versionskontrollsystem. + + + + TaskList::Internal::StopMonitoringHandler + + Stop Monitoring + Überwachung beenden + + + Stop monitoring task files. + Überwachung von Aufgabendateien beenden. + + + + TextEditor::Internal::OutlineWidgetStack + + No outline available + Überblick nicht verfügbar + + + Synchronize with Editor + Mit Editor synchronisieren + + + Filter tree + Baum filtern + + + Sort Alphabetically + Alphabetisch sortieren + + + + TextEditor::Internal::OutlineFactory + + Outline + Überblick + + + + Utils::FileNameValidatingLineEdit + + Name is empty. + Der Dateiname ist leer. + + + Name contains white space. + Der Name enthält Leerzeichen. + + + Invalid character "%1". + Ungültiges Zeichen "%1". + + + Invalid characters "%1". + Ungültige Zeichen "%1". + + + Name matches MS Windows device (CON, AUX, PRN, NUL, COM1, COM2, ..., COM9, LPT1, LPT2, ..., LPT9) + Der Name entspricht einem MS Windows-Gerätenamen (CON, AUX, PRN, NUL, COM1, COM2, ..., COM9, LPT1, LPT2, ..., LPT9) + + + File extension %1 is required: + Dateisuffix %1 ist erforderlich: + + + File extensions %1 are required: + Einer der Dateisuffixe %1 ist erforderlich: + + + + QmlJS::Bind + + Hit maximal recursion depth in AST visit. + + + + package import requires a version number + Package-Import erfordert eine Versionsnummer + + + Nested inline components are not supported + + + + + Core::Internal::CommandComboBox + + Activate %1 View + Anzeige "%1" aktivieren + + + + CppEditor::InsertDefOperation + + Add Definition in %1 + Definition in %1 hinzufügen + + + Add Definition Here + Definition hier einfügen + + + Add Definition Inside Class + Definition innerhalb der Klasse erstellen + + + Add Definition Outside Class + Definition außerhalb der Klasse erstellen + + + + CppEditor::InsertDeclOperation + + Add %1 Declaration + Deklaration für %1 hinzufügen + + + + Macros::Internal::MacroOptionsWidget + + Preferences + Einstellungen + + + Name + Name + + + Shortcut + Tastenkombination + + + Description) + + + + Macro + Makro + + + Description: + Beschreibung: + + + Remove + Löschen + + + Macros + Makros + + + + Macros::Internal::SaveDialog + + Name: + Name: + + + Description: + Beschreibung: + + + Save Macro + Makro speichern + + + + QmlJS::TypeDescriptionReader + + Errors while loading qmltypes from %1: +%2 + Fehler beim Laden der qmltypes von %1: +%2 + + + Warnings while loading qmltypes from %1: +%2 + Warnungen beim Laden der qmltypes von %1: +%2 + + + Could not parse document. + Das Dokument konnte nicht ausgewertet werden. + + + Expected a single import. + Es wird ein einzelner Import erwartet. + + + Expected import of QtQuick.tooling. + Import von QtQuick.tooling erwartet. + + + Expected document to contain a single object definition. + Das Dokument sollte eine einzige Objektdefinition enthalten. + + + Expected document to contain a Module {} member. + Das Dokument sollte ein Modul-{}-Member enthalten. + + + Major version different from 1 not supported. + Andere Hauptversionen als 1 werden nicht unterstützt. + + + Expected dependency definitions + Abhängigkeitsdefinitionen erwartet + + + Component definition is missing a name binding. + Bei der Komponentendefinition fehlt ein Namens-Binding. + + + ModuleApi definition has no or invalid version binding. + Die ModuleApi-Definition hat kein oder ein ungültiges version-Binding. + + + Method or signal is missing a name script binding. + Bei der Methode oder dem Signal fehlt ein Namens-Skript-Binding. + + + Expected script binding. + Es wird ein Skript-Binding erwartet. + + + Property object is missing a name or type script binding. + Bei dem Eigenschaftsobjekt fehlt ein Namens- oder Typ-Skript-Binding. + + + Expected string after colon. + Nach dem Doppelpunkt wird eine Zeichenkette erwartet. + + + Expected boolean after colon. + Nach dem Doppelpunkt wird ein Boolescher Wert erwartet. + + + Expected true or false after colon. + Nach dem Doppelpunkt wird true oder false erwartet. + + + Expected numeric literal after colon. + Nach dem Doppelpunkt wird ein Zahlenliteral erwartet. + + + Expected integer after colon. + Nach dem Doppelpunkt wird ein ganzzahliger Wert erwartet. + + + Expected array of strings after colon. + Nach dem Doppelpunkt wird ein Feld von Zeichenketten erwartet. + + + Expected array literal with only string literal members. + Es wird ein nur aus Zeichenketten bestehendes Feldliteral erwartet. + + + Expected string literal to contain 'Package/Name major.minor' or 'Name major.minor'. + Das Zeichenkettenliteral sollte 'Package/Name major.minor' oder 'Name major.minor' enthalten./ + + + Expected array of numbers after colon. + Nach dem Doppelpunkt wird ein aus Zahlen bestehendes Feld erwartet. + + + Expected array literal with only number literal members. + Es wird ein nur aus Zahlenliteralen bestehendes Feldliteral erwartet. + + + Meta object revision without matching export. + Metaobjekt-Revision ohne entsprechenden Export. + + + Expected integer. + Ganzzahliger Wert erwartet. + + + Expected object literal after colon. + Nach dem Doppelpunkt wird ein Objektliteral erwartet. + + + Expected expression after colon. + Nach dem Doppelpunkt wird ein Ausdruck erwartet. + + + Expected strings as enum keys. + Als enum-Schlüssel werden Zeichenketten erwartet. + + + Expected either array or object literal as enum definition. + Als enum-Definition wird entweder ein Array oder ein Objektliteral erwartet. + + + + Utils::EnvironmentModel + + <VARIABLE> + <Variable> + + + + Utils::QtcProcess + + Error in command line. + Fehler in Kommandozeile. + + + The program "%1" does not exist or is not executable. + + + + Process Not Responding + + + + The process is not responding. + Der Prozess antwortet nicht. + + + The process "%1" is not responding. + Der Prozess "%1" antwortet nicht. + + + Terminate the process? + + + + The command "%1" finished successfully. + Das Kommando "%1" wurde beendet. + + + The command "%1" terminated with exit code %2. + Das Kommando "%1" wurde beendet, Rückgabewert %2. + + + The command "%1" terminated abnormally. + Das Kommando "%1" wurde unnormal beendet. + + + The command "%1" could not be started. + Das Kommando "%1" konnte nicht gestartet werden. + + + The command "%1" did not respond within the timeout limit (%2 s). + Das Kommando "%1" konnte nicht innerhalb des Zeitlimits (%2 s) beendet werden. + + + Invalid command + Ungültiges Kommando + + + Internal socket error: %1 + + + + Cannot set up communication channel: %1 + Es konnte kein Kommunikationskanal hergestellt werden: %1 + + + Press <RETURN> to close this window... + Betätigen Sie die <RETURN> Taste, um das Fenster zu schließen... + + + 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? + + + Cannot create temporary directory "%1": %2 + Das temporäre Verzeichnis "%1" konnte nicht erstellt werden: %2 + + + Unexpected output from helper program (%1). + Die Ausgabe des Hilfsprogrammes (%1) kann nicht ausgewertet werden. + + + Cannot change to working directory "%1": %2 + Es konnte nicht zum Arbeitsverzeichnis "%1" gewechselt werden: %2 + + + Cannot execute "%1": %2 + Das Kommando "%1" konnte nicht ausgeführt werden: %2 + + + The process "%1" could not be started: %2 + Der Prozess "%1" konnte nicht gestartet werden: %2 + + + Quoting error in command. + Falsch gesetzte Anführungszeichen im Kommando. + + + Debugging complex shell commands in a terminal is currently not supported. + Das Debuggen komplexer Shell-Kommandos in einem Terminal wird gegenwärtig nicht unterstützt. + + + Quoting error in terminal command. + Quotierungsfehler in Terminal-Kommando. + + + Terminal command may not be a shell command. + Shell-Kommandos sind als Terminal-Kommando nicht zulässig. + + + Cannot start the terminal emulator "%1", change the setting in the Environment preferences. (%2) + + + + Cannot create socket "%1": %2 + Der Socket "%1" konnte nicht erstellt werden: %2 + + + Cannot obtain a handle to the inferior: %1 + Der zu debuggende Prozess konnte nicht angesprochen werden: %1 + + + Cannot obtain exit status from inferior: %1 + Der Rückgabewert des zu debuggenden Prozesses konnte nicht erhalten werden: %1 + + + + Core::VcsManager + + %1 repository was detected but %1 is not configured. + Ein Repository des Versionskontrollsystems %1 wurde gefunden, aber %1 ist noch nicht konfiguriert. + + + Version Control + Versionskontrolle + + + Remove the following files from the version control system (%2)? %1Note: This might remove the local file. + Möchten Sie die folgenden Dateien aus der Versionskontrolle (%2) entfernen? %1Hinweis: Unter Umständen werden die lokalen Dateien gelöscht. + + + Add to Version Control + Unter Versionsverwaltung stellen + + + Add the file +%1 +to version control (%2)? + Datei +%1 +unter Versionsverwaltung (%2) stellen? + + + Add the files +%1 +to version control (%2)? + Dateien +%1 +unter Versionsverwaltung (%2) stellen? + + + Could not add the file +%1 +to version control (%2) + + Die Datei +%1 +konnte nicht unter Versionsverwaltung (%2) gestellt werden + + + + Could not add the following files to version control (%1) +%2 + Die folgenden Dateien konnten nicht unter Versionsverwaltung (%1) gestellt werden: +%2 + + + Adding to Version Control Failed + Das Hinzufügen der Dateien zur Versionsverwaltung schlug fehl + + + + CppEditor::Internal::CppOutlineTreeView + + Expand All + Alles aufklappen + + + Collapse All + Alle einklappen + + + + GLSLEditor + + GLSL + GLSL + + + + Macros::Internal::MacroLocatorFilter + + Text Editing Macros + Textbearbeitungs-Makros + + + Runs a text editing macro that was recorded with Tools > Text Editing Macros > Record Macro. + + + + + Macros::Internal::MacrosPlugin + + Text Editing &Macros + Textbearbeitungs-&Makros + + + Record Macro + Makroaufnahme + + + Stop Recording Macro + Makroaufnahme anhalten + + + Ctrl+[ + Ctrl+[ + + + Alt+[ + Alt+[ + + + Ctrl+] + Ctrl+] + + + Alt+] + Alt+] + + + Play Last Macro + Letztes Makro abspielen + + + Alt+R + Alt+R + + + Meta+R + Meta+R + + + Save Last Macro + Letztes Makro speichern + + + + ProjectExplorer::ProjectsMode + + Projects + Projekte + + + + QmlDesigner::ItemLibraryWidget + + Components Library + Title of library view + + + + + QmlDesigner::StatesEditorModel + + base state + Implicit default state + Grundzustand + + + Invalid State Name + + + + The empty string as a name is reserved for the base state. + Eine leere Zeichenkette ist als Name des Basiszustands reserviert. + + + Name already used in another state. + Der Name wird bereits von einem anderen Zustand verwendet. + + + + QmlDesigner::StatesEditorView + + States + Der Plural von "Status" ist "Status": https://de.wiktionary.org/wiki/Status + States + + + Remove State + + + + This state is not empty. Are you sure you want to remove it? + + + + Locked components: + + + + Removing this state will modify locked components. + + + + Continue by removing the state? + + + + base state + Grundzustand + + + + QmlJSTools + + QML Functions + QML-Funktionen + + + Code Style + Coding-Stil + + + Qt Quick + Qt Quick + + + Qt + Qt + + + Old Creator + Veraltete Creator-Konvention + + + &QML/JS + &QML/JS + + + Reset Code Model + Codemodell zurücksetzen + + + Qml JS Code Style + + + + &Line length: + + + + + TextEditor::Internal::SnippetsTableModel + + Error + Fehler + + + Not a valid trigger. A valid trigger can only contain letters, numbers, or underscores, where the first character is limited to letter or underscore. + Kein gültiger Auslöser. Ein gültiger Auslöser kann nur Buchstaben, Zahlen oder Unterstriche enthalten. Das erste Zeichen muss ein Buchstabe oder Unterstrich sein. + + + Trigger + Auslöser + + + Trigger Variant + Variante + + + Error reverting snippet. + Fehler beim Zurücksetzen des Snippets. + + + + Bazaar + + General Information + Allgemeine Informationen + + + Branch: + Branch: + + + Local commit + Lokaler Commit + + + Commit Information + Informationen zu Commit + + + Author: + Autor: + + + Email: + E-Mail-Adresse: + + + Fixed bugs: + Behobene Bugs: + + + Performs a local commit in a bound branch. +Local commits are not pushed to the master branch until a normal commit is performed. + Führt einen lokalen Commit in einem gebundenen Branch aus. +Lokale Commits werden nicht zum Master-Branch gepusht, bis ein normaler Commit erfolgt. + + + Configuration + Konfiguration + + + Command: + Kommando: + + + User + Nutzer + + + Username to use by default on commit. + Nutzername für Commit. + + + Default username: + Vorgabe für Nutzernamen: + + + Email to use by default on commit. + E-Mail-Adresse für Commit. + + + Default email: + Vorgabe-E-Mail: + + + Miscellaneous + Sonstige Einstellungen + + + Log count: + Log-Anzeige beschränken auf: + + + Timeout: + Zeitlimit: + + + s + s + + + The number of recent commit logs to show. Choose 0 to see all entries. + Zahl der anzuzeigenden Logeinträge, 0 für unbegrenzt. + + + Dialog + Dialog + + + Local filesystem: + Dateisystem: + + + Options + Einstellungen + + + Remember specified location as default + Obige Einstellung als Vorgabe übernehmen + + + Overwrite + Überschreiben + + + Use existing directory + Vorhandenes Verzeichnis verwenden + + + Create prefix + Präfix erzeugen + + + Local + Lokale Variable + + + Pull Source + Quelle für Pull-Operation + + + Push Destination + Ziel für Push-Operation + + + Branch Location + Branch + + + Default location + Vorgabe + + + Specify URL: + URL: + + + 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. + Normalerweise schlägt eine push-Operation fehl, wenn das Zielverzeichnis vorhanden ist, aber kein Versionskontrollverzeichnis hat. +Die Einstellung gestattet es, unter diesen Umständen fortzusetzen. + + + For example: 'https://[user[:pass]@]host[:port]/[path]'. + Zum Beispiel: 'https://[user[:pass]@]host[:port]/[path]'. + + + Ignores differences between branches and overwrites +unconditionally. + Berücksichtigt die Unterschiede zwischen Branches nicht und +überschreibt immer. + + + Creates the path leading up to the branch if it does not already exist. + Legt einen Pfad bis zum Branch an, sofern er nicht existiert. + + + Performs a local pull in a bound branch. +Local pulls are not applied to the master branch. + Führt eine lokale Pull-Operation in einem gebundenem Branch aus. +Lokale Pull-Operationen werden nicht auf den Master-Branch angewandt. + + + Revert + Rückgängig machen + + + Specify a revision other than the default? + Möchten Sie eine Revision angeben? + + + Annotate Current File + Annotation für Datei + + + Annotate "%1" + Annotation für "%1" + + + Diff Current File + Diff für Datei + + + Diff "%1" + Diff für "%1" + + + Log Current File + Filelog für Datei + + + Log "%1" + Log für "%1" + + + Status Current File + Status der Datei + + + Status "%1" + Status von "%1" + + + ALT+Z,Alt+D + ALT+Z,Alt+D + + + Triggers a Bazaar version control operation. + + + + Meta+Z,Meta+D + Meta+Z,Meta+D + + + ALT+Z,Alt+L + ALT+Z,Alt+L + + + Meta+Z,Meta+L + Meta+Z,Meta+L + + + ALT+Z,Alt+S + ALT+Z,Alt+S + + + Meta+Z,Meta+S + Meta+Z,Meta+S + + + Add + Hinzufügen + + + Add "%1" + "%1" hinzufügen + + + Delete... + Löschen... + + + Delete "%1"... + Lösche "%1"... + + + Revert Current File... + Änderungen der Datei rückgängig machen... + + + Revert "%1"... + Änderungen in "%1" rückgängig machen... + + + Diff + Diff + + + Log + Log + + + Revert... + Rückgängig machen... + + + Status + Status + + + Pull... + Pull... + + + Push... + Push... + + + Update... + Auf aktuellen Stand bringen... + + + Commit... + Commit... + + + ALT+Z,Alt+C + ALT+Z,Alt+C + + + Meta+Z,Meta+C + Meta+Z,Meta+C + + + Uncommit... + Commit rückgängig machen... + + + Create Repository... + Repository erzeugen... + + + Update + Aktualisieren + + + There are no changes to commit. + Es sind keine ausstehenden Änderungen vorhanden. + + + Unable to create an editor for the commit. + Es konnte kein Editor für den Commit angelegt werden. + + + Unable to create a commit editor. + Es konnte kein Editor für den Commit angelegt werden. + + + Commit changes for "%1". + Commit der Änderungen in "%1". + + + Commit Editor + Commit-Editor + + + Bazaar Command + Bazaar-Kommando + + + Bazaar + Bazaar + + + Uncommit + Commit rückgängig machen + + + Keep tags that point to removed revisions + Behalte Tags, die auf gelöschte Revisionen verweisen + + + Only remove the commits from the local branch when in a checkout + Nur während eines Checkouts Commits von lokalem Branch entfernen + + + Revision: + Revision: + + + If a revision is specified, uncommits revisions to leave the branch at the specified revision. +For example, "Revision: 15" will leave the branch at revision 15. + Wenn eine Revision angegeben wurde, werden so viele Revisionen entfernt, bis der Branch auf der angegebenen Revision steht. +Zum Beispiel bewirkt die Angabe "Revision: 15" dass der Branch auf Revision 15 steht. + + + Last committed + Letzter Commit + + + Dry Run + Probelauf + + + Test the outcome of removing the last committed revision, without actually removing anything. + Testet das Ergebnis des Entfernens der zuletzt abgegebenen Revision, ohne wirklich etwas zu löschen. + + + &Annotate %1 + &Annotation für %1 + + + Annotate &parent revision %1 + Annotation der über&geordneten Revision %1 + + + Ignore Whitespace + Leerzeichen ignorieren + + + Ignore Blank Lines + Leerzeilen ignorieren + + + Verbose + Ausführlich + + + Show files changed in each revision. + Geänderte Dateien jeder Revision anzeigen. + + + Forward + Nächstes + + + Show from oldest to newest. + Von Ältestem zu Neuestem anzeigen. + + + Include Merges + Merges einschließen + + + Show merged revisions. + Merge-Revisionen anzeigen. + + + Detailed + Ausführlich + + + Moderately Short + Moderat kurz + + + One Line + Einzeilig + + + GNU Change Log + GNU-Änderungslog + + + Format + Format + + + + Core::ExternalToolConfig + + Add + Hinzufügen + + + Remove + Löschen + + + Reset + Zurücksetzen + + + Description: + Beschreibung: + + + Executable: + Ausführbare Datei: + + + Arguments: + Argumente: + + + Working directory: + Arbeitsverzeichnis: + + + Output: + Ausgabe: + + + Ignore + Unterdrücken + + + Error output: + Fehlerausgabe: + + + Text to pass to the executable via standard input. Leave empty if the executable should not receive any input. + Text, der dem Werkzeug auf der Standardeingabe übergeben wird. Wenn es leer ist, erhält das Werkzeug keine Eingabe. + + + Input: + Eingabe: + + + 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. + Diese Einstellung sollte aktiviert werden, wenn das Werkzeug das aktuelle Dokument ändert, um sicherzustellen, dass das Dokument vor Ausführung gesichert und nach Ablauf neu geladen wird. + + + Modifies current document + Ändert aktuelles Dokument + + + Replace Selection + Ausgewählten Text ersetzen + + + Add tool. + Werkzeug hinzufügen. + + + Remove tool. + Werkzeug löschen. + + + Revert tool to default. + Werkzeug auf Vorgabewert zurücksetzen. + + + Environment: + Umgebung: + + + No changes to apply. + Keine Änderungen. + + + Change... + Ändern... + + + Base environment: + Basisumgebung: + + + Uncategorized + keine + + + Tools that will appear directly under the External Tools menu. + Werkzeuge, die direkt unter dem Menü "Extern" erscheinen. + + + New Category + Neue Kategorie + + + New Tool + Neues Werkzeug + + + This tool prints a line of useful text + Dieses Werkzeug gibt eine Zeile hilfreichen Texts aus + + + Useful text + Sample external tool text + Hilfreicher Text + + + <html><head/><body> +<p>What to do with the executable's standard output. +<ul><li>Ignore: Do nothing with it.</li><li>Show in General Messages.</li><li>Replace selection: Replace the current selection in the current document with it.</li></ul></p></body></html> + + <html><head/><body> +<p>Behandlung der Standardausgabe des Werkzeugs. +<ul><li>Unterdrücken: Ausgabe nicht behandeln.</li><li>In 'Allgemeine Ausgaben' anzeigen.</li><li>Ausgewählten Text ersetzen: Der im aktuellen Dokument ausgewählte Text wird durch die Ausgabe ersetzt.</li></ul></p></body></html> + + + + Show in General Messages + In 'Allgemeine Ausgaben' anzeigen + + + <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 General Messages.</li> +<li>Replace selection: Replace the current selection in the current document with it.</li> +</ul></body></html> + <html><head/><body> +<p>Behandlung der Fehlerausgabe des Werkzeugs.</p> +<ul><li>Unterdrücken: Ausgabe nicht behandeln.</li> +<li>In 'Allgemeine Ausgaben' anzeigen.</li> +<li>Ausgewählten Text ersetzen: Der im aktuellen Dokument ausgewählte Text wird durch die Ausgabe ersetzt.</li> +</ul></body></html> + + + Add Tool + Werkzeug hinzufügen + + + Add Category + Kategorie hinzufügen + + + PATH=C:\dev\bin;${PATH} + PATH=C:\dev\bin;${PATH} + + + PATH=/opt/bin:${PATH} + PATH=/opt/bin:${PATH} + + + External Tools + Externe Werkzeuge + + + + Core::ExternalToolManager + + &External + &Extern + + + Error: External tool in %1 has duplicate id + Fehler: Die externe Werkzeugspezifikation %1 enthält eine bereits vergebene ID + + + + Core::Internal::MimeTypeMagicDialog + + Add Magic Header + Magic-Header hinzufügen + + + Error + Fehler + + + Internal error: Type is invalid + Interner Fehler: Typ ist ungültig + + + Value: + Wert: + + + String + Zeichenkette + + + Byte + Byte + + + Use Recommended + Empfohlene verwenden + + + Priority: + Priorität: + + + <html><head/><body><p>MIME magic data is interpreted as defined by the Shared MIME-info Database specification from <a href="http://standards.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html">freedesktop.org</a>.<hr/></p></body></html> + <html><head/><body><p>MIME Magic Data wird interpretiert wie in der Shared MIME-Info Datenbank-Spezifikation von <a href="http://standards.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html">freedesktop.org</a> festgelegt.<hr/></p></body></html> + + + Type: + Typ: + + + RegExp + RegExp + + + Host16 + Host16 + + + Host32 + Host32 + + + Big16 + Big16 + + + Big32 + Big32 + + + Little16 + Little16 + + + Little32 + Little32 + + + Mask: + Maske: + + + Range start: + Bereichsbeginn: + + + Range end: + Bereichsende: + + + <html><head/><body><p><span style=" font-style:italic;">Note: Wide range values might impact performance when opening files.</span></p></body></html> + <html><head/><body><p><span style=" font-style:italic;">Hinweis: Große Bereiche können das Öffnen von Dateien verlangsamen.</span></p></body></html> + + + + Core::Internal::MimeTypeSettingsPrivate + + Reset MIME Types + MIME-Typen zurücksetzen + + + Changes will take effect after restart. + Änderungen werden nach einem Neustart wirksam. + + + + ProjectExplorer::Internal::GccToolChainConfigWidget + + &Compiler path: + &Compiler-Pfad: + + + Platform codegen flags: + Plattformspezifische Optionen für codegen: + + + Platform linker flags: + Plattformspezifische Linkeroptionen: + + + &ABI: + &ABI: + + + Target triple: + + + + + ProjectExplorer::Internal::ToolChainOptionsPage + + Compilers + Compiler + + + Add + Hinzufügen + + + <nobr><b>ABI:</b> %1 + <nobr><b>ABI:</b> %1 + + + This toolchain is invalid. + Diese Toolchain ist ungültig. + + + not up-to-date + nicht aktuell + + + Toolchain Auto-detection Settings + Einstellungen für automatische Erkennung von Toolchains + + + Detect x86_64 GCC compilers as x86_64 and x86 + x86_64 GCC-Compiler als x86_64 und x86 erkennen + + + Name + Name + + + Type + Typ + + + If checked, %1 will set up two instances of each x86_64 compiler: +One for the native x86_64 target, and one for a plain x86 target. +Enable this if you plan to create 32-bit x86 binaries without using a dedicated cross compiler. + + + + Clone + Klonen + + + Remove + Entfernen + + + Remove All + Alle entfernen + + + Re-detect + Neu erkennen + + + Auto-detection Settings... + Einstellungen für automatische Erkennung... + + + Duplicate Compilers Detected + Mehrfach auftretende Compiler + + + The following compiler was already configured:<br>&nbsp;%1<br>It was not configured again. + Der folgende Compiler ist bereits konfiguriert:<br>&nbsp;%1<br>Er wurde nicht noch einmal konfiguriert. + + + The following compilers were already configured:<br>&nbsp;%1<br>They were not configured again. + Die folgenden Compiler wurden bereits konfiguriert:<br>&nbsp;%1<br>Sie wurden nicht noch einmal konfiguriert. + + + + VcsBase::VcsBaseEditorWidget + + Annotate "%1" + Annotation für "%1" + + + Copy "%1" + "%1" Kopieren + + + &Describe Change %1 + Änderung %1 &beschreiben + + + Send to CodePaster... + An CodePaster senden... + + + Apply Chunk... + Änderung anwenden... + + + Revert Chunk... + Diese Änderung rückgängig machen... + + + + Core::Internal::MimeTypeSettingsModel + + MIME Type + MIME-Typ + + + Handler + Editor + + + + Core::Internal::MimeTypeSettings + + MIME Types + MIME-Typen + + + + Valgrind + + Issue + Problem + + + %1 in function %2 + %1 in Funktion %2 + + + Location: + Ort: + + + Instruction pointer: + Instruktionszeiger: + + + Could not parse hex number from "%1" (%2) + "%1" (%2) ist keine gültige Hexadezimalzahl + + + trying to read element text although current position is not start of element + es wurde versucht, Elementtext auszulesen, obwohl nicht auf Startelement positioniert + + + Unexpected child element while reading element text + Unerwartetes Unterelement angetroffen beim Lesen von Elementtext + + + Unexpected token type %1 + Unerwartetes Token %1 + + + Could not parse protocol version from "%1" + Die Protokollversion konnte nicht aus "%1" bestimmt werden + + + XmlProtocol version %1 not supported (supported version: 4) + Die Protokollversion %1 wird nicht unterstützt (Unterstützte Version: 4) + + + Valgrind tool "%1" not supported + Das Valgrind-Werkzeug"%1" ist nicht unterstützt + + + Unknown memcheck error kind "%1" + Unbekannte memcheck-Fehlerkategorie "%1" + + + Unknown helgrind error kind "%1" + Unbekannte helgrind-Fehlerkategorie "%1" + + + Unknown ptrcheck error kind "%1" + Unbekannte ptrcheck-Fehlerkategorie "%1" + + + Could not parse error kind, tool not yet set. + Die Fehlerkategorie konnte nicht bestimmt werden, da kein Werkzeug aktiv ist. + + + Unknown state "%1" + Unbekannter Zustand "%1" + + + Unexpected exception caught during parsing. + Beim Parsen ist eine unerwartete Ausnahme aufgetreten. + + + Description + Beschreibung + + + Instruction Pointer + Instruktionszeiger + + + Object + Objekt + + + Directory + Verzeichnis + + + File + Datei + + + Line + Zeile + + + Suppression File: + Ausschluss-Datei: + + + Suppression: + Ausschlüsse: + + + Select Suppression File + Ausschluss-Datei wählen + + + Save Suppression + Ausschlüsse speichern + + + Valgrind executable: + Ausführbare Datei von Valgrind: + + + Valgrind Command + Valgrind-Kommando + + + KCachegrind Command + KCachegrind-Kommando + + + Valgrind Suppression Files + Valgrind-Ausschlussdateien + + + Valgrind Suppression File (*.supp);;All Files (*) + Valgrind Ausschlussdatei (*.supp);;Alle Dateien (*) + + + Valgrind Generic Settings + + + + MemCheck Memory Analysis Options + + + + CallGrind Profiling Options + + + + Valgrind + Valgrind + + + Analyzer + Analyzer + + + Backtrace frame count: + Stack-Frames: + + + Suppression files: + Ausschluss-Dateien: + + + Add... + Hinzufügen... + + + Remove + Entfernen + + + Track origins of uninitialized memory + Herkunft von nicht initialisiertem Speicher verfolgen + + + Limits the amount of results the profiler gives you. A lower limit will likely increase performance. + Diese Einstellung beschränkt die Anzahl der Ergebnisse des Profilers. Kleinere Werte steigern die Geschwindigkeit. + + + Result view: Minimum event cost: + Minimale Ereigniskosten für Ergebnisanzeige: + + + % + % + + + Show additional information for events in tooltips + Zusätzliche Informationen zu Ereignissen in Tooltips anzeigen + + + Valgrind arguments: + + + + Extra MemCheck arguments: + + + + Extra CallGrind arguments: + + + + Enable cache simulation + Cache-Simulation aktivieren + + + <p>Does full cache simulation.</p> +<p>By default, only instruction read accesses will be counted ("Ir").</p> +<p> +With cache simulation, further event counters are enabled: +<ul><li>Cache misses on instruction reads ("I1mr"/"I2mr").</li> +<li>Data read accesses ("Dr") and related cache misses ("D1mr"/"D2mr").</li> +<li>Data write accesses ("Dw") and related cache misses ("D1mw"/"D2mw").</li></ul> +</p> + + + + Enable branch prediction simulation + Simulation der Verzweigungsvorhersage aktivieren + + + <p>Does branch prediction simulation.</p> +<p>Further event counters are enabled: </p> +<ul><li>Number of executed conditional branches and related predictor misses ( +"Bc"/"Bcm").</li> +<li>Executed indirect jumps and related misses of the jump address predictor ( +"Bi"/"Bim").)</li></ul> + + + + Collect system call time + In Systemaufrufen verbrachte Zeit aufnehmen + + + Collect the number of global bus events that are executed. The event type "Ge" is used for these events. + Gibt an, ob die Anzahl der ausgeführten globalen Bus-Ereignisse aufgenommen werden soll. Der Ereignistyp "Ge" wird dafür verwendet. + + + Collect global bus events + Globale Bus-Ereignisse aufnehmen + + + Visualization: Minimum event cost: + Minimale Ereigniskosten für Visualisierung: + + + Detect self-modifying code: + Selbstmodifizierenden Code erkennen: + + + No + Nein + + + Show reachable and indirectly lost blocks + Zeige erreichbare und indirekt verlorengegangene Blöcke + + + Check for leaks on finish: + Speicherlecks beim Beenden suchen: + + + Summary Only + Nur Zusammenfassung + + + Full + Vollständig + + + Collects information for system call times. + In Systemaufrufen verbrachte Zeit aufnehmen. + + + KCachegrind executable: + Ausführbare Datei von KCachegrind: + + + Callee + Aufgerufene Funktion + + + Caller + Aufrufer + + + Cost + Kosten + + + Calls + Aufrufe + + + Previous command has not yet finished. + Das vorangegangene Kommando ist noch nicht beendet. + + + Dumping profile data... + Schreibe Profiling-Daten aus... + + + Resetting event counters... + Setze Ereigniszähler zurück... + + + Pausing instrumentation... + Pausiere Überwachung... + + + Unpausing instrumentation... + Setze Überwachung fort... + + + An error occurred while trying to run %1: %2 + Bei der Ausführung von %1 trat ein Fehler auf: %2 + + + Callgrind dumped profiling info + Callgrind hat die Profiling-Information ausgeschrieben + + + Callgrind unpaused. + Callgrind fortgesetzt. + + + Failed opening temp file... + + + + Function: + Funktion: + + + File: + Datei: + + + Object: + Objekt: + + + Called: + Aufgerufen: + + + %n time(s) + + einmal + %n mal + + + + Events + Ereignisse + + + Self costs + Eigene Kosten + + + (%) + (%) + + + Incl. costs + Einschließliche Kosten + + + (%1%) + (%1%) + + + %1 cost spent in a given function excluding costs from called functions. + %1 Kosten in einer gegebenen Funktion auschließlich der Kosten aufgerufenener Funktionen. + + + %1 cost spent in a given function including costs from called functions. + %1 Kosten in einer gegebenen Funktion einchließlich der Kosten aufgerufenener Funktionen. + + + Function + Funktion + + + Location + Pfad + + + Called + Aufgerufen + + + Self Cost: %1 + Eigene Kosten: %1 + + + Incl. Cost: %1 + Einschließliche Kosten: %1 + + + %1%2 + %1%2 + + + in %1 + in %1 + + + Suppress Error + Fehler unterdrücken + + + External Errors + Externe Fehler + + + Suppressions + Ausschlüsse + + + Definite Memory Leaks + Definitive Speicherlecks + + + Possible Memory Leaks + Potenzielle Speicherlecks + + + Use of Uninitialized Memory + Benutzung von nicht initialisiertem Speicher + + + Show issues originating outside currently opened projects. + Zeigt Fehler an, deren Ursache außerhalb der aktuellen Projekte liegt. + + + These suppression files were used in the last memory analyzer run. + Die Ausschlussdateien wurden beim letzten Lauf der Speicheranalyse verwendet. + + + Invalid Calls to "free()" + Ungültige Aufrufe von "free()" + + + Memory Issues + Speicherprobleme + + + Memcheck + Memcheck + + + Analyzing Memory + Analysiere Speicher + + + Load External XML Log File + Externe XML-Logdatei laden + + + Go to previous leak. + Gehe zu vorigem Speicherleck. + + + Go to next leak. + Gehe zum nächsten Speicherleck. + + + Error Filter + Fehlerfilter + + + Valgrind Analyze Memory uses the Memcheck tool to find memory leaks. + Die Speicheranalyse von Valgrind benutzt das Programm "memcheck", um Speicherlecks zu finden. + + + Valgrind Memory Analyzer + Speicheranalyse mit Valgrind + + + Valgrind Memory Analyzer with GDB + Speicheranalyse mit Valgrind und GDB + + + Valgrind Analyze Memory with GDB uses the Memcheck tool to find memory leaks. +When a problem is detected, the application is interrupted and can be debugged. + Die Speicheranalyse mit Valgrind und GDB benutzt das Programm "memcheck", um Speicherlecks zu finden. +Wird ein Problem gefunden, dann wird die Anwendung angehalten und kann untersucht werden. + + + Heob + Heob + + + Ctrl+Alt+H + Ctrl+Alt+H + + + Valgrind Memory Analyzer (External Application) + Speicheranalyse mit Valgrind (externe Anwendung) + + + Heob: No local run configuration available. + Heob: Keine lokale Ausführungskonfiguration verfügbar. + + + Heob: No toolchain available. + Heob: Keine Toolchain verfügbar. + + + Heob: No executable set. + Heob: Keine ausführbare Datei angegeben. + + + Heob: Cannot find %1. + Heob: Kann %1 nicht finden. + + + The %1 executables must be in the appropriate location. + Die ausführbaren %1-Dateien müssen am richtigen Ort liegen. + + + Heob used with MinGW projects needs the %1 DLLs for proper stacktrace resolution. + Für MinGW-Projekte braucht Heob die %1-DLLs zur korrekten Stacktrace-Auflösung. + + + Heob: Cannot create %1 process (%2). + Avoiding "heob64.exe-Prozess" + Heob: Kann Prozess %1 nicht erzeugen (%2). + + + A Valgrind Memcheck analysis is still in progress. + Ein Valgrind Speichertest läuft noch. + + + Start a Valgrind Memcheck analysis. + Starte einen Valgrind Speichertest. + + + Start a Valgrind Memcheck with GDB analysis. + Starte einen Valgrind Speichertest mit GDB Analyse. + + + Open Memcheck XML Log File + Memcheck-XML-Logdatei öffnen + + + XML Files (*.xml);;All Files (*) + XML-Dateien (*.xml);;Alle Dateien (*) + + + Memcheck: Failed to open file for reading: %1 + Memcheck: Konnte Datei nicht zum Lesen öffnen: %1 + + + Memcheck: Error occurred parsing Valgrind output: %1 + Memcheck: Fehler beim Auswerten der Valgrind-Ausgabe: %1 + + + Memory Analyzer Tool finished. %n issues were found. + + Das Speicheranalysewerkzeug wurde beendet. Ein Problem wurde gefunden. + Das Speicheranalysewerkzeug wurde beendet. %n Probleme wurde gefunden. + + + + Log file processed. %n issues were found. + + Die Logdatei wurde verarbeitet. Ein Problem wurde gefunden. + Die Logdatei wurde verarbeitet. %n Probleme wurden gefunden. + + + + Last-level + Letzte Ebene + + + Instruction + Anweisung + + + Cache + Cache + + + Conditional branches + Bedingte Verzweigung + + + Indirect branches + Indirekte Verzweigung + + + level %1 + Ebene %1 + + + read + lesen + + + write + schreiben + + + mispredicted + falsch vorhergesagt + + + executed + ausgeführt + + + miss + Fehlschlag + + + access + Zugriff + + + Line: + Zeile: + + + Position: + Position: + + + %1 in %2 + %1 in %2 + + + %1:%2 in %3 + %1:%2 in %3 + + + Valgrind Settings + Einstellungen von Valgrind + + + Valgrind Function Profiler uses the Callgrind tool to record function calls when a program runs. + Das Profiling von Funktionen mit Valgrind verwendet das Programm "callgrind", um Funktionsaufrufe während der Programmausführung aufzuzeichnen. + + + Valgrind Function Profiler + Valgrind Funktionsprofiler + + + Valgrind Function Profiler (External Application) + Valgrind Functionsprofiler (externe Anwendung) + + + Profile Costs of This Function and Its Callees + Bestimme Kosten dieser Funktion und der von ihr aufgerufenen Funktionen + + + Visualization + Visualisierung + + + Callers + Aufrufer + + + Callees + Aufgerufene + + + Functions + Funktionen + + + Load External Log File + Externe Logdatei laden + + + Open results in KCachegrind. + Ergebnisse in KCachegrind öffnen. + + + Request the dumping of profile information. This will update the Callgrind visualization. + Fordere das Ausschreiben der Profiler-Informationen an. Die Callgrind-Visualisierung wird dadurch aktualisiert. + + + Reset all event counters. + Alle Ereigniszähler zurücksetzen. + + + Pause event logging. No events are counted which will speed up program execution during profiling. + Pausiert die Ereignissprotokollierung, was die Ausführung des Programmes während des Profilings beschleunigt. + + + Discard Data + Daten verwerfen + + + Go back one step in history. This will select the previously selected item. + Gehe einen Schritt im Verlauf zurück. Das vorher ausgewählte Element wird wieder ausgewählt. + + + Go forward one step in history. + Gehe einen Schritt weiter. + + + Selects which events from the profiling data are shown and visualized. + Bestimmt, welche Ereignisse der Profilerdaten angezeigt werden. + + + Absolute Costs + Absolute Kosten + + + Show costs as absolute numbers. + Kosten als absolute Werte anzeigen. + + + Relative Costs + Relative Kosten + + + Show costs relative to total inclusive cost. + Zeige Kosten relativ zur Summe der einschließlichen Kosten. + + + Relative Costs to Parent + Kosten relativ zu übergeordnetem Element + + + Show costs relative to parent function's inclusive cost. + Zeige Kosten relativ zu den einschließlichen Kosten der rufenden Funktion. + + + Remove template parameter lists when displaying function names. + Beim Anzeigen von Funktionsnamen Template-Parameterlisten entfernen. + + + Select This Function in the Analyzer Output + Diese Funktion in der Analyzer-Ausgabe auswählen + + + Cost Format + Kostenformat + + + Enable cycle detection to properly handle recursive or circular function calls. + Aktivieren Sie die Schleifenerkennung, um rekursive oder zyklische Funktionsaufrufe richtig zu behandeln. + + + Show Project Costs Only + Nur Projektkosten anzeigen + + + Show only profiling info that originated from this project source. + Nur Profilerinformationen aus den Quellen des Projekts anzeigen. + + + Filter... + Filter... + + + Callgrind + Callgrind + + + A Valgrind Callgrind analysis is still in progress. + Eine Valgrind Callgrind Analyse läuft noch. + + + Start a Valgrind Callgrind analysis. + Eine Valgrind Callgrind Analyse starten. + + + Profiling aborted. + Profiling abgebrochen. + + + Parsing finished, no data. + Auswertung beendet, keine Daten erhalten. + + + Parsing finished, total cost of %1 reported. + Auswertung beendet, erhaltene Gesamtkosten: %1. + + + Parsing failed. + Die Auswertung schlug fehl. + + + Populating... + Erstelle Ansicht... + + + Open Callgrind Log File + Callgrind-Logdatei öffnen + + + Callgrind Output (callgrind.out*);;All Files (*) + Callgrind-Ausgabedatei (callgrind.out*);;Alle Dateien (*) + + + Callgrind: Failed to open file for reading: %1 + Callgrind: Konnte Datei nicht zum Lesen öffnen: %1 + + + Parsing Profile Data... + Werte Profilerdaten aus... + + + Profiling + Profiling + + + Profiling %1 + Profiling von %1 + + + Valgrind options: %1 + Valgrind-Optionen: %1 + + + Working directory: %1 + Arbeitsverzeichnis: %1 + + + Command line arguments: %1 + Kommandozeilenargumente: %1 + + + Analyzing finished. + Analyse beendet. + + + Error: "%1" could not be started: %2 + Fehler: "%1" konnte nicht gestartet werden: %2 + + + Error: no Valgrind executable set. + Fehler: Es ist keine ausführbare Datei für Valgrind konfiguriert. + + + Process terminated. + Prozess beendet. + + + Process exited with return value %1 + + Der Prozess wurde mit dem Rückgabewert %1 beendet + + + + XmlServer on %1: + XmlServer an %1: + + + LogServer on %1: + LogServer an %1: + + + All functions with an inclusive cost ratio higher than %1 (%2 are hidden) + Alle Funktionen mit einem einschließlichen Kostenfaktor größer als %1 (%2 nicht gezeigt) + + + %1 (Called: %2; Incl. Cost: %3) + + + + + Analyzer + + Analyzer + Analyzer + + + + ProjectExplorer::ToolChain + + Clone of %1 + Kopie von %1 + + + + QmlProfiler + + QML Profiler + QML-Profiler + + + &Port: + &Port: + + + Start QML Profiler + QML-Profiler starten + + + Select an externally started QML-debug enabled application.<p>Commonly used command-line arguments are: + Wählen Sie eine extern gestartete Anwendung aus, die QML-Debugging erlaubt.<p>Häufig verwendete Kommandozeilenargumente sind: + + + Kit: + Kit: + + + Load QML Trace + QML-Trace laden + + + Save QML Trace + QML-Trace speichern + + + A QML Profiler analysis is still in progress. + Eine QML-Profiler-Analyse läuft noch. + + + Start QML Profiler analysis. + Starte QML-Profiler-Analyse. + + + Disable Profiling + Profiling deaktivieren + + + Enable Profiling + Profiling aktivieren + + + The application finished before a connection could be established. No data was loaded. + Die Anwendung wurde beendet, bevor eine Verbindung aufgebaut werden konnte. Es wurden keine Daten geladen. + + + Could not connect to the in-process QML profiler within %1 s. +Do you want to retry and wait %2 s? + Innerhalb von %1 s konnte keine Verbindung zum QML-Profiler im Prozess hergestellt werden. +Wollen Sie es noch einmal versuchen und %2 s warten? + + + %1 s + %1 s + + + Elapsed: %1 + Vergangen: %1 + + + QML traces (*%1 *%2) + QML-Traces (*%1 *%2) + + + Saving Trace Data + Speichere Trace-Daten + + + Loading Trace Data + Lade Trace-Daten + + + You are about to discard the profiling data, including unsaved notes. Do you want to continue? + Sie sind dabei die Profildaten einschließlich ungespeicherter Notizen zu verwerfen. Wollen Sie fortfahren? + + + Application finished before loading profiled data. +Please use the stop button instead. + Die Anwendung wurde vor dem Laden der Profildaten beendet. +Bitte verwenden Sie den Stop-Button. + + + Starting a new profiling session will discard the previous data, including unsaved notes. +Do you want to save the data first? + Wenn Sie eine neue Profiling-Sitzung beginnen, werden die Profildaten einschließlich ungespeicherter Notizen verworfen. +Wollen Sie die Daten vorher speichern? + + + Discard data + Daten löschen + + + Search timeline event notes. + Notizen zu Ereignissen in der Zeitleiste durchsuchen. + + + Hide or show event categories. + Ereigniskategorien verstecken oder anzeigen. + + + Failed to connect. + Verbindung fehlgeschlagen. + + + Memory Usage + Speicherverbrauch + + + Pixmap Cache + Pixmap Cache + + + Scene Graph + Scene Graph + + + Animations + Animationen + + + Painting + Zeichnen + + + Compiling + Kompilieren + + + Creating + Erstellen + + + Binding + Binding + + + Input Events + Eingabeereignisse + + + Debug Messages + Debugnachrichten + + + JavaScript + JavaScript + + + GUI Thread + GUI-Thread + + + Render Thread + Render-Thread + + + Render Thread Details + Render-Thread Details + + + Polish + Bereinigen + + + Wait + Warten + + + GUI Thread Sync + GUI-Thread Synchronisation + + + Render Thread Sync + Render-Thread Synchronisation + + + Render + Render + + + Swap + Tauschen + + + Render Preprocess + Render Preprocess + + + Render Update + Render Update + + + Render Bind + Render Bind + + + Render Render + Render Render + + + Material Compile + Material Compile + + + Glyph Render + Glyph Render + + + Glyph Upload + Glyph Upload + + + Texture Bind + Texture Bind + + + Texture Convert + Texture Convert + + + Texture Swizzle + Texture Swizzle + + + Texture Upload + Texture Upload + + + Texture Mipmap + Texture Mipmap + + + Texture Delete + Texture Löschen + + + Profiling application: %n events + + Profiling der Anwendung: ein Ereignis + Profiling der Anwendung: %n Ereignisse + + + + Profiling application + Profiling der Anwendung + + + No QML events recorded + Es wurden keine QML-Ereignisse aufgenommen + + + Loading buffered data: %n events + + Lade zwischengespeicherte Daten: ein Ereignis + Lade zwischengespeicherte Daten: %n Ereignisse + + + + Loading offline data: %n events + + Lade Offline-Daten: ein Ereignis + Lade Offline-Daten: %n Ereignisse + + + + Waiting for data + Warte auf Daten + + + Timeline + Zeitleiste + + + Analyze Current Range + Analysiere aktuellen Bereich + + + Analyze Full Range + Analysiere kompletten Bereich + + + Reset Zoom + Vergrößerung zurücksetzen + + + Quick3D + + + + Failed to replay QML events from stash file. + QML-Ereignisse aus der Stash-Datei konnten nicht wieder abgespielt werden. + + + <bytecode> + <bytecode> + + + anonymous function + Anonyme Funktion + + + Read past end in temporary trace file. + Über das Ende der temporären Trace-Datei hinaus gelesen. + + + Flush data while profiling: + Daten während Profiling übertragen: + + + Flush interval (ms): + Zeitabstand der Übertragungen (ms): + + + Process data only when process ends: + Daten erst bei Prozessende verarbeiten: + + + Only process data when the process being profiled ends, not when the current recording +session ends. This way multiple recording sessions can be aggregated in a single trace, +for example if multiple QML engines start and stop sequentially during a single run of +the program. + Daten nur bei Prozessende und nicht bei Aufnahmeende verarbeiten. Dadurch werden +mehrere Aufnahmen in einer einzigen Aufnahmespur zusammengefügt, zum Beispiel +wenn mehrere QML-Instanzen nacheinander in einem einzigen Programmlauf gestartet +und gestoppt werden. + + + Periodically flush pending data to the profiler. This reduces the delay when loading the +data and the memory usage in the application. It distorts the profile as the flushing +itself takes time. + Sende Daten regelmässig zum Profiler. Das reduziert die Verzögerung beim Laden der +Daten und den Speicherverbrauch der Applikation. Es stört das Profiling, weil das +Senden selbst auch Zeit benötigt. + + + Analyzer + Analyzer + + + Duration + Dauer + + + Framerate + Bildwiederholrate + + + Context + Kontext + + + Details + Details + + + Location + Ort + + + QML Profiler Settings + Einstellungen des QML-Profilers + + + Statistics + Statistik + + + Copy Row + Zeile kopieren + + + Copy Table + Tabelle kopieren + + + Extended Event Statistics + Erweiterte Ereignisstatistik + + + Show Full Range + Ganzen Bereich anzeigen + + + Debug Message + Debugnachricht + + + Warning Message + Warnungsnachricht + + + Critical Message + Kritische Nachricht + + + Fatal Message + Fatale Nachricht + + + Info Message + Infonachricht + + + Unknown Message %1 + Unbekannte Nachricht %1 + + + Timestamp + Zeitstempel + + + Message + Nachricht + + + Could not re-read events from temporary trace file: %1 + Ereignisse konnten nicht erneut aus der temporären Trace-Datei eingelesen werden: %1 + + + Compile + Kompilierung + + + Create + Erzeugung + + + Signal + Signal + + + Source code not available + Kein Quelltext verfügbar + + + Flame Graph + Flame Graph + + + Reset Flame Graph + Flame Graph zurücksetzen + + + Mouse Events + Mausereignisse + + + Keyboard Events + Tastaturereignisse + + + Key Press + Tastendruck + + + Key Release + Tastenfreigabe + + + Key + Taste + + + Modifiers + Modifizierer + + + Double Click + Doppelklick + + + Mouse Press + Mausdruck + + + Mouse Release + Mausfreigabe + + + Button + Maustaste + + + Result + Ergebnis + + + Mouse Move + Mausbewegung + + + X + X + + + Y + Y + + + Mouse Wheel + Mausrad + + + Angle X + X-Winkel + + + Angle Y + Y-Winkel + + + Keyboard Event + Tastaturereignis + + + Mouse Event + Mausereignis + + + Unknown + Unbekannt + + + Memory Allocation + Speicherallokation + + + Memory Allocated + Speicher allokiert + + + Memory Freed + Speicher freigegeben + + + Total + Summe + + + %n byte(s) + + Ein Byte + %n Bytes + + + + Allocated + Allokiert + + + Allocations + Allokationen + + + Deallocated + Freigegeben + + + Deallocations + Freigaben + + + Heap Allocation + Heap-Allokation + + + Large Item Allocation + Allokation großer Elemente + + + Heap Usage + Heap-Verbrauch + + + Type + Typ + + + Cache Size + Puffergröße + + + Image Cached + Bild gepuffert + + + Image Loaded + Bild geladen + + + Load Error + Ladefehler + + + File + Datei + + + Width + Breite + + + Height + Höhe + + + Stage + Phase + + + Glyphs + Glyphen + + + Total Time + Gesamtdauer + + + Calls + Aufrufe + + + Memory + Speicher + + + Various Events + Verschiedene Ereignisse + + + others + andere + + + Handling Signal + Signalverarbeitung + + + Main program + Hauptprogramm + + + +%1 in recursive calls + +%1 in rekursiven Aufrufen + + + Longest Time + Längste Dauer + + + Mean Time + Durchschnittliche Dauer + + + Self Time + Eigene Dauer + + + Self Time in Percent + Eigene Dauer in Prozent + + + Shortest Time + Kürzeste Dauer + + + Time in Percent + Dauer in Prozent + + + Median Time + Mediandauer + + + The QML Profiler can be used to find performance bottlenecks in applications using QML. + Der QML-Profiler kann zum Auffinden geschwindigkeitsrelevanter Engpässe in QML-Anwendungen verwendet werden. + + + QML Profiler (Attach to Waiting Application) + QML-Profiler (mit wartender Anwendung verbinden) + + + QML Profiler Options + Einstellungen des QML-Profilers + + + Cannot open temporary trace file to store events. + Eine temporäre Trace-Datei kann nicht geöffnet werden um Ereignisse zu speichern. + + + Failed to reset temporary trace file. + Eine temporäre Trace-Datei konnte nicht zurückgesetzt werden. + + + Failed to flush temporary trace file. + Das Schreiben in eine temporäre Trace-Datei konnte nicht beendet werden. + + + Could not re-open temporary trace file. + Eine temporäre Trace-Datei konnte nicht neu geöffnet werden. + + + Main Program + Hauptprogramm + + + called recursively + rekursiv aufgerufen + + + Callee + Aufgerufene Funktion + + + Caller + Aufrufende Funktion + + + Callee Description + Bescheibung der aufgerufenen Funktion + + + Caller Description + Beschreibung der aufrufenden Funktion + + + Error while parsing trace data file: %1 + Fehler beim Auswerten der Trace-Datei: %1 + + + Invalid magic: %1 + Ungültige Dateiformatkennzeichnung: %1 + + + Unknown data stream version: %1 + Unbekannte Datenstromversion: %1 + + + Excessive number of event types: %1 + Zu viele Ereignistypen: %1 + + + Invalid type index %1 + Ungültiger Typindex %1 + + + Corrupt data before position %1. + Unbrauchbare Daten vor Position %1. + + + Error writing trace file. + Fehler beim Schreiben der Trace-Datei. + + + Could not re-read events from temporary trace file: %1 +Saving failed. + Ereignisse konnten nicht erneut aus der temporären Trace-Datei eingelesen werden: %1 +Speichern fehlgeschlagen. + + + Render Frame + + + + Synchronize Frame + + + + Prepare Frame + + + + Mesh Load + + + + Custom Mesh Load + + + + Texture Load + + + + Generate Shader + + + + Load Shader + + + + Particle Update + + + + Mesh Memory consumption + + + + Texture Memory consumption + + + + Mesh Unload + + + + Custom Mesh Unload + + + + Texture Unload + + + + Unknown Unload Message %1 + + + + Description + Beschreibung + + + Count + Anzahl + + + Draw Calls + + + + Render Passes + + + + Total Memory Usage + + + + + VcsBase::VcsConfigurationPage + + Configuration + Konfiguration + + + No version control set on "VcsConfiguration" page. + Do not translate "VcsConfiguration", because it is the id of a page. + Kein Versionskontrollsystem auf der Seite "VcsConfiguration" angegeben. + + + "vcsId" ("%1") is invalid for "VcsConfiguration" page. Possible values are: %2. + Do not translate "VcsConfiguration", because it is the id of a page. + "vcsId" ("%1") ist für die Seite "VcsConfiguration" ungültig. Mögliche Werden sind: %2. + + + Please configure <b>%1</b> now. + Bitte konfigurieren Sie jetzt <b>%1</b>. + + + No known version control selected. + Kein Versionskontrollsystem ausgewählt. + + + + FlowSpecifics + + Flow + Anordnung + + + Spacing + Abstand + + + Layout direction + + + + + GridSpecifics + + Grid + Gitter + + + Columns + Spalten + + + Rows + Zeilen + + + Flow + Anordnung + + + Layout direction + + + + Alignment H + + + + Alignment V + + + + Spacing + Abstand + + + + GridViewSpecifics + + Grid View + Gitteranzeige + + + Cell size + + + + W + width + The width of the object + + + + H + height + The height of the object + H + + + Layout direction + + + + Cache + Cache + + + Cache buffer + Cache-Puffer + + + Flow + Anordnung + + + Navigation wraps + Tastennavigation bricht um + + + Snap mode + Einrasten + + + Determines how the view scrolling will settle following a drag or flick. + Bestimmt, wie die Anzeige nach einer Drag- oder -Flick-Operation zum Stehen kommt. + + + Whether the grid wraps key navigation. + + + + Grid View Highlight + Hervorhebung im Grid View + + + Range + Bereich + + + Highlight range + Bereich hervorheben + + + Move duration + Dauer der Bewegung + + + Move animation duration of the highlight delegate. + Dauer der Bewegungsanimation des hervorgehobenen Delegates. + + + Whether the highlight is managed by the view. + + + + Preferred begin + Anfang + + + Preferred highlight begin - must be smaller than Preferred end. + Beginn der Hervorhebung - muss kleiner sein als der Endwert. + + + Preferred end + Ende + + + Preferred highlight end - must be larger than Preferred begin. + Ende der Hervorhebung - muss größer sein als der Anfangswert. + + + Follows current + Aktuellem Element folgen + + + + ListViewSpecifics + + List View + List View + + + Spacing between components. + + + + Cache + Cache + + + Navigation wraps + Tastennavigation bricht um + + + Orientation + Ausrichtung + + + Orientation of the list. + Ausrichtung der Liste. + + + Layout direction + + + + Snap mode + Einrasten + + + Determines how the view scrolling will settle following a drag or flick. + Bestimmt, wie die Anzeige nach einer Drag- oder -Flick-Operation zum Stehen kommt. + + + Spacing + Abstand + + + List View Highlight + Hervorhebung im List View + + + Range + Bereich + + + Move duration + Dauer der Bewegung + + + Move animation duration of the highlight delegate. + Dauer der Bewegungsanimation des hervorgehobenen Delegates. + + + Cache buffer. + + + + Whether the grid wraps key navigation. + + + + Highlight range. + + + + Move velocity + + + + Move animation velocity of the highlight delegate. + + + + Resize duration + Dauer der Größenänderung + + + Resize animation duration of the highlight delegate. + Dauer der Größenänderungsanimation des hervorgehobenen Delegates. + + + Resize velocity + + + + Resize animation velocity of the highlight delegate. + + + + Preferred begin + Anfang + + + Preferred highlight begin - must be smaller than Preferred end. + Beginn der Hervorhebung - muss kleiner sein als der Endwert. + + + Preferred end + Ende + + + Preferred highlight end - must be larger than Preferred begin. + Ende der Hervorhebung - muss größer sein als der Anfangswert. + + + Follows current + Aktuellem Element folgen + + + Whether the highlight is managed by the view. + + + + + PathViewSpecifics + + Path View + Path View + + + Allows users to drag or flick a path view. + + + + Drag margin + Rand bei Drag-Operation + + + Flick deceleration + Abbremsung der Flick-Interaktion + + + Offset + Abstand + + + Specifies how far along the path the items are from their initial positions. This is a real number that ranges from 0.0 to the count of items in the model. + Gibt an, wie weit die Elemente des Pfades von ihren initialen Positionen entfernt sind. Es ist ein Fließkommawert im Bereich von 0 bis zur Anzahl der Elemente im Modell. + + + Item count + Anzahl der Elemente + + + Path View Highlight + Hervorhebung im Path View + + + Highlight range + Bereich hervorheben + + + Move duration + Dauer der Bewegung + + + Move animation duration of the highlight delegate. + Dauer der Bewegungsanimation des hervorgehobenen Delegates. + + + Preferred begin + Anfang + + + Preferred highlight begin - must be smaller than Preferred end. Note that the user has to add a highlight component. + Beginn der Hervorhebung - muss kleiner sein als der Endwert. Beachten Sie, dass der Benutzer eine Hervorhebungs-Komponente hinzufügen muss. + + + Preferred highlight end - must be larger than Preferred begin. Note that the user has to add a highlight component. + Ende der Hervorhebung - muss größer sein als der Anfangswert. Beachten Sie, dass der Benutzer eine Hervorhebungs-Komponente hinzufügen muss. + + + Preferred end + Ende + + + Interactive + Interaktiv + + + Number of items visible on the path at any one time. + + + + Range + Bereich + + + + RowSpecifics + + Row + Zeile + + + Spacing + Abstand + + + Layout direction + + + + + Core::OutputWindow + + Elided %n characters due to Application Output settings + + Ein Zeichen wurde wegen der Einstellungen für die Ausgabe der Anwendung ausgelassen + %n Zeichen wurden wegen der Einstellungen für die Ausgabe der Anwendung ausgelassen + + + + [Discarding excessive amount of pending output.] + + [Überschüssige anstehende Ausgaben werden verworfen.] + + + + + Macros + + Macros + Makros + + + + ProjectExplorer::AbiWidget + + <custom> + <benutzerdefiniert> + + + + ProjectExplorer::Internal::AppOutputPane + + Stop + Anhalten + + + Attach debugger to this process + Debugger an diesen Prozess anhängen + + + Attach debugger to %1 + Debugger an %1 anhängen + + + Close Tab + Reiter schließen + + + Close All Tabs + Alle schließen + + + Close Other Tabs + Andere Reiter schließen + + + Show &App Output + + + + Show the output that generated this issue in Application Output. + + + + A + + + + Re-run this run-configuration. + Ausführungskonfiguration erneut ausführen. + + + Stop running program. + Laufendes Programm anhalten. + + + Open Settings Page + Einstellungsseite öffnen + + + Application Output + Ausgabe der Anwendung + + + Application Output Window + Ausgabe der Anwendung + + + + CodeStyleSettingsPanelFactory + + Code Style + Coding-Stil + + + + ProjectExplorer::EditorConfiguration + + Project + Settings + Projekt + + + Project %1 + Settings, %1 is a language (C++ or QML) + Projekt %1 + + + + QmlDesigner::ComponentAction + + Edit sub components defined in this file. + In dieser Datei definierte Subkomponenten bearbeiten. + + + + TextEditor::BehaviorSettingsPage + + Global + Settings + Global + + + Behavior + Verhalten + + + + TextEditor::FunctionHintProposalWidget + + %1 of %2 + %1 von %2 + + + + TextEditor::Internal::SnippetsCollection + + Cannot create user snippet directory %1 + Das Snippet-Verzeichnis des Nutzers konnte nicht erstellt werden: %1 + + + + Welcome + + Welcome + Willkommen + + + New to Qt? + Neu bei Qt? + + + Create Project... + Projekt erstellen... + + + Open Project... + Projekt öffnen... + + + Get Started + Schnelleinstieg + + + Get Qt + Qt + + + Qt Account + Qt Account + + + Online Community + Online-Community + + + Blogs + Blogs + + + User Guide + Handbuch + + + Would you like to take a quick UI tour? This tour highlights important user interface elements and shows how they are used. To take the tour later, select Help > UI Tour. + Wollen Sie sich kurz die Oberfläche vorführen lassen? Dabei wird gezeigt, wo die wichtigsten Bedienelemente sind und wie man sie benutzt. Sie können die Vorführung auch später über "Hilfe" > "Oberfläche vorführen" starten. + + + Take UI Tour + Oberfläche vorführen + + + Mode Selector + Moduswahl + + + Select different modes depending on the task at hand. + Wählen Sie verschiedene Modi abhängig von der zu erledigenden Aufgabe. + + + <p style="margin-top: 30px"><table><tr><td style="padding-right: 20px">Welcome:</td><td>Open examples, tutorials, and recent sessions and projects.</td></tr><tr><td>Edit:</td><td>Work with code and navigate your project.</td></tr><tr><td>Design:</td><td>Visually edit Widget-based user interfaces, state charts and UML models.</td></tr><tr><td>Debug:</td><td>Analyze your application with a debugger or other analyzers.</td></tr><tr><td>Projects:</td><td>Manage project settings.</td></tr><tr><td>Help:</td><td>Browse the help database.</td></tr></table></p> + <p style="margin-top: 30px"><table><tr><td style="padding-right: 20px">Willkommen:</td><td>Öffnen Sie Beispiele, Anleitungen, sowie kürzlich verwendete Sitzungen und Projekte.</td></tr><tr><td>Editieren:</td><td>Arbeiten Sie am Quelltext und navigieren Sie im Projekt.</td></tr><tr><td>Design:</td><td>Bearbeiten Sie Oberflächendesigns für Qt Widgets, State Charts und UML-Modelle.</td></tr><tr><td>Debug:</td><td>Analysieren Sie Ihre Anwendung mit einem Debugger oder anderen Werkzeugen.</td></tr><tr><td>Projekte:</td><td>Verwalten Sie Projekteinstellungen.</td></tr><tr><td>Hilfe:</td><td>Durchsuchen Sie die Hilfedatenbank.</td></tr></table></p> + + + Kit Selector + Kit-Auswahl + + + Select the active project or project configuration. + Wählen Sie das aktive Projekt oder die aktive Projektkonfiguration. + + + Run Button + "Ausführen"-Schaltfläche + + + Run the active project. By default this builds the project first. + Führen Sie das aktive Projekt aus. Wenn nicht anders eingestellt, wird das Projekt zunächst erstellt. + + + Debug Button + "Debug"-Schaltfläche + + + Run the active project in a debugger. + Führen Sie das aktive Projekt in einem Debugger aus. + + + Build Button + "Erstellen"-Schaltfläche + + + Build the active project. + Erstellen Sie das aktive Projekt. + + + Locator + Locator + + + Type here to open a file from any open project. + Tippen Sie hier, um Dateien aus den offenen Projekten zu öffnen. + + + Or:<ul><li>type <code>c&lt;space&gt;&lt;pattern&gt;</code> to jump to a class definition</li><li>type <code>f&lt;space&gt;&lt;pattern&gt;</code> to open a file from the file system</li><li>click on the magnifier icon for a complete list of possible options</li></ul> + Oder:<ul><li>Tippen Sie <code>c&lt;Leerzeichen&gt;&lt;Suchmuster&gt;</code>, um eine Klassendefinition zu öffnen</li><li>Tippen Sie <code>f&lt;Leerzeichen&gt;&lt;Suchmuster&gt;</code>, um eine Datei aus dem Dateisystem zu öffnen</li><li>Klicken Sie auf das Lupensymbol, um eine vollständige Liste der Möglichkeiten anzuzeigen.</li></ul> + + + Output + Ausgaben + + + Pressing the Escape key brings you back to the editor. Press it multiple times to also hide context help and output, giving the editor more space. + Wenn Sie die "Escape"-Taste betätigen, kommen Sie zurück zum Editor. Betätigen Sie sie mehrmals, um auch Ausgabebereiche sowie Kontexthilfe auszublenden und dem Editor mehr Platz zu geben. + + + Find compile and application output here, as well as a list of configuration and build issues, and the panel for global searches. + Hier werden die Ausgaben der Kompilierung und Ausführung, eine Liste von Konfigurations- und Kompilierungsproblemen sowie globale Suchergebnisse angezeigt. + + + Progress Indicator + Fortschrittsanzeige + + + Progress information about running tasks is shown here. + Hier wird der Fortschritt laufender Aufgaben angezeigt. + + + Escape to Editor + Zurück zum Editor + + + The End + Ende + + + You have now completed the UI tour. To learn more about the highlighted controls, see <a style="color: #41CD52" href="qthelp://org.qt-project.qtcreator/doc/creator-quick-tour.html">User Interface</a>. + Die Vorführung der Oberfläche endet hier. Unter <a style="color: #41CD52" href="qthelp://org.qt-project.qtcreator/doc/creator-quick-tour.html">User Interface</a> können Sie mehr erfahren. + + + UI Introduction %1/%2 > + Vorführung der Oberfläche %1/%2 > + + + UI Tour + Oberfläche vorführen + + + + Utils::FileUtils + + Refusing to remove root directory. + Das Wurzelverzeichnis kann nicht entfernt werden. + + + Refusing to remove your home directory. + Das Nutzerverzeichnis (Home) kann nicht entfernt werden. + + + Failed to remove directory "%1". + Das Verzeichnis "%1" konnte nicht gelöscht werden. + + + Failed to remove file "%1". + Die Datei "%1" konnte nicht gelöscht werden. + + + Failed to create directory "%1". + Das Verzeichnis "%1" konnte nicht erstellt werden. + + + Could not copy file "%1" to "%2". + Die Datei "%1" konnte nicht nach "%2" kopiert werden. + + + Cannot open %1 for reading: %2 + Die Datei %1 kann nicht zum Lesen geöffnet werden: %2 + + + Cannot read %1 + + + + Cannot read %1: %2 + Datei %1 kann nicht gelesen werden: %2 + + + File Error + Dateifehler + + + Cannot write file %1: %2 + In die Datei %1 konnte nicht geschrieben werden: %2 + + + Cannot write file %1. Disk full? + Die Datei %1 konnte nicht geschrieben werden. Möglicherweise ist kein Speicherplatz mehr auf der Festplatte vorhanden? + + + %1: Is a reserved filename on Windows. Cannot save. + %1 ist ein von Windows reservierter Dateiname. Speichern fehlgeschlagen. + + + Cannot overwrite file %1: %2 + Die Datei %1 konnte nicht überschrieben werden: %2 + + + Cannot create file %1: %2 + Die Datei %1 konnte nicht erzeugt werden: %2 + + + Cannot create temporary file in %1: %2 + Es konnte keine temporäre Datei erstellt in %1 werden: %2 + + + Overwrite File? + Datei überschreiben? + + + Overwrite existing file "%1"? + Soll die Datei "%1" überschrieben werden? + + + %1 on %2 + File on device + + + + %1 %2 on %3 + File and args on device + + + + + RemoteLinux + + Connection + Verbindung + + + Choose Public Key File + Datei mit öffentlichem Schlüssel auswählen + + + Public Key Files (*.pub);;All Files (*) + Öffentliche Schlüssel (*.pub);;Alle Dateien (*) + + + Deploying... + Sende Schlüssel... + + + Key deployment failed. + + + + Deployment finished successfully. + Schlüssel erfolgreich versandt. + + + Close + Schließen + + + Summary + Zusammenfassung + + + The new device configuration will now be created. +In addition, device connectivity will be tested. + Es wird eine neue Gerätekonfiguration erzeugt. +Zusätzlich wird die Verbindung zum Gerät getestet. + + + No deployment action necessary. Skipping. + Alle Dateien sind auf dem aktuellen Stand, es ist keine Installation erforderlich. + + + No device configuration set. + Es ist keine Gerätekonfiguration eingestellt. + + + Cannot deploy: %1 + Fehlschlag beim Deployment von %1 + + + User requests deployment to stop; cleaning up. + Abbruch des Deployments durch Nutzer, Bereinigung. + + + Deploy step failed. + Deployment fehlgeschlagen. + + + Deploy step finished. + Deployment beendet. + + + Successfully uploaded package file. + Die Paketdatei wurde hochgeladen. + + + Installing package to device... + Installiere Paket auf Mobilgerät... + + + Package installed. + Paket installiert. + + + Failed to start "stat": %1 + + + + "stat" crashed. + + + + "stat" failed with exit code %1: %2 + + + + Failed to retrieve remote timestamp for file "%1". Incremental deployment will not work. Error message was: %2 + Der Zeitstempel der Datei "%1" konnte nicht gelesen werden. Inkrementelles Deployment wird daher nicht funktionieren. Die Fehlermeldung war: %2 + + + Unexpected stat output for remote file "%1": %2 + Unerwartete Ausgabe von "stat" für die entfernte Datei "%1": %2 + + + All files successfully deployed. + Alle Dateien erfolgreich versandt. + + + No files need to be uploaded. + Es müssen keine Dateien hochgeladen werden. + + + %n file(s) need to be uploaded. + + Eine Datei muss hochgeladen werden. + %n Dateien müssen hochgeladen werden. + + + + Local file "%1" does not exist. + Es gibt keine lokale Datei "%1". + + + Remote chmod failed for file "%1": %2 + "chmod" für die entfernte Datei "%1" ist fehlgeschlagen: %2 + + + Incremental deployment + Inkrementelles Deployment + + + Ignore missing files + + + + Upload files via SFTP + Dateien mittels SFTP hochladen + + + Sending echo to device... + + + + echo failed: %1 + + + + echo failed. + + + + Device replied to echo with unexpected contents. + + + + Device replied to echo with expected contents. + + + + Checking kernel version... + Prüfe Kernel-Version... + + + uname failed: %1 + Fehlschlag des uname-Kommandos: %1 + + + uname failed. + Fehlschlag des uname-Kommandos. + + + Error gathering ports: %1 + Fehlschlag bei Prüfung der Ports: %1 + + + All specified ports are available. + Alle angegebenen Ports sind verfügbar. + + + The following specified ports are currently in use: %1 + Die folgenden angegebenen Ports sind auf dem Gerät in Verwendung: %1 + + + Checking whether "%1" works... + + + + Failed to start "%1": %2 + + + + + "%1" crashed. + + + + + "%1" failed with exit code %2: %3 + + + + + "%1" is functional. + + + + + Checking if required commands are available... + + + + %1... + + + + %1 found. + %1 gefunden. + + + An error occurred while checking for %1. + Bei der Prüfung von %1 trat ein Fehler auf. + + + %1 not found. + %1 nicht gefunden. + + + SFTP will be used for deployment, because rsync is not available. + + SFTP wird fürs Deployment verwendet, weil rsync nicht verfügbar ist. + + + + Deployment to this device will not work out of the box. + + Deployment auf dieses Gerät wird nicht von Anfang an funktionieren. + + + + Checking if specified ports are available... + Prüfe Verfügbarkeit der angegebenen Ports... + + + Deploy to Remote Linux Host + Auf Linux-Mobilgerät ausführen + + + Error: No device + Fehler: Kein Gerät + + + Error: %1 + Fehler: %1 + + + Process exited with code %1. + Der Prozess wurde mit dem Rückgabewert %1 beendet. + + + Error running 'env': %1 + Fehler bei Ausführung des 'env'-Kommandos: %1 + + + Remote stderr was: "%1" + Fehlerausgabe: "%1" + + + Installing package failed. + Die Installation des Pakets schlug fehl. + + + Public key error: %1 + Fehler im öffentlich Schlüssel: %1 + + + Packaging finished successfully. + Paketierung erfolgreich abgeschlossen. + + + Packaging failed. + Die Paketerstellung schlug fehl. + + + Creating tarball... + Tarball erzeugen... + + + Package modified files only + Nur geänderte Dateien einpacken + + + Tarball up to date, skipping packaging. + Tarball auf aktuellem Stand, Paketierung wird übersprungen. + + + Error: tar file %1 cannot be opened (%2). + Fehler: Die tar-Datei '%1' kann nicht geöffnet werden (%2). + + + No remote path specified for file "%1", skipping. + Der Datei "%1" ist kein entfernter Pfad zugeordnet, sie wird übersprungen. + + + Error writing tar file "%1": %2. + Fehler beim Schreiben der tar-Datei "%1": %2. + + + Error reading file "%1": %2. + Fehler beim Lesen der Datei "%1": %2. + + + Adding file "%1" to tarball... + Füge Datei "%1" zu Tarball hinzu... + + + Cannot add file "%1" to tar-archive: path too long. + Die Datei "%1" kann nicht zu dem Tar-Archiv hinzugefügt werden: Der Pfad ist zu lang. + + + Error writing tar file "%1": %2 + Fehler beim Schreiben der tar-Datei "%1": %2 + + + Tarball creation not possible. + Erstellung eines Tarballs nicht möglich. + + + Create tarball: + Tarball erzeugen: + + + Create tarball + Tarball erzeugen + + + No tarball creation step found. + Es konnte kein passender Schritt zur Erzeugung eines Tarballs gefunden werden. + + + Deploy tarball via SFTP upload + Deployment eines tar-Pakets mittels SFTP + + + No command line given. + Keine Kommandozeile angegeben. + + + Starting remote command "%1"... + Starte entferntes Kommando "%1"... + + + Remote process finished with exit code %1. + Der entfernte Prozess wurde beendet, Rückgabewert %1. + + + Remote command finished successfully. + Das entfernte Kommando wurde erfolgreich ausgeführt. + + + WizardPage + WizardPage + + + The name to identify this configuration: + Name der Konfiguration: + + + The device's host name or IP address: + Hostname oder IP-Adresse des Geräts: + + + The device's SSH port number: + + + + The username to log into the device: + Nutzername für Geräte-Login: + + + Authentication type: + Art der Authentifizierung: + + + &Host name: + &Hostname: + + + IP or host name of the device + IP-Adresse oder Hostname des Geräts + + + &SSH port: + &SSH-Port: + + + Free ports: + Freie Ports: + + + Timeout: + Zeitlimit: + + + s + s + + + &Username: + &Nutzername: + + + Physical Device + Physisches Gerät + + + Emulator + Emulator + + + You will need at least one port. + Sie benötigen mindestens einen freien Port. + + + Create New... + Neu erstellen... + + + Machine type: + Gerätetyp: + + + GDB server executable: + Ausführbare Datei des GDB-Servers: + + + Leave empty to look up executable in $PATH + Wenn der Wert leer ist, wird die ausführbare Datei in $PATH gesucht + + + You can enter lists and ranges like this: '1024,1026-1028,1030'. + Sie können Listen und Bereiche wie folgt angeben: '1024,1026-1028,1030'. + + + &Check host key + Host-S&chlüssel prüfen + + + Default + Vorgabe + + + Specific &key + Aus&gewählter Schlüssel + + + Remote process failed: %1 + Der entfernte Prozess schlug fehl: %1 + + + Deploy Public Key... + Öffentlichen Schlüssel senden... + + + Error running remote shell. + + + + Open Remote Shell + Entfernte Shell starten + + + Error running remote shell: %1 + Fehler bei der Ausführung der entfernten Shell: %1 + + + Cannot establish SSH connection: ssh binary "%1" does not exist. + SSH-Verbindung kann nicht aufgebaut werden: Eine ausführbare SSH-Datei "%1" existiert nicht. + + + Cannot establish SSH connection: Failed to create temporary directory for control socket: %1 + SSH-Verbindung kann nicht aufgebaut werden: Es konnte kein temporäres Verzeichnis für den Steuer-Socket angelegt werden: %1 + + + Cannot establish SSH connection. +Control process failed to start. + + + + SSH connection failure. + SSH-Verbindungsfehler. + + + SSH connection failure: + + + + Remote Linux + + + + Remote Linux Device + + + + Error starting remote shell. + Fehler beim Start der entfernten Shell. + + + "%1" failed to start: %2 + "%1" konnte nicht gestartet werden: %2 + + + "%1" crashed. + "%1" ist abgestürzt. + + + "sftp" binary "%1" does not exist. + + + + Failed to create local directory "%1". + Das lokale Verzeichnis "%1" konnte nicht erstellt werden. + + + Creating directory: %1 + + + + + Failed. + Fehlgeschlagen. + + + Copying %1/%2: %3 -> %4 + + + + + Clean Environment + Saubere Umgebung + + + System Environment + Systemumgebung + + + Fetch Device Environment + Umgebung vom Mobilgerät abfragen + + + Cannot Open Terminal + Terminal kann nicht geöffnet werden + + + Cannot open remote terminal: Current kit has no device. + Terminal kann nicht auf Gerät geöffnet werden: Das aktive Kit hat kein Gerät. + + + Cancel Fetch Operation + Abfragen der Umgebung abbrechen + + + Device Error + Gerätefehler + + + Fetching environment failed: %1 + Das Abfragen der Umgebung schlug fehl: %1 + + + Exit code is %1. stderr: + Rückgabewert %1. Fehlerausgabe: + + + Remote executable: + Entfernte ausführbare Datei: + + + Local executable: + Lokale ausführbare Datei: + + + The remote executable must be set in order to run a custom remote run configuration. + Die entfernte ausführbare Datei muss eingestellt sein um eine benutzerdefinierte enternte Ausführungskonfiguration zu verwenden. + + + Custom Executable + Benutzerdefinierte ausführbare Datei + + + Run "%1" + "%1" ausführen + + + Trying to kill "%1" on remote device... + Versuche "%1" auf anderem Gerät zu beenden... + + + Remote application killed. + Anwendung auf anderem Gerät beendet. + + + Failed to kill remote application. Assuming it was not running. + Anwendung auf anderem Gerät konnte nicht beendet werden. Vermutlich lief sie nicht. + + + Kill current application instance + Aktuelle Instanz der Anwendung beenden + + + Command line: + Kommandozeile: + + + Run custom remote command + Benutzerdefiniertes entferntes Kommando ausführen + + + Key Deployment + Schlüssel-Deployment + + + We recommend that you log into your device using public key authentication. +If your device is already set up for this, you do not have to do anything here. +Otherwise, please deploy the public key for the private key with which to connect in the future. +If you do not have a private key yet, you can also create one here. + Wir empfehlen Ihnen, sich per Public Key-Authentifizierung mit Ihrem Gerät zu verbinden. +Wenn dies bereits auf Ihrem Gerät eingerichtet ist, müssen Sie nichts weiter tun. +Wenn nicht, übertragen Sie bitte den öffentlichen Schlüssel, der zu dem privaten Schlüssel gehört, der verwendet werden soll. +Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen erzeugen. + + + Choose a Private Key File + Datei mit privatem Schlüssel auswählen + + + Deploy Public Key + Öffentlichen Schlüssel übertragen + + + Create New Key Pair + Neues Schlüsselpaar erzeugen + + + Private key file: + Private Schlüsseldatei: + + + X11 Forwarding: + + + + Forward to local display + Auf lokalen Bildschirm weiterleiten + + + Deploy via rsync: failed to create remote directories: + + + + rsync failed to start: %1 + rsync konnte nicht gestartet werden: %1 + + + rsync crashed. + rsync ist abgestürzt. + + + rsync failed with exit code %1. + rsync scheiterte mit dem Rückgabewert %1. + + + Flags: + Optionen: + + + Ignore missing files: + Fehlende Dateien ignorieren: + + + rsync is only supported for transfers between different devices. + + + + Deploy files via rsync + Dateien mittels rsync übertragen + + + Command: + + + + Install root: + Install-Root: + + + Clean install root first: + + + + Full command line: + + + + Custom command line: + + + + Use custom command line instead: + + + + Install into temporary host directory + + + + You must provide an install root. + + + + The install root "%1" could not be cleaned. + + + + The install root "%1" could not be created. + + + + The "make install" step should probably not be last in the list of deploy steps. Consider moving it up. + + + + You need to add an install statement to your CMakeLists.txt file for deployment to work. + + + + Executable on device: + Ausführbare Datei auf Mobilgerät: + + + Remote path not set + Der entfernte Pfad ist nicht gesetzt + + + Executable on host: + Ausführbare Datei auf Hostrechner: + + + New Remote Linux Device Configuration Setup + + + + SSH Key Configuration + SSH-Schlüsselkonfiguration + + + &RSA + &RSA + + + ECDSA + ECDSA + + + &Generate And Save Key Pair + &Erzeuge und speichere Schlüsselpaar + + + Options + Einstellungen + + + Key algorithm: + Schlüsselalgorithmus: + + + Key &size: + Schlüssel&länge: + + + Public key file: + Öffentliche Schlüsseldatei: + + + The ssh-keygen tool was not found. + Das Programm "ssh-keygen" wurde nicht gefunden. + + + Refusing to overwrite existing private key file "%1". + Die private Schlüsseldatei "%1" wird nicht überschrieben. + + + The ssh-keygen tool at "%1" failed: %2 + Das Programm "ssh-keygen" in "%1" hat einen Fehler festgestellt: %2 + + + Choose Private Key File Name + Name der privaten Schlüsseldatei auswählen + + + Key Generation Failed + Fehler bei Erzeugung der Schlüssel + + + + GenericProjectManager::Internal::FilesSelectionWizardPage + + Files + Dateien + + + + text + + Text + Text + + + + textedit + + Text Edit + Text Edit + + + + textinput + + Text + Text + + + + MouseAreaSpecifics + + Enabled + Aktiviert + + + Accepted buttons + Akzeptierte Tasten + + + Cursor shape + Mauszeiger-Form + + + Prevent stealing + Stealing verhindern + + + Enable + Aktivieren + + + Accepts mouse events. + + + + Area + + + + Hover + + + + Mouse buttons that the mouse area reacts to. + + + + Cursor shape for this mouse area. + + + + Hold interval + + + + Overrides the elapsed time in milliseconds before pressAndHold signal is emitted. + + + + Scroll gesture + + + + Responds to scroll gestures from non-mouse devices. + + + + Stops mouse events from being stolen from this mouse area. + + + + Propagate events + + + + Automatically propagates composed mouse events to other mouse areas. + + + + Drag + Ziehen + + + Target + Ziel + + + ID of the component to drag. + + + + Whether dragging can be done horizontally, vertically, or both. + + + + Threshold in pixels of when the drag operation should start. + + + + Whether dragging overrides descendant mouse areas. + + + + Moves targets only after the drag operation has started. +When disabled, moves targets straight to the current mouse position. + + + + Axis + Achse + + + Filter children + Children filtern + + + Threshold + Grenze + + + Smoothed + Glatt + + + Mouse Area + Mouse Area + + + + Core::Internal::ExternalTool + + Creates qm translation files that can be used by an application from the translator's ts files + Erzeugt aus den ts-Dateien des Übersetzers qm-Übersetzungsdateien, die von einer Anwendung genutzt werden können + + + Release Translations (lrelease) + Übersetzungen freigeben (lrelease) + + + Linguist + Linguist + + + Runs the current QML file with QML utility. + Führt die aktuelle QML-Datei mit dem QML-Werkzeug aus. + + + QML utility + QML-Werkzeug + + + Synchronizes translator's ts files with the program code + Synchronisiert die ts-Dateien des Übersetzers mit dem Quelltext + + + Update Translations (lupdate) + Übersetzungen aktualisieren (lupdate) + + + Opens the current file in Notepad + Öffnet die aktuelle Datei im Editor + + + Edit with Notepad + Mit Editor bearbeiten + + + Text + Text + + + Runs the current QML file with qmlscene. This requires Qt 5. + Führt die aktuelle QML-Datei mit qmlscene aus. Erfordert Qt 5. + + + Qt Quick 2 Preview (qmlscene) + Qt Quick 2-Vorschau (qmlscene) + + + Qt Quick + Qt Quick + + + Opens the current file in vi + Öffnet die aktuelle Datei in vi + + + Edit with vi + Mit vi bearbeiten + + + + ExtensionSystem::Internal::PluginErrorOverview + + The following plugins have errors and cannot be loaded: + Die folgenden Plugins sind fehlerhaft und können nicht geladen werden: + + + Details: + Details: + + + Plugin Loader Messages + Meldungen der Plugin-Verwaltung + + + + Utils::TextFileFormat + + Out of memory. + Es ist kein Speicher mehr verfügbar. + + + An encoding error was encountered. + Fehlerhafte Zeichenkodierung. + + + + Core::Internal + + Launching a file browser failed + Das Starten des Datei-Browsers schlug fehl + + + Unable to start the file manager: + +%1 + + + Der Dateibrowser konnte nicht gestartet werden: + +%1 + + + + + "%1" returned the following error: + +%2 + "%1" gab einen Fehler zurück: + +%2 + + + Launching Windows Explorer Failed + Das Starten des Windows-Explorers schlug fehl + + + Could not find explorer.exe in path to launch Windows Explorer. + Windows Explorer konnte nicht gestartet werden, da die Datei explorer.exe nicht im Pfad gefunden werden konnte. + + + The command for file browser is not set. + Das Kommando für den Datei-Browser ist nicht konfiguriert. + + + Error while starting file browser. + Fehler beim Starten des Datei-Browsers. + + + Find in This Directory... + In diesem Verzeichnis suchen... + + + Show in File System View + In Dateisystem-Seitenleiste anzeigen + + + Show in Explorer + In Explorer anzeigen + + + Show in Finder + In Finder anzeigen + + + Show Containing Folder + Beinhaltendes Verzeichnis anzeigen + + + Open Command Prompt Here + Kommandoprompt öffnen + + + Open Terminal Here + Terminalfenster hier öffnen + + + Open Command Prompt With + Opens a submenu for choosing an environment, such as "Run Environment" + Kommandoprompt öffnen mit + + + Open Terminal With + Opens a submenu for choosing an environment, such as "Run Environment" + Terminalfenster öffnen mit + + + Failed to remove file "%1". + Die Datei "%1" konnte nicht gelöscht werden. + + + + BaseFileWizard + + Unable to create the directory %1. + Das Verzeichnis %1 kann nicht erstellt werden. + + + + TextEditor::CodeStyleSelectorWidget + + Copy... + Kopieren... + + + Remove + Entfernen + + + Export... + Exportieren... + + + Import... + Importieren... + + + Current settings: + Aktuelle Einstellungen: + + + Copy Code Style + Coding Style kopieren + + + Code style name: + Coding Style: + + + %1 (Copy) + %1 (Kopie) + + + Delete Code Style + Coding Style löschen + + + Are you sure you want to delete this code style permanently? + Möchten Sie diesen Coding-Stil endgültig löschen? + + + Delete + Löschen + + + Import Code Style + Coding Style importieren + + + Code styles (*.xml);;All files (*) + Coding-Stile (*.xml);;Alle Dateien (*) + + + Cannot import code style from %1 + Der Coding-Stil kann nicht von %1 importiert werden + + + Export Code Style + Coding-Stil exportieren + + + %1 [proxy: %2] + %1 [proxy: %2] + + + %1 [built-in] + %1 [eingebaut] + + + + TextEditor::FindInFiles + + Files in File System + Dateien aus Dateisystem + + + %1 "%2": + %1 "%2": + + + Path: %1 +Filter: %2 +Excluding: %3 +%4 + the last arg is filled by BaseFileFind::runNewSearch + Pfad: %1 +Filter: %2 +Außer: %3 +%4 + + + Search engine: + Suchwerkzeug: + + + Director&y: + &Verzeichnis: + + + Directory to Search + Suchverzeichnis + + + + UpdateInfo::Internal::UpdateInfoPlugin + + Checking for Updates + Aktualisierungen werden gesucht + + + New updates are available. Start the update? + Neue Aktualisierungen sind verfügbar. Wollen Sie eine Aktualisierung starten? + + + Start Update + Aktualisierung beginnen + + + %1 (%2) + Package name and version + %1 (%2) + + + Available updates: + Verfügbare Aktualisierungen: + + + %1 is available. Check the <a %2>Qt blog</a> for details. + %1 ist verfügbar. Details finden Sie im <a %2>Qt Blog</a>. + + + Start Package Manager + Paketmanager starten + + + Open Settings + Einstellungen öffnen + + + No updates found. + Es wurden keine Aktualisierungen gefunden. + + + Could not determine location of maintenance tool. Please check your installation if you did not enable this plugin manually. + Das Maintenance Tool konnte nicht gefunden werden. Bitte überprüfen Sie Ihre Installation, sofern Sie das Plugin nicht manuell aktiviert haben. + + + The maintenance tool at "%1" is not an executable. Check your installation. + Das Maintenance Tool "%1" kann nicht ausgeführt werden. Bitte überprüfen Sie Ihre Installation. + + + Check for Updates + Nach Aktualisierungen suchen + + + + TextEditor::CodeStyleEditor + + Edit preview contents to see how the current settings are applied to custom code snippets. Changes in the preview do not affect the current settings. + Ändern Sie den Inhalt der Vorschau, um zu sehen wie sich die aktuellen Einstellungen auf die benutzerdefinierten Snippets auswirken. Änderungen der Vorschau haben keinen Einfluss auf die Einstellungen. + + + + Core::Internal::MimeTypeSettingsPage + + Registered MIME Types + Registrierte MIME-Typen + + + Details + Details + + + Patterns: + Muster: + + + Reset all MIME type definitions to their defaults. + Setzt alle MIME-Typen auf die Voreinstellung zurück. + + + Reset the assigned handler for all MIME type definitions to the default. + Setzt die zugewiesenen Editoren aller MIME-Typen auf die Voreinstellung zurück. + + + A semicolon-separated list of wildcarded file names. + Eine durch Semikola getrennte Liste von Dateinamen mit Platzhaltern. + + + Magic Header + Magic Header + + + Type + Typ + + + Range + Bereich + + + Priority + Priorität + + + Add... + Hinzufügen... + + + Edit... + Bearbeiten... + + + Remove + Entfernen + + + Reset MIME Types + MIME-Typen zurücksetzen + + + Reset Handlers + Editoren zurücksetzen + + + + Tracing + + Selection + Auswahl + + + Start + Anfang + + + End + Ende + + + Duration + Dauer + + + Close + Schließen + + + Jump to previous event. + Gehe zu vorangehendem Ereignis. + + + Jump to next event. + Gehe zu nächstem Ereignis. + + + Show zoom slider. + Zoom-Schieberegler anzeigen. + + + Select range. + Bereich auswählen. + + + View event information on mouseover. + Information zu Ereignis anzeigen, wenn sich der Mauszeiger darüber befindet. + + + Collapse category + Kategorie einklappen + + + Expand category + Kategorie expandieren + + + [unknown] + [unbekannt] + + + others + andere + + + unknown + unbekannt + + + No data available + Keine Daten verfügbar + + + Could not open %1 for writing. + Die Datei %1 konnte nicht zum Schreiben geöffnet werden. + + + Could not open %1 for reading. + Die Datei %1 konnte nicht zum Lesen geöffnet werden. + + + Could not re-read events from temporary trace file: %1 +The trace data is lost. + Ereignisse konnten nicht erneut aus der temporären Trace-Datei eingelesen werden: %1 +Die Trace-Daten sind verloren. + + + Edit note + Notiz bearbeiten + + + + QmakeProjectManager + + qmake + QMakeStep default display name + qmake + + + No Qt version configured. + Keine Qt-Version konfiguriert. + + + Could not determine which "make" command to run. Check the "make" step in the build configuration. + Es konnte nicht bestimmt werden, welches "make"-Kommando ausgeführt werden soll. Überprüfen Sie den "make"-Schritt in der Build-Konfiguration. + + + Configuration unchanged, skipping qmake step. + Unveränderte Konfiguration, qmake-Schritt wird übersprungen. + + + <no Qt version> + <keine Qt-Version> + + + <no Make step found> + <kein Make-Schritt gefunden> + + + &Sources + &Quellen + + + Widget librar&y: + Widget-&Bibliothek: + + + Widget project &file: + Widget-&Projektdatei: + + + Widget h&eader file: + Widget-&Header-Datei: + + + Widge&t source file: + Widget-&Quelldatei: + + + Widget &base class: + &Basisklasse des Widgets: + + + Plugin class &name: + Klassen&name des Plugins: + + + Plugin &header file: + He&ader-Datei des Plugins: + + + Plugin sou&rce file: + Q&uelldatei des Plugins: + + + Icon file: + Symboldatei: + + + &Link library + &Bibliothek + + + Create s&keleton + &Gerüst erzeugen + + + Include pro&ject + Pro&jekt einbinden + + + &Description + &Beschreibung + + + G&roup: + &Kategorie: + + + &Tooltip: + &Tooltip: + + + W&hat's this: + W&hat's this: + + + The widget is a &container + &Containerwidget + + + Property defa&ults + &Vorgabewerte der Eigenschaften + + + dom&XML: + dom&XML: + + + Select Icon + Symbol auswählen + + + Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) + Symboldateien (*.png *.ico *.jpg *.xpm *.tif *.svg) + + + Specify the properties of the plugin library and the collection class. + Geben Sie die Eigenschaften der Plugin-Bibliothek und der Collection-Klasse an. + + + Collection class: + Collection-Klasse: + + + Collection header file: + Collection-Header-Datei: + + + Collection source file: + Collection-Quelldatei: + + + Plugin name: + Name des Plugins: + + + Resource file: + Ressourcendatei: + + + icons.qrc + icons.qrc + + + Plugin Details + Plugin-Details + + + Specify the list of custom widgets and their properties. + Erstellen Sie eine Liste der benutzerdefinierten Widgets und ihrer Eigenschaften. + + + Widget &Classes: + Widget-&Klassen: + + + Custom Widgets + Benutzerdefinierte Widgets + + + Library: + Bibliothek: + + + Library file: + Bibliotheksdatei: + + + Include path: + Include-Pfad: + + + Package: + Paket: + + + Linux + Linux + + + Mac + Mac + + + Windows + Windows + + + Linkage: + Linken: + + + Dynamic + dynamisch + + + Static + statisch + + + Mac: + Mac: + + + Library + Bibliothek + + + Framework + Framework + + + Windows: + Windows: + + + Platform: + Plattform: + + + Library inside "debug" or "release" subfolder + Bibliothek innerhalb "debug" oder "release" Unterverzeichnis + + + Add "d" suffix for debug version + Suffix "d" für Debug-Version anfügen + + + Remove "d" suffix for release version + Suffix "d" für Release-Version entfernen + + + Library type: + Art der Bibliothek: + + + Add Library + Bibliothek hinzufügen + + + Library Type + Typ der Bibliothek + + + Choose the type of the library to link to + Wählen Sie den Typ der Bibliothek, gegen die Sie Ihr Projekt linken möchten + + + Internal library + Interne Bibliothek + + + Links to a library that is located in your build tree. +Adds the library and include paths to the .pro file. + Linkt gegen eine Bibliothek, die sich in Ihrem Build-Baum befindet. +Der Pfad zur Bibliothek und der Pfad zu den Headerdateien werden zur .pro-Datei hinzugefügt. + + + External library + Externe Bibliothek + + + Links to a library that is not located in your build tree. +Adds the library and include paths to the .pro file. + Linkt gegen eine Bibliothek, die sich nicht in Ihrem Build-Baum befindet. +Der Pfad zur Bibliothek und der Pfad zu den Headerdateien werden zur .pro-Datei hinzugefügt. + + + System library + Systembibliothek + + + Links to a system library. +Neither the path to the library nor the path to its includes is added to the .pro file. + Linkt gegen eine Systembibliothek. +Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-Datei hinzugefügt. + + + System package + Systempaket + + + Links to a system library using pkg-config. + Verweist auf eine Systembibliothek unter Verwendung von pkg-config. + + + Type + Typ + + + Details + Details + + + Internal Library + Interne Bibliothek + + + Choose the project file of the library to link to + Geben Sie die Projektdatei der zu verwendenden Bibliothek an + + + External Library + Externe Bibliothek + + + Specify the library to link to and the includes path + Geben Sie den Pfad und die Include-Pfade der Bibliothek an + + + System Library + Systembibliothek + + + Specify the library to link to + Wählen Sie die zu verwendende Bibliothek + + + System Package + Systempaket + + + Specify the package to link to + Geben Sie das zu bindende Paket an + + + Summary + Zusammenfassung + + + The following snippet will be added to the<br><b>%1</b> file: + Die folgende Angabe wird in die Datei <br><b>%1</b> eingefügt: + + + <New class> + <Neue Klasse> + + + Confirm Delete + Löschen Bestätigen + + + Delete class %1 from list? + Soll die Klasse %1 aus der Liste gelöscht werden? + + + Qt Custom Designer Widget + Benutzerdefiniertes Widget für Qt Designer + + + Creates a Qt Custom Designer Widget or a Custom Widget Collection. + Erstellt ein oder mehrere benutzerdefinierte Widgets für Qt Designer. + + + This wizard generates a Qt Designer Custom Widget or a Qt Designer Custom Widget Collection project. + Dieser Assistent erstellt ein Projekt mit einem oder mehreren benutzerdefinierten Widgets für Qt Designer. + + + Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. + Die Erzeugung von mehreren Bibliotheken (%1, %2) in einem Projekt (%3) wird nicht unterstützt. + + + Unable to start "%1" + "%1" kann nicht gestartet werden + + + The application "%1" could not be found. + Die Anwendung "%1" konnte nicht gefunden werden. + + + Qt Designer is not responding (%1). + Qt Designer antwortet nicht (%1). + + + Unable to create server socket: %1 + Der Server-Socket konnte nicht erzeugt werden: %1 + + + %1 Dynamic + %1 dynamisch + + + %1 Static + %1 statisch + + + %1 Framework + %1 Framework + + + %1 Library + %1 Bibliothek + + + Debug + Debug + + + Release + Release + + + QML Debugging + QML-Debuggen + + + qmake build configuration: + qmake Build-Konfiguration: + + + Additional arguments: + Zusätzliche Argumente: + + + Effective qmake call: + Resultierender qmake-Aufruf: + + + ABIs: + ABIs: + + + Qt Quick Compiler + Qt-Quick-Compiler + + + Separate Debug Information + Separate Debug-Information + + + The option will only take effect if the project is recompiled. Do you want to recompile now? + Diese Einstellung wird nur nach einer Neuerstellung des Projekts wirksam. Möchten Sie das Projekt neu erstellen? + + + <b>qmake:</b> No Qt version set. Cannot run qmake. + <b>qmake:</b> Es ist keine Qt-Version eingestellt. qmake kann nicht ausgeführt werden. + + + <b>qmake:</b> %1 %2 + <b>qmake:</b> %1 %2 + + + Subdirs Project + Subdirs-Projekt + + + Creates a qmake-based subdirs project. This allows you to group your projects in a tree structure. + Erstellt ein qmake-basiertes Projekt vom Typ subdirs. Dies ermöglicht es Ihnen, Ihre Projekte in einer Baumstruktur zu gruppieren. + + + Done && Add Subproject + Abschließen und Unterprojekt hinzufügen + + + Finish && Add Subproject + Abschließen und Unterprojekt hinzufügen + + + New Subproject + Title of dialog + Neues Teilprojekt + + + This wizard generates a Qt Subdirs project. Add subprojects to it later on by using the other wizards. + Dieser Assistent erstellt ein Qt-Projekt vom Typ subdirs. Unterprojekte können später mit anderen Assistenten hinzugefügt werden. + + + Run + Ausführen + + + Ignore + + + + Use global setting + + + + qmake system() behavior when parsing: + + + + General + Allgemein + + + This kit cannot build this project since it does not define a Qt version. + Das Kit kann dieses Projekt nicht erstellen, da in ihm keine Qt-Version festgelegt ist. + + + Error: + Fehler: + + + Warning: + Warnung: + + + The build directory contains a build for a different project, which will be overwritten. + Das Build-Verzeichnis enthält einen Build eines anderen Projektes, welcher überschrieben wird. + + + %1 The build will be overwritten. + %1 error message + %1 Der Build wird überschrieben. + + + The build directory should be at the same level as the source directory. + Das Build-Verzeichnis sollte sich auf der Ebene des Quellverzeichnisses befinden. + + + Could not parse Makefile. + Das Makefile konnte nicht ausgewertet werden. + + + The Makefile is for a different project. + Das Makefile ist für ein anderes Projekt. + + + The build type has changed. + Die Art des Builds wurde geändert. + + + The qmake arguments have changed. + Die Argumente für qmake wurden geändert. + + + The mkspec has changed. + Die mkspec wurde geändert. + + + Release + Shadow build directory suffix + Non-ASCII characters in directory suffix may cause build issues. + Release + + + Debug + Shadow build directory suffix + Non-ASCII characters in directory suffix may cause build issues. + Debug + + + Profile + Shadow build directory suffix + Non-ASCII characters in directory suffix may cause build issues. + Profile + + + Cannot parse project "%1": The currently selected kit "%2" does not have a valid Qt. + + + + Cannot parse project "%1": No kit selected. + + + + No Qt version set in kit. + Im Kit ist keine Qt-Version gesetzt. + + + Qt version is invalid. + Ungültige Qt-Version. + + + No C++ compiler set in kit. + Im Kit ist kein C++-Compiler eingerichtet. + + + Project is part of Qt sources that do not match the Qt defined in the kit. + Das Projekt ist Teil von Qt-Quellen, die nicht zum im Kit definierten Qt passen. + + + Build + Erstellen + + + Build "%1" + "%1" erstellen + + + Run qmake + qmake ausführen + + + Rebuild + Neu erstellen + + + Clean + Bereinigen + + + Build &Subproject + &Unterprojekt erstellen + + + Build &Subproject "%1" + &Unterprojekt "%1" erstellen + + + Rebuild Subproject + Unterprojekt neu erstellen + + + Clean Subproject + Unterprojekt bereinigen + + + Build File + Datei erstellen + + + Build File "%1" + Datei "%1" erstellen + + + Ctrl+Alt+B + Ctrl+Alt+B + + + Add Library... + Bibliothek hinzufügen... + + + QMake + QMake + + + Headers + Header-Dateien + + + Sources + Quelldateien + + + Forms + Formulardateien + + + State charts + Zustandsdiagramme + + + Resources + Ressourcen + + + QML + QML + + + Other files + Andere Dateien + + + Generated Files + Erzeugte Dateien + + + Failed + Fehlgeschlagen + + + Could not write project file %1. + Die Projektdatei %1 konnte nicht geschrieben werden. + + + File Error + Dateifehler + + + Error while parsing file %1. Giving up. + Fehler beim Auswerten der Datei %1. Abbruch. + + + Could not find .pro file for subdirectory "%1" in "%2". + Die .pro-Datei des Unterverzeichnisses "%1" konnte in "%2" nicht gefunden werden. + + + "%1" is used by qmake, but "%2" is configured in the kit. +Please update your kit (%3) or choose a mkspec for qmake that matches your target environment better. + "%1" wird von qmake verwendet, aber "%2" ist im Kit festgelegt. +Bitte aktualisieren Sie Ihr Kit (%3) oder wählen Sie eine mkspec für qmake, die besser zu Ihrer Zielumgebung passt. + + + Cannot find Makefile. Check your build settings. + Die Makefile-Datei konnte nicht gefunden werden. Bitte überprüfen Sie die Einstellungen zur Erstellung. + + + The build directory is not at the same level as the source directory, which could be the reason for the build failure. + + + + Qt mkspec + Qt-mkspec + + + The mkspec to use when building the project with qmake.<br>This setting is ignored when using other build systems. + Die zur Erstellung des Projekts mit qmake zu verwendende mkspec.<br>Diese Einstellung hat keine Auswirkung auf andere Build-Systeme. + + + No Qt version set, so mkspec is ignored. + Es ist keine Qt-Version gesetzt, die mkspec wird ignoriert. + + + Mkspec not found for Qt version. + Die mkspec konnte für diese Qt-Version nicht gefunden werden. + + + mkspec + mkspec + + + Mkspec configured for qmake by the kit. + + + + Reading Project "%1" + Lese Projekt "%1" + + + Warn if a project's source and build directories are not at the same level + + + + Qmake has subtle bugs that can be triggered if source and build directory are not at the same level. + + + + Run qmake on every build + + + + This option can help to prevent failures on incremental builds, but might slow them down unnecessarily in the general case. + + + + Ignore qmake's system() function when parsing a project + + + + Checking this option avoids unwanted side effects, but may result in inexact parsing results. + + + + Qmake + + + + Required Qt features not present. + + + + Qt version does not target the expected platform. + + + + Qt version does not provide all features. + + + + + TextEditor::BehaviorSettingsWidget + + Typing + Beim Tippen + + + Enable automatic &indentation + Automatische Ein&rückung + + + Backspace indentation: + Einrückung bei Rücktaste: + + + <html><head/><body> +Specifies how backspace interacts with indentation. + +<ul> +<li>None: No interaction at all. Regular plain backspace behavior. +</li> + +<li>Follows Previous Indents: In leading white space it will take the cursor back to the nearest indentation level used in previous lines. +</li> + +<li>Unindents: If the character behind the cursor is a space it behaves as a backtab. +</li> +</ul></body></html> + + <html><head/><body> +Gibt an, wie sich die Rücktaste bezüglich Einrückung verhält. + +<ul> +<li>Keine: Kein besondere Behandlung, normales Verhalten der Rücktaste. +</li> + +<li>Vorangehender Einrückung folgen: In führenden Leerzeichen wird die Einfügemarke auf die nächstliegende Einrückung vorangehender Zeilen gestellt. +</li> + +<li>Ausrücken: Wenn das hinter der Einfügemarke befindliche Zeichen ein Leerzeichen ist, verhält sich die Rücktaste wie ein rückwärtiger Tabulator. +</li> +</ul></body></html> + + + + None + Keine + + + Follows Previous Indents + Vorangehender Einrückung folgen + + + Unindents + Ausrücken + + + Prefer single line comments + Einzeilige Kommentare bevorzugen + + + Tab key performs auto-indent: + Tabulator-Taste bewirkt automatische Einrückung: + + + Never + Niemals + + + Always + Immer + + + In Leading White Space + Nur in Leerzeichen am Zeilenanfang + + + Cleanup actions which are automatically performed right before the file is saved to disk. + Korrekturen die unmittelbar vor dem Speichern durchgeführt werden. + + + Cleanups Upon Saving + Korrekturen beim Speichern + + + Removes trailing whitespace upon saving. + Leerzeichen am Zeilenende beim Abspeichern entfernen. + + + &Clean whitespace + &Leerzeichen bereinigen + + + In entire &document + Im &gesamten Dokument + + + Clean indentation + Einrückung korrigieren + + + &Ensure newline at end of file + &Zeilenvorschub am Dateiende anfügen + + + File Encodings + Datei-Zeichenkodierungen + + + UTF-8 BOM: + UTF-8 BOM: + + + Add If Encoding Is UTF-8 + Bei UTF-8-Zeichenkodierung hinzufügen + + + Keep If Already Present + Beibehalten, falls vorhanden + + + Always Delete + Immer entfernen + + + Mouse and Keyboard + Maus und Tastatur + + + Enable &mouse navigation + &Mausnavigation aktivieren + + + Enable scroll &wheel zooming + Zoom mittels Maus&rad aktivieren + + + Enable built-in camel case &navigation + Eingebaute CamelCase-&Navigation aktivieren + + + On Mouseover + Wenn sich der Mauszeiger über dem Element befindet + + + On Shift+Mouseover + Wenn sich der Mauszeiger über dem Element befindet und die Umschalttaste gedrückt ist + + + Show help tooltips using keyboard shortcut (Alt) + Hilfe-Tooltips mit der Tastatur aufrufen (Alt-Taste) + + + Default encoding: + Zeichenkodierungs-Vorgabe: + + + Show help tooltips using the mouse: + Hilfe-Tooltips mit der Maus aufrufen: + + + Cleans whitespace in entire document instead of only for changed parts. + Bereinigt Leerzeichen im gesamten Dokument und nicht nur in den geänderten Teilen. + + + Corrects leading whitespace according to tab settings. + Leerzeichen am Zeilenanfang entsprechend Tabulatoreinstellungen korrigieren. + + + Always writes a newline character at the end of the file. + Am Ende einer Datei stets einen Zeilenvorschub anfügen. + + + Hide mouse cursor while typing + Mauszeiger beim Tippen ausblenden + + + Pressing Alt displays context-sensitive help or type information as tooltips. + Drücken Sie die Alt-Taste um kontextabhängige Hilfe oder Typinformation als Tool-Tip anzuzeigen. + + + Using Select Block Up / Down actions will now provide smarter selections. + "Einen Block nach open/unten auswählen" funktioniert nun intelligenter. + + + Enable smart selection changing + Die Änderung der intelligenten Auswahl einschalten + + + <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 the text editor 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>Gibt an, wie sich der Texteditor bezüglich UTF-8 Byte Order Marks verhält. Zur Auswahl stehen:</p> +<ul ><li><i>Bei UTF-8-Zeichenkodierung hinzufügen</i> BOM bei UTF-8-Zeichenkodierung stets hinzufügen. Dies wird jedoch bei der Zeichenkodierung <i>System</i> nicht funktionieren, da der Editor in diesem Fall die Zeichenkodierung nicht bestimmen kann.</li> +<li><i>Beibehalten, falls vorhanden: </i>BOM ausschreiben, wenn beim Laden ein BOM festgestellt wurde.</li> +<li><i>Immer entfernen:</i> UTF-8 BOM niemals ausschreiben, existierende unter Umständen entfernen.</li></ul> +<p>Beachten Sie, dass UTF-8 BOMs selten sind und von einigen Editoren falsch behandelt werden. Daher ist es meist sinnlos sie hinzuzufügen.</p> +<p>Die Einstellung beeinflusst <b>nicht</b> die Verwendung von UTF-16 und UTF-32 BOMs.</p></body></html> + + + Default line endings: + Vorgabe für Zeilenenden: + + + For the file patterns listed, do not trim trailing whitespace. + Leerzeichen am Ende nicht in den aufgelisteten Dateitypen bereinigen. + + + Skip clean whitespace for file types: + Leerzeichen nicht in Dateitypen bereinigen: + + + List of wildcard-aware file patterns, separated by commas or semicolons. + Eine durch Kommas oder Semikola getrennte Liste von Dateinamen. (Platzhalter sind möglich). + + + Displays context-sensitive help or type information on mouseover. + Kontextsensitive Hilfe oder Typinformationen anzeigen, wenn sich der Mauszeiger über dem Element befindet. + + + Displays context-sensitive help or type information on Shift+Mouseover. + Kontextsensitive Hilfe oder Typinformationen anzeigen, wenn sich der Mauszeiger über dem Element befindet und die Umschalttaste gedrückt ist. + + + Unix (LF) + Unix (LF) + + + Windows (CRLF) + Windows (CRLF) + + + + TextEditor::DisplaySettingsPage + + Display + Anzeige + + + Display line &numbers + Zeilen&nummern anzeigen + + + Highlight current &line + Aktuelle &Zeile hervorheben + + + Display &folding markers + Code&folding-Zeichen anzeigen + + + Highlight &blocks + &Blöcke hervorheben + + + Mark &text changes + &Textänderungen hervorheben + + + &Visualize whitespace + &Leerzeichen darstellen + + + &Animate matching parentheses + Passende Klammern &animieren + + + Auto-fold first &comment + Ersten &Kommentarblock einklappen + + + Center &cursor on scroll + Cursor beim Scrollen in der &Mitte halten + + + Enable text &wrapping + &Umbruch aktivieren + + + Display right &margin at column: + Rechten &Rand anzeigen bei Spalte: + + + &Highlight matching parentheses + Passende Klammern &hervorheben + + + Always open links in another split + Verweise immer in anderem geteilten Fenster öffnen + + + Display file encoding + Datei-Zeichenkodierung anzeigen + + + Shows tabs and spaces. + Tabulatoren und Leerzeichen darstellen. + + + Highlight search results on the scrollbar + Suchergebnisse in der Bildlaufleiste hervorheben + + + <i>Set <a href="font zoom">font line spacing</a> to 100% to enable text wrapping option.</i> + <i>Setzen Sie den <a href="font zoom">Zeilenabstand</a> des Zeichensatzes auf 100%, um die Einstellung für Textumbruch zu aktivieren.</i> + + + Tint whole margin area + Rand einfärben + + + Use context-specific margin + Kontextabhängigen Rand verwenden + + + If available, use a different margin. For example, the ColumnLimit from the ClangFormat plugin. + Benutzt einen anderen Rand, falls verfügbar. Zum Beispiel das ColumnLimit vom ClangFormat Plugin. + + + Animate navigation within file + Navigation innerhalb einer Datei animieren + + + Visualize indent + Einrückung Visualisieren + + + Display file line ending + Zeilenende-Kodierung anzeigen + + + Next to editor content + Neben Editorinhalt + + + Next to right margin + Am rechten Rand + + + Aligned at right side + Rechtsbündig + + + Line annotations + Zeilenannotationen + + + Margin + Rand + + + Wrapping + Umbruch + + + Between lines + Zwischen den Zeilen + + + + TextEditor::Internal::HighlighterSettingsPage + + Syntax Highlight Definition Files + Definitionsdateien für die Syntaxhervorhebung + + + Ignored file patterns: + Ausgeschlossene Datei-Suchmuster: + + + <html><head/><body><p>Highlight definitions are provided by the <a href="https://api.kde.org/frameworks/syntax-highlighting/html/index.html">KSyntaxHighlighting</a> engine.</p></body></html> + <html><head/><body><p>Definitionsdateien für die Syntaxhervorhebung werden von <a href="https://api.kde.org/frameworks/syntax-highlighting/html/index.html">KSyntaxHighlighting</a> bereitgestellt.</p></body></html> + + + User Highlight Definition Files + Dateien für benutzerdefinierte Syntaxhervorhebung + + + Reset Remembered Definitions + Gespeicherte Definitionen zurücksetzen + + + Reset definitions remembered for files that can be associated with more than one highlighter definition. + Gespeicherte Definitionen für Dateien, denen mehrere Definitionsdateien zur Syntaxhervorhebung zugeordnet werden können, zurücksetzen. + + + Download missing and update existing syntax definition files. + Fehlende Syntax-Definitionsdateien herunterladen und bestehende aktualisieren. + + + Download Definitions + Definitionen herunterladen + + + Reload externally modified definition files. + Extern geänderte Definitionsdateien neu laden. + + + Reload Definitions + Definitionen neu laden + + + Generic Highlighter + Generische Syntaxhervorhebung + + + Download finished + Herunterladen beendet + + + + TextEditor::Internal::SnippetsSettingsPage + + Add + Hinzufügen + + + Remove + Entfernen + + + Revert Built-in + Internes Snippet zurücksetzen + + + Group: + Gruppe: + + + Restore Removed Built-ins + Alle internen Snippets zurücksetzen + + + Reset All + Alle zurücksetzen + + + Error While Saving Snippet Collection + Fehler beim Speichern der Snippet-Sammlung + + + Error + Fehler + + + No snippet selected. + Kein Snippet ausgewählt. + + + Snippets + Snippets + + + + TextEditor::TabSettingsWidget + + Tabs And Indentation + Tabulatoren und Einrückung + + + Tab policy: + Tabulatorverhalten: + + + Spaces Only + Nur Leerzeichen + + + Tabs Only + Nur Tabulatoren + + + Mixed + Gemischt + + + Ta&b size: + Tabulator&weite: + + + &Indent size: + &Einrückung: + + + Align continuation lines: + Einrückung von Fortsetzungszeilen: + + + <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> +Bestimmt das Verhalten bezüglich der Einrückung von Fortsetzungszeilen. + +<ul> +<li>Keine Einrückung: Keine Einrückung zusätzlich zur logischen Einrückung. +<pre> +(tab)int i = foo(a, b +(tab)c, d); +</pre> +</li> + +<li>Leerzeichen: Zusätzliche Einrückung mittels Leerzeichen. +<pre> +(tab)int i = foo(a, b +(tab) c, d); +</pre> +</li> + +<li>Normale Einrückung: Benutze Tabulatoren oder Leerzeichen entsprechend obiger Konfiguration. +<pre> +(tab)int i = foo(a, b +(tab)(tab)(tab) c, d); +</pre> +</li> +</ul></body></html> + + + Not At All + Keine Einrückung + + + With Spaces + Leerzeichen + + + With Regular Indent + Benutze normale Einrückung + + + The text editor indentation setting is used for non-code files only. See the C++ and Qt Quick coding style settings to configure indentation for code files. + Die Einstellungen des Texteditors bezüglich Einrückung werden nur für Dateien verwendet, die keinen Code enthalten. Verwenden Sie die Einstellungen zu C++ und Qt Quick Coding-Style, um Einrückungen in Code-Dateien festzulegen. + + + <i>Code indentation is configured in <a href="C++">C++</a> and <a href="QtQuick">Qt Quick</a> settings.</i> + <i>Die Einrückung von Code wird in den <a href="C++">C++</a> und <a href="QtQuick">Qt Quick</a> Einstellungen konfiguriert.</i> + + + + Utils::SettingsSelector + + Add + Hinzufügen + + + Remove + Entfernen + + + Rename + Umbenennen + + + Do you really want to delete the configuration <b>%1</b>? + Möchten Sie wirklich die Konfiguration <b>%1</b> löschen? + + + New name for configuration <b>%1</b>: + Neuer Name der Konfiguration <b>%1</b>: + + + Rename... + Umbenennen... + + + + Android + + Keystore + Keystore + + + Password: + Passwort: + + + Retype password: + Passwort noch einmal eingeben: + + + Show password + Passwort anzeigen + + + Certificate + Zertifikat + + + Alias name: + Alias: + + + Keysize: + Schlüssellänge: + + + Validity (days): + Gültigkeitsdauer (Tage): + + + First and last name: + Vor- und Nachname: + + + Organizational unit (e.g. Necessitas): + Organisationseinheit (z.B. Necessitas): + + + Organization (e.g. KDE): + Organisation (z.B. KDE): + + + Two-letter country code for this unit (e.g. RO): + Länderkennung für die Einheit (2 Buchstaben, z.B. RO): + + + Create a keystore and a certificate + Keystore und Zertifikat erzeugen + + + Certificate Distinguished Names + Namen des Zertifikats + + + City or locality: + Stadt: + + + State or province: + Bundesland oder Provinz: + + + Use Keystore password + Keystore-Passwort verwenden + + + Android Configuration + Android-Konfiguration + + + Android SDK location: + Android-SDK: + + + Remove + Entfernen + + + Automatically create kits for Android tool chains + Kits für Android-Toolchains automatisch erstellen + + + JDK location: + JDK-Pfad: + + + Add... + Hinzufügen... + + + Android Settings + Android-Einstellungen + + + SDK Manager + SDK-Manager + + + Android NDK list: + Android NDK-Liste: + + + Add the selected custom NDK. The toolchains and debuggers will be created automatically. + Das gewählte benutzerdefinierte NDK hinzufügen. Die Toolchains und Debugger werden automatisch erstellt. + + + Remove the selected NDK if it has been added manually. + Das gewählte NDK entfernen, wenn Sie es selbst hinzugefügt haben. + + + Select the path of the prebuilt OpenSSL binaries. + Wählen Sie den Pfad der bereits erstellten OpenSSL-Bibliotheken. + + + Open JDK download URL in the system's browser. + URL zum Herunterladen des Open JDK im Browser des System öffnen. + + + Open Android SDK download URL in the system's browser. + URL zum Herunterladen des Android SDK im Browser des System öffnen. + + + Force a specific NDK installation to be used by all Android kits.<br/>Note that the forced NDK might not be compatible with all registered Qt versions. + + + + Open Android NDK download URL in the system's browser. + URL zum Herunterladen des Android NDK im Browser des System öffnen. + + + Set Up SDK + SDK einrichten + + + Android SDK path exists and is writable. + + + + JDK path exists and is writable. + + + + Android OpenSSL settings (Optional) + OpenSSL-Einstellungen für Android (optional) + + + OpenSSL binaries location: + Pfad zu OpenSSL-Binärdateien: + + + Download OpenSSL + OpenSSL herunterladen + + + Keystore password is too short. + Das Keystore-Passwort ist zu kurz. + + + Keystore passwords do not match. + Die Keystore-Passwörter stimmen nicht überein. + + + Certificate password is too short. + Das Passwort des Zertifikats ist zu kurz. + + + Certificate passwords do not match. + Die Passwörter des Zertifikats stimmen nicht überein. + + + Certificate alias is missing. + Der Alias des Zertifikats fehlt. + + + Invalid country code. + Ungültiger Ländercode. + + + Keystore Filename + Dateiname für Keystore + + + Keystore files (*.keystore *.jks) + Keystore-Dateien (*.keystore *.jks) + + + Error + Fehler + + + "%1" terminated. + "%1" beendet. + + + Select JDK Path + Pfad zum JDK auswählen + + + OpenSSL prebuilt libraries cloning failed. + + + + The Git tool might not be installed properly on your system. + + + + Unset Default + + + + Make Default + Als Vorgabe setzen + + + The selected path already has a valid SDK Tools package. + Der gewählte Pfad enthält bereits ein gültiges SDK-Tools-Paket. + + + Cloning OpenSSL prebuilt libraries... + Bereits erstellte OpenSSL-Bibliotheken werden geklont... + + + Select an NDK + NDK auswählen + + + Add Custom NDK + Benutzerdefiniertes NDK hinzufügen + + + The selected path has an invalid NDK. This might mean that the path contains space characters, or that it does not have a "toolchains" sub-directory, or that the NDK version could not be retrieved because of a missing "source.properties" or "RELEASE.TXT" file + Der gewählte Pfad enthält ein ungültiges NDK. Das könnte daran liegen, dass der Pfad Leerzeichen enthält, dass er kein Unterverzeichnis "toolchains" enthält oder dass die NDK-Version nicht bestimmt werden konnte, weil die Dateien "source.properties" oder "RELEASE.TXT" fehlen + + + SDK tools installed. + SDK-Tools sind installiert. + + + SDK manager runs. + + + + Platform tools installed. + Plattformwerkzeuge sind installiert. + + + All essential packages installed for all installed Qt versions. + Für alle installierten Qt-Versionen sind alle notwendigen Pakete installiert. + + + Build tools installed. + Build-Werkzeuge sind installiert. + + + Platform SDK installed. + Plattform-SDK ist installiert. + + + OpenSSL path exists. + Pfad zu OpenSSL existiert. + + + QMake include project (openssl.pri) exists. + QMake-Include-Projekt (openssl.pri) existiert. + + + CMake include project (CMakeLists.txt) exists. + CMake-Include-Projekt (CMakeLists.txt) existiert. + + + OpenSSL Settings are OK. + OpenSSL-Einstellungen sind korrekt. + + + OpenSSL settings have errors. + OpenSSL-Einstellungen sind fehlerhaft. + + + Select Android SDK Folder + Android-SDK-Verzeichnis auswählen + + + Select OpenSSL Include Project File + Include-Projektdatei für OpenSSL wählen + + + Failed to create the SDK Tools path %1. + + + + OpenSSL Cloning + OpenSSL klonen + + + OpenSSL prebuilt libraries repository is already configured. + Das Repository für bereits erstellte OpenSSL-Bibliotheken ist bereits konfiguriert. + + + The selected download path (%1) for OpenSSL already exists and the directory is not empty. Select a different path or make sure it is an empty directory. + Das gewählte Zielverzeichnis zum Herunterladen von OpenSSL (%1) ist bereits vorhanden und nicht leer. Bitte wählen Sie einen anderen Pfad oder sorgen Sie dafür, dass er leer ist. + + + Opening OpenSSL URL for manual download. + Die URL zum manuellen Herunterladen von OpenSSL wird geöffnet. + + + Open Download URL + URL zum Herunterladen öffnen + + + (SDK Version: %1, NDK Version: %2) + (SDK-Version: %1, NDK-Version: %2) + + + Download and install Android SDK Tools to %1? + Android-SDK-Tools herunterladen und nach %1 installieren? + + + Encountered SSL errors, download is aborted. + + + + The SDK Tools download URL is empty. + + + + Cancel + Abbrechen + + + Downloading SDK Tools package... + + + + Download SDK Tools + + + + Could not open %1 for writing: %2. + + + + Downloading Android SDK Tools from URL %1 has failed: %2. + + + + Download from %1 was redirected. + + + + Writing and verifying the integrity of the downloaded file has failed. + + + + Automatically download Android SDK Tools to selected location. + +If the selected path contains no valid SDK Tools, the SDK Tools package is downloaded +from %1, +and extracted to the selected path. +After the SDK Tools are properly set up, you are prompted to install any essential +packages required for Qt to build for Android. + Android-SDK-Tools automatisch an den gewählten Ort herunterladen. + +Wenn der gewählte Pfad keine gültigen SDK-Tools enthält, wird das Paket +von %1 +heruntergeladen und in den gewählten Pfad entpackt. +Nachdem die SDK-Tools vollständig eingerichtet wurden, werden Sie aufgefordert, alle +notwendigen Pakete zu installieren, die Qt benötigt, um für Android zu erstellen. + + + Automatically download OpenSSL prebuilt libraries. + +These libraries can be shipped with your application if any SSL operations +are performed. Find the checkbox under "Projects > Build > Build Steps > +Build Android APK > Additional Libraries". +If the automatic download fails, Qt Creator proposes to open the download URL +in the system's browser for manual download. + Bereits erstellte OpenSSL-Bibliotheken automatisch herunterladen. + +Diese Bibliotheken können mit Ihrer Anwendung weitergegeben werden, falls +diese SSL-Funktionen verwendet. Sie finden eine Checkbox unter "Projekte > Erstellen > +Schritte zum Erstellen > Android-APK erstellen > Zusätzliche Bibliotheken". +Falls das automatische Herunterladen scheitert, wird Qt Creator vorschlagen, die URL zum +manuellen Herunterladen im Browser des System zu öffnen. + + + Android settings are OK. + Android-Einstellungen sind korrekt. + + + Android settings have errors. + Android-Einstellungen sind fehlerhaft. + + + Android SDK installation is missing necessary packages. Do you want to install the missing packages? + Der Android-SDK-Installation fehlen notwendige Pakete. Wollen Sie die fehlenden Pakete installieren? + + + Device name: + Gerätename: + + + Device type: + Gerätetyp: + + + Unknown + Unbekannt + + + Serial number: + + + + CPU architecture: + + + + OS version: + Betriebssystemversion: + + + Yes + Ja + + + No + Nein + + + Authorized: + + + + Android target flavor: + + + + Skin type: + + + + OpenGL status: + + + + Android Device Manager + + + + Run on Android + Ausführung auf Android-Gerät + + + Refresh + Aktualisieren + + + Start AVD + + + + Erase AVD + + + + AVD Arguments + + + + Set up Wi-Fi + + + + Emulator for "%1" + + + + Physical device + + + + None + + + + Erase the Android AVD "%1"? +This cannot be undone. + + + + The device has to be connected with ADB debugging enabled to use this feature. + + + + Opening connection port %1 failed. + + + + Retrieving the device IP address failed. + + + + The retrieved IP address is invalid. + + + + Connecting to the device IP "%1" failed. + + + + An error occurred while removing the Android AVD "%1" using avdmanager tool. + + + + Emulator Command-line Startup Options + + + + Emulator command-line startup options (<a href="%1">Help Web Page</a>): + + + + Android Device + Android-Gerät + + + The device info returned from AvdDialog is invalid. + + + + NDK is not configured in Devices > Android. + In Geräte > Android ist kein NDK konfiguriert. + + + SDK is not configured in Devices > Android. + In Geräte > Android ist kein SDK konfiguriert. + + + Failed to detect the ABIs used by the Qt version. Check the settings in Devices > Android for errors. + Die von der Qt-Version verwendeten ABIs konnten nicht bestimmt werden. Bitte prüfen Sie die Einstellungen in Geräte > Android auf Fehler. + + + Android + Qt Version is meant for Android + Android + + + API + API + + + General + Allgemein + + + XML Source + XML-Quelle + + + Package + Paket + + + <p align="justify">Please choose a valid package name for your application (for example, "org.example.myapplication").</p><p align="justify">Packages are usually defined using a hierarchical naming pattern, with levels in the hierarchy separated by periods (.) (pronounced "dot").</p><p align="justify">In general, a package name begins with the top level domain name of the organization and then the organization's domain and then any subdomains listed in reverse order. The organization can then choose a specific name for their package. Package names should be all lowercase characters whenever possible.</p><p align="justify">Complete conventions for disambiguating package names and rules for naming packages when the Internet domain name cannot be directly used as a package name are described in section 7.7 of the Java Language Specification.</p> + <p align="justify">Bitte wählen Sie einen gültigen Paketnamen für Ihre Anwendung (z.B. "org.example.myapplication").</p><p align="justify">Paketnamen werden üblicherweise nach einem hierarchischen Namensschema festgelegt, bei dem die Ebenen der Hierarchie durch Punkte (.) (ausgesprochen "dot") getrennt werden.</p><p align="justify">Im Allgemeinen beginnt ein Paketname mit dem Top-Level-Domainnamen der Organisation, gefolgt von der Domain der Organisation und den Sub-Domains in umgekehrter Reihenfolge. Die Organisation kann dann einen spezifischen Namen für das Paket festlegen. Paketnamen sollten nach Möglichkeit nur aus Kleinbuchstaben bestehen.</p><p align="justify">Die vollständigen Konventionen zur Sicherstellung der Eindeutigkeit der Paketnamen und Regeln für den Fall, dass der Internet-Domain-Name nicht direkt als Paketname verwendet werden kann, sind im Abschnitt 7.7 der Java-Sprachspezifikation beschrieben.</p> + + + Package name: + Paketname: + + + The package name is not valid. + Der Paketname ist ungültig. + + + Version code: + Versionscode: + + + Version name: + Versionsname: + + + Sets the minimum required version on which this application can be run. + Legt die minimal erforderliche Version fest, auf der diese Anwendung ausgeführt werden kann. + + + Not set + Nicht festgelegt + + + Minimum required SDK: + Minimal erforderliches SDK: + + + Screen orientation: + + + + Advanced + Erweitert + + + Application icon + Symbol der Anwendung + + + Android services + Android-Dienste + + + Splash screen + Startbildschirm + + + The structure of the Android manifest file is corrupted. Expected a top level 'manifest' node. + Die Struktur der Android-Manifest-Datei ist ungültig. Es wird ein 'manifest'-Knoten in der obersten Ebene erwartet. + + + The structure of the Android manifest file is corrupted. Expected an 'application' and 'activity' sub node. + Die Struktur der Android-Manifest-Datei ist ungültig. Es wird ein 'application'- und ein 'activity'-Unterknoten erwartet. + + + Target SDK: + Ziel-SDK: + + + Sets the target SDK. Set this to the highest tested version. This disables compatibility behavior of the system for your application. + Legt das Ziel-SDK fest. Geben Sie die höchste Version an, gegen die getestet wurde. Dies schaltet das Kompatibilitätsverhalten des Systems für Ihre Anwendung ab. + + + Application + Anwendung + + + Application name: + Name der Anwendung: + + + Activity name: + Name der Aktivität: + + + Permissions + Berechtigungen + + + Include default permissions for Qt modules. + Standard-Berechtigungen für Qt-Module einschließen. + + + Include default features for Qt modules. + Standard-Features für Qt-Module einschließen. + + + Add + Hinzufügen + + + Style extraction: + Stil-Extraktion: + + + Service Definition Invalid + Dienstdefinition ungültig + + + Cannot switch to source when there are invalid services. + Es kann nicht zum Quelltext umgeschaltet werden, wenn ungültige Dienste vorhanden sind. + + + Cannot save when there are invalid services. + Es kann nicht gespeichert werden, wenn ungültige Dienste vorhanden sind. + + + API %1: %2 + API %1: %2 + + + Could not parse file: "%1". + Die Datei konnte nicht ausgewertet werden: "%1". + + + %2: Could not parse file: "%1". + %2: Die Datei konnte nicht ausgewertet werden: "%1". + + + Goto error + Zu Fehler gehen + + + Services invalid. Manifest cannot be saved. Correct the service definitions before saving. + Dienste ungültig. Manifest kann nicht gespeichert werden. Bitte korrigieren Sie die Dienstdefinitionen bevor Sie speichern. + + + Android Manifest editor + Android Manifest-Editor + + + Android: SDK installation error 0x%1 + Android: Bei der SDK-Installation trat Fehler 0x%1 auf + + + Android: NDK installation error 0x%1 + Android: Bei der NDK-Installation trat Fehler 0x%1 auf + + + Android: Java installation error 0x%1 + Android: Bei der Installation von Java trat Fehler 0x%1 auf + + + Android: ant installation error 0x%1 + Android: Bei der Installation von ant trat Fehler 0x%1 auf + + + Android: adb installation error 0x%1 + Android: Bei der Installation von adb trat Fehler 0x%1 auf + + + Android: Device connection error 0x%1 + Android: Bei der Verbindung zum Gerät trat Fehler 0x%1 auf + + + Android: Device permission error 0x%1 + Android: Fehler 0x%1 bei Zugriff auf das Gerät + + + Android: Device authorization error 0x%1 + Android: Fehler 0x%1 bei Autorisierung des Geräts + + + Android: Device API level not supported: error 0x%1 + Android: Der API-Level des Geräts wird nicht unterstützt: Fehler 0x%1 + + + Android: Unknown error 0x%1 + Android: Unbekannter Fehler 0x%1 + + + Create new AVD + Android Virtual Device + Neues AVD erzeugen + + + Target API: + Ziel-API: + + + Cannot create a new AVD. No suitable Android system image is installed.<br/>Install a system image for the intended Android version from the SDK Manager. + + + + Cannot create an AVD for ABI %1.<br/>Install a system image for it from the SDK Manager tab first. + + + + Name: + Name: + + + SD card size: + Größe der SD-Karte: + + + MiB + MiB + + + Architecture (ABI): + Architektur (ABI): + + + Device definition: + Gerätedefinition: + + + Overwrite existing AVD name + Bestehenden AVD-Namen überschreiben + + + Deploying to %1 + Deployment auf %1 + + + Cannot find the androiddeployqt tool. + Kann das androiddeployqt-Werkzeug nicht finden. + + + Install an APK File + Eine APK-Datei installieren + + + Qt Android Installer + Qt Android Installer + + + Deploy to Android Device + Deployment auf Android-Gerät + + + Java Language Server + + + + Would you like to configure Android options? This will ensure Android kits can be usable and all essential packages are installed. To do it later, select Edit > Preferences > Devices > Android. + + + + Configure Android + + + + The process "%1" exited normally. + Der Prozess "%1" wurde normal beendet. + + + The process "%1" exited with code %2. + Der Prozess "%1" wurde mit dem Rückgabewert %2 beendet. + + + The process "%1" crashed. + Der Prozess "%1" ist abgestürzt. + + + Package deploy: Failed to pull "%1" to "%2". + Paket-Deployment: "pull" von "%1" nach "%2" scheiterte. + + + Install failed + Installation gescheitert + + + Android package (*.apk) + Android-Paket (*.apk) + + + Initializing deployment to Android device/simulator + Initialisiere Deployment zu Android-Gerät oder -Simulator + + + Uninstall the existing app before deployment + + + + No Android architecture (ABI) is set by the project. + + + + The kit's run configuration is invalid. + + + + The kit's build configuration is invalid. + + + + The kit's build steps list is invalid. + + + + The kit's deploy configuration is invalid. + + + + No valid deployment device is set. + + + + The deployment device "%1" is invalid. + + + + The deployment device "%1" does not support the architectures used by the kit. +The kit supports "%2", but the device uses "%3". + + + + The deployment device "%1" is disconnected. + + + + Android: The main ABI of the deployment device (%1) is not selected. The app execution or debugging might not work properly. Add it from Projects > Build > Build Steps > qmake > ABIs. + + + + The deployment step's project node is invalid. + + + + Cannot find the androiddeployqt input JSON file. + + + + Cannot find the package name from the Android Manifest file "%1". + + + + Uninstalling the previous package "%1". + + + + Starting: "%1" + Starte: "%1" + + + Installing the app failed even after uninstalling the previous one. + + + + Installing the app failed with an unknown error. + + + + Deployment failed with the following errors: + + + Das Deployment ist mit den folgenden Fehlern gescheitert: + + + + + +Uninstalling the installed package may solve the issue. +Do you want to uninstall the existing package? + +Das installierte Paket zu deinstallieren könnte das Problem lösen. +Möchten Sie das vorhandene Paket deinstallieren? + + + The deployment AVD "%1" cannot be started. + + + + Pulling files necessary for debugging. + Die für das Debuggen erforderlichen Dateien werden installiert. + + + Package deploy: Running command "%1". + Paket-Deployment: Führe Kommando "%1" aus. + + + Deploy to Android device + + + + %1 needs additional settings to enable Android support. You can configure those settings in the Options dialog. + %1 benötigt zusätzliche Einstellungen, um die Android-Unterstützung zu aktivieren. Sie können diese im Einstellungsdialog konfigurieren. + + + Could not run: %1 + Keine Ausführung möglich: %1 + + + No devices found in output of: %1 + In der Ausgabe von %1 konnten keine Geräte festgestellt werden + + + Configure Android... + Android konfigurieren... + + + Allowed characters are: a-z A-Z 0-9 and . _ - + Erlaubte Zeichen sind: a-z A-Z 0-9 und . _ - + + + Build Android APK + Android-APK erstellen + + + "%1" step failed initialization. + + + + Keystore/Certificate password verification failed. + + + + Warning: Signing a debug or profile package. + Warnung: Es wird ein Debug- oder Profile-Paket signiert. + + + The Qt version for kit %1 is invalid. + + + + The installed SDK tools version (%1) does not include Gradle scripts. The minimum Qt version required for Gradle build to work is %2 + Die installierte SDK-Tools-Version (%1) enthält keine Gradle-Skripte. Die Mindestversion von Qt für Gradle-Builds ist %2 + + + The minimum Qt version required for Gradle build to work is %1. It is recommended to install the latest Qt version. + Die älteste Qt-Version, die Gradle-Builds unterstützt, ist %1. Es ist ratsam, die neueste Qt-Version zu verwenden. + + + The API level set for the APK is less than the minimum required by the kit. +The minimum API level required by the kit is %1. + Der für das APK gewählte APK-Level ist nieriger als das vom Kit benötigte Minimum. +Der vom Kit mindestens benötigte API-Level ist %1. + + + Cannot sign the package. Invalid keystore path (%1). + Das Paket kann nicht signiert werden. Der Keystore-Pfad ist ungültig (%1). + + + Cannot sign the package. Certificate alias %1 does not exist. + Das Paket kann nicht signiert werden. Der Zertifikatsalias %1 existiert nicht. + + + Android deploy settings file not found, not building an APK. + Keine Einstellungsdatei für Android-Deployment gefunden, APK wird nicht erstellt. + + + Starting: "%1" %2 + Starte: "%1" %2 + + + Failed to run keytool. + keytool konnte nicht ausgeführt werden. + + + Android Debugger (%1, NDK %2) + Android-Debugger (%1, NDK %2) + + + Android %1 Clang %2 + Android %1 Clang %2 + + + Unknown Android version. API Level: %1 + Unbekannte Android-Version. API-Level: %1 + + + Error creating Android templates. + Fehler beim Erstellen der Android-Vorlagendateien. + + + Cannot parse "%1". + "%1" kann nicht ausgewertet werden. + + + Starting Android virtual device failed. + Das Starten des virtuellen Android-Geräts schlug fehl. + + + Android package installation failed. +%1 + Android-Paketinstallation gescheitert. +%1 + + + Cannot create AVD. Invalid input. + AVD kann nicht erstellt werden. Ungültige Eingabe. + + + Could not start process "%1 %2" + Der Prozess "%1 %2" konnte nicht gestartet werden + + + Cannot create AVD. Command timed out. + AVD kann nicht erstellt werden. Zeitüberschreitung des Kommandos. + + + Incorrect password. + Ungültiges Passwort. + + + This is useful for apps that use SSL operations. The path can be defined in Edit > Preferences > Devices > Android. + + + + No valid input file for "%1". + + + + Android build SDK version is not defined. Check Android settings. + + + + The Android build folder %1 was not found and could not be created. + + + + Cannot copy the target's lib file %1 to the Android build folder %2. + + + + Cannot copy file "%1" to Android build libs folder "%2". + + + + Cannot open androiddeployqt input file "%1" for writing. + + + + Cannot set up "%1", not building an APK. + + + + Enter keystore password + Geben Sie das Keystore-Passwort ein + + + Enter certificate password + Geben Sie das Zertifikatspasswort ein + + + No free ports available on host for QML debugging. + Auf dem Host sind nicht genügend freie Ports für das QML-Debuggen vorhanden. + + + Failed to find application directory. + Anwendungsverzeichnis wurde nicht gefunden. + + + Cannot find C++ debug server in NDK installation. + + + + The lldb-server binary has not been found. + + + + Failed to forward QML debugging ports. + Die Ports des QML-Debuggers konnten nicht übermittelt werden. + + + Failed to start the activity. + Die Aktivität konnte nicht gestartet werden. + + + Activity Manager threw the error: %1 + + + + Failed to forward JDB debugging ports. + JDB-Debugging-Ports konnten nicht weitergeleitet werden. + + + Failed to start JDB. + JDB konnte nicht gestartet werden. + + + Cannot attach JDB to the running application. + JDB konnte sich nicht mit der laufenden Anwendung verbinden. + + + Failed to start debugger server. + Der Debug-Server konnte nicht gestartet werden. + + + Cannot copy C++ debug server. + C++-Debug-Server kann nicht kopiert werden. + + + Failed to forward C++ debugging ports. + Die Ports des C++-Debuggers konnten nicht übermittelt werden. + + + "%1" died. + "%1" beendet. + + + Android SDK Manager + Android SDK-Manager + + + Expand All + Alle aufklappen + + + Update Installed + Aktualisierung installiert + + + Apply + Anwenden + + + Show Packages + Pakete anzeigen + + + Available + Verfügbar + + + Default + Vorgabe + + + Stable + + + + Beta + + + + Dev + + + + Canary + + + + Include obsolete + + + + Installed + Installiert + + + All + Alle + + + Advanced Options... + Erweiterte Optionen... + + + Do you want to accept the Android SDK license? + Wollen Sie die Android SDK-Lizenz akzeptieren? + + + Channel: + + + + %1 cannot find the following essential packages: "%2". +Install them manually after the current operation is done. + + + + + Checking pending licenses... + + Prüfe auf ausstehende Lizenzen... + + + + The installation of Android SDK packages may fail if the respective licenses are not accepted. + + + + + +SDK Manager is busy. + +SDK-Manager arbeitet. + + + Android SDK Changes + Android SDK-Änderungen + + + %n Android SDK packages shall be updated. + + Ein Android SDK-Paket soll aktualisiert werden. + %n Android SDK-Pakete sollen aktualisiert werden. + + + + [Packages to be uninstalled:] + + [Pakete, die deinstalliert werden sollen:] + + + + SDK Manager is busy. Operation cancelled. + SDK-Manager arbeitet. Die Operation wurde abgebrochen. + + + Installing/Uninstalling selected packages... + + Installiere/Deinstalliere ausgewählte Pakete... + + + + Closing the %1 dialog will cancel the running and scheduled SDK operations. + + Wenn Sie den %1-Dialog schließen, werden die laufenden und geplanten SDK-Operationen abgebrochen. + + + + preferences + Einstellungen + + + options + Einstellungen + + + Updating installed packages... + + Aktualisiere installierte Pakete... + + + + Android SDK operations finished. + Android SDK-Operationen beendet. + + + Operation cancelled. + + Operation abgebrochen. + + + + +No pending operations to cancel... + + +Keine ausstehenden Operationen sind abzubrechen... + + + + +Cancelling pending operations... + + +Breche ausstehende Operationen ab... + + + + The operation requires user interaction. Use the "sdkmanager" command-line tool. + Die Operation benötigt Benutzereingaben. Benutzen Sie das Kommandozeilenwerkzeug "sdkmanager". + + + AndroidSdkManager + Failed + + + + AndroidSdkManager + Done + + + + + + License command failed. + + + Lizenzkommando fehlgeschlagen. + + + + + Updating installed packages. + Aktualisiere installierte Pakete. + + + Failed. + Fehlgeschlagen. + + + Done + + + Fertig + + + + + Installing + Installiere + + + Uninstalling + Deinstalliere + + + SDK Manager Arguments + SDK-Manager-Argumente + + + Cannot load available arguments for "sdkmanager" command. + Die verfügbaren Argumente für "sdkmanager" können nicht geladen werden. + + + SDK manager arguments: + SDK-Manager-Argumente: + + + Available arguments: + Verfügbare Argumente: + + + Revision + Revision + + + Tools + Werkzeuge + + + SDK Platform + SDK Plattform + + + Copy application data + Anwendungsdaten kopieren + + + <b>Make install:</b> Copy App Files to %1 + + + + "%1" step has an invalid C++ toolchain. + + + + Removing directory %1 + Lösche Verzeichnis %1 + + + Failed to clean "%1" from the previous build, with error: +%2 + + + + Deploy to device + Deployment auf Gerät + + + AVD Start Error + Fehler beim Start von AVD + + + Emulator Tool Is Missing + Fehlender Emulator + + + Install the missing emulator tool (%1) to the installed Android SDK. + Installieren Sie den fehlenden Emulator (%1) im installierten Android-SDK. + + + Clean Environment + Saubere Umgebung + + + Activity manager start arguments: + + + + Pre-launch on-device shell commands: + + + + Post-quit on-device shell commands: + + + + Create Templates + Vorlagen erstellen + + + Build Android App Bundle (*.aab) + + + + Additional Libraries + Zusätzliche Bibliotheken + + + List of extra libraries to include in Android package and load on startup. + Liste aller zusätzlichen Bibliotheken, die in das Paket aufgenommen und beim Start geladen werden. + + + Select library to include in package. + Wählen Sie eine Bibliothek zur Aufnahme in das Paket aus. + + + Remove currently selected library from list. + Ausgewählte Bibliothek aus Liste entfernen. + + + Select additional libraries + Zusätzliche Bibliotheken auswählen + + + Sign package + Paket signieren + + + Keystore: + Keystore: + + + Android build platform SDK: + + + + Create an Android package for Custom Java code, assets, and Gradle configurations. + + + + Android customization: + + + + Application Signature + + + + Select Keystore File + Keystore-Datei auswählen + + + Create... + Erstellen... + + + Signing a debug package + Signiere Debug-Paket + + + Certificate alias: + Alias des Zertifikats: + + + Advanced Actions + Erweiterte Aktionen + + + Open package location after build + Paketverzeichnis nach dem Erstellen öffnen + + + Add debug server + Debug-Server hinzufügen + + + Packages debug server with the APK to enable debugging. For the signed APK this option is unchecked by default. + Packt einen Debug-Server im APK-Paket ein um Debugging zu ermöglichen. Für ein signiertes APK ist diese Option standardmäßig abgewählt. + + + Verbose output + Ausführliche Ausgabe + + + Libraries (*.so) + Bibliotheken (*.so) + + + Include prebuilt OpenSSL libraries + Bereits erstellte OpenSSL-Bibliotheken einbinden + + + No application .pro file found in this project. + Die .pro-Datei der Anwendung konnte in diesem Projekt nicht gefunden werden. + + + No Application .pro File + Keine .pro-Datei der Anwendung + + + Android package source directory: + Quellverzeichnis des Android-Pakets: + + + The Android package source directory cannot be the same as the project directory. + Das Android-Paket-Quellverzeichnis muss sich vom Projektverzeichnis unterscheiden. + + + Copy the Gradle files to Android directory + Gradle-Dateien ins Android-Verzeichnis kopieren + + + It is highly recommended if you are planning to extend the Java part of your Qt application. + Dies ist sehr zu empfehlen, wenn sie den Java-Teil Ihrer Qt-Anwendung erweitern wollen. + + + Select the Android package source directory. + +The files in the Android package source directory are copied to the build directory's Android directory and the default files are overwritten. + Wählen Sie das Quellverzeichnis des Android-Pakets aus. + +Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichnis "Android" im Build-Verzeichnis kopiert und die Vorgabedateien überschrieben. + + + The Android template files will be created in the %1 set in the .pro file. + + + + Create Android Template Files Wizard + Assistent zum Erzeugen von Android-Vorlagendateien + + + Project File not Updated + Projekt-Datei nicht aktualisiert + + + Could not update the project file %1. + Die Projekt-Datei %1 konnte nicht aktualisiert werden. + + + Select the .pro file for which you want to create the Android template files. + Wählen Sie die .pro-Datei, für die Sie die Android-Vorlagendateien erstellen wollen. + + + .pro file: + .pro-Datei: + + + Select a .pro File + .pro-Datei wählen + + + Android Clang + Android Clang + + + Master icon + + + + Select master icon. + + + + LDPI icon + + + + Select an icon suitable for low-density (ldpi) screens (~120dpi). + + + + MDPI icon + + + + Select an icon for medium-density (mdpi) screens (~160dpi). + + + + HDPI icon + + + + Select an icon for high-density (hdpi) screens (~240dpi). + + + + XHDPI icon + + + + Select an icon for extra-high-density (xhdpi) screens (~320dpi). + + + + XXHDPI icon + + + + Select an icon for extra-extra-high-density (xxhdpi) screens (~480dpi). + + + + XXXHDPI icon + + + + Select an icon for extra-extra-extra-high-density (xxxhdpi) screens (~640dpi). + + + + Icon scaled up. + + + + Click to select... + + + + Images (*.png *.jpg *.jpeg *.webp *.svg) + + + + %1 has been stopped. + + + + Selected device is invalid. + + + + Selected device is disconnected. + + + + Launching AVD. + + + + Could not start AVD. + + + + No valid AVD has been selected. + + + + Checking if %1 app is installed. + + + + ABI of the selected device is unknown. Cannot install APK. + + + + Cannot install %1 app for %2 architecture. The appropriate APK was not found in resources folders. + + + + Installing %1 APK. + + + + Too many .qmlproject files in your project. Open directly the .qmlproject file you want to work with and then run the preview. + + + + No .qmlproject file found among project files. + + + + Could not gather information on project files. + + + + Could not create file for %1 "%2" + + + + A timeout occurred running "%1" + Zeitüberschreitung bei Ausführung von "%1" + + + Crash while creating file for %1 "%2" + + + + Creating file for %1 failed. "%2" (exit code %3). + + + + Uploading files. + + + + Starting %1. + Starte %1. + + + %1 is running. + + + + The name of the class implementing the service. + + + + Checked if the service is run in an external process. + + + + The name of the external process. +Prefix with : if the process is private, use a lowercase name if the process is global. + + + + Checked if the service is in a separate dynamic library. + + + + The name of the separate dynamic library. + + + + The arguments for telling the app to run the service instead of the main activity. + + + + Service class name. + + + + Run in external process. + + + + Process name. + + + + Run in external library. + + + + Library name. + + + + Service arguments. + + + + The class name must be set. + + + + The process name must be set for a service run in an external process. + + + + The library name must be set for a service run in an external library. + + + + Java: + + + + Java Language Server: + + + + Path to equinox launcher jar + + + + Select splash screen image + + + + Portrait splash screen + + + + Select portrait splash screen image + + + + Landscape splash screen + + + + Select landscape splash screen image + + + + Clear All + + + + A non-sticky splash screen is hidden automatically when an activity is drawn. +To hide a sticky splash screen, invoke QtAndroid::hideSplashScreen(). + + + + Sticky splash screen: + + + + Image show mode: + + + + Background color of the splash screen. + + + + Background color: + + + + Select master image to use. + + + + Master image: + + + + Select portrait master image to use. + + + + Portrait master image: + + + + Select landscape master image to use. + + + + Landscape master image: + + + + LDPI + + + + MDPI + + + + HDPI + + + + XHDPI + + + + XXHDPI + + + + XXXHDPI + + + + An image is used for the splashscreen. Qt Creator manages +splashscreen by using a different method which requires changing +the manifest file by overriding your settings. Allow override? + + + + Convert + + + + Select background color + + + + Select master image + + + + Select portrait master image + + + + Select landscape master image + + + + Images + + + + + QuickFix::ExtractFunction + + Extract Function + Funktion herausziehen + + + Extract Function Refactoring + Funktion herausziehen + + + Function name + Funktionsname + + + Access + Zugriff + + + + TextEditor::Internal::FindInOpenFiles + + Open Documents + Offene Dokumente + + + Open documents: + Offene Dokumente: + + + Open Documents +%1 + Offene Dokumente +%1 + + + + VcsBase::Internal::UrlTextCursorHandler + + Open URL in Browser... + URL in Browser öffnen... + + + Copy URL Location + URL kopieren + + + + VcsBase::Internal::EmailTextCursorHandler + + Send Email To... + Sende E-Mail an... + + + Copy Email Address + E-Mail Adresse kopieren + + + + Todo + + Keywords + Schlüsselworte + + + Edit + Bearbeiten + + + Reset + Zurücksetzen + + + Scanning scope + Suchbereich + + + Scan the whole active project + Im gesamten aktiven Projekt suchen + + + Scan only the currently edited document + Nur im gegenwärtig bearbeiteten Dokument suchen + + + Scan the current subproject + Im aktuellen Teilprojekt suchen + + + Description + Beschreibung + + + File + Datei + + + Line + Zeile + + + To-Do Entries + To-do-Einträge + + + Current Document + Aktuelles Dokument + + + Scan only the currently edited document. + Nur im gegenwärtig bearbeiteten Dokument suchen. + + + Active Project + Aktives Projekt + + + Scan the whole active project. + Im gesamten aktiven Projekt suchen. + + + Subproject + Teilprojekt + + + Scan the current subproject. + Im aktuellen Teilprojekt suchen. + + + Show "%1" entries + "%1"-Einträge anzeigen + + + Keyword + Schlüsselwort + + + Icon + Symbol + + + Color + Farbe + + + errorLabel + errorLabel + + + Keyword cannot be empty, contain spaces, colons, slashes or asterisks. + Das Schlüsselwort darf weder leer sein, noch Leerzeichen, Doppelpunkte, Schrägstriche oder Sternchen enthalten. + + + There is already a keyword with this name. + Ein Schlüsselwort dieses Namens existiert bereits. + + + Excluded Files + ausgenommene Dateien + + + Regular expressions for file paths to be excluded from scanning. + Reguläre Ausdrücke für vom Prüfen ausgenommene Dateipfade. + + + Add + Hinzufügen + + + Remove + Entfernen + + + <Enter regular expression to exclude> + <Regulären Ausdruck zum Ausschließen eingeben> + + + To-Do + To-do + + + + Core::DocumentManager + + Could not save the files. + error message + Die Dateien konnten nicht gespeichert werden. + + + File Error + Dateifehler + + + Error while saving file: %1 + Fehler beim Speichern der Datei: %1 + + + Overwrite? + Überschreiben? + + + An item named "%1" already exists at this location. Do you want to overwrite it? + Es existiert bereits eine Datei des Namens "%1" an dieser Stelle. Wollen Sie sie überschreiben? + + + Save File As + Datei speichern + + + Open File + Datei öffnen + + + Cannot reload %1 + %1 konnte nicht neu geladen werden + + + + Core::IDocument + + File was restored from auto-saved copy. Select Save to confirm or Revert to Saved to discard changes. + Die Datei wurde von einer Sicherheitskopie wiederhergestellt. Wählen Sie Speichern zur Bestätigung oder Wiederherstellen um die Änderungen zu verwerfen. + + + + ProjectExplorer::Internal::SessionModel + + Session + Sitzung + + + Last Modified + Zuletzt geändert + + + New Session Name + Name der neuen Sitzung + + + &Create + &Erstellen + + + Create and &Open + Erstellen und ö&ffnen + + + &Clone + &Klonen + + + Clone and &Open + Klonen und ö&ffnen + + + Rename Session + Sitzung umbenennen + + + &Rename + &Umbenennen + + + Rename and &Open + Umbenennen und ö&ffnen + + + + ProjectExplorer::Internal::DeviceFactorySelectionDialog + + Available device types: + Verfügbare Gerätetypen: + + + Start Wizard + Assistent starten + + + + ProjectExplorer::Internal::DeviceSettingsWidget + + &Device: + &Gerät: + + + General + Allgemein + + + &Name: + &Name: + + + Type: + Typ: + + + Auto-detected: + Automatisch bestimmt: + + + Current state: + Status: + + + Type Specific + typspezifisch + + + &Add... + &Hinzufügen... + + + &Remove + &Entfernen + + + Set As Default + Als Vorgabe setzen + + + Yes (id is "%1") + Ja (id ist "%1") + + + No + Nein + + + Test + Test + + + Show Running Processes... + Laufende Prozesse anzeigen... + + + Devices + Geräte + + + + QmlDebug::QmlOutputParser + + The port seems to be in use. + Error message shown after 'Could not connect ... debugger:" + Der Port wird bereits verwendet. + + + The application is not set up for QML/JS debugging. + Error message shown after 'Could not connect ... debugger:" + Diese Anwendung ist nicht für QML/JS-Debuggen eingerichtet. + + + + ProjectExplorer::DesktopDevice + + Local PC + Lokaler PC + + + Desktop + Desktop + + + + ProjectExplorer::DeviceManagerModel + + %1 (default for %2) + %1 (Vorgabe für %2) + + + + ProjectExplorer::IDevice + + Device + Gerät + + + + Qnx + + Preparing remote side... + Bereite Gegenseite vor... + + + Project source directory: + Quellverzeichnis des Projekts: + + + Local executable: + Lokale ausführbare Datei: + + + Executable on device: + Ausführbare Datei auf Mobilgerät: + + + Remote path not set + Der entfernte Pfad ist nicht eingestellt + + + Executable on host: + Ausführbare Datei auf Hostrechner: + + + Path to Qt libraries on device + Pfad zu den Qt-Bibliotheken auf dem Gerät + + + QNX %1 + Qt Version is meant for QNX + QNX %1 + + + No SDP path was set up. + Es ist kein SDP-Pfad eingestellt. + + + Checking that files can be created in /var/run... + Prüfe, ob Dateien in /var/run angelegt werden können... + + + Files can be created in /var/run. + Dateien können in /var/run angelegt werden. + + + Files cannot be created in /var/run. + Dateien können nicht in /var/run angelegt werden. + + + An error occurred while checking that files can be created in /var/run. + Beim Prüfen, ob Dateien in /var/run angelegt werden können, ist ein Fehler aufgetreten. + + + An error occurred while checking for %1. + Bei der Prüfung von %1 trat ein Fehler auf. + + + %1 found. + %1 gefunden. + + + %1 not found. + %1 nicht gefunden. + + + Checking for %1... + Prüfe %1... + + + Warning: "slog2info" is not found on the device, debug output not available. + Warnung: "slog2info" konnte nicht auf dem Gerät gefunden werden, es ist daher keine Debugausgabe verfügbar. + + + Cannot show slog2info output. Error: %1 + Die Ausgabe des Kommandos slog2info kann nicht angezeigt werden. Fehler: %1 + + + &Compiler path: + &Compiler-Pfad: + + + SDP path: + SDP refers to 'Software Development Platform'. + SDP-Pfad: + + + &ABI: + &ABI: + + + Remote QNX process %1 + Entfernter QNX-Prozess %1 + + + Attach to remote QNX application... + An entfernte QNX-Anwendung anhängen... + + + Qt library to deploy: + Zum Deployment vorgesehene Qt-Bibliothek: + + + Deploy + Deployment + + + Remote directory: + Entferntes Verzeichnis: + + + Close + Schließen + + + Closing the dialog will stop the deployment. Are you sure you want to do this? + Das Schließen des Dialogs bricht das Deployment ab. Sind Sie sicher? + + + Please input a remote directory to deploy to. + Bitte geben Sie ein entferntes Verzeichnis für das Deployment an. + + + The remote directory "%1" already exists. +Deploying to that directory will remove any files already present. + +Are you sure you want to continue? + + + + Connection failed: %1 + Fehler beim Herstellen der Verbindung: %1 + + + Checking existence of "%1" + Prüfe Vorhandensein von "%1" + + + Removing "%1" + Lösche "%1" + + + Deploy Qt to QNX Device + Qt-Deployment auf QNX-Gerät + + + Generate kits + Kits erzeugen + + + Configuration Information: + Konfigurationsinformationen: + + + Name: + Name: + + + Version: + Version: + + + Host: + Host: + + + Target: + Ziel: + + + Remove + Entfernen + + + Select QNX Environment File + QNX Umgebungsdatei auswählen + + + Warning + Warnung + + + Configuration already exists or is invalid. + Die Konfiguration existiert bereits oder ist ungültig. + + + Remove QNX Configuration + Entferne QNX Konfiguration + + + Are you sure you want to remove: + %1? + Möchten Sie + %1 +wirklich löschen? + + + QNX + QNX + + + Add... + Hinzufügen... + + + The following errors occurred while activating the QNX configuration: + Die folgenden Fehler traten beim Aktivieren der QNX-Konfiguration auf: + + + Cannot Set Up QNX Configuration + QNX-Konfiguration kann nicht eingerichtet werden + + + Debugger for %1 (%2) + Debugger für %1 (%2) + + + QCC for %1 (%2) + QCC für %1 (%2) + + + Kit for %1 (%2) + Kit für %1 (%2) + + + - No targets found. + - Keine Ziele gefunden. + + + - No GCC compiler found. + - Kein GCC-Compiler gefunden. + + + QNX Device + QNX-Gerät + + + Deploy Qt libraries... + Deployment der Qt-Bibliotheken... + + + New QNX Device Configuration Setup + Neue QNX-Geräte-Konfiguration + + + Deploy to QNX Device + Deployment auf QNX-Gerät + + + QCC + QCC + + + + CppEditor::Internal::FunctionDeclDefLink + + Target file was changed, could not apply changes + Die Änderungen konnten nicht vorgenommen werden, da die Zieldatei geändert wurde + + + Apply changes to definition + Änderungen der Definition anwenden + + + Apply changes to declaration + Änderungen der Deklaration anwenden + + + Apply Function Signature Changes + Änderungen der Funktionssignatur anwenden + + + + ProjectExplorer::DeviceProcessesDialog + + Filter + Filter + + + &Update List + Liste &aktualisieren + + + &Kill Process + Prozess b&eenden + + + Kit: + Kit: + + + &Filter: + &Filter: + + + List of Processes + Liste der Prozesse + + + &Attach to Process + &An Prozess anhängen + + + + ProjectExplorer::DeviceProcessList + + Command Line + Kommandozeile + + + Process ID + Prozess-ID + + + Fetching process list. This might take a while. + + + + + Utils::ElfReader + + "%1" is an invalid ELF object (%2) + "%1" ist keine gültige ELF-Objektdatei (%2) + + + "%1" is not an ELF object (file too small) + "%1" ist keine ELF-Objektdatei (Datei zu klein) + + + "%1" is not an ELF object + "%1" ist keine ELF-Objektdatei + + + odd cpu architecture + Unbekannte CPU-Architektur + + + odd endianness + Unbekannte Endianness + + + unexpected e_shsize + unerwartete e_shsize + + + unexpected e_shentsize + unerwartete e_shentsize + + + announced %n sections, each %1 bytes, exceed file size + + Es wurde eine Sektion der Größe %1 bytes angekündigt, was die Dateigröße überschreiten würde + Es wurden %n Sektionen der Größe %1 bytes angekündigt, was die Dateigröße überschreiten würde + + + + string table seems to be at 0x%1 + Die Zeichenkettentabelle ist offenbar bei 0x%1 + + + section name %1 of %2 behind end of file + Der Sektionsname %1 von %2 ist hinter dem Dateiende + + + + ProjectExplorer::DeviceUsedPortsGatherer + + Connection error: %1 + Verbindungsfehler: %1 + + + Remote process crashed: %1 + Der entfernte Prozess ist abgestürzt: %1 + + + Remote process failed; exit code was %1. + Der entfernte Prozess schlug fehl, Rückgabewert %1. + + + Remote error output was: %1 + Fehlerausgabe: %1 + + + + ClearCase + + Check Out + Check Out + + + &Reserved + &Reserviert + + + &Unreserved if already reserved + &Nicht reserviert, falls bereits reserviert + + + &Preserve file modification time + Änderungsdatum von D&ateien beibehalten + + + Use &Hijacked file + Datei &hijacked verwenden + + + &Checkout comment: + &Checkout-Kommentar: + + + Configuration + Konfiguration + + + &Command: + &Kommando: + + + Diff + Diff + + + &External + &Extern + + + Arg&uments: + Arg&umente: + + + Miscellaneous + Sonstige Einstellungen + + + &History count: + Beschränkung der &History: + + + &Timeout: + &Zeitlimit: + + + s + s + + + &Automatically check out files on edit + Bearbeitete Dateien &automatisch auschecken + + + Aut&o assign activity names + Aktivitäten aut&omatisch Namen zuweisen + + + &Prompt on check-in + &Abgabe bestätigen + + + Di&sable indexer + Indexer ab&schalten + + + &Index only VOBs: + Nur VOBs &indizieren: + + + Check this if you have a trigger that renames the activity automatically. You will not be prompted for activity name. + Aktivieren Sie diese Einstellung, wenn Sie einen Trigger verwenden, der die Aktivität automatisch umbenennt. Sie werden nicht nach dem Namen der Aktivität gefragt. + + + VOBs list, separated by comma. Indexer will only traverse the specified VOBs. If left blank, all active VOBs will be indexed. + VOB-Liste, durch Kommata getrennt. Der Indexer wird nur die hier angegebenen VOBs abarbeiten. Wenn das Feld leer ist, werden alle aktiven VOBs indiziert. + + + &Graphical (single file only) + &Grafisch (nur eine Datei) + + + Check out or check in files with no comment (-nc/omment). + Dateien ohne Kommentar aus- oder einchecken (-nc/omment). + + + Do &not prompt for comment during checkout or check-in + Beim Check-in oder Check-out &nicht nach Kommentaren fragen + + + Dialog + Dialog + + + &Save copy of the file with a '.keep' extension + &Kopie der Datei mit dem Suffix '.keep' erstellen + + + The file was changed. + Die Datei wurde geändert. + + + Confirm Version to Check Out + Bestätigung der Check-Out-Version + + + Version after &update + Version nach &Aktualisierung + + + Created by: + Erstellt von: + + + Created on: + Erstellt am: + + + Multiple versions of "%1" can be checked out. Select the version to check out: + Mehrere Versionen von "%1", kommen für einen Checkout in Frage. Bitte wählen Sie eine Version für den Checkout: + + + &Loaded version + Ge&ladene Version + + + Note: You will not be able to check in this file without merging the changes (not supported by the plugin) + Hinweis: Diese Datei kann nicht ohne Mergen der Änderungen eingecheckt werden (durch das Plugin nicht unterstützt) + + + Select &activity: + Aktivität &auswählen: + + + Add + Hinzufügen + + + Keep item activity + Aktivität des Elements beibehalten + + + ClearCase Check In + ClearCase Einchecken + + + Chec&k in even if identical to previous version + Einchec&ken auch wenn zur Vorgängerversion identisch + + + &Check In + &Einchecken + + + In order to use External diff, "diff" command needs to be accessible. + Zur Verwendung von externen Diffs muss ein "diff"-Kommando verfügbar sein. + + + DiffUtils is available for free download at http://gnuwin32.sourceforge.net/packages/diffutils.htm. Extract it to a directory in your PATH. + DiffUtils sind kostenlos erhältlich unter http://gnuwin32.sourceforge.net/packages/diffutils.htm . Bitte entpacken Sie sie in ein im Suchpfad befindliches Verzeichnis. + + + ClearCase + ClearCase + + + Annotate version "%1" + Annotation für Version "%1" + + + Editing Derived Object: %1 + Bearbeite abgeleitetes Objekt: %1 + + + Triggers a ClearCase version control operation. + + + + C&learCase + C&learCase + + + Check Out... + Auschecken... + + + Check &Out "%1"... + "%1" &auschecken... + + + Meta+L,Meta+O + Meta+L,Meta+O + + + Alt+L,Alt+O + Alt+L,Alt+O + + + Check &In... + &Einchecken... + + + Check &In "%1"... + "%1" &einchecken... + + + Meta+L,Meta+I + Meta+L,Meta+I + + + Alt+L,Alt+I + Alt+L,Alt+I + + + Undo Check Out + Auschecken rückgängig machen + + + &Undo Check Out "%1" + A&uschecken von "%1" rückgängig machen + + + Meta+L,Meta+U + Meta+L,Meta+U + + + Alt+L,Alt+U + Alt+L,Alt+U + + + Undo Hijack + Hijack rückgängig machen + + + Undo Hi&jack "%1" + Hi&jack von "%1" rückgängig machen + + + Meta+L,Meta+R + Meta+L,Meta+R + + + Alt+L,Alt+R + Alt+L,Alt+R + + + Diff Current File + Diff für Datei + + + &Diff "%1" + &Diff für "%1" + + + Meta+L,Meta+D + Meta+L,Meta+D + + + Alt+L,Alt+D + Alt+L,Alt+D + + + History Current File + History für Datei + + + &History "%1" + &History von "%1" + + + Meta+L,Meta+H + Meta+L,Meta+H + + + Alt+L,Alt+H + Alt+L,Alt+H + + + Annotate Current File + Annotation für Datei + + + &Annotate "%1" + &Annotation für "%1" + + + Meta+L,Meta+A + Meta+L,Meta+A + + + Alt+L,Alt+A + Alt+L,Alt+A + + + Add File... + Datei hinzufügen... + + + Add File "%1" + Datei "%1" hinzufügen + + + Diff A&ctivity... + Diff der A&ktivität... + + + Ch&eck In Activity + &Aktivität einchecken + + + Chec&k In Activity "%1"... + &Aktivität "%1" einchecken... + + + Update Index + Index aktualisieren + + + Update View + Ansicht aktualisieren + + + U&pdate View "%1" + &Ansicht "%1" aktualisieren + + + Check In All &Files... + Alle &Dateien einchecken... + + + Meta+L,Meta+F + Meta+L,Meta+F + + + Alt+L,Alt+F + Alt+L,Alt+F + + + View &Status + &Status anzeigen + + + Meta+L,Meta+S + Meta+L,Meta+S + + + Alt+L,Alt+S + Alt+L,Alt+S + + + Check In + Einchecken + + + Do you want to undo the check out of "%1"? + Möchten Sie das Auschecken von "%1" rückgängig machen? + + + Undo Hijack File + Hijack von Datei rückgängig machen + + + Do you want to undo hijack of "%1"? + Möchten Sie den Hijack von "%1" rückgängig machen? + + + External diff is required to compare multiple files. + Um mehrere Dateien zu vergleichen, ist ein externer Diff erforderlich. + + + Enter Activity + Aktivität eingeben + + + Activity Name + Name der Aktivität + + + Check In Activity + Aktivität einchecken + + + Another check in is currently being executed. + Es läuft bereits ein Eincheck-Vorgang. + + + There are no modified files. + Es gibt keine geänderten Dateien. + + + No ClearCase executable specified. + Es wurde keine ausführbare ClearCase-Datei angegeben. + + + ClearCase Checkout + ClearCase Auschecken + + + File is already checked out. + Die Datei ist bereits ausgecheckt. + + + Set current activity failed: %1 + Das Setzen der aktuellen Aktivität schlug fehl: %1 + + + Enter &comment: + &Kommentar eingeben: + + + ClearCase Add File %1 + ClearCase Datei %1 hinzufügen + + + ClearCase Remove Element %1 + ClearCase Element %1 entfernen + + + This operation is irreversible. Are you sure? + Dieser Vorgang kann nicht rückgängig gemacht werden. Sind Sie sicher? + + + ClearCase Remove File %1 + ClearCase Datei %1 löschen + + + ClearCase Rename File %1 -> %2 + ClearCase Datei %1 -> %2 umbenennen + + + Activity Headline + Titel der Aktivität + + + Enter activity headline + Geben Sie den Titel der Aktivität ein + + + Updating ClearCase Index + Aktualisiere ClearCase Index + + + Check &Out + Check&out + + + &Hijack + &Hijack + + + + ProjectExplorer::Internal::DeviceProcessesDialogPrivate + + Remote Error + Entfernter Fehler + + + + ProjectExplorer::SshDeviceProcessList + + Process listing command failed with exit code %1. + Das Kommando zur Auflistung der Prozesse schlug mit Rückgabewert %1 fehl. + + + Error: Kill process failed: %1 + Fehlschlag beim Beenden des Prozesses: %1 + + + Remote stderr was: %1 + Fehlerausgabe: %1 + + + + ProjectExplorer::ToolChainConfigWidget + + Name: + Name: + + + + Core::IVersionControl + + Open with VCS (%1) + Öffnen mittels Versionskontrollsystem (%1) + + + + ProjectExplorer::Kit + + Unnamed + Unbenannt + + + Kit + Kit + + + Kit ID + Kit-ID + + + Kit filesystem-friendly name + Kit-Name zur Verwendung als Dateiname + + + The name of the currently active kit. + Der Name des aktiven Kits. + + + The name of the kit. + + + + The name of the currently active kit in a filesystem-friendly version. + Der Name des aktiven Kits zur Verwendung als Dateiname. + + + The name of the kit in a filesystem-friendly version. + + + + The ID of the currently active kit. + Die ID des aktiven Kits. + + + The ID of the kit. + + + + Clone of %1 + Kopie von %1 + + + Error: + Fehler: + + + Warning: + Warnung: + + + + ProjectExplorer::KitManager + + Desktop (%1) + Desktop (%1) + + + Desktop + Desktop + + + + ProjectExplorer::Internal::KitManagerConfigWidget + + Name: + Name: + + + Kit name and icon. + Kit-Name und Symbol. + + + <html><head/><body><p>The name of the kit suitable for generating directory names. This value is used for the variable <i>%1</i>, which for example determines the name of the shadow build directory.</p></body></html> + <html><head/><body><p>Der Name des Kits, der zum Erzeugen von Verzeichnisnamen geeignet ist. Dieser Wert wird für die Variable <i>%1</i> benutzt, die zum Beispiel den Namen des Shadow-Build-Verzeichnisses bestimmt.</p></body></html> + + + File system name: + Dateisystemname: + + + Kit icon. + Kit-Symbol. + + + Select Icon... + Symbol auswählen... + + + Reset to Device Default Icon + Auf vorgegebenes Gerätesymbol zurücksetzen + + + Display name is not unique. + Der anzuzeigende Name ist nicht einmalig. + + + Default for %1 + Vorgabe für %1 + + + Select Icon + Symbol auswählen + + + Images (*.png *.xpm *.jpg) + Bilddateien (*.png *.xpm *.jpg) + + + + ProjectExplorer::Internal::KitModel + + %1 (default) + Mark up a kit as the default one. + %1 (Vorgabe) + + + Name + Name + + + + ProjectExplorer::RunConfiguration + + Run Settings + Einstellungen zur Ausführung + + + Variables in the run environment. + + + + The run configuration's working directory. + + + + The run configuration's name. + + + + The run configuration's executable. + + + + Run on %{Device:Name} + Shown in Run configuration if no executable is given, %1 is device name + + + + %1 (on %{Device:Name}) + Shown in Run configuration, Add menu: "name of runnable (on device name)" + + + + No build system active + Kein Build-System aktiv + + + + texteditv2 + + Text Edit + Text Edit + + + + textinputv2 + + Text + Text + + + + textv2 + + Text + Text + + + + VcsBase::SubmitEditorWidget + + Subversion Submit + Subversion Submit + + + Descriptio&n + &Beschreibung + + + F&iles + &Dateien + + + %1 %2/%n File(s) + + %1 %2/%n Datei + %1 %2/%n Dateien + + + + Warning: The commit subject is very short. + + + + Warning: The commit subject is too long. + + + + Hint: Aim for a shorter commit subject. + + + + Hint: The second line of a commit message should be empty. + + + + <p>Writing good commit messages</p><ul><li>Avoid very short commit messages.</li><li>Consider the first line as subject (like in email) and keep it shorter than %n characters.</li><li>After an empty second line, a longer description can be added.</li><li>Describe why the change was done, not how it was done.</li></ul> + + + + + + + Update in progress + Aktualisierung läuft + + + Description is empty + Beschreibung ist leer + + + No files checked + Keine Dateien ausgewählt + + + &Commit + &Commit + + + Select All + Check all for submit + Alle für Submit auswählen + + + Unselect All + Uncheck all for submit + Alle für Submit abwählen + + + Select a&ll + A&lle auswählen + + + + ExtensionSystem::PluginErrorOverview + + Continue + Fortsetzen + + + + QmlJS::SimpleAbstractStreamReader + + Cannot find file %1. + Die Datei '%1' kann nicht gefunden werden. + + + Could not parse document. + Das Dokument konnte nicht ausgewertet werden. + + + Expected document to contain a single object definition. + Das Dokument sollte eine einzige Objektdefinition enthalten. + + + Expected expression statement after colon. + Nach dem Doppelpunkt wird ein Ausdruck erwartet. + + + + QmlJS::SimpleReader + + Property is defined twice, previous definition at %1:%2 + + + + + CPlusplus::CheckSymbols + + Only virtual functions can be marked 'override' + Nur virtuelle Funktionen können als 'override' gekennzeichnet werden + + + + CPlusPlus::CheckSymbols + + Only virtual functions can be marked 'final' + Nur virtuelle Funktionen können als 'final' gekennzeichnet werden + + + Expected a namespace-name + Angabe eines Namensraums erforderlich + + + Too many arguments + Zu viele Argumente + + + + CplusPlus::CheckSymbols + + Too few arguments + Zu wenige Argumente @@ -20856,8 +26707,8 @@ Entfernt: %4 GCC - %1 (%2, %3 %4 in %5) - %1 (%2, %3 %4 in %5) + %1 (%2, %3 %4 at %5) + @@ -20878,10 +26729,6 @@ Entfernt: %4 Selection Auswahl - - Stack (z) - Stapel (z) - Edit Editieren @@ -20902,6 +26749,18 @@ Entfernt: %4 Select: %1 Auswahl: %1 + + Open Connections Editor + + + + Remove This Handler + + + + Add Signal Handler + + Connect: %1 Verbinden: %1 @@ -20950,22 +26809,6 @@ Entfernt: %4 Delete Selection Auswahl löschen - - To Front - Ganz nach vorn - - - To Back - Ganz nach hinten - - - Raise - Nach vorn - - - Lower - Nach hinten - Undo Rückgängig @@ -21014,10 +26857,6 @@ Entfernt: %4 Remove GroupItem GroupItem entfernen - - Add Item - Element hinzufügen - Add Tab Bar Tab Bar hinzufügen @@ -21042,14 +26881,6 @@ Entfernt: %4 Layout in Grid Layout In Grid-Layout anordnen - - Raise selected item. - Ausgewähltes Element eine Ebene nach vorn. - - - Lower selected item. - Ausgewähltes Element eine Ebene nach hinten. - Reset size and use implicit size. Größe zurücksetzen und implizite Größe verwenden. @@ -21058,26 +26889,6 @@ Entfernt: %4 Reset position and use implicit position. Position zurücksetzen und implizite Position verwenden. - - Fill selected item to parent. - Elternelement mit ausgewähltem Element ausfüllen. - - - Reset anchors for selected item. - Anker für ausgewähltes Element zurücksetzen. - - - Layout selected items in column layout. - Ausgewählte Elemente in Column-Layout anordnen. - - - Layout selected items in row layout. - Ausgewählte Elemente in Row-Layout anordnen. - - - Layout selected items in grid layout. - Ausgewählte Elemente in Grid-Layout anordnen. - Increase index of stacked container. Index des verschachtelten Containers erhöhen. @@ -21086,10 +26897,6 @@ Entfernt: %4 Decrease index of stacked container. Index des verschachtelten Containers verringern. - - Add item to stacked container. - Element zum verschachtelten Container hinzufügen. - Add flow action. Flow action hinzufügen. @@ -21102,6 +26909,62 @@ Entfernt: %4 Reset z Property Z-Wert zurücksetzen + + Connections + Verbindungen + + + Arrange + + + + Bring to Front + + + + Send to Back + + + + Bring Forward + + + + Send Backward + + + + Copy Formatting + + + + Apply Formatting + + + + Edit Material + + + + Edit Annotation + + + + Add Mouse Area + + + + Open Signal Dialog + + + + Update 3D Asset + + + + Reverse + + Position in Column In Spalte anordnen @@ -21126,6 +26989,10 @@ Entfernt: %4 Remove Layout Layout entfernen + + Add Component + Komponente hinzufügen + Fill Width Füllbreite @@ -21134,6 +27001,46 @@ Entfernt: %4 Fill Height Füllhöhe + + Raise selected component. + + + + Lower selected component. + + + + Copy formatting. + + + + Apply formatting. + + + + Fill selected component to parent. + + + + Reset anchors for selected component. + + + + Layout selected components in column layout. + + + + Layout selected components in row layout. + + + + Layout selected components in grid layout. + + + + Add component to stacked container. + + Go into Component In Komponente gehen @@ -21217,8 +27124,12 @@ Entfernt: %4 Unbekannte Eigenschaft für QmlSource %1 - Invalid or duplicate item library entry %1 - Ungültiger oder doppelter Eintrag %1 für Item-Library + Unknown property for ExtraFile %1 + + + + Invalid or duplicate library entry %1 + @@ -21228,51 +27139,6 @@ Entfernt: %4 Ungültige Metainformation - - QtSupport - - Link with a Qt installation to automatically register Qt versions and kits? To do this later, select Options > Kits > Qt Versions > Link with Qt. - Mit einer Qt-Installation verknüpfen, um automatisch Qt-Versionen und Kits zu registrieren? Um dies später zu tun, wählen Sie Einstellungen > Kits > Qt-Versionen > Mit Qt verknüpfen. - - - Link with Qt - Mit Qt verknüpfen - - - Full path to the host bin directory of the current project's Qt version. - Vollständiger Pfad zum Host-bin-Verzeichnis der Qt-Version des aktuellen Projekts. - - - Full path to the target bin directory of the current project's Qt version.<br>You probably want %1 instead. - Vollständiger Pfad zum Ziel-bin-Verzeichnis der Qt-Version des aktuellen Projekts. <br>Wahrscheinlich sollte es %1 sein. - - - - QtSupport - - No factory found for qmake: "%1" - Es konnte keine Factory für qmake gefunden werden: "%1" - - - - TextEditor::BehaviorSettingsWidget - - Displays context-sensitive help or type information on mouseover. - Kontextsensitive Hilfe oder Typinformationen anzeigen, wenn sich der Mauszeiger über dem Element befindet. - - - Displays context-sensitive help or type information on Shift+Mouseover. - Kontextsensitive Hilfe oder Typinformationen anzeigen, wenn sich der Mauszeiger über dem Element befindet und die Umschalttaste gedrückt ist. - - - Unix (LF) - Unix (LF) - - - Windows (CRLF) - Windows (CRLF) - - QmlDesigner::QmlDesignerPlugin @@ -21283,6 +27149,18 @@ Entfernt: %4 The QML file is not currently opened in a QML Editor. Die QML-Datei ist in keinem QML-Editor geöffnet. + + License: Enterprise + + + + License: Professional + + + + Licensee: %1 + + QmlDesigner::ShortCutManager @@ -21318,10 +27196,6 @@ Entfernt: %4 Select &All &Alles auswählen - - Toggle States - States ein-/ausblenden - Save %1 As... Speichere %1 unter... @@ -21347,13 +27221,6 @@ Entfernt: %4 Andere schließen - - CppTools::Internal::BuiltinIndexingSupport - - Parsing C/C++ Files - Werte C/C++-Dateien aus - - QmlJS::StaticAnalysisMessages @@ -21517,44 +27384,88 @@ Weitere Informationen finden Sie auf der Dokumentationsseite "Checking Code Zur Steigerung der Ausführungsgeschwindigkeit sollte %1 statt 'var' oder 'variant' verwendet werden. - This type (%1) is not supported in the Qt Quick Designer. - Dieser Typ (%1) wird von Qt Quick Designer nicht unterstützt. + Imperative code is not supported in Qt Design Studio. + - This id might be ambiguous and is not supported in the Qt Quick Designer. - Diese ID könnte mehrdeutig sein und wird von Qt Quick Designer nicht unterstützt. + This type (%1) is not supported in Qt Design Studio. + - This type (%1) is not supported as a root element by Qt Quick Designer. - Dieser Typ (%1) wird von Qt Quick Designer nicht als Wurzelelement unterstützt. + Reference to parent item cannot be resolved correctly by Qt Design Studio. + - This type (%1) is not supported as a root element of a Qt Quick UI form. - Dieser Typ (%1) wird nicht als Wurzelelement eines Qt Quick UI-Formulars unterstützt. + This visual property binding cannot be evaluated in the local context and might not show up in Qt Design Studio as expected. + - This type (%1) is not supported in a Qt Quick UI form. - Dieser Typ (%1) wird in einem Qt Quick UI-Formular nicht unterstützt. + Qt Design Studio only supports states in the root item. + - Functions are not supported in a Qt Quick UI form. - Funktionen werden in einem Qt Quick UI-Formular nicht unterstützt. + This id might be ambiguous and is not supported in Qt Design Studio. + - JavaScript blocks are not supported in a Qt Quick UI form. - JavaScript Blöcke werden in einem Qt Quick UI-Formular nicht unterstützt. + This type (%1) is not supported as a root element by Qt Design Studio. + - Behavior type is not supported in a Qt Quick UI form. - Typ "Behavior" wird in einem Qt Quick UI-Formular nicht unterstützt. + This type (%1) is not supported as a root element of a UI file (.ui.qml). + - States are only supported in the root item in a Qt Quick UI form. - States werden nur im Wurzelelement eines Qt Quick UI-Formulars unterstützt. + This type (%1) is not supported in a UI file (.ui.qml). + - Referencing the parent of the root item is not supported in a Qt Quick UI form. - Bezüge auf das übergeordnete Element des Wurzelelements werden in einem Qt Quick UI-Formular nicht unterstützt. + Functions are not supported in a UI file (.ui.qml). + + + + JavaScript blocks are not supported in a UI file (.ui.qml). + + + + Behavior type is not supported in a UI file (.ui.qml). + + + + States are only supported in the root item in a UI file (.ui.qml). + + + + Referencing the parent of the root item is not supported in a UI file (.ui.qml). + + + + Do not mix translation functions in a UI file (.ui.qml). + + + + Type cannot be instantiated recursively (%1). + + + + Logical value does not depend on actual values. + + + + Components are only allowed to have a single child element. + + + + Components require a child element. + + + + Do not reference the root item as alias. + + + + Avoid referencing the root item in a hierarchy. + A State cannot have a child item (%1). @@ -21568,10 +27479,6 @@ Weitere Informationen finden Sie auf der Dokumentationsseite "Checking Code Hit maximum recursion limit when visiting AST. Maximale Rekursionstiefe beim Durchlaufen des Syntaxbaums erreicht. - - Type cannot be instantiated recursively (%1). - Typ kann nicht rekursiv instanziiert werden (%1). - Invalid property name "%1". "%1" ist kein gültiger Name einer Eigenschaft. @@ -21673,33 +27580,9 @@ Weitere Informationen finden Sie auf der Dokumentationsseite "Checking Code %1 elements expected in array value. Das Feld benötigt %1 Werte. - - Imperative code is not supported in the Qt Quick Designer. - Imperativer Code wird von Qt Quick Designer nicht unterstützt. - - - Reference to parent item cannot be resolved correctly by the Qt Quick Designer. - Der Verweis auf das Elternelement kann von Qt Quick Designer nicht korrekt aufgelöst werden. - - - This visual property binding cannot be evaluated in the local context and might not show up in Qt Quick Designer as expected. - Dieses sichtbare Property-Binding kann nicht im lokalen Kontext ausgewertet werden und wird daher in Qt Quick Designer möglicherweise nicht wie erwartet angezeigt. - - - Qt Quick Designer only supports states in the root item. - Qt Quick Designer unterstützt nur States im Wurzelelement. - QbsProjectManager - - Debug - Debug - - - Release - Release - Build variant: Build-Variante: @@ -21748,6 +27631,10 @@ Weitere Informationen finden Sie auf der Dokumentationsseite "Checking Code Keep going when errors occur (if at all possible). Beim Auftreten von Fehlern fortsetzen (falls möglich). + + ABIs: + ABIs: + Parallel jobs: Parallele Jobs: @@ -21872,10 +27759,6 @@ Weitere Informationen finden Sie auf der Dokumentationsseite "Checking Code Clean Product Produkt bereinigen - - Clean Product "%1" - Produkt "%1" bereinigen - Rebuild Neu erstellen @@ -21885,8 +27768,182 @@ Weitere Informationen finden Sie auf der Dokumentationsseite "Checking Code Produkt neu erstellen - Rebuild Product "%1" - Produkt "%1" neu erstellen + Qbs Install + Qbs-Installation + + + Installing canceled: Qbs session failed. + Installation abgebrochen: Qbs-Sitzung fehlgeschlagen. + + + Install root: + Install-Root: + + + Remove first + Zuerst entfernen + + + Custom Properties + Benutzerdefinierte Eigenschaften + + + &Add + Hinzu&fügen + + + &Remove + &Entfernen + + + Key + Schlüssel + + + Value + Wert + + + Kit: + Kit: + + + Associated profile: + Zugeordnetes Profil: + + + Profile properties: + Profileigenschaften: + + + E&xpand All + Alles &aufklappen + + + &Collapse All + Alles &einklappen + + + Qbs + Qbs + + + Profiles + Profile + + + C and C++ compiler paths differ. C compiler may not work. + Die Pfade von C- und C++-Compiler sind unterschiedlich. Der C-Compiler könnte nicht funktionieren. + + + Generated files + Erzeugte Dateien + + + Change... + Ändern... + + + Additional Qbs Profile Settings + Zusätzliche Qbs-Profileinstellungen + + + Qbs files + Qbs-Dateien + + + Fatal qbs error: %1 + Fataler qbs-Fehler:%1 + + + Failed + Fehlgeschlagen + + + Could not write project file %1. + Die Projektdatei %1 konnte nicht geschrieben werden. + + + Reading Project "%1" + Lese Projekt "%1" + + + Error retrieving run environment: %1 + Fehler beim Abfragen der Ausführungsumgebung: %1 + + + Use %1 settings directory for Qbs + + + + Path to qbs executable: + + + + Default installation directory: + + + + Qbs version: + Qbs-Version: + + + Failed to retrieve version. + + + + General + Allgemein + + + Failed to run qbs config: %1 + + + + Received invalid input. + + + + No qbs executable was found, please set the path in the settings. + + + + The qbs executable was not found at the specified path, or it is not executable ("%1"). + + + + The qbs process quit unexpectedly. + + + + The qbs process failed to start. + + + + The qbs process sent unexpected data. + + + + The qbs API level is not compatible with what %1 expects. + + + + Request timed out. + + + + Failed to load qbs build graph. + + + + The qbs session is not in a valid state. + + + + Failed to update files in Qbs project: %1. +The affected files are: + %2 + @@ -21997,6 +28054,46 @@ Weitere Informationen finden Sie auf der Dokumentationsseite "Checking Code Combo Box Combobox + + Text role + + + + The model role used for displaying text. + + + + Display text + + + + Holds the text that is displayed on the combo box button. + + + + Current index + Aktueller Index + + + The index of the current item. + + + + Flat + Flach + + + Whether the combo box button is flat. + + + + Editable + + + + Whether the combo box is editable. + + Focus on press Fokussieren durch Betätigen @@ -22166,12 +28263,20 @@ Weitere Informationen finden Sie auf der Dokumentationsseite "Checking Code QmlDesigner::TextToModelMerger - No import statements found - Es konnte keine Import-Anweisung gefunden werden + No import statements found. + - Unsupported QtQuick version - Nicht unterstützte Version von QtQuick + Qt Quick 6 is not supported with a Qt 5 kit. + + + + The Design Mode requires a valid Qt kit. + + + + Unsupported Qt Quick version. + No import for Qt Quick found. @@ -22236,146 +28341,6 @@ Weitere Informationen finden Sie auf der Dokumentationsseite "Checking Code Diff "%1", "%2" - - Core::Internal::ReadOnlyFilesDialog - - Files Without Write Permissions - Dateien ohne Schreibberechtigung - - - The following files have no write permissions. Do you want to change the permissions? - Die folgenden Dateien sind schreibgeschützt. Möchten Sie die Berechtigungen ändern? - - - Save As - Speichern unter - - - Path - Pfad - - - Select all, if possible: - Möglichst alle auswählen: - - - Make Writable - Schreibbar machen - - - Open with VCS - Öffnen mittels Versionskontrollsystem - - - - Git - - Push to Gerrit - Push zu Gerrit - - - Number of commits - Anzahl der Commits - - - Cannot find a Gerrit remote. Add one and try again. - Es wurde kein Remote-Repository für Gerrit gefunden. Bitte fügen Sie eines hinzu und versuchen es erneut. - - - Number of commits between %1 and %2: %3 - Anzahl der Commits zwischen %1 und %2: %3 - - - Are you sure you selected the right target branch? - Sind Sie sicher, dass Sie den richtigen Ziel-Branch gewählt haben? - - - Checked - Mark change as WIP. -Unchecked - Mark change as ready for review. -Partially checked - Do not change current state. - Markiert - Änderung als "WIP" markieren. -Nicht markiert - Änderung als bereit zur Prüfung markieren. -Teilmarkiert - Zustand nicht verändern. - - - Checked - Mark change as private. -Unchecked - Remove mark. -Partially checked - Do not change current state. - Markiert - Änderung als privat markieren. -Nicht markiert - Markierung entfernen. -Teilmarkiert - Zustand nicht verändern. - - - Supported on Gerrit 2.15 and later. - Unterstützt von Gerrit 2.15 und höher. - - - Checked - The change is a draft. -Unchecked - The change is not a draft. - Markiert - Die Änderung ist ein Entwurf. -Nicht markiert - Die Änderung ist kein Entwurf. - - - No remote branches found. This is probably the initial commit. - Keine Branches im Remote-Repository gefunden. Dies ist wahrscheinlich der erste Commit. - - - Branch name - Branch-Name - - - ... Include older branches ... - ... Ältere Branches einschließen ... - - - &Topic: - &Topic: - - - Pushes the selected commit and all dependent commits. - Push des ausgewählten Commit und aller abhängigen Commits. - - - &Reviewers: - &Reviewer: - - - Comma-separated list of reviewers. - -Reviewers can be specified by nickname or email address. Spaces not allowed. - -Partial names can be used if they are unambiguous. - Kommaseparierte Liste der Reviewer. - -Reviewer können mit Benutzernamen oder E-Mail-Adresse angegeben werden. Leerzeichen sind nicht erlaubt. - -Teilnamen können verwendet werden, sofern sie eindeutig sind. - - - Push: - Push: - - - Commits: - Commits: - - - Local repository - Lokales Repository - - - To: - Nach: - - - &Draft/private - &Entwurf/privat - - - &Work-in-progress - &In Arbeit - - Core::Internal::ProgressManagerPrivate @@ -22383,73 +28348,6 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Verlaufsdetails ein/ausschalten - - Debugger - - Debugger settings - Debuggereinstellungen - - - Enable C++ - C++ aktivieren - - - Enable QML - QML aktivieren - - - <a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">What are the prerequisites?</a> - <a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">Was sind die Voraussetzungen?</a> - - - Enable Debugging of Subprocesses - Debuggen von Unterprozessen zulassen - - - Additional startup commands: - Zusätzliche Kommandos beim Start: - - - Unable to start LLDB "%1": %2 - LLDB "%1" konnte nicht gestartet werden: %2 - - - Interrupt requested... - Unterbrechung angefordert... - - - The LLDB process failed to start. Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. - Der Start des LLDB-Prozesses schlug fehl. Entweder fehlt die ausführbare Datei "%1" oder die Berechtigungen sind nicht ausreichend. - - - An unknown error in the LLDB process occurred. - Im LLDB-Prozess trat ein unbekannter Fehler auf. - - - Adapter start failed. - Der Start des Adapters schlug fehl. - - - Stopping temporarily - Halte an - - - LLDB I/O Error - LLDB-Ein/Ausgabefehler - - - The LLDB process crashed some time after starting successfully. - Der LLDB-Prozess ist einige Zeit nach dem Start abgestürzt. - - - An error occurred when attempting to write to the LLDB process. For example, the process may not be running, or it may have closed its input channel. - Ein Fehler trat beim Versuch zum LLDB-Prozess zu schreiben auf. Möglicherweise läuft der Prozess nicht oder hat seinen Eingabekanal geschlossen. - - - An error occurred when attempting to read from the Lldb process. For example, the process may not be running. - Ein Fehler trat beim Versuch vom Lldb-Prozess zu lesen auf. Möglicherweise läuft der Prozess nicht. - - Diff @@ -22465,34 +28363,6 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Gleich - - Git - - Reset to: - Zurücksetzen auf: - - - Select change: - Change auswählen: - - - Reset type: - Rücksetzmodus: - - - Mixed - Using the English original because this is what will be passed to git (--mixed). - Mixed - - - Hard - Hard - - - Soft - Soft - - ProjectExplorer::EnvironmentAspect @@ -22544,46 +28414,12 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. QmlDesigner::FormEditorView - Form Editor - Formulareditor - - - - RemoteLinux - - Clean Environment - Saubere Umgebung + 2D + 2D - System Environment - Systemumgebung - - - - RemoteLinux - - Fetch Device Environment - Umgebung vom Mobilgerät abfragen - - - Cannot Open Terminal - Terminal kann nicht geöffnet werden - - - Cannot open remote terminal: Current kit has no device. - Terminal kann nicht auf Gerät geöffnet werden: Das aktive Kit hat kein Gerät. - - - Cancel Fetch Operation - Abfragen der Umgebung abbrechen - - - Device Error - Gerätefehler - - - Fetching environment failed: %1 - Das Abfragen der Umgebung schlug fehl: %1 + %1 is not supported as the root element by the 2D view. + @@ -22595,6 +28431,114 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. CppEditor::QuickFix + + Rewrite Using %1 + Unter Verwendung von %1 umschreiben + + + Swap Operands + Operanden vertauschen + + + Rewrite Condition Using || + Bedingung unter Verwendung des ||-Operators umschreiben + + + Split Declaration + Deklaration aufspalten + + + Add Curly Braces + Geschweifte Klammern hinzufügen + + + Move Declaration out of Condition + Deklaration aus Bedingung entfernen + + + Split if Statement + if-Anweisung aufspalten + + + Enclose in %1(...) + In %1(...) einschließen + + + Convert to String Literal + In Zeichenkettenliteral umwandeln + + + Convert to Character Literal and Enclose in QLatin1Char(...) + In Zeichenliteral umwandeln und in QLatin1Char(...) einschließen + + + Convert to Character Literal + In Zeichenliteral umwandeln + + + Mark as Translatable + Zur Übersetzung vorsehen + + + Convert to Objective-C String Literal + In Objective-C-Zeichenkettenliteral umwandeln + + + Convert to Hexadecimal + In Hexadezimaldarstellung umwandeln + + + Convert to Octal + In Oktaldarstellung umwandeln + + + Convert to Decimal + In Dezimaldarstellung umwandeln + + + Convert to Binary + In Binärdarstellung umwandeln + + + Add Local Declaration + Lokale Deklaration hinzufügen + + + Convert to Camel Case + In Camel-Case umwandeln + + + Add #include %1 + #include %1 hinzufügen + + + Add forward declaration for %1 + Forward declaration für %1 hinzufügen + + + Switch with Previous Parameter + Mit vorangehendem Parameter tauschen + + + Switch with Next Parameter + Mit nächstem Parameter tauschen + + + Reformat to "%1" + In "%1" umformatieren + + + Reformat Pointers or References + Zeiger/Referenzen umformatieren + + + Complete Switch Statement + Switch-Anweisung vervollständigen + + + Extract Constant as Function Parameter + Konstante als Funktionsparameter extrahieren + Move Definition Outside Class Definition aus Klasse herausnehmen @@ -22615,6 +28559,34 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Move Definition to Class Definition in Klasse verschieben + + Assign to Local Variable + Lokaler Variable zuweisen + + + Optimize for-Loop + for-Schleife optimieren + + + Escape String Literal as UTF-8 + Zeichenkette als UTF-8-Escape-Sequenzen darstellen + + + Unescape String Literal as UTF-8 + Zeichenkette ohne UTF-8-Escape-Sequenzen darstellen + + + Convert connect() to Qt 5 Style + connect() in Qt5-Stil umwandeln + + + Remove All Occurrences of "using namespace %1" in Global Scope and Adjust Type Names Accordingly + + + + Remove "using namespace %1" and Adjust Type Names Accordingly + + Insert Virtual Functions of Base Classes Virtuelle Funktionen der Basisklasse einfügen @@ -22630,6 +28602,46 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Additional Preprocessor Directives... Zusätzliche Präprozessor-Anweisungen... + + &C++ + &C++ + + + Switch Header/Source + Zwischen Header- und Quelldatei wechseln + + + Open Corresponding Header/Source in Next Split + Headerdatei beziehungsweise Quelldatei im nächsten geteilten Fenster anzeigen + + + Meta+E, F4 + Meta+E, F4 + + + Ctrl+E, F4 + Ctrl+E, F4 + + + Show Preprocessed Source + + + + Show Preprocessed Source in Next Split + + + + The license template. + Die Lizenzvorlage. + + + The configured path to the license template + Der eingestellte Pfad der Lizenzvorlage + + + Insert "#pragma once" instead of "#ifndef" include guards into header file + "#pragma once" statt Include-Guards mit "#ifndef" in Header-Datei einfügen + C++ SnippetProvider @@ -22666,6 +28678,30 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Ctrl+E, Shift+F2 Ctrl+E, Shift+F2 + + Follow Symbol Under Cursor to Type + + + + Ctrl+Shift+F2 + Ctrl+Shift+F2 + + + Follow Symbol to Type in Next Split + + + + Meta+E, Ctrl+Shift+F2 + + + + Ctrl+E, Ctrl+Shift+F2 + + + + Find References With Access Type + + Open Type Hierarchy Klassenhierarchie öffnen @@ -22706,31 +28742,9 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Ctrl+Shift+F12 Ctrl+Shift+F12 - - - QbsProjectManager - Qbs Install - Qbs-Installation - - - Installing canceled: Qbs session failed. - Installation abgebrochen: Qbs-Sitzung fehlgeschlagen. - - - Install root: - Install-Root: - - - Remove first - Zuerst entfernen - - - - Git - - Sha1 - Sha1 + Clangd + @@ -22784,191 +28798,6 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Hinzugefügte Entsprechungen von "override" entfernen - - Debugger - - Use Local Symbol Cache - Lokalen Symbolcache verwenden - - - Use Microsoft Symbol Server - Microsoft-Symbol-Server verwenden - - - <html><head/><body><p>The debugger is not configured to use the public Microsoft Symbol Server.<br/>This is recommended for retrieval of the symbols of the operating system libraries.</p><p><span style=" font-style:italic;">Note:</span> It is recommended, that if you use the Microsoft Symbol Server, to also use a local symbol cache.<br/>A fast internet connection is required for this to work smoothly,<br/>and a delay might occur when connecting for the first time and caching the symbols.</p><p>What would you like to set up?</p></body></html> - <html><head/><body><p>Der Debugger ist nicht zur Benutzung des öffentlichen Microsoft Symbol Servers eingerichtet.<br/>Dies wird zur Anzeige der Symbole der Betriebssystem-Bibliotheken empfohlen.</p><p><span style=" font-style:italic;">Hinweis:</span> Bei der Verwendung des Microsoft Symbol Servers wird zusätzlich die Benutzung eines lokalen Zwischenspeichers für Symbole empfohlen.<br/>Allerdings ist dabei eine schnelle Internetverbindung für flüssiges Arbeiten erforderlich<br/>und bei der ersten Verbindung zum Zwischenspeichern der Symbole können Verzögerungen auftreten.</p><p>Was möchten Sie einrichten?</p></body></html> - - - Set up Symbol Paths - Symbolpfade einrichten - - - - Android - - General - Allgemein - - - XML Source - XML-Quelle - - - Package - Paket - - - <p align="justify">Please choose a valid package name for your application (for example, "org.example.myapplication").</p><p align="justify">Packages are usually defined using a hierarchical naming pattern, with levels in the hierarchy separated by periods (.) (pronounced "dot").</p><p align="justify">In general, a package name begins with the top level domain name of the organization and then the organization's domain and then any subdomains listed in reverse order. The organization can then choose a specific name for their package. Package names should be all lowercase characters whenever possible.</p><p align="justify">Complete conventions for disambiguating package names and rules for naming packages when the Internet domain name cannot be directly used as a package name are described in section 7.7 of the Java Language Specification.</p> - <p align="justify">Bitte wählen Sie einen gültigen Paketnamen für Ihre Anwendung (z.B. "org.example.myapplication").</p><p align="justify">Paketnamen werden üblicherweise nach einem hierarchischen Namensschema festgelegt, bei dem die Ebenen der Hierarchie durch Punkte (.) (ausgesprochen "dot") getrennt werden.</p><p align="justify">Im Allgemeinen beginnt ein Paketname mit dem Top-Level-Domainnamen der Organisation, gefolgt von der Domain der Organisation und den Sub-Domains in umgekehrter Reihenfolge. Die Organisation kann dann einen spezifischen Namen für das Paket festlegen. Paketnamen sollten nach Möglichkeit nur aus Kleinbuchstaben bestehen.</p><p align="justify">Die vollständigen Konventionen zur Sicherstellung der Eindeutigkeit der Paketnamen und Regeln für den Fall, dass der Internet-Domain-Name nicht direkt als Paketname verwendet werden kann, sind im Abschnitt 7.7 der Java-Sprachspezifikation beschrieben.</p> - - - Package name: - Paketname: - - - The package name is not valid. - Der Paketname ist ungültig. - - - Version code: - Versionscode: - - - Version name: - Versionsname: - - - Sets the minimum required version on which this application can be run. - Legt die minimal erforderliche Version fest, auf der diese Anwendung ausgeführt werden kann. - - - Not set - Nicht festgelegt - - - Minimum required SDK: - Minimal erforderliches SDK: - - - Advanced - Erweitert - - - Application icon - Symbol der Anwendung - - - Android services - Android-Dienste - - - Splash screen - Startbildschirm - - - The structure of the Android manifest file is corrupted. Expected a top level 'manifest' node. - Die Struktur der Android-Manifest-Datei ist ungültig. Es wird ein 'manifest'-Knoten in der obersten Ebene erwartet. - - - The structure of the Android manifest file is corrupted. Expected an 'application' and 'activity' sub node. - Die Struktur der Android-Manifest-Datei ist ungültig. Es wird ein 'application'- und ein 'activity'-Unterknoten erwartet. - - - Target SDK: - Ziel-SDK: - - - Sets the target SDK. Set this to the highest tested version. This disables compatibility behavior of the system for your application. - Legt das Ziel-SDK fest. Geben Sie die höchste Version an, gegen die getestet wurde. Dies schaltet das Kompatibilitätsverhalten des Systems für Ihre Anwendung ab. - - - Application - Anwendung - - - Application name: - Name der Anwendung: - - - Activity name: - Name der Aktivität: - - - Run: - Ausführen: - - - Permissions - Berechtigungen - - - Include default permissions for Qt modules. - Standard-Berechtigungen für Qt-Module einschließen. - - - Include default features for Qt modules. - Standard-Features für Qt-Module einschließen. - - - Add - Hinzufügen - - - Style extraction: - Stil-Extraktion: - - - Service Definition Invalid - Dienstdefinition ungültig - - - Cannot switch to source when there are invalid services. - Es kann nicht zum Quelltext umgeschaltet werden, wenn ungültige Dienste vorhanden sind. - - - Cannot save when there are invalid services. - Es kann nicht gespeichert werden, wenn ungültige Dienste vorhanden sind. - - - API %1: %2 - API %1: %2 - - - Could not parse file: "%1". - Die Datei konnte nicht ausgewertet werden: "%1". - - - %2: Could not parse file: "%1". - %2: Die Datei konnte nicht ausgewertet werden: "%1". - - - Goto error - Zu Fehler gehen - - - Services invalid. Manifest cannot be saved. Correct the service definitions before saving. - Dienste ungültig. Manifest kann nicht gespeichert werden. Bitte korrigieren Sie die Dienstdefinitionen bevor Sie speichern. - - - Android Manifest editor - Android Manifest-Editor - - - - Debugger - - Symbol Paths - Symbolpfade - - - Source Paths - Quellpfade - - - CDB Paths - CDB-Pfade - - QmlJS::QrcParser @@ -22999,62 +28828,8 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Prüfe, ob ein Gerät eingerichtet ist - - Qnx - - Checking that files can be created in /var/run... - Prüfe, ob Dateien in /var/run angelegt werden können... - - - Files can be created in /var/run. - Dateien können in /var/run angelegt werden. - - - Files cannot be created in /var/run. - Dateien können nicht in /var/run angelegt werden. - - - An error occurred while checking that files can be created in /var/run. - Beim Prüfen, ob Dateien in /var/run angelegt werden können, ist ein Fehler aufgetreten. - - - An error occurred while checking for %1. - Bei der Prüfung von %1 trat ein Fehler auf. - - - %1 found. - %1 gefunden. - - - %1 not found. - %1 nicht gefunden. - - - SSH connection error: %1 - SSH-Verbindungsfehler: %1 - - - Checking for %1... - Prüfe %1... - - - - Mercurial - - Password: - Passwort: - - - Username: - Benutzername: - - Core::Internal::AddToVcsDialog - - Dialog - Dialog - Add the file to version control (%1) Datei unter Versionsverwaltung (%1) stellen @@ -23102,10 +28877,6 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. File name: Dateiname: - - TextLabel - TextLabel - Line number: Zeilennummer: @@ -23161,10 +28932,6 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. ProjectExplorer::Internal::DeviceTestDialog - - Device Test - Test des Geräts - Close Schließen @@ -23178,56 +28945,6 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Test des Geräts fehlgeschlagen. - - Android - - Android: SDK installation error 0x%1 - Android: Bei der SDK-Installation trat Fehler 0x%1 auf - - - Android: NDK installation error 0x%1 - Android: Bei der NDK-Installation trat Fehler 0x%1 auf - - - Android: Java installation error 0x%1 - Android: Bei der Installation von Java trat Fehler 0x%1 auf - - - Android: ant installation error 0x%1 - Android: Bei der Installation von ant trat Fehler 0x%1 auf - - - Android: adb installation error 0x%1 - Android: Bei der Installation von adb trat Fehler 0x%1 auf - - - Android: Device connection error 0x%1 - Android: Bei der Verbindung zum Gerät trat Fehler 0x%1 auf - - - Android: Device permission error 0x%1 - Android: Fehler 0x%1 bei Zugriff auf das Gerät - - - Android: Device authorization error 0x%1 - Android: Fehler 0x%1 bei Autorisierung des Geräts - - - Android: Device API level not supported: error 0x%1 - Android: Der API-Level des Geräts wird nicht unterstützt: Fehler 0x%1 - - - Android: Unknown error 0x%1 - Android: Unbekannter Fehler 0x%1 - - - - ModelManagerSupportInternal::displayName - - %1 Built-in - %1 intern - - Macros::Internal::MacroManager @@ -23249,10 +28966,6 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. CustomToolChain - - Parser for toolchain %1 - Parser für Toolchain %1 - GCC GCC @@ -23274,21 +28987,6 @@ Teilnamen können verwendet werden, sofern sie eindeutig sind. Benutzerdefiniert - - ProjectExplorer::SshDeviceProcess - - Failed to kill remote process: %1 - Fehlschlag beim Beenden des entfernten Prozesses: %1 - - - Timeout waiting for remote process to finish. - Überschreitung des Zeitlimits beim Warten auf Beendigung des entfernten Prozesses. - - - Terminated by request. - Auf Anforderung beendet. - - ProjectExplorer::OsParser @@ -23298,13 +28996,6 @@ Please close all running instances of your application before starting a build.< Bitte schließen Sie alle laufenden Instanzen Ihrer Anwendung vor dem Erstellen. - - QmlDesigner::ImportsWidget - - Import Manager - Importverwaltung - - QmlDesigner::PropertyEditorView @@ -23312,12 +29003,8 @@ Bitte schließen Sie alle laufenden Instanzen Ihrer Anwendung vor dem Erstellen. Eigenschaften - Invalid Id - Ungültige ID - - - %1 is an invalid id. - %1 ist keine gültige ID. + Invalid ID + %1 already exists. @@ -23328,27 +29015,8 @@ Bitte schließen Sie alle laufenden Instanzen Ihrer Anwendung vor dem Erstellen. Eigenschaft kann nicht als Alias exportiert werden - Property %1 does already exist for root item. - Die Eigenschaft %1 existiert bereits für das Wurzelelement. - - - - QmlProfiler - - Failed to replay QML events from stash file. - QML-Ereignisse aus der Stash-Datei konnten nicht wieder abgespielt werden. - - - <bytecode> - <bytecode> - - - anonymous function - Anonyme Funktion - - - Read past end in temporary trace file. - Über das Ende der temporären Trace-Datei hinaus gelesen. + Property %1 does already exist for root component. + @@ -23358,121 +29026,6 @@ Bitte schließen Sie alle laufenden Instanzen Ihrer Anwendung vor dem Erstellen. Ungültiges Wurzelelement: %1 - - Valgrind - - Valgrind Settings - Einstellungen von Valgrind - - - - Android - - Create new AVD - Android Virtual Device - Neues AVD erzeugen - - - Target API: - Ziel-API: - - - Name: - Name: - - - SD card size: - Größe der SD-Karte: - - - MiB - MiB - - - Architecture (ABI): - Architektur (ABI): - - - Device definition: - Gerätedefinition: - - - Overwrite existing AVD name - Bestehenden AVD-Namen überschreiben - - - Select Android Device - Android-Gerät auswählen - - - Refresh Device List - Geräteliste aktualisieren - - - Create Android Virtual Device - Android Virtual Device erstellen - - - ABI: - ABI: - - - Compatible devices - Kompatible Geräte - - - Unauthorized. Please check the confirmation dialog on your device %1. - Nicht autorisiert. Bitte bestätigen Sie den Dialog auf Ihrem Gerät %1. - - - Offline. Please check the state of your device %1. - Offline. Bitte prüfen Sie den Status Ihres Gerätes %1. - - - ABI is incompatible, device supports ABIs: %1. - Die ABIs sind nicht kompatibel; das Gerät unterstützt die ABIs: %1. - - - API Level of device is: %1. - Der API-Level des Geräts ist %1. - - - Incompatible devices - Geräte nicht kompatibel - - - <p>Connect an Android device via USB and activate developer mode on it. Some devices require the installation of a USB driver.</p> - <p>Verbinden Sie ein Android-Gerät mittels USB und aktivieren Sie darauf den Entwicklungsmodus. Einige Geräte erfordern die Installation eines USB-Treibers.</p> - - - <p>The adb tool in the Android SDK lists all connected devices if run via &quot;adb devices&quot;.</p> - <p>Das adb-Werkzeug im Android-SDK listet alle verbundenen Geräte auf, wenn man es mit &quot;adb devices&quot; aufruft.</p> - - - Always use this device for this project - Für dieses Projekt immer dieses Gerät verwenden - - - No Device Found - Kein Gerät gefunden - - - Looking for default device <b>%1</b>. - Suche nach Vorgabegerät <b>%1</b>. - - - <html><head/><body><p><a href="aaa"><span style=" text-decoration: underline; color:#0057ae;">My device is missing</span></a></p></body></html> - <html><head/><body><p><a href="aaa"><span style=" text-decoration: underline; color:#0057ae;">Mein Gerät fehlt</span></a></p></body></html> - - - This can be later reset in deployment settings in the Projects mode. - Dies kann später in den Deploymenteinstellungen im Projektmodus zurückgesetzt werden. - - - Always use this device for architecture %1 for this project - Benutze für die Architektur %1 dieses Projekts immer dieses Gerät - - BareMetal @@ -23487,44 +29040,703 @@ Bitte schließen Sie alle laufenden Instanzen Ihrer Anwendung vor dem Erstellen. Debug server provider: Debug-Server-Provider: - - - CppTools::Internal::CppCodeModelSettingsPage - <i>The Clang Code Model is enabled because the corresponding plugin is loaded.</i> - <i>Das Clang Codemodell ist aktiv, weil das entsprechende Plugin geladen ist.</i> + Bare Metal + Bare Metal - <i>The Clang Code Model is disabled because the corresponding plugin is not loaded.</i> - <i>Das Clang Codemodell ist inaktiv, weil das entsprechende Plugin nicht geladen ist.</i> + Bare Metal Device + Bare-Metal-Gerät - General - Allgemein + Enter GDB commands to reset the board and to write the nonvolatile memory. + Geben Sie GDB-Kommandos ein, um die Platine zurückzusetzen und in den nichtflüchtigen Speicher zu schreiben. - Interpret ambiguous headers as C headers - Mehrdeutige Header als C-Header behandeln + Enter GDB commands to reset the hardware. The MCU should be halted after these commands. + Geben Sie GDB-Kommandos ein, um die Hardware zurückzusetzen. Die MCU sollte danach angehalten sein. - Do not index files greater than - Dateien nicht indizieren, wenn sie größer sind als + New Bare Metal Device Configuration Setup + Einrichtung der Konfiguration für neues Bare-Metal-Gerät - MB - MB + Unknown + Unbekannt - <html><head/><body><p>When precompiled headers are not ignored, the parsing for code completion and semantic highlighting will process the precompiled header before processing any file.</p></body></html> - <html><head/><body><p>Code-Vervollständigung und semantische Hervorhebung verarbeiten die vorkompilierte Headerdatei vor jeder anderen Datei sofern vorkompilierte Headerdateien nicht übersprungen werden.</p></body></html> + The remote executable must be set in order to run a custom remote run configuration. + Die entfernte ausführbare Datei muss eingestellt sein um eine benutzerdefinierte enternte Ausführungskonfiguration zu verwenden. - Ignore precompiled headers - Vorkompilierte Header-Dateien nicht beachten + Custom Executable + Benutzerdefinierte ausführbare Datei - Clang Code Model - Clang Codemodell + Cannot debug: Kit has no device. + Kann nicht debuggen: Das Kit hat kein Gerät. + + + No debug server provider found for %1 + Für %1 wurde kein Debug-Server-Provider gefunden + + + Cannot debug: Local executable is not set. + Kann nicht debuggen: Lokale ausführbare Datei ist nicht angegeben. + + + Cannot debug: Could not find executable for "%1". + Kann nicht debuggen: Die ausführbare Datei "%1" wurde nicht gefunden. + + + Unable to create a uVision project options template. + Es kann keine uVision-Projekteinstellungsvorlage erzeugt werden. + + + Unable to create a uVision project template. + Es kann keine uVision-Projektvorlage erzeugt werden. + + + Choose Keil Toolset Configuration File + + + + Tools file path: + + + + Target device: + + + + Target driver: + + + + Starting %1 ... + + + + Choose the desired startup mode of the GDB server provider. + Wählen Sie den gewünschten Startmodus des GDB-Server-Providers. + + + Startup mode: + Startmodus: + + + Peripheral description files (*.svd) + Peripherie-Beschreibungsdatei (*.svd) + + + Peripheral description file: + Peripherie-Beschreibungsdatei: + + + Startup in TCP/IP Mode + Im TCP/IP-Modus starten + + + Startup in Pipe Mode + Im Pipe-Modus starten + + + Enter TCP/IP hostname of the debug server, like "localhost" or "192.0.2.1". + Geben Sie den TCP/IP-Hostnamen des Debug-Servers ein, etwa "localhost" oder "192.0.2.1". + + + Enter TCP/IP port which will be listened by the debug server. + Geben Sie den TCP/IP-Port ein, an dem der Debug-Server Verbindungen annehmen wird. + + + Host: + Host: + + + Executable file: + Ausführbare Datei: + + + Root scripts directory: + Skript-Wurzelverzeichnis: + + + Configuration file: + Konfigurationsdatei: + + + Additional arguments: + Zusätzliche Argumente: + + + Init commands: + Kommandos zum Einrichten: + + + Reset commands: + Kommandos zum Zurücksetzen: + + + Specify the verbosity level (0..99). + Geben Sie den Detailgrad an (0..99). + + + Verbosity level: + Detailgrad: + + + Continue listening for connections after disconnect. + Nach der Trennung weiterhin auf Verbindungen warten. + + + Generic + + + + Use GDB target extended-remote + + + + Extended mode: + Erweiterter Modus: + + + Reset board on connection. + Board beim Verbinden zurücksetzen. + + + Reset on connection: + Beim Verbinden zurücksetzen: + + + Transport layer type. + Art der Transportschicht. + + + Version: + Version: + + + ST-LINK/V1 + ST-LINK/V1 + + + ST-LINK/V2 + ST-LINK/V2 + + + Keep unspecified + + + + Manage... + Verwalten... + + + None + Keine + + + Not recognized + Nicht erkannt + + + GDB + GDB + + + UVSC + + + + GDB compatible provider engine +(used together with the GDB debuggers). + + + + UVSC compatible provider engine +(used together with the KEIL uVision). + + + + Name + Name + + + Type + Typ + + + Engine + + + + Duplicate Providers Detected + Mehrfach auftretende Provider + + + The following providers were already configured:<br>&nbsp;%1<br>They were not configured again. + Die folgenden Provider wurden bereits konfiguriert:<br>&nbsp;%1<br>Sie wurden nicht noch einmal konfiguriert. + + + Add + Hinzufügen + + + Clone + Klonen + + + Remove + Entfernen + + + Debug Server Providers + Debug-Server-Provider + + + Clone of %1 + Kopie von %1 + + + EBlink + EBlink + + + JLink + JLink + + + OpenOCD + OpenOCD + + + ST-LINK Utility + ST-LINK-Werkzeug + + + Script file: + Skriptdatei: + + + Specify the verbosity level (0 to 7). + + + + Connect under reset (hotplug). + + + + Connect under reset: + + + + Interface type. + + + + Type: + Typ: + + + Specify the speed of the interface (120 to 8000) in kilohertz (kHz). + + + + Speed: + Geschwindigkeit: + + + Do not use EBlink flash cache. + + + + Disable cache: + + + + Shut down EBlink server after disconnect. + + + + Auto shutdown: + + + + SWD + SWD + + + JTAG + JTAG + + + JLink GDB Server (JLinkGDBServerCL.exe) + JLink GDB-Server (JLinkGDBServerCL.exe) + + + JLink GDB Server (JLinkGDBServer) + JLink GDB-Server (JLinkGDBServer) + + + Host interface: + + + + Target interface: + + + + Default + Vorgabe + + + USB + + + + TCP/IP + + + + Compact JTAG + + + + Renesas RX FINE + + + + ICSP + + + + Auto + + + + Adaptive + + + + %1 kHz + + + + IP Address + IP-Adresse + + + Speed + Geschwindigkeit + + + Device: + Geräte: + + + uVision Simulator + uVision Simulator + + + Limit speed to real-time. + + + + Limit speed to real-time: + + + + uVision St-Link + uVision St-Link + + + Port: + Port: + + + 9MHz + 9MHz + + + 4.5MHz + 4,5MHz + + + 2.25MHz + 2,25MHz + + + 1.12MHz + 1,12MHz + + + 560kHz + 560kHz + + + 280kHz + 280kHz + + + 140kHz + 140kHz + + + 4MHz + 4MHz + + + 1.8MHz + 1,8MHz + + + 950kHz + 950kHz + + + 480kHz + 480kHz + + + 240kHz + 240kHz + + + 125kHz + 125kHz + + + 100kHz + 100kHz + + + 50kHz + 50kHz + + + 25kHz + 25kHz + + + 15kHz + 15kHz + + + 5kHz + 5kHz + + + Version + Version + + + Vendor + Anbieter + + + ID + ID + + + Start + Anfang + + + Size + Größe + + + FLASH Start + + + + FLASH Size + + + + RAM Start + + + + RAM Size + + + + Algorithm path. + + + + FLASH: + + + + Start address. + + + + Size. + + + + RAM: + + + + Vendor: + Anbieter: + + + Package: + Paket: + + + Description: + Beschreibung: + + + Memory: + Speicher: + + + Flash algorithm: + + + + Target device not selected. + + + + Available Target Devices + + + + Select Peripheral Description File + Wählen Sie eine Peripherie-Beschreibungsdatei + + + Path + Pfad + + + IAREW %1 (%2, %3) + + + + IAREW + + + + &Compiler path: + &Compiler-Pfad: + + + Platform codegen flags: + Plattformspezifische Optionen für codegen: + + + &ABI: + &ABI: + + + Enter the name of the debugger server provider. + Geben Sie den Namen des Debug-Server-Providers ein. + + + SDCC %1 (%2, %3) + SDCC %1 (%2, %3) + + + SDCC + SDCC + + + uVision JLink + + + + Adapter options: + + + + 50MHz + 50MHz + + + 33MHz + 33MHz + + + 25MHz + 25MHz + + + 20MHz + 20MHz + + + 10MHz + 10MHz + + + 5MHz + 5MHz + + + 3MHz + 3MHz + + + 2MHz + 2MHz + + + 1MHz + 1MHz + + + 500kHz + 500kHz + + + 200kHz + 200kHz + + + KEIL %1 (%2, %3) + KEIL %1 (%2, %3) + + + KEIL + KEIL + + + Deploy to BareMetal Device + + + + Debugger CPU library (depends on a CPU core). + + + + Debugger driver library. + + + + Driver library: + + + + CPU library: + + + + Target driver not selected. + + + + Available Target Drivers + @@ -23573,69 +29785,73 @@ Bitte schließen Sie alle laufenden Instanzen Ihrer Anwendung vor dem Erstellen. Größe - Font style - Schriftstil + Emphasis + - Font capitalization - Schrift-Großschreibung + Capitalization + - Sets the capitalization for the text. - Gibt die Großschreibung für den Text an. + Capitalization for the text. + - Font weight - Schriftstärke + Weight + - Sets the font's weight. - Gibt die Stärke der Schrift an. + Font's weight. + + + + Font's style. + + + + Style color + + + + Hinting + + + + Preferred hinting on the text. + + + + Letter spacing + + + + Letter spacing for the font. + + + + Word spacing + + + + Word spacing for the font. + + + + Auto kerning + + + + Enables or disables the kerning OpenType feature when shaping the text. Disabling this may improve performance when creating or changing the text, at the expense of some cosmetic features. + Style name Stilname - - Sets the font's style. - Gibt den Stil der Schrift an. - Style Stil - - Spacing - Abstand - - - Word - Wort - - - Sets the word spacing for the font. - Gibt den Wortabstand für die Schrift an. - - - Letter - Buchstabe - - - Sets the letter spacing for the font. - Gibt den Buchstabenabstand für die Schrift an. - - - Performance - Leistung - - - Kerning - Unterschneidung - - - Enables or disables the kerning OpenType feature when shaping the text. Disabling this may improve performance when creating or changing the text, at the expense of some cosmetic features. The default value is true. - Aktiviert oder deaktiviert beim Zeichnen des Texts die Unterschneidung von OpenType. Dies zu deaktivieren kann die Geschwindigkeit beim Erstellen oder Ändern des Tests erhöhen, aber das Aussehen verschlechtern. Standardmäßig ist es aktiviert. - Sometimes, a font will apply complex rules to a set of characters in order to display them correctly. In some writing systems, such as Brahmic scripts, this is required in order for the text to be legible, whereas in Latin script, @@ -23646,14 +29862,6 @@ In manchen Schriftsystemem, beispielsweise Brahmi, wäre Text sonst nicht lesbar Verschönerung dient. Die preferShaping-Eigenschaft auf "false" zu setzen deaktiviert diese Funktionalität, wenn sie nicht benötigt wird, was meist die Geschwindigkeit erhöht. - - Hinting preference - Hinting-Einstellung - - - Sets the preferred hinting on the text. - Gibt das bevorzugte Hinting für den Text an. - Prefer shaping Shaping bevorzugen @@ -23665,6 +29873,10 @@ benötigt wird, was meist die Geschwindigkeit erhöht. Text Text + + Text color + + Wrap mode Umbruch @@ -23674,16 +29886,44 @@ benötigt wird, was meist die Geschwindigkeit erhöht. Auslassung - Maximum line count - Maximale Zeilenzahl + Max line count + - Limits the number of lines that the text item will show. - Begrenzt die Anzahl von Zeilen, die das Text-Item anzeigen wird. + Limits the number of lines that the text component will show. + - Alignment - Ausrichtung + Alignment H + + + + Alignment V + + + + Overrides the default rendering type for this component. + + + + Size mode + + + + Min size + + + + Minimum font pixel size of scaled text. + + + + Minimum font point size of scaled text. + + + + Line height for the text. + Format @@ -23693,46 +29933,14 @@ benötigt wird, was meist die Geschwindigkeit erhöht. Render type Rendering-Typ - - Override the default rendering type for this item. - Über das Standard-Rendering für dieses Element hinwegsetzen. - - - Font size mode - Schriftgrößenmodus - Specifies how the font size of the displayed text is determined. Legt fest wie die Schriftgröße des angezeigten Texts bestimmt wird. - - Minimum size - Mindestgröße - - - Pixel - Pixel - - - Specifies the minimum font pixel size of scaled text. - Legt die minimale Fontgröße von skaliertem Text in Pixeln fest. - - - Point - Point - - - Specifies the minimum font point size of scaled text. - Legt die minimale Fontgröße von skaliertem Text in Points fest. - Line height Zeilenhöhe - - Sets the line height for the text. - Gibt die Zeilenhöhe für den Text an. - Line height mode Zeilenhöhen-Modus @@ -23742,163 +29950,6 @@ benötigt wird, was meist die Geschwindigkeit erhöht. Bestimmt, wie die Zeilenhöhe festgelegt wird. - - TextInputSpecifics - - Text Color - Schriftfarbe - - - Selection Color - Farbe der Auswahl - - - Selected Text Color - Farbe von ausgewähltem Text - - - - TextSpecifics - - Text Color - Schriftfarbe - - - Style Color - Stil-Farbe - - - - Android - - No Android arch set by the .pro file. - Die .pro-Datei setzt keine Android-Architektur. - - - Deploying to %1 - Deployment auf %1 - - - Cannot find the androiddeployqt tool. - Kann das androiddeployqt-Werkzeug nicht finden. - - - Cannot find the androiddeploy Json file. - Kann die androiddeploy Json-Datei nicht finden. - - - Uninstall the existing app first - Zuerst die vorhandene App deinstallieren - - - Reset Default Deployment Devices - Auswahl von Geräten für Deployment zurücksetzen - - - Install an APK File - Eine APK-Datei installieren - - - Qt Android Installer - Qt Android Installer - - - Deploy to Android Device - AndroidDeployQtStep default display name - Deployment auf Android-Gerät - - - Cannot find the package name. - Kann den Paketnamen nicht finden. - - - Uninstall previous package %1. - Entferne vorheriges Paket %1. - - - The process "%1" exited normally. - Der Prozess "%1" wurde normal beendet. - - - The process "%1" exited with code %2. - Der Prozess "%1" wurde mit dem Rückgabewert %2 beendet. - - - The process "%1" crashed. - Der Prozess "%1" ist abgestürzt. - - - Package deploy: Failed to pull "%1" to "%2". - Paket-Deployment: "pull" von "%1" nach "%2" scheiterte. - - - Install failed - Installation gescheitert - - - Deploy to Android device or emulator - Deployment auf Android-Gerät oder Emulator - - - Android package (*.apk) - Android-Paket (*.apk) - - - Initializing deployment to Android device/simulator - Initialisiere Deployment zu Android-Gerät oder -Simulator - - - Android: The main ABI of the deployment device (%1) is not selected! The app execution or debugging might not work properly. Add it from Projects > Build > Build Steps > qmake > ABIs. - Android: Die Haupt-ABI des Deployment-Geräts (%1) ist nicht ausgewählt. Die Ausführung oder das Debuggen der App könnte nicht richtig funktionieren. Bitte fügen Sie sie in Projekte > Erstellen > Schritte zum Erstellen > qmake > ABIs hinzu. - - - Starting: "%1" - Starte: "%1" - - - Deployment failed with the following errors: - - - Das Deployment ist mit den folgenden Fehlern gescheitert: - - - - - -Uninstalling the installed package may solve the issue. -Do you want to uninstall the existing package? - -Das installierte Paket zu deinstallieren könnte das Problem lösen. -Möchten Sie das vorhandene Paket deinstallieren? - - - Pulling files necessary for debugging. - Die für das Debuggen erforderlichen Dateien werden installiert. - - - Package deploy: Running command "%1". - Paket-Deployment: Führe Kommando "%1" aus. - - - %1 needs additional settings to enable Android support. You can configure those settings in the Options dialog. - %1 benötigt zusätzliche Einstellungen, um die Android-Unterstützung zu aktivieren. Sie können diese im Einstellungsdialog konfigurieren. - - - - BareMetal - - Bare Metal - Bare Metal - - - Bare Metal Device - Bare-Metal-Gerät - - - GDB commands: - GDB-Kommandos: - - CppEditor::Internal::CppIncludeHierarchyFactory @@ -23928,8 +29979,8 @@ Möchten Sie das vorhandene Paket deinstallieren? VirtualFunctionsAssistProcessor - ...searching overrides - ...Suche überschriebene Methoden + collecting overrides ... + @@ -23989,8 +30040,8 @@ Möchten Sie das vorhandene Paket deinstallieren? Das zum Signieren der Anwendung verwendete Provisioning-Profil "%1" (%2) deckt das Gerät %3 (%4) nicht ab. Deployment auf dieses wird scheitern. - Deploy to iOS device or emulator - Deployment auf iOS-Gerät oder Emulator + Deploy to iOS device + @@ -24225,6 +30276,14 @@ Möchten Sie das vorhandene Paket deinstallieren? No build found in %1 matching project %2. In %1 wurde kein dem Projekt %2 entsprechender Build gefunden. + + Import Warning + + + + Import Build + + %1 - temporary %1 - temporär @@ -24300,13 +30359,25 @@ Möchten Sie das vorhandene Paket deinstallieren? Flickable Flickable + + Allows users to drag or flick a flickable component. + + + + Whether the surface may be dragged beyond the Flickable's boundaries, or overshoot the Flickable's boundaries when flicked. + + + + Whether the Flickable will give a feeling that the edges of the view are soft, rather than a hard physical boundary. + + Press delay Druckverzögerung - Holds the time to delay (ms) delivering a press to children of the Flickable. - Enthält die Zeit (ms), um die die Weitergabe eines Druckes an die Children des Flickable verzögert wird. + Time to delay delivering a press to children of the Flickable in milliseconds. + Pixel aligned @@ -24328,22 +30399,6 @@ cursor or touchpoint when pressed remains under that point. ein Ziehen des Inhalts zu beginnen, wird der Inhalt springen. Dadurch bleibt das Inhaltspixel, das beim Drücken unter dem Zeiger oder Berührungspunkt war, unter diesem Punkt. - - Content size - Größe des Inhalts - - - Content - Inhalt - - - Origin - Ursprung - - - Margins - Ränder - Flick direction Richtung der Flickable-Interaktion @@ -24352,26 +30407,14 @@ das beim Drücken unter dem Zeiger oder Berührungspunkt war, unter diesem Punkt Behavior Verhalten - - Determines whether the surface may be dragged beyond the Flickable's boundaries, or overshoot the Flickable's boundaries when flicked. - Bestimmt, ob die Oberfläche über die Ränder des Flickable-Items hinaus gezogen werden darf oder sie beim Flicken überschreiten darf. - Movement Bewegung - - Determines whether the Flickable will give a feeling that the edges of the view are soft, rather than a hard physical boundary. - Bestimmt, ob das Flickable-Item den Anschein erweckt, dass die Ränder der Ansicht nachgeben, anstelle eines harten Anschlags. - Interactive Interaktiv - - Describes whether the user can interact with the Flickable. A user cannot drag or flick a Flickable that is not interactive. - Beschreibt, ob der Benutzer mit dem Flickable-Item interagieren kann. Ein Benutzer kann ein Flickable-Item nicht ziehen oder flicken, wenn es nicht interaktiv ist. - Max. velocity Maximale Geschwindigkeit @@ -24396,69 +30439,41 @@ das beim Drücken unter dem Zeiger oder Berührungspunkt war, unter diesem Punkt Erweitert - Origin - Ursprung + Sets focus on the component within the enclosing focus scope. + - Scale - Skalieren + Focus on tab + - Rotation - Drehung + Adds the component to the tab focus chain. + - State - State + Position of the component's baseline in local coordinates. + Enabled Aktiviert - - Accept mouse and keyboard events - Maus- und Tastaturereignisse akzeptieren - Smooth Glatt - - Smooth sampling active - Geglättetes Sampling aktiv - Antialiasing Kantenglättung - - Anti-aliasing active - Kantenglättung aktiv - Focus Fokus - - Holds whether the item has focus within the enclosing FocusScope. - Enhält, ob das Item den Fokus innerhalb des umgebenden FocusScope hat. - - - Active focus on tab - Aktiver Fokus auf Reiter - - - Holds whether the item wants to be in the tab focus chain. - Enthält, ob das Item in der Tab-Fokus-Kette enthalten sein will. - Baseline offset Abstand der Basislinie - - Specifies the position of the item's baseline in local coordinates. - Legt die Position der Basislinie des Items in lokalen Koordinaten fest. - ColumnSpecifics @@ -24481,8 +30496,12 @@ das beim Drücken unter dem Zeiger oder Berührungspunkt war, unter diesem Punkt GeometrySection - Geometry - Geometrie + Geometry - 2D + + + + This property is defined by an anchor or a layout. + Position @@ -24492,44 +30511,52 @@ das beim Drücken unter dem Zeiger oder Berührungspunkt war, unter diesem Punkt Size Größe + + W + width + The width of the object + + + + Width + Breite + + + H + height + The height of the object + H + + + Height + Höhe + + + Rotation + Drehung + + + Scale + Skalieren + + + Z stack + + + + Origin + Ursprung + ItemPane - - Type - Typ - - - Change the type of this item. - Den Typ dieses Elements verändern. - - - id - Id - - - Toggles whether this item is exported as an alias property of the root item. - Wählt aus, ob dieses Element als ein Alias des Wurzelelements exportiert wird. - - - Custom id - Benutzerdefinierte Id - - - customId - customId - - - Add Annotation - Annotation hinzufügen - Visibility Sichtbarkeit - Is Visible - sichtbar + Visible + Sichtbar Clip @@ -24543,10 +30570,6 @@ das beim Drücken unter dem Zeiger oder Berührungspunkt war, unter diesem Punkt Layout Layout - - Advanced - Erweitert - LayoutSection @@ -24590,557 +30613,6 @@ das beim Drücken unter dem Zeiger oder Berührungspunkt war, unter diesem Punkt Ausführung mit Fehler beendet. - - QmakeProjectManager - - The header file - Header-Datei - - - &Sources - &Quellen - - - Widget librar&y: - Widget-&Bibliothek: - - - Widget project &file: - Widget-&Projektdatei: - - - Widget h&eader file: - Widget-&Header-Datei: - - - The header file has to be specified in source code. - Die Header-Datei muss im Quellcode angegeben werden. - - - Widge&t source file: - Widget-&Quelldatei: - - - Widget &base class: - &Basisklasse des Widgets: - - - QWidget - QWidget - - - Plugin class &name: - Klassen&name des Plugins: - - - Plugin &header file: - He&ader-Datei des Plugins: - - - Plugin sou&rce file: - Q&uelldatei des Plugins: - - - Icon file: - Symboldatei: - - - &Link library - &Bibliothek - - - Create s&keleton - &Gerüst erzeugen - - - Include pro&ject - Pro&jekt einbinden - - - &Description - &Beschreibung - - - G&roup: - &Kategorie: - - - &Tooltip: - &Tooltip: - - - W&hat's this: - W&hat's this: - - - The widget is a &container - &Containerwidget - - - Property defa&ults - &Vorgabewerte der Eigenschaften - - - dom&XML: - dom&XML: - - - Select Icon - Symbol auswählen - - - Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) - Symboldateien (*.png *.ico *.jpg *.xpm *.tif *.svg) - - - WizardPage - WizardPage - - - Plugin and Collection Class Information - Informationen zum Plugin und der Collection-Klasse - - - Specify the properties of the plugin library and the collection class. - Geben Sie die Eigenschaften der Plugin-Bibliothek und der Collection-Klasse an. - - - Collection class: - Collection-Klasse: - - - Collection header file: - Collection-Header-Datei: - - - Collection source file: - Collection-Quelldatei: - - - Plugin name: - Name des Plugins: - - - Resource file: - Ressourcendatei: - - - icons.qrc - icons.qrc - - - Plugin Details - Plugin-Details - - - Custom Qt Widget Wizard - Assistent zur Erstellung benutzerdefinierter Qt-Widgets - - - Custom Widget List - Benutzerdefinierte Widgets - - - Specify the list of custom widgets and their properties. - Erstellen Sie eine Liste der benutzerdefinierten Widgets und ihrer Eigenschaften. - - - Widget &Classes: - Widget-&Klassen: - - - ... - ... - - - Custom Widgets - Benutzerdefinierte Widgets - - - Library: - Bibliothek: - - - Library file: - Bibliotheksdatei: - - - Include path: - Include-Pfad: - - - Package: - Paket: - - - Platform - Plattform - - - Linux - Linux - - - Mac - Mac - - - Windows - Windows - - - Linkage: - Linken: - - - Dynamic - dynamisch - - - Static - statisch - - - Mac: - Mac: - - - Library - Bibliothek - - - Framework - Framework - - - Windows: - Windows: - - - Library inside "debug" or "release" subfolder - Bibliothek innerhalb "debug" oder "release" Unterverzeichnis - - - Add "d" suffix for debug version - Suffix "d" für Debug-Version anfügen - - - Remove "d" suffix for release version - Suffix "d" für Release-Version entfernen - - - Library type: - Art der Bibliothek: - - - - Debugger - - Auto-detected CDB at %1 - Automatisch bestimmter CDB bei %1 - - - System %1 at %2 - %1: Debugger engine type (GDB, LLDB, CDB...), %2: Path - %1 von System in %2 - - - Not recognized - Nicht erkannt - - - Could not determine debugger type - Der Typ des Debuggers konnte nicht bestimmt werden - - - Unknown - Unbekannt - - - Name: - Name: - - - Path: - Pfad: - - - Type: - Typ: - - - ABIs: - ABIs: - - - Version: - Version: - - - 64-bit version - 64-bit-Version - - - 32-bit version - 32-bit-Version - - - Specify the path to the <a href="%1">Windows Console Debugger executable</a> (%2) here. - Label text for path configuration. %2 is "x-bit version". - Geben Sie hier den Pfad zur ausführbaren Datei des <a href="%1">Windows Console Debuggers</a> (%2) an. - - - Auto-detected uVision at %1 - Automatisch bestimmte uVision bei %1 - - - - QmakeProjectManager - - Add Library - Bibliothek hinzufügen - - - Library Type - Typ der Bibliothek - - - Choose the type of the library to link to - Wählen Sie den Typ der Bibliothek, gegen die Sie Ihr Projekt linken möchten - - - Internal library - Interne Bibliothek - - - Links to a library that is located in your build tree. -Adds the library and include paths to the .pro file. - Linkt gegen eine Bibliothek, die sich in Ihrem Build-Baum befindet. -Der Pfad zur Bibliothek und der Pfad zu den Headerdateien werden zur .pro-Datei hinzugefügt. - - - External library - Externe Bibliothek - - - Links to a library that is not located in your build tree. -Adds the library and include paths to the .pro file. - Linkt gegen eine Bibliothek, die sich nicht in Ihrem Build-Baum befindet. -Der Pfad zur Bibliothek und der Pfad zu den Headerdateien werden zur .pro-Datei hinzugefügt. - - - System library - Systembibliothek - - - Links to a system library. -Neither the path to the library nor the path to its includes is added to the .pro file. - Linkt gegen eine Systembibliothek. -Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-Datei hinzugefügt. - - - System package - Systempaket - - - Links to a system library using pkg-config. - Verweist auf eine Systembibliothek unter Verwendung von pkg-config. - - - Type - Typ - - - Details - Details - - - Internal Library - Interne Bibliothek - - - Choose the project file of the library to link to - Geben Sie die Projektdatei der zu verwendenden Bibliothek an - - - External Library - Externe Bibliothek - - - Specify the library to link to and the includes path - Geben Sie den Pfad und die Include-Pfade der Bibliothek an - - - System Library - Systembibliothek - - - Specify the library to link to - Wählen Sie die zu verwendende Bibliothek - - - System Package - Systempaket - - - Specify the package to link to - Geben Sie das zu bindende Paket an - - - Summary - Zusammenfassung - - - The following snippet will be added to the<br><b>%1</b> file: - Die folgende Angabe wird in die Datei <br><b>%1</b> eingefügt: - - - <New class> - <Neue Klasse> - - - Confirm Delete - Löschen Bestätigen - - - Delete class %1 from list? - Soll die Klasse %1 aus der Liste gelöscht werden? - - - Qt Custom Designer Widget - Benutzerdefiniertes Widget für Qt Designer - - - Creates a Qt Custom Designer Widget or a Custom Widget Collection. - Erstellt ein oder mehrere benutzerdefinierte Widgets für Qt Designer. - - - This wizard generates a Qt Designer Custom Widget or a Qt Designer Custom Widget Collection project. - Dieser Assistent erstellt ein Projekt mit einem oder mehreren benutzerdefinierten Widgets für Qt Designer. - - - Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. - Die Erzeugung von mehreren Bibliotheken (%1, %2) in einem Projekt (%3) wird nicht unterstützt. - - - Unable to start "%1" - "%1" kann nicht gestartet werden - - - The application "%1" could not be found. - Die Anwendung "%1" konnte nicht gefunden werden. - - - Qt Designer is not responding (%1). - Qt Designer antwortet nicht (%1). - - - Unable to create server socket: %1 - Der Server-Socket konnte nicht erzeugt werden: %1 - - - %1 Dynamic - %1 dynamisch - - - %1 Static - %1 statisch - - - %1 Framework - %1 Framework - - - %1 Library - %1 Bibliothek - - - Debug - Debug - - - Release - Release - - - QML Debugging - QML-Debuggen - - - qmake build configuration: - qmake Build-Konfiguration: - - - Additional arguments: - Zusätzliche Argumente: - - - Effective qmake call: - Resultierender qmake-Aufruf: - - - ABIs: - ABIs: - - - Qt Quick Compiler - Qt-Quick-Compiler - - - Separate Debug Information - Separate Debug-Information - - - The option will only take effect if the project is recompiled. Do you want to recompile now? - Diese Einstellung wird nur nach einer Neuerstellung des Projekts wirksam. Möchten Sie das Projekt neu erstellen? - - - <b>qmake:</b> No Qt version set. Cannot run qmake. - <b>qmake:</b> Es ist keine Qt-Version eingestellt. qmake kann nicht ausgeführt werden. - - - <b>qmake:</b> %1 %2 - <b>qmake:</b> %1 %2 - - - Subdirs Project - Subdirs-Projekt - - - Creates a qmake-based subdirs project. This allows you to group your projects in a tree structure. - Erstellt ein qmake-basiertes Projekt vom Typ subdirs. Dies ermöglicht es Ihnen, Ihre Projekte in einer Baumstruktur zu gruppieren. - - - Done && Add Subproject - Abschließen und Unterprojekt hinzufügen - - - Finish && Add Subproject - Abschließen und Unterprojekt hinzufügen - - - New Subproject - Title of dialog - Neues Teilprojekt - - - This wizard generates a Qt Subdirs project. Add subprojects to it later on by using the other wizards. - Dieser Assistent erstellt ein Qt-Projekt vom Typ subdirs. Unterprojekte können später mit anderen Assistenten hinzugefügt werden. - - - - QtSupport - - The Qt version is invalid: %1 - %1: Reason for being invalid - Ungültige Qt-Version: %1 - - - The qmake command "%1" was not found or is not executable. - %1: Path to qmake executable - Das qmake-Kommando "%1" konnte nicht gefunden werden, oder die Datei ist nicht ausführbar. - - CppEditor::Internal::CppPreProcessorDialog @@ -25158,10 +30630,6 @@ Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-D Text Input Texteingabe - - Mouse selection mode - Mausauswahl-Modus - Input mask Eingabemaske @@ -25170,10 +30638,6 @@ Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-D Echo mode Echo-Modus - - Pass. char - Passwort-Zeichen - Character displayed when users enter passwords. Das Zeichen, das bei der Eingabe von Passwörtern angezeigt wird. @@ -25182,30 +30646,14 @@ Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-D Tab stop distance Tabulatorbreite - - Sets the default distance, in device units, between tab stops. - Legt den vorgegebenen Abstand zwischen Tabulatorstopps in device units fest. - Text margin Textrand - - Sets the margin, in pixels, around the text in the Text Edit. - Legt die Randbreite um den Text in einem Text Edit in Pixeln fest. - Maximum length Maximale Länge - - Sets the maximum permitted length of the text in the TextInput. - Legt die maximal erlaubte Länge von Text im TextInput-Item fest. - - - Flags - Optionen - Read only Schreibgeschützt @@ -25215,8 +30663,36 @@ Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-D Einfügemarke sichtbar - Active focus on press - Fokussieren durch Betätigen + Selection color + + + + Selected text color + + + + Selection mode + + + + Password character + + + + Default distance between tab stops in device units. + + + + Margin around the text in the Text Edit in pixels. + + + + Maximum permitted length of the text in the Text Input. + + + + Focus on press + Fokussieren durch Betätigen Auto scroll @@ -25239,220 +30715,6 @@ Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-D Mit der Tastatur auswählen - - Qnx - - Warning: "slog2info" is not found on the device, debug output not available. - Warnung: "slog2info" konnte nicht auf dem Gerät gefunden werden, es ist daher keine Debugausgabe verfügbar. - - - Cannot show slog2info output. Error: %1 - Die Ausgabe des Kommandos slog2info kann nicht angezeigt werden. Fehler: %1 - - - - RemoteLinux - - Exit code is %1. stderr: - Rückgabewert %1. Fehlerausgabe: - - - - QmakeProjectManager - - General - Allgemein - - - This kit cannot build this project since it does not define a Qt version. - Das Kit kann dieses Projekt nicht erstellen, da in ihm keine Qt-Version festgelegt ist. - - - Error: - Fehler: - - - Warning: - Warnung: - - - The build directory contains a build for a different project, which will be overwritten. - Das Build-Verzeichnis enthält einen Build eines anderen Projektes, welcher überschrieben wird. - - - %1 The build will be overwritten. - %1 error message - %1 Der Build wird überschrieben. - - - The build directory should be at the same level as the source directory. - Das Build-Verzeichnis sollte sich auf der Ebene des Quellverzeichnisses befinden. - - - Could not parse Makefile. - Das Makefile konnte nicht ausgewertet werden. - - - The Makefile is for a different project. - Das Makefile ist für ein anderes Projekt. - - - The build type has changed. - Die Art des Builds wurde geändert. - - - The qmake arguments have changed. - Die Argumente für qmake wurden geändert. - - - The mkspec has changed. - Die mkspec wurde geändert. - - - Release - Shadow build directory suffix - Non-ASCII characters in directory suffix may cause build issues. - Release - - - Debug - Shadow build directory suffix - Non-ASCII characters in directory suffix may cause build issues. - Debug - - - Profile - Shadow build directory suffix - Non-ASCII characters in directory suffix may cause build issues. - Profile - - - No Qt version set in kit. - Im Kit ist keine Qt-Version gesetzt. - - - Qt version is invalid. - Ungültige Qt-Version. - - - No C++ compiler set in kit. - Im Kit ist kein C++-Compiler eingerichtet. - - - Project is part of Qt sources that do not match the Qt defined in the kit. - Das Projekt ist Teil von Qt-Quellen, die nicht zum im Kit definierten Qt passen. - - - Build - Erstellen - - - Build "%1" - "%1" erstellen - - - Run qmake - qmake ausführen - - - Rebuild - Neu erstellen - - - Clean - Bereinigen - - - Build &Subproject - &Unterprojekt erstellen - - - Build &Subproject "%1" - &Unterprojekt "%1" erstellen - - - Rebuild Subproject - Unterprojekt neu erstellen - - - Rebuild Subproject "%1" - Unterprojekt "%1" neu erstellen - - - Clean Subproject - Unterprojekt bereinigen - - - Clean Subproject "%1" - Unterprojekt "%1" bereinigen - - - Build File - Datei erstellen - - - Build File "%1" - Datei "%1" erstellen - - - Ctrl+Alt+B - Ctrl+Alt+B - - - Add Library... - Bibliothek hinzufügen... - - - QMake - QMake - - - - ImportManagerComboBox - - Add new import - Neuen Import hinzufügen - - - <Add Import> - <Import hinzufügen> - - - - Qnx - - &Compiler path: - &Compiler-Pfad: - - - SDP path: - SDP refers to 'Software Development Platform'. - SDP-Pfad: - - - &ABI: - &ABI: - - - - QtObjectPane - - Type - Typ - - - Change the type of this item. - Den Typ dieses Elements ändern. - - - id - Id - - - Toggles whether this item is exported as an alias property of the root item. - Wählt aus, ob dieses Element als ein Alias des Wurzelelements exportiert wird. - - WindowSpecifics @@ -25463,10 +30725,42 @@ Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-D Title Titel + + Position + Position + Size Größe + + W + width + The width of the object + + + + H + height + The height of the object + H + + + Minimum size + Mindestgröße + + + Minimum size of the window. + + + + Maximum size + Höchstgröße + + + Maximum size of the window. + + Color Farbe @@ -25479,6 +30773,22 @@ Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-D Opacity Deckkraft + + Content orientation + + + + Flags + + + + Modality + + + + Visibility + Sichtbarkeit + FileResourcesModel @@ -25487,85 +30797,6 @@ Weder der Pfad zur Bibliothek noch der Pfad zu den Headerdateien wird zur .pro-D Datei öffnen - - QmlDesigner::ImportLabel - - Remove Import - Import löschen - - - - UpdateInfo::Internal::SettingsWidget - - Configure Filters - Filterkonfiguration - - - Automatic Check for Updates - Automatisch nach Aktualisierungen suchen - - - Check interval basis: - Nach Aktualisierungen suchen: - - - Next check date: - Nächste Suche am: - - - Last check date: - Vorige Suche am: - - - Not checked yet - Noch nicht gesucht - - - Check Now - Jetzt suchen - - - Automatically runs a scheduled check for updates on a time interval basis. The automatic check for updates will be performed at the scheduled date, or the next startup following it. - Sucht in regelmäßigen Abständen automatisch nach Aktualisierungen. Dies erfolgt zum angegebenen Zeitpunkt oder beim nächsten darauf folgenden Neustart. - - - - Bazaar - - Uncommit - Commit rückgängig machen - - - Keep tags that point to removed revisions - Behalte Tags, die auf gelöschte Revisionen verweisen - - - Only remove the commits from the local branch when in a checkout - Nur während eines Checkouts Commits von lokalem Branch entfernen - - - Revision: - Revision: - - - If a revision is specified, uncommits revisions to leave the branch at the specified revision. -For example, "Revision: 15" will leave the branch at revision 15. - Wenn eine Revision angegeben wurde, werden so viele Revisionen entfernt, bis der Branch auf der angegebenen Revision steht. -Zum Beispiel bewirkt die Angabe "Revision: 15" dass der Branch auf Revision 15 steht. - - - Last committed - Letzter Commit - - - Dry Run - Probelauf - - - Test the outcome of removing the last committed revision, without actually removing anything. - Testet das Ergebnis des Entfernens der zuletzt abgegebenen Revision, ohne wirklich etwas zu löschen. - - Beautifier::Internal::ConfigurationDialog @@ -25619,11 +30850,11 @@ Zum Beispiel bewirkt die Angabe "Revision: 15" dass der Branch auf Rev Suchen && &Ersetzen - Sear&ch for: + Search f&or: Suche &nach: - Case sensiti&ve + &Case sensitive &Groß-/Kleinschreibung @@ -25712,10 +30943,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeiche Core::Internal::LocatorSettingsWidget - - Configure Filters - Filterkonfiguration - Add... Hinzufügen... @@ -25789,19 +31016,6 @@ Errors: Die automatische Ausgabe der Typen des QML-Modules schlug fehl. Fehler: %1 - - - Automatic type dump of QML module failed. -First 10 lines or errors: - -%1 -Check 'General Messages' output pane for details. - Die automatische Ausgabe der Typen des QML-Modules schlug fehl. -Führende 10 Zeilen der Ausgabe beziehungsweise Fehlermeldungen: - -%1 -Der Ausgabebereich 'Allgemeine Ausgaben' enthält weitere Informationen. - QML module does not contain information about components contained in plugins. @@ -25814,6 +31028,14 @@ Modul-Pfad: %1 enthält keine Informationen über die in Plugins verwendeten Komponenten. Siehe dazu auch "Using QML Modules with Plugins" in der Dokumentation. + + Automatic type dump of QML module failed. +First 10 lines or errors: + +%1 +Check General Messages for details. + + Warnings while parsing QML type information of %1: %2 @@ -25872,25 +31094,6 @@ Bitte erstellen Sie die Anwendung qmldump auf der Einstellungsseite der Qt-Versi Text löschen - - Android - - Could not run: %1 - Keine Ausführung möglich: %1 - - - No devices found in output of: %1 - In der Ausgabe von %1 konnten keine Geräte festgestellt werden - - - Error Creating AVD - Fehler beim Erstellen des AVD - - - Configure Android... - Android konfigurieren... - - Beautifier @@ -25927,6 +31130,11 @@ Bitte erstellen Sie die Anwendung qmldump auf der Einstellungsseite der Qt-Versi Menu entry An &Einfügemarke formatieren + + Format &Line(s) + Menu entry + + &Disable Formatting for Selected Text Menu entry @@ -25984,6 +31192,14 @@ Bitte erstellen Sie die Anwendung qmldump auf der Einstellungsseite der Qt-Versi Ctrl+Shift+F3 Ctrl+Shift+F3 + + Select All + Alle auswählen + + + Ctrl+Alt+Return + Ctrl+Alt+Return + Replace Ersetzen @@ -26109,6 +31325,10 @@ Bitte erstellen Sie die Anwendung qmldump auf der Einstellungsseite der Qt-Versi Continue Fortsetzen + + Searching... + Suche... + No matches found. Es wurden keine Treffer gefunden. @@ -26135,6 +31355,10 @@ Bitte erstellen Sie die Anwendung qmldump auf der Einstellungsseite der Qt-Versi Expand All Alle aufklappen + + Filter Results + Resultate filtern + %1 %2 %1 %2 @@ -26154,20 +31378,16 @@ Bitte erstellen Sie die Anwendung qmldump auf der Einstellungsseite der Qt-Versi Execute Custom Commands Benutzerdefinierte Kommandos ausführen + + Runs an arbitrary command with arguments. The command is searched for in the PATH environment variable if needed. Note that the command is run directly, not in a shell. + Führt beliebige Kommandos mit Argumenten aus. Das Kommando wird nach Bedarf in der PATH Umgebungsvariable gesucht. Beachten Sie, dass das Kommando direkt und nicht in einer Shell ausgeführt wird. + Previous command is still running ("%1"). Do you want to kill it? Das vorangegangene Kommando ("%1") läuft noch. Möchten Sie es beenden? - - Command "%1" finished. - Das Kommando "%1" wurde beendet. - - - Command "%1" failed. - Das Kommando "%1" schlug fehl. - Starting command "%1". Starte Kommando "%1". @@ -26176,10 +31396,6 @@ Möchten Sie es beenden? Kill Previous Process? Laufenden Prozess beenden? - - Could not start process: %1. - Der Prozess konnte nicht gestartet werden: %1. - Could not find executable for "%1". Die ausführbare Datei von "%1" konnte nicht gefunden werden. @@ -26191,6 +31407,10 @@ Möchten Sie es beenden? Files in File System Dateien aus Dateisystem + + Opens a file given by a relative path to the current document, or absolute path. "~" refers to your home directory. You have the option to create a file if it does not exist yet. + Öffnet eine Datei mit einem Pfad relativ zum aktuellen Dokument oder einem absoluten Pfad. "~" bezieht sich auf Ihr Benutzerverzeichnis. Sie haben die Option eine Datei zu erstellen, wenn diese noch nicht existiert. + Create and Open "%1" Erzeuge und öffne "%1" @@ -26271,6 +31491,10 @@ Möchten Sie es beenden? Core::Internal::LocatorWidget + + Open as Centered Popup + Als zentriertes Pop-up öffnen + Refresh Aktualisieren @@ -26295,65 +31519,6 @@ Möchten Sie es beenden? Offene Dokumente - - Debugger - - Attach to Process Not Yet Started - An noch nicht gestarteten Prozess anhängen - - - Reset - Zurücksetzen - - - Reopen dialog when application finishes - Dialog nach Beendigung der Anwendung wieder öffnen - - - Reopens this dialog when application finishes. - Öffnet den Dialog nach Beendigung der Anwendung wieder. - - - Continue on attach - Bei Anhängen fortsetzen - - - Debugger does not stop the application after attach. - Wenn aktiviert, wird der Debugger die Anwendung nach dem Anhängen nicht unterbrechen. - - - Start Watching - Beobachtung starten - - - Kit: - Kit: - - - Executable: - Ausführbare Datei: - - - Stop Watching - Nicht mehr beobachten - - - Select valid executable. - Bitte wählen Sie eine gültige ausführbare Datei. - - - Not watching. - Keine Beobachtung. - - - Waiting for process to start... - Warte auf Start des Prozesses... - - - Attach - Anhängen - - ProjectExplorer::SelectableFilesDialogEditFiles @@ -26368,13 +31533,6 @@ Möchten Sie es beenden? Vorhandenes Verzeichnis hinzufügen - - Qnx - - Remote QNX process %1 - Entfernter QNX-Prozess %1 - - FontSettings_C_OCCURRENCES_UNUSED @@ -26397,145 +31555,6 @@ Möchten Sie es beenden? Der oberste Pfad zum Repository, in dem sich das aktuelle Projekt befindet. - - WinRt::Internal::WinRtDeployStepFactory - - Run windeployqt - windeployqt ausführen - - - - WinRt::Internal::WinRtDeployConfiguration - - Run windeployqt - windeployqt ausführen - - - Deploy to Windows Phone - Deployment auf Windows Phone - - - Deploy to Windows Phone Emulator - Deployment auf Windows Phone Emulator - - - - WinRt::Internal::WinRtDevice - - Windows Runtime (Local) - Windows Runtime (lokal) - - - Windows Phone - Windows Phone - - - Windows Phone Emulator - Windows Phone Emulator - - - - WinRt::Internal::WinRtDeviceFactory - - Error while executing winrtrunner: %1 - Fehler bei der Ausführung von winrtrunner: %1 - - - winrtrunner returned with exit code %1. - winrtrunner wurde beendet, Rückgabewert %1. - - - Found %n Windows Runtime devices. - - Ein Windows Runtime-Gerät gefunden. - %n Windows Runtime-Geräte gefunden. - - - - %n of them are new. - - Eins von ihnen ist neu. - %n von ihnen sind neu. - - - - Windows Runtime local UI - Windows Runtime lokale UI - - - - WinRt::Internal::WinRtPackageDeploymentStep - - Run windeployqt - windeployqt ausführen - - - No executable to deploy found in %1. - Keine ausführbare Datei für Deployment gefunden in %1. - - - Cannot find windeployqt.exe in "%1". - windeployqt.exe wurde nicht in "%1" gefunden. - - - Cannot parse manifest file %1. - Kann Manifest-Datei nicht auswerten: %1. - - - File %1 is outside of the executable's directory. These files cannot be installed. - Die Datei %1 ist außerhalb des Verzeichnisses der ausführbaren Datei. Solche Dateien können nicht installiert werden. - - - Cannot open mapping file %1 for writing. - Die Zuordnungs-Datei %1 kann nicht zum Schreiben geöffnet werden. - - - - WinRt::Internal::WinRtQtVersion - - Windows Phone - Windows Phone - - - Windows Runtime - Windows Runtime - - - - WinRt::Internal::WinRtRunConfiguration - - Uninstall package after application stops - Deinstalliere Paket nach der Ausführung - - - Enable localhost communication for clients - Localhost-Kommunikation für Clients aktivieren - - - Enable localhost communication for servers (requires elevated rights) - Localhost-Kommunikation für Server aktivieren (benötigt erweiterte Berechtigungen) - - - Run App Package - App-Paket ausführen - - - - ClangCodeModel::Internal::ClangCompletionAssistProcessor - - Location: %1 - Parent folder for proposed #include completion - Pfad: %1 - - - - ClangCodeModel::Internal::ModelManagerSupport - - Clang - Display name - Clang - - QmlDesigner @@ -26578,28 +31597,6 @@ Möchten Sie es beenden? An der rechten Seite des Ziels verankern. - - Qnx - - Attach to remote QNX application... - An entfernte QNX-Anwendung anhängen... - - - - Ios::Internal::IosPresetBuildStep - - Reset to Default - Auf Vorgabe zurücksetzen - - - Command: - Kommando: - - - Arguments: - Argumente: - - Utils::ProxyCredentialsDialog @@ -26662,231 +31659,8 @@ Möchten Sie es beenden? Bestimmt die Position der Tabs. - - Tracing - - Jump to previous event. - Gehe zu vorangehendem Ereignis. - - - Jump to next event. - Gehe zu nächstem Ereignis. - - - Show zoom slider. - Zoom-Schieberegler anzeigen. - - - Select range. - Bereich auswählen. - - - View event information on mouseover. - Information zu Ereignis anzeigen, wenn sich der Mauszeiger darüber befindet. - - - Collapse category - Kategorie einklappen - - - Expand category - Kategorie expandieren - - - - Qnx - - Qt library to deploy: - Zum Deployment vorgesehene Qt-Bibliothek: - - - Deploy - Deployment - - - Remote directory: - Entferntes Verzeichnis: - - - Close - Schließen - - - Closing the dialog will stop the deployment. Are you sure you want to do this? - Das Schließen des Dialogs bricht das Deployment ab. Sind Sie sicher? - - - Please input a remote directory to deploy to. - Bitte geben Sie ein entferntes Verzeichnis für das Deployment an. - - - Connection failed: %1 - Fehler beim Herstellen der Verbindung: %1 - - - The remote directory "%1" already exists. Deploying to that directory will remove any files already present. - -Are you sure you want to continue? - Das entfernte Verzeichnis "%1" existiert bereits. Das Deployment in dieses Verzeichnis wird alle gegenwärtig darin befindlichen Dateien löschen. - -Möchten Sie fortfahren? - - - Checking existence of "%1" - Prüfe Vorhandensein von "%1" - - - Removing "%1" - Lösche "%1" - - - Deploy Qt to QNX Device - Qt-Deployment auf QNX-Gerät - - - - Qnx - - Generate kits - Kits erzeugen - - - Configuration Information: - Konfigurationsinformationen: - - - Name: - Name: - - - Version: - Version: - - - Host: - Host: - - - Target: - Ziel: - - - Remove - Entfernen - - - Select QNX Environment File - QNX Umgebungsdatei auswählen - - - Warning - Warnung - - - Configuration already exists or is invalid. - Die Konfiguration existiert bereits oder ist ungültig. - - - Remove QNX Configuration - Entferne QNX Konfiguration - - - Are you sure you want to remove: - %1? - Möchten Sie - %1 -wirklich löschen? - - - QNX - QNX - - - Add... - Hinzufügen... - - - - ColorEditor - - Color - Farbe - - - Solid Color - Vollfarbe - - - Linear Gradient - Linearer Gradient - - - Defines the start point for color interpolation. - Legt den Startpunkt für Farb-Interpolation fest. - - - Defines the end point for color interpolation. - Legt den Endpunkt für Farb-Interpolation fest. - - - Radial Gradient - Radialer Gradient - - - Defines the center point. - Legt den Mittelpunkt fest. - - - Defines the focal point. - Legt den Brennpunkt fest. - - - Defines the focal radius. Set to 0 for simple radial gradients. - Legt den Brennradius fest. Wählen Sie 0 für einfache radiale Gradienten. - - - Conical Gradient - Konischer Gradient - - - Defines the start angle for the conical gradient. The value is in degrees (0-360). - Legt den Anfangswinkel für den konischen Gradienten fest. Der Wert ist in Grad (0-360). - - - Gradient Picker Dialog - Gradienten-Auswahldialog - - - Original - Original - - - New - Neu - - - Recent - Zuletzt verwendet - - - Open Color Dialog - Farb-Auswahldialog öffnen - - - Transparent - Transparent - - StatesList - - Collapse - Einklappen - - - Expand - Erweitern - Add a new state. Einen neuen State hinzufügen. @@ -26924,6 +31698,18 @@ wirklich löschen? Utils::FileWizardPage + + Choose the Location + Pfadangabe + + + File name: + Dateiname: + + + Path: + Pfad: + Location Ort @@ -26933,46 +31719,6 @@ wirklich löschen? Wenn Sie keine Dateinamenserweiterung angeben, wird ".%1" verwendet. - - Android - - Cannot create a new AVD. No sufficiently recent Android SDK available. -Install an SDK of at least API version %1. - Es konnte kein AVD erzeugt werden, da kein hinreichend aktuelles Android-SDK verfügbar ist. -Bitte installieren Sie ein Android-SDK der API-Version %1 oder neuer. - - - Cannot create a AVD for ABI %1. Install an image for it. - Es konnte kein AVD für ABI %1 erzeugt werden. Installieren sie ein Image dafür. - - - Allowed characters are: a-z A-Z 0-9 and . _ - - Erlaubte Zeichen sind: a-z A-Z 0-9 und . _ - - - - - BareMetal - - Enter GDB commands to reset the board and to write the nonvolatile memory. - Geben Sie GDB-Kommandos ein, um die Platine zurückzusetzen und in den nichtflüchtigen Speicher zu schreiben. - - - Enter GDB commands to reset the hardware. The MCU should be halted after these commands. - Geben Sie GDB-Kommandos ein, um die Hardware zurückzusetzen. Die MCU sollte danach angehalten sein. - - - New Bare Metal Device Configuration Setup - Einrichtung der Konfiguration für neues Bare-Metal-Gerät - - - GDB commands - GDB-Kommandos - - - Unknown - Unbekannt - - Core::BaseFileWizardFactory @@ -26998,37 +31744,6 @@ Bitte installieren Sie ein Android-SDK der API-Version %1 oder neuer. - - Core::PatchTool - - There is no patch-command configured in the general "Environment" settings. - Es ist keine ausführbare Datei für das patch-Kommando in den allgemeinen Umgebungseinstellungen konfiguriert. - - - The patch-command configured in the general "Environment" settings does not exist. - Das in den allgemeinen Umgebungseinstellungen konfigurierte patch-Kommando existiert nicht. - - - Running in %1: %2 %3 - Führe in %1 aus: %2 %3 - - - Unable to launch "%1": %2 - "%1" konnte nicht ausgeführt werden: %2 - - - A timeout occurred running "%1" - Zeitüberschreitung bei Ausführung von "%1" - - - "%1" crashed. - "%1" ist abgestürzt. - - - "%1" failed (exit code %2). - "%1" schlug fehl (Rückgabewert %2). - - Core::Internal::WindowSupport @@ -27051,64 +31766,6 @@ Bitte installieren Sie ein Android-SDK der API-Version %1 oder neuer.%1: Konnte Inhalt der Datei nicht erhalten - - Debugger - - Use Debugging Helper - Ausgabe-Hilfsbibliothek benutzen - - - The debugging helpers are used to produce a nice display of objects of certain types like QString or std::map in the &quot;Locals&quot; and &quot;Expressions&quot; views. - Die Ausgabe-Hilfsbibliothek wird benutzt um bestimmte Datentypen wie QString oder std::map in &quot;Lokale Variablen&quot; und &quot;Ausdrücke&quot; ansprechend anzuzeigen. - - - Debugging Helper Customization - Anpassung der Ausgabe-Hilfsbibliothek - - - Python commands entered here will be executed after built-in debugging helpers have been loaded and fully initialized. You can load additional debugging helpers or modify existing ones here. - Hier angegebene Python-Kommandos werden ausgeführt, nachdem die integrierte Ausgabe-Hilfsbibliothek geladen und vollständig initialisiert wurde. Sie können hier weitere Ausgabehelfer laden oder bereits existierende Ausgabehelfer ändern. - - - Extra Debugging Helpers - Zusätzliche Ausgabe-Hilfsbibliotheken - - - Path to a Python file containing additional data dumpers. - Pfad zu einer Python-Datei für zusätzliche Datenausgabe. - - - Maximum string length: - Maximale Zeichenkettenlänge: - - - Display string length: - Anzuzeigende Länge von Zeichenketten: - - - - Debugger - - %1 (Previous) - %1 (Vorherig) - - - Expression %1 in function %2 from line %3 to %4 - Ausdruck %1 in Funktion %2 von Zeile %3 bis %4 - - - No valid expression - Kein gültiger Ausdruck - - - %1 (Restored) - %1 (Wiederhergestellt) - - - Expression too complex - Ausdruck zu komplex - - EmacsKeys::Internal::EmacsKeysPlugin @@ -27196,160 +31853,6 @@ Bitte installieren Sie ein Android-SDK der API-Version %1 oder neuer.Eine halbe Bildschirmseite aufwärts - - Git - - Refreshing Commit Data - Aktualisiere Commit-Daten - - - - Help - - (Untitled) - (Ohne Titel) - - - Show Context Help Side-by-Side if Possible - Kontexthilfe möglichst seitlich anzeigen - - - Always Show Context Help Side-by-Side - Kontexthilfe immer seitlich anzeigen - - - Always Show Context Help in Help Mode - Kontexthilfe immer im Hilfemodus anzeigen - - - Always Show Context Help in External Window - Kontexthilfe immer in separatem Fenster anzeigen - - - Open in Help Mode - Im Hilfsmodus öffnen - - - Home - Startseite - - - Back - Zurück - - - Forward - Nächstes - - - Add Bookmark - Lesezeichen hinzufügen - - - Meta+M - Meta+M - - - Ctrl+M - Ctrl+M - - - Open Online Documentation... - Online-Dokumentation öffnen... - - - Increase Font Size - Schrift vergrößern - - - Decrease Font Size - Schrift verkleinern - - - Reset Font Size - Schriftgröße zurücksetzen - - - Open in Edit Mode - Im Editieren-Modus öffnen - - - Open in New Page - Auf neuer Seite öffnen - - - Open in Window - In Fenster öffnen - - - Meta+Shift+C - Meta+Shift+C - - - Ctrl+Shift+C - Ctrl+Shift+C - - - Meta+I - Meta+I - - - Ctrl+Shift+I - Ctrl+Shift+I - - - Activate Help Bookmarks View - Lesezeichen-Anzeige für Hilfe aktivieren - - - Alt+Meta+M - Alt+Meta+M - - - Ctrl+Shift+B - Ctrl+Shift+B - - - Activate Help Search View - Such-Anzeige für Hilfe aktivieren - - - Meta+/ - Meta+/ - - - Ctrl+Shift+/ - Ctrl+Shift+/ - - - Activate Open Help Pages View - Anzeige geöffneter Seiten in Hilfe aktivieren - - - Meta+O - Meta+O - - - Ctrl+Shift+O - Ctrl+Shift+O - - - Help - %1 - Hilfe - %1 - - - Print Documentation - Dokumentation drucken - - - Get Help Online - Onlinehilfe - - - Regenerate Index - Index neu erstellen - - ProjectWizard @@ -27502,60 +32005,6 @@ Bitte installieren Sie ein Android-SDK der API-Version %1 oder neuer.Die QML-Emulationsschicht (QML Puppet) kann nicht erstellt werden, weil das Kit nicht korrekt konfiguriert ist. Beispielsweise könnte ein falscher Compiler eingestellt sein. Berichtigen Sie die Kit-Konfiguration und starten Sie %1 neu. Sonst wird die Fallback QML-Emulationsschicht benutzt, die nicht alle Funktionen bietet. - - Qnx - - The following errors occurred while activating the QNX configuration: - Die folgenden Fehler traten beim Aktivieren der QNX-Konfiguration auf: - - - Cannot Set Up QNX Configuration - QNX-Konfiguration kann nicht eingerichtet werden - - - Debugger for %1 (%2) - Debugger für %1 (%2) - - - QCC for %1 (%2) - QCC für %1 (%2) - - - Kit for %1 (%2) - Kit für %1 (%2) - - - - No targets found. - - Keine Ziele gefunden. - - - - No GCC compiler found. - - Kein GCC-Compiler gefunden. - - - - RemoteLinux - - Remote executable: - Entfernte ausführbare Datei: - - - Local executable: - Lokale ausführbare Datei: - - - The remote executable must be set in order to run a custom remote run configuration. - Die entfernte ausführbare Datei muss eingestellt sein um eine benutzerdefinierte enternte Ausführungskonfiguration zu verwenden. - - - Custom Executable - Benutzerdefinierte ausführbare Datei - - - Run "%1" - "%1" ausführen - - TaskList::Internal::TaskListPlugin @@ -27568,64 +32017,71 @@ Bitte installieren Sie ein Android-SDK der API-Version %1 oder neuer. My Tasks - Category under which tasklist tasks are listed in Issues view Meine Aufgaben - - WinRt::Internal::WinRtDebugSupport - - Not enough free ports for QML debugging. - Nicht genügend freie Ports für das QML-Debuggen vorhanden. - - - The WinRT debugging helper is missing from your %1 installation. It was assumed to be located at %2 - Die WinRT Ausgabe-Hilfsbibliothek fehlt in Ihrer %1-Installation. Sie wurde erwartet in %2 - - - Cannot start the WinRT Runner Tool. - WinRT Runner Tool konnte nicht gestartet werden. - - - Cannot establish connection to the WinRT debugging helper. - Konnte keine Verbindung zur WinRT Ausgabe-Hilfsbibliothek herstellen. - - - Cannot extract the PID from the WinRT debugging helper. (output: %1) - Konnte keine PID aus der Ausgabe-Hilfsbibliothek extrahieren. (Ausgabe: %1) - - - Cannot create an appropriate run control for the current run configuration. - Konnte keinen passenden Run Control für die aktuelle Ausführungskonfiguration erstellen. - - - - WinRt::Internal::WinRtRunnerHelper - - The current kit has no Qt version. - Das aktuelle Kit hat keine Qt-Version. - - - Cannot find winrtrunner.exe in "%1". - winrtrunner.exe konnte in "%1" nicht gefunden werden. - - - Cannot determine the executable file path for "%1". - Kann den Pfad der ausführbaren Datei für "%1" nicht bestimmen. - - - Error while executing the WinRT Runner Tool: %1 - - Fehler bei der Ausführung von WinRT Runner Tool: %1 - - - SliderSpecifics + + Slider + + Value Wert + + The current value of the slider. + + + + Live + + + + Whether the slider provides live value updates. + + + + From + Von + + + The starting value of the slider range. + + + + To + Bis + + + The ending value of the slider range. + + + + The step size of the slider. + + + + Drag threshold + + + + The threshold (in logical pixels) at which a drag event will be initiated. + + + + Snap mode + Einrasten + + + The snap mode of the slider. + + + + The orientation of the slider. + + Current value of the Slider. The default value is 0.0. Aktueller Wert des Sliders. Die Voreinstellung ist 0,0. @@ -27702,41 +32158,6 @@ Bitte installieren Sie ein Android-SDK der API-Version %1 oder neuer.Ausrichtung des Split View. - - QtSupport - - Embedding of the UI Class - Verwendung der UI-Klasse - - - Aggregation as a pointer member - Aggregation als Zeiger - - - Aggregation - Aggregation - - - Multiple inheritance - Mehrfachvererbung - - - Code Generation - Code-Erzeugung - - - Support for changing languages at runtime - Wechsel der Sprache zur Laufzeit unterstützen - - - Use Qt module name in #include-directive - Qt-Modulnamen in #include-Direktive verwenden - - - Add Qt version #ifdef for module names - Von Qt-Version abhängige #ifdef-Direktiven für Modulnamen einfügen - - Utils::MacroExpander @@ -27776,105 +32197,6 @@ Bitte installieren Sie ein Android-SDK der API-Version %1 oder neuer.Auf Umgebungsvariablen zugreifen. - - Android - - Build Android APK - AndroidBuildApkStep default display name - Android-APK erstellen - - - Warning: Signing a debug or profile package. - Warnung: Es wird ein Debug- oder Profile-Paket signiert. - - - The installed SDK tools version (%1) does not include Gradle scripts. The minimum Qt version required for Gradle build to work is %2 - Die installierte SDK-Tools-Version (%1) enthält keine Gradle-Skripte. Die Mindestversion von Qt für Gradle-Builds ist %2 - - - The minimum Qt version required for Gradle build to work is %1. It is recommended to install the latest Qt version. - Die älteste Qt-Version, die Gradle-Builds unterstützt, ist %1. Es ist ratsam, die neueste Qt-Version zu verwenden. - - - The API level set for the APK is less than the minimum required by the kit. -The minimum API level required by the kit is %1. - Der für das APK gewählte APK-Level ist nieriger als das vom Kit benötigte Minimum. -Der vom Kit mindestens benötigte API-Level ist %1. - - - Android build SDK not defined. Check Android settings. - Android-Build-SDK nicht festgelegt. Bitte überprüfen Sie die Einstellungen für Android. - - - Cannot sign the package. Invalid keystore path (%1). - Das Paket kann nicht signiert werden. Der Keystore-Pfad ist ungültig (%1). - - - Cannot sign the package. Certificate alias %1 does not exist. - Das Paket kann nicht signiert werden. Der Zertifikatsalias %1 existiert nicht. - - - Android deploy settings file not found, not building an APK. - Keine Einstellungsdatei für Android-Deployment gefunden, APK wird nicht erstellt. - - - Cannot set up Android, not building an APK. - Android kann nicht eingerichtet werden, APK wird nicht erstellt. - - - Starting: "%1" %2 - Starte: "%1" %2 - - - Failed to run keytool. - keytool konnte nicht ausgeführt werden. - - - Custom Android Debugger (%1, NDK %2) - Benutzerdefinierter Android-Debugger (%1, NDK %2) - - - Android Debugger (%1, NDK %2) - Android-Debugger (%1, NDK %2) - - - Android %1 Clang %2 - Android %1 Clang %2 - - - Unknown Android version. API Level: %1 - Unbekannte Android-Version. API-Level: %1 - - - Error creating Android templates. - Fehler beim Erstellen der Android-Vorlagendateien. - - - Cannot parse "%1". - "%1" kann nicht ausgewertet werden. - - - Starting Android virtual device failed. - Das Starten des virtuellen Android-Geräts schlug fehl. - - - Android package installation failed. -%1 - Android-Paketinstallation gescheitert. -%1 - - - - Bazaar - - &Annotate %1 - &Annotation für %1 - - - Annotate &parent revision %1 - Annotation der über&geordneten Revision %1 - - BinEditor @@ -27893,12 +32215,121 @@ Der vom Kit mindestens benötigte API-Level ist %1. Cannot open %1: %2 Die Datei %1 kann nicht geöffnet werden: %2 - - - ClearCase - Annotate version "%1" - Annotation für Version "%1" + Memory at 0x%1 + Speicher bei 0x%1 + + + Decimal&nbsp;unsigned&nbsp;value: + Vorzeichenloser&nbsp;dezimaler&nbsp;Wert: + + + Decimal&nbsp;signed&nbsp;value: + Vorzeichenbehafteter&nbsp;dezimaler&nbsp;Wert: + + + Previous&nbsp;decimal&nbsp;unsigned&nbsp;value: + Vorangegangener&nbsp;vorzeichenloser&nbsp;dezimaler&nbsp;Wert: + + + Previous&nbsp;decimal&nbsp;signed&nbsp;value: + Vorangegangener&nbsp;vorzeichenbehafteter&nbsp;dezimaler&nbsp;Wert: + + + %1-bit&nbsp;Integer&nbsp;Type + %1-bit&nbsp;Ganzzahltyp + + + Little Endian + Little Endian + + + Big Endian + Big Endian + + + Binary&nbsp;value: + Binärer&nbsp;Wert: + + + Octal&nbsp;value: + Oktaler&nbsp;Wert: + + + Previous&nbsp;binary&nbsp;value: + Vorangeganger&nbsp;binärer&nbsp;Wert: + + + Previous&nbsp;octal&nbsp;value: + Vorangeganger&nbsp;oktaler&nbsp;Wert: + + + <i>double</i>&nbsp;value: + <i>double</i>&nbsp;Wert: + + + Previous <i>double</i>&nbsp;value: + Vorangegangener <i>double</i>&nbsp;Wert: + + + <i>float</i>&nbsp;value: + <i>float</i>&nbsp;Wert: + + + Previous <i>float</i>&nbsp;value: + Vorangegangener <i>float</i>&nbsp;Wert: + + + Copying Failed + Fehler beim Kopieren + + + You cannot copy more than 4 MB of binary data. + Sie können nicht mehr als 4 MB binäre Daten kopieren. + + + Copy Selection as ASCII Characters + Auswahl als ASCII-Zeichen kopieren + + + Copy Selection as Hex Values + Auswahl als hexadezimale Werte kopieren + + + Set Data Breakpoint on Selection + Datenhaltepunkt bei Auswahl setzen + + + Copy 0x%1 + 0x%1 kopieren + + + Jump to Address in This Window + Gehe zu Adresse in diesem Fenster + + + Jump to Address in New Window + Gehe zu Adresse in neuem Fenster + + + Copy Value + Wert kopieren + + + Jump to Address 0x%1 in This Window + Gehe zu Adresse 0x%1 in diesem Fenster + + + Jump to Address 0x%1 in New Window + Gehe zu Adresse 0x%1 in neuem Fenster + + + Zoom: %1% + Vergrößerung: %1% + + + &Redo + &Wiederholen @@ -28011,6 +32442,42 @@ You will likely experience further problems using this instance of %3. Fehler beim Lesen der Einstellungsdatei "%1": %2" Sie werden wahrscheinlich auf weitere Probleme mit dieser Instanz von %3 stoßen. + + %1 collects crash reports for the sole purpose of fixing bugs. To disable this feature go to %2. + Zum Zweck der Fehlerbehebung sammelt %1 Absturzberichte. Öffnen Sie %2, um diese Funktion zu deaktivieren. + + + %1 can collect crash reports for the sole purpose of fixing bugs. To enable this feature go to %2. + Zum Zweck der Fehlerbehebung kann %1 Absturzberichte sammeln. Öfnen Sie %2, um diese Funktion zu aktivieren. + + + > Preferences > Environment > System + > Einstellungen > Umgebung > System + + + Edit > Preferences > Environment > System + Bearbeiten > Einstellungen > Umgebung > System + + + Configure... + Einstellungen... + + + %1 uses Google Crashpad for collecting crashes and sending them to our backend for processing. Crashpad may capture arbitrary contents from crashed process’ memory, including user sensitive information, URLs, and whatever other content users have trusted %1 with. The collected crash reports are however only used for the sole purpose of fixing bugs. + %1 nutzt Google Crashpad, um Absturzberichte zu sammeln und diese zur Verarbeitung an unsere Server zu senden. Crashpad kann beliebige Inhalte des Speichers des abgestürzten Prozesses erfassen. Dies beinhaltet persönliche Daten, URLs und welche Inhalte auch immer der Nutzer %1 anvertraut hat. Die gesammelten Absturzberichte werden allerdings nur zum Zweck der Fehlerbehebung genutzt. + + + More information: + Mehr Informationen: + + + Crashpad Overview + Übersicht über Crashpad + + + %1 security policy + Sicherheitsrichtlinien von %1 + Core::PromptOverwriteDialog @@ -28091,10 +32558,30 @@ Es konnte kein Versionskontrollsystem gefunden werden. See details for a complete list of files. Die komplette Dateiliste finden Sie unter Details. + + Files Without Write Permissions + Dateien ohne Schreibberechtigung + + + The following files have no write permissions. Do you want to change the permissions? + Die folgenden Dateien sind schreibgeschützt. Möchten Sie die Berechtigungen ändern? + + + Filename + Dateiname + + + Path + Pfad + Change &Permission &Berechtigung ändern + + Select all, if possible: + Möglichst alle auswählen: + The following files are not checked out yet. Do you want to check them out now? @@ -28375,222 +32862,6 @@ Möchten Sie sie jetzt auschecken? unbenannt - - CppEditor::Internal::CppEditorWidget - - &Refactor - &Refactoring - - - - Cvs - - Annotate revision "%1" - Annotation für Revision "%1" - - - - Debugger - - Debug - Debug - - - Option "%1" is missing the parameter. - Das Kommandozeilenargument "%1" erfordert einen Parameter. - - - Only one executable allowed. - Nur eine ausführbare Datei erlaubt. - - - The parameter "%1" of option "%2" does not match the pattern <handle>:<pid>. - Der Parameter "%1" der Option "%2" entspricht nicht dem Muster <Handle>:<PID>. - - - Invalid debugger option: %1 - Ungültiger Debugger-Kommandozeilenparameter: %1 - - - Show %1 Column - Spalte %1 anzeigen - - - Cannot start %1 without a project. Please open the project and try again. - Kann %1 nicht ohne Projekt starten. Bitte das Projekt öffnen und nochmal versuchen. - - - Profile - Profile - - - Release - Release - - - in Debug mode - im Debug-Modus - - - in Profile mode - im Profile-Modus - - - in Release mode - im Release-Modus - - - with debug symbols (Debug or Profile mode) - mit Debug-Symbolen (Debug- oder Profile-Modus) - - - on optimized code (Profile or Release mode) - auf optimiertem Programmcode (Profile- oder Release-Modus) - - - Run %1 in %2 Mode? - Soll %1 im %2-Modus ausgeführt werden? - - - <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 %3.</p><p>Run-time characteristics differ significantly between optimized and non-optimized binaries. Analytical findings for one mode may or may not be relevant for the other.</p><p>Running tools that need debug symbols on binaries that don't provide any may lead to missing function names or otherwise insufficient output.</p><p>Do you want to continue and run the tool in %2 mode?</p></body></html> - <html><head/><body><p>Sie versuchen das Werkzeug "%1" für eine Anwendung im %2-Modus auszuführen. Das Werkzeug ist dafür vorgesehen %3 ausgeführt zu werden.</p><p>Die Laufzeitcharakteristik von optimierten und nicht optimierten Maschinenprogrammen unterscheidet sich stark. Ergebnisse einer Analyse des einen Modus können, müssen aber nicht auf den anderen Modus übertragbar sein.</p><p>Werkzeuge, die Debug-Symbole benötigen, auf Dateien auszuführen, die diese nicht enthalten, kann zu fehlenden Funktionsnamen oder anderweitig unbrauchbaren Ergebnissen führen.</p><p>Wollen Sie fortfahren und das Werkzeug im %2-Modus ausführen?</p></body></html> - - - %1 is a 64 bit executable which can not be debugged by a 32 bit Debugger. -Please select a 64 bit Debugger in the kit settings for this kit. - %1 ist eine 64-bit-Anwendung, die nicht mit einem 32-bit-Debugger untersucht werden kann. -Bitte wählen Sie einen 64-bit-Debugger in den Kit-Einstellungen für dieses Kit. - - - Unable to create a debugging engine. Please select a Debugger Setting from the Run page of the project mode. - Eine Debugging-Engine kann nicht erzeugt werden. Bitte wählen Sie in der Ausführungskonfiguration im Projekte-Modus eine Debuggereinstellung. - - - Unable to create a debugging engine. - Eine Debugging-Engine kann nicht erzeugt werden. - - - Some breakpoints cannot be handled by the debugger languages currently active, and will be ignored. -Affected are breakpoints %1 - Einige Haltepunkte werden von den Debuggern der gegenwärtig aktiven Sprachen nicht unterstützt und werden daher nicht berücksichtigt. -Dies betrifft die Haltepunkte %1 - - - Debugging complex command lines is currently not supported on Windows. - Komplexe Kommandozeilen werden beim Debuggen unter Windows gegenwärtig nicht unterstützt. - - - Not enough free ports for QML debugging. - Nicht genügend freie Ports für das QML-Debuggen vorhanden. - - - - Designer - - Widget box - Widget-Box - - - Object Inspector - Objektanzeige - - - Property Editor - Eigenschaften - - - Signals && Slots Editor - Signals und Slots - - - Action Editor - Aktionseditor - - - Widget Box - Widget-Box - - - Edit Widgets - Widgets bearbeiten - - - F3 - F3 - - - Edit Signals/Slots - Signals und Slots bearbeiten - - - F4 - F4 - - - Edit Buddies - Buddies bearbeiten - - - Edit Tab Order - Tabulatorreihenfolge bearbeiten - - - Meta+Shift+H - Meta+Shift+H - - - Ctrl+H - Ctrl+H - - - Meta+L - Meta+L - - - Ctrl+L - Ctrl+L - - - Meta+Shift+G - Meta+Shift+G - - - Ctrl+G - Ctrl+G - - - Meta+J - Meta+J - - - Ctrl+J - Ctrl+J - - - Alt+Shift+R - Alt+Shift+R - - - About Qt Designer Plugins... - Über Qt Designer-Plugins... - - - Preview in - Vorschau in - - - This file can only be edited in <b>Design</b> mode. - Datei kann nur im <b>Design</b>-Modus bearbeitet werden. - - - Switch Mode - Modus umschalten - - - The image could not be created: %1 - Das Bild konnte nicht erstellt werden: %1 - - ProjectExplorer::JsonWizard @@ -28867,30 +33138,14 @@ Dies betrifft die Haltepunkte %1 Python Class Python-Klasse - - Component name: - Komponentenname: - - - %{Class}Form - %{Class}-Formular - - - Component form name: - Komponentenformularname: - - - Creates a Qt Quick Designer UI form along with a matching QML file for implementation purposes. You can add the form and file to an existing Qt Quick Project. - Erstellt ein Qt Quick-Designer-UI-Formular mit zugehöriger QML-Datei für Implementierungszwecke. Sie können Formular und Datei zu einem existierenden Qt Quick-Projekt hinzufügen. - - - QtQuick UI File - QtQuick UI-Datei - Location Pfad + + Qt Quick Application + + This wizard creates a simple unit test project. Dieser Assistent erstellt ein einfaches Unit-Test-Projekt. @@ -28903,10 +33158,18 @@ Dies betrifft die Haltepunkte %1 Test case name: Testfallname: + + Generate setup code + + Creates a new unit test project. Unit tests allow you to verify that the code is fit for use and that there are no regressions. Erstellt ein neues Unit-Test-Projekt. Unit-Tests können sicherstellen, dass Quelltext seine Aufgabe erfüllt und keine Regressionen enthält. + + Creates a QML file with boilerplate code, starting with "import QtQuick". + + Choose a Form Template Formularvorlage auswählen @@ -28923,6 +33186,18 @@ Dies betrifft die Haltepunkte %1 Qt Designer Form Qt-Designer-Formular + + Creates an Effect Maker file. + + + + Effects + + + + Effect File (Effect Maker) + + Creates a Java file with boilerplate code. Erzeugt eine Java-Datei mit allgemeingültigem Quelltext. @@ -29003,10 +33278,6 @@ Dies betrifft die Haltepunkte %1 Qt Resource File Qt Ressourcen-Datei - - Creates a QML file with boilerplate code, starting with "import QtQuick 2.0". - Erzeugt eine QML-Datei mit allgemeingültigem Quelltext, beginnend mit "import QtQuick 2.0". - QML File (Qt Quick 2) QML-Datei (Qt Quick 2) @@ -29092,14 +33363,6 @@ Dies betrifft die Haltepunkte %1 This wizard creates a simple Qt-based console application. Dieser Assistent erzeugt eine einfache Qt-basierte Konsolenanwendung. - - Creates a project containing a single main.cpp file with a stub implementation. - -Preselects a desktop Qt for building the application if available. - Erstellt ein Projekt, das aus einer main.cpp-Datei mit einem Implementationsrumpf besteht. - -Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfügbar ist. - Qt Console Application Qt Konsolenanwendung @@ -29112,26 +33375,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Creates a simple C++ application with no dependencies. Erstellt eine einfache C++-Anwendung ohne Abhängigkeiten. - - Qt 5.10 - Qt 5.10 - - - Qt 5.9 - Qt 5.9 - - - Qt 5.8 - Qt 5.8 - Creates a Qt for Python application that contains only the main code for a QApplication. Erstellt eine Qt for Python-Anwendung, die nur den grundlegenden Quelltext für eine QApplication enthält. - - Default - Vorgabe - This wizard creates an empty .pro file. Dieser Assistent erzeugt eine leere .pro-Datei. @@ -29152,14 +33399,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Define Project Details Projektdetails festlegen - - Qt 5.6 - Qt 5.6 - - - Minimal required Qt version: - Mindestens benötigte Qt-Version: - Configuration Konfiguration @@ -29253,18 +33492,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Nim Application Nim-Anwendung - - Qt 5.7 - Qt 5.7 - - - Creates a Qt Quick 2 UI project with a QML entry point. To use it, you need to have a QML runtime environment such as qmlscene set up. - -Use this only if you are prototyping. You cannot create a full application with this. Consider using a Qt Quick Application project instead. - Erstellt ein Qt Quick 2 UI-Projekt mit QML-Einsprungpunkt. Um es zu verwenden, brauchen Sie eine QML-Laufzeitumgebung wie qmlscene. - -Benutzen Sie dies nur für Prototypen. Sie können damit keine vollständige Anwendung erstellen. Vielleicht ist ein Qt Quick-Anwendungsprojekt besser geeignet. - Qt Quick UI Prototype Qt Quick UI-Prototyp @@ -29365,26 +33592,10 @@ Benutzen Sie dies nur für Prototypen. Sie können damit keine vollständige Anw URL: URL: - - Qt Creator sources: - Qt Creator-Quelldateien: - Qt Creator build: Qt Creator-Build-Verzeichnis: - - Qt Creator Build - Qt Creator-Build - - - Local User Settings - Lokale Benutzereinstellungen - - - Deploy into: - Deployment nach: - Translation File Übersetzungsdatei @@ -29457,6 +33668,14 @@ Benutzen Sie dies nur für Prototypen. Sie können damit keine vollständige Anw Specify basic information about the classes for which you want to generate skeleton source code files. Geben Sie Informationen bezüglich der Klassen ein, für die Sie Quelltexte generieren wollen. + + Fully qualified name, including namespaces + + + + Creates a widget-based Qt application that contains a Qt Designer-based main window.Preselects a desktop Qt for building the application if available. + + Shared Library Dynamisch gebundene Bibliothek @@ -29534,6 +33753,66 @@ Benutzen Sie dies nur für Prototypen. Sie können damit keine vollständige Anw C++ Library C++-Bibliothek + + Creates a project containing a single main.cpp file with a stub implementation.Preselects a desktop Qt for building the application if available. + + + + %{JS: value('BaseCB') ? value('BaseCB').slice(1) : 'MyClass'} + + + + %{JS: Util.fileName('%{ProjectName}', 'pyproject')} + + + + Empty Window + + + + Creates a Qt for Python application that includes a Qt Designer-based widget (ui file) - Requires .ui to Python conversion + + + + Window UI + + + + Creates a Qt for Python application that includes a Qt Designer-based widget (.ui file) - Load the forms dynamically/at runtime + + + + Window UI - Dynamic load + + + + Empty Application + + + + PySide 6 + PySide 6 + + + Qt 6.2 + Qt 6.2 + + + Minimum required Qt version: + + + + Create example project + + + + Qt 6 + Qt 6 + + + Creates a Qt Quick 2 UI project with a QML entry point. To use it, you need to have a QML runtime environment.Use this only if you are prototyping. You cannot create a full application with this. Consider using a Qt Quick Application project instead. + + Binary Binärdatei @@ -29638,6 +33917,46 @@ Benutzen Sie dies nur für Prototypen. Sie können damit keine vollständige Anw Nimble Application Nimble-Anwendung + + Creates a CMake-based test project for which a code snippet can be entered. + + + + int main(int argc, char *argv[]){ return 0;} + + + + Code: + Code: + + + QtCore + + + + QtCore, QtWidgets + + + + Use Qt Modules: + + + + Application bundle (macOS) + + + + Define Code snippet + + + + Code snippet + + + + Code Snippet + Code-Ausschnitt + MyItem MyItem @@ -29678,10 +33997,6 @@ Benutzen Sie dies nur für Prototypen. Sie können damit keine vollständige Anw Qt 5.13 Qt 5.13 - - Qt 5.11 - Qt 5.11 - This wizard generates a Qt Widgets Application project. The application derives by default from QApplication and includes an empty widget. Dieser Assistent erstellt eine Qt Widgets-Anwendung. Sie wird üblicherweise von der Klasse QApplication abgeleitet und enthält ein leeres Widget. @@ -29706,14 +34021,6 @@ Benutzen Sie dies nur für Prototypen. Sie können damit keine vollständige Anw Class Information Klasseninformationen - - Creates a Qt application for the desktop. Includes a Qt Designer-based main window. - -Preselects a desktop Qt for building the application if available. - Erstellt eine Qt-Anwendung für den Desktop mit einem Qt Designer-basierten Hauptfenster. - -Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfügbar ist. - Qt Widgets Application Qt Widgets-Anwendung @@ -29730,18 +34037,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Application (Qt for Python) Anwendung (Qt for Python) - - Qt for Python - Empty - Qt for Python - Leer - %{JS: Cpp.classToFileName(value('Class'), Util.preferredSuffix('text/x-python'))} %{JS: Cpp.classToFileName(value('Class'), Util.preferredSuffix('text/x-python'))} - - %{JS: Cpp.classToFileName(value('Class'), 'pyproject')} - %{JS: Cpp.classToFileName(value('Class'), 'pyproject')} - Project file: Projektdatei: @@ -29750,10 +34049,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Creates a Qt for Python application that contains an empty window. Erstellt eine Qt for Python-Anwendung, die ein leeres Fenster enthält. - - Qt for Python - Window - Qt for Python - Fenster - PySide 5.15 PySide 5.15 @@ -29778,82 +34073,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Creates a Qt Quick application that contains an empty window. Erstellt eine Qt Quick-Anwendung, die ein leeres Fenster enthält. - - Qt for Python - Qt Quick Application - Empty - Qt for Python - Qt Quick-Anwendung - Leer - - - Creates a Qt for Python application that includes a Qt Designer-based widget (ui file) - Erstellt eine Qt for Python-Anwendung, die ein Qt Designer-basiertes Widget (ui-Datei) enthält - - - Qt for Python - Window (UI file) - Qt for Python - Fenster (UI-Datei) - - - Application (Qt Quick) - Anwendung (Qt Quick) - Qt Quick Application - Empty Qt Quick-Anwendung - Leer - - Material Light - Material Light - - - Material Dark - Material Dark - - - Universal Light - Universal Light - - - Universal Dark - Universal Dark - - - Universal System - Universal System - - - Fusion (Qt 5.10+) - Fusion (Qt 5.10+) - - - Imagine (Qt 5.10+) - Imagine (Qt 5.10+) - - - Qt Quick Controls Style: - Qt Quick Controls-Stil: - - - Creates a Qt Quick Controls application with a ScrollView. - Erstellt eine Qt Quick-Anwendung mit einer ScrollView. - - - Qt Quick Application - Scroll - Qt Quick-Anwendung - Scroll - - - Creates a Qt Quick Controls application with a StackView to display content, and a Drawer and ToolBar for navigation. - Erstellt eine Qt Quick-Anwendung mit einer StackView um Inhalte anzuzeigen sowie einem Drawer und einer ToolBar zur Navigation. - - - Qt Quick Application - Stack - Qt Quick-Anwendung - Stack - - - Creates a Qt Quick Controls application with a SwipeView for navigation. - Erstellt eine Qt Quick-Anwendung mit einer SwipeView zur Navigation. - - - Qt Quick Application - Swipe - Qt Quick-Anwendung - Swipe - Repository URL is not valid Die URL des Repositorys ist ungültig @@ -30057,6 +34280,122 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü FakeVim + + Use FakeVim + FakeVim benutzen + + + Read .vimrc from location: + Verwende .vimrc aus: + + + Show position of text marks + Position der Textmarken anzeigen + + + Pass control keys + + + + Pass keys in insert mode + Tastenanschläge im Einfügemodus weitergeben + + + Start of line + Zeilenanfang + + + Tabulator size: + Tabulatorweite: + + + Smart tabulators + "Smart"-Tabularmodus + + + Highlight search results + Suchergebnisse hervorheben + + + Shift width: + Einrückung: + + + Expand tabulators + Tabulatoren expandieren + + + Automatic indentation + Automatische Einrückung + + + Smart indentation + Intelligente Einrückung + + + Incremental search + Inkrementelle Suche + + + Use search dialog + Suchdialog verwenden + + + Use smartcase + Smartcase verwenden + + + Use ignorecase + ignorecase verwenden + + + Use wrapscan + Wrapscan verwenden + + + Use tildeop + + + + Show partial command + Teil des Kommandos anzeigen + + + Show line numbers relative to cursor + Zeilennummern relativ zur Einfügemarke anzeigen + + + Blinking cursor + Blinkende Einfügemarke + + + Scroll offset: + Rollversatz: + + + Backspace: + Rücktaste: + + + Keyword characters: + Wortbildende Zeichen: + + + Displays line numbers relative to the line containing text cursor. + Zeige Zeilennummern relativ zur Zeile mit der Einfügemarke an. + + + Does not interpret key sequences like Ctrl-S in FakeVim but handles them as regular shortcuts. This gives easier access to core functionality at the price of losing some features of FakeVim. + Zeichenfolgen wie Strg-S nicht in FakeVim verarbeiten, sondern sie als gewöhnliche Tastenkombinationen behandeln. Dies erleichtert den Zugriff auf die Kernfunktionalität auf Kosten eingeschränkter Funktionalität von FakeVim. + + + Does not interpret some key presses in insert mode so that code can be properly completed and expanded. + Einige Zeichenfolgen nicht im Einfügemodus verarbeiten, damit Quelltext korrekt vervollständigt und erweitert werden kann. + + + Vim tabstop option. + Vim-Tabulator-Einstellung. + Unknown option: %1 Unbekannte Option: %1 @@ -30069,14 +34408,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Use Vim-style Editing Vim benutzen - - Read .vimrc - .vimrc lesen - - - Path to .vimrc - Pfad zu .vimrc - Mark "%1" not set. Die Marke "%1" ist nicht gesetzt. @@ -30098,8 +34429,12 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü In FakeVim nicht implementiert. - Type Alt-V, Alt-V to quit FakeVim mode. - Alt-V, Alt-V beendet den FakeVim-Modus. + Type Meta-Shift-Y, Meta-Shift-Y to quit FakeVim mode. + + + + Type Alt-Y, Alt-Y to quit FakeVim mode. + Unknown option: @@ -30256,6 +34591,26 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Ex Command Ex-Kommando + + Copy Text Editor Settings + Texteditor-Einstellungen übernehmen + + + Set Qt Style + Qt-Stil setzen + + + Set Plain Style + Einfachen Stil setzen + + + Vim Behavior + Vim-Verhalten + + + Plugin Emulation + + Action Aktion @@ -30273,25 +34628,25 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Benutzerdefinierte Aktion #%1 - Alt+V,Alt+V - Alt+V,Alt+V + Meta+Shift+Y,Meta+Shift+Y + - Meta+Shift+V,Meta+Shift+V - Meta+Shift+V,Meta+Shift+V + Alt+Y,Alt+Y + + + + Meta+Shift+Y,%1 + + + + Alt+Y,%1 + Execute User Action #%1 Benutzerdefinierte Aktion #%1 ausführen - - Alt+V,%1 - Alt+V,%1 - - - Meta+Shift+V,%1 - Meta+Shift+V,%1 - "%1" %2 %3L, %4C written "%1" %2 %3 Zeilen mit %4 Zeichen geschrieben @@ -30312,25 +34667,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü - - Git - - &Blame %1 - &Blame %1 - - - Blame &Parent Revision %1 - Blame der über&geordneten Revision %1 - - - Stage Chunk... - Chunk für Commit vorsehen... - - - Unstage Chunk... - Chunk aus Commit entfernen... - - GlslEditor::Internal::GlslEditorPlugin @@ -30339,24 +34675,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü GLSL - - Help - - Open Link in Window - Verweis in Fenster öffnen - - - - Mercurial - - &Annotate %1 - &Annotate %1 - - - Annotate &parent revision %1 - Annotation der über&geordneten Revision %1 - - Perforce::Internal::PerforceEditorWidget @@ -30418,6 +34736,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü LineEdit ("%1") has an invalid regular expression "%2" in "validator". LineEdit ("%1") hat einen ungültigen regulären Ausdruck "%2" in "validator". + + LineEdit ("%1") has an invalid value "%2" in "completion". + + TextEdit ("%1") data is not an object. TextEdit ("%1") data ist kein Objekt. @@ -30603,12 +34925,6 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Image file "%1" not found. Bilddatei "%1" nicht gefunden. - - * Failed to create: %1 - - * Konnte nicht erzeugen: %1 - - JsonWizard: "%1" not found @@ -30719,6 +35035,10 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Select the Root Directory Wählen Sie das Wurzelverzeichnis + + Replacement for + + Replacement for "%1" Ersatz für "%1" @@ -30727,6 +35047,10 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Project "%1" was configured for kit "%2" with id %3, which does not exist anymore. The new kit "%4" was created in its place, in an attempt not to lose custom project settings. Das Projekt "%1" wurde für das Kit "%2" mit dem Bezeichner %3 konfiguriert. Dieses Kit existiert nicht mehr. Das neue Kit "%4" wurde an seiner Stelle erzeugt, um den Verlust von benutzerdefinierten Projekteinstellungen zu verhindern. + + Could not find any qml_*.qm file at "%1" + + ProjectExplorer::Target @@ -30738,16 +35062,25 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Source directory Quellverzeichnis - - - ResourceEditor - Prefix: - Präfix: + Build system + - Language: - Sprache: + The currently active run configuration's name. + Der Name der aktiven Ausführungskonfiguration. + + + The currently active run configuration's executable (if applicable). + Die ausführbare Datei der aktiven Ausführungskonfiguration (falls möglich). + + + Variables in the current run environment. + + + + The currently active run configuration's working directory. + @@ -30798,6 +35131,10 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Select Encoding Zeichenkodierung auswählen + + Snippet Parse Error + Fehler beim Lesen des Snippets + Zoom: %1% Vergrößerung: %1% @@ -30834,26 +35171,12 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Versionskontrolle - Running: %1 %2 - Führe aus: %1 %2 + Running: %1 + Führe aus: %1 - Running in %1: %2 %3 - Führe in %1 aus: %2 %3 - - - - Help - - &Look for: - &Suche nach: - - - - Tracing - - [unknown] - [unbekannt] + Running in %1: %2 + Führe in %1 aus: %2 {1:?} @@ -30884,7 +35207,6 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. min - unit for minutes min @@ -30895,6 +35217,26 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Always Ask Stets fragen + + Enable crash reporting + Absturzberichte aktivieren + + + Ask for confirmation before exiting + Vor dem Beenden nachfragen + + + Clear Local Crash Reports + Lokale Absturzberichte löschen + + + Auto-save files after refactoring + Dateien nach Refaktorisierung speichern + + + Allow crashes to be automatically reported. Collected reports are used for the sole purpose of fixing bugs. + Erlaubt Absturzberichte zu sammeln und zu senden. Gesammelte Absturzberichte werden nur zum Zweck der Fehlerbehebung genutzt. + Reload All Unchanged Editors Alle Dateien in ungeänderten Editoren neu laden @@ -30903,6 +35245,10 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Ignore Modifications Änderungen ignorieren + + Reset to default. + Auf Vorgabe zurücksetzen. + Patch command: Patch-Kommando: @@ -30911,11 +35257,6 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. ? ? - - Reset to default. - File Browser - Auf Vorgabe zurücksetzen. - Reset Zurücksetzen @@ -30961,48 +35302,66 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Maximum number of entries in "Recent Files": Höchstzahl der Einträge in "Zuletzt bearbeitete Dateien": - - - QbsProjectManager - Custom Properties - Benutzerdefinierte Eigenschaften + Command line arguments used for "%1". + Kommandozeilenargumente für "%1". - &Add - Hinzu&fügen + Change... + Ändern... - &Remove - &Entfernen + Environment: + Umgebung: - Key - Schlüssel + Command used for reverting diff chunks. + Kommando zum Zurücksetzen von einzelnen Änderungen in Diff-Anzeige. - Value - Wert + Automatically creates temporary copies of modified files. If %1 is restarted after a crash or power failure, it asks whether to recover the auto-saved content. + Erstellt automatisch temporäre Kopien geänderter Dateien. Beim Neustart von %1 nach einem Absturz oder Stromausfall wird nachgefragt, ob der automatisch gesicherte Stand wiederhergestellt werden soll. - Kit: - Kit: + Automatically saves all open files affected by a refactoring operation, +provided they were unmodified before the refactoring. + Speichert automatisch alle geöffneten Dateien, die von der Refaktorisierung betroffen sind, sofern sie vorher unverändert waren. - Associated profile: - Zugeordnetes Profil: + Crash Reporting + Absturzberichte - Profile properties: - Profileigenschaften: + The change will take effect after restart. + Die Änderung wird nach einem Neustart wirksam. - E&xpand All - Alles &aufklappen + Case Sensitive (Default) + Groß-/Kleinschreibung beachten (Vorgabe) - &Collapse All - Alles &einklappen + Case Sensitive + Groß-/Kleinschreibung beachten + + + Case Insensitive (Default) + Groß-/Kleinschreibung ignorieren (Vorgabe) + + + Case Insensitive + Groß-/Kleinschreibung ignorieren + + + The file system case sensitivity change will take effect after restart. + Die Änderung der Groß-/Kleinschreibungseinstellung wird nach einem Neustart wirksam. + + + No changes to apply. + Keine Änderungen. + + + Variables + Variablen @@ -31096,162 +35455,27 @@ konnte dem Projekt "%2" nicht hinzugefügt werden. Verbindungen - - QmlProfiler - - Flush data while profiling: - Daten während Profiling übertragen: - - - Flush interval (ms): - Zeitabstand der Übertragungen (ms): - - - Process data only when process ends: - Daten erst bei Prozessende verarbeiten: - - - Only process data when the process being profiled ends, not when the current recording -session ends. This way multiple recording sessions can be aggregated in a single trace, -for example if multiple QML engines start and stop sequentially during a single run of -the program. - Daten nur bei Prozessende und nicht bei Aufnahmeende verarbeiten. Dadurch werden -mehrere Aufnahmen in einer einzigen Aufnahmespur zusammengefügt, zum Beispiel -wenn mehrere QML-Instanzen nacheinander in einem einzigen Programmlauf gestartet -und gestoppt werden. - - - Periodically flush pending data to the profiler. This reduces the delay when loading the -data and the memory usage in the application. It distorts the profile as the flushing -itself takes time. - Sende Daten regelmässig zum Profiler. Das reduziert die Verzögerung beim Laden der -Daten und den Speicherverbrauch der Applikation. Es stört das Profiling, weil das -Senden selbst auch Zeit benötigt. - - - Analyzer - Analyzer - - - - Todo - - Excluded Files - ausgenommene Dateien - - - Regular expressions for file paths to be excluded from scanning. - Reguläre Ausdrücke für vom Prüfen ausgenommene Dateipfade. - - - Add - Hinzufügen - - - Remove - Entfernen - - - <Enter regular expression to exclude> - <Regulären Ausdruck zum Ausschließen eingeben> - - - - LayoutPoperties - - Alignment - Ausrichtung - - - Alignment of an item within the cells it occupies. - Ausrichtung eines Items in den Zellen, die es enthalten. - - - Fill layout - Ausfüllen - - - The item will expand as much as possible while respecting the given constraints if true. - Wenn ausgewählt, wird das Item so stark vergrößert wie es die angegebenen Bedingungen erlauben. - - - Fill width - Breite ausfüllen - - - Fill height - Höhe ausfüllen - - - Preferred size - Bevorzugte Größe - - - Preferred size of an item in a layout. If the preferred height or width is -1, it is ignored. - Bevorzugte Größe eines Elements in einem Layout. Falls die bevorzugte Höhe oder Breite -1 ist, wird sie ignoriert. - - - Minimum size - Mindestgröße - - - Minimum size of an item in a layout. - Mindestgröße eines Items im Layout. - - - Maximum size - Höchstgröße - - - Maximum size of an item in a layout. - Höchstgröße eines Items im Layout. - - - Row span - Zeilen verbinden - - - Row span of an item in a GridLayout. - Anzahl der zu verbindenden Zeilen in einem GridLayout. - - - Column span - Spalten verbinden - - - Column span of an item in a GridLayout. - Anzahl der zu verbindenden Spalten in einem GridLayout. - - GridLayoutSpecifics - GridLayout - GridLayout + Grid Layout + - Columns - Spalten + Columns & Rows + - Rows - Zeilen + Spacing + Abstand Flow Anordnung - Layout Direction - Layout-Richtung - - - Row Spacing - Zeilenabstand - - - Column Spacing - Spaltenabstand + Layout direction + @@ -31349,297 +35573,6 @@ Senden selbst auch Zeit benötigt. OpenGL-Kontext kann nicht erzeugt werden. - - Utils::ShellCommand - - UNKNOWN - UNBEKANNT - - - Unknown - Unbekannt - - - - Utils::ShellCommandPage - - Command started... - Kommando gestartet... - - - Run Command - Kommando ausführen - - - No job running, please abort. - Kein laufender Job, bitte brechen Sie ab. - - - Succeeded. - Erfolgreich beendet. - - - Failed. - Fehlgeschlagen. - - - - Android - - OpenGL enabled - OpenGL aktiviert - - - OpenGL disabled - OpenGL deaktiviert - - - - BareMetal - - The remote executable must be set in order to run a custom remote run configuration. - Die entfernte ausführbare Datei muss eingestellt sein um eine benutzerdefinierte enternte Ausführungskonfiguration zu verwenden. - - - Custom Executable - Benutzerdefinierte ausführbare Datei - - - Cannot debug: Kit has no device. - Kann nicht debuggen: Das Kit hat kein Gerät. - - - No debug server provider found for %1 - Für %1 wurde kein Debug-Server-Provider gefunden - - - Cannot debug: Local executable is not set. - Kann nicht debuggen: Lokale ausführbare Datei ist nicht angegeben. - - - Cannot debug: Could not find executable for "%1". - Kann nicht debuggen: Die ausführbare Datei "%1" wurde nicht gefunden. - - - Unable to create a uVision project options template. - Es kann keine uVision-Projekteinstellungsvorlage erzeugt werden. - - - Unable to create a uVision project template. - Es kann keine uVision-Projektvorlage erzeugt werden. - - - Unable to create an uVision project options template. - Es kann keine uVision-Projekteinstellungsvorlage erzeugt werden. - - - Choose the desired startup mode of the GDB server provider. - Wählen Sie den gewünschten Startmodus des GDB-Server-Providers. - - - Startup mode: - Startmodus: - - - Peripheral description files (*.svd) - Peripherie-Beschreibungsdatei (*.svd) - - - Peripheral description file: - Peripherie-Beschreibungsdatei: - - - Startup in TCP/IP Mode - Im TCP/IP-Modus starten - - - Startup in Pipe Mode - Im Pipe-Modus starten - - - Enter TCP/IP hostname of the debug server, like "localhost" or "192.0.2.1". - Geben Sie den TCP/IP-Hostnamen des Debug-Servers ein, etwa "localhost" oder "192.0.2.1". - - - Enter TCP/IP port which will be listened by the debug server. - Geben Sie den TCP/IP-Port ein, an dem der Debug-Server Verbindungen annehmen wird. - - - Host: - Host: - - - Executable file: - Ausführbare Datei: - - - Root scripts directory: - Skript-Wurzelverzeichnis: - - - Configuration file: - Konfigurationsdatei: - - - Additional arguments: - Zusätzliche Argumente: - - - Init commands: - Kommandos zum Einrichten: - - - Reset commands: - Kommandos zum Zurücksetzen: - - - Specify the verbosity level (0..99). - Geben Sie den Detailgrad an (0..99). - - - Verbosity level: - Detailgrad: - - - Continue listening for connections after disconnect. - Nach der Trennung weiterhin auf Verbindungen warten. - - - Extended mode: - Erweiterter Modus: - - - Reset board on connection. - Board beim Verbinden zurücksetzen. - - - Reset on connection: - Beim Verbinden zurücksetzen: - - - Transport layer type. - Art der Transportschicht. - - - Version: - Version: - - - ST-LINK/V1 - ST-LINK/V1 - - - ST-LINK/V2 - ST-LINK/V2 - - - - CMakeProjectManager - - No cmake tool set. - Keine CMake Anwendung konfiguriert. - - - No compilers set in kit. - Im Kit sind keine Compiler eingerichtet. - - - Version: %1<br>Supports fileApi: %2 - Version: %1<br>Unterstützt fileApi: %2 - - - yes - ja - - - no - nein - - - (Default) - (Vorgabe) - - - Name - Name - - - Location - Pfad - - - Auto-detected - Automatisch bestimmt - - - Manual - Benutzerdefiniert - - - CMake .qch File - CMake .qch-Datei - - - Autorun CMake - CMake automatisch ausführen - - - Automatically run CMake after changes to CMake project files. - CMake nach Änderungen an den CMake-Projektdateien automatisch ausführen. - - - Auto-create build directories - Build-Verzeichnisse automatisch erzeugen - - - Automatically create build directories for CMake projects. - Build-Verzeichnisse für CMake-Projekte automatisch erzeugen. - - - Name: - Name: - - - Path: - Pfad: - - - Help file: - Hilfedatei: - - - Add - Hinzufügen - - - Clone - Klonen - - - Remove - Entfernen - - - Make Default - Als Vorgabe setzen - - - Set as the default CMake Tool to use when creating a new kit or when no value is set. - Als vorgegebenes CMake-Werkzeug einstellen, das verwendet wird, wenn eine neues Kit erstellt wird oder kein Wert eingestellt ist. - - - Clone of %1 - Kopie von %1 - - - New CMake - Neues CMake - - - System CMake at %1 - System-CMake in %1 - - Core::BaseFileWizard @@ -31682,442 +35615,9 @@ Senden selbst auch Zeit benötigt. Run External Tool Externes Werkzeug ausführen - - - CppTools::AbstractEditorSupport - The file name. - Der Dateiname. - - - The class name. - Der Klassenname. - - - - CppTools::CppEditorOutline - - Sort Alphabetically - Alphabetisch sortieren - - - - Debugger - - Debugger finished. - Debuggen beendet. - - - Continue - Fortsetzen - - - Interrupt - Anhalten - - - Abort Debugging - Debuggen abbrechen - - - Step Into - Einzelschritt herein - - - Step Out - Einzelschritt heraus - - - Run to Line - Ausführen bis Zeile - - - Run to Selected Function - Bis zu ausgewählter Funktion ausführen - - - Jump to Line - Zeile anspringen - - - Immediately Return From Inner Function - Sofortiges Herausspringen aus innerer Funktion - - - Step Over - Einzelschritt über - - - Toggle Breakpoint - Haltepunkt umschalten - - - Operate by Instruction - Auf Anweisungsebene arbeiten - - - Record Information to Allow Reversal of Direction - Daten aufzeichnen, um Richtungsumkehr zu ermöglichen - - - Switches the debugger to instruction-wise operation mode. In this mode, stepping operates on single instructions and the source location view also shows the disassembled instructions. - Weist den Debugger an, auf Anweisungsebene zu arbeiten. In diesem Modus arbeitet die Einzelschritt-Funktion auf Maschinenanweisungen und die Quelltextanzeige zeigt die disassemblierten Anweisungen an. - - - Peripheral Reg&isters - Peripherie-Reg&ister - - - Restarts the debugging session. - Startet die Debugging-Sitzung neu. - - - Record information to enable stepping backwards. - Daten aufzeichnen, um Einzelschritte rückwärts ausführen zu können. - - - Note: - Hinweis: - - - This feature is very slow and unstable on the GDB side. It exhibits unpredictable behavior when going backwards over system calls and is very likely to destroy your debugging session. - Diese Funktionalität ist sehr langsam und instabil innerhalb von GDB. Es kann unvorhergesehenes Verhalten auftreten, wenn man rückwärts über einen Systemaufruf springt, und die Debugger-Sitzung kann leicht unbenutzbar werden. - - - Reverse Direction - Richtung umkehren - - - Continue %1 - %1 fortsetzen - - - Interrupt %1 - %1 anhalten - - - Take Snapshot of Process State - Aktuellen Prozessstatus aufzeichnen - - - Launching Debugger - Starte Debugger - - - &Modules - &Module - - - Reg&isters - Reg&ister - - - &Stack - &Stack - - - Source Files - Quelldateien - - - &Threads - &Threads - - - Locals - Lokale Variablen - - - &Expressions - &Ausdrücke - - - &Breakpoints - &Haltepunkte - - - Aborts debugging and resets the debugger to the initial state. - Bricht das Debuggen ab und versetzt den Debugger in den Ausgangszustand. - - - Threads: - Threads: - - - - Debugger - - No Memory Viewer Available - Es ist kein Speicher-Anzeigemodul verfügbar - - - The memory contents cannot be shown as no viewer plugin for binary data has been loaded. - Der Speicherinhalt kann nicht angezeigt werden, da kein Plugin zur Anzeige binärer Daten geladen ist. - - - Loading finished. - Laden beendet. - - - Run failed. - Ausführung fehlgeschlagen. - - - Running. - Läuft. - - - Stopped. - Angehalten. - - - Run requested... - Ausführung angefordert... - - - The %1 process terminated. - Der %1-Prozess wurde beendet. - - - The %2 process terminated unexpectedly (exit code %1). - Der %2-Prozess wurde unerwartet beendet (Rückgabewert %1). - - - Unexpected %1 Exit - %1 unerwartet beendet - - - Taking notice of pid %1 - PID %1 gemeldet - - - Reverse-execution history exhausted. Going forward again. - Keine weiteren rückwärts ausführbaren Schritte vorhanden. Führe sie wieder vorwärts aus. - - - Attempting to interrupt. - Unterbreche. - - - Could not find a widget. - Es konnte kein Widget gefunden werden. - - - %1 for "%2" - e.g. LLDB for "myproject", shows up i - %1 für "%2" - - - This debugger cannot handle user input. - Dieser Debugger kann keine Nutzereingaben verarbeiten. - - - Stopped: "%1". - Angehalten: "%1". - - - Stopped: %1 (Signal %2). - Angehalten: %1 (Signal %2). - - - Stopped in thread %1 by: %2. - Im Thread %1 angehalten durch: %2. - - - Interrupted. - Unterbrochen. - - - <Unknown> - name - <unbekannt> - - - <Unknown> - meaning - <unbekannt> - - - <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>Der Prozess wurde wegen eines Signals vom Betriebssystem angehalten.<p><table><tr><td>Name des Signals : </td><td>%1</td></tr><tr><td>Bedeutung : </td><td>%2</td></tr></table> - - - Signal Received - Signal erhalten - - - <p>The inferior stopped because it triggered an exception.<p>%1 - <p>Der zu debuggende Prozess wurde angehalten, da er eine Ausnahme ausgelöst hat.<p>%1 - - - Exception Triggered - Ausnahme ausgelöst - - - Finished retrieving data. - Alle Daten erhalten. - - - No function selected. - Keine Funktion ausgewählt. - - - Running to function "%1". - Ausführung bis zu Funktion "%1". - - - Select a valid expression to evaluate. - Wählen Sie einen gültigen Ausdruck zur Auswertung aus. - - - Symbol - Symbol - - - Code - Code - - - Section - Abschnitt - - - Name - Name - - - Symbols in "%1" - Symbole in "%1" - - - From - Von - - - To - Bis - - - Flags - Flags - - - Sections in "%1" - Abschnitte in "%1" - - - The inferior is in the Portable Executable format. -Selecting %1 as debugger would improve the debugging experience for this binary format. - Der zu debuggende Prozess hat das Portable Executable-Format. -Für dieses Binärformat wäre %1 besser als Debugger geeignet. - - - The selected debugger may be inappropriate for the inferior. -Examining symbols and setting breakpoints by file name and line number may fail. - - Der gewählte Debugger könnte ungeeignet für den zu debuggenden Prozess sein. -Vielleicht können Symbole nicht untersucht werden oder Haltepunkte nicht anhand von Dateiname und Zeilennummer gesetzt werden. - - - - The inferior is in the ELF format. -Selecting GDB or LLDB as debugger would improve the debugging experience for this binary format. - Der zu debuggende Prozess hat das ELF-Format. -Für dieses Binärformat wären GDB oder LLDB besser als Debugger geeignet. - - - Current debugger location of %1 - Aktueller Pfad zum Debugger von %1 - - - Debugging has failed. - Debuggen schlug fehl. - - - Operate in Reverse Direction - In umgekehrter Richtung arbeiten - - - Reverse-execution recording failed. - Aufzeichnung für Rückwärtsausführung gescheitert. - - - Found. - Gefunden. - - - Not found. - Nicht gefunden. - - - Section %1: %2 - Abschnitt %1: %2 - - - Warning - Warnung - - - This does not seem to be a "Debug" build. -Setting breakpoints by file name and line number may fail. - Es liegt offenbar kein "Debug"-Build vor. -Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehlschlagen. - - - Run to Address 0x%1 - Ausführung bis Adresse 0x%1 - - - Run to Line %1 - Ausführen bis Zeile %1 - - - Jump to Address 0x%1 - Zu Adresse 0x%1 springen - - - Jump to Line %1 - Zu Zeile %1 springen - - - Location - Pfad - - - Type - Typ - - - Auto-detected - Automatisch bestimmt - - - Manual - Benutzerdefiniert - - - Add - Hinzufügen - - - Clone - Klonen - - - Clone of %1 - Kopie von %1 - - - New Debugger - Neuer Debugger - - - Restore - Wiederherstellen - - - Debuggers - Debugger + Runs an external tool that you have set up in the preferences (Environment > External Tools). + Führt ein in den Einstellungen konfiguriertes externes Werkzeug aus (Umgebung > Externe Werkzeuge). @@ -32131,37 +35631,6 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Anonyme Funktion - - Debugger - - Terminal: Cannot open /dev/ptmx: %1 - Terminal: /dev/ptmx kann nicht geöffnet werden: %1 - - - Terminal: ptsname failed: %1 - Terminal: ptsname schlug fehl: %1 - - - Terminal: Error: %1 - Terminal: Fehler: %1 - - - Terminal: Slave is no character device. - Terminal: Slave ist kein zeichenorientiertes Gerät. - - - Terminal: grantpt failed: %1 - Terminal: grantpt schlug fehl: %1 - - - Terminal: unlock failed: %1 - Terminal: unlock schlug fehl: %1 - - - Terminal: Read failed: %1 - Terminal: Lesen schlug fehl: %1 - - DiffEditor::Internal::DiffEditor @@ -32261,10 +35730,22 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Skipped unknown number of lines... Unbekannte Anzahl von Zeilen übersprungen... + + Waiting for data... + Warte auf Daten... + No difference. Kein Unterschied. + + Retrieving data failed. + Es konnten keine Daten empfangen werden. + + + Rendering diff + + DiffEditor::Internal::SideDiffEditorWidget @@ -32279,24 +35760,21 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl No document Kein Dokument + + Waiting for data... + Warte auf Daten... + No difference. Kein Unterschied. - - - ImageViewer - Image format not supported. - Bildformat nicht unterstützt. + Retrieving data failed. + Es konnten keine Daten empfangen werden. - Failed to read SVG image. - Das SVG-Bild konnte nicht gelesen werden. - - - Failed to read image. - Das Bild konnte nicht gelesen werden. + Rendering diff + @@ -32524,6 +36002,10 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl ProjectExplorer::ProjectTree + + <b>Warning:</b> This file is generated. + + <b>Warning:</b> This file is outside the project directory. <b>Warnung:</b> Diese Datei befindet sich außerhalb des Projektverzeichnisses. @@ -32573,6 +36055,10 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Toggle multi-line mode. Mehrzeiligen Modus umschalten. + + Reset to Default + Auf Vorgabe zurücksetzen + ProjectExplorer::Internal::WaitForStopDialog @@ -32589,17 +36075,6 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Warte auf Beendigung laufender Anwendungen. - - QbsProjectManager - - Qbs - Qbs - - - Profiles - Profile - - ModelNodeOperations @@ -32607,8 +36082,8 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Zu Implementierung gehen - Invalid item. - Ungültiges Element. + Invalid component. + Cannot find an implementation. @@ -32622,6 +36097,41 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl The property %1 is bound to an expression. Die Eigenschaft %1 ist an einen Ausdruck gebunden. + + Overwrite Existing File? + + + + File already exists. Overwrite? +"%1" + + + + Asset import data file "%1" is invalid. + + + + Unable to locate source scene "%1". + + + + Opening asset import data file "%1" failed. + + + + Unable to resolve asset import path. + + + + Import Update Failed + + + + Failed to update import. +Error: +%1 + + EnterTabDesignerAction @@ -32704,26 +36214,31 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl QmlDesigner::Internal::ConnectionView - Connection View - Verbindungsanzeige + Connections + Verbindungen QmlDesigner::Internal::ConnectionViewWidget Connections - Title of connection view - Verbindungen + Title of connections window + Verbindungen + + + Connections + Title of connection tab + Verbindungen Bindings - Title of connection view - Datenbindungen + Title of connection tab + Datenbindungen Properties - Title of dynamic properties view - Eigenschaften + Title of dynamic properties tab + Eigenschaften Backends @@ -32839,33 +36354,6 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Textwerkzeug - - QmlProfiler - - Duration - Dauer - - - Framerate - Bildwiederholrate - - - Context - Kontext - - - Details - Details - - - Location - Ort - - - QML Profiler Settings - Einstellungen des QML-Profilers - - ResourceTopLevelNode @@ -32883,10 +36371,6 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl &Redo &Wiederholen - - <line>:<column> - <Zeilennummer>:<Spaltennummer> - Delete &Line &Zeile löschen @@ -32907,6 +36391,10 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Delete Line up to Cursor Ganze Zeile vor Einfügemarke löschen + + Ctrl+Backspace + Ctrl+Backspace + Delete Word up to Cursor Ganzes Wort vor Einfügemarke löschen @@ -33083,6 +36571,14 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Ctrl+Shift+V Ctrl+Shift+V + + Paste Without Formatting + Ohne Formatierung einfügen + + + Ctrl+Alt+Shift+V + Ctrl+Alt+Shift+V + Auto-&indent Selection Einrückung &in Auswahl korrigieren @@ -33163,6 +36659,26 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Ctrl+Ins Ctrl+Ins + + Copy With Highlighting + Mit Syntaxhervorhebung kopieren + + + Create Cursors at Selected Line Ends + Einfügemarken an ausgewählten Zeilenenden hinzufügen + + + Alt+Shift+I + Alt+Shift+I + + + Add Next Occurrence to Selection + Nächstes Vorkommen zur Auswahl hinzufügen + + + Ctrl+D + Ctrl+D + &Duplicate Selection Auswahl &duplizieren @@ -33382,6 +36898,10 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl VcsBase::VcsBaseClientImpl + + Failed to retrieve data. + Es konnten keine Daten empfangen werden. + Working... Arbeite... @@ -33417,10 +36937,26 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Job in "VcsCommand" page has no "%1" set. Für Job auf der "VcsCommand"-Seite wurde kein "%1" angegeben. + + Command started... + Kommando gestartet... + Checkout Auschecken + + No job running, please abort. + Kein laufender Job, bitte brechen Sie ab. + + + Succeeded. + Erfolgreich beendet. + + + Failed. + Fehlgeschlagen. + VcsBase::VcsCommandPage @@ -33467,6 +37003,34 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Limit result output Begrenze Ergebnisausgabe + + Limit result description: + + + + Limit number of lines shown in test result tooltip and description. + + + + Open results when tests start + + + + Displays test results automatically when tests are started. + + + + Open results when tests finish + + + + Displays test results automatically when tests are finished. + + + + Displays test results only if the test run contains failed, fatal or unexpectedly passed tests. + + Automatically scroll results Ergebnisse automatisch scrollen @@ -33475,6 +37039,18 @@ Das Setzen von Haltepunkten anhand von Dateinamen und Zeilennummern könnte fehl Timeout used when executing each test case. Zeitlimit für jeden Testfall benutzen. + + No active test frameworks or tools. + + + + Mixing test frameworks and test tools. + + + + Mixing test frameworks and test tools can lead to duplicating run information when using "Run All Tests", for example. + + Timeout: Zeitlimit: @@ -33541,26 +37117,6 @@ Warnung: Dies ist eine experimentelle Funktion und könnte dazu führen, dass di Group results by application Ergebnisse nach Anwendung gruppieren - - Opens the test results pane automatically when tests are started. - Öffnet die Ansicht "Testergebnisse" automatisch, wenn Tests gestartet werden. - - - Open results pane when tests start - Ergebnisansicht öffnen, wenn Tests starten - - - Opens the test result pane automatically when tests are finished. - Öffnet die Ansicht "Testergebnisse" automatisch, wenn Tests beendet werden. - - - Open results pane when tests finish - Ergebnisansicht öffnen, wenn Tests enden - - - Opens the test result pane only if the test run contains failed, fatal or unexpectedly passed tests. - Öffnet die Ansicht "Testergebnisse" nur, wenn der Testlauf Fehler oder unerwartet erfolgreiche Tests enthält. - Only for unsuccessful test runs Nur bei gescheiterten Tests @@ -33573,6 +37129,14 @@ Warnung: Dies ist eine experimentelle Funktion und könnte dazu führen, dass di Runs chosen tests automatically if a build succeeded. Führt ausgewählte Tests automatisch aus, wenn ein Build erfolgreich endete. + + Active frameworks: + + + + Automatically run tests after build + + None Keine @@ -33585,34 +37149,1089 @@ Warnung: Dies ist eine experimentelle Funktion und könnte dazu führen, dass di Selected Ausgewählte - - - ClangCodeModel::Internal::ClangProjectSettingsWidget - Clang Code Model - Clang Codemodell + &Run Test Under Cursor + Test unter Cursor &ausführen - Parse templates in a MSVC-compliant way. This helps to parse headers for example from Active Template Library (ATL) or Windows Runtime Library (WRL). -However, using the relaxed and extended rules means also that no highlighting/completion can be provided within template functions. - Templates auf MSVC-konforme Weise verarbeiten. Dies hilft Header zu verarbeiten, etwa aus derA Active Template Library (ATL) oder Windows Runtime Library (WRL). -Allerdings führt die Anwendung der weniger strikten und erweiterten Regeln dazu, dass in Template-Funktionen keine Syntaxhervorhebung oder Vervollständigung möglich sind. + &Debug Test Under Cursor + Test unter Cursor de&buggen - Enable MSVC-compliant template parsing - MSVC-konforme Template-Verarbeitung verwenden + Scanning for Tests + Suche nach Tests - Use Global Settings - Globale Einstellungen verwenden + Run Without Deployment + Ausführung ohne Deployment - Use Customized Settings - Benutzerdefinierte Einstellungen verwenden + Debug Without Deployment + Debuggen ohne Deployment - <a href="target">Open Global Settings</a> - <a href="target">Globale Einstellungen öffnen</a> + Select All + Alles auswählen + + + Deselect All + Alles abwählen + + + Filter Test Tree + Testbaum filtern + + + Sort Naturally + Natürlich sortieren + + + Expand All + Alles aufklappen + + + Collapse All + Alles einklappen + + + Sort Alphabetically + Alphabetisch sortieren + + + Show Init and Cleanup Functions + Zeige Init- und Aufräumfunktionen + + + Show Data Functions + Zeige Datenfunktionen + + + Tests + Tests + + + %1 %2 per iteration (total: %3, iterations: %4) + %1 %2 pro Durchlauf (Summe: %3, Durchläufe: %4) + + + Executing test case %1 + Führe Testfall %1 aus + + + Entering test function %1::%2 + Betrete Testfunktion %1::%2 + + + Qt version: %1 + Qt-Version: %1 + + + Qt build: %1 + Qt-Build: %1 + + + QTest version: %1 + QTest-Version: %1 + + + XML parsing failed. + Die XML-Auswertung schlug fehl. + + + Executing test function %1 + Führe Testfunktion %1 aus + + + Execution took %1 ms. + Ausführung dauerte %1 ms. + + + Test function finished. + Testfunktion beendet. + + + Test finished. + Test beendet. + + + Test execution took %1 ms. + Testausführung dauerte %1 ms. + + + Running tests failed. + %1 +Executable: %2 + Ausführung von Tests gescheitert. + %1 +Ausführbare Datei: %2 + + + (iteration %1) + (Durchlauf %1) + + + Repeating test suite %1 (iteration %2) + Wiederhole Test-Suite %1 (%2. Durchlauf) + + + Entering test case %1 + Führe Testfall %1 aus + + + Execution took %1. + Ausführung benötigte %1. + + + Stop Test Run + Testlauf anhalten + + + Filter Test Results + Testergebnisse filtern + + + Switch Between Visual and Text Display + Zwischen grafischer und Textausgabe umschalten + + + Test Results + Testergebnisse + + + Pass + Bestanden + + + Fail + Durchgefallen + + + Expected Fail + Erwartetes Scheitern + + + Unexpected Pass + Unerwartet bestanden + + + Skip + Überspringen + + + Benchmarks + Benchmarks + + + Debug Messages + Debugnachrichten + + + Warning Messages + Warnungsnachrichten + + + Internal Messages + Interne Nachrichten + + + Check All Filters + Alle Filter auswählen + + + Uncheck All Filters + Alle Filter abwählen + + + Test summary + Testzusammenfassung + + + passes + bestanden + + + fails + durchgefallen + + + unexpected passes + unerwartete Erfolge + + + expected fails + erwartete Fehlschläge + + + fatals + Fatal + + + blacklisted + indiziert + + + skipped + übersprungen + + + disabled + deaktiviert + + + Copy + Kopieren + + + Copy All + Alles kopieren + + + Save Output to File... + Ausgabe in Datei speichern... + + + Run This Test Without Deployment + + + + Debug This Test Without Deployment + + + + Run This Test + Diesen Test starten + + + Debug This Test + Diesen Test debuggen + + + Save Output To + Ausgabe speichern + + + Error + Fehler + + + Failed to write "%1". + +%2 + Schreiben von "%1" fehlgeschlagen. + +%2 + + + Test run canceled by user. + Testlauf durch den Benutzer abgebrochen. + + + Omitted the following arguments specified on the run configuration page for "%1": + Die folgenden in der Ausführungskonfiguration "%1" angegebenen Argumente wurden ausgelassen: + + + Project is null for "%1". Removing from test run. +Check the test environment. + Kein Projekt für "%1". Entferne den Testlauf. +Überprüfen Sie die Testumgebung. + + + Executable path is empty. (%1) + Der Pfad zur ausführbaren Datei ist leer. (%1) + + + +Run configuration: deduced from "%1" + +Ausführungskonfiguration: hergeleitet von "%1" + + + +Run configuration: "%1" + +Ausführungskonfiguration: "%1" + + + Failed to start test for project "%1". + Der Test für das Projekt "%1" konnte nicht gestartet werden. + + + Test for project "%1" crashed. + Der Test für das Projekt "%1" ist abgestürzt. + + + Test for project "%1" did not produce any expected output. + Der Test für das Projekt "%1" hat keine erwartete Ausgabe erzeugt. + + + Test case canceled due to timeout. +Maybe raise the timeout? + Der Testfall wurde aufgrund einer Zeitüberschreitung abgebrochen. +Gegebenenfalls sollten Sie das Zeitlimit erhöhen. + + + No test cases left for execution. Canceling test run. + Es sind keine Tests ausführbar. Der Testlauf wird abgebrochen. + + + Could not find command "%1". (%2) + Kommando "%1" nicht gefunden. (%2) + + + No tests selected. Canceling test run. + Keine Tests ausgewählt. Testlauf wird abgebrochen. + + + Omitted the following environment variables for "%1": + Ausgelassene Umgebungsvariablen für "%1": + + + Current kit has changed. Canceling test run. + Aktuelles Kit wurde geändert. Testlauf wird abgebrochen. + + + Project is null. Canceling test run. +Only desktop kits are supported. Make sure the currently active kit is a desktop kit. + Projektangabe fehlt. Testlauf wird abgebrochen. +Nur Desktopkits sind erlaubt. Stellen Sie sicher, dass das aktive Kit ein Desktopkit ist. + + + Project is not configured. Canceling test run. + Projekt ist nicht konfiguriert. Testlauf wird abgebrochen. + + + Project's run configuration was deduced for "%1". +This might cause trouble during execution. +(deduced from "%2") + Die Ausführungskonfiguration des Projekts wurde für "%1" hergeleitet. +Dies könnte Probleme während der Ausführung verursachen. +(hergeleitet von "%2") + + + Startup project has changed. Canceling test run. + Startprojekt wurde geändert. Testlauf wird abgebrochen. + + + Running Tests + Laufende Tests + + + Failed to get run configuration. + Ausführungskonfiguration konnte nicht bestimmt werden. + + + Unable to display test results when using CDB. + Wenn CDB benutzt wird, können keine Testergebnisse angezeigt werden. + + + Build failed. Canceling test run. + Erstellung fehlgeschlagen. Testlauf wird abgebrochen. + + + AutoTest Debug + AutoTest Debug + + + No active test frameworks. + Keine aktiven Test-Frameworks. + + + You will not be able to use the AutoTest plugin without having at least one active test framework. + Ohne ein aktives Test-Framework können Sie das AutoTest-Plugin nicht verwenden. + + + Enable or disable test frameworks to be handled by the AutoTest plugin. + Vom AutoTest-Plugin zu verwendende Test-Frameworks ein- oder ausschalten. + + + Enable or disable grouping of test cases by folder. + Gruppierung von Testfällen nach Verzeichnis ein- oder ausschalten. + + + Number of resamples for bootstrapping. + + + + ms + ms + + + Abort after + + + + Aborts after the specified number of failures. + + + + Benchmark samples + + + + Number of samples to collect while running benchmarks. + + + + Benchmark resamples + + + + Number of resamples used for statistical bootstrapping. + + + + Confidence interval used for statistical bootstrapping. + + + + Benchmark confidence interval + + + + Benchmark warmup time + + + + Warmup time for each test. + + + + Disable analysis + + + + Disables statistical analysis and bootstrapping. + + + + Show success + + + + Show success for tests. + + + + Turns failures into debugger breakpoints. + Erzeugt aus Fehlern Debugger-Haltepunkte. + + + Skip throwing assertions + + + + Skips all assertions that test for thrown exceptions. + + + + Visualize whitespace + + + + Makes whitespace visible. + + + + Warn on empty tests + + + + Warns if a test section does not check any assertion. + + + + Break on failure while debugging + Beim Debuggen an Fehlern anhalten + + + Executes disabled tests when performing a test run. + Ausgeschaltete Tests in einem Testlauf ausführen. + + + Run disabled tests + Ausgeschaltete Tests ausführen + + + Turns assertion failures into C++ exceptions. + Erzeugt aus Assertion-Fehlern C++-Exceptions. + + + Throw on failure + Exception bei Fehler + + + Iterations: + Durchläufe: + + + Shuffles tests automatically on every iteration by the given seed. + Vertauscht die Tests automatisch für jeden Durchlauf mithilfe des vorgegebenen Startwerts. + + + Shuffle tests + Vertausche Tests + + + Repeats a test run (you might be required to increase the timeout to avoid canceling the tests). + Testlauf wiederholen (eine Erhöhung des Zeitlimits kann nötig sein, um einen Abbruch zu vermeiden). + + + Output on failure + + + + Output mode + + + + Default + Vorgabe + + + Verbose + Ausführlich + + + Very Verbose + + + + Repetition mode + + + + Until Fail + + + + Until Pass + + + + After Timeout + + + + Count + Anzahl + + + Number of re-runs for the test. + + + + Schedule random + + + + Stop on failure + + + + Run tests in parallel mode using given number of jobs. + + + + Jobs + + + + Test load + + + + Try not to start tests when they may cause CPU load to pass a threshold. + + + + Threshold + Grenze + + + CTest + + + + Repeat tests + Tests wiederholen + + + Run in parallel + + + + Log format: + + + + Report level: + + + + Seed: + Startwert: + + + A seed of 0 means no randomization. A value of 1 uses the current time, any other value is used as random seed generator. + + + + Randomize + + + + Randomize execution order. + + + + Catch system errors + + + + Catch or ignore system errors. + + + + Floating point exceptions + + + + Enable floating point exception traps. + + + + Detect memory leaks + + + + Enable memory leak detection. + + + + A seed of 0 generates a seed based on the current timestamp. + Ein Startwert 0 erzeugt einen neuen Startwert aus der Uhrzeit. + + + Group mode: + Gruppieren nach: + + + Active filter: + Aktiver Filter: + + + Select on what grouping the tests should be based. + Wählen Sie aus, wie die Tests gruppiert werden sollen. + + + Directory + Verzeichnis + + + GTest Filter + GTest-Filter + + + Set the GTest filter to be used for grouping. +See Google Test documentation for further information on GTest filters. + Geben Sie den GTest-Filter an, der zum Gruppieren verwendet werden soll. +Weitere Informationen über GTest-Filter finden Sie in der Dokumenation von Google Test. + + + Enables interrupting tests on assertions. + Hält Tests bei Assertions an. + + + Disable crash handler while debugging + Crash Handler beim Debuggen deaktivieren + + + Use XML output + XML-Ausgabe verwenden + + + Verbose benchmarks + Ausführliche Benchmarks + + + Log every signal emission and resulting slot invocations. + Jede Signal-Auslösung und daraus resultierende Slot-Aufrufe aufzeichnen. + + + Log signals and slots + Signale und Slots aufzeichnen + + + Limit warnings + + + + Set the maximum number of warnings. 0 means that the number is not limited. + + + + Unlimited + + + + Benchmark Metrics + Benchmark-Metriken + + + Uses walltime metrics for executing benchmarks (default). + Echtzeit bei der Benchmarkausführung messen (Standard). + + + Walltime + Echtzeit + + + Uses tick counter when executing benchmarks. + Den Tickzähler bei der Benchmarkausführung benutzen. + + + Tick counter + Tickzähler + + + Uses event counter when executing benchmarks. + Ereigniszähler bei der Benchmarkausführung benutzen. + + + Event counter + Ereigniszähler + + + Uses Valgrind Callgrind when executing benchmarks (it must be installed). + "Valgrind Callgrind" zur Benchmarkausführung benutzen (dazu muss es installiert sein). + + + Callgrind + Callgrind + + + Uses Perf when executing benchmarks (it must be installed). + "Perf" zur Benchmarkausführung benutzen (dazu muss es installiert sein). + + + Perf + Perf + + + XML output is recommended, because it avoids parsing issues, while plain text is more human readable. + +Warning: Plain text misses some information, such as duration. + Die XML-Ausgabe ist empfehlenswert, weil sie Probleme beim Einlesen vermeidet. Reiner Text ist hingegen besser lesbar für Menschen. + +Warnung: Reinem Text fehlen manche Informationen, etwa die Dauer. + + + Select Run Configuration + Ausführungskonfiguration auswählen + + + Could not determine which run configuration to choose for running tests + Es konnte nicht bestimmt werden, welche Ausführungskonfiguration zum Ausführen von Tests gewählt werden soll + + + Remember choice. Cached choices can be reset by switching projects or using the option to clear the cache. + Auswahl speichern. Gespeicherte Entscheidungen können zurückgesetzt werden, indem Sie das Projekt wechseln oder mithilfe der Option zum Löschen des Zwischenspeichers. + + + Run Configuration: + Ausführungskonfiguration: + + + Executable: + Ausführbare Datei: + + + Arguments: + Argumente: + + + Working Directory: + Arbeitsverzeichnis: + + + Testing + Testen + + + &Tests + &Tests + + + Run &All Tests + Starte &alle Tests + + + Run All Tests + Alle Tests starten + + + Ctrl+Meta+T, Ctrl+Meta+A + Ctrl+Meta+T, Ctrl+Meta+A + + + Alt+Shift+T,Alt+A + Alt+Shift+T,Alt+A + + + Run All Tests Without Deployment + + + + Ctrl+Meta+T, Ctrl+Meta+E + + + + Alt+Shift+T,Alt+E + + + + &Run Selected Tests + Sta&rte ausgewählte Tests + + + Run Selected Tests + Ausgewählte Tests starten + + + Ctrl+Meta+T, Ctrl+Meta+R + Ctrl+Meta+T, Ctrl+Meta+R + + + Alt+Shift+T,Alt+R + Alt+Shift+T,Alt+R + + + Run Tests for Current File + Tests für aktuelle Datei ausführen + + + Ctrl+Meta+T, Ctrl+Meta+F + Ctrl+Meta+T, Ctrl+Meta+F + + + &Run Selected Tests Without Deployment + + + + Ctrl+Meta+T, Ctrl+Meta+W + + + + Alt+Shift+T,Alt+W + + + + Run &Failed Tests + + + + Run Failed Tests + + + + Alt+Shift+T,Alt+F + Alt+Shift+T,Alt+F + + + Run Tests for &Current File + + + + Ctrl+Meta+T, Ctrl+Meta+C + + + + Alt+Shift+T,Alt+C + + + + Re&scan Tests + Tests neu durch&suchen + + + Ctrl+Meta+T, Ctrl+Meta+S + Ctrl+Meta+T, Ctrl+Meta+S + + + Alt+Shift+T,Alt+S + Alt+Shift+T,Alt+S + + + Run Test Under Cursor Without Deployment + + + + Debug Test Under Cursor Without Deployment + + + + Selected test was not found (%1). + Ausgewählter Test wurde nicht gefunden (%1). + + + Boost Test + Boost Test + + + Executing test suite %1 + Führe Test-Suite %1 aus + + + Test execution took %1 + Testausführung benötigte %1 + + + Test suite execution took %1 + + + + Executing test module %1 + + + + Test module execution took %1 + + + + %1 failures detected in %2. + + + + %1 tests passed. + + + + No errors detected. + + + + Running tests exited with %1 + + + + Executable: %1 + + + + Running tests failed. +%1 +Executable: %2 + + + + Running tests without output. + + + + parameterized + parametrisiert + + + fixture + festgelegt + + + templated + aus Vorlage + + + Test executable crashed. + Die ausführbare Datei des Tests ist abgestürzt. + + + Catch Test + + + + Exception: + + + + Executing %1 "%2" + + + + %1 "%2" passed + + + + Expression passed + + + + Expression failed: %1 + + + + Finished executing %1 "%2" + + + + Running tests for %1 + + + + Google Test + Google Test + + + Enable or disable grouping of test cases by folder or GTest filter. +See also Google Test settings. + Gruppierung von Testfällen nach Verzeichnis oder GTest-Filter ein- oder ausschalten. +Siehe auch die Einstellungen für Google Test. + + + <matching> + <passend> + + + <not matching> + <nicht passend> + + + Change GTest filter in use inside the settings. + Ändern Sie den verwendeten GTest-Filter in den Einstellungen. + + + typed + typisiert + + + Qt Test + Qt Test + + + <p>Multiple testcases inside a single executable are not officially supported. Depending on the implementation they might get executed or not, but never will be explicitly selectable.</p> + + + + inherited + vererbt + + + multiple testcases + + + + Quick Test + Quick Test + + + <unnamed> + <unbenannt> + + + Give all test cases a name to ensure correct behavior when running test cases and to be able to select them + + + + %1 (none) + %1 (keine) @@ -33622,70 +38241,6 @@ Allerdings führt die Anwendung der weniger strikten und erweiterten Regeln dazu MainWindow - - CppTools::ClangDiagnosticConfigsWidget - - Copy... - Kopieren... - - - Remove - Entfernen - - - Clang Warnings - Clang-Warnungen - - - Copy Diagnostic Configuration - Diagnosekonfiguration kopieren - - - Diagnostic configuration name: - Diagnosekonfigurationsname: - - - %1 (Copy) - %1 (Kopie) - - - Rename Diagnostic Configuration - Diagnosekonfiguration umbenennen - - - New name: - Neuer Name: - - - Option "%1" is invalid. - Option "%1" ist ungültig. - - - Copy this configuration to customize it. - Kopieren Sie diese Konfiguration, um sie anzupassen. - - - Configuration passes sanity checks. - https://de.wikipedia.org/wiki/Sanity_Check - Die Konfiguration besteht die Sanity Checks. - - - %1 - %1 - - - InfoText - InfoText - - - Diagnostic Configurations - Diagnosekonfigurationen - - - Rename... - Umbenennen... - - AddSignalHandlerDialog @@ -34146,470 +38701,6 @@ Allerdings führt die Anwendung der weniger strikten und erweiterten Regeln dazu Beziehung umbiegen - - Autotest - - &Run Test Under Cursor - Test unter Cursor &ausführen - - - &Debug Test Under Cursor - Test unter Cursor de&buggen - - - - Autotest - - Scanning for Tests - Suche nach Tests - - - - Autotest - - Run Without Deployment - Ausführung ohne Deployment - - - Debug Without Deployment - Debuggen ohne Deployment - - - Select All - Alles auswählen - - - Deselect All - Alles abwählen - - - Filter Test Tree - Testbaum filtern - - - Sort Naturally - Natürlich sortieren - - - Expand All - Alles aufklappen - - - Collapse All - Alles einklappen - - - Sort Alphabetically - Alphabetisch sortieren - - - Show Init and Cleanup Functions - Zeige Init- und Aufräumfunktionen - - - Show Data Functions - Zeige Datenfunktionen - - - - Autotest - - Tests - Tests - - - - Autotest - - %1 %2 per iteration (total: %3, iterations: %4) - %1 %2 pro Durchlauf (Summe: %3, Durchläufe: %4) - - - Executing test case %1 - Führe Testfall %1 aus - - - Entering test function %1::%2 - Betrete Testfunktion %1::%2 - - - Qt version: %1 - Qt-Version: %1 - - - Qt build: %1 - Qt-Build: %1 - - - QTest version: %1 - QTest-Version: %1 - - - XML parsing failed. - Die XML-Auswertung schlug fehl. - - - Executing test function %1 - Führe Testfunktion %1 aus - - - Execution took %1 ms. - Ausführung dauerte %1 ms. - - - Test function finished. - Testfunktion beendet. - - - Test finished. - Test beendet. - - - Test execution took %1 ms. - Testausführung dauerte %1 ms. - - - - Autotest - - Running tests failed. - %1 -Executable: %2 - Ausführung von Tests gescheitert. - %1 -Ausführbare Datei: %2 - - - (iteration %1) - (Durchlauf %1) - - - Repeating test suite %1 (iteration %2) - Wiederhole Test-Suite %1 (%2. Durchlauf) - - - Entering test case %1 - Führe Testfall %1 aus - - - Execution took %1. - Ausführung benötigte %1. - - - - Autotest - - Stop Test Run - Testlauf anhalten - - - Filter Test Results - Testergebnisse filtern - - - Switch Between Visual and Text Display - Zwischen grafischer und Textausgabe umschalten - - - Test Results - Testergebnisse - - - Pass - Bestanden - - - Fail - Durchgefallen - - - Expected Fail - Erwartetes Scheitern - - - Unexpected Pass - Unerwartet bestanden - - - Skip - Überspringen - - - Benchmarks - Benchmarks - - - Debug Messages - Debugnachrichten - - - Warning Messages - Warnungsnachrichten - - - Internal Messages - Interne Nachrichten - - - Check All Filters - Alle Filter auswählen - - - Uncheck All Filters - Alle Filter abwählen - - - Test summary - Testzusammenfassung - - - passes - bestanden - - - fails - durchgefallen - - - unexpected passes - unerwartete Erfolge - - - expected fails - erwartete Fehlschläge - - - fatals - Fatal - - - blacklisted - indiziert - - - skipped - übersprungen - - - disabled - deaktiviert - - - Copy - Kopieren - - - Copy All - Alles kopieren - - - Save Output to File... - Ausgabe in Datei speichern... - - - Run This Test - Diesen Test starten - - - Debug This Test - Diesen Test debuggen - - - Save Output To - Ausgabe speichern - - - Error - Fehler - - - Failed to write "%1". - -%2 - Schreiben von "%1" fehlgeschlagen. - -%2 - - - - Autotest - - Test run canceled by user. - Testlauf durch den Benutzer abgebrochen. - - - Omitted the following arguments specified on the run configuration page for "%1": - Die folgenden in der Ausführungskonfiguration "%1" angegebenen Argumente wurden ausgelassen: - - - Project is null for "%1". Removing from test run. -Check the test environment. - Kein Projekt für "%1". Entferne den Testlauf. -Überprüfen Sie die Testumgebung. - - - Executable path is empty. (%1) - Der Pfad zur ausführbaren Datei ist leer. (%1) - - - -Run configuration: deduced from "%1" - -Ausführungskonfiguration: hergeleitet von "%1" - - - -Run configuration: "%1" - -Ausführungskonfiguration: "%1" - - - Failed to start test for project "%1". - Der Test für das Projekt "%1" konnte nicht gestartet werden. - - - Test for project "%1" crashed. - Der Test für das Projekt "%1" ist abgestürzt. - - - Test for project "%1" did not produce any expected output. - Der Test für das Projekt "%1" hat keine erwartete Ausgabe erzeugt. - - - Test case canceled due to timeout. -Maybe raise the timeout? - Der Testfall wurde aufgrund einer Zeitüberschreitung abgebrochen. -Gegebenenfalls sollten Sie das Zeitlimit erhöhen. - - - No test cases left for execution. Canceling test run. - Es sind keine Tests ausführbar. Der Testlauf wird abgebrochen. - - - Could not find command "%1". (%2) - Kommando "%1" nicht gefunden. (%2) - - - No tests selected. Canceling test run. - Keine Tests ausgewählt. Testlauf wird abgebrochen. - - - Omitted the following environment variables for "%1": - Ausgelassene Umgebungsvariablen für "%1": - - - Current kit has changed. Canceling test run. - Aktuelles Kit wurde geändert. Testlauf wird abgebrochen. - - - Project is null. Canceling test run. -Only desktop kits are supported. Make sure the currently active kit is a desktop kit. - Projektangabe fehlt. Testlauf wird abgebrochen. -Nur Desktopkits sind erlaubt. Stellen Sie sicher, dass das aktive Kit ein Desktopkit ist. - - - Project is not configured. Canceling test run. - Projekt ist nicht konfiguriert. Testlauf wird abgebrochen. - - - Project's run configuration was deduced for "%1". -This might cause trouble during execution. -(deduced from "%2") - Die Ausführungskonfiguration des Projekts wurde für "%1" hergeleitet. -Dies könnte Probleme während der Ausführung verursachen. -(hergeleitet von "%2") - - - Startup project has changed. Canceling test run. - Startprojekt wurde geändert. Testlauf wird abgebrochen. - - - Running Tests - Laufende Tests - - - Failed to get run configuration. - Ausführungskonfiguration konnte nicht bestimmt werden. - - - Unable to display test results when using CDB. - Wenn CDB benutzt wird, können keine Testergebnisse angezeigt werden. - - - Build failed. Canceling test run. - Erstellung fehlgeschlagen. Testlauf wird abgebrochen. - - - - CMakeProjectManager - - CMake Build - Default display name for the cmake make step. - Erstellen mit CMake - - - The build configuration is currently disabled. - Die Build-Konfiguration ist zurzeit deaktiviert. - - - A CMake tool must be set up for building. Configure a CMake tool in the kit options. - Zum Erstellen muss ein CMake Tool eingestellt sein. Die Konfiguration erfolgt in den Kit Einstellungen. - - - There is a CMakeCache.txt file in "%1", which suggest an in-source build was done before. You are now building in "%2", and the CMakeCache.txt file might confuse CMake. - Es gibt eine Datei CMakeCache.txt in "%1", was darauf hindeutet, dass das Projekt bereits innerhalb der Quellen erstellt wurde. Sie erstellen es jetzt in "%2". Die Datei CMakeCache.txt könnte CMake stören. - - - Persisting CMake state... - Speichere CMake Status... - - - Running CMake in preparation to build... - CMake wird ausgeführt um die Erstellung vorzubereiten... - - - Project did not parse successfully, cannot build. - Das Projekt konnte nicht erfolgreich ausgewertet werden. Es kann nicht erstellt werden. - - - Build - Display name for CMakeProjectManager::CMakeBuildStep id. - Erstellen - - - CMake arguments: - Kommandozeilenargumente für CMake: - - - Tool arguments: - Toolparameter: - - - Targets: - Ziele: - - - Build - CMakeProjectManager::CMakeBuildStepConfigWidget display name. - Build - - - Key - Schlüssel - - - (ADVANCED) - (ERWEITERT) - - - Current kit: %1 - Aktuelles Kit: %1 - - - Value - Wert - - Core::Internal::ThemeChooser @@ -34635,89 +38726,6 @@ Dies könnte Probleme während der Ausführung verursachen. Default Clang-Tidy and Clazy checks Vorgegebene Clang-Tidy- und Clazy-Prüfungen - - Pedantic checks - Pedantische Prüfung - - - Checks for almost everything - Prüft auf fast alles - - - - Debugger - - Use Customized Settings - Benutzerdefinierte Einstellungen verwenden - - - Use Global Settings - Globale Einstellungen verwenden - - - - Debugger - - Copy - Kopieren - - - - Debugger - - Start Remote Analysis - Entfernte Analyse starten - - - Executable: - Ausführbare Datei: - - - Arguments: - Argumente: - - - Working directory: - Arbeitsverzeichnis: - - - - Debugger - - Show debug, log, and info messages. - Zeige Debug-, Log- und informative Nachrichten. - - - Show warning messages. - Warnungen anzeigen. - - - Show error messages. - Fehlermeldungen anzeigen. - - - Can only evaluate during a debug session. - Kann nur während einer Debugsitzung ermittelt werden. - - - QML Debugger Console - QML-Debuggerkonsole - - - - Debugger - - &Copy - &Kopieren - - - &Show in Editor - In &Editor anzeigen - - - C&lear - &Löschen - Utils::DebuggerMainWindow @@ -34729,66 +38737,6 @@ Dies könnte Probleme während der Ausführung verursachen. Stop Anhalten - - &Views - &Ansichten - - - Leave Debug Mode - Debug-Modus verlassen - - - Toolbar - Werkzeugleiste - - - Editor - Editor - - - - Debugger - - <not in scope> - Value of variable in Debugger Locals display for variables out of scope (stopped above initialization). - <nicht im Scope> - - - %1 <shadowed %2> - Display of variables shadowed by variables of the same name in nested scopes: Variable %1 is the variable name, %2 is a simple count. - %1 <überlagert %2> - - - - Git - - Tree (optional) - Baum (optional) - - - Can be HEAD, tag, local or remote branch, or a commit hash. -Leave empty to search through the file system. - Kann HEAD sein, ein Tag oder ein lokaler oder entfernter Branch oder ein Commit-Hash. -Leer lassen, um das Dateisystem zu durchsuchen. - - - Recurse submodules - In Submodule hinabsteigen - - - Git Grep - Git Grep - - - Ref: %1 -%2 - Ref: %1 -%2 - - - Git Show %1:%2 - Git Show %1:%2 - ModelEditor::Internal::ModelDocument @@ -34913,220 +38861,6 @@ Sie werden erhalten. - - QmlProfiler - - Statistics - Statistik - - - Copy Row - Zeile kopieren - - - Copy Table - Tabelle kopieren - - - Extended Event Statistics - Erweiterte Ereignisstatistik - - - Show Full Range - Ganzen Bereich anzeigen - - - Debug Message - Debugnachricht - - - Warning Message - Warnungsnachricht - - - Critical Message - Kritische Nachricht - - - Fatal Message - Fatale Nachricht - - - Info Message - Infonachricht - - - - Valgrind - - Valgrind Function Profiler uses the Callgrind tool to record function calls when a program runs. - Das Profiling von Funktionen mit Valgrind verwendet das Programm "callgrind", um Funktionsaufrufe während der Programmausführung aufzuzeichnen. - - - Valgrind Function Profiler - Valgrind Funktionsprofiler - - - Valgrind Function Profiler (External Application) - Valgrind Functionsprofiler (externe Anwendung) - - - Profile Costs of This Function and Its Callees - Bestimme Kosten dieser Funktion und der von ihr aufgerufenen Funktionen - - - Visualization - Visualisierung - - - Callers - Aufrufer - - - Callees - Aufgerufene - - - Functions - Funktionen - - - Load External Log File - Externe Logdatei laden - - - Open results in KCachegrind. - Ergebnisse in KCachegrind öffnen. - - - Request the dumping of profile information. This will update the Callgrind visualization. - Fordere das Ausschreiben der Profiler-Informationen an. Die Callgrind-Visualisierung wird dadurch aktualisiert. - - - Reset all event counters. - Alle Ereigniszähler zurücksetzen. - - - Pause event logging. No events are counted which will speed up program execution during profiling. - Pausiert die Ereignissprotokollierung, was die Ausführung des Programmes während des Profilings beschleunigt. - - - Discard Data - Daten verwerfen - - - Go back one step in history. This will select the previously selected item. - Gehe einen Schritt im Verlauf zurück. Das vorher ausgewählte Element wird wieder ausgewählt. - - - Go forward one step in history. - Gehe einen Schritt weiter. - - - Selects which events from the profiling data are shown and visualized. - Bestimmt, welche Ereignisse der Profilerdaten angezeigt werden. - - - Absolute Costs - Absolute Kosten - - - Show costs as absolute numbers. - Kosten als absolute Werte anzeigen. - - - Relative Costs - Relative Kosten - - - Show costs relative to total inclusive cost. - Zeige Kosten relativ zur Summe der einschließlichen Kosten. - - - Relative Costs to Parent - Kosten relativ zu übergeordnetem Element - - - Show costs relative to parent function's inclusive cost. - Zeige Kosten relativ zu den einschließlichen Kosten der rufenden Funktion. - - - Remove template parameter lists when displaying function names. - Beim Anzeigen von Funktionsnamen Template-Parameterlisten entfernen. - - - Select This Function in the Analyzer Output - Diese Funktion in der Analyzer-Ausgabe auswählen - - - Cost Format - Kostenformat - - - Enable cycle detection to properly handle recursive or circular function calls. - Aktivieren Sie die Schleifenerkennung, um rekursive oder zyklische Funktionsaufrufe richtig zu behandeln. - - - Show Project Costs Only - Nur Projektkosten anzeigen - - - Show only profiling info that originated from this project source. - Nur Profilerinformationen aus den Quellen des Projekts anzeigen. - - - Filter... - Filter... - - - Callgrind - Callgrind - - - A Valgrind Callgrind analysis is still in progress. - Eine Valgrind Callgrind Analyse läuft noch. - - - Start a Valgrind Callgrind analysis. - Eine Valgrind Callgrind Analyse starten. - - - Profiling aborted. - Profiling abgebrochen. - - - Parsing finished, no data. - Auswertung beendet, keine Daten erhalten. - - - Parsing finished, total cost of %1 reported. - Auswertung beendet, erhaltene Gesamtkosten: %1. - - - Parsing failed. - Die Auswertung schlug fehl. - - - Populating... - Erstelle Ansicht... - - - Open Callgrind Log File - Callgrind-Logdatei öffnen - - - Callgrind Output (callgrind.out*);;All Files (*) - Callgrind-Ausgabedatei (callgrind.out*);;Alle Dateien (*) - - - Callgrind: Failed to open file for reading: %1 - Callgrind: Konnte Datei nicht zum Lesen öffnen: %1 - - - Parsing Profile Data... - Werte Profilerdaten aus... - - ModelEditor::Internal::ExtPropertiesMView @@ -35229,70 +38963,6 @@ Sie werden erhalten. Zugehörige Elemente hinzufügen - - ImageViewer - - x - Multiplication, as in 32x32 - x - - - Size: - Größe: - - - %1 already exists. -Would you like to overwrite it? - %1 existiert bereits. -Möchten Sie sie überschreiben? - - - - ImageViewer - - Export %1 - %1 exportieren - - - Exported "%1", %2x%3, %4 bytes - "%1" exportiert, %2x%3, %4 Bytes - - - Export Image - Bild exportieren - - - Export a Series of Images from %1 (%2x%3) - Eine Bilderserie aus %1 exportieren (%2x%3) - - - Could not write file "%1". - Die Datei "%1" konnte nicht geschrieben werden. - - - - Beautifier::Internal::GeneralOptionsPage - - Automatic Formatting on File Save - Automatische Formatierung beim Speichern einer Datei - - - Enable auto format on file save - Beim Speichern einer Datei automatisch formatieren - - - Tool: - Werkzeug: - - - Restrict to MIME types: - Auf MIME-Typen beschränken: - - - Restrict to files contained in the current project - Auf Dateien des aktuellen Projekts beschränken - - Nim @@ -35323,6 +38993,112 @@ Möchten Sie sie überschreiben? Release Release + + Nim Compiler Build Step + Nim-Compiler Build-Schritt + + + Nim build step + Nim-Build-Schritt + + + Code Style + Coding-Stil + + + Nim + Nim + + + Nim Clean Step + Nim-Schritt zur Bereinigung + + + Working directory: + Arbeitsverzeichnis: + + + Build directory "%1" does not exist. + Build-Verzeichnis "%1" existiert nicht. + + + Failed to delete the cache directory. + Das Cache-Verzeichnis konnte nicht gelöscht werden. + + + Failed to delete the out file. + Die Ausgabedatei konnte nicht gelöscht werden. + + + Clean step completed successfully. + Der Schritt zur Bereinigung war erfolgreich. + + + Path: + Pfad: + + + Global + Settings + Global + + + Nim + SnippetProvider + Nim + + + No Nim compiler set. + Es ist kein Nim-Compiler eingerichtet. + + + Nim compiler does not exist. + Der Nim-Compiler existiert nicht. + + + &Compiler path: + &Compiler-Pfad: + + + &Compiler version: + &Compiler-Version: + + + Current Build Target + Aktuelles Build-Ziel + + + Tools + Werkzeuge + + + General + Allgemein + + + Nimble Build + + + + Nimble Test + + + + Nimble Task + + + + Task arguments: + + + + Tasks: + + + + Nimble task %1 not found. + + QmlDesigner::OpenUiQmlFileDialog @@ -35385,6 +39161,10 @@ Möchten Sie sie überschreiben? Timeout in ms: Zeitüberschreitung nach (ms): + + Character threshold: + Minimale Zeichenanzahl: + Inserts the common prefix of available completion items. Fügt den gemeinsamen Präfix aller verfügbaren Vervollständigungen ein. @@ -35449,10 +39229,6 @@ Drücken Sie zusätzlich die Umschalttaste, wird ein Escape-Zeichen an der aktue Highlight automatically inserted text Automatisch eingefügten Text hervorheben - - Skip automatically inserted character if re-typed manually after completion. - Automatisch eingefügtes Zeichen überspringen, wenn es nach der Vervollständigung erneut eingegeben wird. - Skip automatically inserted character when typing Automatisch eingefügtes Zeichen beim Tippen überspringen @@ -35473,6 +39249,10 @@ Drücken Sie zusätzlich die Umschalttaste, wird ein Escape-Zeichen an der aktue Automatically creates a Doxygen comment upon pressing enter after a '/**', '/*!', '//!' or '///'. Erstellt automatisch einen Doxygen-Kommentar, wenn man nach '/**', '/*!', '//!' oder '///' die Enter-Taste betätigt. + + Skip automatically inserted character if re-typed manually after completion or by pressing tab. + Automatisch eingefügtes Zeichen überspringen, wenn es nach der Vervollständigung erneut eingegeben oder die Tabulatortaste gedrückt wird. + Enable Doxygen blocks Doxygen-Blöcke aktivieren @@ -35509,32 +39289,40 @@ Drücken Sie zusätzlich die Umschalttaste, wird ein Escape-Zeichen an der aktue AnchorButtons - Anchor item to the top. - Item am oberen Ende verankern. + Anchors can only be applied to child items. + - Anchor item to the bottom. - Item am unteren Ende verankern. + Anchors can only be applied to the base state. + - Anchor item to the left. - Item an der linken Seite verankern. + Anchor component to the top. + - Anchor item to the right. - Item an der rechten Seite verankern. + Anchor component to the bottom. + - Fill parent item. - Übergeordnetes Element ausfüllen. + Anchor component to the left. + - Anchor item vertically. - Item vertikal verankern. + Anchor component to the right. + - Anchor item horizontally. - Item horizontal verankern. + Fill parent component. + + + + Anchor component vertically. + + + + Anchor component horizontally. + @@ -35546,108 +39334,12 @@ Drücken Sie zusätzlich die Umschalttaste, wird ein Escape-Zeichen an der aktue Enter one environment variable per line. To set or change a variable, use VARIABLE=VALUE. +To append to a variable, use VARIABLE+=VALUE. +To prepend to a variable, use VARIABLE=+VALUE. Existing variables can be referenced in a VALUE with ${OTHER}. To clear a variable, put its name on a line with nothing else on it. To disable a variable, prefix the line with "#". - Geben Sie eine Umgebungsvariable pro Zeile ein. -Um eine Variable zu setzen oder zu ändern, benutzen Sie VARIABLE=WERT. -Existierende Variablen können in einem WERT mit ${ANDERE} verwendet werden. -Um eine Variable zu leeren, schreiben Sie nichts als ihren Namen in eine Zeile. -Um eine Variable zu deaktivieren, stellen Sie der Zeile "#" voran. - - - - GTestFramework - - Google Test - Google Test - - - Enable or disable grouping of test cases by folder or GTest filter. -See also Google Test settings. - Gruppierung von Testfällen nach Verzeichnis oder GTest-Filter ein- oder ausschalten. -Siehe auch die Einstellungen für Google Test. - - - - GTestTreeItem - - <matching> - <passend> - - - <not matching> - <nicht passend> - - - Change GTest filter in use inside the settings. - Ändern Sie den verwendeten GTest-Filter in den Einstellungen. - - - parameterized - parametrisiert - - - typed - typisiert - - - - QtTestFramework - - Qt Test - Qt Test - - - - QuickTestFramework - - Quick Test - Quick Test - - - - QuickTestTreeItem - - <unnamed> - <unbenannt> - - - <p>Give all test cases a name to ensure correct behavior when running test cases and to be able to select them.</p> - <p>Geben Sie allen Testfällen einen Namen, um die korrekte Durchführung sicherzustellen und sie auswählen zu können.</p> - - - - Autotest - - AutoTest Debug - AutoTest Debug - - - - Autotest - - No active test frameworks. - Keine aktiven Test-Frameworks. - - - You will not be able to use the AutoTest plugin without having at least one active test framework. - Ohne ein aktives Test-Framework können Sie das AutoTest-Plugin nicht verwenden. - - - Enable or disable test frameworks to be handled by the AutoTest plugin. - Vom AutoTest-Plugin zu verwendende Test-Frameworks ein- oder ausschalten. - - - Enable or disable grouping of test cases by folder. - Gruppierung von Testfällen nach Verzeichnis ein- oder ausschalten. - - - - TestTreeItem - - %1 (none) - %1 (keine) + @@ -35681,32 +39373,6 @@ Siehe auch die Einstellungen für Google Test. Die Dokumentationsdatei "%1" kann nicht gelesen werden: %2. - - ClangCodeModel::Internal::ClangDiagnosticManager - - Inspect available fixits - Verfügbare Korrekturen untersuchen - - - - CMakeProjectManager - - Changing Build Directory - Build-Verzeichnis ändern - - - Change the build directory and start with a basic CMake configuration? - Wollen Sie das Build-Verzeichnis ändern und mit einer grundlegenden CMake-Konfiguration beginnen? - - - Minimum Size Release - Release (kleinstmöglich) - - - Release with Debug Information - Release mit Debuginformationen - - Core::Internal::ShortcutButton @@ -35759,8 +39425,44 @@ Siehe auch die Einstellungen für Google Test. Core::Internal::SpotlightLocatorFilter - Spotlight File Name Index - Spotlight-Dateinamensindex + Locator: Error occurred when running "%1". + Finden: Bei der Ausführung von "%1" trat ein Fehler auf. + + + Locator query string. + Suchtext. + + + Locator query string with quotes escaped with backslash. + Suchtext, bei dem Anführungszeichen durch Backslash-Sequenz ersetzt sind. + + + Locator query string with quotes escaped with backslash and spaces replaced with "*" wildcards. + Suchtext, bei dem Anführungszeichen durch Backslash-Sequenz und Leerzeichen durch "*"-Platzhalter ersetzt sind. + + + Locator query string as regular expression. + Suchtext als regulärer Ausdruck. + + + File Name Index + Dateinamensindex + + + Matches files from a global file system index (Spotlight, Locate, Everything). Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + Filtert Dateien aus einem globalen Dateisystemindex (Spotlight, Locate, Everything). Fügen Sie "+<Zahl>" oder ":<Zahl>" an, um zur angegebenen Zeile zu springen. Fügen Sie noch einmal "+<Zahl>" oder ":<Zahl>" an, um auch zur angegebenen Spalte zu springen. + + + Executable: + Ausführbare Datei: + + + Arguments: + Argumente: + + + Case sensitive: + Mit Groß-/Kleinschreibung: @@ -35770,58 +39472,6 @@ Siehe auch die Einstellungen für Google Test. Vergrößerung: %1% - - Nim - - Nim Compiler Build Step - Nim-Compiler Build-Schritt - - - Nim build step - Nim-Build-Schritt - - - Code Style - Coding-Stil - - - Nim - Nim - - - Nim Clean Step - Nim-Schritt zur Bereinigung - - - Working directory: - Arbeitsverzeichnis: - - - Build directory "%1" does not exist. - Build-Verzeichnis "%1" existiert nicht. - - - Failed to delete the cache directory. - Das Cache-Verzeichnis konnte nicht gelöscht werden. - - - Failed to delete the out file. - Die Ausgabedatei konnte nicht gelöscht werden. - - - Clean step completed successfully. - Der Schritt zur Bereinigung war erfolgreich. - - - Nim Compiler Clean Step - Nim-Compiler-Schritt zur Bereinigung - - - Global - Settings - Global - - ProjectExplorer::CustomExecutableRunConfiguration @@ -35844,428 +39494,6 @@ Siehe auch die Einstellungen für Google Test. Die Farbe der Leinwand einstellen - - QmlProfiler - - Unknown Message %1 - Unbekannte Nachricht %1 - - - Timestamp - Zeitstempel - - - Message - Nachricht - - - Could not re-read events from temporary trace file: %1 - Ereignisse konnten nicht erneut aus der temporären Trace-Datei eingelesen werden: %1 - - - Compile - Kompilierung - - - Create - Erzeugung - - - Signal - Signal - - - Source code not available - Kein Quelltext verfügbar - - - Flame Graph - Flame Graph - - - Reset Flame Graph - Flame Graph zurücksetzen - - - Mouse Events - Mausereignisse - - - Keyboard Events - Tastaturereignisse - - - Key Press - Tastendruck - - - Key Release - Tastenfreigabe - - - Key - Taste - - - Modifiers - Modifizierer - - - Double Click - Doppelklick - - - Mouse Press - Mausdruck - - - Mouse Release - Mausfreigabe - - - Button - Maustaste - - - Result - Ergebnis - - - Mouse Move - Mausbewegung - - - X - X - - - Y - Y - - - Mouse Wheel - Mausrad - - - Angle X - X-Winkel - - - Angle Y - Y-Winkel - - - Keyboard Event - Tastaturereignis - - - Mouse Event - Mausereignis - - - Unknown - Unbekannt - - - Memory Allocation - Speicherallokation - - - Memory Allocated - Speicher allokiert - - - Memory Freed - Speicher freigegeben - - - Total - Summe - - - %n byte(s) - - Ein Byte - %n Bytes - - - - Allocated - Allokiert - - - Allocations - Allokationen - - - Deallocated - Freigegeben - - - Deallocations - Freigaben - - - Heap Allocation - Heap-Allokation - - - Large Item Allocation - Allokation großer Elemente - - - Heap Usage - Heap-Verbrauch - - - Type - Typ - - - Cache Size - Puffergröße - - - Image Cached - Bild gepuffert - - - Image Loaded - Bild geladen - - - Load Error - Ladefehler - - - File - Datei - - - Width - Breite - - - Height - Höhe - - - Stage - Phase - - - Glyphs - Glyphen - - - - Qnx - - QNX Device - QNX-Gerät - - - Deploy Qt libraries... - Deployment der Qt-Bibliotheken... - - - - Qnx - - New QNX Device Configuration Setup - Neue QNX-Geräte-Konfiguration - - - - Android - - Widget - Widget - - - - Autotest - - Turns failures into debugger breakpoints. - Erzeugt aus Fehlern Debugger-Haltepunkte. - - - Break on failure while debugging - Beim Debuggen an Fehlern anhalten - - - Executes disabled tests when performing a test run. - Ausgeschaltete Tests in einem Testlauf ausführen. - - - Run disabled tests - Ausgeschaltete Tests ausführen - - - Turns assertion failures into C++ exceptions. - Erzeugt aus Assertion-Fehlern C++-Exceptions. - - - Throw on failure - Exception bei Fehler - - - Iterations: - Durchläufe: - - - Shuffles tests automatically on every iteration by the given seed. - Vertauscht die Tests automatisch für jeden Durchlauf mithilfe des vorgegebenen Startwerts. - - - Shuffle tests - Vertausche Tests - - - Repeats a test run (you might be required to increase the timeout to avoid canceling the tests). - Testlauf wiederholen (eine Erhöhung des Zeitlimits kann nötig sein, um einen Abbruch zu vermeiden). - - - Repeat tests - Tests wiederholen - - - Seed: - Startwert: - - - A seed of 0 generates a seed based on the current timestamp. - Ein Startwert 0 erzeugt einen neuen Startwert aus der Uhrzeit. - - - Group mode: - Gruppieren nach: - - - Active filter: - Aktiver Filter: - - - Select on what grouping the tests should be based. - Wählen Sie aus, wie die Tests gruppiert werden sollen. - - - Directory - Verzeichnis - - - GTest Filter - GTest-Filter - - - Set the GTest filter to be used for grouping. -See Google Test documentation for further information on GTest filters. - Geben Sie den GTest-Filter an, der zum Gruppieren verwendet werden soll. -Weitere Informationen über GTest-Filter finden Sie in der Dokumenation von Google Test. - - - - Autotest - - Enables interrupting tests on assertions. - Hält Tests bei Assertions an. - - - Disable crash handler while debugging - Crash Handler beim Debuggen deaktivieren - - - Use XML output - XML-Ausgabe verwenden - - - Verbose benchmarks - Ausführliche Benchmarks - - - Log every signal emission and resulting slot invocations. - Jede Signal-Auslösung und daraus resultierende Slot-Aufrufe aufzeichnen. - - - Log signals and slots - Signale und Slots aufzeichnen - - - Benchmark Metrics - Benchmark-Metriken - - - Uses walltime metrics for executing benchmarks (default). - Echtzeit bei der Benchmarkausführung messen (Standard). - - - Walltime - Echtzeit - - - Uses tick counter when executing benchmarks. - Den Tickzähler bei der Benchmarkausführung benutzen. - - - Tick counter - Tickzähler - - - Uses event counter when executing benchmarks. - Ereigniszähler bei der Benchmarkausführung benutzen. - - - Event counter - Ereigniszähler - - - Uses Valgrind Callgrind when executing benchmarks (it must be installed). - "Valgrind Callgrind" zur Benchmarkausführung benutzen (dazu muss es installiert sein). - - - Callgrind - Callgrind - - - Uses Perf when executing benchmarks (it must be installed). - "Perf" zur Benchmarkausführung benutzen (dazu muss es installiert sein). - - - Perf - Perf - - - XML output is recommended, because it avoids parsing issues, while plain text is more human readable. - -Warning: Plain text misses some information, such as duration. - Die XML-Ausgabe ist empfehlenswert, weil sie Probleme beim Einlesen vermeidet. Reiner Text ist hingegen besser lesbar für Menschen. - -Warnung: Reinem Text fehlen manche Informationen, etwa die Dauer. - - - - Git - - Authentication - Authentifizierung - - - <html><head/><body><p>Gerrit server with HTTP was detected, but you need to set up credentials for it.</p><p>To get your password, <a href="LINK_PLACEHOLDER"><span style=" text-decoration: underline; color:#007af4;">click here</span></a> (sign in if needed). Click Generate Password if the password is blank, and copy the user name and password to this form.</p><p>Choose Anonymous if you do not want authentication for this server. In this case, changes that require authentication (like draft changes or private projects) will not be displayed.</p></body></html> - <html><head/><body><p>Ein Gerrit-Server mit HTTP wurde erkannt, aber Sie müssen Zugangsdaten angeben.</p><p>Um Ihr Passwort zu erhalten, <a href="LINK_PLACEHOLDER"><span style=" text-decoration: underline; color:#007af4;">klicken Sie hier</span></a>. (Melden Sie sich an, wenn nötig.). Wenn das Passwortfeld leer ist, klicken Sie "Generate Password" und kopieren den Benutzernamen und das Passwort in dieses Formular.</p><p>Wählen Sie "Anonym", wenn Sie keine Authentifizierung für diesen Server wünschen. In diesem Fall werden Änderungen, die eine Authentifizierung benötigen (wie "Drafts" oder private Projekte), nicht angezeigt.</p></body></html> - - - &Password: - &Passwort: - - - Server: - Server: - - - Anonymous - Anonym - - Ios::Internal::CreateSimulatorDialog @@ -36520,78 +39748,8 @@ Fehler: %5 Wählen Sie einen Typ, der mit qmlRegisterType oder qmlRegisterSingletonType registriert wurde. Der Typ wird als Eigenschaft in der aktuellen .qml-Datei verfügbar sein. - - QmlJSEditor - - Qt Quick Toolbars - Qt Quick-Werkzeugleisten - - - If enabled, the toolbar will remain pinned to an absolute position. - Verankert die Werkzeugleiste an einer festen, absoluten Position. - - - Pin Qt Quick Toolbar - Qt Quick-Werkzeugleiste verankern - - - Always show Qt Quick Toolbar - Qt Quick-Werkzeugleiste immer anzeigen - - - Automatic Formatting on File Save - Automatische Formatierung beim Speichern einer Datei - - - Enable auto format on file save - Beim Speichern einer Datei automatisch formatieren - - - Restrict to files contained in the current project - Auf Dateien des aktuellen Projekts beschränken - - - Features - Zusatzfunktionen - - - Auto-fold auxiliary data - Hilfsdaten automatisch einklappen - - - - QmlProfiler - - Total Time - Gesamtdauer - - - Calls - Aufrufe - - - In Percent - In Prozent - - - Memory - Speicher - - - Various Events - Verschiedene Ereignisse - - - others - andere - - ScxmlEditor - - Frame - Rahmen - Basic Colors Grundfarben @@ -36600,14 +39758,6 @@ Fehler: %5 Last used colors Zuletzt benutzte Farben - - + - + - - - - - - - Create New Color Theme Neues Farbschema erstellen @@ -36632,42 +39782,14 @@ Fehler: %5 Are you sure you want to delete color theme %1? Sind Sie sicher, dass Sie das Farbschema %1 entfernen wollen? - - Dialog - Dialog - - - OK - OK - - - Cancel - Abbrechen - - - Apply - Anwenden - - - Enter search term - Suchbegriff eingeben - Search Suche - - Back - Zurück - Time Zeit - - 0 - 0 - File Datei @@ -36684,1564 +39806,6 @@ Fehler: %5 Document Statistics Dokumentenstatistik - - - MarginSection - - Margin - Rand - - - Vertical - Vertikal - - - Top - Oben - - - The margin above the item. - Der Rand über dem Element. - - - Bottom - Unten - - - The margin below the item. - Der Rand unter dem Element. - - - Horizontal - Horizontal - - - Left - Links - - - The margin left of the item. - Der Rand links des Elements. - - - Right - Rechts - - - The margin right of the item. - Der Rand rechts des Elements. - - - Margins - Ränder - - - The margins around the item. - Die Ränder um das Element. - - - - PaddingSection - - Padding - Abstand - - - Vertical - Vertikal - - - Top - Oben - - - Padding between the content and the top edge of the item. - Der Abstand zwischen dem Inhalt und dem oberen Ende des Elements. - - - Bottom - Unten - - - Padding between the content and the bottom edge of the item. - Der Abstand zwischen dem Inhalt und dem unteren Ende des Elements. - - - Horizontal - Horizontal - - - Left - Links - - - Padding between the content and the left edge of the item. - Der Abstand zwischen dem Inhalt und dem linken Ende des Elements. - - - Right - Rechts - - - Padding between the content and the right edge of the item. - Der Abstand zwischen dem Inhalt und dem rechten Ende des Elements. - - - Padding between the content and the edges of the items. - Der Abstand zwischen dem Inhalt und den äußeren Enden des Elements. - - - - DialogSpecifics - - Dialog - Dialog - - - Title - Titel - - - - DrawerSpecifics - - Drawer - Drawer - - - Edge - Rand - - - Defines the edge of the window the drawer will open from. - Bestimmt den Rand des Fensters, aus dem sich der Drawer öffnen wird. - - - Drag Margin - Drag-Entfernung - - - Defines the distance from the screen edge within which drag actions will open the drawer. - Bestimmt die Entfernung vom Rand des Bildschirms, innerhalb derer "Drag"-Aktionen den Drawer öffnen. - - - - PopupSection - - Popup - Pop-up - - - Size - Größe - - - Visibility - Sichtbarkeit - - - Is visible - Ist sichtbar - - - Clip - Beschneiden - - - Behavior - Verhalten - - - Modal - Modal - - - Defines the modality of the popup. - Bestimmt, ob das Pop-up modal ist oder nicht. - - - Dim - Verdunkeln - - - Defines whether the popup dims the background. - Bestimmt, ob das Pop-up den Hintergrund verdunkelt. - - - Opacity - Deckkraft - - - Scale - Skalieren - - - Spacing - Abstand - - - Spacing between internal elements of the control. - Der Abstand zwischen inneren Elementen des Controls. - - - - StatesDelegate - - Set when Condition - Setzen bei Bedingung - - - Reset when Condition - Zurücksetzen bei Bedingung - - - Set as Default - Als Vorgabe setzen - - - Reset Default - Vorgabe zurücksetzen - - - Default - Vorgabe - - - - qmt::Exception - - Unacceptable null object. - Unzulässiges Null-Objekt. - - - File not found. - Datei nicht gefunden. - - - Unable to create file. - Datei kann nicht erstellt werden. - - - Writing to file failed. - Schreibfehler in der Datei. - - - Reading from file failed. - Lesefehler in der Datei. - - - Illegal XML file. - Ungültige XML-Datei. - - - Unable to handle file version %1. - Dateiversion %1 ist nicht nutzbar. - - - - Utils::FileSaverBase - - File Error - Dateifehler - - - - Android - - Cannot create AVD. Invalid input. - AVD kann nicht erstellt werden. Ungültige Eingabe. - - - Could not start process "%1 %2" - Der Prozess "%1 %2" konnte nicht gestartet werden - - - Cannot create AVD. Command timed out. - AVD kann nicht erstellt werden. Zeitüberschreitung des Kommandos. - - - Incorrect password. - Ungültiges Passwort. - - - Enter keystore password - Geben Sie das Keystore-Passwort ein - - - Enter certificate password - Geben Sie das Zertifikatspasswort ein - - - No free ports available on host for QML debugging. - Auf dem Host sind nicht genügend freie Ports für das QML-Debuggen vorhanden. - - - Failed to find application directory. - Anwendungsverzeichnis wurde nicht gefunden. - - - Failed to forward QML debugging ports. - Die Ports des QML-Debuggers konnten nicht übermittelt werden. - - - Failed to start the activity. - Die Aktivität konnte nicht gestartet werden. - - - Failed to forward JDB debugging ports. - JDB-Debugging-Ports konnten nicht weitergeleitet werden. - - - Failed to start JDB. - JDB konnte nicht gestartet werden. - - - Cannot attach JDB to the running application. - JDB konnte sich nicht mit der laufenden Anwendung verbinden. - - - Failed to start debugger server. - Der Debug-Server konnte nicht gestartet werden. - - - Cannot find C++ debug server in NDK installation - In der NDK-Installation wurde kein C++-Debug-Server gefunden - - - The lldb-server binary has not been found. Maybe sdk_definitions.json does not contain 'lldb;x.y' as sdk_essential_package or LLDB was not installed. - Die Binärdateien des lldb-Servers wurde nicht gefunden. Vielleicht ist 'lldb;x.y' nicht als sdk_essential_package in sdk_definitions.json enthalten oder LLDB ist nicht installiert. - - - Cannot copy C++ debug server. - C++-Debug-Server kann nicht kopiert werden. - - - Failed to forward C++ debugging ports. - Die Ports des C++-Debuggers konnten nicht übermittelt werden. - - - "%1" died. - "%1" beendet. - - - - AutoTest - - Testing - Testen - - - - QtTestTreeItem - - inherited - vererbt - - - - Bazaar - - Ignore Whitespace - Leerzeichen ignorieren - - - Ignore Blank Lines - Leerzeilen ignorieren - - - - Bazaar - - Verbose - Ausführlich - - - Show files changed in each revision. - Geänderte Dateien jeder Revision anzeigen. - - - Forward - Nächstes - - - Show from oldest to newest. - Von Ältestem zu Neuestem anzeigen. - - - Include Merges - Merges einschließen - - - Show merged revisions. - Merge-Revisionen anzeigen. - - - Detailed - Ausführlich - - - Moderately Short - Moderat kurz - - - One Line - Einzeilig - - - GNU Change Log - GNU-Änderungslog - - - Format - Format - - - - BinEditor - - Memory at 0x%1 - Speicher bei 0x%1 - - - Decimal&nbsp;unsigned&nbsp;value: - Vorzeichenloser&nbsp;dezimaler&nbsp;Wert: - - - Decimal&nbsp;signed&nbsp;value: - Vorzeichenbehafteter&nbsp;dezimaler&nbsp;Wert: - - - Previous&nbsp;decimal&nbsp;unsigned&nbsp;value: - Vorangegangener&nbsp;vorzeichenloser&nbsp;dezimaler&nbsp;Wert: - - - Previous&nbsp;decimal&nbsp;signed&nbsp;value: - Vorangegangener&nbsp;vorzeichenbehafteter&nbsp;dezimaler&nbsp;Wert: - - - %1-bit&nbsp;Integer&nbsp;Type - %1-bit&nbsp;Ganzzahltyp - - - Little Endian - Little Endian - - - Big Endian - Big Endian - - - Binary&nbsp;value: - Binärer&nbsp;Wert: - - - Octal&nbsp;value: - Oktaler&nbsp;Wert: - - - Previous&nbsp;binary&nbsp;value: - Vorangeganger&nbsp;binärer&nbsp;Wert: - - - Previous&nbsp;octal&nbsp;value: - Vorangeganger&nbsp;oktaler&nbsp;Wert: - - - <i>double</i>&nbsp;value: - <i>double</i>&nbsp;Wert: - - - Previous <i>double</i>&nbsp;value: - Vorangegangener <i>double</i>&nbsp;Wert: - - - <i>float</i>&nbsp;value: - <i>float</i>&nbsp;Wert: - - - Previous <i>float</i>&nbsp;value: - Vorangegangener <i>float</i>&nbsp;Wert: - - - Copying Failed - Fehler beim Kopieren - - - You cannot copy more than 4 MB of binary data. - Sie können nicht mehr als 4 MB binäre Daten kopieren. - - - Copy Selection as ASCII Characters - Auswahl als ASCII-Zeichen kopieren - - - Copy Selection as Hex Values - Auswahl als hexadezimale Werte kopieren - - - Set Data Breakpoint on Selection - Datenhaltepunkt bei Auswahl setzen - - - Copy 0x%1 - 0x%1 kopieren - - - Jump to Address in This Window - Gehe zu Adresse in diesem Fenster - - - Jump to Address in New Window - Gehe zu Adresse in neuem Fenster - - - Copy Value - Wert kopieren - - - Jump to Address 0x%1 in This Window - Gehe zu Adresse 0x%1 in diesem Fenster - - - Jump to Address 0x%1 in New Window - Gehe zu Adresse 0x%1 in neuem Fenster - - - - BinEditor - - Zoom: %1% - Vergrößerung: %1% - - - - Clang Code Model Marks - - Code Model Warning - Codemodell-Warnung - - - Code Model Error - Codemodell-Fehler - - - - ClangRefactoring::ClangQueryProjectsFindFilter - - Clang Query Project - Clang Query-Projekt - - - Clang Query - Clang Query - - - - QtCreatorSearchHandle - - Clang Query - Clang Query - - - - CMakeProjectManager - - Failed to open %1 for reading. - Die Datei %1 konnte nicht zum Lesen geöffnet werden. - - - - CMakeFilesProjectNode - - CMake Modules - CMake-Module - - - - CMakeTargetNode - - Target type: - Zieltyp: - - - No build artifacts - Keine Build-Artefakte - - - Build artifacts: - Build-Artefakte: - - - - CMakeProjectManager - - CMake - SnippetProvider - CMake - - - Build "%1" - "%1" erstellen - - - Current CMake: %1 - Aktuelles CMake: %1 - - - Not in CMakeCache.txt - Nicht in CMakeCache.txt - - - Value requested by kit: %1 - Vom Kit verlangter Wert: %1 - - - - Core::ICore - - (%1) - (%1) - - - %1 %2%3 - %1 %2%3 - - - Based on Qt %1 (%2, %3 bit) - Based on Qt %1 (%2, %3 bit) - - - - Core::LocatorManager - - <type here> - <Tippen Sie hier> - - - - CppEditor::Internal::CppEditorDocument - - Note: Multiple parse contexts are available for this file. Choose the preferred one from the editor toolbar. - Hinweis: Für diese Datei sind mehrere Auswertungskontexte verfügbar. Wählen Sie den bevorzugten in der Editorwerkzeugleiste aus. - - - - CppEditor::Internal::MinimizableInfoBars - - File is not part of any project. - Die Datei ist in keinem Projekt enthalten. - - - File contains errors in included files. - Die in der Datei eingebundenen Dateien enthalten Fehler. - - - Minimize - Minimieren - - - <b>Warning</b>: This file is not part of any project. The code model might have issues parsing this file properly. - <b>Warnung</b>: Diese Datei ist in keinem Projekt enthalten. Das Codemodell könnte Probleme haben, die Datei korrekt auszuwerten. - - - <b>Warning</b>: The code model could not parse an included file, which might lead to incorrect code completion and highlighting, for example. - <b>Warnung</b>: Das Codemodell konnte eine eingebundene Datei nicht auswerten. Dies kann beispielsweise dazu führen, dass Syntaxhervorhebung und Vervollständigung fehlerhaft sind. - - - - CppEditor::Internal::ParseContextModel - - <p><b>Active Parse Context</b>:<br/>%1</p><p>Multiple parse contexts (set of defines, include paths, and so on) are available for this file.</p><p>Choose a parse context to set it as the preferred one. Clear the preference from the context menu.</p> - <p><b>Aktiver Auswertungskontext</b>:<br/>%1</p><p>Für diese Datei sind mehrere Auswertungskontexte (Kombinationen aus Defines, Include-Verzeichnissen usw.) verfügbar.</p><p>Wählen Sie einen bevorzugten Auswertungskontext aus. Sie können diese Einstellung über das Kontextmenü zurücksetzen.</p> - - - - CppEditor::Internal::ParseContextWidget - - Clear Preferred Parse Context - Bevorzugten Auswertungskontext aufheben - - - - CppIndexer - - C++ Indexer: Skipping file "%1" because it is too big. - C++-Indexer: Überspringe Datei "%1", weil sie zu groß ist. - - - - BreakHandler - - Breakpoint - Haltepunkt - - - - Debugger - - Unpacking core file to %1 - Entpacke Core-Datei nach %1 - - - Cannot debug: Local executable is not set. - Kann nicht debuggen: Lokale ausführbare Datei ist nicht angegeben. - - - No executable specified. - Es wurde keine ausführbare Datei angegeben. - - - Unsupported CDB host system. - Nicht unterstütztes CDB-Host-System. - - - %1 - Snapshot %2 - %1 - Snapshot %2 - - - &Show this message again. - Diese Nachricht erneut an&zeigen. - - - Debugging starts - Debuggen beginnt - - - Starting debugger "%1" for ABI "%2"... - Starte Debugger "%1" für ABI "%2"... - - - Debugging has finished - Debuggen beendet - - - Close Debugging Session - Debuggen beenden - - - A debugging session is still in progress. Terminating the session in the current state can leave the target in an inconsistent state. Would you still like to terminate it? - Der Debugger läuft noch. Das Beenden im gegenwärtigen Zustand könnte zu einem inkonsistenten Zustand des untersuchten Prozesses führen. Möchten Sie ihn trotzdem beenden? - - - Debugged executable - Vom Debugger gesteuerte ausführbare Datei - - - - Debuggger::Internal::ModulesHandler - - Unknown - Unbekannt - - - No - Nein - - - Yes - Ja - - - None - Keine - - - Plain - Einfach - - - Fast - Schnell - - - debuglnk - debuglnk - - - buildid - buildid - - - It is unknown whether this module contains debug information. -Use "Examine Symbols" from the context menu to initiate a check. - Es ist nicht bekannt, ob dieses Modul Debuginformation enthält. -Verwenden Sie die Option "Symbole untersuchen" des Kontextmenüs, um eine Prüfung zu starten. - - - This module neither contains nor references debug information. -Stepping into the module or setting breakpoints by file and line will not work. - Dieses Modul enthält keine Debuginformation und auch keinen Verweis auf eine Quelle. -Einzelschritt in das Modul oder das Setzen von Haltepunkten nach Datei und Zeilennummer wird nicht funktionieren. - - - This module contains debug information. -Stepping into the module or setting breakpoints by file and line is expected to work. - Dieses Modul enthält Debuginformation. -Einzelschritt in das Modul und das Setzen von Haltepunkten nach Datei und Zeilennummer sollten funktionieren. - - - This module does not contain debug information itself, but contains a reference to external debug information. - Dieses Modul enthält selbst keine Debuginformation, aber einen Verweis auf eine externe Quelle. - - - <unknown> - address - End address of loaded module - <unbekannt> - - - Update Module List - Modulliste aktualisieren - - - Show Source Files for Module "%1" - Quelldateien des Moduls "%1" anzeigen - - - Show Source Files for Module - Quelldateien des Moduls anzeigen - - - Show Dependencies of "%1" - Abhängigkeiten von "%1" anzeigen - - - Show Dependencies - Abhängigkeiten anzeigen - - - Load Symbols for All Modules - Symbole aller Module laden - - - Examine All Modules - Alle Module untersuchen - - - Load Symbols for Module "%1" - Symbole des Moduls "%1" laden - - - Load Symbols for Module - Symbole des Moduls laden - - - Edit File "%1" - Datei "%1" bearbeiten - - - Edit File - Datei bearbeiten - - - Show Symbols in File "%1" - Symbole der Datei "%1" anzeigen - - - Show Symbols - Symbole anzeigen - - - Show Sections in File "%1" - Sektionen der Datei "%1" anzeigen - - - Show Sections - Sektionen anzeigen - - - - DiffEditor::Internal::DiffFilesController - - Calculating diff - Bestimme Unterschiede - - - - DiffEditor::Internal::DiffCurrentFileController - - Saved - Gespeichert - - - Modified - Geändert - - - - DiffEditor::Internal::DiffOpenFilesController - - Saved - Gespeichert - - - Modified - Geändert - - - - DiffEditor::Internal::DiffModifiedFilesController - - Saved - Gespeichert - - - Modified - Geändert - - - - DiffEditor::Internal::DiffEditorServiceImpl - - Diff Files - Unterschiede zwischen Dateien anzeigen - - - Diff Modified Files - Unterschiede zwischen geänderten Dateien anzeigen - - - - DiffEditor::Internal::DiffEditorWidgetController - - Revert Chunk - Änderung rückgängig machen - - - Apply Chunk - Änderung anwenden - - - Would you like to revert the chunk? - Möchten Sie diese Änderung rückgängig machen? - - - Would you like to apply the chunk? - Möchten Sie diese Änderung anwenden? - - - Send Chunk to CodePaster... - Änderung an CodePaster senden... - - - Apply Chunk... - Änderung anwenden... - - - Revert Chunk... - Diese Änderung rückgängig machen... - - - <b>Error:</b> Could not decode "%1" with "%2"-encoding. - <b>Fehler:</b> Die Datei "%1" kann nicht mit der Zeichenkodierung "%2" dargestellt werden. - - - Select Encoding - Zeichenkodierung auswählen - - - - Git - - Refresh Remote Servers - Remote-Server aktualisieren - - - Fallback - Fallback - - - - DevelopmentTeam - - %1 - Free Provisioning Team : %2 - %1 - Free Provisioning-Team : %2 - - - Yes - Ja - - - No - Nein - - - - ProvisioningProfile - - Team: %1 -App ID: %2 -Expiration date: %3 - Team: %1 -App-ID: %2 -Ablaufdatum: %3 - - - - Ios::Internal::IosRunSupport - - Starting remote process. - Starte entfernten Prozess. - - - - Ios::Internal::IosQmlProfilerSupport - - Could not get necessary ports for the profiler connection. - Auf die für die Profiler-Verbindung notwendigen Ports konnte nicht zugegriffen werden. - - - - Ios::Internal::SimulatorInfoModel - - UDID: %1 - UDID: %1 - - - Simulator Name - Name des Simulators - - - Runtime - Runtime - - - Current State - Status - - - - ModelEditor::Internal::ElementTasks - - Update Include Dependencies - Include-Abhängigkeiten aktualisieren - - - - Nim - - Nim - SnippetProvider - Nim - - - No Nim compiler set. - Es ist kein Nim-Compiler eingerichtet. - - - Nim compiler does not exist. - Der Nim-Compiler existiert nicht. - - - &Compiler path: - &Compiler-Pfad: - - - &Compiler version: - &Compiler-Version: - - - - Perforce::Internal::PerforceDiffConfig - - Ignore Whitespace - Leerzeichen ignorieren - - - - ProjectExplorer::PortsGatherer - - Found %n free ports. - - Ein freier Port gefunden. - %n freie Ports gefunden. - - - - Checking available ports... - Prüfe Verfügbarkeit von Ports... - - - - ProjectExplorer::Internal::ProjectWindow - - Project Settings - Projekteinstellungen - - - Build & Run - Erstellung und Ausführung - - - Projects - Projekte - - - Import Existing Build... - Existierenden Build importieren... - - - Manage Kits... - Kits verwalten... - - - Project Selector - Projektauswahl - - - Active Project - Aktives Projekt - - - Import Directory - Verzeichnis importieren - - - - TaskHub - - Error - Fehler - - - Warning - Warnung - - - Build Issue - Build-Problem - - - - ProjectExplorer::SimpleTargetRunner - - %1 crashed. - %1 ist abgestürzt. - - - %2 exited with code %1 - %2 wurde mit dem Rückgabewert %1 beendet - - - - ProjectExplorer::RunWorker - - Worker start timed out. - Start des Workers dauerte zu lange. - - - Worker stop timed out. - Anhalten des Workers dauerte zu lange. - - - The process failed to start. - Der Prozess konnte nicht gestartet werden. - - - An unknown error in the process occurred. - Im Prozess trat ein unbekannter Fehler auf. - - - Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. - Entweder ist das aufgerufene Programm "%1" nicht vorhanden oder Ihre Rechte reichen nicht aus, um dieses Programm aufzurufen. - - - The process was ended forcefully. - Der Prozess wurde gestoppt. - - - An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel. - Ein Fehler trat beim Versuch zum Prozess zu schreiben auf. Möglicherweise läuft der Prozess nicht oder hat seinen Eingabekanal geschlossen. - - - An error occurred when attempting to read from the process. For example, the process may not be running. - Ein Fehler trat beim Versuch vom Prozess zu lesen auf. Möglicherweise läuft der Prozess nicht. - - - - TargetSettingsPanelWidget - - Configure Project - Projekt konfigurieren - - - Kit is unsuited for project - Das Kit ist für das Projekt nicht geeignet - - - Click to activate - Klicken zum Aktivieren - - - Enable Kit for Project "%2" - Kit für das Projekt "%2" aktivieren - - - Enable Kit for All Projects - Kit für alle Projekte aktivieren - - - Disable Kit for Project "%2" - Kit für das Projekt "%2" deaktivieren - - - Cancel Build and Disable Kit in This Project - Erstellen abbrechen und das Kit für dieses Projekt deaktivieren - - - Do Not Remove - Nicht entfernen - - - Disable Kit "%1" in This Project? - Kit "%1" für dieses Projekt deaktivieren? - - - The kit <b>%1</b> is currently being built. - Das Kit <b>%1</b> wird gerade erstellt. - - - Do you want to cancel the build process and remove the kit anyway? - Möchten Sie die Erstellung abbrechen und das Kit entfernen? - - - Disable Kit for All Projects - Kit für alle Projekte deaktivieren - - - Copy Steps From Another Kit... - Schritte aus einem anderen Kit kopieren... - - - Build - Erstellen - - - Run - Ausführen - - - Enable Kit - Kit aktivieren - - - - TargetSettingsPanelItem - - No kit defined in this project. - In diesem Projekt ist kein Kit festgelegt. - - - Configure Project - Projekt konfigurieren - - - - ProjectExplorer::ToolChainManager - - None - Keine - - - Tool Chains - Toolchains - - - ABI - ABI - - - - QbsProjectManager - - C and C++ compiler paths differ. C compiler may not work. - Die Pfade von C- und C++-Compiler sind unterschiedlich. Der C-Compiler könnte nicht funktionieren. - - - Generated files - Erzeugte Dateien - - - - QmakeProjectManager - - Headers - Header-Dateien - - - Sources - Quelldateien - - - Forms - Formulardateien - - - State charts - Zustandsdiagramme - - - Resources - Ressourcen - - - QML - QML - - - Other files - Andere Dateien - - - Generated Files - Erzeugte Dateien - - - Failed - Fehlgeschlagen - - - Could not write project file %1. - Die Projektdatei %1 konnte nicht geschrieben werden. - - - File Error - Dateifehler - - - Error while parsing file %1. Giving up. - Fehler beim Auswerten der Datei %1. Abbruch. - - - Could not find .pro file for subdirectory "%1" in "%2". - Die .pro-Datei des Unterverzeichnisses "%1" konnte in "%2" nicht gefunden werden. - - - "%1" is used by qmake, but "%2" is configured in the kit. -Please update your kit (%3) or choose a mkspec for qmake that matches your target environment better. - "%1" wird von qmake verwendet, aber "%2" ist im Kit festgelegt. -Bitte aktualisieren Sie Ihr Kit (%3) oder wählen Sie eine mkspec für qmake, die besser zu Ihrer Zielumgebung passt. - - - - ChangeStyleWidgetAction - - Change style for Qt Quick Controls 2. - Stil für Qt Quick Controls 2 ändern. - - - Change style for Qt Quick Controls 2. Configuration file qtquickcontrols2.conf not found. - Stil für Qt Quick Controls 2 ändern. Die Konfigurationsdatei qtquickcontrols2.conf wurde nicht gefunden. - - - - QmlDesigner::ItemLibraryResourceView - - Large Icons - Große Symbole - - - Medium Icons - Mittlere Symbole - - - Small Icons - Kleine Symbole - - - List - Liste - - - - QmlDesigner::NavigatorTreeView - - Invalid Id - Ungültige ID - - - %1 is an invalid id. - %1 ist keine gültige ID. - - - %1 already exists. - %1 existiert bereits. - - - - QmlDesigner::PropertyEditorContextObject - - Invalid Type - Ungültiger Typ - - - %1 is an invalid type. - %1 ist kein gültiger Typ. - - - - QmlDesigner::TextEditorView - - Trigger Completion - Code-Vervollständigung auslösen - - - Meta+Space - Meta+Space - - - Ctrl+Space - Ctrl+Space - - - Text Editor - Texteditor - - - - QmlDesigner::NodeInstanceView - - Qt Quick emulation layer crashed. - Die Qt-Quick-Emulationsschicht ist abgestürzt. - - - - QmlDesigner::DocumentMessage - - Error parsing - Fehler beim Parsen - - - Internal error - Interner Fehler - - - line %1 - Zeile %1 - - - column %1 - Spalte %1 - - - - QmlDesigner::DocumentWarningWidget - - Always ignore these warnings about features not supported by Qt Quick Designer. - Diese Warnungen über in Qt Quick Designer nicht unterstütze Features immer ignorieren. - - - Cannot open this QML document because of an error in the QML file: - Dieses QML-Dokument kann wegen eines Fehlers in der QML-Datei nicht geöffnet werden: - - - OK - OK - - - This QML file contains features which are not supported by Qt Quick Designer at: - Diese QML-Datei enthält Features, die von Qt Quick Designer nicht unterstützt werden: - - - Ignore - Ignorieren - - - Previous - Vorige - - - Next - Nächste - - - Go to error - Zu Fehler gehen - - - Go to warning - Zur Warnung gehen - - - - QmlDesigner::Internal::BackendModel - - Type - Typ - - - Name - Name - - - Singleton - Singleton - - - Local - Lokal - - - - QmlJSHoverHandler - - Library at %1 - Bibliothek bei %1 - - - Dumped plugins successfully. - Plugin-Information erfolgreich bestimmt. - - - Read typeinfo files successfully. - typeinfo-Dateien gelesen. - - - - QmlProfiler - - Handling Signal - Signalverarbeitung - - - Main program - Hauptprogramm - - - +%1 in recursive calls - +%1 in rekursiven Aufrufen - - - Longest Time - Längste Dauer - - - Mean Time - Durchschnittliche Dauer - - - Self Time - Eigene Dauer - - - Self Time in Percent - Eigene Dauer in Prozent - - - Shortest Time - Kürzeste Dauer - - - Time in Percent - Dauer in Prozent - - - Median Time - Mediandauer - - - - ScxmlEditor Modify Color Themes... Farbschemata anpassen... @@ -38497,8 +40061,8 @@ Beschreibung: %4 Vergrößerung - Magnifier Tool (Alt) - Vergrößerungswerkzeug (Alt) + Magnifier Tool + Navigator (Ctrl+E) @@ -38851,6 +40415,832 @@ Zeile: %4, Spalte: %5 Modus umschalten + + MarginSection + + Margin + Rand + + + Vertical + Vertikal + + + The margin above the item. + Der Rand über dem Element. + + + The margin below the item. + Der Rand unter dem Element. + + + Horizontal + Horizontal + + + The margin left of the item. + Der Rand links des Elements. + + + The margin right of the item. + Der Rand rechts des Elements. + + + Margins + Ränder + + + The margins around the item. + Die Ränder um das Element. + + + + PaddingSection + + Padding + Abstand + + + Vertical + Vertikal + + + Padding between the content and the top edge of the item. + Der Abstand zwischen dem Inhalt und dem oberen Ende des Elements. + + + Padding between the content and the bottom edge of the item. + Der Abstand zwischen dem Inhalt und dem unteren Ende des Elements. + + + Horizontal + Horizontal + + + Padding between the content and the left edge of the item. + Der Abstand zwischen dem Inhalt und dem linken Ende des Elements. + + + Padding between the content and the right edge of the item. + Der Abstand zwischen dem Inhalt und dem rechten Ende des Elements. + + + Global + Global + + + Padding between the content and the edges of the items. + Der Abstand zwischen dem Inhalt und den äußeren Enden des Elements. + + + + DialogSpecifics + + Dialog + Dialog + + + Title + Titel + + + + DrawerSpecifics + + Drawer + Drawer + + + Edge + Rand + + + Defines the edge of the window the drawer will open from. + Bestimmt den Rand des Fensters, aus dem sich der Drawer öffnen wird. + + + Drag margin + Rand bei Drag-Operation + + + Defines the distance from the screen edge within which drag actions will open the drawer. + Bestimmt die Entfernung vom Rand des Bildschirms, innerhalb derer "Drag"-Aktionen den Drawer öffnen. + + + + PopupSection + + Popup + Pop-up + + + Size + Größe + + + W + width + The width of the object + + + + H + height + The height of the object + H + + + Visibility + Sichtbarkeit + + + Visible + Sichtbar + + + Clip + Beschneiden + + + Behavior + Verhalten + + + Modal + Modal + + + Defines the modality of the popup. + Bestimmt, ob das Pop-up modal ist oder nicht. + + + Dim + Verdunkeln + + + Defines whether the popup dims the background. + Bestimmt, ob das Pop-up den Hintergrund verdunkelt. + + + Opacity + Deckkraft + + + Scale + Skalieren + + + Spacing + Abstand + + + Spacing between internal elements of the control. + Der Abstand zwischen inneren Elementen des Controls. + + + + StatesDelegate + + Set when Condition + Setzen bei Bedingung + + + Reset when Condition + Zurücksetzen bei Bedingung + + + Set as Default + Als Vorgabe setzen + + + Reset Default + Vorgabe zurücksetzen + + + Edit Annotation + + + + Add Annotation + Annotation hinzufügen + + + Remove Annotation + + + + Default + Vorgabe + + + + qmt::Exception + + Unacceptable null object. + Unzulässiges Null-Objekt. + + + File not found. + Datei nicht gefunden. + + + Unable to create file. + Datei kann nicht erstellt werden. + + + Writing to file failed. + Schreibfehler in der Datei. + + + Reading from file failed. + Lesefehler in der Datei. + + + Illegal XML file. + Ungültige XML-Datei. + + + Unable to handle file version %1. + Dateiversion %1 ist nicht nutzbar. + + + + Utils::FileSaverBase + + File Error + Dateifehler + + + + Core::ICore + + (%1) + (%1) + + + %1 %2%3 + %1 %2%3 + + + Based on Qt %1 (%2, %3) + Auf Qt %1 (%2, %3) beruhend + + + + CppEditor::Internal::CppEditorDocument + + <b>Warning</b>: This file is not part of any project. The code model might have issues parsing this file properly. + <b>Warnung</b>: Diese Datei ist in keinem Projekt enthalten. Das Codemodell könnte Probleme haben, die Datei korrekt auszuwerten. + + + Note: Multiple parse contexts are available for this file. Choose the preferred one from the editor toolbar. + Hinweis: Für diese Datei sind mehrere Auswertungskontexte verfügbar. Wählen Sie den bevorzugten in der Editorwerkzeugleiste aus. + + + + CppEditor::Internal::ParseContextModel + + <p><b>Active Parse Context</b>:<br/>%1</p><p>Multiple parse contexts (set of defines, include paths, and so on) are available for this file.</p><p>Choose a parse context to set it as the preferred one. Clear the preference from the context menu.</p> + <p><b>Aktiver Auswertungskontext</b>:<br/>%1</p><p>Für diese Datei sind mehrere Auswertungskontexte (Kombinationen aus Defines, Include-Verzeichnissen usw.) verfügbar.</p><p>Wählen Sie einen bevorzugten Auswertungskontext aus. Sie können diese Einstellung über das Kontextmenü zurücksetzen.</p> + + + + CppEditor::Internal::ParseContextWidget + + Clear Preferred Parse Context + Bevorzugten Auswertungskontext aufheben + + + + CppIndexer + + C++ Indexer: Skipping file "%1" because it is too big. + C++-Indexer: Überspringe Datei "%1", weil sie zu groß ist. + + + + DiffEditor::Internal::DiffFilesController + + Calculating diff + Bestimme Unterschiede + + + + DiffEditor::Internal::DiffCurrentFileController + + Saved + Gespeichert + + + Modified + Geändert + + + + DiffEditor::Internal::DiffOpenFilesController + + Saved + Gespeichert + + + Modified + Geändert + + + + DiffEditor::Internal::DiffModifiedFilesController + + Saved + Gespeichert + + + Modified + Geändert + + + + DiffEditor::Internal::DiffEditorServiceImpl + + Diff Files + Unterschiede zwischen Dateien anzeigen + + + Diff Modified Files + Unterschiede zwischen geänderten Dateien anzeigen + + + + DiffEditor::Internal::DiffEditorWidgetController + + Send Chunk to CodePaster... + Änderung an CodePaster senden... + + + Apply Chunk... + Änderung anwenden... + + + Revert Chunk... + Diese Änderung rückgängig machen... + + + <b>Error:</b> Could not decode "%1" with "%2"-encoding. + <b>Fehler:</b> Die Datei "%1" kann nicht mit der Zeichenkodierung "%2" dargestellt werden. + + + Select Encoding + Zeichenkodierung auswählen + + + + DevelopmentTeam + + %1 - Free Provisioning Team : %2 + %1 - Free Provisioning-Team : %2 + + + Yes + Ja + + + No + Nein + + + + ProvisioningProfile + + Team: %1 +App ID: %2 +Expiration date: %3 + Team: %1 +App-ID: %2 +Ablaufdatum: %3 + + + + Ios::Internal::IosRunSupport + + Starting remote process. + Starte entfernten Prozess. + + + + Ios::Internal::IosQmlProfilerSupport + + Could not get necessary ports for the profiler connection. + Auf die für die Profiler-Verbindung notwendigen Ports konnte nicht zugegriffen werden. + + + + Ios::Internal::SimulatorInfoModel + + UDID: %1 + UDID: %1 + + + Simulator Name + Name des Simulators + + + Runtime + Runtime + + + Current State + Status + + + + ModelEditor::Internal::ElementTasks + + Update Include Dependencies + Include-Abhängigkeiten aktualisieren + + + + Perforce::Internal::PerforceDiffConfig + + Ignore Whitespace + Leerzeichen ignorieren + + + + ProjectExplorer::PortsGatherer + + Found %n free ports. + + Ein freier Port gefunden. + %n freie Ports gefunden. + + + + Checking available ports... + Prüfe Verfügbarkeit von Ports... + + + + ProjectExplorer::Internal::ProjectWindow + + Use Regular Expressions + Reguläre Ausdrücke verwenden + + + Case Sensitive + + + + Show Non-matching Lines + + + + Project Settings + Projekteinstellungen + + + Build & Run + Erstellung und Ausführung + + + Projects + Projekte + + + Import Existing Build... + Existierenden Build importieren... + + + Manage Kits... + Kits verwalten... + + + Project Selector + Projektauswahl + + + Active Project + Aktives Projekt + + + Build System Output + + + + Import Directory + Verzeichnis importieren + + + + TaskHub + + Error + Fehler + + + Warning + Warnung + + + Build Issue + Build-Problem + + + + ProjectExplorer::RunWorker + + Worker start timed out. + Start des Workers dauerte zu lange. + + + Worker stop timed out. + Anhalten des Workers dauerte zu lange. + + + The process failed to start. + Der Prozess konnte nicht gestartet werden. + + + An unknown error in the process occurred. + Im Prozess trat ein unbekannter Fehler auf. + + + Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. + Entweder ist das aufgerufene Programm "%1" nicht vorhanden oder Ihre Rechte reichen nicht aus, um dieses Programm aufzurufen. + + + The process crashed. + Der Prozess ist abgestürzt. + + + An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel. + Ein Fehler trat beim Versuch zum Prozess zu schreiben auf. Möglicherweise läuft der Prozess nicht oder hat seinen Eingabekanal geschlossen. + + + An error occurred when attempting to read from the process. For example, the process may not be running. + Ein Fehler trat beim Versuch vom Prozess zu lesen auf. Möglicherweise läuft der Prozess nicht. + + + + TargetSettingsPanelWidget + + Kit is unsuited for project + Das Kit ist für das Projekt nicht geeignet + + + Click to activate + Klicken zum Aktivieren + + + Enable Kit for All Projects + Kit für alle Projekte aktivieren + + + &Configure Project + + + + Enable Kit for Project "%1" + Kit für das Projekt "%2" aktivieren {1"?} + + + Disable Kit for Project "%1" + Kit für das Projekt "%2" deaktivieren {1"?} + + + Cancel Build and Disable Kit in This Project + Erstellen abbrechen und das Kit für dieses Projekt deaktivieren + + + Do Not Remove + Nicht entfernen + + + Disable Kit "%1" in This Project? + Kit "%1" für dieses Projekt deaktivieren? + + + The kit <b>%1</b> is currently being built. + Das Kit <b>%1</b> wird gerade erstellt. + + + Do you want to cancel the build process and remove the kit anyway? + Möchten Sie die Erstellung abbrechen und das Kit entfernen? + + + Disable Kit for All Projects + Kit für alle Projekte deaktivieren + + + Copy Steps From Another Kit... + Schritte aus einem anderen Kit kopieren... + + + Build + Erstellen + + + Run + Ausführen + + + Enable Kit + Kit aktivieren + + + + TargetSettingsPanelItem + + No kit defined in this project. + In diesem Projekt ist kein Kit festgelegt. + + + Configure Project + Projekt konfigurieren + + + + ProjectExplorer::ToolChainManager + + None + Keine + + + Tool Chains + Toolchains + + + ABI + ABI + + + + ChangeStyleWidgetAction + + Change style for Qt Quick Controls 2. + Stil für Qt Quick Controls 2 ändern. + + + Change style for Qt Quick Controls 2. Configuration file qtquickcontrols2.conf not found. + Stil für Qt Quick Controls 2 ändern. Die Konfigurationsdatei qtquickcontrols2.conf wurde nicht gefunden. + + + + QmlDesigner::NavigatorTreeView + + Invalid Id + Ungültige ID + + + %1 is an invalid id. + %1 ist keine gültige ID. + + + %1 already exists. + %1 existiert bereits. + + + + QmlDesigner::PropertyEditorContextObject + + Invalid Type + Ungültiger Typ + + + %1 is an invalid type. + %1 ist kein gültiger Typ. + + + + QmlDesigner::TextEditorView + + Trigger Completion + Code-Vervollständigung auslösen + + + Meta+Space + Meta+Space + + + Ctrl+Space + Ctrl+Space + + + Code + Code + + + + QmlDesigner::NodeInstanceView + + Qt Quick emulation layer crashed. + Die Qt-Quick-Emulationsschicht ist abgestürzt. + + + Source item: %1 + + + + B + + + + KB + + + + MB + MB + + + GB + + + + Failed to generate QSB file for: %1 + + + + + QmlDesigner::DocumentMessage + + Error parsing + Fehler beim Parsen + + + Internal error + Interner Fehler + + + line %1 + + Zeile %1 + + + + column %1 + + Spalte %1 + + + + + QmlDesigner::DocumentWarningWidget + + Always ignore these warnings about features not supported by Qt Quick Designer. + Diese Warnungen über in Qt Quick Designer nicht unterstütze Features immer ignorieren. + + + Cannot open this QML document because of an error in the QML file: + Dieses QML-Dokument kann wegen eines Fehlers in der QML-Datei nicht geöffnet werden: + + + OK + OK + + + This QML file contains features which are not supported by Qt Quick Designer at: + Diese QML-Datei enthält Features, die von Qt Quick Designer nicht unterstützt werden: + + + Ignore + Ignorieren + + + Previous + Vorige + + + Next + Nächste + + + Go to error + Zu Fehler gehen + + + Go to warning + Zur Warnung gehen + + + + QmlDesigner::Internal::BackendModel + + Type + Typ + + + Name + Name + + + Singleton + Singleton + + + Local + Lokal + + SilverSearcher::FindInFilesSilverSearcher @@ -38917,6 +41307,36 @@ Wird auf Zeichen angewendet, sofern keine andere Regel zutrifft. Highlighted search results inside the editor. Hervorgehobene Suchergebnisse im Editor. + + Search Result (Alternative 1) + Suchergebnis (Alternative 1) + + + Highlighted search results inside the editor. +Used to mark read accesses to C++ symbols. + Hervorgehobene Suchergebnisse im Editor. +Wird benutzt, um Lesezugriffe eines C++-Symbols zu markieren. + + + Search Result (Alternative 2) + Suchergebnis (Alternative 2) + + + Highlighted search results inside the editor. +Used to mark write accesses to C++ symbols. + Hervorgehobene Suchergebnisse im Editor. +Wird benutzt, um Schreibzugriffe eines C++-Symbols zu markieren. + + + Search Result Containing function + Funktion mit Suchergebnis + + + Highlighted search results inside the editor. +Used to mark containing function of the symbol usage. + Hervorgehobene Suchergebnisse im Editor. +Wird benutzt um die Funktion zu markieren, die ein gesuchtes Symbol benutzt. + Search Scope Suchbereich @@ -39023,6 +41443,14 @@ Wird auf Zeichen angewendet, sofern keine andere Regel zutrifft. Name of a type. Typname. + + Namespace + Namensraum + + + Name of a namespace. + Name eines Namensraums. + Local Lokale Variable @@ -39031,6 +41459,14 @@ Wird auf Zeichen angewendet, sofern keine andere Regel zutrifft. Local variables. Lokale Variablen. + + Parameter + Parameter + + + Function or method parameters. + Funktionen- oder Methodenparameter. + Field Feld @@ -39063,6 +41499,14 @@ Wird auf Zeichen angewendet, sofern keine andere Regel zutrifft. Name of a function. Name einer Funktion. + + Declaration + Deklaration + + + Style adjustments to declarations. + Stilanpassungen für Deklarationen. + Virtual Function Virtuelle Funktion @@ -39193,6 +41637,14 @@ Um den Stil von benutzerdefinierten Operatoren festzulegen, benutzen Sie " Preprocessor directives. Präprozessor-Anweisungen. + + Macro + Makro + + + Macros. + Makros. + Label Sprungmarke @@ -39403,6 +41855,86 @@ Außer Leerzeichen innerhalb von Kommentaren und Zeichenketten. Underline color of the contexts of warning diagnostics. Unterstreichung der Kontexte von Warnungen. + + Static Member + Statische Member + + + Names of static fields or member functions. + Namen statischer Memberdaten oder Memberfunktionen. + + + Code Coverage Added Code + Code Coverage hinzugefügter Code + + + New code that was not checked for tests. + Neuer Code, der nicht auf Tests geprüft wurde. + + + Partially Covered Code + Teilweise erfasster Code + + + Partial branch/condition coverage. + Teilweise Erfassung von Verzweigungen/Bedingungen. + + + Uncovered Code + Nicht erfasster Code + + + Not covered at all. + Nicht erfasster Code. + + + Fully Covered Code + Komplett erfasster Code + + + Fully covered code. + Komplett erfasster Code. + + + Manually Validated Code + Manuell validierter Code + + + User added validation. + Vom Benutzer hinzugefügte Validierung. + + + Code Coverage Dead Code + Code Coverage unerreichbarer Code + + + Unreachable code. + Unerreichbarer Code. + + + Code Coverage Execution Count Too Low + Code Coverage Anzahl der Ausführungen zu klein + + + Minimum count not reached. + Minimale Anzahl wurde nicht erreicht. + + + Implicitly Not Covered Code + Implizit nicht erfasster Code + + + PLACEHOLDER + + + + Implicitly Covered Code + Implizit erfasster Code + + + Implicit Manual Coverage Validation + Implizit manuell validierter Code + Overloaded Operators Überladene Operatoren @@ -39411,14 +41943,6 @@ Außer Leerzeichen innerhalb von Kommentaren und Zeichenketten. Calls and declarations of overloaded (user-defined) operators. Aufrufe und Deklarationen von überladenen (benutzerdefinierten) Operatoren. - - Function Declaration - Funktionsdeklaration - - - Style adjustments to (function) declarations. - Stilanpassungen für (Funktions-)Deklarationen. - Function Definition Funktionsdefinition @@ -39436,462 +41960,6 @@ Außer Leerzeichen innerhalb von Kommentaren und Zeichenketten. Schreibbare Argumente eines Funktionsaufrufs. - - Valgrind - - Profiling - Profiling - - - Profiling %1 - Profiling von %1 - - - - Valgrind - - Valgrind options: %1 - Valgrind-Optionen: %1 - - - Working directory: %1 - Arbeitsverzeichnis: %1 - - - Command line arguments: %1 - Kommandozeilenargumente: %1 - - - Analyzing finished. - Analyse beendet. - - - Error: "%1" could not be started: %2 - Fehler: "%1" konnte nicht gestartet werden: %2 - - - Error: no Valgrind executable set. - Fehler: Es ist keine ausführbare Datei für Valgrind konfiguriert. - - - Process terminated. - Prozess beendet. - - - Process exited with return value %1 - - Der Prozess wurde mit dem Rückgabewert %1 beendet - - - - - Valgrind - - XmlServer on %1: - XmlServer an %1: - - - LogServer on %1: - LogServer an %1: - - - - Welcome - - New to Qt? - Neu bei Qt? - - - Learn how to develop your own applications and explore %1. - Lernen Sie, wie Sie Ihre eigenen Anwendungen erstellen und erkunden Sie %1. - - - Get Started Now - Schnelleinstieg - - - Qt Account - Qt Account - - - Online Community - Online-Community - - - Blogs - Blogs - - - User Guide - Handbuch - - - - MainWidget - - Crash Handler - Crash-Handler - - - Qt Creator has crashed - Qt Creator ist abgestürzt - - - You can send us a crash report in order to help us diagnose and fix the problem. - Sie können uns einen Absturzbericht schicken, um uns beim Untersuchen und Beheben des Problems zu helfen. - - - Email: - E-Mail-Adresse: - - - Enter here your email (optional) - Geben Sie hier Ihre E-Mail-Adresse ein (optional) - - - Tell The Qt Company about this crash so they can fix it - Diesen Absturz The Qt Company mitteilen, damit sie ihn beheben können - - - Details - Details - - - Please describe what you did before it crashed (comments are publicly visible) - Bitte beschreiben Sie, was Sie vor dem Absturz getan haben (dies ist öffentlich sichtbar) - - - Your crash report will be submitted before you quit or restart. - Ihr Absturzbericht wird gesendet bevor sie beenden oder neustarten. - - - %v/%m Bytes - %v/%m Bytes - - - Restart - Neustart - - - Quit - Beenden - - - %1 has crashed - %1 ist abgestürzt - - - We specifically send the following information: - - - Wir übertragen speziell die folgenden Informationen: - - - - - Email: %1 - - E-Mail-Adresse: %1 - - - - Comments: %1 - - Kommentare: %1 - - - - In addition, we send a Microsoft Minidump file, which contains information about this computer, such as the operating system and CPU, and most importantly, it contains the stacktrace, which is an internal structure that shows where the program crashed. This information will help us to identify the cause of the crash and to fix it. - Zusätzlich übertragen wir eine Microsoft Minidump-Datei, die Informationen über diesen Computer enthält, z.B. das Betriebssystem, die CPU und vor allem den Stacktrace, eine interne Struktur, die zeigt, wo das Programm abgestürzt ist. Diese Information wird uns helfen, den Grund für den Absturz zu finden und zu beheben. - - - - Android - - Android SDK Manager - Android SDK-Manager - - - Expand All - Alle aufklappen - - - Update Installed - Aktualisierung installiert - - - Apply - Anwenden - - - Show Packages - Pakete anzeigen - - - Available - Verfügbar - - - Installed - Installiert - - - All - Alle - - - Advanced Options... - Erweiterte Optionen... - - - Do you want to accept the Android SDK license? - Wollen Sie die Android SDK-Lizenz akzeptieren? - - - Checking pending licenses... - - Prüfe auf ausstehende Lizenzen... - - - - -SDK Manager is busy. - -SDK-Manager arbeitet. - - - Android SDK Changes - Android SDK-Änderungen - - - Qt Creator couldn't find the following essential packages: "%1". -Install them manually after the current operation is done. - - Qt Creator konnte die folgenden notwendigen Pakete nicht finden: "%1". -Bitte installieren Sie sie selbst, nachdem die aktuelle Aktion abgeschlossen wurde. - - - - %n Android SDK packages shall be updated. - - Ein Android SDK-Paket soll aktualisiert werden. - %n Android SDK-Pakete sollen aktualisiert werden. - - - - [Packages to be uninstalled:] - - [Pakete, die deinstalliert werden sollen:] - - - - Review Android SDK package licenses that have not been accepted? -Please note that the installation and use of Android SDK packages may fail if respective licenses are not accepted. - Wollen Sie Android-SDK-Paketlizenzen einsehen, denen Sie noch nicht zugestimmt haben? -Bitte bedenken Sie, dass die Installation und die Nutzung von Android SDK-Paketen fehlschlagen können, wenn Sie die jeweiligen Lizenzen nicht akzeptieren. - - - Android SDK Licenses - Android SDK-Lizenzen - - - SDK Manager is busy. Operation cancelled. - SDK-Manager arbeitet. Die Operation wurde abgebrochen. - - - Installing/Uninstalling selected packages... - - Installiere/Deinstalliere ausgewählte Pakete... - - - - Closing the %1 dialog will cancel the running and scheduled SDK operations. - - Wenn Sie den %1-Dialog schließen, werden die laufenden und geplanten SDK-Operationen abgebrochen. - - - - preferences - Einstellungen - - - options - Einstellungen - - - Updating installed packages... - - Aktualisiere installierte Pakete... - - - - Android SDK operations finished. - Android SDK-Operationen beendet. - - - Operation cancelled. - - Operation abgebrochen. - - - - -No pending operations to cancel... - - -Keine ausstehenden Operationen sind abzubrechen... - - - - -Cancelling pending operations... - - -Breche ausstehende Operationen ab... - - - - The operation requires user interaction. Use the "sdkmanager" command-line tool. - Die Operation benötigt Benutzereingaben. Benutzen Sie das Kommandozeilenwerkzeug "sdkmanager". - - - License command failed. - - - Lizenzkommando fehlgeschlagen. - - - - - Updating installed packages. - Aktualisiere installierte Pakete. - - - Failed. - Fehlgeschlagen. - - - Done - - - Fertig - - - - - Installing - Installiere - - - Uninstalling - Deinstalliere - - - Failed - Fehlgeschlagen - - - SDK Manager Arguments - SDK-Manager-Argumente - - - Cannot load available arguments for "sdkmanager" command. - Die verfügbaren Argumente für "sdkmanager" können nicht geladen werden. - - - SDK manager arguments: - SDK-Manager-Argumente: - - - Available arguments: - Verfügbare Argumente: - - - Revision - Revision - - - Operation - Operation - - - Tools - Werkzeuge - - - SDK Platform - SDK Plattform - - - Update Only - Nur aktualisieren - - - Uninstall - Deinstallieren - - - Install - Installieren - - - - Autotest - - Select Run Configuration - Ausführungskonfiguration auswählen - - - Could not determine which run configuration to choose for running tests - Es konnte nicht bestimmt werden, welche Ausführungskonfiguration zum Ausführen von Tests gewählt werden soll - - - Remember choice. Cached choices can be reset by switching projects or using the option to clear the cache. - Auswahl speichern. Gespeicherte Entscheidungen können zurückgesetzt werden, indem Sie das Projekt wechseln oder mithilfe der Option zum Löschen des Zwischenspeichers. - - - Run Configuration: - Ausführungskonfiguration: - - - Executable: - Ausführbare Datei: - - - Arguments: - Argumente: - - - Working Directory: - Arbeitsverzeichnis: - - - - ClangCodeModel::Internal::BackendCommunicator - - Clang Code Model: Error: The clangbackend executable "%1" does not exist. - Clang Codemodell: Fehler: Die clangbackend-Anwendung "%1" existiert nicht. - - - Clang Code Model: Error: The clangbackend executable "%1" could not be started (timeout after %2ms). - Clang Codemodell: Fehler: Die clangbackend-Anwendung "%1" konnte nicht gestartet werden (Zeitüberschreitung nach %2ms). - - - Clang Code Model: Error: The clangbackend process has finished unexpectedly and was restarted. - Clang Codemodell: Fehler: Der clangbackend-Prozess wurde unerwartet beendet und neu gestartet. - - - - CMakeProjectManager - - Select a file for %1 - Wählen Sie eine Datei für %1 - - - Select a directory for %1 - Wählen Sie ein Verzeichnis für %1 - - Core::Internal::FindToolWindow @@ -39899,41 +41967,6 @@ Breche ausstehende Operationen ab... Leerer Suchbegriff. - - Debugger - - Upload failed: %1 - Hochladen gescheitert: %1 - - - The upload process failed to start. Shell missing? - Das Hochladen schlug fehl. Fehlt vielleicht ein Shell-Programm? - - - The upload process crashed some time after starting successfully. - Das Hochladen ist nach dem Starten abgestürzt. - - - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. - Die letzte waitFor...()-Funktion brauchte zu lange. Der Zustand des QProcess ist unverändert und Sie können versuchen waitFor...() erneut aufzurufen. - - - An error occurred when attempting to write to the upload process. For example, the process may not be running, or it may have closed its input channel. - Ein Fehler trat beim Versuch auf, zum Upload-Prozess zu schreiben. Möglicherweise läuft der Prozess nicht oder hat seinen Eingabekanal geschlossen. - - - An error occurred when attempting to read from the upload process. For example, the process may not be running. - Ein Fehler trat beim Versuch auf, vom Upload-Prozess zu lesen. Möglicherweise läuft der Prozess nicht. - - - An unknown error in the upload process occurred. This is the default return value of error(). - Es trat ein unbekannter Fehler im Upload-Prozess auf. Dies ist der gewöhliche Rückgabewert von error(). - - - Error - Fehler - - TextEditor::SearchEngine @@ -39954,10 +41987,18 @@ Breche ausstehende Operationen ab... Remove File Datei entfernen + + Remove Folder + + File to remove: Zu entfernende Datei: + + Folder to remove: + + &Delete file permanently Datei endgültig &löschen @@ -39967,37 +42008,6 @@ Breche ausstehende Operationen ab... Aus &Versionskontrolle entfernen - - ProcessCreator - - Executable does not exist: %1 - Ausführbare Datei existiert nicht: %1 - - - Unknown error occurred. - Ein unbekannter Fehler ist aufgetreten. - - - Process crashed. - Der Prozess ist abgestürzt. - - - Process failed at startup. - Der Prozess konnte nicht gestartet werden. - - - Process timed out. - Der Prozess brauchte zu lange. - - - Cannot write to process. - Zum Prozess kann nicht geschrieben werden. - - - Cannot read from process. - Vom Prozess kann nicht gelesen werden. - - QmlDebug::QmlDebugConnectionManager @@ -40024,38 +42034,16 @@ Breche ausstehende Operationen ab... <p>Es konnte keine mit dieser Instanz von %1 erstellte Einstellungsdatei gefunden werden.</p><p>Haben Sie mit diesem Projekt auf einem anderen Computer gearbeitet oder einen anderen Pfad für die Einstellungen verwendet?</p><p>Möchten Sie die Einstellungsdatei "%2" trotzdem laden?</p> - - Android - - Copy application data - Anwendungsdaten kopieren - - - Removing directory %1 - Lösche Verzeichnis %1 - - - Deploy to device - Deployment auf Gerät - - - - ClangHoverHandler - - %1 bytes - %1 Bytes - - - Value: - Wert: - - Core::Internal::JavaScriptFilter Evaluate JavaScript JavaScript auswerten + + Evaluates arbitrary JavaScript expressions and copies the result. + Wertet beliebige JavaScript-Ausdrücke aus und kopiert das Ergebnis. + Reset Engine Engine zurücksetzen @@ -40069,19 +42057,8 @@ Breche ausstehende Operationen ab... In die Zwischenablage kopieren: %1 - - Core::Internal::MenuBarFilter - - Actions from the Menu - Aktionen aus dem Menü - - QObject - - C++ Usages: - C++-Verwendungen: - None Keine @@ -40135,12 +42112,146 @@ Breche ausstehende Operationen ab... Reiter schließen - IncrediBuild for Windows - IncrediBuild für Windows + Bytes + - IncrediBuild for Linux - IncrediBuild für Linux + KB + + + + MB + MB + + + GB + + + + TB + + + + <Filter> + Library search input hint text + <Filter> + + + Show Event List + + + + Assign Events to Actions + + + + Connect Signal to Event + + + + Connected Events + + + + Connected Signals + + + + Exposed Custom Properties + + + + ID cannot start with an uppercase character (%1). + + + + ID cannot start with a number (%1). + + + + ID cannot include whitespace (%1). + + + + %1 is a reserved QML keyword. + + + + %1 is a reserved property keyword. + + + + ID includes invalid characters (%1). + + + + Empty document + + + + Start Nanotrace + + + + Shut Down Nanotrace + + + + Unknown + Unbekannt + + + Qt 6 + Qt 6 + + + Qt 5 + Qt 5 + + + Project File Generated + + + + File created: + +%1 + + + + Select File Location + + + + Qt Design Studio Project Files (*.qmlproject) + + + + Invalid Directory + + + + Project file must be placed in a parent directory of the QML files. + + + + Problem + + + + Selected directory is far away from the QML file. This can cause unexpected results. + +Are you sure? + + + + Failed to start Qt Design Studio. + + + + UntitledProject + File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks and using only ascii chars. + @@ -40150,12 +42261,32 @@ Breche ausstehende Operationen ab... Getter- und Setter-Funktionen erstellen - Create Getter Member Function - Getter-Funktion erstellen + Create Implementations for Member Functions + - Create Setter Member Function - Setter-Funktion erstellen + Generate Setter + + + + Generate Getter + + + + Generate Getter and Setter + + + + Generate Constant Q_PROPERTY and Missing Members + + + + Generate Q_PROPERTY and Missing Members with Reset Function + + + + Generate Q_PROPERTY and Missing Members + Convert to Stack Variable @@ -40165,6 +42296,14 @@ Breche ausstehende Operationen ab... Convert to Pointer In Zeiger umwandeln + + Base Class Constructors + + + + Generate Constructor + + Generate Missing Q_PROPERTY Members Fehlende Q_PROPERTY-Elemente erzeugen @@ -40199,56 +42338,28 @@ Breche ausstehende Operationen ab... Schriftart-Dateien - Add Custom Effect - Benutzerdefinierten Effekt hinzufügen - - - - AddAnalysisMessageSuppressionComment - - Add a Comment to Suppress This Message - Fügen Sie einen Kommentar ein, um diese Nachricht zu unterdrücken - - - - QmlJSEditor - - Code Model Warning - Codemodell-Warnung + Sound Files + - Code Model Error - Codemodell-Fehler - - - - RemoteLinux - - Trying to kill "%1" on remote device... - Versuche "%1" auf anderem Gerät zu beenden... + Video Files + - Remote application killed. - Anwendung auf anderem Gerät beendet. + Shader Files + - Failed to kill remote application. Assuming it was not running. - Anwendung auf anderem Gerät konnte nicht beendet werden. Vermutlich lief sie nicht. + 3D Assets + 3D-Assets - Kill current application instance - Aktuelle Instanz der Anwendung beenden - - - - CppTools::ClangBaseChecks - - For appropriate options, consult the GCC or Clang manual pages or the <a href="https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html">GCC online documentation</a>. - Für passende Optionen lesen Sie das GCC- oder Clang-Handbuch oder auch die <a href="https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html">GCC-Onlinedokumentation</a>. + Qt 3D Studio Presentations + - Use diagnostic flags from build system - Diagnose-Flags des Build-Systems verwenden + Effect Maker Files + @@ -40333,20 +42444,10 @@ Breche ausstehende Operationen ab... group:'Text' trigger:'global' Beispiel - - - Tracing - others - andere - - - unknown - unbekannt - - - No data available - Keine Daten verfügbar + + Snippets are text fragments that can be inserted into an editor via the usual completion mechanics using a trigger text. The translated text (trigger variant) is used to disambiguate between snippets with the same trigger. + @@ -40364,181 +42465,6 @@ Breche ausstehende Operationen ab... Analysieren - - ClangTools::Internal::ProjectSettingsWidget - - Remove Selected - Ausgewählte entfernen - - - Remove All - Alle entfernen - - - Use Global Settings - Globale Einstellungen verwenden - - - Use Customized Settings - Benutzerdefinierte Einstellungen verwenden - - - Restore Global Settings - Globale Einstellungen wiederherstellen - - - <a href="target">Open Global Settings</a> - <a href="target">Globale Einstellungen öffnen</a> - - - <a href="target">Go to Analyzer</a> - <a href="target">Zum Analyzer gehen</a> - - - Suppressed diagnostics - Unterdrückte Diagnosemeldungen - - - - CMakeProjectManager - - Determines whether file paths are copied to the clipboard for pasting to the CMakeLists.txt file when you add new files to CMake projects. - Legt fest, ob beim Hinzufügen von neuen Dateien zu CMake-Projekten deren Dateipfade in die Zwischenablage kopiert werden, um sie in die CMakeLists.txt-Datei einzufügen. - - - Adding Files - Dateien hinzufügen - - - Ask about copying file paths - Fragen, ob Dateipfade kopiert werden sollen - - - Do not copy file paths - Dateipfade nicht kopieren - - - Copy file paths - Dateipfade kopieren - - - - FilePropertiesDialog - - File Properties - Eigenschaften der Datei - - - Owner: - Besitzer: - - - Group: - Gruppe: - - - Size: - Größe: - - - Name: - Name: - - - Path: - Pfad: - - - Last read: - Zuletzt gelesen: - - - Last modified: - Zuletzt geändert: - - - Readable: - Lesbar: - - - Writable: - Schreibbar: - - - Executable: - Ausführbar: - - - Symbolic link: - Symbolischer Link: - - - MIME type: - MIME-Typ: - - - Default editor: - Zugeordneter Editor: - - - Undefined - Nicht definiert - - - - Tracing - - Could not open %1 for writing. - Die Datei %1 konnte nicht zum Schreiben geöffnet werden. - - - Could not open %1 for reading. - Die Datei %1 konnte nicht zum Lesen geöffnet werden. - - - Could not re-read events from temporary trace file: %1 -The trace data is lost. - Ereignisse konnten nicht erneut aus der temporären Trace-Datei eingelesen werden: %1 -Die Trace-Daten sind verloren. - - - - Android - - AVD Start Error - Fehler beim Start von AVD - - - Emulator Tool Is Missing - Fehlender Emulator - - - Install the missing emulator tool (%1) to the installed Android SDK. - Installieren Sie den fehlenden Emulator (%1) im installierten Android-SDK. - - - Clean Environment - Saubere Umgebung - - - Activity manager start options: - Startoptionen des Aktivitätsmanagers: - - - If the "am start" options conflict, the application might not start. -Qt Creator uses: am start -n <package_name>/<Activity_name> [-D]. - Wenn die Optionen für "am start" widersprüchlich sind, könnte die Anwendung nicht starten. -Qt Creator benutzt: am start -n <Paketname>/<Aktivitätsname> [-D]. - - - Shell commands to run on Android device before application launch. - Shell-Kommandos, die vor dem Start der Anwendung auf dem Android-Gerät ausgeführt werden. - - - Shell commands to run on Android device after application quits. - Shell-Kommandos, die nach dem Beenden der Anwendung auf dem Android-Gerät ausgeführt werden. - - ClangCodeModel::Internal::ClangCodeModelPlugin @@ -40576,16 +42502,24 @@ Qt Creator benutzt: am start -n <Paketname>/<Aktivitätsname> [-D].< Clang-Tidy Issue Clang-Tidy-Problem + + [Source: %1] + + ClangCodeModel - <No Symbols> - <Keine Symbole> + Component + Komponente - <Select Symbol> - <Symbol auswählen> + Total Memory + + + + Update + Aktualisieren @@ -40613,33 +42547,6 @@ Ausgabe: %3 - - ClangTools::Internal::ClangToolsDiagnosticModel - - No Fixits - Keine Korrekturen - - - Not Scheduled - nicht eingeplant - - - Invalidated - Ungültig - - - Scheduled - eingeplant - - - Failed to Apply - Konnte nicht angewendet werden - - - Applied - Angewendet - - ClangTools::Diagnostic @@ -40666,6 +42573,10 @@ Ausgabe: Steps: Schritte: + + Documentation: + + ClangTools::ExplainingStep @@ -40700,10 +42611,22 @@ Ausgabe: Web Page Webseite + + Suppress Selected Diagnostics + + Suppress This Diagnostic Diese Art von Einträgen nicht anzeigen + + Disable These Checks + + + + Disable This Check + + LogFileReader @@ -40745,99 +42668,6 @@ Ausgabe: Diagnose - - QMessageBox - - Copy to Clipboard? - In die Zwischenablage kopieren? - - - Files are not automatically added to the CMakeLists.txt file of the CMake project. -Copy the path to the source files to the clipboard? - Dateien werden nicht automatisch zur Datei CMakeLists.txt des CMake-Projekts hinzugefügt. -Möchten Sie den Pfad zu den Quelldateien in die Zwischenablage kopieren? - - - - CppTools::ClangDiagnosticConfigsSelectionWidget - - Diagnostic Configuration: - Diagnosekonfiguration: - - - - CppTools::OverviewModel - - <Select Symbol> - <Symbol auswählen> - - - <No Symbols> - <Keine Symbole> - - - - ImageViewer - - Enter a file name containing place holders %1 which will be replaced by the width and height of the image, respectively. - Geben Sie einen Dateinamen ein, der die Platzhalter %1 enthält, die durch Breite und Höhe des Bilds ersetzt werden. - - - File: - Datei: - - - Clear - Löschen - - - Set Standard Icon Sizes - Standard-Symbolgröße einstellen - - - Generate Sizes - Größen erzeugen - - - A comma-separated list of size specifications of the form "<width>x<height>". - Eine kommaseparierte Liste von Größenangaben der Form "<Breite>x<Höhe>". - - - Sizes: - Größen: - - - Please specify some sizes. - Bitte geben Sie einige Größen an. - - - Invalid size specification: %1 - Ungültige Größenangabe: %1 - - - The file name must contain one of the placeholders %1, %2. - Der Dateiname muss einen der Platzhalter %1, %2 enthalten. - - - The file %1 already exists. -Would you like to overwrite it? - Die Datei %1 existiert bereits. -Möchten Sie sie überschreiben? - - - The files %1 already exist. -Would you like to overwrite them? - Die Dateien %1 existieren bereits. -Möchten Sie sie überschreiben? - - - - Nim - - Current Build Target - Aktuelles Build-Ziel - - ProjectExplorer::KitChooser @@ -40867,9 +42697,8 @@ Möchten Sie sie überschreiben? You just dragged some files from one project node to another. -What should Qt Creator do now? - Sie haben gerade eine oder mehrere Dateien von einem Projektknoten zu einem anderen gezogen. -Was soll Qt Creator tun? +What should %1 do now? + Copy Only File References @@ -40995,114 +42824,6 @@ Was soll Qt Creator tun? Target Directory Zielverzeichnis - - In directory: - Im Verzeichnis: - - - - QmlProfiler - - The QML Profiler can be used to find performance bottlenecks in applications using QML. - Der QML-Profiler kann zum Auffinden geschwindigkeitsrelevanter Engpässe in QML-Anwendungen verwendet werden. - - - QML Profiler (Attach to Waiting Application) - QML-Profiler (mit wartender Anwendung verbinden) - - - QML Profiler Options - Einstellungen des QML-Profilers - - - Cannot open temporary trace file to store events. - Eine temporäre Trace-Datei kann nicht geöffnet werden um Ereignisse zu speichern. - - - Failed to reset temporary trace file. - Eine temporäre Trace-Datei konnte nicht zurückgesetzt werden. - - - Failed to flush temporary trace file. - Das Schreiben in eine temporäre Trace-Datei konnte nicht beendet werden. - - - Cannot re-open temporary trace file. - Eine temporäre Trace-Datei konnte nicht neu geöffnet werden. - - - Read past end from temporary trace file. - Über das Ende der temporären Trace-Datei hinaus gelesen. - - - Could not re-open temporary trace file. - Eine temporäre Trace-Datei konnte nicht neu geöffnet werden. - - - Main Program - Hauptprogramm - - - called recursively - rekursiv aufgerufen - - - Callee - Aufgerufene Funktion - - - Caller - Aufrufende Funktion - - - Callee Description - Bescheibung der aufgerufenen Funktion - - - Caller Description - Beschreibung der aufrufenden Funktion - - - Error while parsing trace data file: %1 - Fehler beim Auswerten der Trace-Datei: %1 - - - Invalid magic: %1 - Ungültige Dateiformatkennzeichnung: %1 - - - Unknown data stream version: %1 - Unbekannte Datenstromversion: %1 - - - Excessive number of event types: %1 - Zu viele Ereignistypen: %1 - - - Invalid type index %1 - Ungültiger Typindex %1 - - - Corrupt data before position %1. - Unbrauchbare Daten vor Position %1. - - - Error writing trace file. - Fehler beim Schreiben der Trace-Datei. - - - Could not re-read events from temporary trace file: %1 -Saving failed. - Ereignisse konnten nicht erneut aus der temporären Trace-Datei eingelesen werden: %1 -Speichern fehlgeschlagen. - - - - Qnx - - Deploy to QNX Device - Deployment auf QNX-Gerät - SerialTerminal::Internal::SerialControl @@ -41394,55 +43115,8 @@ Speichern fehlgeschlagen. ClangFormat::ClangFormatConfigWidget - Apply - Anwenden - - - Current project has its own overridden .clang-format file and can be configured in Projects > Code Style > C++. - Das aktuelle Projekt hat seine eigene überschriebene .clang-format-Datei und kann in Projekte > Coding-Stil > C++ konfiguriert werden. - - - Error in ClangFormat configuration - Fehler in der Konfiguration von ClangFormat - - - Format instead of indenting - Formatieren statt einzurücken - - - Format while typing - Bei der Eingabe formatieren - - - Format edited code on file save - Bearbeiteten Quelltext beim Speichern der Datei formatieren - - - Override Clang Format configuration file - Clang-Format-Konfigurationsdatei überschreiben - - - - ProjectExplorer::Internal::MakeStep - - Override %1: - Überschreibe %1: - - - Make arguments: - Kommandozeilenargumente für make: - - - Parallel jobs: - Parallele Jobs: - - - Targets: - Ziele: - - - Override MAKEFLAGS - MAKEFLAGS überschreiben + Clang-Format Style + @@ -41452,158 +43126,16 @@ Speichern fehlgeschlagen. Fehler %1 - - Android - - Create Templates - Vorlagen erstellen - - - Additional Libraries - Zusätzliche Bibliotheken - - - List of extra libraries to include in Android package and load on startup. - Liste aller zusätzlichen Bibliotheken, die in das Paket aufgenommen und beim Start geladen werden. - - - Select library to include in package. - Wählen Sie eine Bibliothek zur Aufnahme in das Paket aus. - - - Remove currently selected library from list. - Ausgewählte Bibliothek aus Liste entfernen. - - - Select additional libraries - Zusätzliche Bibliotheken auswählen - - - Android build SDK: - Android-Build-SDK: - - - Sign package - Paket signieren - - - Keystore: - Keystore: - - - Select Keystore File - Keystore-Datei auswählen - - - Create... - Erstellen... - - - Signing a debug package - Signiere Debug-Paket - - - Certificate alias: - Alias des Zertifikats: - - - Advanced Actions - Erweiterte Aktionen - - - Open package location after build - Paketverzeichnis nach dem Erstellen öffnen - - - Add debug server - Debug-Server hinzufügen - - - Packages debug server with the APK to enable debugging. For the signed APK this option is unchecked by default. - Packt einen Debug-Server im APK-Paket ein um Debugging zu ermöglichen. Für ein signiertes APK ist diese Option standardmäßig abgewählt. - - - Verbose output - Ausführliche Ausgabe - - - Build .aab (Android App Bundle) - .aab (Android App Bundle) erstellen - - - Libraries (*.so) - Bibliotheken (*.so) - - - Include prebuilt OpenSSL libraries - Bereits erstellte OpenSSL-Bibliotheken einbinden - - - This is useful for apps that use SSL operations. The path can be defined in Tools > Options > Devices > Android. - Dies ist nützlich für Apps, die SSL benutzen. Der Pfad kann in Extras > Einstellungen > Geräte > Android festgelegt werden. - - - No application .pro file found in this project. - Die .pro-Datei der Anwendung konnte in diesem Projekt nicht gefunden werden. - - - No Application .pro File - Keine .pro-Datei der Anwendung - - - Android package source directory: - Quellverzeichnis des Android-Pakets: - - - The Android package source directory cannot be the same as the project directory. - Das Android-Paket-Quellverzeichnis muss sich vom Projektverzeichnis unterscheiden. - - - Copy the Gradle files to Android directory - Gradle-Dateien ins Android-Verzeichnis kopieren - - - It is highly recommended if you are planning to extend the Java part of your Qt application. - Dies ist sehr zu empfehlen, wenn sie den Java-Teil Ihrer Qt-Anwendung erweitern wollen. - - - Select the Android package source directory. - -The files in the Android package source directory are copied to the build directory's Android directory and the default files are overwritten. - Wählen Sie das Quellverzeichnis des Android-Pakets aus. - -Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichnis "Android" im Build-Verzeichnis kopiert und die Vorgabedateien überschrieben. - - - The Android template files will be created in the ANDROID_PACKAGE_SOURCE_DIR set in the .pro file. - Die Android-Vorlagendateien werden im in der .pro-Datei angegebenen ANDROID_PACKAGE_SOURCE_DIR angelegt. - - - Create Android Template Files Wizard - Assistent zum Erzeugen von Android-Vorlagendateien - - - Project File not Updated - Projekt-Datei nicht aktualisiert - - - Could not update the project file %1. - Die Projekt-Datei %1 konnte nicht aktualisiert werden. - - - - ClangCodeModel::ClangAssistProposalItem - - Requires changing "%1" to "%2" - "%1" muss durch "%2" ersetzt werden - - ClangFormat::ClangFormatPlugin Open Used .clang-format Configuration File Verwendete .clang-format-Konfigurationsdatei öffnen + + The ClangFormat plugin has been built against an unmodified Clang. You might experience formatting glitches in certain circumstances. See https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/README.md for more information. + + Cppcheck::Internal::CppcheckOptionsPage @@ -41612,13 +43144,6 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Cppcheck - - Cppcheck::Internal::CppcheckRunner - - Cppcheck failed to start: "%1". - Cppcheck konnte nicht gestartet werden: "%1". - - Cppcheck::Internal::CppcheckTool @@ -41630,202 +43155,28 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Cppcheck beendet. - - Debugger - - Debuggee - Untersuchtes Programm - - - Add Breakpoint - Haltepunkt setzen - - - Add Breakpoint... - Haltepunkt setzen... - - - Delete Selected Breakpoints - Ausgewählte Haltepunkte löschen - - - Edit Selected Breakpoints... - Ausgewählte Haltepunkte bearbeiten... - - - Disable Selected Breakpoints - Ausgewählte Haltepunkte deaktivieren - - - Enable Selected Breakpoints - Ausgewählte Haltepunkte aktivieren - - - Remove All Breakpoints - Alle Haltepunkte löschen - - - Are you sure you want to remove all breakpoints from all files in the current session? - Möchten Sie wirklich alle Haltepunkte aus allen Dateien der aktuellen Sitzung löschen? - - - - Debugger - - Perspective - Perspektive - - - Debugged Application - Zu debuggende Anwendung - - - Debugger Preset - Debugger-Voreinstellung - - - Create Snapshot - Snapshot erzeugen - - - Abort Debugger - Debugger abbrechen - - - - Debugger - - Global Debugger &Log - Globales Debugger-&Log - - - - Git - - Include Old Entries - Alte Einträge einschließen - - - Include Tags - Tags anzeigen - - - Refresh - Aktualisieren - - - Include branches and tags that have not been active for %n days. - - Branches und Tags einschließen, die seit einem Tag nicht benutzt wurden. - Branches und Tags einschließen, die seit %n Tagen nicht benutzt wurden. - - - - Create Git Repository... - Git-Repository erzeugen... - - - Add Branch... - Branch hinzufügen... - - - &Fetch - &Fetch - - - Manage &Remotes... - &Remotes verwalten... - - - Rem&ove... - En&tfernen... - - - Re&name... - Umbe&nennen... - - - &Checkout - Aus&checken - - - &Diff - &Diff - - - &Log - &Log - - - Re&set - Zurück&setzen - - - &Merge (Fast-Forward) - &Merge (Fast-Forward) - - - Merge (No &Fast-Forward) - Merge (kein &Fast-Forward) - - - &Merge - &Merge - - - &Rebase - &Rebase - - - &Track - &Folgen - - - Would you like to delete the tag "%1"? - Möchten Sie das Tag "%1" löschen? - - - Would you like to delete the branch "%1"? - Möchten Sie den Branch "%1" löschen? - - - Would you like to delete the <b>unmerged</b> branch "%1"? - Es wurde mit dem Branch "%1" noch <b>keine</b> Merge-Operation durchgeführt. Möchten Sie ihn dennoch löschen? - - - Delete Tag - Tag löschen - - - Delete Branch - Branch löschen - - - Git Reset - Git Reset - - - Git Branches - Git Branches - - - Filter - Filter - - - - Help - - Update Documentation - Dokumentation aktualisieren - - LanguageClient Language Client Language Client + + Symbols in Current Document + + + + Symbols in Workspace + + + + Classes and Structs in Workspace + + + + Functions and Methods in Workspace + + LanguageClient::LanguageClientManager @@ -41837,21 +43188,13 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Unexpectedly finished. Unerwartet beendet. + + Show available quick fixes + + LanguageClient::BaseSettingsWidget - - Name - Name - - - Value - Wert - - - Type - Typ - Name: Name: @@ -41873,12 +43216,16 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Startzeitpunkt: - Available after server was initialized - Verfügbar, nachdem der Server initialisiert wurde + Initialization options: + - Capabilities: - Fähigkeiten: + Failed to parse JSON at %1: %2 + + + + Language server-specific JSON to pass via "initializationOptions" field of "initialize" request. + @@ -41892,11 +43239,44 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Argumente: - - Nim - ProjectExplorer::MakeStep + + Make arguments: + Kommandozeilenargumente für make: + + + Parallel jobs: + Parallele Jobs: + + + Override MAKEFLAGS + MAKEFLAGS überschreiben + + + <code>MAKEFLAGS</code> specifies parallel jobs. Check "%1" to override. + <code>MAKEFLAGS</code> legt parallele Jobs fest. Wählen Sie "%1", um dies zu überstimmen. + + + Disable in subdirectories: + + + + Runs this step only for a top-level build. + + + + Targets: + Ziele: + + + Make: + Make: + + + Override %1: + + Make Make @@ -41905,57 +43285,17 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Make command missing. Specify Make command in step configuration. Make-Befehl fehlt. Geben Sie den Make-Befehl in der Schrittkonfiguration an. - - - ProjectExplorer::MakeStepConfigWidget - - <code>MAKEFLAGS</code> specifies parallel jobs. Check "%1" to override. - <code>MAKEFLAGS</code> legt parallele Jobs fest. Wählen Sie "%1", um dies zu überstimmen. - - - Make: - Make: - - - Override %1: - Statt %1 verwenden: - <b>Make:</b> %1 - <b>Make:</b> %1 + <b>Make:</b> %1 <b>Make:</b> No build configuration. - <b>Make:</b> Keine Build-Konfiguration. + <b>Make:</b> Keine Build-Konfiguration. <b>Make:</b> %1 not found in the environment. - <b>Make:</b> %1 konnte in der Umgebung nicht gefunden werden. - - - - QmakeProjectManager - - Cannot find Makefile. Check your build settings. - Die Makefile-Datei konnte nicht gefunden werden. Bitte überprüfen Sie die Einstellungen zur Erstellung. - - - - RemoteLinux - - Command line: - Kommandozeile: - - - Run custom remote command - Benutzerdefiniertes entferntes Kommando ausführen - - - - Valgrind - - All functions with an inclusive cost ratio higher than %1 (%2 are hidden) - Alle Funktionen mit einem einschließlichen Kostenfaktor größer als %1 (%2 nicht gezeigt) + <b>Make:</b> %1 konnte in der Umgebung nicht gefunden werden. @@ -41984,13 +43324,6 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Statt eines Ganzzahlwerts wurde "%2" in "%1" gefunden. - - LanguageServerProtocol::JsonObject - - Expected type %1 but value contained %2 - Der Wert enthielt %2 statt des erwarteten Typs %1 - - LanguageServerProtocol::Notification @@ -42005,42 +43338,6 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni In "%1" ist keine ID angegeben. - - LanguageServerProtocol::MarkedString - - DocumentFormattingProperty should be either bool, double, or QString. - "DocumentFormattingProperty" sollte entweder bool, double oder QString sein. - - - - LanguageServerProtocoll::MarkupOrString - - Expected a string or MarkupContent in MarkupOrString. - In MarkupOrString wurde eine Zeichenkette oder MarkupContent erwartet. - - - - JsonRpcMessageHandler - - Could not parse JSON message "%1". - Die JSON-Nachricht konnte nicht ausgewertet werden: "%1". - - - Expected a JSON object, but got a JSON "%1". - Statt eines erwarteten JSON-Objekts wurde JSON-"%1" gefunden. - - - - BinEditor - - &Undo - &Rückgängig - - - &Redo - &Wiederholen - - CppcheckOptionsPage @@ -42130,6 +43427,10 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Edit Files... Dateien bearbeiten... + + Remove Directory + + LanguageClientSettingsPage @@ -42164,17 +43465,6 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Compiler-Flags - - Nim - - Nimsuggest - Nimsuggest - - - Path - Pfad - - PerfProfiler @@ -42357,445 +43647,10 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Failed to run trace point script: %1 Tracepoint-Skript konnte nicht ausgeführt werden: %1 - - Creating Memory Trace Points - Trace Points für Speicher-Profiling erzeugen - Elevate privileges using: Rechte ausweiten mit: - - - QmlDesigner::SetFrameValueDialog - - Dialog - Dialog - - - Value - Wert - - - Frame - Frame - - - - QmlDesigner::TimelineAnimationForm - - Continuous - Fortlaufend - - - none - Keine - - - Animation Settings - Animationseinstellungen - - - animation02 - animation02 - - - Invalid Id - Ungültige ID - - - %1 is an invalid id. - %1 ist keine gültige ID. - - - %1 already exists. - %1 existiert bereits. - - - Base State - Grundzustand - - - Loops: - Wiederholungen: - - - Animation ID: - ID der Animation: - - - Finished: - Beendet: - - - Ping pong - Ping Pong - - - Transition to state: - Übergang zu Status: - - - Running in base state - Läuft im Grundzustand - - - Start frame: - Erster Frame: - - - Duration: - Dauer: - - - End frame: - Letzter Frame: - - - - QmlDesigner::TimelineForm - - Animation - Animation - - - Timeline Settings - Timeline-Einstellungen - - - Invalid Id - Ungültige ID - - - %1 is an invalid id. - %1 ist keine gültige ID. - - - %1 already exists. - %1 existiert bereits. - - - Expression binding: - Binding durch einen Ausdruck: - - - End frame: - Letzter Frame: - - - Expression binding - Binding durch einen Ausdruck - - - Timeline ID: - ID der Timeline: - - - Start frame: - Erster Frame: - - - - QmlDesigner::TimelineSettingsDialog - - Timeline Settings - Timeline-Einstellungen - - - Add Timeline - Timeline hinzufügen - - - Remove Timeline - Timeline entfernen - - - Add Animation - Animation hinzufügen - - - Remove Animation - Animation entfernen - - - No Timeline - Keine Timeline - - - No Animation - Keine Animation - - - - SyntaxHighlightingCLI - - Command line syntax highlighter using Kate syntax definitions. - Kommandozeilen-Syntaxhervorhebung mittels Kate-Syntaxdefinitionen. - - - source - Quelldatei - - - The source file to highlight. - Die Quelltextdatei, deren Syntax hervorgehoben werden soll. - - - List all available syntax definitions. - Alle verfügbaren Syntaxdefinitionen auflisten. - - - List all available themes. - Alle verfügbaren Farbschemata auflisten. - - - Download new/updated syntax definitions. - Neue oder aktualisierte Syntaxdefinitionen herunterladen. - - - File to write HTML output to (default: stdout). - Datei, in die die HTML-Ausgabe geschrieben werden soll (Vorgabe: Standardausgabe). - - - output - Ausgabedatei - - - Highlight using this syntax definition (default: auto-detect based on input file). - Mit dieser Syntaxdefinition hervorheben (Vorgabe: Anhand der Eingabedatei automatisch erkennen). - - - syntax - Syntax - - - Color theme to use for highlighting. - Farbschema für die Syntaxhervorhebung. - - - theme - Farbschema - - - Set HTML page's title -(default: the filename or "Kate Syntax Highlighter" if reading from stdin). - Titel der HTML-Seite setzen -(Vorgabe: Der Dateiname oder "Kate Syntax Highlighter", wenn von der Standardeingabe gelesen wird). - - - title - Titel - - - Read file from stdin. The -s option must also be used. - Die Datei aus der Standardeingabe lesen. Die Option "-s" muss auch verwendet werden. - - - - QSsh::SftpSession - - sftp failed to start: %1 - sftp konnte nicht gestartet werden: %1 - - - sftp crashed. - sftp ist abgestürzt. - - - Cannot establish SFTP session: sftp binary "%1" does not exist. - SFTP-Sitzung kann nicht aufgebaut werden: Eine ausführbare SFTP-Datei "%1" existiert nicht. - - - - QSsh::SftpTransfer - - sftp failed to start: %1 - sftp konnte nicht gestartet werden: %1 - - - sftp crashed. - sftp ist abgestürzt. - - - sftp binary "%1" does not exist. - Eine ausführbare SFTP-Datei "%1" existiert nicht. - - - Could not create temporary file: %1 - Es konnte keine temporäre Datei erstellt werden: %1 - - - Failed to create local directory "%1". - Das lokale Verzeichnis "%1" konnte nicht erstellt werden. - - - File transfer failed: %1 - Dateiübertragung gescheitert: %1 - - - - QSsh::SshConnection - - Cannot establish SSH connection: Control process failed to start: %1 - SSH-Verbindung kann nicht aufgebaut werden: Der Steuerprozess konnte nicht gestartet werden: %1 - - - SSH connection failure. - SSH-Verbindungsfehler. - - - Cannot establish SSH connection: ssh binary "%1" does not exist. - SSH-Verbindung kann nicht aufgebaut werden: Eine ausführbare SSH-Datei "%1" existiert nicht. - - - Cannot establish SSH connection: Failed to create temporary directory for control socket: %1 - SSH-Verbindung kann nicht aufgebaut werden: Es konnte kein temporäres Verzeichnis für den Steuer-Socket angelegt werden: %1 - - - - QSsh::SshRemoteProcess - - The ssh process crashed: %1 - Der SSH-Prozess ist abgestürzt: %1 - - - Remote process crashed. - Der entfernte Prozess ist abgestürzt. - - - - JsonTreeModelItem - - Null - Null - - - Bool - Bool - - - Double - Double - - - String - String - - - Array - Array - - - Object - Object - - - Undefined - Undefined - - - %n Items - - ein Element - %n Elemente - - - - - ClangDiagnosticConfig - - Project: %1 (based on %2) - Projekt: %1 (basierend auf %2) - - - Changes applied in Projects Mode > Clang Code Model - Änderungen in "Projekte"-Modus > Clang Codemodell - - - - ClangPchProgressManager - - Creating PCHs - PCH stands for precompiled header - PCHs erzeugen - - - Creating Dependencies - Abhängigkeiten erzeugen - - - - ClangRefactoringProgressManager - - C++ Indexing - Indiziere C++ - - - - CppEditor::Internal::CppIncludeHierarchyWidget - - No include hierarchy available - Keine Include-Hierarchie verfügbar - - - Synchronize with Editor - Mit Editor synchronisieren - - - - Ios::Internal - - Deploy on iOS - Deployment auf iOS - - - - LanguageClient::Client - - Cannot handle content of type: %1 - Kann Inhalt des Typs "%1" nicht verwenden. - - - Invalid parameter in "%1": %2 - Ungültiger Parameter in "%1": %2 - - - Language Server "%1" Initialize Error - Fehler bei Initialisierung von Language Server "%1" - - - Initialize error: - Fehler bei Initialisierung: - - - No initialize result. - Initialisierung ohne Ergebnis. - - - Initialize result is not valid: - Ergebnis der Initialisierung ist ungültig: - - - - LanguageClient::StdIOClientInterface - - Cannot send data to unstarted server %1 - Kann keine Daten an den nicht gestarteten Server %1 schicken - - - Crashed with exit code %1: %2 - Mit dem Rückgabewert %1 abgestürzt: %2 - - - - Nim - - Tools - Werkzeuge - - - - PerfProfiler Event Type Ereignistyp @@ -42908,6 +43763,603 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Self in Percent Eigene Samples in Prozent + + Failed to transfer Perf data to perfparser. + Perf-Daten konnten nicht zum perfparser übertragen werden. + + + Perf Process Failed to Start + Der Perf-Prozess konnte nicht gestartet werden + + + Make sure that you are running a recent Linux kernel and that the "perf" utility is available. + Stellen Sie sicher, dass Sie einen aktuellen Linux-Kernel verwenden und das Programm "perf" verfügbar ist. + + + Performance Analyzer Options + Einstellungen zur Leistungsanalyse + + + Load perf.data File + Datei perf.data laden + + + Load Trace File + Trace-Datei laden + + + Save Trace File + Trace-Datei speichern + + + Limit to Range Selected in Timeline + Auf in der Zeitleiste markierten Bereich einschränken + + + Show Full Range + Ganzen Bereich anzeigen + + + Create Memory Trace Points + Trace Points für Speicher-Profiling erzeugen + + + Create trace points for memory profiling on the target device. + Trace Points für Speicher-Profiling auf dem Gerät erzeugen. + + + Performance Analyzer + Leistungsanalyse + + + Finds performance bottlenecks. + Findet Leistungsengpässe. + + + Timeline + Zeitleiste + + + Statistics + Statistik + + + Flame Graph + Flame Graph + + + Discard data. + Daten verwerfen. + + + Limit to Selected Range + Auf markierten Bereich einschränken + + + Reset Zoom + Vergrößerung zurücksetzen + + + Copy Table + Tabelle kopieren + + + Copy Row + Zeile kopieren + + + Reset Flame Graph + Flame Graph zurücksetzen + + + No Data Loaded + Keine Daten geladen + + + The profiler did not produce any samples. Make sure that you are running a recent Linux kernel and that the "perf" utility is available and generates useful call graphs. +You might find further explanations in the Application Output view. + + + + A performance analysis is still in progress. + Eine Leistungsanalyse läuft noch. + + + Start a performance analysis. + Eine Leistungsanalyse beginnen. + + + Enable All + Alle aktivieren + + + Disable All + Alle deaktivieren + + + Trace File (*.ptq) + + + + Show all addresses. + Alle Adressen anzeigen. + + + Aggregate by functions. + Nach Funktionen zusammenfassen. + + + Stop collecting profile data. + Aufzeichnen von Profiling-Daten beenden. + + + Collect profile data. + Profiling-Daten aufzeichnen. + + + Recorded: %1.%2s + Aufgezeichnet: %1,%2s + + + Processing delay: %1.%2s + Verarbeitungsverzögerung: %1,%2s + + + Failed to reset temporary trace file. + Eine temporäre Trace-Datei konnte nicht zurückgesetzt werden. + + + Failed to flush temporary trace file. + Das Schreiben in eine temporäre Trace-Datei konnte nicht beendet werden. + + + Cannot re-open temporary trace file. + Eine temporäre Trace-Datei konnte nicht neu geöffnet werden. + + + Read past end from temporary trace file. + Über das Ende der temporären Trace-Datei hinaus gelesen. + + + Thread started + Thread gestartet + + + Thread ended + Thread beendet + + + Samples lost + Samples verloren + + + Context switch + + + + Invalid + Ungültig + + + Failed to replay Perf events from stash file. + Perf-Ereignisse aus der Stash-Datei konnten nicht wieder abgespielt werden. + + + Loading Trace Data + Lade Trace-Daten + + + Saving Trace Data + Speichere Trace-Daten + + + Performance Analyzer Settings + Einstellungen zur Leistungsanalyse + + + sample collected + Sample aufgezeichnet + + + Details + Details + + + Timestamp + Zeitstempel + + + Guessed + Geschätzt + + + %n frames + + + + + + + System + System + + + Name + Name + + + Resource Usage + Ressourcenverbrauch + + + Resource Change + Änderung der Ressourcen + + + thread started + Thread gestartet + + + thread ended + Thread beendet + + + lost sample + Sample verloren + + + context switch + + + + Duration + Dauer + + + (guessed from context) + (aus dem Kontext geschlossen) + + + Total Samples + Samples insgesamt + + + Total Unique Samples + Verschiedene Samples insgesamt + + + Resource Peak + Ressourcenspitzenwert + + + Resource Guesses + Ressourcenschätzungen + + + Invalid data format. The trace file's identification string is "%1". An acceptable trace file should have "%2". You cannot read trace files generated with older versions of %3. + + + + Invalid data format. The trace file was written with data stream version %1. We can read at most version %2. Please use a newer version of Qt. + + + + + QmlDesigner::SetFrameValueDialog + + Edit Keyframe + + + + Frame + Frame + + + + QmlDesigner::TimelineAnimationForm + + Continuous + Fortlaufend + + + none + Keine + + + Animation Settings + Animationseinstellungen + + + animation02 + animation02 + + + Invalid Id + Ungültige ID + + + %1 is an invalid id. + %1 ist keine gültige ID. + + + %1 already exists. + %1 existiert bereits. + + + Base State + Grundzustand + + + Loops: + Wiederholungen: + + + Animation ID: + ID der Animation: + + + Finished: + Beendet: + + + Ping pong + Ping Pong + + + Transition to state: + Übergang zu Status: + + + Running in base state + Läuft im Grundzustand + + + Start frame: + Erster Frame: + + + Duration: + Dauer: + + + End frame: + Letzter Frame: + + + Number of times the animation runs before it stops. + + + + Sets the animation to loop indefinitely. + + + + Name for the animation. + + + + State to activate when the animation finishes. + + + + Runs the animation backwards to the beginning when it reaches the end. + + + + Runs the animation automatically when the base state is active. + + + + First frame of the animation. + + + + Length of the animation in milliseconds. If you set a shorter duration than the number of frames, frames are left out from the end of the animation. + + + + Last frame of the animation. + + + + + QmlDesigner::TimelineForm + + Animation + Animation + + + Timeline Settings + Timeline-Einstellungen + + + Invalid Id + Ungültige ID + + + %1 is an invalid id. + %1 ist keine gültige ID. + + + %1 already exists. + %1 existiert bereits. + + + Expression binding: + Binding durch einen Ausdruck: + + + End frame: + Letzter Frame: + + + Expression binding + Binding durch einen Ausdruck + + + Timeline ID: + ID der Timeline: + + + Start frame: + Erster Frame: + + + Last frame of the timeline. + + + + First frame of the timeline. Negative numbers are allowed. + + + + To create an expression binding animation, delete all animations from this timeline. + + + + Name for the timeline. + + + + Sets the expression to bind the current keyframe to. + + + + + QmlDesigner::TimelineSettingsDialog + + Timeline Settings + Timeline-Einstellungen + + + Add Timeline + Timeline hinzufügen + + + Remove Timeline + Timeline entfernen + + + Add Animation + Animation hinzufügen + + + Remove Animation + Animation entfernen + + + No Timeline + Keine Timeline + + + No Animation + Keine Animation + + + + JsonTreeModelItem + + Null + Null + + + Bool + Bool + + + Double + Double + + + String + String + + + Array + Array + + + Object + Object + + + Undefined + Undefined + + + %n Items + + ein Element + %n Elemente + + + + + ClangDiagnosticConfig + + Project: %1 (based on %2) + Projekt: %1 (basierend auf %2) + + + Changes applied in Projects Mode > Clang Code Model + Änderungen in "Projekte"-Modus > Clang Codemodell + + + + CppEditor::Internal::CppIncludeHierarchyWidget + + No include hierarchy available + Keine Include-Hierarchie verfügbar + + + Synchronize with Editor + Mit Editor synchronisieren + + + + Ios::Internal + + Deploy on iOS + Deployment auf iOS + + + + LanguageClient::Client + + %1 for %2 + + + + uninitialized + + + + initialize requested + + + + initialized + + + + shutdown requested + + + + shutdown + + + + error + + + + + LanguageClient::StdIOClientInterface + + Cannot send data to unstarted server %1 + Kann keine Daten an den nicht gestarteten Server %1 schicken + ProjectExplorer::Internal::SshSettingsWidget @@ -43106,13 +44558,21 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Zum Ende - Loop - Wiederholen + Loop Playback + + + + Playback Speed + Auto Key Auto Key + + Easing Curve Editor + + Curve Editor Kurveneditor @@ -43144,94 +44604,13 @@ Die Dateien aus dem Quellverzeichnis des Android-Pakets werden in das Verzeichni Add Timeline Timeline hinzufügen - - - QmlPreview::Internal::QmlPreviewPlugin - QML Preview - QML-Vorschau + This file does not contain a timeline. <br><br>To create an animation, add a timeline by clicking the + button. + - Preview File - Datei in Vorschau anzeigen - - - - RemoteLinux - - Key Deployment - Schlüssel-Deployment - - - We recommend that you log into your device using public key authentication. -If your device is already set up for this, you do not have to do anything here. -Otherwise, please deploy the public key for the private key with which to connect in the future. -If you do not have a private key yet, you can also create one here. - Wir empfehlen Ihnen, sich per Public Key-Authentifizierung mit Ihrem Gerät zu verbinden. -Wenn dies bereits auf Ihrem Gerät eingerichtet ist, müssen Sie nichts weiter tun. -Wenn nicht, übertragen Sie bitte den öffentlichen Schlüssel, der zu dem privaten Schlüssel gehört, der verwendet werden soll. -Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen erzeugen. - - - Choose a Private Key File - Datei mit privatem Schlüssel auswählen - - - Deploy Public Key - Öffentlichen Schlüssel übertragen - - - Create New Key Pair - Neues Schlüsselpaar erzeugen - - - Private key file: - Private Schlüsseldatei: - - - - RemoteLinux - - X11 Forwarding - X11-Weiterleitung - - - Forward to local display - Auf lokalen Bildschirm weiterleiten - - - - RemoteLinux - - Failed to create remote directories: %1 - Entfernte Verzeichnisse konnten nicht erstellt werden: %1 - - - rsync failed to start: %1 - rsync konnte nicht gestartet werden: %1 - - - rsync crashed. - rsync ist abgestürzt. - - - rsync failed with exit code %1. - rsync scheiterte mit dem Rückgabewert %1. - - - - RemoteLinux - - Flags: - Optionen: - - - Ignore missing files: - Fehlende Dateien ignorieren: - - - Deploy files via rsync - Dateien mittels rsync übertragen + To edit the timeline settings, click + @@ -43244,119 +44623,9 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Highlighter updates: Aktualisierungen der Syntaxhervorhebung: - - - Welcome - Would you like to take a quick UI tour? This tour highlights important user interface elements and shows how they are used. To take the tour later, select Help > UI Tour. - Wollen Sie sich kurz die Oberfläche vorführen lassen? Dabei wird gezeigt, wo die wichtigsten Bedienelemente sind und wie man sie benutzt. Sie können die Vorführung auch später über "Hilfe" > "Oberfläche vorführen" starten. - - - Take UI Tour - Oberfläche vorführen - - - Mode Selector - Moduswahl - - - Select different modes depending on the task at hand. - Wählen Sie verschiedene Modi abhängig von der zu erledigenden Aufgabe. - - - <p style="margin-top: 30px"><table><tr><td style="padding-right: 20px">Welcome:</td><td>Open examples, tutorials, and recent sessions and projects.</td></tr><tr><td>Edit:</td><td>Work with code and navigate your project.</td></tr><tr><td>Design:</td><td>Work with UI designs for Qt Widgets or Qt Quick.</td></tr><tr><td>Debug:</td><td>Analyze your application with a debugger or other analyzers.</td></tr><tr><td>Projects:</td><td>Manage project settings.</td></tr><tr><td>Help:</td><td>Browse the help database.</td></tr></table></p> - <p style="margin-top: 30px"><table><tr><td style="padding-right: 20px">Willkommen:</td><td>Beispiele, Anleitungen, sowie kürzlich verwendete Sitzungen und Projekte öffnen.</td></tr><tr><td>Editieren:</td><td>Am Quelltext arbeiten und im Projekt navigieren.</td></tr><tr><td>Design:</td><td>Mit Oberflächendesigns für Qt Widgets oder Qt Quick arbeiten.</td></tr><tr><td>Debug:</td><td>Ihre Anwendung mit einem Debugger oder anderen Werkzeugen analysieren.</td></tr><tr><td>Projekte:</td><td>Projekteinstellungen verwalten.</td></tr><tr><td>Hilfe:</td><td>Die Hilfedatenbank durchsehen.</td></tr></table></p> - - - Kit Selector - Kit-Auswahl - - - Select the active project or project configuration. - Wählen Sie das aktive Projekt oder die aktive Projektkonfiguration. - - - Run Button - "Ausführen"-Schaltfläche - - - Run the active project. By default this builds the project first. - Führen Sie das aktive Projekt aus. Wenn nicht anders eingestellt, wird das Projekt zunächst erstellt. - - - Debug Button - "Debug"-Schaltfläche - - - Run the active project in a debugger. - Führen Sie das aktive Projekt in einem Debugger aus. - - - Build Button - "Erstellen"-Schaltfläche - - - Build the active project. - Erstellen Sie das aktive Projekt. - - - Locator - Locator - - - Type here to open a file from any open project. - Tippen Sie hier, um Dateien aus den offenen Projekten zu öffnen. - - - Or:<ul><li>type <code>c&lt;space&gt;&lt;pattern&gt;</code> to jump to a class definition</li><li>type <code>f&lt;space&gt;&lt;pattern&gt;</code> to open a file from the file system</li><li>click on the magnifier icon for a complete list of possible options</li></ul> - Oder:<ul><li>Tippen Sie <code>c&lt;Leerzeichen&gt;&lt;Suchmuster&gt;</code>, um eine Klassendefinition zu öffnen</li><li>Tippen Sie <code>f&lt;Leerzeichen&gt;&lt;Suchmuster&gt;</code>, um eine Datei aus dem Dateisystem zu öffnen</li><li>Klicken Sie auf das Lupensymbol, um eine vollständige Liste der Möglichkeiten anzuzeigen.</li></ul> - - - Output Panes - Ausgabebereiche - - - Find compile and application output here, as well as a list of configuration and build issues, and the panel for global searches. - Hier werden die Ausgaben der Kompilierung und Ausführung, eine Liste von Konfigurations- und Kompilierungsproblemen sowie globale Suchergebnisse angezeigt. - - - Progress Indicator - Fortschrittsanzeige - - - Progress information about running tasks is shown here. - Hier wird der Fortschritt laufender Aufgaben angezeigt. - - - Escape to Editor - Zurück zum Editor - - - Pressing the Escape key brings you back to the editor. Press it multiple times to also hide output panes and context help, giving the editor more space. - Wenn Sie die "Escape"-Taste betätigen, kommen Sie zurück zum Editor. Betätigen Sie sie mehrmals, um auch Ausgabebereiche sowie Kontexthilfe auszublenden und dem Editor mehr Platz zu geben. - - - The End - Ende - - - You have now completed the UI tour. To learn more about the highlighted controls, see <a style="color: #41CD52" href="qthelp://org.qt-project.qtcreator/doc/creator-quick-tour.html">User Interface</a>. - Die Vorführung der Oberfläche endet hier. Unter <a style="color: #41CD52" href="qthelp://org.qt-project.qtcreator/doc/creator-quick-tour.html">User Interface</a> können Sie mehr erfahren. - - - UI Introduction %1/%2 > - Vorführung der Oberfläche %1/%2 > - - - UI Tour - Oberfläche vorführen - - - - PerfProfiler - - Failed to transfer Perf data to perfparser. - Perf-Daten konnten nicht zum perfparser übertragen werden. + Highlighter updates: starting + Aktualisierungen der Syntaxhervorhebung: startet @@ -43389,241 +44658,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Farbe zurücksetzen - - PerfProfiler - - Could not start device process. - Der Prozess auf dem Gerät konnte nicht gestartet werden. - - - Perf Process Failed to Start - Der Perf-Prozess konnte nicht gestartet werden - - - Make sure that you are running a recent Linux kernel and that the "perf" utility is available. - Stellen Sie sicher, dass Sie einen aktuellen Linux-Kernel verwenden und das Programm "perf" verfügbar ist. - - - Performance Analyzer Options - Einstellungen zur Leistungsanalyse - - - Load perf.data File - Datei perf.data laden - - - Load Trace File - Trace-Datei laden - - - Save Trace File - Trace-Datei speichern - - - Limit to Range Selected in Timeline - Auf in der Zeitleiste markierten Bereich einschränken - - - Show Full Range - Ganzen Bereich anzeigen - - - Create Memory Trace Points - Trace Points für Speicher-Profiling erzeugen - - - Create trace points for memory profiling on the target device. - Trace Points für Speicher-Profiling auf dem Gerät erzeugen. - - - Performance Analyzer - Leistungsanalyse - - - Finds performance bottlenecks. - Findet Leistungsengpässe. - - - Timeline - Zeitleiste - - - Statistics - Statistik - - - Flame Graph - Flame Graph - - - Discard data. - Daten verwerfen. - - - Limit to Selected Range - Auf markierten Bereich einschränken - - - Reset Zoom - Vergrößerung zurücksetzen - - - Copy Table - Tabelle kopieren - - - Copy Row - Zeile kopieren - - - Reset Flame Graph - Flame Graph zurücksetzen - - - No Data Loaded - Keine Daten geladen - - - A performance analysis is still in progress. - Eine Leistungsanalyse läuft noch. - - - Start a performance analysis. - Eine Leistungsanalyse beginnen. - - - Enable All - Alle aktivieren - - - Disable All - Alle deaktivieren - - - Show all addresses. - Alle Adressen anzeigen. - - - Aggregate by functions. - Nach Funktionen zusammenfassen. - - - Stop collecting profile data. - Aufzeichnen von Profiling-Daten beenden. - - - Collect profile data. - Profiling-Daten aufzeichnen. - - - Recorded: %1.%2s - Aufgezeichnet: %1,%2s - - - Processing delay: %1.%2s - Verarbeitungsverzögerung: %1,%2s - - - Thread started - Thread gestartet - - - Thread ended - Thread beendet - - - Samples lost - Samples verloren - - - Invalid - Ungültig - - - Failed to replay Perf events from stash file. - Perf-Ereignisse aus der Stash-Datei konnten nicht wieder abgespielt werden. - - - Loading Trace Data - Lade Trace-Daten - - - Saving Trace Data - Speichere Trace-Daten - - - Performance Analyzer Settings - Einstellungen zur Leistungsanalyse - - - sample collected - Sample aufgezeichnet - - - Details - Details - - - Timestamp - Zeitstempel - - - Guessed - Geschätzt - - - System - System - - - Name - Name - - - Resource Usage - Ressourcenverbrauch - - - Resource Change - Änderung der Ressourcen - - - thread started - Thread gestartet - - - thread ended - Thread beendet - - - lost sample - Sample verloren - - - Duration - Dauer - - - (guessed from context) - (aus dem Kontext geschlossen) - - - Total Samples - Samples insgesamt - - - Total Unique Samples - Verschiedene Samples insgesamt - - - Resource Peak - Ressourcenspitzenwert - - - Resource Guesses - Ressourcenschätzungen - - ADS::WorkspaceDialog @@ -43658,19 +44692,17 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Export Export - - - Tracing - Edit note - Notiz bearbeiten + Workspace Manager + - - - BoostSettingsPage - Seed: - Startwert: + Restore last workspace on startup + + + + <a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-workspaces.html">What is a Workspace?</a> + @@ -43680,12 +44712,12 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Weitere Informationen finden Sie auf der <a href="https://github.com/KDE/clazy">Homepage von Clazy</a>. - Topic Filter - Themenfilter + Filters + Filter - Reset to All - Auf alle zurücksetzen + Reset Topic Filter + Checks @@ -43695,6 +44727,11 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e When enabling a level explicitly, also enable lower levels (Clazy semantic). Wenn Sie eine Stufe explizit aktivieren, auch die niedrigeren Stufen aktivieren (Clazy-Semantik). + + Could not query the supported checks from the clazy-standalone executable. +Set a valid executable first. + + Enable lower levels automatically Niedrigere Stufen automatisch aktivieren @@ -43706,6 +44743,22 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Filter Diagnostics Meldungen filtern + + Select All + + + + Select All with Fixits + + + + Clear Selection + + + + Select the diagnostics to display. + + ClangTools::Internal::RunSettingsWidget @@ -43713,6 +44766,14 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Build the project before analysis Projekt vor der Analyse erstellen + + Analyze open files + + + + Run Options + + Parallel jobs: Parallele Jobs: @@ -43732,6 +44793,11 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Edit Checks as String... Prüfungen als Zeichenkette bearbeiten... + + Could not query the supported checks from the clang-tidy executable. +Set a valid executable first. + + Core::Internal::UrlFilterOptions @@ -43747,6 +44813,12 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Add Hinzufügen + + Add "%1" placeholder for the query string. +Double-click to edit item. + Fügen Sie den Platzhalter "%1" für den Suchtext hinzu. +Doppelklicken Sie einen Eintrag um ihn zu ändern. + Remove Entfernen @@ -43760,84 +44832,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Nach unten - - Designer - - &Class name: - &Klassenname: - - - &Base class: - &Basisklasse: - - - &Type information: - &Typinformation: - - - None - Keine - - - Inherits QObject - Erbt von Klasse QObject - - - Inherits QWidget - Erbt von Klasse QWidget - - - Inherits QDeclarativeItem - Qt Quick 1 - Erbt von Klasse QDeclarativeItem - Qt Quick 1 - - - Inherits QQuickItem - Qt Quick 2 - Erbt von Klasse QQuickItem - Qt Quick 2 - - - Based on QSharedData - Basierend auf QSharedData - - - &Header file: - &Header-Datei: - - - &Source file: - &Quelldatei: - - - &Form file: - &Form-Datei: - - - &Path: - &Pfad: - - - Invalid header file name: "%1" - Ungültiger Header-Dateiname: "%1" - - - Invalid source file name: "%1" - Ungültiger Quelldateiname: "%1" - - - Invalid form file name: "%1" - Ungültiger Form-Dateiname: "%1" - - - - Nim - - Arguments: - Argumente: - - - Reset to Default - Auf Vorgabe zurücksetzen - - QmlDesigner::AnnotationCommentTab @@ -43856,8 +44850,8 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e QmlDesigner::AnnotationEditorDialog - Annotation - Annotation + Annotation Editor + @@ -43866,6 +44860,26 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Import Import + + Select import options and press "Import" to import the following files: + + + + Locate 3D Asset "%1" + + + + %1 options + + + + No options available for this type. + + + + No simple options available for this type. + + Cancel Abbrechen @@ -43874,16 +44888,68 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Close Schließen + + Import interrupted. + + + + Import done. + + + + Canceling import. + + + + Hide Advanced Options + + + + Asset Import + + + + Import Options + + + + Show All Options + + Welcome_splash - Qt Design Studio - Qt Design Studio + Community Edition + - % - % + Enterprise Edition + + + + Professional Edition + + + + Before we let you move on to your wonderful designs, help us make Qt Design Studio even better by letting us know how you're using it. To do this, we would like to turn on automatic collection of pseudonymized Analytics and Crash Report Data. + + + + Turn Off + + + + Turn On + + + + Learn More + + + + Qt Design Studio + Qt Design Studio @@ -43920,6 +44986,54 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Help Hilfe + + Community + + + + Blog + + + + Community Edition + + + + Continue + Fortsetzen + + + Start Download + + + + Browse + + + + Folder + + + + Cancel + Abbrechen + + + Open + Öffnen + + + Details + + + + Finish + + + + Download failed + + ExtendedFunctionLogic @@ -43942,6 +45056,26 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e GradientPresetList + + Gradient Picker + + + + System Presets + + + + User Presets + + + + Delete preset? + + + + Are you sure you want to delete this preset? + + Close Schließen @@ -43965,25 +45099,73 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Running Läuft + + Whether the animation is running and/or paused. + + + + Loops + + + + Number of times the animation should play. + + Duration Dauer + + Duration of the animation in milliseconds. + + + + Run to end + + + + Runs the animation to completion when it is stopped. + + + + Easing curve + + + + Defines a custom easing curve. + + AnimationTargetSection + + Animation Targets + + Target Ziel + + Target to animate the properties of. + + Property Eigenschaft + + Property to animate. + + Properties Eigenschaften + + Properties to animate. + + LayerSection @@ -43991,18 +45173,90 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Enabled Aktiviert + + Whether the component is layered or not. + + + + Sampler name + + + + Name of the effect's source texture property. + + + + Allows requesting multisampled rendering in the layer. + + + + Effect + + + + Applies the effect to this layer. + + Format Format + + Internal OpenGL format of the texture. + + + + Texture size + + + + Requested pixel size of the layer's texture. + + + + W + width + The width of the object + + + + H + height + The height of the object + H + + + Texture mirroring + + + + Sets how the generated OpenGL texture should be mirrored. + + + + OpenGL wrap modes associated with the texture. + + Mipmap MIP Map + + Transforms the layer smoothly. + + Samples Samples + + Layer + + + + Generates mipmaps for the texture. + + Smooth Glatt @@ -44014,21 +45268,41 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e NumberAnimationSpecifics + + Number Animation + + From Von + + Start value for the animation. + + To Bis + + End value for the animation. + + PropertyActionSpecifics + + Property Action + + Value Wert + + Value of the property. + + ADS::DockWidgetTab @@ -44047,10 +45321,18 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e ADS::WorkspaceModel + + Workspace + + Last Modified Zuletzt geändert + + New Workspace Name + + &Create &Erstellen @@ -44067,6 +45349,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Clone and &Open Klonen und ö&ffnen + + Rename Workspace + + &Rename &Umbenennen @@ -44078,6 +45364,34 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e ExtensionSystem::Internal::PluginManagerPrivate + + %1 > About Plugins + %1 > Plugins + + + Help > About Plugins + Hilfe > Plugins + + + If you temporarily disable %1, the following plugins that depend on it are also disabled: %2. + + + Wenn Sie %1 vorübergehend deaktivieren, werden die folgenden Plugins, die davon abhängen, auch deaktiviert: %2. + + + + + Disable plugins permanently in %1. + Sie können Plugins in %1 auch dauerhaft deaktivieren. + + + The last time you started %1, it seems to have closed because of a problem with the "%2" plugin. Temporarily disable the plugin? + %1 scheint sich beim letzten Start wegen eines Problems mit dem Plugin "%2" selbst geschlossen zu haben. Wollen Sie das Plugin vorübergehend deaktivieren? + + + Disable Plugin + Plugin deaktivieren + Continue Fortsetzen @@ -44118,432 +45432,48 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e QWidget - Images (*.png *.jpg *.webp *.svg) - Bilder (*.png *.jpg *.webp *.svg) - - - - Android - - Select the .pro file for which you want to create the Android template files. - Wählen Sie die .pro-Datei, für die Sie die Android-Vorlagendateien erstellen wollen. - - - .pro file: - .pro-Datei: - - - Select a .pro File - .pro-Datei wählen - - - - Autotest - - Testing - Testen - - - &Tests - &Tests - - - Run &All Tests - Starte &alle Tests - - - Run All Tests - Alle Tests starten - - - Ctrl+Meta+T, Ctrl+Meta+A - Ctrl+Meta+T, Ctrl+Meta+A - - - Alt+Shift+T,Alt+A - Alt+Shift+T,Alt+A - - - &Run Selected Tests - Sta&rte ausgewählte Tests - - - Run Selected Tests - Ausgewählte Tests starten - - - Ctrl+Meta+T, Ctrl+Meta+R - Ctrl+Meta+T, Ctrl+Meta+R - - - Alt+Shift+T,Alt+R - Alt+Shift+T,Alt+R - - - Run Tests for Current &File - Tests für aktuelle &Datei ausführen - - - Run Tests for Current File - Tests für aktuelle Datei ausführen - - - Ctrl+Meta+T, Ctrl+Meta+F - Ctrl+Meta+T, Ctrl+Meta+F - - - Alt+Shift+T,Alt+F - Alt+Shift+T,Alt+F - - - Re&scan Tests - Tests neu durch&suchen - - - Ctrl+Meta+T, Ctrl+Meta+S - Ctrl+Meta+T, Ctrl+Meta+S - - - Alt+Shift+T,Alt+S - Alt+Shift+T,Alt+S - - - Selected test was not found (%1). - Ausgewählter Test wurde nicht gefunden (%1). - - - - Autotest - - Boost Test - Boost Test - - - - Autotest - - Executing test suite %1 - Führe Test-Suite %1 aus - - - Test execution took %1 - Testausführung benötigte %1 - - - - Autotest - - parameterized - parametrisiert - - - fixture - festgelegt - - - templated - aus Vorlage - - - - Autotest - - Global - Global - - - Custom - Benutzerdefiniert - - - Test executable crashed. - Die ausführbare Datei des Tests ist abgestürzt. - - - - Android - - Autotools Manager - Autotools-Verwaltung - - - - BareMetal - - Manage... - Verwalten... - - - None - Keine - - - Not recognized - Nicht erkannt - - - GDB - GDB - - - Name - Name - - - Type - Typ - - - Duplicate Providers Detected - Mehrfach auftretende Provider - - - The following providers were already configured:<br>&nbsp;%1<br>They were not configured again. - Die folgenden Provider wurden bereits konfiguriert:<br>&nbsp;%1<br>Sie wurden nicht noch einmal konfiguriert. - - - Add - Hinzufügen - - - Clone - Klonen - - - Remove - Entfernen - - - Debug Server Providers - Debug-Server-Provider - - - Clone of %1 - Kopie von %1 - - - EBlink - EBlink - - - JLink - JLink - - - OpenOCD - OpenOCD - - - ST-LINK Utility - ST-LINK-Werkzeug - - - Script file: - Skriptdatei: - - - Type: - Typ: - - - Speed: - Geschwindigkeit: - - - SWD - SWD - - - JTAG - JTAG - - - JLink GDB Server (JLinkGDBServerCL.exe) - JLink GDB-Server (JLinkGDBServerCL.exe) - - - JLink GDB Server (JLinkGDBServer) - JLink GDB-Server (JLinkGDBServer) - - - Default - Vorgabe - - - IP Address - IP-Adresse - - - Speed - Geschwindigkeit - - - kHz - kHz - - - Device: - Geräte: - - - uVision Simulator - uVision Simulator - - - uVision St-Link - uVision St-Link - - - Port: - Port: - - - 9MHz - 9MHz - - - 4.5MHz - 4,5MHz - - - 2.25MHz - 2,25MHz - - - 1.12MHz - 1,12MHz - - - 560kHz - 560kHz - - - 280kHz - 280kHz - - - 140kHz - 140kHz - - - 4MHz - 4MHz - - - 1.8MHz - 1,8MHz - - - 950kHz - 950kHz - - - 480kHz - 480kHz - - - 240kHz - 240kHz - - - 125kHz - 125kHz - - - 100kHz - 100kHz - - - 50kHz - 50kHz - - - 25kHz - 25kHz - - - 15kHz - 15kHz - - - 5kHz - 5kHz - - - Version - Version - - - Vendor - Anbieter - - - ID - ID - - - Start - Anfang - - - Size - Größe - - - Vendor: - Anbieter: - - - Package: - Paket: - - - Description: - Beschreibung: - - - Memory: - Speicher: - - - Select Peripheral Description File - Wählen Sie eine Peripherie-Beschreibungsdatei - - - Path - Pfad - - - &Compiler path: - &Compiler-Pfad: - - - Platform codegen flags: - Plattformspezifische Optionen für codegen: - - - &ABI: - &ABI: - - - Enter the name of the debugger server provider. - Geben Sie den Namen des Debug-Server-Providers ein. - - - SDCC %1 (%2, %3) - SDCC %1 (%2, %3) - - - SDCC - SDCC + Images (*.png *.jpg *.jpeg) + Beautifier::Internal::ArtisticStyle + + Options + Einstellungen + + + Use file *.astylerc defined in project files + Verwende Datei *.astylerc wie in Projektdateien definiert + + + Use specific config file: + Bestimmte Konfigurationsdatei verwenden: + AStyle (*.astylerc) AStyle (*.astylerc) + + Use file .astylerc or astylerc in HOME + Verwende .astylerc oder astylerc in HOME + + + Use customized style: + Verwende angepassten Stil: + + + Configuration + Konfiguration + + + Artistic Style command: + Ausführbare Datei von Artistic Style: + + + Restrict to MIME types: + Auf MIME-Typen beschränken: + Artistic Style Artistic Style @@ -44555,14 +45485,66 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Beautifier::Internal::ClangFormat + + Options + Einstellungen + + + Use customized style: + Verwende angepassten Stil: + + + Use predefined style: + Verwende vorgegebenen Stil: + + + Fallback style: + Fallback-Stil: + + + Configuration + Konfiguration + + + Clang Format command: + Ausführbare Datei von Clang Format: + + + Restrict to MIME types: + Auf MIME-Typen beschränken: + Clang Format Clang Format + + Use file uncrustify.cfg defined in project files + Verwende Datei uncrustify.cfg wie in Projektdateien definiert + + + Use file specific uncrustify.cfg + Dateispezifische uncrustify.cfg verwenden + Uncrustify file (*.cfg) Uncrustify-Datei (*.cfg) + + Use file uncrustify.cfg in HOME + Verwende uncrustify.cfg in HOME + + + Format entire file if no text was selected + Formatiere die ganze Datei falls kein Text selektiert ist + + + For action Format Selected Text + Für die Aktion "Formatiere selektierten Text" + + + Uncrustify command: + Ausführbare Datei von Uncrustify: + Uncrustify Uncrustify @@ -44578,14 +45560,70 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Qdb::Internal::QdbDevice + + Starting command "%1" on device "%2". + + + + Command failed on device "%1": %2 + + + + Command failed on device "%1". + + + + stdout was: "%1" + + + + stderr was: "%1" + + + + Commands on device "%1" finished successfully. + + + + Boot2Qt Device + + + + Reboot Device + + + + Restore Default App + + WizardPage WizardPage + + Device Settings + + + + A short, free-text description + + + + Host name or IP address + + Device name: Gerätename: + + Device address: + + + + Boot2Qt Network Device Setup + + Qdb::Internal::QdbMakeDefaultAppService @@ -44593,9 +45631,21 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Remote process failed: %1 Der entfernte Prozess schlug fehl: %1 + + Application set as the default one. + + + + Reset the default application. + + Qdb::Internal::QdbRunConfiguration + + Full command line: + + Executable on device: Ausführbare Datei auf Mobilgerät: @@ -44608,36 +45658,13 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Executable on host: Ausführbare Datei auf Hostrechner: - - - ClangPchManager::PreprocessorMacroWidget - Macro already exists. - Makro existiert bereits. + Run on Boot2Qt Device + - Ed&it - Bearbe&iten - - - &Add - Hinzu&fügen - - - &Reset - Zu&rücksetzen - - - &Unset - &Aufheben - - - Unset <a href="%1"><b>%1</b></a> - <a href="%1"><b>%1</b></a> aufheben - - - Set <a href="%1"><b>%1</b></a> to <b>%2</b> - <b>%2</b> an <a href="%1"><b>%1</b></a> zuweisen + The remote executable must be set in order to run on a Boot2Qt device. + @@ -44656,6 +45683,14 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e ClangTools::Internal::ClangTool + + Analyze Project... + + + + Analyze Current File + + Go to previous diagnostic. Gehe zum vorherigen Eintrag. @@ -44664,10 +45699,22 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Go to next diagnostic. Gehe zum nächsten Eintrag. + + Load diagnostics from YAML files exported with "-export-fixes". + + Clear Löschen + + Expand All + + + + Collapse All + + Filter Diagnostics Meldungen filtern @@ -44708,21 +45755,161 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Clang-Tidy and Clazy tool stopped by user. Der Benutzer hat Clang-Tidy und Clazy abgebrochen. + + Cannot analyze current file: No files open. + + + + Cannot analyze current file: "%1" is not a known source file. + + + + Select YAML Files with Diagnostics + + + + YAML Files (*.yml *.yaml);;All Files (*) + + + + Error Loading Diagnostics + + + + Set a valid Clang-Tidy executable. + + + + Set a valid Clazy-Standalone executable. + + + + Project "%1" is not a C/C++ project. + + + + Open a C/C++ project to start analyzing. + + + + Failed to build the project. + + + + Failed to start the analyzer. + + + + All Files + + + + Opened Files + + + + Edited Files + + + + Failed to analyze %n file(s). + + + + + + + Analyzing... + + + + Analyzing... %1 of %n file(s) processed. + + + + + + + Analysis stopped by user. + + + + Finished processing %n file(s). + + + + + + + Diagnostics imported. + + + + %1 diagnostics. %2 fixits, %3 selected. + + + + No diagnostics. + + + + In general, the project should be built before starting the analysis to ensure that the code to analyze is valid.<br/><br/>Building the project might also run code generators that update the source files as necessary. + + + + Info About Build the Project Before Analysis + + ClangTools::Internal::ClangToolRunWorker + + Failed to build the project. + + + + No code model data available for project. + + The project configuration changed since the start of the %1. Please re-run with current configuration. Die Projektkonfiguration hat sich seit dem Start von %1 verändert. Bitte mit dieser Konfiguration neu starten. + + Failed to create temporary directory: %1. + + + + Running %1 on %2 with configuration "%3". + + Analyzing Analysiere + + Analyzing "%1" [%2]. + + + + Failed to start runner "%1". + + Failed to analyze "%1": %2 Analyse von "%1" fehlgeschlagen: %2 + + Error: Failed to analyze %n files. + + + + + + + Note: You might need to build the project to generate or update source files. To build automatically, enable "Build the project before analysis". + + %1 finished: Processed %2 files successfully, %3 failed. %1 beendet: %2 Dateien erfolgreich verarbeitet, %3 fehlgeschlagen. @@ -44768,6 +45955,14 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Checks Prüfungen + + Clang-Tidy Checks + + + + Clazy Checks + + Edit Checks as String... Prüfungen als Zeichenkette bearbeiten... @@ -44791,484 +45986,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e - - ClearCase - - Editing Derived Object: %1 - Bearbeite abgeleitetes Objekt: %1 - - - C&learCase - C&learCase - - - Check Out... - Auschecken... - - - Check &Out "%1"... - "%1" &auschecken... - - - Meta+L,Meta+O - Meta+L,Meta+O - - - Alt+L,Alt+O - Alt+L,Alt+O - - - Check &In... - &Einchecken... - - - Check &In "%1"... - "%1" &einchecken... - - - Meta+L,Meta+I - Meta+L,Meta+I - - - Alt+L,Alt+I - Alt+L,Alt+I - - - Undo Check Out - Auschecken rückgängig machen - - - &Undo Check Out "%1" - A&uschecken von "%1" rückgängig machen - - - Meta+L,Meta+U - Meta+L,Meta+U - - - Alt+L,Alt+U - Alt+L,Alt+U - - - Undo Hijack - Hijack rückgängig machen - - - Undo Hi&jack "%1" - Hi&jack von "%1" rückgängig machen - - - Meta+L,Meta+R - Meta+L,Meta+R - - - Alt+L,Alt+R - Alt+L,Alt+R - - - Diff Current File - Diff für Datei - - - &Diff "%1" - &Diff für "%1" - - - Meta+L,Meta+D - Meta+L,Meta+D - - - Alt+L,Alt+D - Alt+L,Alt+D - - - History Current File - History für Datei - - - &History "%1" - &History von "%1" - - - Meta+L,Meta+H - Meta+L,Meta+H - - - Alt+L,Alt+H - Alt+L,Alt+H - - - Annotate Current File - Annotation für Datei - - - &Annotate "%1" - &Annotation für "%1" - - - Meta+L,Meta+A - Meta+L,Meta+A - - - Alt+L,Alt+A - Alt+L,Alt+A - - - Add File... - Datei hinzufügen... - - - Add File "%1" - Datei "%1" hinzufügen - - - Diff A&ctivity... - Diff der A&ktivität... - - - Ch&eck In Activity - &Aktivität einchecken - - - Chec&k In Activity "%1"... - &Aktivität "%1" einchecken... - - - Update Index - Index aktualisieren - - - Update View - Ansicht aktualisieren - - - U&pdate View "%1" - &Ansicht "%1" aktualisieren - - - Check In All &Files... - Alle &Dateien einchecken... - - - Meta+L,Meta+F - Meta+L,Meta+F - - - Alt+L,Alt+F - Alt+L,Alt+F - - - View &Status - &Status anzeigen - - - Meta+L,Meta+S - Meta+L,Meta+S - - - Alt+L,Alt+S - Alt+L,Alt+S - - - Check In - Einchecken - - - Do you want to undo the check out of "%1"? - Möchten Sie das Auschecken von "%1" rückgängig machen? - - - Undo Hijack File - Hijack von Datei rückgängig machen - - - Do you want to undo hijack of "%1"? - Möchten Sie den Hijack von "%1" rückgängig machen? - - - External diff is required to compare multiple files. - Um mehrere Dateien zu vergleichen, ist ein externer Diff erforderlich. - - - Enter Activity - Aktivität eingeben - - - Activity Name - Name der Aktivität - - - Check In Activity - Aktivität einchecken - - - Another check in is currently being executed. - Es läuft bereits ein Eincheck-Vorgang. - - - There are no modified files. - Es gibt keine geänderten Dateien. - - - No ClearCase executable specified. - Es wurde keine ausführbare ClearCase-Datei angegeben. - - - ClearCase Checkout - ClearCase Auschecken - - - File is already checked out. - Die Datei ist bereits ausgecheckt. - - - Set current activity failed: %1 - Das Setzen der aktuellen Aktivität schlug fehl: %1 - - - Enter &comment: - &Kommentar eingeben: - - - ClearCase Add File %1 - ClearCase Datei %1 hinzufügen - - - ClearCase Remove Element %1 - ClearCase Element %1 entfernen - - - This operation is irreversible. Are you sure? - Dieser Vorgang kann nicht rückgängig gemacht werden. Sind Sie sicher? - - - ClearCase Remove File %1 - ClearCase Datei %1 löschen - - - ClearCase Rename File %1 -> %2 - ClearCase Datei %1 -> %2 umbenennen - - - Activity Headline - Titel der Aktivität - - - Enter activity headline - Geben Sie den Titel der Aktivität ein - - - Updating ClearCase Index - Aktualisiere ClearCase Index - - - Check &Out - Check&out - - - &Hijack - &Hijack - - - - CMakeProjectManager - - Scan "%1" project tree - Durchsuche "%1"-Projektbaum - - - The kit needs to define a CMake tool to parse this project. - Das Kit muss ein CMake-Werkzeug festlegen, um dieses Projekt auszuwerten. - - - Apply configuration changes? - Konfigurationsänderungen anwenden? - - - Failed to create build directory "%1". - Das Build-Verzeichnis "%1" konnte nicht erstellt werden. - - - Failed to create temporary directory "%1". - Das temporäre Verzeichnis "%1" konnte nicht erstellt werden. - - - CMakeCache.txt file not found. - Datei CMakeCache.txt nicht gefunden. - - - <No CMake Tool available> - <Kein CMake-Werkzeug verfügbar> - - - CMake Tool - CMake-Werkzeug - - - The CMake Tool to use when building a project with CMake.<br>This setting is ignored when using other build systems. - Das zum Erstellen eines Projektes mit CMake zu verwendende CMake-Werkzeug.<br>Diese Einstellung wird bei der Verwendung anderer Build-Systeme ignoriert. - - - Unconfigured - Nicht konfiguriert - - - Path to the cmake executable - Pfad zur ausführbaren Datei von cmake - - - Change... - Ändern... - - - %1 - %2, Platform: %3, Toolset: %4 - %1 - %2, Plattform: %3, Toolset: %4 - - - <none> - <leer> - - - CMake Generator - CMake-Generator - - - Generator: - Generator: - - - Extra generator: - Zusätzlicher Generator: - - - Platform: - Plattform: - - - Toolset: - Toolset: - - - CMake generator - CMake-Generator - - - CMake generator defines how a project is built when using CMake.<br>This setting is ignored when using other build systems. - Der CMake-Generator definiert, wie ein Projekt mit CMake gebaut wird.<br>Diese Einstellung wird von anderen Buildsystemen ignoriert. - - - CMake Tool is unconfigured, CMake generator will be ignored. - Das CMake-Tool ist nicht konfiguriert. Der CMake-Generator wird ignoriert. - - - CMake Tool does not support the configured generator. - Das CMake-Tool unterstützt den konfigurierten Generator nicht. - - - Platform is not supported by the selected CMake generator. - Der ausgewählte CMake-Generator unterstützt die Plattform nicht. - - - Toolset is not supported by the selected CMake generator. - Der ausgewählte CMake-Generator unterstützt das Toolset nicht. - - - <Use Default Generator> - <Benutze Standardgenerator> - - - Generator: %1<br>Extra generator: %2 - Generator: %1<br>Zusätzlicher Generator: %2 - - - Platform: %1 - Plattform: %1 - - - Toolset: %1 - Toolset: %1 - - - Edit CMake Configuration - CMake-Konfiguration bearbeiten - - - Enter one variable per line with the variable name separated from the variable value by "=".<br>You may provide a type hint by adding ":TYPE" before the "=". - Eine Variable pro Zeile eingeben, Name und Wert durch "=" trennen.<br>Ein Typhinweis kann mit ":TYPE" vor dem "=" angegeben werden. - - - CMake Configuration - CMake-Konfiguration - - - Default configuration passed to CMake when setting up a project. - Die Standardkonfiguration wird an CMake beim Anlegen eines Projekts übergeben. - - - CMake configuration has no path to qmake binary set, even though the kit has a valid Qt version. - Die CMake-Konfiguration hat keinen qmake-Pfad gesetzt, obwohl das Kit eine gültige Qt-Version hat. - - - CMake configuration has a path to a qmake binary set, even though the kit has no valid Qt version. - Die CMake-Konfiguration hat einen qmake-Pfad gesetzt, obwohl das Kit keine gültige Qt-Version hat. - - - CMake configuration has a path to a qmake binary set that does not match the qmake binary path configured in the Qt version. - Die CMake-Konfiguration hat einen qmake-Pfad gesetzt, der allerdings nicht mit dem qmake-Pfad der Qt-Version übereinstimmt. - - - CMake configuration has no CMAKE_PREFIX_PATH set that points to the kit Qt version. - Die CMake-Konfiguration hat keinen CMAKE_PREFIX_PATH gesetzt, der auf die Qt-Version des Kits verweist. - - - CMake configuration has no path to a C compiler set, even though the kit has a valid tool chain. - Die CMake-Konfiguration hat keinen C-Compiler gesetzt, obwohl das Kit eine gültige Toolchain hat. - - - CMake configuration has a path to a C compiler set, even though the kit has no valid tool chain. - Die CMake-Konfiguration hat einen C-Compiler gesetzt, obwohl das Kit keine gültige Toolchain hat. - - - CMake configuration has a path to a C compiler set that does not match the compiler path configured in the tool chain of the kit. - Die CMake-Konfiguration hat einen C-Compiler gesetzt, der nicht mit dem Compiler der Toolchain übereinstimmt, die vom Kit verwendet wird. - - - CMake configuration has no path to a C++ compiler set, even though the kit has a valid tool chain. - Die CMake-Konfiguration hat keinen C++-Compiler gesetzt, obwohl das Kit eine gültige Toolchain hat. - - - CMake configuration has a path to a C++ compiler set, even though the kit has no valid tool chain. - Die CMake-Konfiguration hat einen C++-Compiler gesetzt, obwohl das Kit keine gültige Toolchain hat. - - - CMake configuration has a path to a C++ compiler set that does not match the compiler path configured in the tool chain of the kit. - Die CMake-Konfiguration hat einen C++-Compiler gesetzt, der nicht mit dem Compiler der Toolchain übereinstimmt, die vom Kit verwendet wird. - - - Build CMake target - CMake-Ziel erstellen - - - Open CMake target - CMake-Ziel öffnen - - - Running %1 in %2. - Führe %1 in %2 aus. - - - Configuring "%1" - Konfiguriere "%1" - - - <Build Directory> - <Build-Verzeichnis> - - - <Other Locations> - <Andere Orte> - - CompilationDatabaseProjectManager::Internal::CompilationDbParser @@ -45280,54 +45997,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Werte Projekt "%1" aus - - Core::ExternalToolConfig - - Uncategorized - keine - - - Tools that will appear directly under the External Tools menu. - Werkzeuge, die direkt unter dem Menü "Extern" erscheinen. - - - New Category - Neue Kategorie - - - New Tool - Neues Werkzeug - - - This tool prints a line of useful text - Dieses Werkzeug gibt eine Zeile hilfreichen Texts aus - - - Useful text - Sample external tool text - Hilfreicher Text - - - Add Tool - Werkzeug hinzufügen - - - Add Category - Kategorie hinzufügen - - - PATH=C:\dev\bin;${PATH} - PATH=C:\dev\bin;${PATH} - - - PATH=/opt/bin:${PATH} - PATH=/opt/bin:${PATH} - - - External Tools - Externe Werkzeuge - - Core::RestartDialog @@ -45364,6 +46033,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Generic Directory Filter Allgemeiner Verzeichnisfilter + + Matches all files from a custom set of directories. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + Filtert alle Dateien aus vom Benutzer gewählten Pfaden. Fügen Sie "+<Zahl>" oder ":<Zahl>" an, um zur angegebenen Zeile zu springen. Fügen Sie noch einmal "+<Zahl>" oder ":<Zahl>" an, um auch zur angegebenen Spalte zu springen. + Select Directory Verzeichnis auswählen @@ -45409,40 +46082,13 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Case Sensitive Groß-/Kleinschreibung - - - Core::Internal::SystemSettings - Command line arguments used for "%1". - Kommandozeilenargumente für "%1". + Show Non-matching Lines + Zeige nicht übereinstimmende Zeilen - Command used for reverting diff chunks. - Kommando zum Zurücksetzen von einzelnen Änderungen in Diff-Anzeige. - - - Automatically creates temporary copies of modified files. If %1 is restarted after a crash or power failure, it asks whether to recover the auto-saved content. - Erstellt automatisch temporäre Kopien geänderter Dateien. Beim Neustart von %1 nach einem Absturz oder Stromausfall wird nachgefragt, ob der automatisch gesicherte Stand wiederhergestellt werden soll. - - - Case Sensitive (Default) - Groß-/Kleinschreibung beachten (Vorgabe) - - - Case Sensitive - Groß-/Kleinschreibung beachten - - - Case Insensitive (Default) - Groß-/Kleinschreibung ignorieren (Vorgabe) - - - Case Insensitive - Groß-/Kleinschreibung ignorieren - - - Variables - Variablen + Filter output... + Ausgabe filtern... @@ -45461,6 +46107,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Cppcheck::Internal::ManualRunDialog + + Cppcheck Run Configuration + + Analyze Analysieren @@ -45489,24 +46139,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Cppcheck... - - CppTools::ConfigsModel - - Built-in - Integriert - - - Custom - Benutzerdefiniert - - - - CppTools::Internal::CppCodeModelSettingsWidget - - Code Model - Codemodell - - CtfVisualizer @@ -45521,14 +46153,106 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Total Time Gesamtdauer + + Percentage + + + + Minimum Time + + + + Average Time + + + + Maximum Time + + + + Stack Level %1 + + Value Wert + + Min + + + + Max + + + + Start + + + + Wall Duration + + + + Unfinished + + + + true + + + + Thread %1 + + + + Categories + + Arguments Argumente + + Instant + + + + Scope + + + + global + + + + process + + + + thread + + + + Return Arguments + + + + Chrome Trace Format Viewer + + + + Load JSON File + + + + Restrict to Threads + + + + Timeline + + Reset Zoom Vergrößerung zurücksetzen @@ -45537,202 +46261,38 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Statistics Statistik - - - Debugger - Behavior - Verhalten + Load Chrome Trace Format File + - Use alternating row colors in debug views - Alternierende Farben für Zeilen in Debug-Ansichten benutzen + JSON File (*.json) + - Changes the font size in the debugger views when the font size in the main editor changes. - Passt die Schriftgröße der Debuggerfenster den Editoren an. + The file does not contain any trace data. + - Debugger font size follows main editor - Schriftgröße des Debuggers mit Editor synchronisieren + Loading CTF File + - Use tooltips in main editor while debugging - Beim Debuggen Tooltips im Haupteditor benutzen + CTF Visualizer + - Stopping and stepping in the debugger will automatically open views associated with the current location. - Das Anhalten oder die Ausführung von Einzelschritten im Debugger öffnet automatisch Anzeigen mit Quelltext oder Disassembler der betreffenden Stelle. + Cannot read the CTF file. + - Close temporary source views on debugger exit - Temporäre Quelltextanzeigen bei Beendigung des Debuggens schließen + The trace contains threads with stack depth > 512. +Do you want to display them anyway? + - Closes automatically opened source views when the debugger exits. - Schließt automatisch geöffnete Quelltextanzeigen, wenn der Debugger beendet wird. - - - Close temporary memory views on debugger exit - Temporäre Speicheranzeigen bei Beendigung des Debuggens schließen - - - Closes automatically opened memory views when the debugger exits. - Schließt automatisch geöffnete Speicheranzeigen, wenn der Debugger beendet wird. - - - Switch to previous mode on debugger exit - Beim Beenden des Debuggens den vorher aktiven Modus wiederherstellen - - - Bring %1 to foreground when application interrupts - %1 in den Vordergrund bringen, wenn die Anwendung stoppt - - - Shows QML object tree in Locals and Expressions when connected and not stepping. - QML-Objektbaum in Fenster "Lokale Variablen" anzeigen, wenn eine Verbindung besteht und kein Einzelschrittbetrieb vorliegt. - - - Show QML object tree - QML-Objektbaum anzeigen - - - Enables a full file path in breakpoints by default also for GDB. - Vollständiger Pfad für Haltepunkte als Vorgabe, auch bei GDB. - - - Set breakpoints using a full absolute path - Vollständiger Pfad für Haltepunkte als Vorgabe - - - Registers %1 for debugging crashed applications. - %1 als Debugger für abgestürzte Anwendungen registrieren. - - - Use %1 for post-mortem debugging - %1 als Post-Mortem-Debugger verwenden - - - Warn when debugging "Release" builds - Warnung beim Versuch des Debuggens von "Release"-Builds anzeigen - - - Shows a warning when starting the debugger on a binary with insufficient debug information. - Zeigt eine Warnung an, wenn der Debugger für eine ausführbare Datei mit unzureichenden Debug-Informationen gestartet wird. - - - Keep editor stationary when stepping - Editor bei Einzelschritten nicht bewegen - - - Scrolls the editor only when it is necessary to keep the current line in view, instead of keeping the next statement centered at all times. - Verschiebt den Editor nur, um die aktuelle Zeile sichtbar zu halten, anstatt immer den nächsten Ausdruck zu zentrieren. - - - Maximum stack depth: - Maximale Stack-Tiefe: - - - <unlimited> - <unbegrenzt> - - - Stop when %1() is called - Bei Aufruf von %1() anhalten - - - Always adds a breakpoint on the <i>%1()</i> function. - Fügt bei der Funktion <i>%1()</i> stets einen Haltepunkt ein. - - - - Debugger - - Type of Debugger Backend - Typ des Debugger-Backends - - - Unknown debugger version - Unbekannte Debuggerversion - - - Unknown debugger ABI - Unbekannte Debugger-ABI - - - None - Keine - - - The debugger to use for this kit. - Der für dieses Kit zu verwendende Debugger. - - - No debugger set up. - Es ist kein Debugger eingerichtet. - - - Debugger "%1" not found. - Der Debugger "%1" konnte nicht gefunden werden. - - - Debugger "%1" not executable. - Der Debugger "%1" ist nicht ausführbar. - - - The debugger location must be given as an absolute path (%1). - Der Pfad zum Debugger muss als absoluter Pfad angegeben werden (%1). - - - The ABI of the selected debugger does not match the toolchain ABI. - Die ABI des gewählten Debuggers passt nicht zur ABI der Toolchain. - - - Name of Debugger - Name des Debuggers - - - Unknown debugger - Unbekannter Debugger - - - Unknown debugger type - Unbekannter Debuggertyp - - - No Debugger - Kein Debugger - - - %1 Engine - %1-Engine - - - %1 <None> - %1 <keine> - - - %1 using "%2" - %1 unter Verwendung von "%2" - - - - Debugger - - N/A - N/A - - - Access - Zugriff - - - Format - Format - - - %1.%2 - %1.%2 + Chrome Trace Format Visualizer + @@ -45742,601 +46302,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Generische Verwaltung - - Git - - Diff - Diff - - - Show difference. - Änderung anzeigen. - - - Filter: - Filter: - - - Case Sensitive - Groß-/Kleinschreibung - - - &Copy "%1" - "%1" &Kopieren - - - &Describe Change %1 - Änderung %1 &beschreiben - - - Git Settings - Git-Einstellungen - - - &Git - &Git - - - Current &File - Aktuelle &Datei - - - Diff Current File - Diff für Datei - - - Diff of "%1" - Diff für "%1" - - - Meta+G,Meta+D - Meta+G,Meta+D - - - Alt+G,Alt+D - Alt+G,Alt+D - - - Log Current File - Log für Datei - - - Log of "%1" - Log für "%1" - - - Meta+G,Meta+L - Meta+G,Meta+L - - - Alt+G,Alt+L - Alt+G,Alt+L - - - Blame Current File - Blame für Datei - - - Blame for "%1" - Blame für "%1" - - - Meta+G,Meta+B - Meta+G,Meta+B - - - Alt+G,Alt+B - Alt+G,Alt+B - - - Stage File for Commit - Datei zu Commit hinzufügen (stage) - - - Stage "%1" for Commit - "%1" zu Commit hinzufügen (stage) - - - Meta+G,Meta+A - Meta+G,Meta+A - - - Alt+G,Alt+A - Alt+G,Alt+A - - - Unstage File from Commit - Datei aus Commit entfernen (unstage) - - - Unstage "%1" from Commit - "%1" aus Commit entfernen (unstage) - - - Undo Unstaged Changes - Nicht bereitgestellte Änderungen rückgängig machen (unstaged) - - - Undo Unstaged Changes for "%1" - Nicht bereitgestellte Änderungen in "%1" rückgängig machen (unstaged) - - - Undo Uncommitted Changes - Ausstehende Änderungen rückgängig machen - - - Undo Uncommitted Changes for "%1" - Ausstehende Änderungen in "%1" rückgängig machen - - - Meta+G,Meta+U - Meta+G,Meta+U - - - Alt+G,Alt+U - Alt+G,Alt+U - - - Current &Project - Aktuelles &Projekt - - - Diff Current Project - Diff für Projekt - - - Diff Project "%1" - Diff für Projekt "%1" - - - Meta+G,Meta+Shift+D - Meta+G,Meta+Shift+D - - - Alt+G,Alt+Shift+D - Alt+G,Alt+Shift+D - - - Log Project - Log für Projekt - - - Log Project "%1" - Log für Projekt "%1" - - - Meta+G,Meta+K - Meta+G,Meta+K - - - Alt+G,Alt+K - Alt+G,Alt+K - - - Clean Project... - Projekt bereinigen... - - - Clean Project "%1"... - Projekt "%1" bereinigen... - - - &Local Repository - &Lokales Repository - - - Log - Log - - - Reflog - Reflog - - - Clean... - Repository bereinigen... - - - Commit... - Commit... - - - Meta+G,Meta+C - Meta+G,Meta+C - - - Alt+G,Alt+C - Alt+G,Alt+C - - - Amend Last Commit... - Letzten Commit ändern... - - - Fixup Previous Commit... - Vorangehenden Commit verbessern... - - - Reset... - Rücksetzen... - - - Recover Deleted Files - Gelöschte Dateien wiederherstellen - - - Interactive Rebase... - Interaktives Rebase... - - - Update Submodules - Submodule aktualisieren - - - Abort Merge - Merge abbrechen - - - Abort Rebase - Rebase abbrechen - - - Abort Cherry Pick - Cherry-Pick abbrechen - - - Abort Revert - Revert abbrechen - - - Skip Rebase - Rebase überspringen - - - Continue Cherry Pick - Cherry-Pick fortsetzen - - - Branches... - Branches... - - - &Patch - &Patch - - - Apply from Editor - Von Editor - - - Apply "%1" - Patch "%1" anwenden - - - Apply from File... - Von Datei... - - - &Stash - &Stash - - - Stashes... - Stashes... - - - Saves the current state of your work and resets the repository. - Speichert den gegenwärtigen Stand der Arbeit und setzt das Repository zurück. - - - Stash Unstaged Files - Stash nicht bereitgestellter Dateien (unstaged) - - - Saves the current state of your unstaged files and resets the repository to its staged state. - Speichert den gegenwärtigen Stand der nicht bereitgestellten Dateien und setzt das Repository auf den bereitgestellten Zustand zurück. - - - Take Snapshot... - Snapshot erzeugen... - - - Saves the current state of your work. - Sichert den gegenwärtigen Arbeitsstand. - - - Stash Pop - Stash Pop - - - Restores changes saved to the stash list using "Stash". - Stellt den gesicherten Zustand von "Stash" wieder her. - - - &Remote Repository - &Entferntes Repository - - - Fetch - Fetch - - - Pull - Pull - - - Push - Push - - - &Subversion - &Subversion - - - DCommit - DCommit - - - Manage Remotes... - Remotes verwalten... - - - Show... - Anzeigen... - - - Revert... - Rückgängig machen... - - - Cherry Pick... - Cherry-Pick... - - - Checkout... - Auschecken... - - - Archive... - Archive... - - - Rebase... - Rebase... - - - Merge... - Merge... - - - Git &Tools - Git-&Werkzeuge - - - Gitk Current File - Gitk mit Datei - - - Gitk of "%1" - Gitk mit "%1" - - - Gitk for folder of Current File - Gitk für Verzeichnis der Datei - - - Gitk for folder of "%1" - Gitk für Verzeichnis von "%1" - - - Git Gui - Git Gui - - - Repository Browser - Repository-Browser - - - Git Bash - Git Bash - - - Actions on Commits... - Aktionen mit Commits... - - - Create Repository... - Repository erzeugen... - - - Undo Changes to %1 - Änderungen in %1 rückgängig machen - - - Interactive Rebase - Interaktives Rebase - - - Another submit is currently being executed. - Ein weiterer Submit-Vorgang findet gerade statt. - - - Unsupported version of Git found. Git %1 or later required. - Es wurde eine nicht unterstützte Version von Git festgestellt. Es wird Git %1 oder neuer benötigt. - - - Amend %1 - Abgabe %1 ändern (amend) - - - Git Fixup Commit - Git Fixup Commit - - - Git Commit - Git Commit - - - Unable to Retrieve File List - Die Dateiliste konnte nicht bestimmt werden - - - Repository Clean - Repository bereinigt - - - The repository is clean. - Das Repository wurde bereits bereinigt. - - - Patches (*.patch *.diff) - Patch-Dateien (*.patch *.diff) - - - Choose Patch - Patch-Datei auswählen - - - Patch %1 successfully applied to %2 - Die Patch-Datei %1 wurde erfolgreich auf das Repository %2 angewandt - - - - Help - - QtWebEngine - QtWebEngine - - - litehtml - litehtml - - - WebKit - WebKit - - - QTextBrowser - QTextBrowser - - - - Imageviewer::Internal::ImageViewerPlugin - - Fit to Screen - An Bildschirm anpassen - - - Ctrl+= - Ctrl+= - - - Switch Background - Hintergrund umschalten - - - Ctrl+[ - Ctrl+[ - - - Switch Outline - Umriss umschalten - - - Ctrl+] - Ctrl+] - - - Toggle Animation - Animation umschalten - - - Export Image - Bild exportieren - - - Export Multiple Images - Mehrere Bilder exportieren - - - - Ios::Internal::IosBuildConfiguration - - iOS Settings - iOS-Einstellungen - - - Reset - Zurücksetzen - - - Automatically manage signing - Signieren automatisch ausführen - - - Development team: - Entwicklerteam: - - - Provisioning profile: - Provisioning-Profil: - - - Default - Vorgabe - - - None - Keine - - - Development team is not selected. - Es ist kein Entwicklerteam ausgewählt. - - - Provisioning profile is not selected. - Es ist kein Provisioning-Profil ausgewählt. - - - Using default development team and provisioning profile. - Die Vorgaben für Entwicklerteam und Provisioning-Profil werden benutzt. - - - Development team: %1 (%2) - Entwicklerteam: %1 (%2) - - - Settings defined here override the QMake environment. - Hier gewählte Einstellungen überschreiben die QMake-Umgebung. - - - %1 not configured. Use Xcode and Apple developer account to configure the provisioning profiles and teams. - %1 sind nicht konfiguriert. Benutzen Sie Xcode und Ihr Apple-Entwicklerkonto, um die Provisioning-Profile und Teams zu konfigurieren. - - - Development teams - Entwicklerteams - - - Provisioning profiles - Provisioning-Profile - - - No provisioning profile found for the selected team. - Für das gewählte Team wurde kein Provisioning-Profil gefunden. - - - Provisioning profile expired. Expiration date: %1 - Das Provisioning-Profil ist abgelaufen. Ablaufdatum: %1 - - - - LspLoggerWidget - - Log File - Logdatei - - Marketplace::Internal::QtMarketplaceWelcomePage @@ -46359,22 +46324,43 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e MCU-Gerät - - Nim - - General - Allgemein - - ProjectExplorer::Internal::AddRunConfigDialog + + [none] + + Name Name + + Source + + + + Create Run Configuration + + + + Filter candidates by name + + + + Create + + ProjectExplorer::Internal::AppOutputSettingsPage + + Word-wrap output + + + + Clear old output on a new run + + Merge stderr and stdout Fehlerausgabe und Standardausgabe zusammenführen @@ -46387,6 +46373,22 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Never Niemals + + On First Output Only + + + + Limit output to %1 characters + + + + Open Application Output when running: + + + + Open Application Output when debugging: + + Application Output Ausgabe der Anwendung @@ -46398,30 +46400,15 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Build directory: Build-Verzeichnis: + + The build directory is not reachable from the build device. + + Shadow build: Shadow-Build: - - ProjectExplorer::Internal::BuildPropertiesSettingsPage - - Enable - Aktivieren - - - Disable - Deaktivieren - - - Reset - Zurücksetzen - - - Default build directory: - Vorgabe-Build-Verzeichnis: - - ProjectExplorer::BuildSystem @@ -46439,6 +46426,18 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e ProjectExplorer::Internal::CompileOutputSettingsPage + + Word-wrap output + + + + Open Compile Output when building + + + + Limit output to %1 characters + + Compile Output Kompilierung @@ -46447,12 +46446,12 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e ProjectExplorer::Internal::DeploymentDataView - Local File Path - Lokaler Pfad + Source File Path + - Remote Directory - Entferntes Verzeichnis + Target Directory + Zielverzeichnis Add @@ -46466,6 +46465,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Files to deploy: Dateien für Deployment: + + Override deployment data from build system + + ProjectExplorer::Internal::DesktopRunConfiguration @@ -46642,6 +46645,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e ProjectExplorer::KitAspectWidget + + Mark as Mutable + Als veränderlich kennzeichnen + Manage... Verwalten... @@ -46675,10 +46682,54 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e ProjectExplorer::Internal::ParseIssuesDialog + + Parse Build Output + + + + Output went to stderr + + + + Clear existing tasks + + + + Load from File... + + Choose File Datei wählen + + Could Not Open File + + + + Could not open file: "%1": %2 + + + + Build Output + + + + Parsing Options + + + + Use parsers from kit: + + + + Cannot Parse + + + + Cannot parse: The chosen kit does not provide an output parser. + + ProjectExplorer::ProcessStep @@ -46699,26 +46750,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Working directory: Arbeitsverzeichnis: - - Custom Process Step - item in combobox - Benutzerdefinierter Verarbeitungsschritt - - - - ProjectExplorer::BaseTriStateAspect - - Enable - Aktivieren - - - Disable - Deaktivieren - - - Leave at Default - Vorgabe beibehalten - EnvironmentPanelFactory @@ -46736,6 +46767,66 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e ProjextExplorer::Internal::ProjectExplorerSettings + + Current directory + Arbeitsverzeichnis + + + Directory + Verzeichnis + + + Close source files along with project + Quelldateien zusammen mit Projekt schließen + + + Save all files before build + Alle Dateien vor Erstellen speichern + + + Always deploy project before running it + Vor Ausführung des Projekts stets Deployment durchführen + + + Add linker library search paths to run environment + Linker-Bibliothekspfade zur Ausführungsumgebung hinzufügen + + + Always ask before stopping applications + Nachfrage beim Stoppen von Anwendungen + + + Create suitable run configurations automatically + Automatisch Ausführungskonfigurationen erzeugen + + + Clear issues list on new build + Problemliste bei neuer Erstellung leeren + + + Abort on error when building all projects + Bei Fehler abbrechen, wenn alle Projekte erstellt werden + + + Start build processes with low priority + Erstellungsprozesse mit niedriger Priorität starten + + + Do Not Build Anything + + + + Build the Whole Project + + + + Build Only the Application to Be Run + + + + None + + All Alle @@ -46748,6 +46839,50 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Same Build Directory Gleiches Build-Verzeichnis + + Same Application + + + + Enabled + Aktiviert + + + Disabled + Deaktiviert + + + Deduced from Project + Aus Projekt abgeleitet + + + Use jom instead of nmake + jom statt nmake verwenden + + + Projects Directory + Projektverzeichnis + + + Closing Projects + Schließen von Projekten + + + Build and Run + Erstellung und Ausführung + + + Build before deploying: + Vor dem Deployment erstellen: + + + Stop applications before building: + Anwendungen vor dem Erstellen beenden: + + + Default for "Run in terminal": + Vorgabe für "Im Terminal ausführen": + General Allgemein @@ -46767,20 +46902,14 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Unable to parse "%1":%2: %3 "%1":%2 konnte nicht ausgewertet werden: %3 - - - Python - Manage... - Verwalten... + Buffered output + - Interpreter - Interpreter + Enabling improves output performance, but results in delayed output. + - - - Python Script: Skript: @@ -46789,9 +46918,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Run %1 %1 ausführen - - - Python Name: Name: @@ -46800,6 +46926,18 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Executable Ausführbare Datei + + Executable is empty. + + + + %1 does not exist. + + + + %1 is not an executable file. + + &Add Hinzu&fügen @@ -46812,6 +46950,14 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e &Make Default Als &Vorgabe setzen + + &Clean Up + + + + Remove all Python interpreters without a valid executable. + + Interpreters Interpreter @@ -46820,86 +46966,129 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Python Python - - - Python + + Plugins: + + + + Use Python Language Server + + + + For a complete list of available options, consult the <a href="https://github.com/python-lsp/python-lsp-server/blob/develop/CONFIGURATION.md">Python LSP Server configuration documentation</a>. + + + + Advanced + Erweitert + + + Language Server Configuration + + + + (Windowed) + + + + Removing Python + + + + Python: + + + + %1 installation missing for %2 (%3) + + + + Install %1 for %2 using pip package installer. + + Install Installieren - Enable - Aktivieren - - - - QbsProjectManager - - Change... - Ändern... + Switch the Python interpreter for %1 + - Additional Qbs Profile Settings - Zusätzliche Qbs-Profileinstellungen + Install %1 + - Qbs files - Qbs-Dateien + Running "%1" to install %2. + - Fatal qbs error: %1 - Fataler qbs-Fehler:%1 + The %1 installation was canceled by %2. + - Failed - Fehlgeschlagen + user + - Could not write project file %1. - Die Projektdatei %1 konnte nicht geschrieben werden. + time out + - Reading Project "%1" - Lese Projekt "%1" + Installing the %1 failed with exit code %2 + - Error retrieving run environment: %1 - Fehler beim Abfragen der Ausführungsumgebung: %1 + Run PySide6 project tool + - Qbs version: - Qbs-Version: + PySide project tool: + + + + Enter location of PySide project tool. + General - Allgemein - - - - QmakeProjectManager - - Qt mkspec - Qt-mkspec + Allgemein - The mkspec to use when building the project with qmake.<br>This setting is ignored when using other build systems. - Die zur Erstellung des Projekts mit qmake zu verwendende mkspec.<br>Diese Einstellung hat keine Auswirkung auf andere Build-Systeme. + REPL + - No Qt version set, so mkspec is ignored. - Es ist keine Qt-Version gesetzt, die mkspec wird ignoriert. + Open interactive Python. + - Mkspec not found for Qt version. - Die mkspec konnte für diese Qt-Version nicht gefunden werden. + REPL Import File + - mkspec - mkspec + Open interactive Python and import file. + - Reading Project "%1" - Lese Projekt "%1" + REPL Import * + + + + Open interactive Python and import * from file. + + + + Open interactive Python. Either importing nothing, importing the current file, or importing everything (*) from the current file. + + + + Python Language Server (%1) + + + + Install Python language server (PyLS) for %1 (%2). The language server provides Python specific completion and annotation. + @@ -46908,6 +47097,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Annotation Annotation + + Delete this annotation? + + QmlDesigner::BindingEditorDialog @@ -46915,6 +47108,14 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Binding Editor Binding-Editor + + NOT + + + + Invert the boolean expression. + + QmlDesigner::BindingEditorWidget @@ -46931,13 +47132,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Ctrl+Space - - DesignTools::GraphicsView - - Insert Keyframe - Keyframe einfügen - - ResetView @@ -46951,19 +47145,32 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Annotation Annotation - - - QmlDesigner::ImportManagerView - Import Manager - Importverwaltung + Edit Annotation + + + + Remove Annotation + + + + By: + + + + Edited: + + + + Delete this annotation? + QmlDesigner::ItemLibraryView - Library - Bibliothek + Components + Komponenten @@ -46975,6 +47182,22 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e QmlDesigner::GenerateResource + + Generate QRC Resource File + + + + Save Project as QRC File + + + + QML Resource File (*.qrc) + + + + Unable to generate resource file: %1 + + A timeout occurred running "%1" Zeitüberschreitung bei Ausführung von "%1" @@ -46987,40 +47210,21 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e "%1" failed (exit code %2). "%1" schlug fehl (Rückgabewert %2). - - - QmlJSEditor - QML/JS Editing - QML/JS-Bearbeitung + Generate Deployable Package + - Show Qt Quick ToolBar - Qt-Quick-Werkzeugleiste anzeigen + Save Project as Resource + - Code Model Not Available - Codemodell nicht verfügbar + QML Resource File (*.qmlrc);;Resource File (*.rcc) + - Code model not available. - Codemodell nicht verfügbar. - - - Code Model of %1 - Codemodell von %1 - - - Refactoring - Refactoring - - - This file should only be edited in <b>Design</b> mode. - Diese Datei sollte nur im <b>Design</b>-Modus bearbeitet werden. - - - Switch Mode - Modus umschalten + Generate a resource file out of project %1 to %2 + @@ -47041,128 +47245,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Warnung beim Laden der Projektdatei %1. - - QtSupport - - Device type is not supported by Qt version. - Der Gerätetyp wird von der Qt-Version nicht unterstützt. - - - The compiler "%1" (%2) cannot produce code for the Qt version "%3" (%4). - Der Compiler "%1" (%2) kann für die Qt-Version "%3" (%4) keinen Code erstellen. - - - The compiler "%1" (%2) may not produce code compatible with the Qt version "%3" (%4). - Der Compiler "%1" (%2) erstellt möglicherweise keinen mit der Qt-Version "%3" (%4) kompatiblen Code. - - - The kit has a Qt version, but no C++ compiler. - Das Kit hat eine Qt-Version, aber keinen C++-Compiler. - - - - QtSupport - - Qt version - Qt-Version - - - The version string of the current Qt version. - Die Versionsbezeichnung der aktuellen Qt-Version. - - - The type of the current Qt version. - Der Typ der aktuellen Qt-Version. - - - The mkspec of the current Qt version. - Die mkspec der aktuellen Qt-Version. - - - The installation prefix of the current Qt version. - Das Installationspräfix der aktuellen Qt-Version. - - - The installation location of the current Qt version's data. - Das Installationsverzeichnis für Daten der aktuellen Qt-Version. - - - The installation location of the current Qt version's header files. - Das Installationsverzeichnis für Header-Dateien der aktuellen Qt-Version. - - - The installation location of the current Qt version's library files. - Das Installationsverzeichnis für Bibliotheken der aktuellen Qt-Version. - - - The installation location of the current Qt version's documentation files. - Das Installationsverzeichnis für Dokumentationsdateien der aktuellen Qt-Version. - - - The installation location of the current Qt version's executable files. - Das Installationsverzeichnis für ausführbare Dateien der aktuellen Qt-Version. - - - The installation location of the current Qt version's plugins. - Das Installationsverzeichnis für Plugins der aktuellen Qt-Version. - - - The installation location of the current Qt version's QML files. - Das Installationsverzeichnis für QML-Dateien der aktuellen Qt-Version. - - - The installation location of the current Qt version's imports. - Das Installationsverzeichnis für Imports der aktuellen Qt-Version. - - - The installation location of the current Qt version's translation files. - Das Installationsverzeichnis für Übersetzungen der aktuellen Qt-Version. - - - The installation location of the current Qt version's examples. - Das Installationsverzeichnis für Beispielprojekte der aktuellen Qt-Version. - - - The installation location of the current Qt version's demos. - Das Installationsverzeichnis für Demoprojekte der aktuellen Qt-Version. - - - The current Qt version's default mkspecs (Qt 4). - Die Vorgabe-mkspecs der aktuellen Qt-Version (Qt 4). - - - The current Qt version's default mkspec (Qt 5; host system). - Die Vorgabe-mkspec der aktuellen Qt-Version (Qt 5; Host-System). - - - The current Qt version's default mkspec (Qt 5; target system). - Die Vorgabe-mkspec der aktuellen Qt-Version (Qt 5; Zielsystem). - - - The current Qt's qmake version. - Die qmake-Version der aktuellen Qt-Version. - - - The Qt library to use for all projects using this kit.<br>A Qt version is required for qmake-based projects and optional when using other build systems. - Die für alle Projekte, die dieses Kit verwenden, zu benutzende Qt-Bibliothek.<br>Für qmake-basierende Projekte ist diese Angabe erforderlich, für andere Build-Systeme optional. - - - None - Keine - - - Name of Qt Version - Name der Qt-Version - - - unknown - unbekannt - - - Path to the qmake executable - Pfad zur ausführbaren Datei von qmake - - ProMessageHandler @@ -47171,69 +47253,11 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e [Ungenau] - - QtSupport - - Qt Quick Compiler: - Qt-Quick-Compiler: - - - Disables QML debugging. QML profiling will still work. - Deaktiviert QML-Debuggen. QML-Profiling funktioniert weiterhin. - - - - QtSupport - - <none> - <leer> - - - Language: - Sprache: - - - Translation file: - Übersetzungsdatei: - - - - RemoteLinux - - Install root: - Install-Root: - - - - RemoteLinux - - Executable on device: - Ausführbare Datei auf Mobilgerät: - - - Remote path not set - Der entfernte Pfad ist nicht gesetzt - - - Executable on host: - Ausführbare Datei auf Hostrechner: - - StudioWelcome::Internal::WelcomeMode - Studio - Studio - - - - TextEditor::DisplaySettingsPage - - - Todo - - To-Do - To-do + Welcome + Willkommen @@ -47266,6 +47290,38 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Not checked yet Noch nicht gesucht + + Configure Filters + Filterkonfiguration + + + Automatic Check for Updates + Automatisch nach Aktualisierungen suchen + + + Automatically runs a scheduled check for updates on a time interval basis. The automatic check for updates will be performed at the scheduled date, or the next startup following it. + Sucht in regelmäßigen Abständen automatisch nach Aktualisierungen. Dies erfolgt zum angegebenen Zeitpunkt oder beim nächsten darauf folgenden Neustart. + + + Check for new Qt versions + Suche nach neuen Qt Versionen + + + Check interval basis: + Nach Aktualisierungen suchen: + + + Next check date: + Nächste Suche am: + + + Check Now + Jetzt suchen + + + Last check date: + Letzte Suche am: + Update Update @@ -47327,17 +47383,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Im Verzeichnis %1 konnte kein Repository für die Versionskontrolle erstellt werden. - - WinRt::Internal::WinRtArgumentsAspect - - Arguments: - Argumente: - - - Restore Default Arguments - Standardargumente wiederherstellen - - ProjectExplorer::Internal::FilesSelectionWizardPage @@ -47359,6 +47404,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Project name: Projektname: + + Location: + + File Selection Dateiauswahl @@ -47366,45 +47415,31 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Beautifier::Internal::GeneralOptionsPageWidget + + Enable auto format on file save + Beim Speichern einer Datei automatisch formatieren + + + Tool: + Werkzeug: + + + Restrict to MIME types: + Auf MIME-Typen beschränken: + + + Restrict to files contained in the current project + Auf Dateien des aktuellen Projekts beschränken + + + Automatic Formatting on File Save + Automatische Formatierung beim Speichern einer Datei + General Allgemein - - Help - - %1 (auto-detected) - %1 (automatisch bestimmt) - - - Add Documentation - Dokumentation hinzufügen - - - Qt Help Files (*.qch) - Qt-Hilfedateien (*.qch) - - - Invalid documentation file: - Ungültige Dokumentationsdatei: - - - Namespace already registered: - Der Namensraum ist bereits registriert: - - - Unable to register documentation. - Die Dokumentation konnte nicht registriert werden. - - - Documentation - Dokumentation - - - - Nim - ProjextExplorer::Internal::KitOptionsPageWidget @@ -47444,191 +47479,234 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Kits - - TextEditor::FontSettingsPageWidget - - Color Scheme for Theme "%1" - Farbschema für Thema "%1" - - - Copy Color Scheme - Farbschema kopieren - - - Color scheme name: - Name des Farbschemas: - - - %1 (copy) - %1 (Kopie) - - - Delete Color Scheme - Farbschema löschen - - - Are you sure you want to delete this color scheme permanently? - Möchten Sie das Farbschema löschen? - - - Color Scheme Changed - Farbschema geändert - - - The color scheme "%1" was modified, do you want to save the changes? - Das Farbschema "%1" wurde geändert, möchten Sie die Änderungen speichern? - - - Discard - Verwerfen - - - Font && Colors - Zeichensatz && Farben - - - - CatchTestSettingsPage - - Turns failures into debugger breakpoints. - Erzeugt aus Fehlern Debugger-Haltepunkte. - - - Break on failure while debugging - Beim Debuggen an Fehlern anhalten - - - ms - ms - - - - Beautifier::Internal::ArtisticStyleOptionsPage - - Configuration - Konfiguration - - - Artistic Style command: - Ausführbare Datei von Artistic Style: - - - Restrict to MIME types: - Auf MIME-Typen beschränken: - - - Options - Einstellungen - - - Use file *.astylerc defined in project files - Verwende Datei *.astylerc wie in Projektdateien definiert - - - Use specific config file: - Bestimmte Konfigurationsdatei verwenden: - - - Use file .astylerc or astylerc in HOME - HOME is replaced by the user's home directory - Verwende .astylerc oder astylerc in HOME - - - Use customized style: - Verwende angepassten Stil: - - - - Beautifier::Internal::ClangFormatOptionsPage - - Options - Einstellungen - - - Use customized style: - Verwende angepassten Stil: - - - Use predefined style: - Verwende vorgegebenen Stil: - - - Fallback style: - Fallback-Stil: - - - Configuration - Konfiguration - - - Clang Format command: - Ausführbare Datei von Clang Format: - - - Restrict to MIME types: - Auf MIME-Typen beschränken: - - - - Beautifier::Internal::UncrustifyOptionsPage - - Configuration - Konfiguration - - - Uncrustify command: - Ausführbare Datei von Uncrustify: - - - Restrict to MIME types: - Auf MIME-Typen beschränken: - - - Options - Einstellungen - - - Use file uncrustify.cfg defined in project files - Verwende Datei uncrustify.cfg wie in Projektdateien definiert - - - Use file specific uncrustify.cfg - Dateispezifische uncrustify.cfg verwenden - - - Use file uncrustify.cfg in HOME - HOME is replaced by the user's home directory - Verwende uncrustify.cfg in HOME - - - Use customized style: - Verwende angepassten Stil: - - - For action Format Selected Text - Für die Aktion "Formatiere selektierten Text" - - - Format entire file if no text was selected - Formatiere die ganze Datei falls kein Text selektiert ist - - IncrediBuild::Internal::BuildConsoleBuildStep + + IncrediBuild for Windows + IncrediBuild für Windows + + + Target and Configuration + + + + Enter the appropriate arguments to your build command. + + + + Make sure the build command's multi-job parameter value is large enough (such as -j200 for the JOM or Make build tools) + + + + Keep original jobs number: + + + + Forces IncrediBuild to not override the -j command line switch, that controls the number of parallel spawned tasks. The default IncrediBuild behavior is to set it to 200. + + + + IncrediBuild Distribution Control + + + + Profile.xml: + + + + Defines how Automatic Interception Interface should handle the various processes involved in a distributed job. It is not necessary for "Visual Studio" or "Make and Build tools" builds, but can be used to provide configuration options if those builds use additional processes that are not included in those packages. It is required to configure distributable processes in "Dev Tools" builds. + + + + Avoid local task execution: + + + + Overrides the Agent Settings dialog Avoid task execution on local machine when possible option. This allows to free more resources on the initiator machine and could be beneficial to distribution in scenarios where the initiating machine is bottlenecking the build with High CPU usage. + + + + Determines the maximum number of CPU cores that can be used in a build, regardless of the number of available Agents. It takes into account both local and remote cores, even if the Avoid Task Execution on Local Machine option is selected. + + + + Maximum CPUs to utilize in the build: + + + + Newest allowed helper machine OS: + + + + Specifies the newest operating system installed on a helper machine to be allowed to participate as helper in the build. + + + + Oldest allowed helper machine OS: + + + + Specifies the oldest operating system installed on a helper machine to be allowed to participate as helper in the build. + + + + Output and Logging + + + + Build title: + + + + Specifies a custom header line which will be displayed in the beginning of the build output text. This title will also be used for the Build History and Build Monitor displays. + + + + Save IncrediBuild monitor file: + + + + Writes a copy of the build progress file (.ib_mon) to the specified location. If only a folder name is given, a generated GUID will serve as the file name. The full path of the saved Build Monitor will be written to the end of the build output. + + + + Suppress STDOUT: + + + + Does not write anything to the standard output. + + + + Output Log file: + + + + Writes build output to a file. + + + + Show Commands in output: + + + + Shows, for each file built, the command-line used by IncrediBuild to build the file. + + + + Show Agents in output: + + + + Shows the Agent used to build each file. + + + + Show Time in output: + + + + Shows the Start and Finish time for each file built. + + + + Hide IncrediBuild Header in output: + + + + Suppresses IncrediBuild's header in the build output + + + + Internal IncrediBuild logging level: + + + + Overrides the internal Incredibuild logging level for this build. Does not affect output or any user accessible logging. Used mainly to troubleshoot issues with the help of IncrediBuild support + + Miscellaneous Sonstige Einstellungen - Make arguments: - Kommandozeilenargumente für make: + Set an Environment Variable: + + + + Sets or overrides environment variables for the context of the build. + + + + Stop on errors: + + + + When specified, the execution will stop as soon as an error is encountered. This is the default behavior in "Visual Studio" builds, but not the default for "Make and Build tools" or "Dev Tools" builds + + + + Additional Arguments: + + + + Add additional buildconsole arguments manually. The value of this field will be concatenated to the final buildconsole command line + + + + Open Build Monitor: + + + + Opens Build Monitor once the build starts. + IncrediBuild::Internal::IBConsoleBuildStep - Make arguments: - Kommandozeilenargumente für make: + IncrediBuild for Linux + IncrediBuild für Linux + + + Target and Configuration + + + + Enter the appropriate arguments to your build command. + + + + Make sure the build command's multi-job parameter value is large enough (such as -j200 for the JOM or Make build tools) + + + + Keep original jobs number: + + + + Forces IncrediBuild to not override the -j command line switch, that controls the number of parallel spawned tasks. The default IncrediBuild behavior is to set it to 200. + + + + IncrediBuild Distribution Control + + + + Specify nice value. Nice Value should be numeric and between -20 and 19 + + + + Nice value: + + + + Force remote: + + + + Alternate tasks preference: + @@ -47638,8 +47716,17 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Konfigurationsänderungen anwenden - Filter - Filter + Wipe Project + + + + Wipes build directory and reconfigures using previous command line options. +Useful if build directory is corrupted or when rebuilding with a newer version of Meson. + + + + Parameters + Tool arguments: @@ -47649,42 +47736,190 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Targets: Ziele: - - - ToolItemSettings + + Meson Build + + + + Configure + Konfigurieren + + + Build + Erstellen + + + Build "%1" + "%1" erstellen + + + Meson + Meson + + + Build + MesonProjectManager::MesonBuildStepConfigWidget display name. + Erstellen + + + Key + Schlüssel + + + Value + Wert + + + Configuring "%1". + Konfiguriere "%1" + + + Running %1 in %2. + Führe %1 in %2 aus. + + + Executable does not exist: %1 + Ausführbare Datei existiert nicht: %1 + + + Command is not executable: %1 + + + + No Meson tool set. + + + + No Ninja tool set. + + + + No compilers set in kit. + Im Kit sind keine Compiler eingerichtet. + + + Autorun Meson + + + + Automatically run Meson when needed. + + + + Ninja verbose mode + + + + Enables verbose mode by default when invoking Ninja. + + + + General + Allgemein + + + Meson Tool + + + + The Meson tool to use when building a project with Meson.<br>This setting is ignored when using other build systems. + + + + Cannot validate this meson executable. + + + + Unconfigured + Nicht konfiguriert + + + Name + Name + + + Location + Pfad + + + New Meson or Ninja tool + + + + Tools + Werkzeuge + + + Version: %1 + Version: %1 + + + Clone of %1 + Kopie von %1 + + + Meson executable path does not exist. + + + + Meson executable path is not a file. + + + + Meson executable path is not executable. + + + + Cannot get tool version. + + + + Meson build: Parsing failed + + + + Ninja Tool + + + + The Ninja tool to use when building a project with Meson.<br>This setting is ignored when using other build systems. + + + + Cannot validate this Ninja executable. + + + + Ninja + + Name: - Name: + Name: Path: - Pfad: + Pfad: - - - ToolsSettingsWidget Add - Hinzufügen + Hinzufügen Clone - Klonen + Klonen Remove - Entfernen + Make Default - Als Vorgabe setzen + Als Vorgabe setzen - - - QmlDesigner::GlobalAnnotationEditorDialog - Annotation - Annotation + Set as the default Meson executable to use when creating a new kit or when no value is set. + @@ -47701,24 +47936,12 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e QmlDesigner::TransitionForm - Timeline Settings - Timeline-Einstellungen + Invalid ID + - From - Von - - - To - Bis - - - Invalid Id - Ungültige ID - - - %1 is an invalid id. - %1 ist keine gültige ID. + %1 is an invalid ID. + %1 already exists. @@ -47728,12 +47951,8 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e AlignDistributeSection - Align - Ausrichtung - - - Align objects - Objekte ausrichten + Alignment + Ausrichtung Align left edges. @@ -47799,6 +48018,26 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Distribute spacing vertically. Abstand vertikal einteilen. + + Disables the distribution of spacing in pixels. + + + + Sets the left or top border of the target area or item as the starting point, depending on the distribution orientation. + + + + Sets the horizontal or vertical center of the target area or item as the starting point, depending on the distribution orientation. + + + + Sets the bottom or right border of the target area or item as the starting point, depending on the distribution orientation. + + + + Pixel spacing + + Align to Ausrichten an @@ -47812,24 +48051,40 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Warnung - - The selection contains the root item. - - Die Auswahl enthält das Wurzel-Item. + - The selection contains the root component. + - - The selection contains a non visual item. - - Die Auswahl enthält ein nicht sichtbares Item. + - The selection contains a non-visual component. + - - An item in the selection uses anchors. - - Ein Item der Auswahl benutzt Anchor. + - A component in the selection uses anchors. + AnimatedImageSpecifics + + Image + Bild + + + Animated image + + Speed Geschwindigkeit + + Playing + + + + Whether the animation is playing or paused. + + Utils::InfoBarDisplay @@ -47846,103 +48101,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Schließen - - Android - - Low DPI icon - Symbol mit geringer Auflösung - - - Select low DPI icon. - Symbol für geringe Auflösung auswählen. - - - Medium DPI icon - Symbol mit mittlerer Auflösung - - - Select medium DPI icon. - Symbol für mittlere Auflösung auswählen. - - - High DPI icon - Symbol mit hoher Auflösung - - - Select high DPI icon. - Symbol für hohe Auflösung auswählen. - - - Android Clang - Android Clang - - - - CatchTreeItem - - parameterized - parametrisiert - - - fixture - festgelegt - - - - BareMetal - - 50MHz - 50MHz - - - 33MHz - 33MHz - - - 25MHz - 25MHz - - - 20MHz - 20MHz - - - 10MHz - 10MHz - - - 5MHz - 5MHz - - - 3MHz - 3MHz - - - 2MHz - 2MHz - - - 1MHz - 1MHz - - - 500kHz - 500kHz - - - 200kHz - 200kHz - - - KEIL %1 (%2, %3) - KEIL %1 (%2, %3) - - - KEIL - KEIL - - Beautifier::Internal @@ -47968,17 +48126,6 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e &Uncrustify - - CMakeProjectManager - - Parsing has been canceled. - Auswertung wurde abgebrochen. - - - <Headers> - <Header-Dateien> - - Core::CodecSelector @@ -48034,14 +48181,94 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Core::Internal::PluginInstallWizard + + Source + Quelle + + + Choose source location. This can be a plugin library file or a zip file. + Wählen Sie eine Quelle. Dies kann eine Plugin-Bibliothek oder eine ZIP-Datei sein. + + + File does not exist. + Datei existiert nicht. + + + Check Archive + Archiv überprüfen + Cancel Abbrechen + + Checking archive... + Überprüfe Archiv... + + + The file is not an archive. + Die Datei ist kein Archiv. + + + Canceled. + Abgebrochen. + + + There was an error while unarchiving. + Beim Entpacken des Archivs trat ein Fehler auf. + + + Archive is OK. + Archiv ist OK. + + + Plugin requires an incompatible version of %1 (%2). + Das Plugin benötigt eine inkompatible Version von %1 (%2). + + + Did not find %1 plugin. + Konnte das Plugin %1 nicht finden. + + + Install Location + Installationsort + + + Choose install location. + Wählen Sie einen Ort für die Installation. + + + User plugins + Benutzer-Plugins + + + The plugin will be available to all compatible %1 installations, but only for the current user. + Das Plugin wird für alle kompatiblen Installationen von %1 verfügbar sein, aber nur für den aktuellen Nutzer. + + + %1 installation + %1-Installation + + + The plugin will be available only to this %1 installation, but for all users that can access it. + Das Plugin wird nur für diese Installation von %1 verfügbar sein, aber für alle Nutzer, die diese Ausführen können. + Summary Zusammenfassung + + "%1" will be installed into "%2". + "%1" wird in "%2" installiert. + + + Overwrite File + Datei überschreiben + + + The file "%1" exists. Overwrite? + Die Datei "%1" existiert bereits. Soll die Datei überschrieben werden? + Overwrite Überschreiben @@ -48050,40 +48277,17 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Failed to Write File Datei konnte nicht geschrieben werden - - - CodePaster - %1: %2 - %1: %2 + Failed to write file "%1". + Die Datei "%1" konnte nicht geschrieben werden. - - - IncrediBuild::Internal::BuildConsoleStepConfigWidget - IncrediBuild for Windows - IncrediBuild für Windows + Install Plugin + Plugin installieren - - - CommandBuilder - CMake - CMake - - - - IncrediBuild::Internal::IBConsoleStepConfigWidget - - IncrediBuild for Linux - IncrediBuild für Linux - - - - MakeCommandBuilder - - Make - Make + Failed to Copy Plugin Files + Das Kopieren der Plugin-Dateien ist fehlgeschlagen @@ -48092,121 +48296,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Find References with %1 for: Referenzen mit %1 finden für: - - - MesonProjectManager - Configure - Konfigurieren + Renaming is not supported with %1 + - - Build - Erstellen - - - Build "%1" - "%1" erstellen - - - Meson - Meson - - - Build - MesonProjectManager::MesonBuildStepConfigWidget display name. - Erstellen - - - Key - Schlüssel - - - Value - Wert - - - Configuring "%1". - Konfiguriere "%1" - - - The process failed to start. - Der Prozess konnte nicht gestartet werden. - - - Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. - Entweder ist das aufgerufene Programm "%1" nicht vorhanden oder Ihre Rechte reichen nicht aus, um dieses Programm aufzurufen. - - - The process was ended forcefully. - Der Prozess wurde gestoppt. - - - Process timed out. - Der Prozess brauchte zu lange. - - - An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel. - Ein Fehler trat auf beim Versuch, zum Prozess zu schreiben. Möglicherweise läuft der Prozess nicht oder hat seinen Eingabekanal geschlossen. - - - An error occurred when attempting to read from the process. For example, the process may not be running. - Ein Fehler trat auf beim Versuch, vom Prozess zu lesen. Möglicherweise läuft der Prozess nicht. - - - An unknown error in the process occurred. - Im Prozess trat ein unbekannter Fehler auf. - - - Running %1 in %2. - Führe %1 in %2 aus. - - - Executable does not exist: %1 - Ausführbare Datei existiert nicht: %1 - - - No compilers set in kit. - Im Kit sind keine Compiler eingerichtet. - - - General - Allgemein - - - Unconfigured - Nicht konfiguriert - - - Name - Name - - - Location - Pfad - - - Auto-detected - Automatisch bestimmt - - - Manual - Benutzerdefiniert - - - Tools - Werkzeuge - - - Version: %1 - Version: %1 - - - Clone of %1 - Kopie von %1 - - - - Nim ProjectExplorer::Internal::BuildEnvironmentWidget @@ -48221,6 +48314,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e ProjectExplorer::Internal::CustomParsersSettingsPage + + Custom output parsers defined here can be enabled individually in the project's build or run settings. + + Add... Hinzufügen... @@ -48229,12 +48326,20 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Remove Entfernen + + New Parser + + + + Custom Output Parsers + + EnvironmentWidget - Add ... - Hinzufügen... + Add... + Hinzufügen... Remove @@ -48286,13 +48391,50 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e QmlDesigner::AssetExportDialog + + Choose Export File + + + + Metadata file (*.metadata) + + Open Öffnen + + Advanced Options + + + + Export assets + + + + Export components separately + + + + Export + Export + + + Export Components + + + + Export path: + + QmlDesigner::AssetExporter + + Export root directory: %1. +Exporting assets: %2 + + Yes Ja @@ -48301,13 +48443,98 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e No Nein + + Each component is exported separately. + + + + Canceling export. + + + + Unknown error. + + + + Loading file is taking too long. + + + + Cannot parse. The file contains coding errors. + + + + Loading components failed. %1 + + + + Cannot export component. Document "%1" has parsing errors. + + + + Error saving component file. %1 + + Unknown Unbekannt + + Cannot preprocess file: %1. Error %2 + + + + Cannot preprocess file: %1 + + + + Cannot update %1. +%2 + + + + Exporting file %1. + + + + Export canceled. + + + + Writing metadata failed. Cannot create file %1 + + + + Writing metadata to file %1. + + + + Empty JSON document. + + + + Writing metadata failed. %1 + + + + Export finished. + + + + Error creating asset directory. %1 + + + + Error saving asset. %1 + + TemplateMerge + + Merge With Template + + &Browse... &Auswählen... @@ -48316,6 +48543,10 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Template: Template: + + Browse Template + + QmlDesigner::RichTextEditor @@ -48327,9 +48558,113 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e &Redo &Wiederholen + + &Bold + + + + &Italic + + + + &Underline + + + + Select Image + + + + Image files (*.png *.jpg) + + + + Insert &Image + + + + Hyperlink Settings + + + + &Left + + + + C&enter + + + + &Right + + + + &Justify + + + + Bullet List + + + + Numbered List + + + + &Color... + + + + &Table Settings + + + + Create Table + + + + Remove Table + + + + Add Row + + + + Add Column + + + + Remove Row + + + + Remove Column + + + + Merge Cells + + + + Split Row + + + + Split Column + + QmlDesigner::TransitionEditorToolBar + + Transition Settings + + + + Easing Curve Editor + + Curve Editor Kurveneditor @@ -48350,23 +48685,9344 @@ Wenn Sie noch keinen privaten Schlüssel besitzen, können Sie hier auch einen e Title of transition view Übergang - - - Qnx - QCC - QCC + Add Transition + + + + This file does not contain transitions. <br><br> To create an animation, add a transition by clicking the + button. + + + + To edit the transition settings, click + - QtSupport + AddModuleView - Qt Version - Qt-Version + Select a Module to Add + + + + + Assets + + Add a new asset to the project. + - Location of qmake - QMake-Pfad + No match found. + + + + Looks like you don't have any assets yet. + + + + Drag-and-drop your assets here or click the '+' button to browse assets from the file system. + + + + + AssetsContextMenu + + Delete Files + + + + Delete File + Datei löschen + + + Expand All + + + + Collapse All + + + + Rename Folder + Verzeichnis umbenennen + + + New Folder + Neues Verzeichnis + + + Delete Folder + Verzeichnis löschen + + + + AssetsView + + Empty folder + + + + + ConfirmDeleteFolderDialog + + Folder Not Empty + + + + Folder "%1" is not empty. Delete it anyway? + + + + If the folder has assets in use, deleting it might cause the project to not work correctly. + + + + Delete + + + + Cancel + Abbrechen + + + + ItemsView + + Remove Module + + + + Expand All + + + + Collapse All + + + + Hide Category + + + + Show Module Hidden Categories + + + + Show All Hidden Categories + + + + Add Module: + + + + Go into Component + In Komponente gehen + + + Add a module. + + + + + NewFolderDialog + + Create New Folder + + + + Folder name: + + + + Folder name cannot be empty. + + + + Create + + + + Cancel + Abbrechen + + + New folder + + + + + RenameFolderDialog + + Rename Folder + Verzeichnis umbenennen + + + Folder name cannot be empty. + + + + Could not rename folder. Make sure no folder with the same name exists. + + + + If the folder has assets in use, renaming it might cause the project to not work correctly. + + + + Rename + Umbenennen + + + Cancel + Abbrechen + + + + InstallQdsStatusBlock.ui + + No Qt Design Studio installation found + + + + Would you like to install it now? + + + + Install + Installieren + + + + ProjectInfoStatusBlock.ui + + Unknown + Unbekannt + + + QML PROJECT FILE INFO + + + + Qt Version - + + + + Qt Design Studio Version - + + + + No QML project file found - Would you like to create one? + + + + Generate + + + + + Screen01.ui + + Qt Design Studio + Qt Design Studio + + + Open with Qt Design Studio + + + + Open + Öffnen + + + Open with Qt Creator - Text Mode + + + + Remember my choice + + + + + BundleMaterialItem + + Material is imported to project + + + + Add an instance to project + + + + + MaterialBrowser + + Add a material. + + + + <b>Material Browser</b> is disabled inside a material component. + + + + To use <b>Material Browser</b>, first add the QtQuick3D module in the <b>Components</b> view. + + + + Materials + + + + No match found. + + + + There are no materials in this project.<br>Select '<b>+</b>' to create one. + + + + Material Library + + + + + MaterialBrowserContextMenu + + Apply to selected (replace) + + + + Apply to selected (add) + + + + Copy properties + + + + Paste properties + + + + Duplicate + + + + Rename + Umbenennen + + + Delete + + + + Create New Material + + + + + MaterialBundleContextMenu + + Apply to selected (replace) + + + + Apply to selected (add) + + + + Add an instance to project + + + + Remove from project + + + + + UnimportBundleMaterialDialog + + Bundle material might be in use + + + + If the material you are removing is in use, it might cause the project to malfunction. + +Are you sure you want to remove the material? + + + + Remove + + + + Cancel + Abbrechen + + + + EmptyMaterialEditorPane + + There are no materials in this project.<br>Select '<b>+</b>' to create one. + + + + To use <b>Material Editor</b>, first add the QtQuick3D module in the <b>Components</b> view. + + + + + MaterialEditorToolBar + + Apply material to selected model. + + + + Create new material. + + + + Delete current material. + + + + Open material browser. + + + + + MaterialEditorTopSection + + Cone + + + + Cube + + + + Cylinder + + + + Sphere + + + + Basic + Grundlegend + + + Color + Farbe + + + Studio + Studio + + + Landscape + + + + Select preview environment. + + + + Select preview model. + + + + Name + Name + + + Material name + + + + Type + Typ + + + + Details + + Details + + + + Use as default project location + Als Vorgabe für Projektverzeichnis verwenden + + + Width + Breite + + + Height + Höhe + + + Orientation + Ausrichtung + + + Use Qt Virtual Keyboard + Qt Virtual Keyboard verwenden + + + Target Qt Version: + + + + Save Custom Preset + + + + Save Preset + Voreinstellung speichern + + + Preset name + + + + MyPreset + + + + + PresetView + + Delete Custom Preset + + + + + Styles + + Style + Stil + + + All + Alle + + + Light + + + + Dark + + + + + NewProjectDialog + + Let's create something wonderful with + + + + Qt Design Studio! + + + + Create new project by selecting a suitable Preset and then adjust details. + + + + Presets + + + + Cancel + Abbrechen + + + Create + + + + + Main + + Rename state group + + + + State Group + + + + Switch State Group + + + + Create State Group + + + + Remove State Group + + + + Rename State Group + + + + Show thumbnails + + + + Show property changes + + + + + StateMenu + + Clone + Klonen + + + Delete + + + + Show Thumbnail + + + + Show Changes + + + + Extend + + + + Reset when Condition + Zurücksetzen bei Bedingung + + + Edit Annotation + + + + Add Annotation + Annotation hinzufügen + + + Remove Annotation + + + + + StateThumbnail + + Default + Vorgabe + + + Set State as default + + + + State Name + + + + Base State + Grundzustand + + + No Property Changes Available + + + + Target + Ziel + + + Explicit + + + + Restore values + + + + When Condition + + + + + CharacterSection + + Character + + + + Text + Text + + + Font + Zeichensatz + + + Style name + Stilname + + + Font's style. + + + + Size + Größe + + + Text color + + + + Weight + + + + Font's weight. + + + + Emphasis + + + + Alignment H + + + + Alignment V + + + + Letter spacing + + + + Letter spacing for the font. + + + + Word spacing + + + + Word spacing for the font. + + + + Line height + Zeilenhöhe + + + Line height for the text. + + + + + ColorEditorPopup + + Solid + + + + Linear + + + + Radial + + + + Conical + + + + Open Color Dialog + Farb-Auswahldialog öffnen + + + Fill type can only be changed in base state. + + + + Transparent + Transparent + + + Gradient Picker + + + + Eye Dropper + + + + Original + Original + + + New + Neu + + + Add to Favorites + + + + Color Details + + + + Palette + + + + Gradient Controls + + + + Vertical + Vertikal + + + Horizontal + Horizontal + + + Defines the direction of the gradient. + + + + Defines the start point for color interpolation. + Legt den Startpunkt für Farb-Interpolation fest. + + + Defines the end point for color interpolation. + Legt den Endpunkt für Farb-Interpolation fest. + + + Defines the center point. + Legt den Mittelpunkt fest. + + + Defines the focal point. + Legt den Brennpunkt fest. + + + Defines the center radius. + + + + Defines the focal radius. Set to 0 for simple radial gradients. + Legt den Brennradius fest. Wählen Sie 0 für einfache radiale Gradienten. + + + Defines the start angle for the conical gradient. The value is in degrees (0-360). + Legt den Anfangswinkel für den konischen Gradienten fest. Der Wert ist in Grad (0-360). + + + + ColorPalette + + Remove from Favorites + + + + Add to Favorites + + + + + ComponentButton + + This is an instance of a component + + + + Edit Base Component + + + + + ComponentSection + + Component + Komponente + + + Type + Typ + + + Changes the type of this component. + + + + ID + ID + + + id + Id + + + Exports this component as an alias property of the root component. + + + + Name + Name + + + Descriptive text + + + + Edit Annotation + + + + Remove Annotation + + + + Add Annotation + Annotation hinzufügen + + + State + + + + + DynamicPropertiesSection + + Local Custom Properties + + + + No editor for type: + + + + Add New Property + + + + Name + Name + + + Type + Typ + + + Add Property + + + + + FlickableGeometrySection + + Flickable Geometry + + + + Content size + Größe des Inhalts + + + W + width + The width of the object + + + + Content width used for calculating the total implicit width. + + + + H + height + The height of the object + H + + + Content height used for calculating the total implicit height. + + + + Content + Inhalt + + + Origin + Ursprung + + + Left margin + + + + Right margin + + + + Top margin + + + + Bottom margin + + + + + FontExtrasSection + + Font Extras + + + + Capitalization + + + + Capitalization for the text. + + + + Style + Stil + + + Style color + + + + Hinting + + + + Preferred hinting on the text. + + + + Auto kerning + + + + Enables or disables the kerning OpenType feature when shaping the text. Disabling this may improve performance when creating or changing the text, at the expense of some cosmetic features. + + + + Prefer shaping + Shaping bevorzugen + + + Sometimes, a font will apply complex rules to a set of characters in order to display them correctly. +In some writing systems, such as Brahmic scripts, this is required in order for the text to be legible, whereas in Latin script, + it is merely a cosmetic feature. Setting the preferShaping property to false will disable all such features +when they are not required, which will improve performance in most cases. + Manchmal wendet ein Font komplexe Regeln auf Zeichen an, um sie korrekt anzuzeigen. +In manchen Schriftsystemem, beispielsweise Brahmi, wäre Text sonst nicht lesbar, während es in Latin-Schriften nur der +Verschönerung dient. Die preferShaping-Eigenschaft auf "false" zu setzen deaktiviert diese Funktionalität, wenn sie nicht +benötigt wird, was meist die Geschwindigkeit erhöht. + + + + ImageSection + + Image + Bild + + + Source + + + + Fill mode + Füllmodus + + + Source size + Größe der Bildquelle + + + W + width + The width of the object + + + + H + height + The height of the object + H + + + Alignment H + + + + Alignment V + + + + Asynchronous + Asynchron + + + Loads images on the local filesystem asynchronously in a separate thread. + + + + Auto transform + Automatisch umwandeln + + + Automatically applies image transformation metadata such as EXIF orientation. + + + + Cache + Cache + + + Caches the image. + + + + Mipmap + MIP Map + + + Uses mipmap filtering when the image is scaled or transformed. + + + + Mirror + Spiegeln + + + Inverts the image horizontally. + + + + Smooth + Glatt + + + Smoothly filters the image when it is scaled or transformed. + + + + + ItemFilterComboBox + + [None] + + + + + Label + + This property is not available in this configuration. + + + + + PropertyLabel + + This property is not available in this configuration. + + + + + Section + + Expand All + + + + Collapse All + + + + + TextExtrasSection + + Text Extras + + + + Wrap mode + Umbruch + + + Elide + Auslassung + + + Format + Format + + + Render type + Rendering-Typ + + + Overrides the default rendering type for this component. + + + + Render type quality + + + + Overrides the default rendering type quality for this component. + + + + Line height mode + Zeilenhöhen-Modus + + + Determines how the line height is specified. + Bestimmt, wie die Zeilenhöhe festgelegt wird. + + + Size mode + + + + Specifies how the font size of the displayed text is determined. + Legt fest wie die Schriftgröße des angezeigten Texts bestimmt wird. + + + Min size + + + + Minimum font pixel size of scaled text. + + + + Minimum font point size of scaled text. + + + + Max line count + + + + Limits the number of lines that the text component will show. + + + + + UrlChooser + + Built-in primitive + + + + + SearchBox + + Search + Suche + + + + AudioSection + + Audio + + + + Volume + + + + Muted + + + + + MediaPlayerSection + + Media Player + + + + Playback rate + + + + Audio output + + + + Target audio output. + + + + Video output + + + + Target video output. + + + + + VideoSection + + Video + + + + Source + + + + Fill mode + Füllmodus + + + Orientation + Ausrichtung + + + + TimerSpecifics + + Timer + + + + Interval + + + + Sets the interval between triggers, in milliseconds. + + + + Repeat + + + + Sets whether the timer is triggered repeatedly at the specified interval or just once. + + + + Running + Läuft + + + Sets whether the timer is running or not. + + + + Triggered on start + + + + Sets the timer to trigger when started. + + + + + ColorAnimationSpecifics + + Color Animation + + + + From color + + + + To color + + + + + ConnectionsSpecifics + + Connections + Verbindungen + + + Enabled + Aktiviert + + + Sets whether the component accepts change events. + + + + Ignore unknown signals + + + + Ignores runtime errors produced by connections to non-existent signals. + + + + Target + Ziel + + + Sets the component that sends the signal. + + + + + AbstractButtonSection + + Button Content + + + + Text + Text + + + Text displayed on the button. + Der auf der Schaltfläche angezeigte Text. + + + Display + Anzeige + + + Determines how the icon and text are displayed within the button. + + + + Checkable + Umschaltbar + + + Whether the button is checkable. + + + + Checked + Eingeschaltet + + + Whether the button is checked. + + + + Exclusive + + + + Whether the button is exclusive. + + + + Auto-repeat + + + + Whether the button repeats pressed(), released() and clicked() signals while the button is pressed and held down. + + + + Repeat delay + + + + Initial delay of auto-repetition in milliseconds. + + + + Repeat interval + + + + Interval of auto-repetition in milliseconds. + + + + + BusyIndicatorSpecifics + + Busy Indicator + + + + Running + Läuft + + + Whether the busy indicator is currently indicating activity. + + + + Live + + + + + ButtonSection + + Button + + + + Appearance + + + + Whether the button is flat and/or highlighted. + + + + Flat + Flach + + + Highlight + + + + + CheckSection + + Check Box + Checkbox + + + Check state + + + + The current check state. + + + + Tri-state + + + + Whether the checkbox has three states. + + + + + ContainerSection + + Container + + + + Current index + Aktueller Index + + + The index of the current item. + + + + + ControlSection + + Control + + + + Enable + Aktivieren + + + Whether the control is enabled and hover events are received. + + + + Hover + + + + Focus policy + + + + Focus policy of the control. + + + + Spacing + Abstand + + + Spacing between internal elements of the control. + Der Abstand zwischen inneren Elementen des Controls. + + + Wheel + + + + Whether control accepts wheel events. + + + + + DelayButtonSpecifics + + Delay Button + + + + Delay + + + + The delay in milliseconds. + + + + + DialSpecifics + + Dial + + + + Value + Wert + + + The current value of the dial and whether it provides live value updates. + + + + Live + + + + From + Von + + + The starting value of the dial range. + + + + To + Bis + + + The ending value of the dial range. + + + + Step size + Schrittweite + + + The step size of the dial. + + + + Snap mode + Einrasten + + + The snap mode of the dial. + + + + Input mode + + + + How the dial tracks movement. + + + + Wrap + + + + Whether the dial wraps when dragged. + + + + + FrameSpecifics + + Frame + + + + Font Inheritance + + + + + GroupBoxSpecifics + + Group Box + + + + Title + Titel + + + The title of the group box. + + + + + IconSection + + Icon + Symbol + + + Source + + + + Color + Farbe + + + Size + Größe + + + W + width + The width of the object + + + + Width + Breite + + + H + height + The height of the object + H + + + Height + Höhe + + + Cache + Cache + + + Whether the icon should be cached. + + + + + InsetSection + + Inset + + + + Vertical + Vertikal + + + Top inset for the background. + + + + Bottom inset for the background. + + + + Horizontal + Horizontal + + + Left inset for the background. + + + + Right inset for the background. + + + + + ItemDelegateSection + + Item Delegate + + + + Highlight + + + + Whether the delegate is highlighted. + + + + + PageIndicatorSpecifics + + Page Indicator + + + + Count + Anzahl + + + The number of pages. + + + + Current + + + + The index of the current page. + + + + Interactive + Interaktiv + + + Whether the control is interactive. + + + + + PageSpecifics + + Page + + + + Title + Titel + + + Title of the page. + + + + Content size + Größe des Inhalts + + + Content width and height used for calculating the total implicit size. + + + + W + width + The width of the object + + + + Content width used for calculating the total implicit width. + + + + H + height + The height of the object + H + + + Content height used for calculating the total implicit height. + + + + + PaneSection + + Pane + + + + Content size + Größe des Inhalts + + + Content width and height used for calculating the total implicit size. + + + + W + width + The width of the object + + + + Content width used for calculating the total implicit width. + + + + H + height + The height of the object + H + + + Content height used for calculating the total implicit height. + + + + + PaneSpecifics + + Font Inheritance + + + + + ProgressBarSpecifics + + Progress Bar + + + + Value + Wert + + + The current value of the progress. + + + + From + Von + + + The starting value for the progress. + + + + To + Bis + + + The ending value for the progress. + + + + Indeterminate + + + + Whether the progress is indeterminate. + + + + + RadioDelegateSpecifics + + Radio Delegate + + + + + RangeSliderSpecifics + + Range Slider + + + + Value 1 + + + + The value of the first range slider handle. + + + + Live + + + + Whether the range slider provides live value updates. + + + + Value 2 + + + + The value of the second range slider handle. + + + + From + Von + + + The starting value of the range slider range. + + + + To + Bis + + + The ending value of the range slider range. + + + + Step size + Schrittweite + + + The step size of the range slider. + + + + Drag threshold + + + + The threshold (in logical pixels) at which a drag event will be initiated. + + + + Snap mode + Einrasten + + + The snap mode of the range slider. + + + + Orientation + Ausrichtung + + + The orientation of the range slider. + + + + + RoundButtonSpecifics + + Round Button + + + + Appearance + + + + Whether the button is flat and/or highlighted. + + + + Flat + Flach + + + Highlight + + + + Radius + Radius + + + Radius of the button. + + + + + ScrollViewSpecifics + + Scroll View + + + + Content size + Größe des Inhalts + + + W + width + The width of the object + + + + Content width used for calculating the total implicit width. + + + + H + height + The height of the object + H + + + Content height used for calculating the total implicit height. + + + + Font Inheritance + + + + + SpinBoxSpecifics + + Spin Box + + + + Value + Wert + + + The current value of the spin box. + + + + From + Von + + + The starting value of the spin box range. + + + + To + Bis + + + The ending value of the spin box range. + + + + Step size + Schrittweite + + + The step size of the spin box. + + + + Editable + + + + Whether the spin box is editable. + + + + Wrap + + + + Whether the spin box values wrap. + + + + + StackViewSpecifics + + Font Inheritance + + + + + SwipeViewSpecifics + + Swipe View + + + + Interactive + Interaktiv + + + Whether the view is interactive. + + + + Orientation + Ausrichtung + + + Orientation of the view. + + + + Font Inheritance + + + + + TabBarSpecifics + + Tab Bar + + + + Position + Position + + + Position of the tab bar. + + + + Content size + Größe des Inhalts + + + Content width and height used for calculating the total implicit size. + + + + W + width + The width of the object + + + + Content width used for calculating the total implicit width. + + + + H + height + The height of the object + H + + + Content height used for calculating the total implicit height. + + + + + TextSection + + Text Area + Textfeld + + + Placeholder text + Platzhaltertext + + + Placeholder text displayed when the editor is empty. + + + + Placeholder color + + + + Placeholder text color. + + + + Hover + + + + Whether text area accepts hover events. + + + + + ToolBarSpecifics + + Tool Bar + + + + Position + Position + + + Position of the toolbar. + + + + Font Inheritance + + + + + ToolSeparatorSpecifics + + Tool Separator + + + + Orientation + Ausrichtung + + + The orientation of the separator. + + + + + TumblerSpecifics + + Tumbler + + + + Visible count + + + + The count of visible items. + + + + Current index + Aktueller Index + + + The index of the current item. + + + + Wrap + + + + Whether the tumbler values wrap. + + + + + LayoutProperties + + Alignment + Ausrichtung + + + Alignment of a component within the cells it occupies. + + + + Fill layout + Ausfüllen + + + Expands the component as much as possible within the given constraints. + + + + Width + Breite + + + Height + Höhe + + + Preferred size + Bevorzugte Größe + + + Preferred size of a component in a layout. If the preferred height or width is -1, it is ignored. + + + + W + width + The width of the object + + + + H + height + The height of the object + H + + + Minimum size + Mindestgröße + + + Minimum size of a component in a layout. + + + + Maximum size + Höchstgröße + + + Maximum size of a component in a layout. + + + + Row span + Zeilen verbinden + + + Row span of a component in a Grid Layout. + + + + Column span + Spalten verbinden + + + Column span of a component in a Grid Layout. + + + + + ColumnLayoutSpecifics + + Column Layout + + + + Column spacing + + + + Layout direction + + + + + RowLayoutSpecifics + + Row Layout + + + + Row spacing + + + + Layout direction + + + + + StackLayoutSpecifics + + Stack Layout + + + + Current index + Aktueller Index + + + + LoaderSpecifics + + Loader + + + + Active + + + + Whether the loader is currently active. + + + + Source + + + + URL of the component to instantiate. + + + + Source component + + + + Component to instantiate. + + + + Asynchronous + Asynchron + + + Whether the component will be instantiated asynchronously. + + + + + RepeaterSpecifics + + Repeater + + + + Model + Modell + + + The model providing data for the repeater. This can simply specify the number of delegate instances to create or it can be bound to an actual model. + + + + Delegate + + + + The delegate provides a template defining each object instantiated by the repeater. + + + + + StateSpecifics + + State + + + + When + + + + Sets when the state should be applied. + + + + Name + Name + + + The name of the state. + + + + Extend + + + + The state that this state extends. + + + + + CppEditor::Internal::CppCodeStyleSettingsPage + + General + Allgemein + + + Content + Inhalt + + + Indent + + + + "public", "protected" and +"private" within class body + "public", "protected" und +"private" im Klassenrumpf + + + Declarations relative to "public", +"protected" and "private" + Deklarationen relativ zu "public", +"protected" und "private" + + + Statements within function body + Anweisungen im Funktionsrumpf + + + Statements within blocks + Anweisungen in Blöcken + + + Declarations within +"namespace" definition + Deklarationen in +Namensraum-Definition + + + Braces + Klammern + + + Indent Braces + Klammern einrücken + + + Class declarations + Klassendeklarationen + + + Namespace declarations + Namensraum-Deklarationen + + + Enum declarations + Deklarationen von Aufzählungen + + + Function declarations + Funktionsdeklarationen + + + Blocks + Blöcke + + + "switch" + "switch" + + + Indent within "switch" + Einrückung in "switch" + + + "case" or "default" + "case" oder "default" + + + Statements relative to +"case" or "default" + Anweisungen relativ zu +"case" oder "default" + + + Blocks relative to +"case" or "default" + Blöcke relativ zu +"case" oder "default" + + + "break" statement relative to +"case" or "default" + "break"-Anweisung relativ zu +"case" oder "default" + + + Alignment + Ausrichtung + + + Align + + + + <html><head/><body> +Enables alignment to tokens after =, += etc. When the option is disabled, regular continuation line indentation will be used.<br> +<br> +With alignment: +<pre> +a = a + + b +</pre> +Without alignment: +<pre> +a = a + + b +</pre> +</body></html> + <html><head/><body> +Bewirkt die Ausrichtung an Operanden nach =, += etc. Wenn die Option deaktiviert ist, wird die reguläre Einrückung von Fortsetzungszeilen verwendet.<br> +<br> +Mit Ausrichtung: +<pre> +a = a + + b +</pre> +Ohne Ausrichtung: +<pre> +a = a + + b +</pre> +</body></html> + + + Align after assignments + Nach Zuweisung ausrichten + + + <html><head/><body> +Adds an extra level of indentation to multiline conditions in the switch, if, while and foreach statements if they would otherwise have the same or less indentation than a nested statement. + +For four-spaces indentation only if statement conditions are affected. Without extra padding: +<pre> +if (a && + b) + c; +</pre> +With extra padding: +<pre> +if (a && + b) + c; +</pre> +</body></html> + <html><head/><body> +Gibt an, wie sich die Rücktaste bezüglich Einrückung verhält. + +<ul> +<li>Keine: Kein besondere Behandlung, normales Verhalten der Rücktaste. +</li> + +<li>Vorangehender Einrückung folgen: In führenden Leerzeichen wird die Einfügemarke auf die nächstliegende Einrückung vorangehender Zeilen gestellt. +</li> + +<li>Ausrücken: Wenn das hinter der Einfügemarke befindliche Zeichen ein Leerzeichen ist, verhält sich die Rücktaste wie ein rückwärtiger Tabulator. +</li> +</ul></body></html> + + + + Add extra padding to conditions +if they would align to the next line + Bedingungen weiter einrücken +wenn sie sonst an der nächsten Zeile ausgerichtet werden würden + + + Pointers and References + Zeiger und Referenzen + + + Bind '*' and '&&' in types/declarations to + Binde '*' und '&&' in Typen und Deklarationen an + + + <html><head/><body>This does not apply to the star and reference symbol in pointer/reference to functions and arrays, e.g.: +<pre> int (&rf)() = ...; + int (*pf)() = ...; + + int (&ra)[2] = ...; + int (*pa)[2] = ...; + +</pre></body></html> + <html><head/><body>Dies bezieht sich nicht auf die Stern- und Referenzsymbole in Zeigern auf / Referenzen zu Funktionen und Feldern, zum Beispiel: +<pre> int (&rf)() = ...; + int (*pf)() = ...; + + int (&ra)[2] = ...; + int (*pa)[2] = ...; + +</pre></body></html> + + + Identifier + Bezeichner + + + Type name + Typname + + + Left const/volatile + Linkes const/volatile + + + This does not apply to references. + Bezieht sich nicht auf Referenzen. + + + Right const/volatile + Rechtes const/volatile + + + + CppEditor::Internal::CppFileSettingsPage + + Headers + Header-Dateien + + + &Suffix: + &Endung: + + + S&earch paths: + &Suchpfade: + + + Comma-separated list of header paths. + +Paths can be absolute or relative to the directory of the current open document. + +These paths are used in addition to current directory on Switch Header/Source. + Kommaseparierte Liste von Pfaden für Header-Dateien. + +Die Pfade können absolut oder relativ zum Verzeichnis des gegenwärtig geöffneten Dokuments angegeben werden. + +Diese Pfade werden zusätzlich zum aktuellen Verzeichnis beim Wechseln zwischen Header- und Quelldatei verwendet. + + + &Prefixes: + &Präfixe: + + + Comma-separated list of header prefixes. + +These prefixes are used in addition to current file name on Switch Header/Source. + Kommaseparierte Liste der Header-Präfixe. + +Diese Präfixe werden zusätzlich zum Dateinamen beim Wechseln zwischen Header- und Quelldatei verwendet. + + + Include guards + Include-Guards + + + Uses "#pragma once" instead of "#ifndef" include guards. + Verwendet "#pragma once" statt Include-Guards mit "#ifndef". + + + Use "#pragma once" instead of "#ifndef" guards + "#pragma once" statt Include-Guards mit "#ifndef" verwenden + + + Sources + Quelldateien + + + S&uffix: + E&ndung: + + + Se&arch paths: + S&uchpfade: + + + Comma-separated list of source paths. + +Paths can be absolute or relative to the directory of the current open document. + +These paths are used in addition to current directory on Switch Header/Source. + Kommaseparierte Liste von Pfaden für Quelldateien. + +Die Pfade können absolut oder relativ zum Verzeichnis des gegenwärtig geöffneten Dokuments angegeben werden. + +Diese Pfade werden zusätzlich zum aktuellen Verzeichnis beim Wechseln zwischen Header- und Quelldatei verwendet. + + + P&refixes: + P&räfixe: + + + Comma-separated list of source prefixes. + +These prefixes are used in addition to current file name on Switch Header/Source. + Kommaseparierte Liste der Quelldatei-Präfixe. + +Diese Präfixe werden zusätzlich zum Dateinamen beim Wechseln zwischen Header- und Quelldatei verwendet. + + + &Lower case file names + &Kleinbuchstaben für Dateinamen verwenden + + + License &template: + Lizenz-&Vorlage: + + + + CppQuickFixSettingsWidget + + Generated Function Locations + + + + Default + Vorgabe + + + ≥ + + + + lines + + + + Generate Getters + + + + Generate Setters + + + + In .cpp file: + + + + Outside class: + + + + Inside class: + + + + Getter Setter Generation Properties + + + + Getter name: + + + + For example, new<Name> + + + + Setter name: + + + + Setters should be slots + + + + Generate signals with the new value as parameter + + + + Getter attributes: + + + + Setter parameter name: + + + + Reset name: + + + + Signal name: + + + + See tool tip for more information + + + + Normally reset<Name> + + + + For example, [[nodiscard]] + + + + Normally <name>Changed + + + + Member variable name: + + + + For example, m_<name> + + + + Missing Namespace Handling + + + + Generate missing namespaces + + + + Add "using namespace ..." + + + + Rewrite types to match the existing namespaces + + + + <html><head/><body><p>Uncheck this to make Qt Creator try to derive the type of expression in the &quot;Assign to Local Variable&quot; quickfix.</p><p>Note that this might fail for more complex types.</p></body></html> + + + + Use type "auto" when creating new variables + + + + Custom Getter Setter Templates + + + + Template + + + + Types: + Typen: + + + Separate the types by comma. + + + + Comparison: + + + + Assignment: + + + + Return expression: + + + + Return type: + + + + Use <new> and <cur> to access the parameter and current value. Use <type> to access the type and <T> for the template parameter. + + + + Add + Hinzufügen + + + Remove + + + + Normally arguments get passed by const reference. If the Type is one of the following ones, the argument gets passed by value. Namespaces and template arguments are removed. The real Type must contain the given Type. For example, "int" matches "int32_t" but not "vector<int>". "vector" matches "std::pmr::vector<int>" but not "std::optional<vector<int>>" + + + + Value types: + + + + Return non-value types by const reference + + + + Use <name> for the variable +Use <camel> for camel case +Use <snake> for snake case +Use <Name>, <Camel> and <Snake> for upper case +e.g. name = "m_test_foo_": +"set_<name> => "set_test_foo" +"set<Name> => "setTest_foo" +"set<Camel> => "setTestFoo" + + + + + Gerrit::Internal::GerritPushDialog + + Push to Gerrit + Push zu Gerrit + + + &Reviewers: + &Reviewer: + + + Checked - Mark change as private. +Unchecked - Remove mark. +Partially checked - Do not change current state. + Markiert - Änderung als privat markieren. +Nicht markiert - Markierung entfernen. +Teilmarkiert - Zustand nicht verändern. + + + &Draft/private + &Entwurf/privat + + + &Work-in-progress + &In Arbeit + + + Pushes the selected commit and all dependent commits. + Push des ausgewählten Commit und aller abhängigen Commits. + + + &Topic: + &Topic: + + + Push: + Push: + + + Commits: + Commits: + + + Local repository + Lokales Repository + + + To: + + + + Number of commits + Anzahl der Commits + + + Comma-separated list of reviewers. + +Reviewers can be specified by nickname or email address. Spaces not allowed. + +Partial names can be used if they are unambiguous. + Kommaseparierte Liste der Reviewer. + +Reviewer können mit Benutzernamen oder E-Mail-Adresse angegeben werden. Leerzeichen sind nicht erlaubt. + +Teilnamen können verwendet werden, sofern sie eindeutig sind. + + + + QmlDesigner::AnnotationEditorWidget + + Add Status + + + + In Progress + + + + In Review + + + + Done + + + + Tab view + + + + Table view + + + + Selected component + + + + Name + Name + + + Tab 1 + + + + Tab 2 + + + + + QmlDesigner::Internal::AssetImportUpdateDialog + + Select Files to Update + + + + Expand All + + + + Collapse All + + + + + QmlDesigner::TransitionEditorSettingsDialog + + Transition Settings + + + + Add Transition + + + + Remove Transition + + + + No Transition + + + + + AccountImage + + Account + + + + + Language + + None + + + + + ADS::DockAreaTitleBar + + Detach Area + + + + Close Area + + + + Close Other Areas + + + + + ADS::DockManager + + Cannot Save Workspace + + + + Could not save workspace to file %1 + + + + Delete Workspace + + + + Delete Workspaces + + + + Delete workspace %1? + + + + Delete these workspaces? + %1 + + + + Cannot Restore Workspace + + + + Could not restore workspace %1 + + + + + ADS::WorkspaceNameInputDialog + + Enter the name of the workspace: + + + + + ADS::WorkspaceView + + Import Workspace + + + + Export Workspace + + + + + JsonRpcMessage + + Could not parse JSON message "%1". + Die JSON-Nachricht konnte nicht ausgewertet werden: "%1". + + + Expected a JSON object, but got a JSON "%1" value. + + + + + QmlJSTools::FindExportedCppTypes + + The type will only be available in the QML editors when the type name is a string literal. + Dieser Typ wird im QML Editor nur sichtbar sein, wenn der Typname ein Zeichenketten-Literal ist. + + + The module URI cannot be determined by static analysis. The type will not be available +globally in the QML editor. You can add a "// @uri My.Module.Uri" annotation to let +the QML editor know about a likely URI. + + + + must be a string literal to be available in the QML editor + muss eine Zeichenkette sein, um im QML-Editor verfügbar zu sein + + + + Utils::Archive + + File format not supported. + + + + Could not find any unarchiving executable in PATH (%1). + + + + Command failed. + + + + Running %1 +in "%2". + + + Running <cmd> in <workingdirectory> + + + + + Utils::StringAspect + + Reset + Zurücksetzen + + + + Utils::TriStateAspect + + Enable + Aktivieren + + + Disable + Deaktivieren + + + Leave at Default + Vorgabe beibehalten + + + + Utils::BaseTreeView + + Show %1 Column + Spalte %1 anzeigen + + + + Utils::FileSystemModel + + My Computer + + + + Computer + Computer + + + Name + Name + + + Size + Größe + + + Kind + Match OS X Finder + + + + Type + All other platforms + Typ + + + Date Modified + + + + + QAbstractFileIconProvider + + File Folder + Match Windows Explorer + + + + Folder + All other platforms + + + + + Utils::LauncherSocket + + Failed to start process launcher at "%1": %2 + + + + Process launcher closed unexpectedly: %1 + + + + Socket error: %1 + + + + Internal protocol error: invalid packet size %1. + + + + Internal protocol error: invalid packet type %1. + + + + Launcher socket closed unexpectedly. + + + + + Utils::LauncherHandle + + Process launcher socket error. + + + + + Utils::MinimizableInfoBars + + Minimize + Minimieren + + + + Utils::NameValuesDialog + + &OK + + + + &Cancel + &Abbrechen + + + + Utils::VariableChooser + + Insert Variable + Variable einfügen + + + Current Value: %1 + Aktueller Wert: %1 + + + Insert Unexpanded Value + Nicht expandierten Wert einfügen + + + Insert "%1" + "%1" einfügen + + + Insert Expanded Value + Expandierten Wert einfügen + + + Select a variable to insert. + Wählen Sie eine Variable aus, die eingefügt werden soll. + + + Variables + Variablen + + + + AutotoolsProjectManager + + Arguments: + Argumente: + + + Configuration unchanged, skipping autogen step. + Unveränderte Konfiguration, autogen-Schritt wird übersprungen. + + + Autogen + Display name for AutotoolsProjectManager::AutogenStep id. + Autogen + + + Configuration unchanged, skipping autoreconf step. + Unveränderte Konfiguration, autoreconf-Schritt wird übersprungen. + + + Autoreconf + Display name for AutotoolsProjectManager::AutoreconfStep id. + Autoreconf + + + Autotools Manager + Autotools-Verwaltung + + + Configuration unchanged, skipping configure step. + Unveränderte Konfiguration, configure-Schritt wird übersprungen. + + + Configure + Display name for AutotoolsProjectManager::ConfigureStep id. + Konfigurieren + + + Parsing %1 in directory %2 + Werte %1 im Verzeichnis %2 aus + + + Parsing directory %1 + Werte Verzeichnis %1 aus + + + + BinEditor::Internal::BinEditorPlugin + + &Undo + &Rückgängig + + + + Qdb::Internal::DeviceDetector + + Device "%1" %2 + + + + Qt Debug Bridge device %1 + + + + Device detection error: %1 + + + + + Qdb::Internal::QdbDeviceTracker + + Shutting down device discovery due to unexpected response: %1 + + + + + Qdb::Internal::QdbMessageTracker + + Shutting down message reception due to unexpected response: %1 + + + + QDB message: %1 + + + + + Qdb::Internal::QdbWatcher + + Unexpected QLocalSocket error: %1 + + + + Could not connect to QDB host server even after trying to start it. + + + + Invalid JSON response received from QDB server: %1 + + + + Could not find QDB host server executable. You can set the location with environment variable %1. + + + + QDB host server started. + + + + Could not start QDB host server in %1 + + + + Starting QDB host server. + + + + + Qdb::Internal::QdbDeployConfiguration + + Deploy to Boot2Qt target + + + + + Qdb::Internal::QdbMakeDefaultAppStep + + Set this application to start by default + + + + Reset default application + + + + Change default application + + + + + Qdb + + Flash wizard "%1" failed to start. + + + + Flash wizard executable "%1" not found. + + + + Flash Boot to Qt Device + + + + + QtVersion + + Boot2Qt + Qt version is used for Boot2Qt development + Boot2Qt + + + + Qdb::Internal::QdbStopApplicationService + + Could not check and possibly stop running application. + + + + Checked that there is no running application. + + + + Stopped the running application. + + + + + Qdb::Internal::QdbStopApplicationStep + + Stop already running application + + + + + Boot2Qt + + Boot2Qt: %1 + + + + + ClangCodeModel::Internal::ClangdClient + + clangd + + + + Indexing %1 with clangd + + + + Indexing session with clangd + + + + Memory Usage + Speicherverbrauch + + + Location: %1 + Parent folder for proposed #include completion + Pfad: %1 + + + collecting overrides ... + + + + <base declaration> + + + + + ClangCodeModel::Internal::ClangdFindReferences + + C++ Usages: + + + + Re&name %n files + + Eine Datei umbe&nennen + %n Dateien umbe&nennen + + + + Files: +%1 + Dateien: +%1 + + + + ClangCodeModel::Internal::ClangModelManagerSupport + + The use of clangd for the C/C++ code model was disabled, because it is likely that its memory requirements would be higher than what your system can handle. + + + + With clangd enabled, Qt Creator fully supports modern C++ when highlighting code, completing symbols and so on.<br>This comes at a higher cost in terms of CPU load and memory usage compared to the built-in code model, which therefore might be the better choice on older machines and/or with legacy code.<br>You can enable/disable and fine-tune clangd <a href="dummy">here</a>. + + + + Enable Anyway + + + + Cannot use clangd: Failed to generate compilation database: +%1 + + + + + ClangdTextMark + + Code Model Error + Codemodell-Fehler + + + Code Model Warning + Codemodell-Warnung + + + Copy to Clipboard + Clang Code Model Marks + In die Zwischenablage kopieren + + + Disable Diagnostic in Current Project + + + + + ClangUtils + + Could not retrieve build directory. + + + + Could not create "%1": %2 + + + + + ClangFormat::ClangFormatGlobalConfigWidget + + Formatting mode: + + + + Format while typing + Bei der Eingabe formatieren + + + Format edited code on file save + Bearbeiteten Quelltext beim Speichern der Datei formatieren + + + Override Clang Format configuration file + Clang-Format-Konfigurationsdatei überschreiben + + + ClangFormat global setting: + + + + Indenting only + + + + Full formatting + + + + Disable + Deaktivieren + + + The current project has its own .clang-format file which can be overridden by the settings below. + + + + Override Clang Format configuration file with the chosen configuration. + + + + + ClangFormatStyleFactory + + ClangFormat + ClangFormat + + + + ClangTools::Internal::ClangToolsProjectSettingsWidget + + Restore Global Settings + Globale Einstellungen wiederherstellen + + + Go to Analyzer + + + + Remove Selected + Ausgewählte entfernen + + + Remove All + Alle entfernen + + + Suppressed diagnostics + Unterdrückte Diagnosemeldungen + + + + ClangToolsDiagnosticModel + + No Fixits + Keine Korrekturen + + + Not Scheduled + nicht eingeplant + + + Invalidated + Ungültig + + + Scheduled + eingeplant + + + Failed to Apply + Konnte nicht angewendet werden + + + Applied + Angewendet + + + + ClangTools::Internal::TidyOptionsDialog + + Options for %1 + + + + Option + + + + Value + Wert + + + Add Option + + + + Remove Option + + + + <new option> + + + + + ClangTools::Internal::TidyChecksTreeModel + + Options + Einstellungen + + + + Clang Tools + + Custom Configuration + + + + + ClangTools::Internal::DiagnosticMark + + Copy to Clipboard + In die Zwischenablage kopieren + + + Disable Diagnostic + + + + + ClangTools::Internal::FilterChecksModel + + Check + + + + + ClangTools::Internal::SettingsWidget + + Clang-Tidy Executable + + + + Clazy Executable + + + + Executables + + + + Clang-Tidy: + + + + Clazy-Standalone: + + + + + ClearCase::Tr::Tr + + ClearCase Command + ClearCase-Befehl + + + + CMakeProjectManager::Tr::Tr + + Tools + Werkzeuge + + + + Coco::CocoPlugin + + Select a Squish Coco CoverageBrowser Executable + + + + CoverageBrowser: + + + + Coco instrumentation files (*.csmes) + + + + Select a Squish Coco Instrumentation File + + + + CSMes: + + + + + CompilationDatabaseProjectManager::Internal::CompilationDatabaseProjectManagerPlugin + + Change Root Directory + + + + + ConanPackageManager::Internal::ConanInstallStep + + Conan install + + + + Conan file: + + + + Enter location of conanfile.txt or conanfile.py. + + + + Additional arguments: + Zusätzliche Argumente: + + + Run conan install + + + + + Core::Internal::ActionsFilter + + Global Actions & Actions from the Menu + Globale Aktionen & Aktionen aus dem Menü + + + Triggers an action. If it is from the menu it matches any part of a menu hierarchy, separated by ">". For example "sess def" matches "File > Sessions > Default". + Löst eine Aktion aus. Aktionen aus dem Menü werden inklusive Hierarchie, mit ">" getrennt, gefiltert. Zum Beispiel ist "Datei > Sitzungen > Vorgabe" ein Treffer für "sitz vorg". + + + + Core::ExternalTool + + System Environment + Systemumgebung + + + Error while parsing external tool %1: %2 + Fehler beim Auswerten der Ausgabe des externen Programms %1: %2 + + + + Core::FilePropertiesDialog + + Name: + Name: + + + Path: + Pfad: + + + MIME type: + MIME-Typ: + + + Default editor: + Voreingestellter Editor: + + + Line endings: + Zeilenenden: + + + Indentation: + Einrückung: + + + Owner: + Besitzer: + + + Group: + Gruppe: + + + Size: + Größe: + + + Last read: + Zuletzt gelesen: + + + Last modified: + Zuletzt geändert: + + + Readable: + Lesbar: + + + Writable: + Schreibbar: + + + Executable: + Ausführbar: + + + Symbolic link: + Symbolischer Link: + + + Unknown + Unbekannt + + + Windows (CRLF) + Windows (CRLF) + + + Unix (LF) + Unix (LF) + + + Mac (CR) + Mac (CR) + + + Mixed + Gemischt + + + %1 Spaces + %1 Leerzeichen + + + Tabs + Tabulatoren + + + Undefined + Undefiniert + + + + Core::ExternalToolRunner + + Could not find executable for "%1" (expanded "%2") + Die ausführbare Datei von "%1" (expandiert: "%2") konnte nicht gefunden werden + + + Starting external tool "%1" + Starte externes Werkzeug "%1" + + + "%1" finished + "%1" beendet + + + "%1" finished with error + "%1" mit Fehler beendet + + + + Core::FileUtils + + Failed to rename the include guard in file "%1". + Konnte Include-Guard in der Datei "%1" nicht umbenennen. + + + + Core::FolderNavigationWidget + + Show Hidden Files + Versteckte Dateien anzeigen + + + Show Bread Crumbs + Breadcrumb-Navigation anzeigen + + + Show Folders on Top + Verzeichnisse zuerst anzeigen + + + Synchronize with Editor + Mit Editor synchronisieren + + + Synchronize Root Directory with Editor + Wurzelverzeichnis aus Editor übernehmen + + + New File + Title of dialog + Neue Datei + + + New Folder + Neues Verzeichnis + + + Open "%1" + "%1" öffnen + + + Remove Folder + Verzeichnis löschen + + + Collapse All + Alle einklappen + + + Error + Fehler + + + Computer + Computer + + + Home + Benutzerverzeichnis + + + Projects + Projekte + + + + Core::FolderNavigationWidgetFactory + + File System + Dateisystem + + + Meta+Y,Meta+F + Meta+Y,Meta+F + + + Alt+Y,Alt+F + Alt+Y,Alt+F + + + Options + Einstellungen + + + Add New... + Hinzufügen... + + + Rename... + Umbenennen... + + + Remove... + Entfernen... + + + + Core::Internal::LoggingCategoryModel + + Category + Kategorie + + + Type + Typ + + + Color + Farbe + + + + LoggingViewManagerWidget + + Logging Category Viewer + + + + Save Log + + + + Clear + Löschen + + + Stop Logging + + + + Toggle Qt Internal Logging + + + + Auto Scroll + + + + Timestamps + + + + Message Types + + + + Timestamp + Zeitstempel + + + Category + + + + Type + Typ + + + Message + + + + Start Logging + + + + Copy Selected Logs + + + + Copy All + Alles kopieren + + + Save Enabled as Preset... + + + + Update from Preset... + + + + Uncheck All + + + + Save Logs As + + + + Error + Fehler + + + Failed to write logs to "%1". + + + + Failed to open file "%1" for writing logs. + + + + Save Enabled Categories As + + + + Failed to write preset file "%1". + + + + Load Enabled Categories From + + + + Failed to open preset file "%1" for reading + + + + Failed to read preset file "%1": %2 + + + + Unexpected preset file format. + + + + + Cppcheck::Internal::DiagnosticView + + Cppcheck Diagnostics + + + + + TextMark + + Copy to Clipboard + In die Zwischenablage kopieren + + + + CppEditor::AbstractEditorSupport + + The file name. + Der Dateiname. + + + The class name. + Der Klassenname. + + + + CppEditor::Internal::BuiltinIndexingSupport + + Parsing C/C++ Files + Werte C/C++-Dateien aus + + + + CppEditor::ClangDiagnosticConfigsSelectionWidget + + Diagnostic configuration: + + + + + CppEditor::ClangDiagnosticConfigsWidget + + Diagnostic Configurations + Diagnosekonfigurationen + + + Copy... + Kopieren... + + + Rename... + Umbenennen... + + + Remove + + + + Clang Warnings + Clang-Warnungen + + + Copy Diagnostic Configuration + Diagnosekonfiguration kopieren + + + Diagnostic configuration name: + Diagnosekonfigurationsname: + + + %1 (Copy) + %1 (Kopie) + + + Rename Diagnostic Configuration + Diagnosekonfiguration umbenennen + + + New name: + Neuer Name: + + + Option "%1" is invalid. + Option "%1" ist ungültig. + + + Copy this configuration to customize it. + Kopieren Sie diese Konfiguration, um sie anzupassen. + + + Configuration passes sanity checks. + Die Konfiguration besteht die Sanity Checks. + + + %1 + %1 + + + + CppEditor::ConfigsModel + + Built-in + Integriert + + + Custom + Benutzerdefiniert + + + + CppEditor::ClangBaseChecks + + For appropriate options, consult the GCC or Clang manual pages or the <a href="https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html">GCC online documentation</a>. + Für passende Optionen lesen Sie das GCC- oder Clang-Handbuch oder auch die <a href="https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html">GCC-Onlinedokumentation</a>. + + + Use diagnostic flags from build system + Diagnose-Flags des Build-Systems verwenden + + + + CppEditor + + Follow Symbol to Type is only available when using clangd + + + + C++ + C++ + + + Quick Fixes + + + + Code Style + Coding-Stil + + + File Naming + Namenskonventionen für Dateien + + + Diagnostic Configurations + Diagnosekonfigurationen + + + C++ Symbols in Current Document + C++-Symbole im aktuellen Dokument + + + C++ Classes + C++-Klassen + + + C++ Functions + C++-Funktionen + + + All Included C/C++ Files + Alle eingebundenen C/C++-Dateien + + + C++ Classes, Enums, Functions and Type Aliases + + + + C++ Symbols + C++-Symbole + + + Cannot show preprocessed file: %1 + + + + %1, falling back to built-in preprocessor. + + + + Failed to open output file "%1". + + + + Failed to write output file "%1". + + + + Could not determine which compiler to invoke. + + + + Could not determine compiler command line. + + + + The project contains C source files, but the currently active kit has no C compiler. The code model will not be fully functional. + Das Projekt enthält C-Quelldateien, aber das aktive Kit hat keinen C-Compiler. Das Codemodell wird nur eingeschränkt funktionieren. + + + The project contains C++ source files, but the currently active kit has no C++ compiler. The code model will not be fully functional. + Das Projekt enthält C++-Quelldateien, aber das aktive Kit hat keinen C++-Compiler. Das Codemodell wird nur eingeschränkt funktionieren. + + + + CppEditor::ClangdSettings + + Background Priority + + + + Normal Priority + + + + Low Priority + + + + Off + Aus + + + + CppEditor::Internal::CppCodeModelSettingsWidget + + Interpret ambiguous headers as C headers + Mehrdeutige Header als C-Header behandeln + + + Do not index files greater than + Dateien nicht indizieren, wenn sie größer sind als + + + MB + MB + + + Ignore precompiled headers + Vorkompilierte Header-Dateien nicht beachten + + + <html><head/><body><p>When precompiled headers are not ignored, the parsing for code completion and semantic highlighting will process the precompiled header before processing any file.</p></body></html> + <html><head/><body><p>Code-Vervollständigung und semantische Hervorhebung verarbeiten die vorkompilierte Headerdatei vor jeder anderen Datei sofern vorkompilierte Headerdateien nicht übersprungen werden.</p></body></html> + + + Use built-in preprocessor to show pre-processed files + + + + Uncheck this to invoke the actual compiler to show a pre-processed source file in the editor. + + + + General + Allgemein + + + Code Model + Codemodell + + + + CppEditor::Internal::ClangdSettingsWidget + + If background indexing is enabled, global symbol searches will yield +more accurate results, at the cost of additional CPU load when +the project is first opened. +The indexing result is persisted in the project's build directory. + +If you disable background indexing, a faster, but less accurate, +built-in indexer is used instead. + +The thread priority for building the background index can be adjusted since clangd 15. +Background Priority: Minimum priority, runs on idle CPUs. May leave 'performance' cores unused. +Normal Priority: Reduced priority compared to interactive work. +Low Priority: Same priority as other clangd work. + + + + Number of worker threads used by clangd. Background indexing also uses this many worker threads. + + + + Controls whether clangd may insert header files as part of symbol completion. + + + + Defines the amount of time Qt Creator waits before sending document changes to the server. +If the document changes again while waiting, this timeout resets. + + + + Files greater than this will not be opened as documents in clangd. +The built-in code model will handle highlighting, completion and so on. + + + + The maximum number of completion results returned by clangd. + + + + Use clangd + + + + Insert header files on completion + + + + Ignore files greater than + + + + Completion results: + + + + No limit + + + + Path to executable: + + + + Background indexing: + + + + Worker thread count: + + + + Document update threshold: + + + + Sessions with a single clangd instance + + + + By default, Qt Creator runs one clangd process per project. +If you have sessions with tightly coupled projects that should be +managed by the same clangd process, add them here. + + + + Add ... + Hinzufügen... + + + Remove + + + + Choose a session: + + + + Additional settings are available via <a href="https://clangd.llvm.org/config"> clangd configuration files</a>.<br>User-specific settings go <a href="%1">here</a>, project-specific settings can be configured by putting a .clangd file into the project source tree. + + + + Failed to retrieve clangd version: Unexpected clangd output. + + + + The clangd version is %1, but %2 or greater is required. + + + + Clangd + + + + + CppEditor::Internal::CppEditorOutline + + Sort Alphabetically + Alphabetisch sortieren + + + + CppEditor::CppEditorWidget + + &Refactor + &Refactoring + + + + CppEditor::Internal::CppFileSettingsWidget + + /************************************************************************** +** %1 license header template +** Special keywords: %USER% %DATE% %YEAR% +** Environment variables: %$VARIABLE% +** To protect a percent sign, use '%%'. +**************************************************************************/ + + /************************************************************************** +** %1 license header template +** Special keywords: %USER% %DATE% %YEAR% +** Environment variables: %$VARIABLE% +** To protect a percent sign, use '%%'. +**************************************************************************/ + + + + Edit... + Bearbeiten... + + + Choose Location for New License Template File + Dateiname für eine neue Lizenzvorlage + + + + CppEditor::Internal::CppFindReferences + + Reads + + + + Writes + + + + Declarations + Deklarationen + + + Other + Andere + + + C++ Usages: + + + + Searching for Usages + Suche nach Referenzen + + + Re&name %n files + + Eine Datei umbe&nennen + %n Dateien umbe&nennen + + + + Files: +%1 + Dateien: +%1 + + + C++ Macro Usages: + C++ Macro-Referenzen: + + + + CppEditor::Internal::CppIncludesFilter + + Matches all files that are included by all C++ files in all projects. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + + + + + CppEditor::OverviewModel + + <Select Symbol> + <Symbol auswählen> + + + <No Symbols> + <Keine Symbole> + + + + CppEditor::CppProjectUpdater + + Preparing C++ Code Model + + + + + CppEditor::Quickfix + + Add Class Member "%1" + + + + Provide the type + + + + Data type: + + + + + AddImplementationsDialog + + Member Function Implementations + + + + None + + + + Inline + + + + Outside Class + + + + Default implementation location: + + + + + GenerateGettersSettersDialog + + Getters and Setters + + + + Member + + + + Getter + + + + Setter + + + + Signal + Signal + + + Reset + Zurücksetzen + + + QProperty + + + + Constant QProperty + + + + Create getters for all members + + + + Create setters for all members + + + + Create signals for all members + + + + Create Q_PROPERTY for all members + + + + Select the getters and setters to be created. + + + + + CppEditor::Internal::ConstructorParams + + Initialize in Constructor + + + + Member Name + + + + Parameter Name + + + + Default Value + + + + + GenerateConstructorDialog + + Constructor + + + + Parameters without default value must come before parameters with default value. + + + + Initialize all members + + + + Access + Zugriff + + + Select the members to be initialized in the constructor. +Use drag and drop to change the order of the parameters. + + + + + CppEditor::Internal::CppQuickFixProjectsSettings + + Quick Fix settings are saved in a file. Existing settings file "%1" found. Should this file be used or a new one be created? + + + + Switch Back to Global Settings + + + + Use Existing + + + + Create New + Neu erstellen + + + + CppEditor::Internal::CppQuickFixProjectSettingsWidget + + Custom settings are saved in a file. If you use the global settings, you can delete that file. + + + + Delete Custom Settings File + + + + Resets all settings to the global settings. + + + + Reset to Global + + + + + CppEditor::CppToolsSettings + + Global + Settings + Global + + + Qt + Qt + + + GNU + GNU + + + Old Creator + Veraltete Creator-Konvention + + + + CppTypeHierarchyTreeView + + Open in Editor + In Editor öffnen + + + Open Type Hierarchy + Klassenhierarchie öffnen + + + Expand All + + + + Collapse All + + + + + CppEditor::Internal::SymbolsFindFilter + + Searching for Symbol + Suche nach Symbol + + + C++ Symbols: + C++-Symbole: + + + Classes + Klassen + + + Functions + Funktionen + + + Enums + Enumerationen + + + Declarations + Deklarationen + + + Scope: %1 +Types: %2 +Flags: %3 + Bereich: %1 +Typen: %2 +Flags: %3 + + + All + Alle + + + Projects + Projekte + + + + CppEditor::Internal::SymbolsFindFilterConfigWidget + + Types: + Typen: + + + Classes + Klassen + + + Functions + Funktionen + + + Enums + Enumerationen + + + Declarations + Deklarationen + + + Projects only + Nur Projekte + + + All files + Alle Dateien + + + + CVS + + Annotate revision "%1" + Annotation für Revision "%1" + + + Ignore Whitespace + Leerzeichen ignorieren + + + Ignore Blank Lines + Leerzeilen ignorieren + + + &Edit + + + + CVS Checkout + CVS-Checkout + + + Triggers a CVS version control operation. + + + + &CVS + &CVS + + + Diff Current File + + + + Diff "%1" + Diff für "%1" + + + Meta+C,Meta+D + Meta+C,Meta+D + + + Alt+C,Alt+D + Alt+C,Alt+D + + + Filelog Current File + Filelog für Datei + + + Filelog "%1" + Filelog für "%1" + + + Annotate Current File + Annotation für Datei + + + Annotate "%1" + Annotation für "%1" + + + Add + Hinzufügen + + + Add "%1" + "%1" hinzufügen + + + Meta+C,Meta+A + Meta+C,Meta+A + + + Alt+C,Alt+A + Alt+C,Alt+A + + + Commit Current File + Commit der aktuellen Datei + + + Commit "%1" + Commit von "%1" + + + Meta+C,Meta+C + Meta+C,Meta+C + + + Alt+C,Alt+C + Alt+C,Alt+C + + + Delete... + Löschen... + + + Delete "%1"... + Lösche "%1"... + + + Revert... + Rückgängig machen... + + + Revert "%1"... + Änderungen in "%1" rückgängig machen... + + + Edit + + + + Edit "%1" + "%1" anfordern + + + Unedit + Anforderung zurücknehmen + + + Unedit "%1" + Anforderung der Datei '%1" zurücknehmen + + + Unedit Repository + Anforderung im gesamten Repository zurücknehmen + + + Diff Project + Diff für Projekt + + + Diff Project "%1" + Diff für Projekt "%1" + + + Project Status + + + + Status of Project "%1" + Status des Projekts "%1" + + + Log Project + Log für Projekt + + + Log Project "%1" + Log für Projekt "%1" + + + Update Project + Projekt auf aktuellen Stand bringen + + + Update Project "%1" + Projekt "%1"auf aktuellen Stand bringen + + + Commit Project + Commit des Projekts + + + Commit Project "%1" + Commit des Projekts "%1" + + + Update Directory + Verzeichnis aktualisieren + + + Update Directory "%1" + Verzeichnis "%1" aktualisieren + + + Commit Directory + Commit des Verzeichnisses + + + Commit Directory "%1" + Commit des Verzeichnisses "%1" + + + Diff Repository + Diff des Repositorys + + + Repository Status + Status des Repositorys + + + Repository Log + Log des Repositorys + + + Update Repository + Repository auf den aktuellen Stand bringen + + + Commit All Files + Commit aller Dateien + + + Revert Repository... + Änderungen im gesamten Repository rückgängig machen... + + + Revert Repository + Alle Änderungen rückgängig machen + + + Revert all pending changes to the repository? + Möchten Sie alle ausstehenden Änderungen des Repositorys verwerfen? + + + Revert failed: %1 + + + + The file has been changed. Do you want to revert it? + + + + Another commit is currently being executed. + Es läuft bereits ein Commit-Vorgang. + + + There are no modified files. + Es gibt keine geänderten Dateien. + + + Would you like to discard your changes to the repository "%1"? + Möchten Sie alle ausstehenden Änderungen des Repositorys "%1" verwerfen? + + + Would you like to discard your changes to the file "%1"? + Möchten Sie alle ausstehenden Änderungen in der Datei "%1" verwerfen? + + + Project status + Status des Projekts + + + Repository status + Status des Repositorys + + + Cannot find repository for "%1". + Kann das Repository für "%1" nicht finden. + + + The initial revision %1 cannot be described. + Die erste Version (%1) kann nicht weiter beschrieben werden. + + + Parsing of the log output failed. + Die Log-Ausgabe konnte nicht ausgewertet werden. + + + Could not find commits of id "%1" on %2. + Es konnten keine Commits des Datums %2 mit der ID "%1" gefunden werden. + + + No CVS executable specified. + Es wurde keine ausführbare Datei für CVS angegeben. + + + CVS Command + CVS-Kommando + + + CVS command: + CVS-Kommando: + + + CVS root: + CVS-Quelle (CVSROOT): + + + Describe all files matching commit id + Alle zur Commit-ID gehörenden Dateien beschreiben + + + When checked, all files touched by a commit will be displayed when clicking on a revision number in the annotation view (retrieved via commit ID). Otherwise, only the respective file will be displayed. + Wenn die Option aktiviert ist, werden beim Klick auf die Revisionsnummer in der Annotationsansicht alle Dateien angezeigt, die zu einem Commit gehören (mittels Commit-ID bestimmt). Ansonsten wird nur die betreffende Datei angezeigt. + + + CVS + CVS + + + Configuration + Konfiguration + + + Miscellaneous + Sonstige Einstellungen + + + Added + Hinzugefügt + + + Removed + Gelöscht + + + Modified + Geändert + + + + Docker + + Checking docker daemon + + + + Path "%1" is not a directory or does not exist. + + + + Docker + + + + Docker Image + + + + Docker Image "%1" (%2) + + + + Error starting remote shell. No container. + + + + Error starting remote shell: %1 + + + + Open Shell in Container + + + + Docker daemon appears to be not running. Verify daemon is up and running and reset the docker daemon on the docker device settings page or restart Qt Creator. + + + + Docker Image Selection + + + + Show Unnamed Images + + + + Loading ... + + + + Running "%1" + + + + + Unexpected result: %1 + + + + Done. + Fertig. + + + Error: %1 + Fehler: %1 + + + Docker Device + + + + Repository: + Repository: + + + Tag: + + + + Image ID: + + + + Daemon state: + + + + Clears detected daemon state. It will be automatically re-evaluated next time access is needed. + + + + Do not modify entry point + + + + Prevents modifying the entry point of the image. Enable only if the image starts into a shell. + + + + Run as outside user + + + + Uses user ID and group ID of the user running Qt Creator in the docker container. + + + + Paths to mount: + + + + Source directory list should not be empty. + + + + Host directories to mount into the container + + + + Maps paths in this list one-to-one to the docker container. + + + + Auto-detect Kit Items + + + + Remove Auto-Detected Kit Items + + + + List Auto-Detected Kit Items + + + + Search in PATH + + + + Search in Selected Directories + + + + Search in PATH and Additional Directories + + + + Semicolon-separated list of directories + + + + Select the paths in the docker image that should be scanned for kit entries. + + + + Docker daemon appears to be not running. + + + + Docker daemon appears to be running. + + + + Search Locations: + + + + Detection log: + + + + Daemon state not evaluated. + + + + Docker daemon running. + + + + Docker daemon not running. + + + + Docker CLI + + + + Command: + + + + Configuration + Konfiguration + + + + GenericProjectManager::Internal::GenericProject + + Project files list update failed. + + + + Build %1 + + + + + Gerrit::Internal::GerritDialog + + Certificate Error + Zertifikatsfehler + + + Server certificate for %1 cannot be authenticated. +Do you want to disable SSL verification for this server? +Note: This can expose you to man-in-the-middle attack. + Server-Zertifikat für %1 kann nicht authentifiziert werden. +Möchten Sie die SSL-Verifikation für diesen Server abschalten? +Hinweis: Dies macht Sie anfällig für Man-in-the-middle-Angriffe. + + + + GitLab::GitLabCloneDialog + + Clone Repository + + + + Specify repository URL, checkout path and directory. + + + + Repository + + + + Path + Pfad + + + Path "%1" already exists. + + + + Directory + Verzeichnis + + + Recursive + Rekursiv + + + Clone + Klonen + + + User canceled process. + + + + Cloning succeeded. + + + + Warning + Warnung + + + Cloned project does not have a project file that can be opened. Try importing the project as a generic project. + + + + Open Project + Projekt öffnen + + + Choose the project file to be opened. + + + + Cloning failed. + + + + + GitLab::GitLabDialog + + GitLab + + + + Search + Suche + + + ... + ... + + + 0 + 0 + + + Clone... + Klonen... + + + Remote: + Remote: + + + Not logged in. + + + + Insufficient access token. + + + + Permission scope read_api or api needed. + + + + Check settings for misconfiguration. + + + + Projects (%1) + + + + Using project access token. + + + + Logged in as %1 + + + + Id: %1 (%2) + + + + Certificate Error + Zertifikatsfehler + + + Server certificate for %1 cannot be authenticated. +Do you want to disable SSL verification for this server? +Note: This can expose you to man-in-the-middle attack. + Server-Zertifikat für %1 kann nicht authentifiziert werden. +Möchten Sie die SSL-Verifikation für diesen Server abschalten? +Hinweis: Dies macht Sie anfällig für Man-in-the-middle-Angriffe. + + + + GitLab::GitLabOptionsPage + + Host: + Host: + + + Description: + Beschreibung: + + + Access token: + + + + Port: + Port: + + + HTTPS: + + + + GitLab + + + + + GitLab::GitLabOptionsWidget + + Default: + Vorgabe: + + + curl: + + + + Edit... + Bearbeiten... + + + Edit current selected GitLab server configuration. + + + + Remove + + + + Remove current selected GitLab server configuration. + + + + Add... + Hinzufügen... + + + Add new GitLab server configuration. + + + + Edit Server... + + + + Modify + + + + Add Server... + + + + Add + Hinzufügen + + + + GitLab::GitLabPlugin + + GitLab + + + + GitLab... + + + + Error + Fehler + + + Invalid GitLab configuration. For a fully functional configuration, you need to set up host name or address and an access token. Providing the path to curl is mandatory. + + + + + GitLab::GitLabProjectSettingsWidget + + Host: + Host: + + + Linked GitLab Configuration: + + + + Link with GitLab + + + + Unlink from GitLab + + + + Test Connection + + + + Projects linked with GitLab receive event notifications in the Version Control output pane. + + + + Remote host does not match chosen GitLab configuration. + + + + Check settings for misconfiguration. + + + + Accessible (%1). + + + + Read only access. + + + + Not a git repository. + + + + Local git repository without remotes. + + + + + IncrediBuild::Internal::CMakeCommandBuilder + + CMake + CMake + + + + IncrediBuild::Internal::CommandBuilder + + Custom Command + + + + + IncrediBuild::Internal::CommandBuilderAspect + + Command Helper: + + + + Select a helper to establish the build command. + + + + Make command: + + + + Make arguments: + Kommandozeilenargumente für make: + + + + IncrediBuild::Internal::MakeCommandBuilder + + Make + Make + + + + Ios::Internal::IosQmakeBuildConfiguration + + iOS Settings + iOS-Einstellungen + + + Reset + Zurücksetzen + + + Automatically manage signing + Signieren automatisch ausführen + + + Development team: + Entwicklerteam: + + + Provisioning profile: + Provisioning-Profil: + + + Default + Vorgabe + + + None + + + + Development team is not selected. + Es ist kein Entwicklerteam ausgewählt. + + + Provisioning profile is not selected. + Es ist kein Provisioning-Profil ausgewählt. + + + Using default development team and provisioning profile. + Die Vorgaben für Entwicklerteam und Provisioning-Profil werden benutzt. + + + Development team: %1 (%2) + Entwicklerteam: %1 (%2) + + + Settings defined here override the QMake environment. + Hier gewählte Einstellungen überschreiben die QMake-Umgebung. + + + %1 not configured. Use Xcode and Apple developer account to configure the provisioning profiles and teams. + %1 sind nicht konfiguriert. Benutzen Sie Xcode und Ihr Apple-Entwicklerkonto, um die Provisioning-Profile und Teams zu konfigurieren. + + + Development teams + Entwicklerteams + + + Provisioning profiles + Provisioning-Profile + + + No provisioning profile found for the selected team. + Für das gewählte Team wurde kein Provisioning-Profil gefunden. + + + Provisioning profile expired. Expiration date: %1 + Das Provisioning-Profil ist abgelaufen. Ablaufdatum: %1 + + + + Ios::Internal::IosDsymBuildStep + + Command: + + + + Arguments: + Argumente: + + + Reset to Default + Auf Vorgabe zurücksetzen + + + + LanguageClient::ClientPrivate + + Invalid parameter in "%1": +%2 + + + + Language Server "%1" Initialize Error + Fehler bei Initialisierung von Language Server "%1" + + + Initialize error: + Fehler bei Initialisierung: + + + Initialize result is invalid. + + + + Server Info is invalid. + + + + No initialize result. + Initialisierung ohne Ergebnis. + + + + LanguageClient::DiagnosticManager + + Copy to Clipboard + In die Zwischenablage kopieren + + + + LanguageClient::BaseClientInterface + + Cannot handle MIME type of message %1 + + + + + LanguageClient::LanguageClientPlugin + + Generic StdIO Language Server + + + + Inspect Language Clients... + + + + + LanguageClient::BaseSettings + + Always On + + + + Requires an Open File + + + + Start Server per Project + + + + + LanguageClient::ReplaceWidget + + Search Again to update results and re-enable Replace + + + + Re&name %n files + + Eine Datei umbe&nennen + %n Dateien umbe&nennen + + + + Files: +%1 + Dateien: +%1 + + + + LanguageClient::DocumentLocatorFilter + + Matches all symbols from the current document, based on a language server. + + + + + LanguageClient::LspInspector + + Expand All + + + + Client Message + + + + Messages + + + + Server Message + + + + Log File + Logdatei + + + + LspCapabilitiesWidget + + Capabilities: + Fähigkeiten: + + + Dynamic Capabilities: + + + + Method: + Methode: + + + Options: + + + + Server Capabilities + + + + + LspInspectorWidget + + Language Client Inspector + + + + Log + Log + + + Capabilities + + + + Clear + Löschen + + + + McuSupport::Internal::McuDependenciesKitAspect + + MCU Dependencies + + + + Paths to 3rd party dependencies + + + + The MCU dependencies setting value is invalid. + + + + CMake variable %1 not defined. + + + + CMake variable %1: path %2 does not exist. + + + + + McuSupport + + Warning for target %1: invalid toolchain path (%2). Update the toolchain in Edit > Preferences > Kits. + + + + Kit for %1 created. + + + + Error registering Kit for %1. + + + + Warning + Warnung + + + Unable to apply changes in Devices > MCU. + + + + No target selected. + + + + Invalid paths present for target +%1 + + + + + McuSupport::Internal::McuTarget + + Warning for target %1: missing CMake toolchain file expected at %2. + + + + Warning for target %1: missing QulGenerators expected at %2. + + + + Qt for MCUs SDK version %1 detected, only supported by Qt Creator version %2. This version of Qt Creator requires Qt for MCUs %3 or greater. + + + + Skipped %1. Unsupported version "%2". + + + + Detected version "%1", only supported by Qt Creator %2. + + + + Unsupported version "%1". + + + + Skipped %1. %2 Qt for MCUs version >= %3 required. + + + + No valid kit descriptions found at %1. + + + + Error creating kit for target %1, package %2: %3 + + + + Warning creating kit for target %1, package %2: %3 + + + + + McuSupport::Internal::McuPackage + + Path %1 exists, but does not contain %2. + + + + Path %1 does not exist. Add the path in Edit > Preferences > Devices > MCU. + + + + Missing %1. Add the path in Edit > Preferences > Devices > MCU. + + + + No CMake tool was detected. Add a CMake tool in Edit > Preferences > Kits > CMake. + + + + Path %1 exists. + + + + Path %1 exists. Version %2 was found. + + + + Path %1 is valid, %2 was found. + + + + but only version %1 is supported + + + + but only versions %1 are supported + + + + Path %1 is valid, %2 was found, %3. + + + + Path %1 does not exist. + + + + Path is empty. + + + + Path is empty, %1 not found. + + + + Path %1 exists, but version %2 could not be detected. + + + + Download from "%1" + + + + Arm GDB at %1 + + + + MSVC Binary directory + + + + GCC Toolchain + + + + GNU Arm Embedded Toolchain + + + + STM32CubeProgrammer + + + + the toolchain.id JSON entry is empty + + + + the given toolchain "%1" is not supported + + + + the toolchain.compiler.cmakeVar JSON entry is empty + + + + the toolchain.file.cmakeVar JSON entry is empty + + + + Toolchain is invalid because %2 in file "%3". + + + + Toolchain description for "%1" is invalid because %2 in file "%3". + + + + + McuSupport::Internal::McuSupportOptions + + Qt for MCUs Demos + + + + Qt for MCUs Examples + + + + Replace Existing Kits + + + + Create New Kits + + + + Qt for MCUs + + + + New version of Qt for MCUs detected. Upgrade existing kits? + + + + + McuSupport::Internal::McuSupportOptionsWidget + + Qt for MCUs SDK + + + + Targets supported by the %1 + + + + Requirements + + + + Automatically create kits for all available targets on start + + + + Create a Kit + + + + Create Kit + + + + Update Kit + + + + No valid kit descriptions found at %1. + + + + A kit for the selected target and SDK version already exists. + + + + Kits for a different SDK version exist. + + + + A kit for the selected target can be created. + + + + MCU + + + + + QtForMCUs + + Qt for MCUs: %1 + + + + + McuSupport::Internal::McuSupportPlugin + + Create Kits for Qt for MCUs? To do it later, select Edit > Preferences > Devices > MCU. + + + + Create Kits for Qt for MCUs + + + + New version of Qt for MCUs detected. Upgrade existing Kits? + + + + Create new kits + + + + Replace existing kits + + + + Proceed + Weiter + + + + McuSupport::Internal::FlashAndRunConfiguration + + Flash and run CMake parameters: + + + + + Tr + + Parsing error: the type entry in JSON kit files must be a string, defaulting to "path" + + + + Parsing error: the type entry "%2" in JSON kit files is not supported, defaulting to "path" + + + + + ProjectExplorer::SeparateDebugInfoAspect + + Separate debug info: + + + + + ProjectExplorer::Internal::CustomParsersBuildWidget + + Custom Output Parsers + + + + Parse standard output during build + + + + Makes output parsers look for diagnostics on stdout rather than stderr. + + + + + ProjectExplorer::Internal::BuildPropertiesSettings + + Enable + Aktivieren + + + Disable + Deaktivieren + + + Use Project Default + + + + Default build directory: + Vorgabe-Build-Verzeichnis: + + + Separate debug info: + + + + QML debugging: + + + + Use qmlcachegen: + + + + Default Build Properties + + + + + ProjectExplorer::Internal::CodeStyleSettingsWidget + + Language: + Sprache: + + + + ProjectExplorer::CustomParsersAspect + + Custom Output Parsers + + + + + ProjectExplorer::Internal::SelectionWidget + + Custom output parsers scan command line output for user-provided error patterns<br>to create entries in Issues.<br>The parsers can be configured <a href="dummy">here</a>. + + + + + ProjectExplorer::Internal::CustomParsersSelectionWidget + + There are no custom parsers active + + + + There are %n custom parsers active + + + + + + + + ProjectExplorer::DeviceFileSystemModel + + File Type + Dateityp + + + File Name + Dateiname + + + + ProjectExplorer::FileTransferPrivate + + No device set for test transfer. + + + + No files to transfer. + + + + Missing transfer implementation. + + + + + ProjectExplorer::FileTransfer + + sftp + + + + rsync + + + + generic file copy + + + + + ProjectExplorer::Internal::EditorSettingsWidget + + Restore Global + Globale Einstellungen wiederherstellen + + + Display Settings + Anzeigeeinstellungen + + + Display right &margin at column: + Rechten &Rand anzeigen bei Spalte: + + + Use context-specific margin + + + + If available, use a different margin. For example, the ColumnLimit from the ClangFormat plugin. + + + + + ProjectExplorer::Internal::FilesInAllProjectsFind + + Files in All Project Directories + + + + Files in All Project Directories: + + + + + ProjectExplorer::Internal::TargetTripleWidget + + Override for code model + + + + Enable in the rare case that the code model +fails because Clang does not understand the target architecture. + + + + + ProjectExplorer::BuildDeviceKitAspect + + Build device + + + + The device used to build applications on. + + + + No build device set. + + + + Unconfigured + Nicht konfiguriert + + + Build host address + + + + Build SSH port + + + + Build user name + + + + Build private key file + + + + Build device name + + + + + ProjectExplorer::RunAsRootAspect + + Run as root user + + + + + ProjectExplorer::InterpreterAspect + + Manage... + Verwalten... + + + Interpreter + Interpreter + + + + ProjectExplorer::Internal::SimpleTargetRunnerPrivate + + Cannot retrieve debugging output. + Es konnte keine Debug-Ausgabe erhalten werden. + + + User requested stop. Shutting down... + Abbruch auf Nutzeranforderung... + + + Cannot run: No command given. + Keine Ausführung möglich: Kein Kommando angegeben. + + + %1 exited with code %2 + %2 wurde mit dem Rückgabewert %2 beendet {1 ?} + + + %1 crashed. + %1 ist abgestürzt. + + + The process was ended forcefully. + Der Prozess wurde gestoppt. + + + + ProjectExplorer::Internal::SimpleProjectWizard + + Import as qmake or CMake Project (Limited Functionality) + + + + Imports existing projects that do not use qmake, CMake, Qbs, Meson, or Autotools.<p>This creates a project file that allows you to use %1 as a code editor and as a launcher for debugging and analyzing tools. If you want to build the project, you might need to edit the generated project file. + + + + Unknown build system "%1" + + + + + Python::Internal::PythonSettings + + Searching Python binaries... + + + + Found "%1" (%2) + + + + + BuildConfiguration + + Release + The name of the release build configuration created by default for a qmake project. + Release + + + Debug + The name of the debug build configuration created by default for a qmake project. + Debug + + + Profile + The name of the profile build configuration created by default for a qmake project. + Profile + + + + QmlDesigner::AssetExporterPlugin + + Asset Export + + + + Export Components + + + + Export components in the current project. + + + + + Component + + Error exporting node %1. Cannot parse type %2. + + + + + QmlDesigner::FilePathModel + + Canceling file preparation. + + + + + QmlDesigner::AnnotationTableView + + Title + Titel + + + Author + Autor + + + Value + Wert + + + + QmlDesigner::AnnotationTabWidget + + Add Comment + + + + Remove Comment + + + + Delete this comment? + + + + Annotation + Annotation + + + + QmlDesigner::GlobalAnnotationDialog + + Global Annotation Editor + + + + Global Annotation + + + + All Annotations + + + + + QmlDesigner::GlobalAnnotationEditor + + Global Annotation + + + + Delete this annotation? + + + + + QmlDesigner::AssetsLibraryModel + + Confirm Delete File + + + + File%1 might be in use. Delete anyway? + +%2 + + + + Do not ask this again + + + + Failed to Locate File + + + + Could not find "%1". + + + + Failed to Delete File + + + + Could not delete "%1". + + + + + QmlDesigner::AssetsLibraryView + + Assets + Assets + + + + QmlDesigner::AssetsLibraryWidget + + Assets Library + Title of assets library widget + + + + Failed to Add Files + Dateien konnten nicht hinzugefügt werden + + + Could not add %1 to project. + %1 konnte nicht zum Projekt hinzugefügt werden. + + + All Files (%1) + Alle Dateien (%1) + + + Add Assets + Assets hinzufügen + + + Could not add %1 to project. Unsupported file format. + + + + + QmlDesigner::AbstractEditorDialog + + Untitled Editor + + + + + QmlDesigner::ActionEditorDialog + + Connection Editor + + + + + QmlDesigner::SignalListModel + + Item ID + + + + Signal + Signal + + + + QmlDesigner::SignalList + + Signal List for %1 + + + + + QmlDesigner::SignalListDelegate + + Release + Release + + + Connect + Verbinden + + + + DesignerActionManager + + Document Has Errors + + + + The document which contains the list model contains errors. So we cannot edit it. + + + + Document Cannot Be Written + + + + An error occurred during a write attemp. + + + + + QmlDesigner::CurveEditor + + This file does not contain a timeline. <br><br>To create an animation, add a timeline by clicking the + button in the "Timeline" view. + + + + + QmlDesigner::CurveEditorToolBar + + Unify + + + + Start Frame + + + + End Frame + + + + Current Frame + + + + + QmlDesigner::CurveEditorView + + Curves + + + + + QmlDesigner::GraphicsView + + Open Style Editor + + + + Insert Keyframe + Keyframe einfügen + + + Delete Selected Keyframes + + + + + QmlDesigner::Edit3DView + + 3D + 3D + + + Cameras + + + + Lights + + + + Primitives + + + + Imported Models + + + + Failed to Add Import + + + + Could not add QtQuick3D import to project. + + + + + SelectBackgroundColorAction + + Select Background Color + + + + Select a color for the background of the 3D view. + + + + + SelectGridColorAction + + Select Grid Color + + + + Select a color for the grid lines of the 3D view. + + + + + ResetEdit3DColorsAction + + Reset Colors + + + + Reset the background color and the color of the grid lines of the 3D view to the default values. + + + + + SyncEdit3DColorAction + + Use Scene Environment Color + + + + Sets the 3D view to use the Scene Environment color as background color. + + + + + SelectionModeToggleAction + + Toggle Group/Single Selection Mode + + + + + MoveToolAction + + Activate Move Tool + + + + + RotateToolAction + + Activate Rotate Tool + + + + + ScaleToolAction + + Activate Scale Tool + + + + + FitToViewAction + + Fit Selected Object to View + + + + + AlignCamerasToViewAction + + Align Selected Cameras to View + + + + Align View to Selected Camera + + + + + CameraToggleAction + + Toggle Perspective/Orthographic Edit Camera + + + + + OrientationToggleAction + + Toggle Global/Local Orientation + + + + + EditLightToggleAction + + Toggle Edit Light On/Off + + + + + ShowGridAction + + Show Grid + + + + Toggle the visibility of the helper grid. + + + + + ShowSelectionBoxAction + + Show Selection Boxes + + + + Toggle the visibility of selection boxes. + + + + + ShowIconGizmoAction + + Show Icon Gizmos + + + + Toggle the visibility of icon gizmos, such as light and camera icons. + + + + + ShowCameraFrustumAction + + Always Show Camera Frustums + + + + Toggle between always showing the camera frustum visualization and only showing it when the camera is selected. + + + + + ShowParticleEmitterAction + + Always Show Particle Emitters And Attractors + + + + Toggle between always showing the particle emitter and attractor visualizations and only showing them when the emitter or attractor is selected. + + + + + ParticleViewModeAction + + Toggle particle animation On/Off + + + + + ParticlesPlayAction + + Play Particles + + + + + ParticlesRestartAction + + Restart Particles + + + + + VisibilityTogglesAction + + Visibility Toggles + + + + + BackgroundColorMenuActions + + Background Color Actions + + + + + QmlDesigner::Edit3DWidget + + Your file does not import Qt Quick 3D.<br><br>To create a 3D view, add the <b>QtQuick3D</b> module in the <b>Components</b> view or click <a href="#add_import"><span style="text-decoration:none;color:%1">here</span></a>.<br><br>To import 3D assets, select <b>+</b> in the <b>Assets</b> view. + + + + Edit Material + + + + Delete + + + + Create + + + + + QmlDesigner::AssignEventDialog + + Nonexistent events discovered + + + + The Node references the following nonexistent events: + + + + + + QmlDesigner::EventListDelegate + + Release + Release + + + Connect + Verbinden + + + + QmlDesigner::EventListDialog + + Add Event + Ereignis hinzufügen + + + Remove Selected Events + + + + + QmlDesigner::EventListPluginView + + Event List + + + + + QmlDesigner::EventListModel + + Event ID + + + + Shortcut + Tastenkombination + + + Description + Beschreibung + + + + QmlDesigner::NodeListModel + + ID + ID + + + Type + Typ + + + From + Von + + + To + Bis + + + + QmlDesigner::TransitionTool + + Add Transition + + + + Remove Transitions + + + + Remove All Transitions + + + + Do you really want to remove all transitions? + + + + Remove Dangling Transitions + + + + Transition Tool + + + + + QmlDesigner::DesignDocument + + Locked items: + + + + Delete/Cut Item + + + + Deleting or cutting this item will modify locked items. + + + + Do you want to continue by removing the item (Delete) or removing it and copying it to the clipboard (Cut)? + + + + + QmlDesigner::ItemLibraryAssetImporter + + Could not create a temporary directory for import. + + + + Importing 3D assets. + + + + Import process crashed. + + + + Import failed for unknown reason. + + + + Asset import process failed: "%1". + + + + Parsing files. + + + + Skipped import of duplicate asset: "%1". + + + + Skipped import of existing asset: "%1". + + + + No files selected for overwrite, skipping import: "%1". + + + + Could not access temporary asset directory: "%1". + + + + Failed to create qmldir file for asset: "%1". + + + + Removing old overwritten assets. + + + + Copying asset files. + + + + Overwrite Existing Asset? + + + + Asset already exists. Overwrite existing or skip? +"%1" + + + + Overwrite Selected Files + + + + Overwrite All Files + + + + Skip + Überspringen + + + Failed to start import 3D asset process. + + + + Failed to start icon generation process. + + + + Generating icons. + + + + Updating data model. + + + + Failed to insert import statement into qml document. + + + + Failed to update imports: %1 + + + + + QmlDesigner::ItemLibraryImport + + Default Components + + + + My Components + + + + My 3D Components + + + + All Other Components + + + + + QmlDesigner::ListModelEditorDialog + + Add Row + + + + Remove Columns + + + + Add Column + + + + Move Down (Ctrl + Down) + + + + Move Up (Ctrl + Up) + + + + Add Property + + + + Property name: + + + + Change Property + + + + Column name: + + + + + QmlDesigner::MaterialBrowserView + + Material Browser + + + + + QmlDesigner::MaterialBrowserWidget + + Material Browser + Title of material browser widget + + + + + QmlDesigner::MaterialEditorContextObject + + <b>Incompatible properties:</b><br> + + + + Change Type + + + + Changing the type from %1 to %2 can't be done without removing incompatible properties.<br><br>%3 + + + + Do you want to continue by removing incompatible properties? + + + + + QmlDesigner::MaterialEditorView + + Cannot Export Property as Alias + Eigenschaft kann nicht als Alias exportiert werden + + + Property %1 does already exist for root component. + + + + Material Editor + + + + + QmlDesigner::ChooseFromPropertyListDialog + + Select Property + + + + Bind to property: + + + + Binds this component to the parent's selected property. + + + + + QmlDesigner::NavigatorSearchWidget + + Search + Suche + + + + QmlDesigner::AlignDistribute + + Cannot Distribute Perfectly + + + + These objects cannot be distributed to equal pixel values. Do you want to distribute to the nearest possible values? + + + + + DynamicPropertiesProxyModel + + Property Already Exists + + + + Property "%1" already exists. + + + + + QmlDesigner::QmlModelNodeProxy + + multiselection + + + + + QmlDesigner::Experimental::StatesEditorModel + + base state + Implicit default state + Grundzustand + + + Invalid state name + + + + The empty string as a name is reserved for the base state. + Eine leere Zeichenkette ist als Name des Basiszustands reserviert. + + + Name already used in another state + + + + Root + + + + Invalid ID + + + + %1 already exists. + %1 existiert bereits. + + + + QmlDesigner::Experimental::StatesEditorView + + States + + + + Remove State + + + + This state is not empty. Are you sure you want to remove it? + + + + Locked components: + + + + Removing this state will modify locked components. + + + + Continue by removing the state? + + + + base state + Grundzustand + + + + QmlDesigner::Experimental::StatesEditorWidget + + States New + Title of Editor widget + + + + Cannot Create QtQuick View + QtQuick View konnte nicht erzeugt werden + + + StatesEditorWidget: %1 cannot be created.%2 + + + + + QmlDesignerTimeline + + Playhead frame %1 + + + + Keyframe %1 + + + + + QmlDesigner::TransitionEditorView + + No States Defined + + + + There are no states defined in this component. + + + + No Property Changes to Animate + + + + To add transitions, first change the properties that you want to animate in states (%1). + + + + Transitions + + + + + QmlDesigner::CapturingConnectionManager + + QML Emulation Layer (QML Puppet - %1) Crashed + + + + You are recording a puppet stream and the emulations layer crashed. It is recommended to reopen the Qt Quick Designer and start again. + Sie nehmen einen Ausgabestrom von Puppet auf, welche abgestürzt ist. Es wird empfohlen, Qt Quick Designer neu zu öffnen und von vorn zu beginnen. + + + + QmlDesigner::InteractiveConnectionManager + + Cannot Connect to QML Emulation Layer (QML Puppet) + Konnte keine Verbindung zur QML-Emulationsschicht (QML Puppet) herstellen + + + The executable of the QML emulation layer (QML Puppet) may not be responding. Switching to another kit might help. + Die ausführbare Datei der QML-Emulationsschicht (QML-Puppet) reagiert nicht. Versuchen Sie ein anderes Kit zu verwenden. + + + + QmlDesigner::SubComponentManager + + My 3D Components + + + + + QmlDesigner::QmlPreviewWidgetPlugin + + Show Live Preview + + + + + QmlDesigner::SwitchLanguageComboboxAction + + Switch the language used by preview. + + + + Default + Vorgabe + + + + QmlJSTools::QmlJSToolsSettings + + Global + Settings + Global + + + + QmlPreview::QmlPreviewPlugin + + QML Preview + QML-Vorschau + + + Preview File + Datei in Vorschau anzeigen + + + + QmlDesigner::GenerateCmake + + Select Files to Generate + + + + Start CMakeFiles.txt generation + + + + Advanced Options + + + + File %1 will be created. + + + + + File %1 will be overwritten. + + + + + This file already exists and will be overwritten. + + + + This file or folder will be created. + + + + Generate CMake Build Files + + + + The project is not properly structured for automatically generating CMake files. + +Aborting process. + +The following files or directories are missing: + +%1 + + + + Cannot Generate CMake Files + + + + + QmlDesigner::CmakeProjectConverter + + Export as Latest Project Format + + + + Creating Project + + + + Creating project failed. +%1 + + + + Creating project succeeded. + + + + Unable to write to directory +%1. + + + + + QmlDesigner::CmakeProjectConverterDialog + + This process creates a copy of the existing project. The new project's folder structure is adjusted for CMake build process and necessary related new files are generated. + +The new project can be opened in Qt Creator using the main CMakeLists.txt file. + + + + Name: + Name: + + + Create in: + Erzeugen in: + + + Name is empty. + + + + Name must not start with "%1". + + + + Name must begin with a capital letter + + + + Name must contain only letters, numbers or characters - _. + + + + Target is not a directory. + + + + Cannot write to target directory. + + + + Project directory already exists. + + + + + QmlProjectManager::QmlMultiLanguageAspect + + Use MultiLanguage in 2D view + + + + Reads translations from MultiLanguage plugin. + + + + + QmlProjectManager::Internal::QmlProjectPlugin + + Qt Design Studio + Qt Design Studio + + + No project file (*.qmlproject) found for Qt Design Studio. +Qt Design Studio requires a .qmlproject based project to open the .ui.qml file. + + + + Set as Main .qml File + + + + Set as Main .ui.qml File + + + + + Squish + + Details + + + + Adjust references to the removed symbolic name to point to: + + + + Remove the symbolic name (invalidates names referencing it) + + + + Remove the symbolic name and all names referencing it + + + + Failed to write "%1" + + + + Incomplete Squish settings. Missing Squish installation path. + + + + objectmaptool not found. + + + + Failure while parsing objects.map content. + + + + Squish Object Map Editor + + + + New + Neu + + + Remove + + + + Jump to Symbolic Name + + + + Symbolic Names + + + + Cut + Ausschneiden + + + Copy + Kopieren + + + Paste + Einfügen + + + Delete + + + + Copy Real Name + + + + Properties: + Eigenschaften: + + + The properties of the Multi Property Name associated with the selected Symbolic Name. (use \\ for a literal \ in the value) + + + + The Hierarchical Name associated with the selected Symbolic Name. + + + + Remove Symbolic Name + + + + Do you really want to remove "%1"? + + + + Ambiguous Property Name + + + + Ambiguous Symbolic Name + + + + %1 "%2" already exists. Specify a unique name. + + + + Property + Eigenschaft + + + Symbolic Name + + + + CopyOf + + + + Open Squish Test Suites + + + + Select All + + + + Deselect All + Alles abwählen + + + Base directory: + + + + Test suites: + + + + Name + Name + + + Operator + Operator + + + Value + Wert + + + Application: + + + + <No Application> + + + + Arguments: + Argumente: + + + Recording Settings + + + + Suite Already Open + + + + A test suite with the name "%1" is already open. +Close the opened test suite and replace it with the new one? + + + + Test Suite Path Not Accessible + + + + The path "%1" does not exist or is not accessible. +Refusing to run test case "%2". + + + + The path "%1" does not exist or is not accessible. +Refusing to run test cases. + + + + No Test Cases Defined + + + + Test suite "%1" does not contain any test cases. + + + + The path "%1" does not exist or is not accessible. +Refusing to record test case "%2". + + + + Select Global Script Folder + + + + Error + Fehler + + + Failed to open objects.map file at "%1". + + + + Squish + + + + Run This Test Case + + + + Delete Test Case + + + + Run This Test Suite + + + + Add New Test Case... + + + + Close Test Suite + + + + Delete Test Suite + + + + Delete Shared File + + + + Add Shared File + + + + Remove Shared Folder + + + + Open Squish Suites... + + + + Create New Test Suite... + + + + Close All Test Suites + + + + Close all test suites? + + + + Add Shared Folder... + + + + Remove All Shared Folders + + + + Test Suites + + + + Remove "%1" from the list of shared folders? + + + + Remove all shared folders? + + + + Record Test Case + + + + Do you want to record over the test case "%1"? The existing content will be overwritten by the recorded script. + + + + Set up a valid Squish path to be able to create a new test case. +(Edit > Preferences > Squish) + + + + Test Results + Testergebnisse + + + Runner/Server Log + + + + <b>Test summary:</b>&nbsp;&nbsp; %1 passes, %2 fails, %3 fatals, %4 errors, %5 warnings. + + + + Expand All + + + + Collapse All + + + + Filter Test Results + Testergebnisse filtern + + + Pass + Bestanden + + + Fail + Durchgefallen + + + Expected Fail + Erwartetes Scheitern + + + Unexpected Pass + Unerwartet bestanden + + + Warning Messages + Warnungsnachrichten + + + Log Messages + + + + Check All Filters + Alle Filter auswählen + + + Control Bar + + + + Stop Recording + Aufnahme beenden + + + Ends the recording session, saving all commands to the script file. + + + + Interrupt + Anhalten + + + Step Into + Einzelschritt herein + + + Step Over + Einzelschritt über + + + Step Out + Einzelschritt heraus + + + Type + Typ + + + Squish Locals + + + + Continue + Fortsetzen + + + &Squish + + + + &Server Settings... + + + + Result + Ergebnis + + + Message + + + + Time + Zeit + + + Squish path: + + + + Path to Squish installation + + + + Path does not contain server executable at its default location. + + + + License path: + + + + Local Server + + + + Server host: + + + + Server Port + + + + Verbose log + + + + Minimize IDE + + + + Minimize IDE automatically while running or recording test cases. + + + + General + Allgemein + + + Maximum startup time: + + + + Specifies how many seconds Squish should wait for a reply from the AUT directly after starting it. + + + + Maximum response time: + + + + Specifies how many seconds Squish should wait for a reply from the hooked up AUT before raising a timeout error. + + + + Maximum post-mortem wait time: + + + + Specifies how many seconds Squish should wait after the the first AUT process has exited. + + + + Animate mouse cursor: + + + + Name: + Name: + + + Host: + Host: + + + Port: + Port: + + + Add Attachable AUT + + + + Add + Hinzufügen + + + Edit + + + + Mapped AUTs + + + + AUT Paths + + + + Attachable AUTs + + + + Select Application to test + + + + Select Application Path + + + + Squish Server Settings + + + + Failed to write configuration changes. +Squish server finished with process error %1. + + + + Run Test Suite + + + + Object Map + + + + Run Test Case + + + + Shared Folders + + + + %1 (none) + %1 (keine) + + + Squish Tools in unexpected state (%1). +Refusing to run a test case. + + + + Could not create test results folder. Canceling test run. + + + + Squish Tools in unexpected state (%1). +Refusing to execute server query. + + + + Squish Tools in unexpected state (%1). +Refusing to record a test case. + + + + Squish Tools in unexpected state (%1). +Refusing to write configuration changes. + + + + Squish Server Error + + + + "%1" could not be found or is not executable. +Check the settings. + + + + Recording test case + + + + Could not get Squish license from server. + + + + Test run finished. + + + + Test record finished. + + + + Squish could not find the AUT "%1" to start. Make sure it has been added as a Mapped AUT in the squishserver settings. +(Tools > Squish > Server Settings...) + + + + User stop initiated. + + + + Squish Server Already Running + + + + There is still an old Squish server instance running. +This will cause problems later on. + +If you continue, the old instance will be terminated. +Do you want to continue? + + + + Unexpected state or request while starting Squish server. (state: %1, request: %2) + + + + No Squish Server + + + + Squish server does not seem to be running. +(state: %1, request: %2) +Try again. + + + + No Squish Server Port + + + + Failed to get the server port. +(state: %1, request: %2) +Try again. + + + + Squish Runner Running + + + + Squish runner seems to be running already. +(state: %1, request: %2) +Wait until it has finished and try again. + + + + Squish Runner Error + + + + Squish runner failed to start within given timeframe. + + + + Create New Squish Test Suite + + + + Available GUI toolkits: + + + + Invalid Squish settings. Configure Squish installation path inside Preferences... > Squish > General to use this wizard. + + + + Available languages: + + + + <None> + <Kein> + + + Key is not an object. + Schlüssel ist kein Objekt. + + + Key 'mode' is not set. + + + + Unsupported mode: + + + + Could not merge results into single results.xml. +Destination file "%1" already exists. + + + + Could not merge results into single results.xml. +Failed to open file "%1" + + + + Error while parsing first test result. + + + + + Squish::Internal::DeleteSymbolicNameDialog + + The Symbolic Name <span style='white-space: nowrap'>"%1"</span> you want to remove is used in Multi Property Names. Select the action to apply to references in these Multi Property Names. + + + + + FileExtractor + + Choose Directory + Verzeichnis wählen + + + + StudioWelcome::PresetModel + + Recents + + + + Custom + Benutzerdefiniert + + + + StudioWelcome::QdsNewDialog + + New Project + Neues Projekt + + + Failed to initialize data. + + + + Choose Directory + Verzeichnis wählen + + + Save Preset + Voreinstellung speichern + + + A preset with this name already exists. + + + + + StudioWelcome::Internal::UsageStatisticPluginModel + + The change will take effect after restart. + Die Änderung wird nach einem Neustart wirksam. + + + + StudioWelcome::Internal::ProjectModel + + Created with Qt Design Studio version: %1 + + + + Resolution: %1x%2 + + + + Created: %1 + + + + Last Edited: %1 + + + + + StudioWelcome::Internal::StudioSettingsPage + + Build + + + + Debug + Debug + + + Analyze + Analysieren + + + Hide top-level menus with advanced functionality to simplify the UI. <b>Build</b> is generally not required in the context of Qt Design Studio. <b>Debug</b> and <b>Analyze</b> are only required for debugging and profiling. + + + + Hide Menu + + + + Examples + Beispiele + + + Examples path: + + + + Reset Path + Pfad zurücksetzen + + + The menu visibility change will take effect after restart. + + + + + StudioWelcome::Internal::StudioWelcomeSettingsPage + + Qt Design Studio Configuration + + + + + Subversion::Internal::SubversionSettings + + Subversion Command + Subversion-Kommando + + + Subversion command: + Subversion-Kommando: + + + Username: + + + + Password: + Passwort: + + + Ignore whitespace changes in annotation + Änderungen der Leerzeichen bei Annotation weglassen + + + Log count: + Log-Anzeige beschränken auf: + + + Timeout: + Zeitlimit: + + + s + s + + + Prompt on submit + Submit bestätigen + + + Subversion + Subversion + + + Configuration + Konfiguration + + + Authentication + Authentifizierung + + + Miscellaneous + Sonstige Einstellungen + + + + Snippet + + Expected delimiter after mangler ID. + + + + Expected mangler ID "l" (lowercase), "u" (uppercase), or "c" (titlecase) after colon. + + + + Missing closing variable delimiter for: + + + + + TextEditor::TextMark + + Show Diagnostic Settings + Diagnosekonfiguration anzeigen + + + + UpdateInfo + + Qt Maintenance Tool + Qt Maintenance Tool + + + Start Maintenance Tool + Maintenance Tool starten + + + + VcsBase::Internal::CommonVcsSettings + + User/&alias configuration file: + Nutzer/&Alias-Konfigurationsdatei: + + + A file listing nicknames in a 4-column mailmap format: +'name <email> alias <email>'. + Eine Datei, die Nutzernamen in einem vierspaltigen Format (mailmap) enthält: +'Name <E-Mail> Alias <E-Mail>'. + + + User &fields configuration file: + Nutzer&feld-Konfigurationsdatei: + + + A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. + Eine Datei, die Zeilen mit Feldnamen (zum Beispiel "Reviewed-By:") enthält, die im Abgabefenster unter der Beschreibung erscheinen. + + + Submit message &check script: + Skript zur &Überprüfung der Beschreibung: + + + An executable which is called with the submit message in a temporary file as first argument. It should return with an exit != 0 and a message on standard error to indicate failure. + Eine ausführbare Datei, die mit der Beschreibung in einer temporären Datei als erstem Kommandozeilenparameter aufgerufen wird. Bei Fehlschlag sollte sie einen Rückgabewert ungleich Null mit einer entsprechende Nachricht auf der Fehlerausgabe zurückgeben. + + + &SSH prompt command: + Graphische &SSH-Passwortabfrage: + + + 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). + Kommando zur graphischen Passwortabfrage bei SSH-Authorisierung eines Repositorys +(siehe SSH-Dokumentation zur Umgebungsvariable SSH-ASKPASS). + + + Wrap submit message at: + Beschreibung umbrechen bei: + + + characters + Zeichen + + + Reset VCS Cache + VCS-Cache zurücksetzen + + + Reset information about which version control system handles which directory. + Die Zuordnung, welches Versionsverwaltungssystem welches Verzeichnis behandelt, zurücksetzen. + + + + VcsBase::VcsBaseSettings + + Log count: + Log-Anzeige beschränken auf: + + + Prompt on submit + Submit bestätigen + + + Timeout: + Zeitlimit: + + + s + s + + + + VcsBase::VcsCommand + + UNKNOWN + UNBEKANNT + + + + VcsBase::VcsOutputLineParser + + &Open "%1" + + + + &Copy to clipboard: "%1" + + + + + WebAssembly + + Web Browser + + + + WebAssembly Runtime + + + + Emscripten SDK path: + + + + Select the root directory of an installed %1. Ensure that the activated SDK version is compatible with the %2 or %3 version that you plan to develop against. + + + + Emscripten SDK environment: + + + + Note: %1 supports Qt %2 for WebAssembly and higher. Your installed lower Qt version(s) are not supported. + + + + Adding directories to PATH: + + + + Setting environment variables: + + + + The activated version %1 is not supported by %2. Activate version %3 or higher. + + + + Activated version: %1 + + + + WebAssembly + + + + Setup Emscripten SDK for WebAssembly? To do it later, select Edit > Preferences > Devices > WebAssembly. + + + + Setup Emscripten SDK + + + + WebAssembly + Qt Version is meant for WebAssembly + + + + %1 does not support Qt for WebAssembly below version %2. + + + + Effective emrun call: + + + + Default Browser + + + + Web browser: + + + + Emscripten Compiler + + + + Emscripten Compiler %1 for %2 + + + + Emscripten + + + + + BookmarkDialog + + Add Bookmark + Lesezeichen hinzufügen + + + New Folder + Neues Verzeichnis + + + Bookmark: + Lesezeichen: + + + Add in folder: + Im Verzeichnis: + + + Bookmarks + Lesezeichen + + + Delete Folder + Verzeichnis löschen + + + Rename Folder + Verzeichnis umbenennen + + + + BookmarkWidget + + Delete Folder + Verzeichnis löschen + + + Rename Folder + Verzeichnis umbenennen + + + Show Bookmark + Lesezeichen anzeigen + + + Show Bookmark as New Page + Lesezeichen in neuem Reiter anzeigen + + + Delete Bookmark + Lesezeichen löschen + + + Rename Bookmark + Lesezeichen umbenennen + + + + BookmarkManager + + Bookmarks + Lesezeichen + + + Remove + + + + Deleting a folder also removes its content.<br>Do you want to continue? + Beim Löschen eines Verzeichnisses wird auch dessen Inhalt gelöscht.<br>Möchten Sie trotzdem fortsetzen? + + + New Folder + Neues Verzeichnis diff --git a/share/qtcreator/translations/qtcreator_zh_CN.ts b/share/qtcreator/translations/qtcreator_zh_CN.ts index d78063b5bce..149bf94c2bd 100644 --- a/share/qtcreator/translations/qtcreator_zh_CN.ts +++ b/share/qtcreator/translations/qtcreator_zh_CN.ts @@ -1,29542 +1,4281 @@ - + + + ADS::DockAreaTitleBar + + Detach Area + + + + Close Area + + + + Close Other Areas + + + + + ADS::DockManager + + Cannot Save Workspace + + + + Could not save workspace to file %1 + + + + Delete Workspace + + + + Delete Workspaces + + + + Delete workspace %1? + + + + Delete these workspaces? + %1 + + + + Cannot Restore Workspace + + + + Could not restore workspace %1 + + + + + ADS::DockWidgetTab + + Detach + 分离 + + + Close + 关闭 + + + Close Others + 关闭其他 + + + + ADS::WorkspaceDialog + + Workspace Manager + + + + &New + 新建(&N) + + + &Rename + 重命名(&R) + + + C&lone + 克隆(&L) + + + &Delete + 删除(&D) + + + Reset + 重置 + + + &Switch To + + + + Import + 导入 + + + Export + + + + Restore last workspace on startup + + + + <a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-workspaces.html">What is a Workspace?</a> + + + + + ADS::WorkspaceModel + + Workspace + + + + Last Modified + + + + New Workspace Name + + + + &Create + 创建(&C) + + + Create and &Open + + + + &Clone + + + + Clone and &Open + + + + Rename Workspace + + + + &Rename + 重命名(&R) + + + Rename and &Open + + + + + ADS::WorkspaceNameInputDialog + + Enter the name of the workspace: + + + + + ADS::WorkspaceView + + Import Workspace + + + + Export Workspace + + + + + AccountImage + + Account + + + + + AddImageToResources + + File Name + 文件名 + + + Size + + + + Add Resources + + + + &Browse... + 浏览(&B)... + + + Target Directory + + + + + AddImplementationsDialog + + Member Function Implementations + + + + None + + + + Inline + + + + Outside Class + + + + Default implementation location: + + + + + AddSignalHandlerDialog + + Implement Signal Handler + + + + Frequently used signals + + + + Property changes + + + + All signals + + + + Signal: + + + + Choose the signal you want to handle: + + + + The item will be exported automatically. + + + + + AlignCamerasToViewAction + + Align Selected Cameras to View + + + + Align View to Selected Camera + + + + + Analyzer + + Analyzer + 分析器 + + + + Android + + Create new AVD + 创建新AVD + + + Name: + 名称: + + + SD card size: + SD卡容量: + + + MiB + MiB + + + Create a keystore and a certificate + 创建一个密钥存储库和一个证书 + + + Keystore + 密钥存储库 + + + Password: + 密码: + + + Retype password: + 再次输入密码: + + + Show password + 显示密码 + + + Certificate + 证书 + + + Alias name: + 别名: + + + Keysize: + 密钥长度: + + + Validity (days): + 有效期(天数): + + + Certificate Distinguished Names + 证书的特别(distinguished)名称 + + + First and last name: + 全名: + + + Organizational unit (e.g. Necessitas): + Necessitas is the Qt Android porting + 组织和单位(如Necessitas): + + + Organization (e.g. KDE): + 组织(如KDE): + + + City or locality: + 城市或地点: + + + State or province: + 州或省: + + + Two-letter country code for this unit (e.g. RO): + 单位的两字母的国家代码(如RO): + + + Application + 应用程序 + + + Permissions + 权限 + + + Add + 添加 + + + Remove + 删除 + + + Sign package + 包签名 + + + Keystore: + 密钥存储库: + + + Certificate alias: + 证书别名: + + + Android Configuration + Android配置 + + + Android SDK location: + Android SDK的路径: + + + Keystore files (*.keystore *.jks) + 密钥存储库文件 (*.keystore *.jks) + + + Error + 错误 + + + Deploy to Android device + 部署到Android设备 + + + Pulling files necessary for debugging. + 正在读取调试需要的文件。 + + + Android package (*.apk) + Android包 (*.apk) + + + Run on Android + 在Android上运行 + + + Android Device + Android设备 + + + Deploy to device + 部署到设备 + + + Copy application data + 复制应用程序的数据 + + + Android + Qt Version is meant for Android + Android + + + Failed to forward C++ debugging ports. + 转发C++调试端口失败。 + + + Failed to forward QML debugging ports. + 转发QML调试端口失败。 + + + Cannot create AVD. Invalid input. + + + + Could not start process "%1 %2" + 无法启动进程"%1" {1 %2"?} + + + Cannot create AVD. Command timed out. + + + + Emulator Tool Is Missing + + + + Install the missing emulator tool (%1) to the installed Android SDK. + + + + AVD Start Error + + + + Incorrect password. + + + + Android build platform SDK: + + + + Create Templates + + + + Create an Android package for Custom Java code, assets, and Gradle configurations. + + + + Android customization: + + + + Application Signature + + + + Select Keystore File + + + + Create... + + + + Signing a debug package + + + + Advanced Actions + + + + Open package location after build + + + + Add debug server + + + + Packages debug server with the APK to enable debugging. For the signed APK this option is unchecked by default. + + + + Verbose output + + + + Build Android App Bundle (*.aab) + + + + Additional Libraries + + + + List of extra libraries to include in Android package and load on startup. + + + + Add... + 添加... + + + Select library to include in package. + + + + Select additional libraries + + + + Libraries (*.so) + + + + Remove currently selected library from list. + + + + Include prebuilt OpenSSL libraries + + + + This is useful for apps that use SSL operations. The path can be defined in Edit > Preferences > Devices > Android. + + + + Build Android APK + + + + "%1" step failed initialization. + + + + Keystore/Certificate password verification failed. + + + + Warning: Signing a debug or profile package. + + + + The Qt version for kit %1 is invalid. + + + + The installed SDK tools version (%1) does not include Gradle scripts. The minimum Qt version required for Gradle build to work is %2 + + + + The minimum Qt version required for Gradle build to work is %1. It is recommended to install the latest Qt version. + + + + The API level set for the APK is less than the minimum required by the kit. +The minimum API level required by the kit is %1. + + + + No valid input file for "%1". + + + + Android build SDK version is not defined. Check Android settings. + + + + Cannot sign the package. Invalid keystore path (%1). + + + + Cannot sign the package. Certificate alias %1 does not exist. + + + + Android deploy settings file not found, not building an APK. + + + + The Android build folder %1 was not found and could not be created. + + + + Cannot copy the target's lib file %1 to the Android build folder %2. + + + + Cannot copy file "%1" to Android build libs folder "%2". + + + + Cannot open androiddeployqt input file "%1" for writing. + + + + Cannot set up "%1", not building an APK. + + + + Starting: "%1" %2 + 正在启动 "%1" %2 + + + + Failed to run keytool. + + + + Enter keystore password + + + + Enter certificate password + + + + Could not run: %1 + + + + No devices found in output of: %1 + + + + Android Debugger (%1, NDK %2) + + + + Android %1 Clang %2 + + + + Use Keystore password + + + + Keystore password is too short. + + + + Keystore passwords do not match. + + + + Certificate password is too short. + + + + Certificate passwords do not match. + + + + Certificate alias is missing. + + + + Invalid country code. + + + + Keystore Filename + + + + Uninstall the existing app before deployment + + + + No Android architecture (ABI) is set by the project. + + + + Initializing deployment to Android device/simulator + + + + The kit's run configuration is invalid. + + + + The kit's build configuration is invalid. + + + + The kit's build steps list is invalid. + + + + The kit's deploy configuration is invalid. + + + + No valid deployment device is set. + + + + The deployment device "%1" is invalid. + + + + The deployment device "%1" does not support the architectures used by the kit. +The kit supports "%2", but the device uses "%3". + + + + The deployment device "%1" is disconnected. + + + + Android: The main ABI of the deployment device (%1) is not selected. The app execution or debugging might not work properly. Add it from Projects > Build > Build Steps > qmake > ABIs. + + + + Deploying to %1 + + + + The deployment step's project node is invalid. + + + + Cannot find the androiddeployqt input JSON file. + + + + Cannot find the androiddeployqt tool. + + + + Cannot find the package name from the Android Manifest file "%1". + + + + Uninstalling the previous package "%1". + + + + Starting: "%1" + + + + The process "%1" exited normally. + + + + The process "%1" exited with code %2. + 进程"%1"退出,退出代码 %2 。 + + + The process "%1" crashed. + 进程"%1"崩溃。 + + + Installing the app failed even after uninstalling the previous one. + + + + Installing the app failed with an unknown error. + + + + Deployment failed with the following errors: + + + + + + +Uninstalling the installed package may solve the issue. +Do you want to uninstall the existing package? + + + + Install failed + + + + The deployment AVD "%1" cannot be started. + + + + Package deploy: Failed to pull "%1" to "%2". + + + + Package deploy: Running command "%1". + + + + Install an APK File + + + + Qt Android Installer + + + + Device name: + + + + Device type: + 设备类型: + + + Unknown + 未知 + + + Serial number: + + + + CPU architecture: + + + + OS version: + + + + Yes + + + + No + + + + Authorized: + + + + Android target flavor: + + + + Skin type: + + + + OpenGL status: + + + + Android Device Manager + + + + Refresh + + + + Start AVD + + + + Erase AVD + + + + AVD Arguments + + + + Set up Wi-Fi + + + + Emulator for "%1" + + + + Physical device + 物理设备 + + + None + + + + Erase the Android AVD "%1"? +This cannot be undone. + + + + The device has to be connected with ADB debugging enabled to use this feature. + + + + Opening connection port %1 failed. + + + + Retrieving the device IP address failed. + + + + The retrieved IP address is invalid. + + + + Connecting to the device IP "%1" failed. + + + + An error occurred while removing the Android AVD "%1" using avdmanager tool. + + + + Emulator Command-line Startup Options + + + + Emulator command-line startup options (<a href="%1">Help Web Page</a>): + + + + The device info returned from AvdDialog is invalid. + + + + Android: SDK installation error 0x%1 + + + + Android: NDK installation error 0x%1 + + + + Android: Java installation error 0x%1 + + + + Android: ant installation error 0x%1 + + + + Android: adb installation error 0x%1 + + + + Android: Device connection error 0x%1 + + + + Android: Device permission error 0x%1 + + + + Android: Device authorization error 0x%1 + + + + Android: Device API level not supported: error 0x%1 + + + + Android: Unknown error 0x%1 + + + + Unknown Android version. API Level: %1 + + + + Error creating Android templates. + + + + Cannot parse "%1". + + + + Starting Android virtual device failed. + + + + Android package installation failed. +%1 + + + + General + 概要 + + + XML Source + + + + Android Manifest editor + + + + Master icon + + + + Select master icon. + + + + LDPI icon + + + + Select an icon suitable for low-density (ldpi) screens (~120dpi). + + + + MDPI icon + + + + Select an icon for medium-density (mdpi) screens (~160dpi). + + + + HDPI icon + + + + Select an icon for high-density (hdpi) screens (~240dpi). + + + + XHDPI icon + + + + Select an icon for extra-high-density (xhdpi) screens (~320dpi). + + + + XXHDPI icon + + + + Select an icon for extra-extra-high-density (xxhdpi) screens (~480dpi). + + + + XXXHDPI icon + + + + Select an icon for extra-extra-extra-high-density (xxxhdpi) screens (~640dpi). + + + + Icon scaled up. + + + + Click to select... + + + + Images (*.png *.jpg *.jpeg *.webp *.svg) + + + + Include default permissions for Qt modules. + + + + Include default features for Qt modules. + + + + Package + + + + <p align="justify">Please choose a valid package name for your application (for example, "org.example.myapplication").</p><p align="justify">Packages are usually defined using a hierarchical naming pattern, with levels in the hierarchy separated by periods (.) (pronounced "dot").</p><p align="justify">In general, a package name begins with the top level domain name of the organization and then the organization's domain and then any subdomains listed in reverse order. The organization can then choose a specific name for their package. Package names should be all lowercase characters whenever possible.</p><p align="justify">Complete conventions for disambiguating package names and rules for naming packages when the Internet domain name cannot be directly used as a package name are described in section 7.7 of the Java Language Specification.</p> + + + + Package name: + 包名称: + + + The package name is not valid. + + + + Version code: + + + + Version name: + 版本名称: + + + Sets the minimum required version on which this application can be run. + + + + Not set + + + + Minimum required SDK: + + + + Sets the target SDK. Set this to the highest tested version. This disables compatibility behavior of the system for your application. + + + + Target SDK: + + + + Application name: + + + + Activity name: + + + + Style extraction: + + + + Screen orientation: + + + + Advanced + 高级 + + + Application icon + + + + Android services + + + + Splash screen + + + + Service Definition Invalid + + + + Cannot switch to source when there are invalid services. + + + + Cannot save when there are invalid services. + + + + The structure of the Android manifest file is corrupted. Expected a top level 'manifest' node. + + + + The structure of the Android manifest file is corrupted. Expected an 'application' and 'activity' sub node. + + + + API %1: %2 + + + + Could not parse file: "%1". + + + + %2: Could not parse file: "%1". + + + + Goto error + + + + Services invalid. Manifest cannot be saved. Correct the service definitions before saving. + + + + <b>Make install:</b> Copy App Files to %1 + + + + "%1" step has an invalid C++ toolchain. + + + + Removing directory %1 + + + + Failed to clean "%1" from the previous build, with error: +%2 + + + + Deploy to Android Device + + + + Java Language Server + + + + Would you like to configure Android options? This will ensure Android kits can be usable and all essential packages are installed. To do it later, select Edit > Preferences > Devices > Android. + + + + Configure Android + + + + Configure Android... + + + + %1 needs additional settings to enable Android support. You can configure those settings in the Options dialog. + + + + %1 has been stopped. + + + + Selected device is invalid. + + + + Selected device is disconnected. + + + + Launching AVD. + + + + Could not start AVD. + + + + No valid AVD has been selected. + + + + Checking if %1 app is installed. + + + + ABI of the selected device is unknown. Cannot install APK. + + + + Cannot install %1 app for %2 architecture. The appropriate APK was not found in resources folders. + + + + Installing %1 APK. + + + + Too many .qmlproject files in your project. Open directly the .qmlproject file you want to work with and then run the preview. + + + + No .qmlproject file found among project files. + + + + Could not gather information on project files. + + + + Could not create file for %1 "%2" + + + + A timeout occurred running "%1" + + + + Crash while creating file for %1 "%2" + + + + Creating file for %1 failed. "%2" (exit code %3). + + + + Uploading files. + + + + Starting %1. + 正在启动 %1 %2 + {1.?} + + + %1 is running. + + + + NDK is not configured in Devices > Android. + + + + SDK is not configured in Devices > Android. + + + + Failed to detect the ABIs used by the Qt version. Check the settings in Devices > Android for errors. + + + + Clean Environment + + + + Activity manager start arguments: + + + + Pre-launch on-device shell commands: + + + + Post-quit on-device shell commands: + + + + "%1" terminated. + + + + No free ports available on host for QML debugging. + + + + Failed to find application directory. + + + + Cannot find C++ debug server in NDK installation. + + + + The lldb-server binary has not been found. + + + + Cannot copy C++ debug server. + + + + Failed to start the activity. + + + + Activity Manager threw the error: %1 + + + + Failed to start debugger server. + + + + Failed to forward JDB debugging ports. + + + + Failed to start JDB. + + + + Cannot attach JDB to the running application. + + + + "%1" died. + + + + Encountered SSL errors, download is aborted. + + + + The SDK Tools download URL is empty. + + + + Downloading SDK Tools package... + + + + Cancel + 取消 + + + Download SDK Tools + + + + Could not open %1 for writing: %2. + + + + Downloading Android SDK Tools from URL %1 has failed: %2. + + + + Download from %1 was redirected. + + + + Writing and verifying the integrity of the downloaded file has failed. + + + + The operation requires user interaction. Use the "sdkmanager" command-line tool. + + + + Updating installed packages. + + + + Failed. + 失败. + + + Done + + + + + + Installing + + + + Uninstalling + + + + AndroidSdkManager + Failed + + + + AndroidSdkManager + Done + + + + + + License command failed. + + + + + + Android SDK Manager + + + + Update Installed + + + + Apply + + + + Default + 默认 + + + Stable + + + + Beta + + + + Dev + + + + Canary + + + + Include obsolete + + + + Available + 可用 + + + Installed + 已安装 + + + All + 所有 + + + Advanced Options... + + + + Expand All + 展开全部 + + + Do you want to accept the Android SDK license? + + + + Show Packages + + + + Channel: + + + + Android SDK Changes + + + + %1 cannot find the following essential packages: "%2". +Install them manually after the current operation is done. + + + + + Android SDK installation is missing necessary packages. Do you want to install the missing packages? + + + + Checking pending licenses... + + + + + The installation of Android SDK packages may fail if the respective licenses are not accepted. + + + + + +SDK Manager is busy. + + + + %n Android SDK packages shall be updated. + + + + + + [Packages to be uninstalled:] + + + + + SDK Manager is busy. Operation cancelled. + + + + Installing/Uninstalling selected packages... + + + + + Closing the %1 dialog will cancel the running and scheduled SDK operations. + + + + + preferences + + + + options + + + + Updating installed packages... + + + + + Android SDK operations finished. + + + + Operation cancelled. + + + + + +No pending operations to cancel... + + + + + +Cancelling pending operations... + + + + + SDK Manager Arguments + + + + Cannot load available arguments for "sdkmanager" command. + + + + SDK manager arguments: + + + + Available arguments: + + + + Revision + + + + API + + + + Tools + + + + SDK Platform + + + + The name of the class implementing the service. + + + + Checked if the service is run in an external process. + + + + The name of the external process. +Prefix with : if the process is private, use a lowercase name if the process is global. + + + + Checked if the service is in a separate dynamic library. + + + + The name of the separate dynamic library. + + + + The arguments for telling the app to run the service instead of the main activity. + + + + Service class name. + + + + Run in external process. + + + + Process name. + + + + Run in external library. + + + + Library name. + + + + Service arguments. + + + + The class name must be set. + + + + The process name must be set for a service run in an external process. + + + + The library name must be set for a service run in an external library. + + + + Open Android SDK download URL in the system's browser. + + + + Add the selected custom NDK. The toolchains and debuggers will be created automatically. + + + + Remove the selected NDK if it has been added manually. + + + + Force a specific NDK installation to be used by all Android kits.<br/>Note that the forced NDK might not be compatible with all registered Qt versions. + + + + Open JDK download URL in the system's browser. + + + + Set Up SDK + + + + Automatically download Android SDK Tools to selected location. + +If the selected path contains no valid SDK Tools, the SDK Tools package is downloaded +from %1, +and extracted to the selected path. +After the SDK Tools are properly set up, you are prompted to install any essential +packages required for Qt to build for Android. + + + + SDK Manager + + + + Open Android NDK download URL in the system's browser. + + + + Automatically create kits for Android tool chains + + + + Select the path of the prebuilt OpenSSL binaries. + + + + Download OpenSSL + + + + Automatically download OpenSSL prebuilt libraries. + +These libraries can be shipped with your application if any SSL operations +are performed. Find the checkbox under "Projects > Build > Build Steps > +Build Android APK > Additional Libraries". +If the automatic download fails, Qt Creator proposes to open the download URL +in the system's browser for manual download. + + + + Android SDK path exists and is writable. + + + + JDK path exists and is writable. + + + + SDK tools installed. + + + + SDK manager runs. + + + + Platform tools installed. + + + + All essential packages installed for all installed Qt versions. + + + + Build tools installed. + + + + Platform SDK installed. + + + + Android settings are OK. + + + + Android settings have errors. + + + + OpenSSL path exists. + + + + QMake include project (openssl.pri) exists. + + + + CMake include project (CMakeLists.txt) exists. + + + + OpenSSL Settings are OK. + + + + OpenSSL settings have errors. + + + + Select JDK Path + + + + Select Android SDK Folder + + + + Select OpenSSL Include Project File + + + + Android Settings + + + + JDK location: + + + + Android NDK list: + + + + Android OpenSSL settings (Optional) + + + + OpenSSL binaries location: + + + + Failed to create the SDK Tools path %1. + + + + Select an NDK + + + + Add Custom NDK + + + + The selected path has an invalid NDK. This might mean that the path contains space characters, or that it does not have a "toolchains" sub-directory, or that the NDK version could not be retrieved because of a missing "source.properties" or "RELEASE.TXT" file + + + + OpenSSL Cloning + + + + OpenSSL prebuilt libraries repository is already configured. + + + + The selected download path (%1) for OpenSSL already exists and the directory is not empty. Select a different path or make sure it is an empty directory. + + + + Cloning OpenSSL prebuilt libraries... + + + + OpenSSL prebuilt libraries cloning failed. + + + + Opening OpenSSL URL for manual download. + + + + Open Download URL + + + + The Git tool might not be installed properly on your system. + + + + (SDK Version: %1, NDK Version: %2) + + + + Unset Default + + + + Make Default + 设置为默认 + + + The selected path already has a valid SDK Tools package. + + + + Download and install Android SDK Tools to %1? + + + + Android Clang + + + + Overwrite existing AVD name + + + + Device definition: + + + + Architecture (ABI): + + + + Target API: + + + + Cannot create a new AVD. No suitable Android system image is installed.<br/>Install a system image for the intended Android version from the SDK Manager. + + + + Cannot create an AVD for ABI %1.<br/>Install a system image for it from the SDK Manager tab first. + + + + Allowed characters are: a-z A-Z 0-9 and . _ - + + + + No application .pro file found in this project. + + + + No Application .pro File + + + + Select the .pro file for which you want to create the Android template files. + + + + .pro file: + + + + Select a .pro File + + + + Android package source directory: + + + + The Android package source directory cannot be the same as the project directory. + + + + Copy the Gradle files to Android directory + + + + It is highly recommended if you are planning to extend the Java part of your Qt application. + + + + Select the Android package source directory. + +The files in the Android package source directory are copied to the build directory's Android directory and the default files are overwritten. + + + + The Android template files will be created in the %1 set in the .pro file. + + + + Create Android Template Files Wizard + + + + Project File not Updated + + + + Could not update the project file %1. + + + + Java: + + + + Java Language Server: + + + + Path to equinox launcher jar + + + + Select splash screen image + + + + Portrait splash screen + + + + Select portrait splash screen image + + + + Landscape splash screen + + + + Select landscape splash screen image + + + + Clear All + + + + A non-sticky splash screen is hidden automatically when an activity is drawn. +To hide a sticky splash screen, invoke QtAndroid::hideSplashScreen(). + + + + Sticky splash screen: + + + + Image show mode: + + + + Background color of the splash screen. + + + + Background color: + + + + Select master image to use. + + + + Master image: + + + + Select portrait master image to use. + + + + Portrait master image: + + + + Select landscape master image to use. + + + + Landscape master image: + + + + LDPI + + + + MDPI + + + + HDPI + + + + XHDPI + + + + XXHDPI + + + + XXXHDPI + + + + An image is used for the splashscreen. Qt Creator manages +splashscreen by using a different method which requires changing +the manifest file by overriding your settings. Allow override? + + + + Convert + + + + Select background color + + + + Select master image + + + + Select portrait master image + + + + Select landscape master image + + + + Images + 图片 + + Application Failed to load core: %1 核心载入失败: %1 - - Unable to send command line arguments to the already running instance. It appears to be not responding. Do you want to start a new instance of Creator? - 无法发送命令行参数到已经运行的实例中。看起来没有响应。您想要启动一个新的Creator实例吗? - - - Unable to send command line arguments to the already running instance. It appears to be not responding. - 无法将命令行参数发送到执行中的进程,看起来进程未响应. - Could not send message 无法发送消息 - Could not find 'Core.pluginspec' in %1 - 在%1 中找不到 'Core.pluginspec' + Unable to send command line arguments to the already running instance. It does not appear to be responding. Do you want to start a new instance of %1? + - Qt Creator - Plugin loader messages - Qt Creator - 插件载入信息 - - - - AttachCoreDialog - - Start Debugger - 启动调试器 - - - Executable: - 执行档: - - - Core File: - 核心文件: - - - Core file: - 核心文件: - - - &Executable: - 执行档(&E): - - - &Core file: - 核心文件(&C): - - - &Tool chain: - 工具链(&T): - - - Override &Start script: - 覆盖启动脚本(&S): - - - Sys&root: - 系统根目录(&R): - - - Override &start script: - 覆盖启动脚本(&S): - - - - AttachExternalDialog - - Start Debugger - 启动调试器 - - - Attach to Process ID: - 挂接进程ID: - - - Filter: - 过滤器: - - - Clear - 清空 - - - Attach to process ID: - 关联进程ID: - - - Attach to &process ID: - 挂接到进程ID(&P): - - - &Tool chain: - 工具链(&T): - - - - BINEditor::Internal::BinEditorPlugin - - &Undo - 撤销(&U) - - - &Redo - 恢复(&R) - - - - Bookmarks - - Add Bookmark - 添加书签 - - - Bookmark: - 书签: - - - Add in Folder: - 添加到文件夹: - - - + - + - - - New Folder - 新建文件夹 - - - Bookmarks - 书签 - - - Delete Folder - 删除文件夹 - - - Rename Folder - 重命名文件夹 - - - Add in folder: - 添加到文件夹: - - - Remove - 删除 - - - Deleting a folder also removes its content.<br>Do you want to continue? - 删除文件夹会同时删除文件夹下的文件。<br>您确定继续吗? - - - Show Bookmark - 显示书签 - - - Show Bookmark as New Page - 在新页面显示书签 - - - Delete Bookmark - 删除书签 - - - Rename Bookmark - 重命名书签 - - - Filter: - 过滤器: - - - Add - 添加 - - - Move Up - 向上移动 - - - Move Down - 向下移动 - - - &Remove - 删除(&R) - - - Remove All - 全部删除 - - - &Remove Bookmark - 删除书签(&R) - - - Remove all Bookmarks - 删除所有书签 - - - &Bookmarks - 书签(&B) - - - Toggle Bookmark - 切换书签 - - - Ctrl+M - Ctrl+M - - - Meta+M - Meta+M - - - Previous Bookmark - 上个书签 - - - Ctrl+, - Ctrl+, - - - Meta+, - Meta+, - - - Next Bookmark - 下个书签 - - - Ctrl+. - Ctrl+. - - - Meta+. - Meta+. - - - Previous Bookmark in Document - 文档中的上个书签 - - - Next Bookmark in Document - 文档中的下个书签 - - - Edit Bookmark Note - 编辑书签注释 - - - Previous Bookmark In Document - 上个文档内书签 - - - Next Bookmark In Document - 下个文档内书签 - - - - Debugger - - Function to break on: - 设断点的函数: - - - Set Breakpoint at Function - 在函数处设定断点 - - - - CMakeProjectManager - - Clear system environment - 清除系统环境变量 - - - Create - 创建 - - - Build - 构建 - - - New Configuration - 新配置 - - - New configuration name: - 新配置名称: - - - New configuration - 新配置 - - - New Configuration Name: - 新配置名称: - - - Run cmake - 执行cmake - - - Reconfigure project: - 重新装配项目: - - - &Change - 更改(&C) - - - Build directory: - 构建目录: - - - CMake Wizard - CMake 向导 - - - Arguments: - 参数: - - - Select the working directory - 选择工作文件夹 - - - Select Working Directory - 选择工作目录 - - - Reset to default - 重置为默认 - - - Working Directory: - 工作目录: - - - Working directory: - 工作目录: - - - Run in Terminal - 在终端中运行 - - - Debugger: - 调试器: - - - Run Environment - 运行环境 - - - Base environment for this runconfiguration: - 本次运行配置的基本环境变量: - - - Clean Environment - 清除环境变量 - - - System Environment - 系统环境变量 - - - Build Environment - 构建时的环境变量 - - - Running executable: <b>%1</b> %2 - 运行的执行档: <b>%1</b> %2 - - - Qt Creator has detected an <b>in-source-build in %1</b> which prevents shadow builds. Qt Creator will not allow you to change the build directory. If you want a shadow build, clean your source directory and re-open the project. - Qt Creator在<b>%1</b>检测到一个<b>在源代码中的构建</b>,无法进行shadow build. Qt Creator将不允许您更改编译目录。如果您想要进行shadow build,请清理源码目录再重新打开此项目。 - - - Build Location - 构建路径 - - - Generator: - 创建器: - - - Run CMake - 执行CMake - - - Arguments - 参数 - - - 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. - 目录 %1 没有 cbp 文件. Qt Creator 需要运行 cmake以创建此文件. 一些项目需要命令参数初始化cmake调用. - - - Qt Creator needs to run cmake in the new build directory. Some projects require command line arguments to the initial cmake call. - Qt Creator 需要在新的构建目录下运行 cmake . 一些项目需要命令参数初始化cmake调用. - - - Please specify the path to the CMake executable. No CMake executable was found in the path. - 请指定cmake可执行档的路径,在环境变量path中没有找到cmake执行档。 - - - The CMake executable (%1) does not exist. - cmake执行档 (%1) 不存在。 - - - The path %1 is not a valid CMake. - 路径 (%1) 不是有效的cmake。 - - - The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments and rerun CMake. Or simply finish the wizard directly. - 目录中 %1 已经存在足够新的 cbp 文件。您可以传入特殊参数重新运行 CMake,或者直接完成向导。 - - - 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. - 目录 %1 没有 cbp 文件。Qt Creator 需要运行 CMake以创建此文件。一些项目需要命令参数初始化 CMake 调用。 - - - The directory %1 contains an outdated .cbp file. Qt Creator needs to update this file by running CMake. If you want to add additional command line arguments, add them below. Note that CMake remembers command line arguments from the previous runs. - 目录 %1 包含了一个过期的 .cbp文件。Qt Creator需要运行 CMake 以更新此文件。如果您想添加额外的命令行参数,那就添加在下面。注意 CMake 会记住上次运行时的命令行参数。 - - - The directory %1 specified in a build-configuration, does not contain a cbp file. Qt Creator needs to recreate this file, by running CMake. Some projects require command line arguments to the initial CMake call. Note that CMake remembers command line arguments from the previous runs. - 目录 %1 指定了一个构建配置却不包含 cbp文件。Qt Creator 需要运行 CMake 以重新创建此文件。一些项目需要命令参数初始化CMake调用。注意 CMake 会记住上次运行时的命令行参数。 - - - Qt Creator needs to run CMake in the new build directory. Some projects require command line arguments to the initial CMake call. - Qt Creator 需要在新的构建目录下运行 CMake。一些项目需要命令参数初始化 CMake 调用。 - - - Refreshing cbp file in %1. - 正在刷新 %1 中的 cbp 文件。 - - - MinGW Generator (%1) - MinGW 创建器 (%1) - - - Unix Generator (%1) - Unix 创建器 (%1) - - - No generator selected. - 没有选择创建器。 - - - CMake exited with errors. Please check CMake output. - CMake 错误退出。请检查 CMake 输出。 - - - CMake exited with errors. Please check cmake output. - CMake 错误退出. 请检查 cmake 输出. - - - NMake Generator - NMake 创建器 - - - NMake Generator (%1) - NMake 创建器(%1) - - - MinGW Generator - MinGW 创建器 - - - No valid CMake executable specified. - 没有指定有效的cmake执行档。 - - - No valid cmake executable specified. - 没有指定有效的cmake执行档。 - - - CMake - CMake - - - Executable: - 执行档: - - - CMake executable - 可执行的cmake - - - Additional arguments: - 额外的参数: - - - Targets: - 目标: - - - Make - CMakeProjectManager::MakeStepConfigWidget display name. - Make - - - <b>No build configuration found on this target.</b> - <b>未找到此目标的构建配置。</b> - - - <b>Unknown tool chain</b> - <b>未知工具链</b> - - - <b>Make:</b> %1 %2 - <b>Make:</b> %1 %2 - - - <b>Unknown Toolchain</b> - <b>未知工具链</b> - - - Please enter the directory in which you want to build your project. - 请进入您想构建项目的目录。 - - - Please enter the directory in which you want to build your project. Qt Creator recommends to not use the source directory for building. This ensures that the source directory remains clean and enables multiple builds with different settings. - 请进入您想构建项目的目录。Qt Creator 建议您不要使用源目录构建。这能确保源目录干净,并且可以针对不同设定多次构建。 - - - - CPlusPlus::OverviewModel - - <Select Symbol> - <选择符号> - - - <No Symbols> - <没有符号> - - - - CdbOptionsPageWidget - - These options take effect at the next start of Qt Creator. - 这些选项将在Qt Creator 下次启动时生效。 - - - Debugger Paths - 调试器路径 - - - Symbol paths: - 符号路径: - - - Source paths: - 源码路径: - - - <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>在这里指定到 <a href="%1">windows下的调试工具</a> (%2) 的路径.</p><p><b>注意:</b> 使配置生效需要重启动 Qt Creator 。</p></p></body></html> - - - Other options - 其他选项 - - - Verbose Symbol Loading - 打印标记载入信息 - - - Other Options - 其他选项 - - - Verbose symbol loading - 打印符号载入的详细信息 - - - fast loading of debugging helpers - 快速载入调试助手 - - - Fast loading of debugging helpers - 快速载入调试助手 - - - Break on exception - 在异常处中断 - - - - ChangeSelectionDialog - - Repository Location: - 代码仓库地址: - - - Select - 选择 - - - Change: - 修改: - - - Repository location: - 代码仓库地址: - - - - CodePaster - - &Code Pasting - 粘贴代码(&C) - - - Paste Snippet... - 粘贴代码片段... - - - Alt+C,Alt+P - Alt+C,Alt+P - - - Meta+C,Meta+P - Meta+C,Meta+P - - - Paste Clipboard... - 粘贴剪贴板... - - - Fetch Snippet... - 取得代码片段... - - - Alt+C,Alt+F - Alt+C,Alt+F - - - Meta+C,Meta+F - Meta+C,Meta+F - - - Fetch from URL... - 从URL获取... - - - Fetch from URL - 从URL获取 - - - Enter URL: - 输入URL: - - - Empty snippet received for "%1". - "%1"接收到空的片段。 - - - Refresh - 刷新 - - - Waiting for items - 等待数据项 - - - This protocol does not support listing - 此协议不支持列表 - - - Copy Paste URL to clipboard - 复制URL到剪贴板 - - - Display Output Pane after sending a post - 发送后显示输出对话框 - - - General - 概要 - - - - CompletionSettingsPage - - &Case-sensitive completion - 区分大小写(&C) - - - Automatically insert (, ) and ; when appropriate. - 必要时自动插入符号(,)和(;)。 - - - Insert the common prefix of available completion items. - 为可自动补全的项插入相同的前缀。 - - - &Automatically insert brackets - 自动插入括号(&A) - - - Behavior - 行为 - - - &Case-sensitivity: - 大小写敏感(&C): - - - Full - 全部 - - - None - - - - First letter - 仅首字母 - - - Insert &space after function name - 在函数名后插入空格(&S) - - - First Letter - 仅首字母 - - - Activate completion: - 激活补全: - - - Manually - 手动设置 - - - When Triggered - 当触发时 - - - Always - 总是 - - - Automatically insert brackets and semicolons when appropriate. - 在适当的时候自动添加括号和分号. - - - Automatically insert semicolons and closing brackets, parentheses, curly braces, and quotes when appropriate. - 在适当的时候自动添加括号,分号,大括号和引号. - - - &Automatically insert matching characters - 自动插入括号(&A) - - - Surround &text selections - 环绕文本选择(&T) - - - - ContentWindow - - Open Link - 打开链接 - - - Open Link as New Page - 在新页面打开连接 - - - - Core::BaseFileWizard - - Unable to create the directory %1. - 创建文件夹 %1 失败。 - - - Unable to open %1 for writing: %2 - 写入方式打开文件%1失败: %2 - - - Error while writing to %1: %2 - 写入 %1: %2发生错误 - - - File Generation Failure - 生成文件失败 - - - Existing files - 已存在的文件 - - - Failed to open an editor for '%1'. - 为 '%1'打开编辑器时失败。 - - - [read only] - [只读] - - - [folder] - [文件夹] - - - [directory] - [目录] - - - [symbolic link] - [符号链接] - - - The project directory %1 contains files which cannot be overwritten: -%2. - 项目目录 %1 存在着无法被覆盖的文件: -%2。 - - - The following files already exist in the directory %1: -%2. -Would you like to overwrite them? - 以下文件在目录 %1 中已经存在: -%2. -是否要覆盖? - - - - Core::EditorManager - - Revert to Saved - 恢复到已保存的状态 - - - Close - 关闭 - - - Close All - 关闭所有文件 - - - Close Others - 关闭其他 - - - Open in External Editor - 用外部编辑器打开 - - - Revert File to Saved - 恢复文件到已保存的状态 - - - Ctrl+F4 - Ctrl+F4 - - - Ctrl+W - Ctrl+W - - - Ctrl+Shift+W - Ctrl+Shift+W - - - Alt+Tab - Alt+Tab - - - Ctrl+Tab - Ctrl+Tab - - - Alt+Shift+Tab - Alt+Shift+Tab - - - Ctrl+Shift+Tab - Ctrl+Shift+Tab - - - Ctrl+Alt+Left - Ctrl+Alt+Left - - - Alt+Left - Alt+Left - - - Ctrl+Alt+Right - Ctrl+Alt+Right - - - Alt+Right - Alt+Right - - - Split - 分栏 - - - Meta+E,2 - Meta+E,2 - - - Ctrl+E,2 - Ctrl+E,2 - - - Split Side by Side - 左右分栏 - - - Meta+E,3 - Meta+E,3 - - - Ctrl+E,3 - Ctrl+E,3 - - - Remove Current Split - 删除当前分隔 - - - Meta+E,0 - Meta+E,0 - - - Ctrl+E,0 - Ctrl+E,0 - - - Remove All Splits - 删除所有分隔 - - - Meta+E,1 - Meta+E,1 - - - Ctrl+E,1 - Ctrl+E,1 - - - Meta+E,o - Meta+E,o - - - Ctrl+E,o - Ctrl+E,o - - - Make Writable - 使文件可写 - - - The file <i>%1</i> is read only. - 文件 <i>%1</i> 是只读的。 - - - Save %1 &As... - %1 另存为(&A)... - - - Goto Other Split - 移动到其他分隔 - - - &Advanced - 高级(&A) - - - Alt+V,Alt+I - Alt+V,Alt+I - - - All Files (*) - 所有文件 (*) - - - Opening File - 打开文件 - - - Cannot open file %1! - 打开文件 %1 失败! - - - Open File - 打开文件 - - - File is Read Only - 文件是只读状态 - - - The file %1 is read only. - 文件 %1 是只读的。 - - - Open with VCS (%1) - 使用VCS打开 (%1) - - - Save as ... - 另存为... - - - Failed! - 失败! - - - Could not set permissions to writable. - 无法设置文件的可写权限。 - - - Qt Creator - Qt Creator - - - <b>Warning:</b> This file was not opened in %1 yet. - <b>警告:</b> 此文件还没有在%1中打开。 - - - Open - 打开 - - - <b>Warning:</b> You are changing a read-only file. - <b>警告:</b> 您正在改写一个只读文件。 - - - Make writable - 使文件可写 - - - Next Open Document in History - 历史中下个打开的文件 - - - Previous Open Document in History - 历史中先前打开的文件 - - - Go Back - 返回 - - - Go Forward - 前进 - - - Meta+E - Meta+E - - - Ctrl+E - Ctrl+E - - - %1,2 - %1,2 - - - %1,3 - %1,3 - - - %1,0 - %1,0 - - - %1,1 - %1,1 - - - Go to Next Split - 移动到下一个分栏 - - - %1,o - %1,o - - - Ad&vanced - 高级(&A) - - - Full path of the current document including file name. - 当前文档包含文件名的完整路径。 - - - Full path of the current document excluding file name. - 当前文档不包含文件名的完整路径。 - - - X-coordinate of the current editor's upper left corner, relative to screen. - 当前编辑器的左上角(相对屏幕来说)X坐标轴。 - - - Y-coordinate of the current editor's upper left corner, relative to screen. - 当前编辑器的左上角(相对屏幕来说)Y坐标轴。 - - - Close "%1" - 关闭%1 - - - Close Editor - 关闭编辑器 - - - Close All Except "%1" - 除了%1 以外全部关闭 - - - Close Other Editors - 关闭其他编辑器 - - - File Error - 文件错误 - - - Cannot Open File - 无法打开文件 - - - Cannot open the file for editing with SCC. - 无法使用SCC打开用于编辑的文件。 - - - Cannot Set Permissions - 无法设置权限 - - - Cannot set permissions to writable. - 无法设置可写权限。 - - - Cannot open the file for editing with VCS. - 无法为了编辑VCS而打开文件。 - - - Could not open the file for editing with SCC. - 无法打开文件用于SCC编辑。 - - - Save %1 As... - 另存为%1 ... - - - &Save %1 - 保存%1(&S) - - - Revert %1 to Saved - 恢复%1 到已保存的状态 - - - Close %1 - 关闭%1 - - - Close All Except %1 - 除了%1 以外全部关闭 - - - You will lose your current changes if you proceed reverting %1. - 如果恢复 %1 那么您将会丢失现有的所有修改。 - - - Proceed - 继续 - - - Cancel - 取消 - - - <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>变量</th><th>展开到</th></tr><tr><td>%f</td><td>文件名</td></tr><tr><td>%l</td><td>当前行号</td></tr><tr><td>%c</td><td>当前列号</td></tr><tr><td>%x</td><td>编辑器的屏幕x坐标</td></tr><tr><td>%y</td><td>编辑器的屏幕y坐标</td></tr><tr><td>%w</td><td>编辑器的宽度(像素数)</td></tr><tr><td>%h</td><td>编辑器的高度(像素数)</td></tr><tr><td>%W</td><td>编辑器的宽度(字符数)</td></tr><tr><td>%H</td><td>编辑器的高度(字符数)</td></tr><tr><td>%%</td><td>%</td></tr></table> - - - - Core::FileManager - - Cannot save file - 保存文件失败 - - - File Error - 文件错误 - - - Overwrite? - 覆盖? - - - An item named '%1' already exists at this location. Do you want to overwrite it? - 名为'%1'的项已经存在,是否想要覆盖它? - - - Save File As - 文件另存为 - - - Open File - 打开文件 - - - File is Read Only - 文件是只读状态 - - - The file <i>%1</i> is read only. - 文件 <i>%1</i> 是只读的。 - - - Open with VCS (%1) - 使用VCS打开 (%1) - - - Make writable - 使文件可写 - - - Save as... - 另存为... - - - Cannot reload %1 - 无法重载%1 - - - Save as ... - 另存为... - - - - Core::Internal::ComboBox - - Activate %1 - 激活%1 - - - - Core::Internal::EditMode - - Edit - 编辑 - - - - Core::Internal::EditorSplitter - - Split Left/Right - 左右分栏 - - - Split Top/Bottom - 上下分栏 - - - Unsplit - 合并分栏 - - - Default Splitter Layout - 默认分栏布局 - - - Save Current as Default - 将当前保存为默认 - - - Restore Default Layout - 重置到默认布局 - - - Previous Document - 上个文档 - - - Alt+Left - Alt+Left - - - Next Document - 下个文档 - - - Alt+Right - Alt+Right - - - Previous Group - 上个组 - - - Next Group - 下个组 - - - - Core::Internal::EditorView - - Go Back - 返回 - - - Go Forward - 前进 - - - Placeholder - 占位符 - - - Close - 关闭 - - - Make writable - 使文件可写 - - - File is writable - 文件可写 - - - - Core::Internal::GeneralSettings - - General - 概要 - - - <System Language> - <系统语言> - - - Restart required - 需要重启 - - - The language change will take effect after a restart of Qt Creator. - 语言变更会在重启 Qt Creator 后生效。 - - - Environment - 环境 - - - Variables - 变量 - - - General settings - 基本设定 - - - User &interface color: - 用户界面颜色(&i): - - - Reset to default - 重置为默认 - - - R - R - - - Terminal: - 终端: - - - External editor: - 外部编辑器: - - - ? - ? - - - When files are externally modified: - 当文件被外部修改时: - - - Always ask - 总是询问 - - - Reload all modified files - 载入所有被修改的文件 - - - Ignore modifications - 忽略修改 - - - User Interface - 用户界面 - - - Color: - 颜色: - - - Language: - 语言: - - - Default File Encoding: - 默认文件编码: - - - System - 系统 - - - External file browser: - 外部文件浏览器: - - - Reload all unchanged editors - 重新载入所有未变更的编辑器 - - - Default file encoding: - 默认文件编码: - - - Always Ask - 总是询问 - - - Reload All Unchanged Editors - 重新载入所有未变更的编辑器 - - - Ignore Modifications - 忽略修改 - - - Reset - 重置 - - - Reset to default. - Color - 重置为默认。 - - - Reset to default. - Terminal - 重置为默认。 - - - Reset to default. - File Browser - 重置为默认。 - - - Automatically create temporary copies of modified files. If Qt Creator is restarted after a crash or power failure, it asks whether to recover the auto-saved content. - 自动为已修改的文件创建临时备份。如果Qt Creator在崩溃或停电后重启,它将会询问是否恢复自动保存的内容。 - - - Auto-save modified files - 自动保存修改的文件 - - - Interval: - 间隔: - - - min - unit for minutes - - - - - Core::Internal::MainWindow - - Qt Creator - Qt Creator - - - Output - 输出 - - - &File - 文件(&F) - - - &Edit - 编辑(&E) - - - &Tools - 工具(&T) - - - &Window - 控件(&W) - - - &Help - 帮助(&H) - - - &New File or Project... - 新建文件或项目(&N)... - - - &Open File or Project... - 打开文件或项目(&O)... - - - &Open File With... - 打开为(&O)... - - - Recent Files - 最近使用的文件 - - - Exit Full Screen - 退出全屏模式 - - - Enter Full Screen - 进入全屏模式 - - - Open File &With... - 不需要快捷键 - 打开文件,用...(&W) - - - Recent &Files - 最近访问的文件(&F) - - - &Save - 保存(&S) - - - Save - 保存 - - - Save &As... - 另存为(&A)... - - - Ctrl+Shift+S - Ctrl+Shift+S - - - Save As... - 另存为... - - - Save A&ll - 保存所有文件(&L) - - - &Print... - 打印(&P)... - - - E&xit - 退出(&X) - - - Ctrl+Q - Ctrl+Q - - - &Undo - 撤销(&U) - - - Undo - 撤销 - - - &Redo - 重做(&R) - - - Redo - 重做 - - - Cu&t - 剪切(&T) - - - &Copy - 复制(&C) - - - &Paste - 粘贴(&P) - - - Select &All - 全选(&A) - - - &Go to Line... - 转到行(&G)... - - - &Select All - 全选(&S) - - - &Go To Line... - 转到行(&G)... - - - Ctrl+L - Ctrl+L - - - &Options... - 选项(&O)... - - - Ctrl+, - Ctrl+, - - - Minimize - 最小化 - - - Ctrl+M - Ctrl+M - - - Zoom - 缩放 - - - Show Sidebar - 显示边栏 - - - Ctrl+0 - Ctrl+0 - - - Alt+0 - Alt+0 - - - Full Screen - 全屏 - - - Ctrl+Meta+F - Ctrl+Meta+F - - - Ctrl+Shift+F11 - Ctrl+Shift+F11 - - - &Views - 视图(&V) - - - About &Qt Creator - 关于 Qt Creator(&Q) - - - About &Qt Creator... - 关于 Qt Creator(&Q)... - - - About &Plugins... - 关于插件(&P)... - - - New - Title of dialog - 新建 - - - Open Project - 打开项目 - - - New... - Title of dialog - 新建... - - - Settings... - 设定... - - - - Core::Internal::MessageOutputWindow - - General - 概要 - - - General Messages - 概要信息 - - - - Core::Internal::NavComboBox - - Activate %1 - 激活 %1 - - - - Core::Internal::NavigationSubWidget - - Split - 分栏 - - - Close - 关闭 - - - - Core::Internal::NavigationWidget - - Hide Sidebar - 隐藏边栏 - - - Show Sidebar - 显示边栏 - - - Activate %1 Pane - 激活%1 窗口 - - - - Core::Internal::NewDialog - - New Project - 新项目 - - - 1 - 1 - - - &Create - 创建(&C) - - - Choose a template: - 选择一个模板: - - - &Choose... - 选择(&C)... - - - Projects - 项目 - - - Files and Classes - 文件和类 - - - All Templates - 所有模板 - - - %1 Templates - %1 模板 - - - Platform independent - 与平台无关 - - - Supported Platforms - 支持的平台 - - - - Core::Internal::OpenEditorsWidget - - Open Documents - 打开文档 - - - Close %1 - 关闭 %1 - - - Close Editor - 关闭编辑器 - - - Close All Except %1 - 关闭所有除了%1 - - - Close "%1" - 关闭%1 - - - Close All Except "%1" - 除了%1 以外全部关闭 - - - Close Other Editors - 关闭其他编辑器 - - - Close All Editors - 关闭所有编辑器 - - - - Core::Internal::OpenEditorsWindow - - * - * - - - - Core::Internal::OpenWithDialog - - Open file '%1' with: - 打开文件 '%1',用: - - - Open File With... - 打开文件,用... - - - Open file extension with: - 使用...打开文件扩展名: - - - - Core::Internal::OutputPaneManager - - Output - 输出 - - - Clear - 清空 - - - Next Item - 下一项 - - - Previous Item - 上一项 - - - Maximize Output Pane - 最大化输出窗口 - - - Shift+F6 - Shift+F6 - - - F6 - F6 - - - Ctrl+9 - Ctrl+9 - - - Alt+9 - Alt+9 - - - Minimize Output Pane - 最小化输出窗口 - - - Minimize/Maximize Output Pane - 最小化/最大化输出窗口 - - - Output &Panes - 输出窗口(&P) - - - - Core::Internal::PluginDialog - - Details - 详情 - - - Error Details - 错误详情 - - - Close - 关闭 - - - Restart required. - 需要重启。 - - - Installed Plugins - 已安装的插件 - - - Plugin Details of %1 - %1 的插件详情 - - - Plugin Errors of %1 - %1 的插件错误 - - - - Core::Internal::ProgressView - - Processes - 进程 - - - - Core::Internal::SaveItemsDialog - - Do not Save - 不要保存 - - - Save All - 保存所有 - - - Save - 保存 - - - Save Selected - 保存选中 - - - Save Changes - 保存修改 - - - The following files have unsaved changes: - 以下文件有未保存的修改: - - - Automatically save all files before building - 构建前自动保存所有文件 - - - - Core::Internal::ShortcutSettings - - Keyboard - 键盘 - - - Environment - 环境 - - - Keyboard Shortcuts - 键盘快捷键 - - - Key sequence: - 键位顺序: - - - Shortcut - 快捷键 - - - Import Keyboard Mapping Scheme - 导入键盘映射方案 - - - Keyboard Mapping Scheme (*.kms) - 键盘映射方案 (*.kms) - - - Export Keyboard Mapping Scheme - 导出键盘映射方案 - - - - Core::Internal::SideBarWidget - - Split - 分栏 - - - Close - 关闭 - - - - Core::Internal::VersionDialog - - About Qt Creator - 关于Qt Creator - - - (%1) - (%1) - - - From revision %1<br/> - This gets conditionally inserted as argument %8 into the description string. - 来自修订版本 %1<br/> - - - <h3>Qt Creator %1 %8</h3>Based on Qt %2 (%3 bit)<br/><br/>Built on %4 at %5<br /><br/>%9<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> - <h3>Qt Creator %1 %8</h3>基于 Qt %2 (%3 bit)<br/><br/>构建于 %5 %4 <br /><br/>%9<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> - - - <h3>Qt Creator %1</h3>Based on Qt %2 (%3 bit)<br/><br/>Built on %4 at %5<br /><br/>%8<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> - <h3>Qt Creator %1</h3>基于 Qt %2 (%3 bit)<br/><br/>构建 %4 在 %5<br /><br/>%8<br/>版权 2008-%6 %7. 保留最终解释权.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> - - - - Core::ModeManager - - Switch to <b>%1</b> mode - 切换到<b>%1</b> 模式 - - - - Core::ScriptManager - - Exception at line %1: %2 -%3 - 在%1 行发生异常: %2 -%3 - - - Unknown error - 未知错误 - - - - Core::StandardFileWizard - - New %1 - 新建 %1 - - - - Utils::ClassNameValidatingLineEdit - - The class name must not contain namespace delimiters. - 类名不能包含命名空间分隔符。 - - - Please enter a class name. - 请输入类名。 - - - The class name contains invalid characters. - 类名含有无效字符。 - - - - Utils::ConsoleProcess - - Cannot set up communication channel: %1 - 无法建立通信通道: %1 - - - Press <RETURN> to close this window... - 按 <RETURN> 来关闭窗口... - - - Cannot create temporary file: %1 - 无法创建临时文件: %1 - - - Cannot write temporary file. Disk full? - 无法创建临时文件。磁盘已满? - - - Cannot create temporary directory '%1': %2 - 无法创建临时目录 '%1': %2 - - - Unexpected output from helper program (%1). - 意料外的输出,来自帮助程序 (%1)。 - - - Cannot change to working directory '%1': %2 - 无法切换到工作目录 '%1': %2 - - - Cannot execute '%1': %2 - 无法执行 '%1': %2 - - - Unexpected output from helper program. - 来自帮助程序的异常输出. - - - The process '%1' could not be started: %2 - 进程 '%1' 无法被启动: %2 - - - Cannot obtain a handle to the inferior: %1 - 无法获得inferior的句柄: %1 - - - Cannot obtain exit status from inferior: %1 - 无法获得inferior的退出状态: %1 - - - Quoting error in command. - 命令发生引用(quoting) 错误。 - - - Debugging complex shell commands in a terminal is currently not supported. - 目前不支持在终端中调试复杂的命令。 - - - Quoting error in terminal command. - 终端命令发生引用(quoting)错误。 - - - Terminal command may not be a shell command. - 终端命令可能不是一个shell命令。 - - - Cannot start the terminal emulator '%1'. - 无法启动终端模拟器'%1'。 - - - Cannot create socket '%1': %2 - 无法创建套接字 '%1': %2 - - - - Utils::FileNameValidatingLineEdit - - The name must not be empty - 名称不能为空 - - - The name must not contain any of the characters '%1'. - 名称不能包含 '%1' 中的任何一个 - - - The name must not contain '%1'. - 名称不能包含 '%1' - - - The name must not match that of a MS Windows device. (%1). - 名称不能与微软视窗设备名相同. (%1). - - - Name is empty. - 名称为空。 - - - Name contains white space. - 名称包含空白。 - - - Invalid character '%1'. - 无效字符 '%1'。 - - - Invalid characters '%1'. - 无效字符串 '%1'。 - - - Name matches MS Windows device. (%1). - 名称与微软视窗设备匹配 (%1)。 - - - File extension %1 is required: - 需要文件扩展 %1 : - - - File extensions %1 are required: - 需要文件扩展 %1 : - - - - Utils::FileSearch - - %1: canceled. %n occurrences found in %2 files. - - %1: 被取消。在 %2 个文件找到了%n 次。 - - - - %1: %n occurrences found in %2 files. - - %1: 在 %2 个文件找到了%n 次。 - - - - %1: %n occurrences found in %2 of %3 files. - - %1: 在 %3个文件中的 %2个找到了%n 次。 - - - - - Utils::NewClassWidget - - Invalid base class name - 无效基类名 - - - Invalid header file name: '%1' - 无效的头文件名称: '%1' - - - Invalid source file name: '%1' - 无效的源文件名称: '%1' - - - Invalid form file name: '%1' - 无效的界面文件名: '%1' - - - Class name: - 类名: - - - Base class: - 基类: - - - Header file: - 头文件: - - - Source file: - 源文件: - - - Generate form: - 创建界面: - - - Form file: - 界面文件: - - - Path: - 路径: - - - Inherits QObject - 继承自QObject - - - Type information: - 类型信息: - - - None - - - - Inherits QWidget - 继承自QWidget - - - Based on QSharedData - 基于QSharedData - - - &Class name: - 类名(&C): - - - &Base class: - 基类(&B): - - - &Type information: - 类型信息(&T): - - - &Header file: - 头文件(&H): - - - &Source file: - 源文件(&S): - - - &Generate form: - 创建界面(&G): - - - &Form file: - 界面文件(&F): - - - &Path: - 路径(&P): - - - Inherits QDeclarativeItem - 继承自 QDeclarativeItem - - - - Utils::PathChooser - - Choose... - 选择... - - - Browse... - 浏览... - - - Choose a directory - 选择目录 - - - Choose a file - 选择文件 - - - Choose Directory - 选择目录 - - - Choose Executable - 选择执行档 - - - Choose File - 选择文件 - - - <not valid> - Selected path is not valid: - <无效> - - - The path must not be empty. - 路径不能为空。 - - - The path '%1' expanded to an empty string. - 路径'%1' 扩展到一个空的字符串。 - - - The path '%1' does not exist. - 路径 '%1' 不存在。 - - - Cannot execute '%1'. - 无法执行'%1'。 - - - The path <b>%1</b> is not a directory. - 路径 <b>'%1'</b> 不是一个目录。 - - - The path <b>%1</b> is not a file. - 路径 <b>'%1'</b> 不是文件。 - - - The path <b>%1</b> is not a executable file. - 路径 <b>%1</b> 不是可执行程序。 - - - Full path: <b>%1</b> - 完整路径: <b>%1<b> - - - The path '%1' is not a directory. - 路径 '%1' 不是一个目录。 - - - The path '%1' is not a file. - 路径 '%1' 不是文件. - - - Path: - 路径: - - - - Utils::PathListEditor - - Insert... - 插入... - - - Add... - 添加... - - - Delete Line - 删除行 - - - Delete line - 删除行 - - - Clear - 清除 - - - From "%1" - 从"%1" - - - - Utils::ProjectIntroPage - - <Enter_Name> - <输入名称> - - - The project already exists. - 项目已经存在。 - - - A file with that name already exists. - 存在同名文件。 - - - Introduction and project location - 项目介绍和位置 - - - Name: - 名称: - - - Create in: - 创建路径: - - - Use as default project location - 设为默认的项目路径 - - - Introduction and Project Location - 项目介绍和位置 - - - Project: - 项目: - - - - Utils::ProjectNameValidatingLineEdit - - The name must not contain the '.'-character. - 名称不能包含 '.' - - - Invalid character '.'. - 无效字符 '.'。 - - - - Utils::SubmitEditorWidget - - Subversion Submit - Subversion提交 - - - Des&cription - 说明(&C) - - - F&iles - 文件(&i) - - - Commit %1/%n Files - - 提交 %1/%n 文件 - - - - Commit - 提交 - - - %1 %2/%n File(s) - - %1 %2/%n 文件 - - - - &Commit - 提交(&C) - - - Check All - Check all for submit - 选中全部 - - - Uncheck All - Uncheck all for submit - 取消选中 - - - Descriptio&n - 说明(&N) - - - Check &all - 选中全部(&A) - - - Check a&ll - 选中全部(&L) - - - - Utils::WizardPage - - Choose the location - 选择位置 - - - Name: - 名称: - - - Path: - 路径: - - - Choose the Location - 选择位置 - - - - Utils::reloadPrompt - - File Changed - 文件已改变 - - - The unsaved file <i>%1</i> has been changed outside Qt Creator. Do you want to reload it and discard your changes? - 未保存的文件 <i>%1</i> 在 Qt Creator以外被改写,您想要重新载入并且丢弃现有的修改吗? - - - The file <i>%1</i> has changed outside Qt Creator. Do you want to reload it? - 文件 <i>%1</i> 在 Qt Creator以外被改写,您想重新载入么? - - - The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? - 未保存的文件 %1 在 Qt Creator以外被改写,您想要重新载入并且丢弃现有的修改吗? - - - The file %1 has changed outside Qt Creator. Do you want to reload it? - 文件 %1 在 Qt Creator以外被改写,您想重新载入么? - - - - CppEditor::Internal::CPPEditor - - Sort alphabetically - 按字母排序 - - - Sort Alphabetically - 按字母排序 - - - This change cannot be undone. - 这项改变将无法被撤销。 - - - Yes, I know what I am doing. - 是的,我知道自己在做什么。 - - - Unused variable - 未使用的变量 - - - - CppEditor::Internal::ClassNamePage - - Enter class name - 输入类名 - - - Enter Class Name - 输入类名 - - - The header and source file names will be derived from the class name - 头文件和源文件名字将取自类名 - - - Configure... - 配置... - - - - CppEditor::Internal::CppClassWizard - - Error while generating file contents. - 生成文件内容时发生错误。 - - - - CppEditor::Internal::CppClassWizardDialog - - C++ Class Wizard - C++ 类向导 - - - Details - 详情 - - - - CppEditor::Internal::CppHoverHandler - - Unfiltered - 未过滤 - - - - CppEditor::Internal::CppPlugin - - C++ - C++ - - - C++ Header File - C++ 头文件 - - - Creates a C++ header file. - 创建一个C++ 头文件。 - - - Creates a C++ source file. - 创建一个C++ 源文件。 - - - Creates a C++ header and a source file for a new class that you can add to a C++ project. - 为新类创建可以添加到C++项目中的一组头文件和源文件。 - - - Creates a C++ source file that you can add to a C++ project. - 创建可以添加到C++项目中的C++源文件。 - - - C++ Source File - C++ 源文件 - - - Creates a C++ header file that you can add to a C++ project. - 创建一个可以添加到C++项目中的C++头文件。 - - - Follow Symbol Under Cursor - 跟踪光标位置的符号 - - - Switch Between Method Declaration/Definition - 在方法声明/定义之间切换 - - - Shift+F2 - Shift+F2 - - - Open Type Hierarchy - 打开类型分层 - - - Ctrl+Shift+T - Ctrl+Shift+T - - - Meta+Shift+T - Meta+Shift+T - - - Rename Symbol Under Cursor - 重命名光标所在符号 - - - CTRL+SHIFT+R - CTRL+SHIFT+R - - - Update Code Model - 更新代码模型 - - - C++ Class - C++ 类 - - - Creates a header and a source file for a new class. - 为一个新类创建一个源文件和一个头文件。 - - - Follow Symbol under Cursor - 更随光标所在的符号 - - - Switch between Method Declaration/Definition - 在方法/定义之间切换 - - - Find Usages - 查找何处被使用 - - - Ctrl+Shift+U - Ctrl+Shift+U - - - Rename Symbol under Cursor - 重命名光标所在符号 - - - Update code model - 更新代码模型 - - - - CppFileSettingsPage - - File Naming Conventions - 文件命名规则 - - - Header suffix: - 头文件后缀名: - - - Source suffix: - 源文件后缀名: - - - Lower case file names - 小写文件名 - - - License Template: - 许可模板: - - - License template: - 许可模板: - - - - CppPreprocessor - - %1: No such file or directory - %1: 没有文件或者目录 - - - - CppTools::Internal::CppModelManager - - Scanning - 扫描中 - - - Parsing - 分析中 - - - unnamed - 未命名 - - - Indexing - 索引中 - - - - CppTools - - File Naming Conventions - 文件命名规则 - - - Code Style - 代码风格 - - - File Naming - 文件命名 - - - C++ - C++ - - - - CppTools::Internal::CompletionSettingsPage - - Completion - 补全 - - - Text Editor - 文本编辑器 - - - Behavior - 行为 - - - &Case-sensitivity: - 大小写敏感(&C): - - - Full - 全部 - - - None - - - - First Letter - 仅首字母 - - - Activate completion: - 激活补全: - - - Manually - 手动设置 - - - When Triggered - 当触发时 - - - Always - 总是 - - - Insert the common prefix of available completion items. - 为可自动补全的项插入共同的前缀。 - - - Autocomplete common &prefix - 自动补全共同前缀(&P) - - - Automatically insert semicolons and closing brackets, parentheses, curly braces, and quotes when appropriate. - 在适当的时候自动添加括号、分号、大括号和引号。 - - - &Automatically insert matching characters - 自动插入匹配的字符(&A) - - - When typing a matching character and there is a text selection, instead of removing the selection, surround it with the corresponding characters. - 当输入一个对应的符号时(例如括号)并且有选中的文字时,将选中的文字自动包含到符号内,而不删除选中内容。 - - - Surround &text selections - 环绕文本选择(&T) - - - Insert &space after function name - 在函数名后插入空格(&S) - - - Documentation Comments - 文档注释 - - - Automatically create a Doxygen comment upon pressing enter after a /** or /*! - 在/**或/*!之后按下回车时自动创建Doxygen注释 - - - Enable Doxygen blocks - doxygen comment block - 打开Doxgen注释块功能 - - - Generate a <i>brief</i> command with an initial description for the corresponding declaration - 生成一个包含相应声明的初始描述的<i>简略的</i>命令 - - - Generate brief description - 生成简略描述 - - - Add leading asterisks when continuing comments on new lines - 对连续的注释在新行行首添加星号 - - - Add leading asterisks - 行首添加星号 - - - - CppTools::Internal::CppClassesFilter - - Classes - - - - - CppTools::Internal::CppFunctionsFilter - - Methods - 方法 - - - Methods and functions - 方法和功能 - - - Methods and Functions - 方法和函数 - - - C++ Methods and Functions - C++方法和函数 - - - - CppTools::Internal::CppLocatorFilter - - Classes and Methods - 类和方法 - - - C++ Classes and Methods - C++类和方法 - - - - CppTools::Internal::CppToolsPlugin - - &C++ - C++(&C) - - - Switch Header/Source - 切换头文件/源文件 - - - - CppTools::Internal::FunctionArgumentWidget - - %1 of %2 - %1/%2 - - - - Debugger - - Common - 共同 - - - General - 概要 - - - Locals && Expressions - '&&' will appear as one (one is marking keyboard shortcut) - 局部变量和表达式(&&) - - - Debugger - 调试器 - - - <Encoding error> - <编码错误> - - - Ctrl+Shift+F11 - Ctrl+Shift+F11 - - - - QtDumperHelper - - Found an outdated version of the debugging helper library (%1); version %2 is required. - 系统找到一个过期的调试帮助库(%1); 需要版本 %2。 - - - ptrace: Operation not permitted. - -Could not attach to the process. Make sure no other debugger traces this process. -Check the settings of -/proc/sys/kernel/yama/ptrace_scope -For more details, see /etc/sysctl.d/10-ptrace.conf - - ptrace: 操作不允许。 - -无法attach到进程。请确认其他调试器没有追踪该进程。 -检查/proc/sys/kernel/yama/ptrace_scope -的设置 -详情参考 /etc/sysctl.d/10-ptrace.conf - - - - ptrace: Operation not permitted. - -Could not attach to the process. Make sure no other debugger traces this process. -If your uid matches the uid -of the target process, check the settings of -/proc/sys/kernel/yama/ptrace_scope -For more details, see /etc/sysctl.d/10-ptrace.conf - - ptrace: 操作不允许。 - -无法attach到进程。请确认其他调试器没有追踪该进程。 -如果您的uid和目标进程的uid -相符,检查 -/proc/sys/kernel/yama/ptrace_scope的设置 -详情参考 /etc/sysctl.d/10-ptrace.conf - - - - %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 - - %n 个已知类型, Qt 版本: %1, Qt 命名空间: %2 Dumper 版本: %3 - - - - <none> - <无> - - - - Debugger - - Load Core File - 载入核心文件 - - - Browse... - 浏览... - - - Use local core file: - 使用本地核心文件: - - - Select Executable - 选择执行档 - - - Kit: - 构建套件(Kit): - - - &Executable: - 执行档(&E): - - - Core file: - 核心文件: - - - Override &start script: - 覆盖启动脚本(&S): - - - Select Remote Core File - 选择远程核心文件 - - - Select Core File - 选择核心文件 - - - Select Sysroot - 选择Sysroot - - - Select Startup Script - 选择启动脚本 - - - - Debugger - - Select start address - 选择开始地址 - - - Select Start Address - 选择开始地址 - - - Enter an address: - 输入地址: - - - - Debugger - - Marker File: - 标记文件: - - - Marker Line: - 标记行: - - - Breakpoint Number: - 断点编号: - - - Breakpoint Address: - 断点地址: - - - Property - 属性 - - - Breakpoint Type: - 断点类型: - - - Breakpoint - 断点 - - - Watchpoint - 监视点 - - - Unknown breakpoint type - 未知的断点类型 - - - Requested - 请求 - - - Obtained - 获得 - - - Internal Number: - 内部编号: - - - File Name: - 文件名: - - - Function Name: - 函数名: - - - Breakpoint on QML Signal Emit - 在QML信号发出时断点 - - - Data at 0x%1 - 数据在0x%1 - - - Data at %1 - 数据在%1 - - - Enabled - 启用 - - - Disabled - 禁用 - - - , pending - , 准备中 - - - Engine: - 引擎: - - - Extra Information: - 额外信息: - - - Line Number: - 行号: - - - Corrected Line Number: - 修正行号: - - - Module: - 模块: - - - Multiple Addresses: - 多个地址: - - - Message: - 消息: - - - Condition: - 条件: - - - Ignore Count: - 忽略次数: - - - Thread Specification: - 线程信息: - - - Function - 函数 - - - New - 新建 - - - Insertion requested - 请求插入 - - - Insertion proceeding - 执行插入 - - - Change requested - 请求改变 - - - Change proceeding - 执行改变 - - - Breakpoint inserted - 加入断点 - - - Removal requested - 移除请求 - - - Removal proceeding - 移除执行 - - - Dead - 死亡 - - - <invalid state> - Invalid breakpoint state. - <无效状态> - - - Breakpoint at "%1" - 在"%1"处的断点 - - - Breakpoint by File and Line - 文件和行处的断点 - - - Breakpoint by Function - 函数处断点 - - - Breakpoint by Address - 地址处断点 - - - Breakpoint at Function "main()" - 在"main"函数处断点 - - - Watchpoint at Address - 监视点在地址 - - - Watchpoint at Expression - 监视点在表达式 - - - Breakpoint on QML Signal Handler - QML信号处理的断点 - - - Breakpoint at JavaScript throw - JavaScript 异常处的断点 - - - Unknown Breakpoint Type - 未知的断点类型 - - - File - 文件 - - - Line - 行号 - - - Number - 编号 - - - Condition - 条件 - - - Ignore - 忽略 - - - Watchpoint at 0x%1 - 监视点在 0x%1 - - - Breakpoint will only be hit if this condition is met. - 只有当条件满足时才会到达断点。 - - - Breakpoint will only be hit after being ignored so many times. - 断点将会在被忽略足够次数后到达。 - - - (all) - (全部) - - - Breakpoint will only be hit in the specified thread(s). - 断点只会在指定线程中被触发。 - - - - Debugger - - Unable to load the debugger engine library '%1': %2 - 无法载入调试引擎库 '%1': %2 - - - The function "%1()" failed: %2 - Function call failed - 函数 "%1()" 执行失败: %2 - - - Unable to resolve '%1' in the debugger engine library '%2' - 在调试引擎库中 '%2'无法解析符号 '%1' - - - Version: %1 - 版本: %1 - - - The dumper library was not found at %1. - 在%1 未找到dumper库. - - - The console stub process was unable to start '%1'. - 无法启动控制台根进程'%1'. - - - Attaching to core files is not supported! - 不支持关联到核心文件! - - - Debugger running - 调试器执行中 - - - Attaching to a process failed for process id %1: %2 - 关联进程失败,进程ID%1: %2 - - - Unable to set the image path to %1: %2 - 无法设置图像路径到 %1: %2 - - - Unable to create a process '%1': %2 - 无法创建进程 '%1' : %2 - - - The process exited with exit code %1. - 进程退出,退出代码 %1 。 - - - Continuing with '%1'... - 继续'%1'... - - - Unable to continue: %1 - 无法继续执行: %1 - - - Reverse stepping is not implemented. - 逆向单步执行没有实现. - - - Thread %1 cannot be stepped. - 线程 %1 无法单步执行。 - - - Stepping %1 - 单步 %1 - - - Jump to line is not implemented - 跳转到行没有实现 - - - Unable to assign the value '%1' to '%2': %3 - 无法赋值 '%1' 到 '%2': %3 - - - Unable to retrieve %1 bytes of memory at 0x%2: %3 - 无法获取内存地址0x%2 处的 %1 字节: %3 - - - Cannot retrieve symbols while the debuggee is running. - 当被调试程序运行时无法获取符号信息。 - - - Ignoring initial breakpoint... - 忽略初始状态的断点... - - - Interrupted in thread %1, current thread: %2 - 线程 %1 中断,当前线程: %2 - - - Stopped, current thread: %1 - 停止,当前线程: %1 - - - Changing threads: %1 -> %2 - 改变线程: %1 -> %2 - - - Stopped at %1:%2 in thread %3. - 在线程%3中停止在 %1:%2 . - - - Stopped at %1 in thread %2 (missing debug information). - 在线程%2中停止在 %1(缺少调试信息). - - - Stopped at %1 (%2) in thread %3 (missing debug information). - 在线程%3中停止在%1 (%2)(缺少调试信息). - - - Stopped in thread %1 (missing debug information). - 在线程%1中停止(缺少调试信息). - - - Breakpoint: %1 - 断点:%1 - - - Thread %1: Missing debug information for top stack frame (%2). - 线程 %1: 缺失栈顶 (%2).的调试信息。 - - - Thread %1: No debug information available (%2). - 线程 %1: 没有可用的调试信息 (%2). - - - - Debugger - - injection - 注入 - - - debugger call - 调试器调用 - - - Loading the custom dumper library '%1' (%2) ... - 载入自定义dumper库 '%1' (%2) ... - - - Loading of the custom dumper library '%1' (%2) failed: %3 - 载入自定义dumper库 '%1' (%2) 失败: %3 - - - Loaded the custom dumper library '%1' (%2). - 载入了自定义dumper库 '%1' (%2). - - - Stopped / Custom dumper library initialized. - 停止/自定义dumper库已初始化。 - - - Disabling dumpers due to debuggee crash... - 被调试的程序崩溃,禁用dumpers... - - - The debuggee does not appear to be Qt application. - 被调试程序不是Qt程序。 - - - Initializing dumpers... - 正在初始化dumpers... - - - The custom dumper library could not be initialized: %1 - 自定义dumper库无法被初始化: %1 - - - Querying dumpers for '%1'/'%2' (%3) - 为 '%1'/'%2' (%3) 查询 dumpers - - - - Debugger - - <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>在这里指定到 <a href="%1">Windows下的调试工具</a> (%2) 的路径.</p><p><b>注意:</b> 使配置生效需要重启动 Qt Creator 。</p></p></body></html> - - - Autodetect - 自动检测 - - - "Debugging Tools for Windows" could not be found. - 找不到"Windows 下的调试工具"。 - - - Checked: -%1 - 已选择:\n%1 - - - Startup - Placeholder - 启动 - - - Additional &arguments: - 额外的参数(&A): - - - Debugger Paths - 调试器路径 - - - &Symbol paths: - 符号路径(&S): - - - S&ource paths: - 源码路径(&O): - - - Break on: - 断点: - - - <html><head/><body><p>Use CDB's native console instead of Qt Creator's console for console applications. The native console does not prompt on application exit. It is suitable for diagnosing cases in which the application does not start up properly in Qt Creator's console and the subsequent attach fails.</p></body></html> - <html><head/><body><p>对于控制台程序使用 CDB的原生控制台来代替Qt Creator的。程序退出时原生控制台不提示,适用于调试程序没有正确启动进而关联(attach)进程失败的情况。</p></body></html> - - - Use CDB &console - 使用 CDB 控制台(&C) - - - Breakpoints - 断点 - - - <html><head/><body><p>Attempt to correct the location of a breakpoint based on file and line number should it be in a comment or in a line for which no code is generated. The correction is based on the code model.</p></body></html> - <html><head/><body><p>尝试修正在注释中和无代码的位置的断点。修正基于代码模型。</p></body></html> - - - Correct breakpoint location - 校准断点位置 - - - Break on functions: - 在函数处断点: - - - This is useful to catch runtime error messages, for example caused by assert(). - 这对于捕捉运行时的错误信息(如assert()造成的)非常有用。 - - - - Debugger - - Symbol Server... - 符号服务器... - - - Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. - 添加提供操作系统库的符号的微软符号服务器。需要指定一个本地缓存目录。 - - - <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></body></html> - <html><head/><body><p>调试器没有配置为使用公共<a href="%1">微软符号服务器</a>。这是推荐的为操作系统库获取符号的方式。</p><p><i>注意:</i> 需要快速的网络连接才能平稳工作。另外首次连接时可能会有延时。</p><p>您想要现在设置吗?</p></body></html> - - - <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> 调试器没有被配置成使用公开的<a href="%1">微软符号服务器</a>. 这事建议取回操作系统库文件中的符号.</p><p><i>注意:</i> 此项工作需要一个高速的英特网链接来保证工作流畅。同时,链接初期可能造成延时.</p><p>您想这样设置吗?</p></br></body></html> - - - Symbol Server - 符号服务器 - - - Do not ask again - 下次不再询问 - - - Pick a local cache directory - 指定本地缓存目录 - - - - Debugger - - This switches the debugger to instruction-wise operation mode. In this mode, stepping operates on single instructions and the source location view also shows the disassembled instructions. - 切换调试器到"wise operation"模式,该模式下单步调试可以操作单一指令,而且源码位置视图显示汇编指令。 - - - This switches the Locals&Watchers view to automatically derefence pointers. This saves a level in the tree view, but also loses data for the now-missing intermediate level. - 切换本地变量&监视器视图到“自动去除指针引用”模式。这将减少树形视图中的层次,但同时也减少了数据 - 缺少中间层次。 - - - Remove watch expression "%1" - 删除监视表达式"%1" - - - Watch expression "%1" in separate window - 在独立窗口中监视表达式 "%1" - - - Show std:: namespace for types - 显示类型的std::命名空间 - - - Use precise breakpoints - 使用精确的断点 - - - Debugger Properties... - 调试器属性... - - - Always Adjust Column Widths to Contents - 总是按内容调整列宽 - - - Use Alternating Row Colors - 使用交替行颜色 - - - Debugger Font Size Follows Main Editor - 调试器字号和主编辑器一致 - - - Show a Message Box When Receiving a Signal - 当接收到信号时显示消息窗口 - - - Log Time Stamps - 记录时间戳 - - - Verbose Log - 详细日志 - - - Operate by Instruction - 依照命令操作 - - - Dereference Pointers Automatically - 自动去除对指针的引用 - - - Watch Expression "%1" in Separate Window - 在独立窗口中监视表达式 "%1" - - - Show "std::" Namespace in Types - 在类型中显示“std::”命名空间 - - - Show Qt's Namespace in Types - 在类型中显示Qt的命名空间 - - - Use Debugging Helpers - 使用调试助手 - - - Debug Debugging Helpers - 调试调试助手 - - - Use Code Model - 使用代码模型 - - - Selecting this causes the C++ Code Model being asked for variable scope information. This might result in slightly faster debugger operation but may fail for optimized code. - 选中该项使从C++ 代码模型获取变量作用域信息。这会导致调试操作稍微变快,但可能使代码优化失效。 - - - Recheck Debugging Helper Availability - 重新检查调试助手是否可用 - - - Use Precise Breakpoints - 使用精确的断点 - - - Selecting this causes breakpoint synchronization being done after each step. This results in up-to-date breakpoint information on whether a breakpoint has been resolved after loading shared libraries, but slows down stepping. - 选中该项使断点同步在每步后都执行。这会让断点信息保持最新,无论断点在载入共享库后是否被解析,但会减慢单步调试的速度。 - - - This switches the Locals&&Watchers view to automatically dereference pointers. This saves a level in the tree view, but also loses data for the now-missing intermediate level. - 切换“局部变量&&监视器”视图到“自动去除指针引用”模式。这将减少树形视图中的层次,但同时也丢失了中间层次的数据。 - - - Sort Members of Classes and Structs Alphabetically - 按字母顺序排序类和结构体的成员 - - - Adjust Breakpoint Locations - 对准断点位置 - - - Not all source code lines generate executable code. Putting a breakpoint on such a line acts as if the breakpoint was set on the next line that generated code. Selecting 'Adjust Breakpoint Locations' shifts the red breakpoint markers in such cases to the location of the true breakpoint. - 不是所有代码行都会生成可执行代码。在没有生成执行代码的行放置断点相当于断点被设置在下一个生成执行代码的行上。选择 '对准断点位置' 来移动这类红色断点标记到真实断点的位置。 - - - Break on "throw" - 在抛出(throw)处中断 - - - Break on "catch" - 在捕获(catch)处中断 - - - Break on "qWarning" - 遇到"qWarning"时中断 - - - Break on "qFatal" - 遇到"qFatal"时中断 - - - Break on "abort" - 在“abort”时中断 - - - Use Dynamic Object Type for Display - 显示时使用动态对象类型(Dynamic Object Type) - - - Automatically Quit Debugger - 自动退出调试器 - - - Use tooltips in main editor when debugging - 调试时在主编辑器中使用工具提示 - - - Checking this will enable tooltips for variable values during debugging. Since this can slow down debugging and does not provide reliable information as it does not use scope information, it is switched off by default. - 选中此项将在调试过程中用工具提示显示变量的值。可能会减慢调试的速度,同时由于不使用全局信息,无法提供可靠的信息,所以此项默认为关闭。 - - - Use Tooltips in Locals View when Debugging - 调试时在“局部变量”视图中使用工具提示 - - - Use Tooltips in Breakpoints View when Debugging - 调试时在“断点”视图中使用工具提示 - - - Show Address Data in Breakpoints View when Debugging - 调试时在“断点”视图中显示地址信息 - - - Show Address Data in Stack View when Debugging - 调试时在“堆栈”视图中显示地址信息 - - - Show Application On Top - 在顶部显示应用 - - - Apply Changes on Save - 保存时应用修改 - - - Use Tooltips in Locals View When Debugging - 调试时在局部变量视图使用工具提示 - - - Use Tooltips in Breakpoints View When Debugging - 调试时在断点视图中使用工具提示 - - - Show Address Data in Breakpoints View When Debugging - 调试时在断点视图中显示地址信息 - - - Show Address Data in Stack View When Debugging - 调试时在堆栈视图中显示地址信息 - - - List Source Files - 列出源文件 - - - Skip Known Frames - 跳过已知帧 - - - Selecting this results in well-known but usually not interesting frames belonging to reference counting and signal emission being skipped while single-stepping. - 选中该项,在单步调试中,跳过众所周知但是无趣的、属于引用计数和信号发射的帧。 - - - Enable Reverse Debugging - 打开反向调试 - - - Register For Post-Mortem Debugging - 注册崩溃后(post-mortem)调试 - - - Reload Full Stack - 重新载入完整堆栈 - - - Create Full Backtrace - 创建完整回溯(Backtrace) - - - Execute Line - 执行此行 - - - Change debugger language automatically - 自动改变调试器语言 - - - Changes the debugger language according to the currently opened file. - 根据当前打开的文件改变调试器语言。 - - - Use tooltips in locals view when debugging - 调试时在本地视图使用工具提示 - - - Checking this will enable tooltips in the locals view during debugging. - 选中此项将使能调试时局部变量视图的工具提示。 - - - Use tooltips in breakpoints view when debugging - 调试时在断点视图中使用tooltips - - - Checking this will enable tooltips in the breakpoints view during debugging. - 选中此项将使能调试时断点视图的工具提示。 - - - Show address data in breakpoints view when debugging - 当调试时在断点视图中显示地址信息 - - - Checking this will show a column with address information in the breakpoint view during debugging. - 选中此项后调试时将在断点视图显示地址信息列。 - - - Show address data in stack view when debugging - 当调试时在堆栈视图中显示地址信息 - - - Checking this will show a column with address information in the stack view during debugging. - 选中此项后调试时将在堆栈视图显示地址信息列。 - - - - Debugger - - Debugging Helper - 调试助手 - - - Choose DebuggingHelper Location - 选择调试助手位置 - - - Use Debugging Helper - 使用调试助手 - - - <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 Expressions&quot; view. It is not strictly necessary for debugging with Qt Creator. </p></body></html> - <html><head/><body> -<p>调试助手仅是用来在 &quot;局部变量和表达式&quot; 视图中更好地显示诸如QString 或 std::map之类的特定类型。它不是Qt Creator调试所必须的。</p></body></html> - - - 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. - 使用代码模型可以查出一个变量在调试中断时是否已经被赋值。 - - - Use code model - 使用代码模型 - - - Displays names of QThread based threads. - 显示基于QThread 的线程的名称。 - - - Display thread names - 显示线程名称 - - - Show 'std::' prefix for types from the standard library. - 为标准库中的类型显示“std::”前缀。 - - - Show "std::" namespace for types - 为类型显示“std::”命名空间 - - - Show Qt namespace prefix for Qt types. This is only relevant if Qt was configured with '-qtnamespace'. - 为Qt类型显示Qt命名空间前缀。仅在Qt用'-qtnamespace'配置时有用。 - - - Show Qt's namespace for types - 显示类型的Qt命名空间 - - - - Debugger - - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. - Gdb 进程启动失败. 调用程序 '%1' 缺失, 或者您没有足够的权限调用此程序. - - - The Gdb process crashed some time after starting successfully. - Gdb进程在正常启动后崩溃。 - - - 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. - 尝试写入 Gdb 进程时发生错误. 例如, 进程可能不在运行或者他关闭了自己的输入通道. - - - An error occurred when attempting to read from the Gdb process. For example, the process may not be running. - 尝试从 Gdb 进程读取时发生错误. 例如, 进程可能不在运行。 - - - An exception was triggered. - 异常被触发。 - - - An exception was triggered: - 异常被触发: - - - Library %1 loaded - 载入了库 %1 - - - Library %1 unloaded - 卸载了库 %1 - - - Thread group %1 created - 创建了线程组 %1 - - - Thread %1 created - 创建了线程 %1 - - - Thread group %1 exited - 线程组 %1 退出了 - - - Thread %1 in group %2 exited - 组别 %2 中的线程 %1 退出了 - - - Thread %1 selected - 选中了线程 %1 - - - Stopping temporarily. - 临时停止。 - - - The gdb process has not responded to a command within %1 seconds. This could mean it is stuck in an endless loop or taking longer than expected to perform the operation. -You can choose between waiting longer or abort debugging. - GDB进程在 %1 秒之内未对命令响应。可能由于进程陷入死循环或执行操作的时间超出预期。 -您可以选择继续等待或终止调试。 - - - Setting breakpoints failed - 设置断点失败 - - - Executable Failed - 执行失败 - - - Jumped. Stopped. - 跳转。停止。 - - - The gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. -%2 - Gdb 进程启动失败. 调用程序 '%1' 缺失, 或者您没有足够的权限调用程序. -%2 - - - The gdb process crashed some time after starting successfully. - Gdb进程在正常启动后崩溃。 - - - The gdb process was ended forcefully - gdb进程被强制结束 - - - 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. - 尝试写入 Gdb 进程时发生错误。例如进程可能不在运行或者它关闭了自己的输入通道。 - - - An error occurred when attempting to read from the gdb process. For example, the process may not be running. - 尝试从 Gdb 进程读取时发生错误。例如进程可能不在运行。 - - - An unknown error in the gdb process occurred. - Gdb进程发生了未知错误。 - - - The gdb process has not responded to a command within %n second(s). This could mean it is stuck in an endless loop or taking longer than expected to perform the operation. -You can choose between waiting longer or abort debugging. - - GDB进程在 %n 秒之内未对命令响应。可能由于进程陷入死循环或执行操作的时间超出预期。 -您可以选择继续等待或终止调试. - - - - GDB not responding - GDB不响应 - - - Give GDB more time - 继续等待gdb - - - Application exited with exit code %1 - 程序退出,退出代码 %1 - - - Application exited after receiving signal %1 - 程序接收到信号 %1 后退出 - - - Application exited normally - 程序正常退出 - - - Loading %1... - 正在载入 %1... - - - Value changed from %1 to %2. - 值从%1 变到 %2。 - - - Normal - 正常 - - - Displayed - 已显示 - - - There is no gdb binary available for binaries in format '%1' - 没有 GDB 二进制档可用为二进制格式'%1' - - - Cannot Read Symbols - 无法读取符号 - - - Cannot read symbols for module "%1". - 无法为模块"%1"读取符号。 - - - Retrieving data for stack view thread 0x%1... - 为堆栈视图线程0x%1获取数据... - - - Cannot read widget data: %1 - 无法读取控件数据:%1 - - - Could not find a widget. - 无法找到控件。 - - - The GDB installed at %1 cannot find a valid python installation in its subdirectories. -You may set the environment variable PYTHONPATH to point to your installation. - 安装在%1的GDB 无法找到一个有效的 python 安装在子文件夹. -您可以设置环境变量 PYTHONPATH 到您安装的路径. - - - GDB I/O Error - GDB I/O 错误 - - - The gdb process crashed. - gdb 进程崩溃. - - - The gdb process exited unexpectedly (code %1) - Gdb 进程异常终止 (代码%1) - - - Unexpected GDB Exit - Gdb意外退出 - - - Setting up inferior... - 正在设置 inferior... - - - The gdb process failed to start. Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. -%2 - Gdb进程启动失败。可能是调用的程序"%1"不存在或者您没有调用该程序的权限。 -%2 - - - Missing debug information for %1 -Try: %2 - 找不到%1的调试信息 -尝试: %2 - - - The gdb process has not responded to a command within %n second(s). This could mean it is stuck in an endless loop or taking longer than expected to perform the operation. -You can choose between waiting longer or aborting debugging. - - Gdb进程在%n秒内未响应命令。这意味着它可能阻塞在无限循环中或者执行操作用了比预期更长的时间。 -您可以选择继续等待或者中断调试。 - - - - The gdb process terminated. - gdb 进程被中断。 - - - The gdb process terminated unexpectedly (code %1) - Gdb 进程异常中断 (代码%1) - - - Failed to start application: - 程序启动失败: - - - Failed to start application - 程序启动失败 - - - An unknown error in the Gdb process occurred. - Gdb进程发生了未知错误。 - - - Running... - 执行中... - - - Stop requested... - 请求停止... - - - The gdb process has not produced any response to a command within %1 seconds. This may been it is stuck in an endless loop or taking longer than expected to perform the operation it was reqested. -You have a choice of waiting longer or abort debugging. - GDB进程在 %1秒之内未对命令响应。可能由于进程陷入死循环或执行操作的时间超出预期。\n您可以选择继续等待或终止调试。 - - - Gdb not responding - GDB不响应 - - - Give gdb more time - 继续等待gdb - - - Stop debugging - 停止调试 - - - Executable failed - 执行失败 - - - Process failed to start. - 进程启动失败。 - - - Executable failed: %1 - 执行失败: %1 - - - Program exited with exit code %1. - 程序退出,退出代码 %1。 - - - Program exited after receiving signal %1. - 程序接受到信号%1退出。 - - - Program exited normally. - 程序正常退出。 - - - Stopped at breakpoint. - 在断点处停止。 - - - The debugger you are using identifies itself as: - 您正在使用的调试器标识自身为: - - - This version is not officially supported by Qt Creator. -Debugging will most likely not work well. -Using gdb 6.7 or later is strongly recommended. - 此版本不是Qt Creator官方支持的. -调试非常可能无法很好地工作. -强烈建议使用 gdb 6.7 或者更新的版本. - - - Continuing after temporary stop... - 暂停后继续... - - - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. -%2 - Gdb 进程启动失败. 调用程序 '%1' 缺失, 或者您没有足够的权限调用程序. -%2 - - - Stopping temporarily - 临时停止 - - - Processing queued commands - 正在处理队列中的命令 - - - Process failed to start - 进程启动失败 - - - Watchpoint %1 at %2 triggered: - %2的观察点%1被触发: - - - Stopped at breakpoint %1 in thread %2 - 在线程 %2 的断点 %1 处停止 - - - Raw structure - 原始结构 - - - There is no GDB binary available for binaries in format '%1' - 没有 GDB 二进制档可用于格式为'%1'的二进制文件 - - - Step requested... - 请求单步执行... - - - Step by instruction requested... - 请求单步执行命令... - - - Finish function requested... - 请求完成函数... - - - Step next requested... - 请求执行下一步... - - - Step next instruction requested... - 请求执行下条指令... - - - Run to line %1 requested... - 请求执行到行%1... - - - Run to function %1 requested... - 请求执行到函数: %1 ... - - - Immediate return from function requested... - 请求立即从函数中返回... - - - This does not seem to be a "Debug" build. -Setting breakpoints by file name and line number may fail. - - 该构建似乎不是一个"Debug"构建。 -按文件名和行号设置断点可能会失败。 - - - Found. - 已找到。 - - - Not Found. - 未找到。 - - - -Section %1: %2 - -段 %1: %2 - - - The gdb process could not be stopped: -%1 - Gdb 进程无法停止: -%1 - - - Application process could not be stopped: -%1 - 应用进程无法被停止: -%1 - - - Application started - 应用已启动 - - - Application running - 应用运行中 - - - Attached to stopped application - 关联到已停止的程序 - - - Connecting to remote server failed: -%1 - 连接远程服务器失败: -%1 - - - Jumping out of bogus frame... - 跳出伪造框架... - - - Dumper version %1, %n custom dumpers found. - - Dumper 版本 %1,找到%n 个自定义 dumper。 - - - - The debugging helper library was not found at %1. - 在%1 没有找到调试助手库。 - - - Disassembler failed: %1 - 反汇编失败:%1 - - - Unable to start gdb '%1': %2 - 无法启动gdb'%1' : %2 - - - Gdb I/O Error - Gdb I/O 错误 - - - Unexpected Gdb Exit - Gdb意外退出 - - - The gdb process exited unexpectedly (%1). - Gdb 进程异常终止 (%1)。 - - - Stopped at breakpoint %1 in thread %2. - 在线程 %2 的断点 %1 处停止。 - - - Stopped: %1 by signal %2 - 因信号 %2 停止: %1 - - - This version is not officially supported by Qt Creator. -Debugging will most likely not work well. -Using gdb 7.1 or later is strongly recommended. - 此版本不是 Qt Creator官方支持的。 -调试很可能无法良好工作。 -强烈建议使用 gdb 7.1 或者更新的版本。 - - - Failed to shut down application - 关闭程序失败 - - - There is no gdb binary available for '%1' - 没有为 '%1' 可用的 gdb 二进制档 - - - Snapshot Creation Error - 快照生成错误 - - - Cannot create snapshot file. - 无法创建快照文件。 - - - Cannot create snapshot: - - 无法创建快照: - - - - Snapshot Reloading - 快照重新载入中 - - - Finished retrieving data - 获取数据完成 - - - Setting breakpoints... - 正在设置断点... - - - Starting inferior... - 启动 inferior... - - - Jumped. Stopped - 已跳转。停止 - - - Target line hit. Stopped - 目标行到达。停止 - - - Execution Error - 执行错误 - - - Cannot continue debugged process: - - 无法继续调试进程: - - - - Inferior start failed - Inferior启动失败 - - - Inferior shutdown failed - Inferior关闭失败 - - - Adapter crashed - 适配器崩溃 - - - Library %1 loaded. - 载入了库%1 - - - Library %1 unloaded. - 卸载了库%1 - - - Thread group %1 created. - 创建了线程组 %1 。 - - - Thread %1 created. - 线程 %1 被创建。 - - - Thread group %1 exited. - 线程组 %1 退出了。 - - - Thread %1 in group %2 exited. - 组别%2 中的线程 %1退出了。 - - - Thread %1 selected. - 选中了线程%1 。 - - - Reading %1... - 读取%1中 ... - - - Processing queued commands. - 处理队列中的命令。 - - - 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. - 安装在%1的GDB 无法找到一个有效的 python 安装在%2 子文件夹. -您可以设置环境变量 PYTHONPATH 到您安装的路径. - - - Cannot find debugger initialization script - 无法找到调试器初始化脚本 - - - 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. - 调试器设置指向的脚本文件'%1'无法读取,如果脚本文件不是必须的,可以考虑清除设置来避免此项警告。 - - - Unable to run '%1': %2 - '无法执行%1': %2 - - - Retrieving data for stack view... - 为堆栈视图获取数据... - - - Retrieving data for watch view (%n requests pending)... - - 为监视视图获取数据 (%n 个请求未完成)... - - - - <0 items> - <0 项> - - - <%n items> - In string list - - <%n 项> - - - - Debugging helpers: Qt version mismatch - 调试助手:Qt版本不匹配 - - - The Qt version used to build the debugging helpers (%1) does not match the Qt version used to build the debugged application (%2). -This might yield incorrect results. - 用于编译调试助手的Qt版本(%1)与用于编译被调试的程序的Qt版本(%2)不匹配。 -可能导致错误的结果。 - - - Finished retrieving data. - 获取数据完成。 - - - Debugging helpers not found. - 没有找到调试助手。 - - - Custom dumper setup: %1 - 自定义dumper 安装: %1 - - - <shadowed> - Type of local variable or parameter shadowed by another variable of the same name in a nested block. - <shadowed> - - - <n/a> - <N/A> - - - <anonymous union> - <匿名联合体> - - - <no information> - About variable's value - <无信息> - - - - Debugger - - Choose Gdb Location - 选择Gdb 位置 - - - GDB timeout: - Gdb超时时间: - - - 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. - Qt Creator在终止不响应的GDB进程之前需要等待的秒数。默认值是20秒, -对于大多数程序这个时间足够了。但存在某些情况,如载入大的库或者列出源码文件清单, -在慢机器上可能用很长时间,这样的话必须增加这个值。 - - - sec - - - - Skip known frames when stepping - 当单步调试时跳过已知的帧 - - - <html><head/><body><p>Allows <i>Step Into</i> to compress several steps into one step -for less noisy debugging. For example, the atomic reference -counting code is skipped, and a single <i>Step Into</i> for a signal -emission ends up directly in the slot connected to it. - <html><head/><body><p>允许 <i>‘单步进入’</i>将多个步骤合并为一步 -以减少调试的冗余情况。例如原子级的计数代码,和 -信号发出引起的单个 <i>‘单步进入’</i> 直接进到与信号连接的槽。 - - - Show a message box when receiving a signal - 接到信号时显示消息窗口 - - - Displays a message box as soon as your application -receives a signal like SIGSEGV during debugging. - 当您的应用程序在调试过程中收到系统信号, -比如SIGSEGV时,显示一个消息窗口. - - - Adjust breakpoint locations - 对准断点位置 - - - 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允许在不生成代码的源码行设置断点。 -在这种情况下断点被调整到下一个实际生成代码的源码行。 -这个选项通过在源码编辑器中移动断点标记,来显示这项变动。 - - - Use dynamic object type for display - 显示时使用动态对象类型(dynamic object type) - - - Specifies whether the dynamic or the static type of objects will be displayed. Choosing the dynamic type might be slower. - 选择显示对象的动态的或静态的类型。选择动态类型的话可能会较慢。 - - - Load .gdbinit file on startup - 启动时载入.gdbinit 文件 - - - Allows or inhibits reading the user's default -.gdbinit file on debugger startup. - 允许或禁止调试器启动时读取 -用户的默认.gdbinit文件。 - - - Warn when debugging "Release" builds - 在调试"Release"构建时发出警告 - - - Show a warning when starting the debugger on a binary with insufficient debug information. - 在对包含的调试信息不足的二进制档启动调试时显示警告。 - - - The options below should be used with care. - 以下的选项需要谨慎使用。 - - - <html><head/><body>The options below give access to advanced or experimental functions of GDB. Enabling them may negatively impact your debugging experience.</body></html> - <html><head/><body>以下选项提供对GDB的高级或实验性功能的访问。打开这些功能有可能为您的调试带来负面影响。</body></html> - - - Use asynchronous mode to control the inferior - 使用异步模式来控制底层 - - - Use common locations for debug information - 对调试信息使用公共位置 - - - <html><head/><body>Add common paths to locations of debug information such as <i>/usr/src/debug</i> when starting GDB.</body></html> - <html><head/><body>启动GDB时添加公共路径如<i>/usr/src/debug</i> 到调试信息路径。</body></html> - - - Enable reverse debugging - 打开反向调试 - - - <html><head/><body><p>Enable stepping backwards.</p><p><b>Note:</b> This feature is very slow and unstable on the GDB side. It exhibits unpredictable behavior when going backwards over system calls and is very likely to destroy your debugging session.</p></body></html> - <html><head/><body><p>选中此项启用反向调试。</p><p><b>注意:</b>这项功能在GDB 上非常慢并且不稳定。当反向时遇到系统调用将会变得不可预测甚至彻底摧毁这个调试会话.</p><body></html> - - - Attempt quick start - 尝试快速启动 - - - <html><head/><body>Postpone reading debug information as long as possible. This can result in faster startup times at the price of not being able to set breakpoints by file and number.</body></html> - <html><head/><body>尽可能推迟读取调试信息的时间。这样启动更快,但代价是可能造成无法按照文件和行号设置断点。</body></html> - - - Additional Startup Commands - 额外的启动命令 - - - <html><head/><body><p>GDB commands entered here will be executed after GDB has been started and the debugging helpers have been initialized.</p><p>You can add commands to load further debugging helpers here, or modify existing ones.</p><p>To execute arbitrary Python scripts, use <i>python execfile('/path/to/script.py')</i>.</p></body></html> - <html><head/><body><p>在此输入的GDB命令将在GDB启动以及调试助手初始化后被执行。</p><p>您可以在这里添加命令加载调试助手,或者修改已有的助手。</p><p>要执行Python脚本,使用 <i>python execfile('/path/to/script.py')</i>。</p></body></html> - - - GDB - GDB - - - Choose Location of Startup Script File - 选择启动脚本文件的位置 - - - - Debugger - - yes - - - - no - - - - Module name - 模块名称 - - - Module path - 模块路径 - - - Symbols read - 符号读取 - - - Symbols type - 符号类型 - - - Start address - 起始地址 - - - End address - 结束地址 - - - unknown - 未知 - - - plain - 无格式 - - - fast - 快速 - - - - Debugger - - Modules - 模块 - - - Cannot create temporary file: %1 - 无法创建临时文件: %1 - - - Cannot create FiFo %1: %2 - 无法创建FIFo %1 : %2 - - - Cannot open FiFo %1: %2 - 无法打开FIFo %1 : %2 - - - - Debugger - - Value (Base %1) - 值 (%1进制) - - - - Debugger - - Error: - 错误: - - - Running requested... - 执行请求... - - - '%1' contains no identifier. - '%1'不包含标识符。 - - - String literal %1. - 字符串 %1。 - - - Cowardly refusing to evaluate expression '%1' with potential side effects. - 表达式 "%1" 有潜在的副作用所以无法计算其值。 - - - Stopped at %1:%2. - 在 %1处停止:%2 。 - - - Stopped. - 已停止。 - - - Source Files - 源文件 - - - ... - ... - - - <More> - <更多> - - - Address: - 地址: - - - Function: - 函数: - - - File: - 文件: - - - Line: - 行号: - - - Note: - 注意: - - - Sources for this frame are available.<br>Double-click on the file name to open an editor. - 可以查看该帧的源代码。<br>在文件名上双击以打开编辑器。 - - - Binary debug information is not accessible for this frame. This either means the core was not compiled with debug information, or the debug information is not accessible. Note that most distributions ship debug information in separate packages. - 无法访问该帧的二进制调试信息。这意味着要么未编入调试信息,要么调试信息不可访问。注意,多数发行版用单独的包发布调试信息。 - - - Binary debug information is accessible for this frame. However, matching sources have not been found. Note that some distributions ship debug sources in separate packages. - 可以访问该帧的二进制调试信息,但找不到匹配的源码文件。注意,有些发行版用单独的包发布调试信息。 - - - Level - 级别 - - - - Debugger - - Thread&nbsp;id: - 线程&nbsp;id: - - - Target&nbsp;id: - 目标&nbsp;id: - - - Name: - 名称: - - - State: - 状态: - - - Core: - 核心: - - - Stopped&nbsp;at: - 停止&nbsp;于: - - - ID - ID - - - Core - 核心 - - - State - 状态 - - - Target ID - 目标 ID - - - Details - 详情 - - - Name - 名称 - - - Thread: %1 - 线程: %1 - - - Thread: %1 at %2 (0x%3) - 线程: %1 在 %2 (0x%3) - - - Thread: %1 at %2, %3:%4 (0x%5) - 线程: %1 在 %2, %3:%4 (0x%5) - - - Thread ID - 线程ID - - - Stack - - - - Executable: - 执行档: - - - Arguments: - 参数: - - - - Debugger - - Select Debugger - 选择调试器 - - - Select GDB Start Script - 选择GDB启动脚本 - - - Select Start Script - 选择启动脚本 - - - - Debugger - - Thread - 线程 - - - Threads - 线程 - - - - Debugger - - <not in scope> - Value of variable in Debugger Locals display for variables out of scope (stopped above initialization). - <超出范围> - - - %1 <shadowed %2> - Display of variables shadowed by variables of the same name in nested scopes: Variable %1 is the variable name, %2 is a simple count. - %1 <隐藏了 %2> - - - Expression - 表达式 - - - Internal Type - 内部类型 - - - Displayed Type - 显示类型 - - - ... <cut off> - ... <省略> - - - Object Address - 对象地址 - - - Referencing Address - 引用地址 - - - Static Object Size - 静态对象大小 - - - %n bytes - - %n 个字节 - - - - Size - 大小 - - - Stored Address - 存储地址 - - - Internal ID - 内部ID - - - Generation - 创建 - - - <empty> - <空> - - - <uninitialized> - <未初始化> - - - <invalid> - <无效> - - - <not accessible> - <无法访问> - - - <more than %n items> - - <多于%n 个项> - - - - %1 Object at %2 - 在 %2 的 %1 对象 - - - %1 Object at Unknown Address - 未知地址处的 %1对象 - - - Bald pointer - plain pointer - 普通指针 - - - <Edit> - <编辑> - - - returned value - 返回值 - - - Raw pointer - 原始指针 - - - Latin1 string - Latin1字符串 - - - UTF8 string - UTF8字符串 - - - Local 8bit string - 本地 8位 字符串 - - - UTF16 string - UTF16字符串 - - - UCS4 string - UCS4字符串 - - - Root - - - - Locals - 局部变量 - - - Inspector - 检查器 - - - Expressions - 表达式 - - - Return Value - 返回值 - - - Tooltip - 工具提示 - - - Locals and Watchers - 局部变量和监视器 - - - Change Format for Type "%1" - 根据类型 "%1" 改变格式 - - - Change Format for Type - 根据类型改变格式 - - - Change Format for Object at %1 - 根据在 %1 的对象改变格式 - - - Change Format for Object - 根据对象改变格式 - - - Insert New Watch Item - 插入新的监视项 - - - Select Widget to Watch - 选择要监视的部件 - - - Add Watchpoint at Object's Address (0x%1) - 添加监视点在对象地址(0x%1) - - - Add Watchpoint at Referenced Address (0x%1) - 添加监视点在引用地址(0x%1) - - - Add Watchpoint - 添加监视 - - - Setting a watchpoint on an address will cause the program to stop when the data at the address it modified. - 设置一个监视点将获导致程序停止. - - - Remove All Watch Items - 删除所有监控项目 - - - Open Memory Editor at %1 - 在 %1 处打开内存编辑器 - - - Refresh Code Model Snapshot - 更新代码模型快照 - - - Change Format for Object Named "%1" - 改变名为"%1"的对象的格式 - - - Break on Changes at Object's Address (0x%1) - 在对象地址(0x%1)发生更改时断点 - - - Break on Changes at Referenced Address (0x%1) - 在参考地址(0x%1)发生更改时断点 - - - Break on Changing Contents - 内容更改时断点 - - - Watch Expression - 监视表达式 - - - Watch Expression "%1" - 监视表达式 "%1" - - - Remove Watch Expression - 删除监视表达式 - - - Remove Watch Expression "%1" - 删除监视表达式"%1" - - - Change Display Format... - 改变显示格式... - - - Locals and Expressions - 局部变量和表达式 - - - Evaluate Expression - 计算表达式 - - - Evaluate Expression "%1" - 计算表达式"%1" - - - Remove Evaluated Expression - 移除计算表达式 - - - Remove Evaluated Expression "%1" - 移除计算表达式"%1" - - - Use Display Format Based on Type - 使用基于类型的显示格式 - - - Insert New Evaluated Expression - 插入新的计算表达式 - - - Remove All Evaluated Expressions - 移除所有计算表达式 - - - Enter watch expression - 输入监控表达式 - - - Locals & Watchers - 局部变量和监视器 - - - Change format for type '%1' - 根据'%1' 型改变格式 - - - Change format for expression '%1' - 根据 '%1'改变格式 - - - Clear - 清空 - - - Change format for type - 根据类型改变格式 - - - Change format for expression - 根据表达式改变格式 - - - Select widget to watch - 选择监视对象 - - - Open memory editor... - 打开内存编辑器... - - - Open memory editor at %1 - 在 %1 打开内存编辑器 - - - Refresh code model snapshot - 更新代码模式快照 - - - Adjust column widths to contents - 按内容调整宽度 - - - Always adjust column widths to contents - 总是按内容调整列宽 - - - Insert new watch item - 插入新的监视项 - - - - Debugger - - Clear contents - 清空内容 - - - Save contents - 保存内容 - - - Clear Contents - 清空内容 - - - Save Contents - 保存内容 - - - - DebuggingHelperOptionPage - - Use debugging helper - 使用调试助手 - - - This will load a dumper library - 这将会载入dumper库 - - - Use debugging helper from custom location - 使用指定路径的调试助手 - - - Location: - 路径: - - - Debug debugging helper - 调试调试助手 - - - Debugging helper - 调试助手 - - - 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. - 使用代码模型可以查出一个变量在调试中断时是否已经被赋值。 - - - Use code model - 使用代码模型 - - - Use Debugging helper - 使用调试助手 - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">Note:</span> The debugging helper in only used to produce a nice display of objects of certain type like QString or std::map in the &quot;Locals and Watchers&quot; view.</p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">It is not strictly necessary for debugging with Qt Creator.</p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'DejaVu Sans'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-weight:600;">注意:</span> 调试器助手只是用于为一些对象生成更好的输出显示,例如 QString 或 std::map 等,其内容会显示在 &quot;局部变量和监视器&quot; 视图。</p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">对于 Qt Creator 中调试,这并不是必须的。</p> -<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"></p></body></html> - - - <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>调试助手仅仅用来在 &quot;局部变量和监视器&quot; 视图中比较完好的显示类型为 QString 或者 std::map 的对象.</p> -<p> 它不是Qt Creator 调试的必需品. </p></body></html> - - - Use Debugging Helper - 使用调试助手 - - - <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>调试助手仅是用来更好的显示类型QString 或 std::map 在 &quot;局部变量和监视器&quot; 视图. 它不是绝对需要Qt Creator调试用的. </p></body></html> - - - Displays names of QThread based threads. - 显示基于QThread 线程的名称. - - - Display thread names - 显示线程名称 - - - <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 Expressions&quot; view. It is not strictly necessary for debugging with Qt Creator. </p></body></html> - <html><head/><body> -<p>调试助手仅是用来更好的显示类型QString 或 std::map 在 &quot;局部变量和监视器&quot; 视图. 它不是绝对需要Qt Creator调试用的. </p></body></html> - - - - DependenciesModel - - Unable to add dependency - 无法添加依赖关系 - - - Unable to Add Dependency - 无法添加依赖关系 - - - This would create a circular dependency. - 这会创建一个循环依赖。 - - - - ProjectExplorer::Internal::DependenciesWidget - - %1 has no dependencies. - %1 没有依赖关系。 - - - %1 depends on %2. - %1 依赖 %2 。 - - - %1 depends on: %2. - %1 依赖: %2. - - - - Designer - - The file name is empty. - 文件名为空。 - - - XML error on line %1, col %2: %3 - XML 错误 在第 %1行, %2列: %3 - - - The <RCC> root element is missing. - <RCC> root元素缺失。 - - - Cannot write file. Disk full? - 无法创建临时文件.磁盘已满? - - - Xml Editor - Xml 编辑器 - - - Designer - 设计师 - - - Class Generation - 生成类 - - - Form Editor - 界面编辑器 - - - The generated header of the form '%1' could not be found. -Rebuilding the project might help. - 找不到界面 "%1"生成的头文件。 -重新构建项目可能有帮助。 - - - The generated header '%1' could not be found in the code model. -Rebuilding the project might help. - 代码模型中找不到生成的头文件"%1"。 -重新构建项目可能有帮助。 - - - Qt Designer Form Class - Qt 设计器界面类 - - - Form Template - 界面模板 - - - Class Details - 类详情 - - - %1 - Error - %1 - 错误 - - - Choose a class name - 选择类名 - - - Class - - - - Configure... - 配置... - - - Choose a Class Name - 选择类名 - - - Qt - Qt - - - Qt Designer Form - Qt 设计师界面 - - - 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. - 创建一个Qt设计师窗体文件,您可以添加Qt 控件项目中。如果您已经有控制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. - 创建一个Qt设计师窗体文件和相应的类(C++头文件和源文件)用于实现,您可以将此窗体文件和类加入到已经存在的Qt 控件项目中。 - - - Creates a Qt Designer form file (.ui). - 创建Qt设计师界面文件(.ui). - - - Creates a Qt Designer form file (.ui) with a matching class. - 创建与类匹配的Qt设计师界面文件(.ui)。 - - - Widget Box - 控件盒子 - - - Object Inspector - 对象查看器 - - - Property Editor - 属性编辑器 - - - Signals & Slots Editor - 信号和槽编辑器 - - - Action Editor - Action编辑器 - - - Edit widgets - 编辑部件 - - - F3 - F3 - - - Edit signals/slots - 编辑信号/槽 - - - F4 - F4 - - - Edit buddies - 编辑伙伴 - - - Edit tab order - 编辑 Tab 顺序 - - - Meta+H - Meta+H - - - Ctrl+H - Ctrl+H - - - Meta+Shift+H - Meta+Shift+H - - - Ctrl+L - Ctrl+L - - - Meta+L - Meta+L - - - Meta+G - Mega+G - - - Ctrl+G - Ctrl+G - - - Meta+Shift+G - Meta+Shift+G - - - Meta+J - Mega+J - - - Ctrl+J - Ctrl+J - - - Alt+Shift+R - Alt+Shift+R - - - Switch Source/Form - 切换源文件/窗体 - - - Shift+F4 - Shift+F4 - - - Views - 视图 - - - Signals && Slots Editor - 信号和槽编辑器 - - - Widget box - 控件盒子 - - - Locked - 锁定 - - - For&m Editor - 界面编辑器(&M) - - - Edit Widgets - 编辑控件 - - - Edit Signals/Slots - 编辑信号/槽 - - - Edit Buddies - 编辑伙伴(Buddy) - - - Edit Tab Order - 编辑 Tab 顺序 - - - Ctrl+Alt+R - Ctrl+Alt+R - - - About Qt Designer plugins.... - 关于 Qt 设计师插件... - - - Preview in - 预览于 - - - The image could not be created: %1 - 无法创建图片: %1 - - - Choose a form template - 选择 界面模板 - - - Choose a Form Template - 选择界面模板 - - - Error saving %1 - 保存 %1出错 - - - Unable to open %1: %2 - 无法打开 %1: %2 - - - Unable to write to %1: %2 - 无法写入 %1: %2 - - - The class definition of '%1' could not be found in %2. - 类 '%1' 的定义 在 %2中找不到. - - - The class containing '%1' could not be found in %2. -Please verify the #include-directives. - 包含'%1'的类在%2里找不到。 -请检查是否有相应的 #include. - - - Error finding/adding a slot. - 查找/添加槽错误。 - - - Internal error: No project could be found for %1. - 内部错误:找不到 %1 的项目。 - - - No documents matching '%1' could be found. -Rebuilding the project might help. - 找不到符合 '%1'的文档。 -重新构建项目可能有帮助。 - - - Unable to add the method definition. - 无法添加方法定义。 - - - - DocSettingsPage - - Registered Documentation - 已注册的文档 - - - Add... - 添加... - - - Remove - 删除 - - - Add and remove compressed help files, .qch. - 添加和删除已压缩的帮助文件,.qch。 - - - Add - 添加 - - - - EmbeddedPropertiesPage - - Skin: - 皮肤: - - - Use Virtual Box -Note: This adds the toolchain to the build environment and runs the program inside a virtual machine. -It also automatically sets the correct Qt version. - 使用虚拟盒子 -注意: 这将添加工具链到构建环境变量并且在虚拟机内运行程序. -他将自动设置正确的 Qt 版本. - - - - ExtensionSystem::Internal::PluginDetailsView - - Name: - 名称: - - - Version: - 版本: - - - Compatibility Version: - 兼容版本: - - - Vendor: - 销售商: - - - Url: - URL: - - - Location: - 位置: - - - Description: - 说明: - - - Copyright: - 版权: - - - License: - 许可: - - - Dependencies: - 依赖关系: - - - Group: - 组: - - - Compatibility version: - 兼容版本: - - - URL: - URL: - - - - ExtensionSystem::Internal::PluginErrorView - - State: - 状态: - - - Error Message: - 错误信息: - - - Error message: - 错误信息: - - - - ExtensionSystem::Internal::PluginSpecPrivate - - File does not exist: %1 - 文件不存在: %1 - - - Could not open file for read: %1 - 无法打开用于读取的文件: %1 - - - Cannot open file %1 for reading: %2 - 无法打开文件%1 来读取: %2 - - - Error parsing file %1: %2, at line %3, column %4 - 分析文件错误 %1: %2, 在行 %3, 列 %4 - - - - ExtensionSystem::Internal::PluginView - - State - 状态 - - - Name - 名称 - - - Version - 版本 - - - Vendor - 销售商 - - - Location - 位置 - - - Load - 载入 - - - - ExtensionSystem::PluginErrorView - - Invalid - 无效 - - - Description file found, but error on read - 找到说明文件,但是读取错误 - - - Read - 读入 - - - Description successfully read - 成功读取说明文档 - - - Resolved - 已解決 - - - Dependencies are successfully resolved - 成功解析依赖关系 - - - Loaded - 已载入 - - - Library is loaded - 库已载入 - - - Initialized - 初始化 - - - Plugin's initialization method succeeded - 初始化插件成功 - - - Running - 执行中 - - - Plugin successfully loaded and running - 插件成功载入和运行 - - - Stopped - 已停止 - - - Plugin was shut down - 插件被关闭 - - - Deleted - 删除 - - - Plugin ended its life cycle and was deleted - 插件结束了自己的生存期并且已删除 - - - - ExtensionSystem::PluginManager - - Circular dependency detected: - - 检测到循环依赖: - - - - %1(%2) depends on - - %1(%2) 依赖于 - - - - %1(%2) - %1(%2) - - - Cannot load plugin because dependencies are not resolved - 由于没有解决依赖所以无法载入插件 - - - Cannot load plugin because dependency failed to load: %1(%2) -Reason: %3 - 因为无法载入依赖关系所以无法载入插件: %1(%2) -原因: %3 - - - - FakeVim::Internal - - Toggle vim-style editing - 开启vim风格的编辑 - - - Use vim-style editing - 使用vim风格编辑 - - - Use Vim-style Editing - 使用vim风格编辑 - - - Read .vimrc - 读取.vimrc - - - FakeVim properties... - FakeVim 属性... - - - - FakeVim::Internal::FakeVimHandler - - Not implemented in FakeVim - 在FakeVim中未实现 - - - E20: Mark '%1' not set - E20:未设置"%1"标记 - - - %1%2% - %1%2% - - - %1All - %1所有 - - - File '%1' exists (add ! to override) - 文件 '%1' 存在 (添加 ! 覆盖) - - - Cannot open file '%1' for writing - 无法打开用于写入的文件 '%1' - - - "%1" %2 %3L, %4C written - "%1" %2 %3L, %4C 写入 - - - Cannot open file '%1' for reading - 无法打开用于读取的文件'%1' - - - "%1" %2L, %3C - "%1" %2L, %3C - - - %n lines filtered - - 过滤%n 行 - - - - %n lines >ed %1 time - not really understand what does >ed mean. - - %n 行 >ed %1 次 - - - - Can't open file %1 - 无法打开文件 %1 - - - E512: Unknown option: - E512: 未知选项: - - - Mark '%1' not set - 未设置"%1"标记 - - - Unknown option: - 未知选项 : - - - File "%1" exists (add ! to override) - 文件 '%1' 存在 (添加 ! 覆盖) - - - Cannot open file "%1" for writing - 无法打开用于写入的文件 "%1" - - - Cannot open file "%1" for reading - 无法打开用于读取的文件"%1" - - - %n lines %1ed %2 time - - %n 行 执行命令%1 %2 次 - - - - Cannot open file %1 - 打开文件 %1 失败 - - - Pattern not found: %1 - 未找到模式:%1 - - - Pattern not found: - 未找到模式: - - - search hit BOTTOM, continuing at TOP - 搜索到末尾,从开头继续搜索 - - - search hit TOP, continuing at BOTTOM - 搜索到开头,从结尾处继续搜索 - - - Invalid regular expression: %1 - 无效的正则表达式: %1 - - - Already at oldest change - 已经处于最旧的改变了 - - - Already at newest change - 已经处于最新的改变了 - - - Unknown option: %1 - 未知选项: %1 - - - Argument must be positive: %1=%2 - 参数必须是正值: %1=%2 - - - - FakeVim::Internal::FakeVimOptionPage - - General - 概要 - - - FakeVim - FakeVim - - - Use FakeVim - 使用FakeVim - - - Read .vimrc - 读取.vimrc - - - Vim Behavior - Vim 行为 - - - Automatic indentation - 自动缩进 - - - Start of line - 移到行首 - - - Smart indentation - 智能缩进 - - - Use search dialog - 使用搜索对话框 - - - Use smartcase - 使用智能大小写 - - - Expand tabulators - 展开制表符 - - - Show position of text marks - 显示文本标签的位置 - - - Smart tabulators - 智能制表符 - - - Pass key sequences like Ctrl-S to Qt Creator core instead of interpreting them in FakeVim. This gives easier access to Qt Creator core functionality at the price of losing some features of FakeVim. - 组合按键比如Ctrl-S 传递给Qt Creator 核心而不在FakeVim中解释。这将更容易使用 Qt Creator 的核心功能,代价是需要牺牲一些FakeVim的功能。 - - - Pass control key - 传递Control按键 - - - Highlight search results - 高亮搜索结果 - - - Incremental search - 递增式搜索 - - - Shift width: - 缩进宽度: - - - Vim tabstop option - Vim 的 "tabstop" 选项 - - - Tabulator size: - 制表符大小: - - - Backspace: - 退格: - - - Keyword characters: - 关键词字符: - - - Copy Text Editor Settings - 复制文本编辑器设置 - - - Set Qt Style - 设置为Qt风格 - - - Set Plain Style - 设置为Plain风格 - - - - FakeVim::Internal::FakeVimPluginPrivate - - Switch to next file - 切换到下一个文件 - - - Switch to previous file - 切换到前一个文件 - - - Quit FakeVim - 退出FakeVim - - - Meta+V,Meta+V - Meta+V,Meta+V - - - Alt+V,Alt+V - Alt+V,Alt+V - - - Execute User Action #%1 - 执行用户操作 #%1 - - - Meta+V,%1 - Meta+V,%1 - - - Alt+V,%1 - Alt+V,%1 - - - File not saved - 文件未保存 - - - Saving succeeded - 成功保存 - - - %n files not saved - - %n 个文件没有被保存 - - - - Not an editor command: %1 - 不是一个编辑器命令: %1 - - - FakeVim Information - FakeVim 信息 - - - - FakeVimOptionPage - - Use FakeVim - 使用FakeVim - - - Vim style settings - Vim 风格设置 - - - vim's "expandtab" option - vim 的 "expandtab" 选项 - - - Expand tabulators: - 展开制表符: - - - Highlight search results: - 高亮搜索结果: - - - Shift width: - 缩进宽度: - - - Smart tabulators: - 智能制表符: - - - Start of line: - 从行开始: - - - vim's "tabstop" option - vim 的 "tabstop" 选项 - - - Tabulator size: - 制表符大小: - - - VIM's "autoindent" option - vim 的 "autoindent" 选项 - - - Automatic indentation: - 自动缩进: - - - Copy text editor settings - 复制文本编辑器设置 - - - Set Qt style - 设置为Qt风格 - - - Set plain style - 设置为无格式风格 - - - Incremental search: - 递增式搜索: - - - Vim Behavior - Vim 行为 - - - Automatic indentation - 自动缩进 - - - Start of line - 移到行首 - - - Smart indentation - 智能缩进 - - - Use search dialog - 使用搜索对话框 - - - Expand tabulators - 展开制表符 - - - Smart tabulators - 智能制表符 - - - Highlight search results - 高亮搜索结果 - - - Incremental search - 递增式搜索 - - - Read .vimrc - 读取vimrc - - - Keyword characters: - 关键词字符: - - - Copy Text Editor Settings - 复制文本编辑器设置 - - - Set Qt Style - 设置为Qt风格 - - - Set Plain Style - 设置为无格式风格 - - - Show position of text marks - 显示文本标签的位置 - - - Checking this box passes key sequences like Ctrl-S to the Creator core instead of interpreting them in FakeVim. This gives easier access to Creator core functionality at the price of losing some features of FakeVim. - 选中此项将传递类似Ctrl-S的按键序列给Creator核心,而不在FakeVim中解释。这样损失一部分FakeVim的功能但更容易访问Creator核心的功能。 - - - Pass control key - 传递Control按键 - - - Vim tabstop option - vim 的 "tabstop" 选项 - - - Pass key sequences like Ctrl-S to Qt Creator core instead of interpreting them in FakeVim. This gives easier access to Qt Creator core functionality at the price of losing some features of FakeVim. - 组合按键比如Ctrl-S 对于Qt Creator 核心来说是在FakeVim截断的. 这将更容易的进入 Qt Creator 核心功能但是需要牺牲一些FakeVim的功能. - - - - FilterNameDialogClass - - Add Filter Name - 增加过滤器名称 - - - Filter Name: - 过滤器名称: - - - - FilterSettingsPage - - Filters - 过滤器 - - - 1 - 1 - - - Add - 添加 - - - Remove - 删除 - - - Attributes - 属性 - - - <html><body> -<p> -Add, modify, and remove document filters, which determine the documentation set displayed in the Help mode. The attributes are defined in the documents. Select them to display a set of relevant documentation. Note that some attributes are defined in several documents. -</p></body></html> - <html><body> -<p> -添加,修改,删除文档过滤器,这决定了要在帮助模式中显示的文档集。属性在文档中定义,选中属性以显示关联文档。请注意某些属性在多个文档中被定义。 -</p></body></html> - - - No user defined filters available or no filter selected. - 无用户定义的过滤器或未选中过滤器。 - - - - Find::Internal::FindDialog - - Search for... - 查找... - - - Sc&ope: - 范围(&O): - - - &Search - 搜索(&S) - - - Search &for: - 查找(&F): - - - Close - 关闭 - - - &Case sensitive - 区分大小写(&C) - - - &Whole words only - 全词匹配(&W) - - - Search && Replace - 查找和替换 - - - Use regular e&xpressions - 使用正则表达式(&X) - - - Cancel - 取消 - - - Sco&pe: - 范围(&P): - - - Sear&ch for: - 查找(&C): - - - Case sensiti&ve - 区分大小写(&V) - - - Whole words o&nly - 全词匹配(&N) - - - Use re&gular expressions - 使用正则表达式(&G) - - - Search && &Replace - 查找和替换(&R) - - - - Find::Internal::FindPlugin - - &Find/Replace - 查找/替换(&F) - - - Advanced Find - 高级查找 - - - Open Advanced Find... - 打开高级查找... - - - Find... - 查找... - - - Ctrl+Shift+F - Ctrl+Shift+F - - - - Find::Internal::FindToolBar - - Current Document - 当前文档 - - - Find/Replace - 查找/替换 - - - Enter Find String - 输入搜索字符串 - - - Ctrl+E - Ctrl+E - - - Find Next - 查找下一个 - - - Find Previous - 查找前一个 - - - Replace && Find Next - 替换并且查找下一个 - - - Shift+Enter - Shift+Enter - - - Shift+Return - Shift+Return - - - Find Next (Selected) - 查找下一个(选中的) - - - Ctrl+F3 - Ctrl+F3 - - - Find Previous (Selected) - 查找前一个(选中的) - - - Ctrl+Shift+F3 - Ctrl+Shift+F3 - - - Replace - 替换 - - - Replace && Find - 查找并替换 - - - Ctrl+= - Ctrl+= - - - Replace && Find Previous - 替换并且查找前一个 - - - Replace All - 替换所有 - - - Case Sensitive - 区分大小写 - - - Whole Words Only - 全词匹配 - - - Use Regular Expressions - 使用正则表达式 - - - - Find::Internal::FindWidget - - Find - 查找 - - - Find: - 查找: - - - Replace with: - 替换为: - - - All - 所有 - - - ... - ... - - - Replace - 替换 - - - Replace && Find - 查找并替换 - - - Replace All - 替换所有 - - - Advanced... - 高级... - - - - Find::SearchResultWindow - - Search Results - 搜索结果 - - - No matches found! - 未找到匹配! - - - New Search - 新搜索 - - - Expand All - 展开全部 - - - %1 %2 - %1 %2 - - - Replace with: - 替换为: - - - Replace all occurrences - 替换所有出现位置 - - - Replace - 替换 - - - This change cannot be undone. - 这项改变将无法被撤销。 - - - Collapse All - 折叠全部 - - - - GdbOptionsPage - - Gdb interaction - Gdb 设定 - - - Gdb location: - Gdb 路径: - - - Environment: - 环境: - - - This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. - 可以为空,或指向包含gdb命令的文件,将在启动gdb之后立即执行。 - - - Gdb startup script: - Gdb启动脚本: - - - Behaviour of breakpoint setting in plugins - 在插件内的断点的行为 - - - This is the slowest but safest option. - 这是最慢但是最安全的选项。 - - - Try to set breakpoints in plugins always automatically. - 总是自动在插件中设置断点。 - - - Try to set breakpoints in selected plugins - 尝试在选中的插件中设置断点 - - - Matching regular expression: - 匹配正则表达式: - - - Never set breakpoints in plugins automatically - 从不自动在插件中设置断点 - - - Gdb timeout: - Gdb超时时间: - - - This is the number of second Qt Creator will wait before -it terminates non-reacting 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. - 这是Qt Creator在终止gdb进程之前将等待的秒数。 -默认时间是20秒,对于多数程序已经足够。 -但有时如载入很大的二进制档或列出源文件清单时, -在比较慢的机器上可能耗费比20秒更长的时间。 -这就需要增加此值。 - - - Gdb - Gdb - - - 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. - 这是Qt Creator 在终止不响应的gdb进程之前将等待的秒数。 -默认时间是20秒,对于多数程序已经足够。 -但有时如载入很大的二进制档或列出源文件清单时, -在比较慢的机器上可能耗费比20秒更长的时间。 -这就需要增加此值。 - - - Enable reverse debugging - 打开反向调试 - - - 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. - 当此项被选中,"Step Into"某些情况下将把几步压缩成为一步,以简化调试。因此像原子操作计数等代码会被跳过,信号发送的"Step Into"会直接调到连接的槽函数。 - - - Skip known frames when stepping - 当stepping时跳过已知的frames - - - Show a message box when receiving a signal - 当接收到一个信号时显示一个消息窗口 - - - Behavior of Breakpoint Setting in Plugins - 在插件内的断点的行为 - - - Adjust Breakpoint Locations - 对准断点位置 - - - Adjust breakpoint locations - 对准断点位置 - - - Load .gdbinit file on startup - 启动时载入.gdbinit 文件 - - - Use asynchronous mode to control the inferior - 使用异步模式来控制 - - - This is either empty or points to a file containing GDB commands that will be executed immediately after GDB starts up. - 这项要么留空,要么指定一个包含GDB 命令的文件,那么当GDB 启动时这写命令会马上执行. - - - GDB startup script: - Gdb启动脚本: - - - GDB timeout: - Gdb超时时间: - - - This will show a message box as soon as your application receives a signal like SIGSEGV during debugging. - 当您的应用程序在调试时收到系统信号比如SIGSEGV,这将显示一个消息窗口提示您. - - - 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 在不是生成的代码上允许设置断点. 在这种情况下,断点转移到下一个源代码行的代码实际上是生成出来的. 这个选项反应了如此临时的改变仅仅是移动断点位置而已. - - - This allows or inhibits reading the user's default .gdbinit file on debugger startup. - 这项允许或抑制在调试器启动时读取用户默认的.gdbinit 文件. - - - 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. - 开启反向调试 选择此项. 注意: 这项功能在 GDB 处将会非常缓慢. 在反向运行的时候将会很不稳定,极其容易摧毁当前的调试会话. - - - 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. - 这是 Qt Creator 将会等待的时间在 - 杀掉没响应的 GDB 进程之前. 默认是20秒 -大多数应用都适用这项设置, 但有些情况下 -载入大型库文件或者列出源文件需要更多的时间 -在一些老机器上. 在这种情况下, 应当增加这个数值. - - - 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 - 在插件种设置断点总是自动的 - - - <html><head/></body><p>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.</p></body></html> - <html><head/></body><p>GDB 在不是生成的代码上允许设置断点. 在这种情况下,断点转移到下一个源代码行的代码实际上是生成出来的. 这个选项反应了如此临时的改变仅仅是移动断点位置而已.</p></body></html> - - - Stop when a qWarning is issued - 停止当发生 qWarning - - - Always try to set breakpoints in plugins automatically - 在插件种设置断点总是自动的 - - - Stop when a qFatal is issued - 停止当发生 qFatal - - - This adds common paths to locations of debug information at debugger startup. - 在调试器启动时添加调试信息的位置常用路径. - - - Use common locations for debug information automatically - 为调试信息自动使用常用路径 - - - - GenericMakeStep - - Override %1: - 覆盖 %1: - - - Make arguments: - Make 参数: - - - Targets: - 目标: - - - - GenericProject - - <new> - <新建> - - - - GenericProjectManager::Internal::GenericBuildConfigurationFactory - - Create - 新建 - - - Build - 构建 - - - New Configuration - 新建配置 - - - New configuration name: - 新配置名称: - - - New configuration - 新配置 - - - New Configuration Name: - 新配置名称: - - - - GenericProjectManager::Internal::GenericBuildSettingsWidget - - Configuration Name: - 配置名称: - - - Build directory: - 构建目录: - - - Tool chain: - 工具链: - - - <Invalid tool chain> - <无效的工具链> - - - Tool Chain: - 工具链: - - - Generic Manager - 标准管理器 - - - - GenericProjectManager::Internal::GenericMakeStepConfigWidget - - Make - GenericMakestep display name. - Make - - - Override %1: - 覆盖 %1: - - - <b>Make:</b> %1 %2 - <b>Make:</b> %1 %2 - - - - GenericProjectManager::Internal::GenericProjectWizard - - Import of Makefile-based Project - 导入基于Makefile的项目 - - - Import Existing Project - 导入现有项目 - - - Imports existing projects that do not use qmake, CMake or Autotools. This allows you to use Qt Creator as a code editor. - 导入不使用qmake,CMake或Autotool的现存项目,这让您可以将Qt Creator当成代码编辑器使用。 - - - Creates a generic project, supporting any build system. - 创建标准项目,支持所有构建系统。 - - - Projects - 项目 - - - The project %1 could not be opened. - 项目 %1 无法被打开。 - - - - GenericProjectManager::Internal::GenericProjectWizardDialog - - Import of Makefile-based Project - 导入基于Makefile的项目 - - - Generic Project - 标准项目 - - - Import Existing Project - 导入现有项目 - - - Project Name and Location - 项目名称和位置 - - - Project name: - 项目名称: - - - Location: - 位置: - - - File Selection - 文件选择 - - - Location - 位置 - - - Files - 文件 - - - Second Page Title - 第二页题目 - - - - Git - - Checkout - Checkout - - - Checkout branch? - 检出分支吗? - - - Would you like to delete the <b>unmerged</b> branch '%1'? - 您想要删除<b>未合并的(unmerged)</b> 分支 '%1'吗? - - - Delete Branch - 删除分支 - - - Would you like to delete the branch '%1'? - 您想删除分支 '%1' 吗? - - - Failed to delete branch - 删除 分支 失败 - - - Failed to create branch - 创建 分支 失败 - - - Failed to stash - what does stash mean? - Stash 失败 - - - Checkout failed - Checkout 失败 - - - Create branch - 创建 分支 - - - Failed to create a tracking branch - 创建跟踪 分支 失败 - - - Branches - 分支 - - - General information - 概要 - - - Remote branches - 远程 branches - - - Remote Branches - 远程 分支 - - - Re&fresh - 刷新(&F) - - - &Add... - 添加(&A)... - - - &Remove - 删除(&R) - - - &Diff - &Diff - - - &Log - &Log - - - &Checkout - 检出(&C) - - - Select a Git commit - 选择一个 Git commit - - - Select Git repository - 选择 Git 仓库 - - - Select a Git Commit - 选择一个 Git commit - - - Select Git Repository - 选择 Git 仓库 - - - Select Working Directory - 选择工作目录 - - - Error - 错误 - - - Selected directory is not a Git repository - 选择的目录不是 一个Git 仓库 - - - Working directory: - 工作目录: - - - Select - 选择 - - - Change: - 更改: - - - Note that the git plugin for QtCreator is not able to interact with the server so far. Thus, manual ssh-identification etc. will not work. - 请注意 git 插件无法与服务器交互,所以类似于“手动ssh身份认证”之类将无法工作。 - - - Waiting for data... - 等待数据... - - - Git Diff - Git Diff - - - Git Diff Branch %1 - Git Diff Branch %1 - - - Git Log - Git Log - - - Cannot describe '%1'. - 无法描述 '%1'。 - - - Unable to checkout %1 of %2: %3 - Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message - 无法 checkout %2 中的 %1: %3 - - - Unable to add %n file(s) to %1: %2 - - 无法添加 %n 个文件到 %1: %2 - - - - Unable to remove %n file(s) from %1: %2 - - 无法从 %1 删除 %n 个文件: %2 - - - - Unable to move from %1 to %2: %3 - 无法从 %1移动到 %2: %3 - - - Unable to reset %1: %2 - 无法 重置 %1: %2 - - - Unable to reset %n file(s) in %1: %2 - - 无法 重置 %n 个文件到 %1: %2 - - - - Invalid revision - 无效修订版本 - - - Unable to retrieve branch of %1: %2 - 无法获取 %1 的分支: %2 - - - Stash description - Stash 说明 - - - Description: - 说明: - - - Stash Description - Stash 说明 - - - Unable to resolve stash message '%1' in %2 - Look-up of a stash via its descriptive message failed. - 无法解析 %2 中的 stash 信息 '%1' - - - Unable to run a 'git branch' command in %1: %2 - 无法在 %1 中执行命令 'git branch': %2 - - - Unable to run 'git show' in %1: %2 - 无法在 %1 中执行 'git show': %2 - - - Unable to run 'git clean' in %1: %2 - 无法在 %1 中执行 'git clean': %2 - - - There were warnings while applying %1 to %2: -%3 - 应用 %1 到 %2 时收到警告: -%3 - - - Unable apply patch %1 to %2: %3 - 无法应用补丁 %1 到 %2: %3 - - - Cannot locate %1. - 无法定位 %1. - - - Unable to launch %1. - 无法启动 %1。 - - - Unable to retrieve the last commit data of the repository %1. - 无法获取仓库 %1的最近提交数据。 - - - Amended %1 (%n file(s)). - - - 修订了 %1个(%n个文件). - - - - - Amended %1. - 修订了%1. - - - Unable to restore stash %1: %2 - 无法还原 stash %1: %2 - - - Unable to restore stash %1 to branch %2: %3 - 无法还原 stash %1 到分支 %2: %3 - - - Unable to remove stashes of %1: %2 - 无法删除 %1 中的 stashes: %2 - - - Unable to remove stash %1 of %2: %3 - 无法删除 %2 中的 stash %1: %3 - - - Unable retrieve stash list of %1: %2 - 无法获取 %1 的 stash 列表: %2 - - - Unable to determine git version: %1 - 无法确定 git 版本: %1 - - - Unable to checkout %n file(s) in %1: %2 - - 无法检出%1中的 %n 个文件: %2 - - - - Unable stash in %1: %2 - 无法在%1 执行 stash: %2 - - - Unable to run branch command: %1: %2 - 无法运行 branch 命令: %1: %2 - - - Unable to run show: %1: %2 - 无法运行 show: %1: %2 - - - Changes - 修改 - - - The repository %1 is not initialized yet. - 仓库 %1 还没有被初始化。 - - - Committed %n file(s). - - - Commit 了 %n 个文件. - - - - - Unable to commit %n file(s): %1 - - - 无法 commit %n 个文件: %1 - - - - - Cannot determine the repository for "%1". - 无法确定 "%1"的代码仓库。 - - - Cannot parse the file output. - 无法解析文件输出。 - - - Git Diff "%1" - Git Diff "%1" - - - Git Diff Branch "%1" - Git Diff 分支 "%1" - - - Git Log "%1" - Git Log "%1" - - - Cannot describe "%1". - 无法描述 '%1'。 - - - Git Show "%1" - Git Show - - - Git Blame "%1" - Git Blame - - - Cannot checkout "%1" of "%2": %3 - Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message - 无法检出 "%2" 中的 "%1": %3 - - - Cannot obtain log of "%1": %2 - 无法获取"%1"的日志: %2 - - - Cannot add %n file(s) to "%1": %2 - - 无法添加%n 个文件到"%1": %2 - - - - Cannot remove %n file(s) from "%1": %2 - - 无法从"%1" 删除%n 个文件: %2 - - - - Cannot move from "%1" to "%2": %3 - 无法将文件从 "%1" 移动到 "%2": %3 - - - Cannot reset "%1": %2 - 无法重置"%1": %2 - - - Cannot reset %n file(s) in "%1": %2 - - 无法在"%1"重置%n 个文件: %2 - - - - Cannot checkout "%1" of %2 in "%3": %4 - Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message - 无法检出 "%3"中的 %2 的修订版本 "%1": %4 - - - Cannot find parent revisions of "%1" in "%2": %3 - Failed to find parent revisions of a SHA1 for "annotate previous" - 无法找到在 "%2"的"%1"的上一级修订: %3 - - - Cannot retrieve branch of "%1": %2 - 无法获取"%1"的分支: %2 - - - Cannot retrieve top revision of "%1": %2 - 无法获取"%1"的顶部修订版本: %2 - - - Cannot describe revision "%1" in "%2": %3 - 无法描述"%2"中的修订"%1": %3 - - - Cannot stash in "%1": %2 - 无法在"%1"中stash: %2 - - - Cannot resolve stash message "%1" in "%2". - Look-up of a stash via its descriptive message failed. - 无法处理"%2"中的stash消息"%1"。 - - - Cannot run "git branch" in "%1": %2 - 无法在"%1"中运行"git branch" : %2 - - - Cannot run "git remote" in "%1": %2 - 无法在"%1"中运行"git remote" : %2 - - - Cannot run "git show" in "%1": %2 - 无法在"%1"中运行"git show" : %2 - - - Cannot run "git clean" in "%1": %2 - 无法在"%1"中运行"git clean" : %2 - - - There were warnings while applying "%1" to "%2": -%3 - 应用 %1 到 %2 时收到警告: -%3 - - - Cannot apply patch "%1" to "%2": %3 - 无法应用补丁"%1" 到"%2": %3 - - - Would you like to stash your changes? - 您想要stash您的修改吗? - - - Cannot obtain status: %1 - 无法获得状态: %1 - - - Cannot locate "%1". - 无法定位"%1". - - - Cannot launch "%1". - 无法启动"%1". - - - The repository "%1" is not initialized. - 仓库 %1 未被初始化。 - - - Cannot retrieve last commit data of repository "%1". - 无法获取仓库最近一次提交的数据"%1"。 - - - Amended "%1" (%n file(s)). - - - 增订了 %1(%n个文件). - - - - - Amended "%1". - 增订了"%1"。 - - - Cannot commit %n file(s): %1 - - - 无法commit %n 个文件: %1 - - - - - The file has been changed. Do you want to revert it? - 文件被改变,您想要还原它吗? - - - The file is not modified. - 文件没有被修改。 - - - The command 'git pull --rebase' failed, aborting rebase. - 命令 'git pull --rebase' 失败,终止rebase。 - - - Git SVN Log - Git SVN Log - - - There are no modified files. - 没有被修改的文件。 - - - Cannot restore stash "%1": %2 - 无法恢复stash "%1": %2 - - - Cannot restore stash "%1" to branch "%2": %3 - 无法恢复stash"%1" 到分支"%2": %3 - - - Cannot remove stashes of "%1": %2 - 无法删除"%1"的stash: %2 - - - Cannot remove stash "%1" of "%2": %3 - 无法删除 "%2"中的stash "%1": %3 - - - Cannot retrieve stash list of "%1": %2 - 无法获取 "%1"的stash列表: %2 - - - Cannot determine git version: %1 - 无法确定git 的版本: %1 - - - &Git - &Git - - - Diff Current File - Diff 当前文件 - - - Alt+G,Alt+D - Alt+G,Alt+D - - - File Status - 文件状态 - - - Alt+G,Alt+S - Alt+G,Alt+S - - - Log File - Log 文件 - - - Log of "%1" - "%1" 的 log - - - Alt+G,Alt+L - Alt+G,Alt+L - - - Blame for "%1" - "%1"的 blame - - - Blame Current File - Blame 当前文件 - - - Alt+G,Alt+B - Alt+G,Alt+B - - - Diff - Diff - - - Status - 状态 - - - Undo Uncommited Changes... - 撤销未提交的修改... - - - Clean... - 清除... - - - Launch gitk - 启动gitk - - - Launch repository browser - 启动代码仓库浏览器 - - - Remotes... - 远程... - - - Show... - 显示... - - - Patch - Patch - - - Apply from Editor - 应用自编辑器 - - - Apply from File... - 应用自文件... - - - Take Snapshot... - 抓取快照... - - - Meta+G,Meta+C - Meta+G,Meta+C - - - Amend Last Commit... - 增订最后一个 Commit... - - - Diff &Selected Files - Diff 选中的文件(&S) - - - Undo all pending changes to the repository -%1? - 撤销所有待决修改到仓库 -%1? - - - Undo Changes - 撤销修改 - - - Amend %1 - 增订 %1 - - - Closing Git Editor - 关闭 git 编辑器 - - - Git will not accept this commit. Do you want to continue to edit it? - Git 不接受此次提交. 您想继续编辑吗? - - - Repository Clean - 代码仓库清理 - - - Choose Patch - 选择补丁 - - - Undo Changes for "%1" - 撤销对"%1"的修改 - - - Alt+G,Alt+U - Alt+G,Alt+U - - - Stage File for Commit - Stage文件以备提交 - - - Meta+G,Meta+B - Meta+G,Meta+B - - - Diff of "%1" - "%1"的diff - - - Meta+G,Meta+D - Meta+G,Meta+D - - - Log Current File - Log 当前文件 - - - Meta+G,Meta+L - Meta+G,Meta+L - - - Stage "%1" for Commit - 提交的stage "%1" - - - Alt+G,Alt+A - Alt+G,Alt+A - - - Meta+G,Meta+A - Meta+G,Meta+A - - - Unstage File from Commit - 从提交unstage文件 - - - Unstage "%1" from Commit - 从提交unstage文件 "%1" - - - Undo Unstaged Changes - 撤销unstage的修改 - - - Undo Unstaged Changes for "%1" - 撤销unstage的对 "%1" 的修改 - - - Undo Uncommitted Changes - 撤销未提交的修改 - - - Undo Uncommitted Changes for "%1" - 撤销未提交的对 "%1" 的修改 - - - Meta+G,Meta+U - Meta+G,Meta+U - - - Diff Current Project - Diff 当前项目 - - - Diff Project "%1" - Diff 项目 "%1" - - - Meta+G,Meta+Shift+D - Meta+G,Meta+Shift+D - - - Alt+G,Alt+Shift+D - Alt+G,Alt+Shift+D - - - Meta+G,Meta+K - Meta+G,Meta+K - - - Clean Project... - Clean 项目... - - - Clean Project "%1"... - Clean 项目 "%1"... - - - Diff Repository - Diff 仓库 - - - Repository Status - 代码仓库 Status - - - Log Repository - Log代码仓库 - - - Apply Patch - 应用patch - - - Apply "%1" - 应用 “%1” - - - Apply Patch... - 应用patch... - - - Undo Repository Changes - 撤销对仓库的修改 - - - Create Repository... - 创建仓库... - - - Clean Repository... - Clean 仓库... - - - Stash snapshot... - Stash 快照... - - - Saves the current state of your work and resets the repository. - 保存您的工作的当前状态并重置软件仓库。 - - - Stashes... - Stash列表... - - - Reset... - 重置... - - - Subversion - Subversion - - - Log - Log - - - Fetch - Fetch - - - Unable to retrieve file list - 无法获取文件列表 - - - The repository is clean. - 代码仓库是clean状态。 - - - Patches (*.patch *.diff) - 补丁 (*.patch *.diff) - - - Choose patch - 选择补丁 - - - Patch %1 successfully applied to %2 - 补丁 %1 成功应用于 %2 - - - Project Status - 项目状态 - - - Status Project "%1" - 项目 "%1" 的状态 - - - Log Project - Log 项目 - - - Log Project "%1" - Log 项目 "%1" - - - Alt+G,Alt+K - Alt+G,Alt+K - - - Undo Project Changes - 撤销项目改变 - - - Stash - Stash - - - Saves the current state of your work. - 保存当前状态。 - - - Pull - Pull - - - Stash Pop - Stash Pop - - - Undo Uncommitted Changes... - 撤销未提交的修改... - - - Restores changes saved to the stash list using "Stash". - 使用 "Stash" 还原保存在stash列表中的更改。 - - - Commit... - Commit... - - - Alt+G,Alt+C - Alt+G,Alt+C - - - Push - Push - - - Branches... - 分支列表... - - - List Stashes - 列出临时分支 - - - Show Commit... - 显示提交... - - - Commit - Commit - - - Diff Selected Files - Diff 选中的文件 - - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - - - Could not find working directory - 找不到工作文件夹 - - - Revert - Revert - - - Another submit is currently being executed. - 另一个提交操作正在执行。 - - - Cannot create temporary file: %1 - 无法创建临时文件: %1 - - - Closing git editor - 关闭 git 编辑器 - - - Do you want to commit the change? - 您想提交此修改吗? - - - The binary '%1' could not be located in the path '%2' - 无法在路径 '%2' 定位二进制档 '%1' - - - Git Commit - Git Commit - - - General Information - 概要信息 - - - Repository: - 代码仓库: - - - repository - 代码仓库 - - - branch - 分支 - - - Commit Information - Commit 信息 - - - Author: - 作者: - - - Email: - Email: - - - By&pass hooks - 跳过hook(&P) - - - <New branch> - <新的分支> - - - Type to create a new branch - 创建新分支 - - - Environment variables - 环境变量 - - - PATH: - 路径: - - - From system - 来自系统 - - - <b>Note:</b> - <b>注意:</b> - - - Git needs to find Perl in the environment as well. - Git 需要在环境变量中找到 Perl. - - - Note that huge amount of commits might take some time. - 注意:大量的提交可能需要花费一段时间。 - - - Log commit display count: - 显示 commit 记录的数量: - - - Git - Git - - - Git Settings - Git设置 - - - Timeout (seconds): - 超时 (秒): - - - Miscellaneous - 其他 - - - Timeout: - 超时时间: - - - s - - - - Prompt on submit - 提交时弹出提示 - - - Ignore whitespace changes in annotation - 忽略注释中的空格变化 - - - Use "patience diff" algorithm - 使用 "patience diff” 算法 - - - Pull with rebase - pull同时rebase - - - Environment Variables - 环境变量 - - - From System - 从系统选择 - - - Set "HOME" environment variable - 设置 "HOME" 环境变量 - - - Ignore whitespace changes in blame and diff - 忽略blame和diff中的空格变化 - - - Gitk - Gitk - - - Arguments: - 参数: - - - Customize Environment: - 自定义环境: - - - Git needs to find Perl in the environment. - Git 需要在环境中找到 Perl. - - - Log count: - 日志数: - - - Configuration - 配置 - - - Prepend to PATH: - 附加在系统PATH之前: - - - Repository browser - 代码仓库浏览器 - - - Command: - 命令: - - - -'%1' failed (exit code %2). - - -'%1' 失败 (退出代码 %2)。 - - - - -'%1' completed (exit code %2). - - -'%1' 完成 (退出代码 %2)。 - - - - - Help - - Add new page - 添加新页 - - - Print Document - 打印文档 - - - unknown - 未知 - - - Add New Page - 添加新页 - - - Close This Page - 关闭本页 - - - Close Other Pages - 关闭其他页 - - - Add Bookmark for this Page... - 为此页添加书签... - - - Documentation - 文档 - - - Add Documentation - 添加文档 - - - Qt Help Files (*.qch) - Qt 帮助文件 (*.qch) - - - Invalid documentation file: - 无效的文档文件: - - - Namespace already registered: - 命名空间已经注册: - - - Registration failed - 注册失败 - - - Unable to register documentation. - 无法注册文档。 - - - The file %1 is not a valid Qt Help file! - 文件 %1 不是一个有效的Qt帮助文件! - - - Cannot unregister documentation file %1! - 无法注销文件 %1 ! - - - Add and remove compressed help files, .qch. - 添加和删除已压缩的帮助文件,.qch。 - - - Registered Documentation - 已注册的文档 - - - Add... - 添加... - - - Remove - 删除 - - - Filters - 过滤器 - - - Unfiltered - 未过滤 - - - No user defined filters available or no filter selected. - 无用户定义的过滤器或未选中过滤器。 - - - The filter "%1" will show every documentation file available, as no attributes are specified. - 由于没有设定属性,过滤器 "%1" 将显示所有可用的文档。 - - - The filter "%1" will only show documentation files that have the attribute %2 specified. - 过滤器 "%1" 只显示包含指定属性 "%2" 的文档。 - - - The filter "%1" will only show documentation files that have the attributes %2 specified. - 过滤器 "%1" 只会显示包含指定属性 "%2" 的文档文件。 - - - <html><body> -<p> -Add, modify, and remove document filters, which determine the documentation set displayed in the Help mode. The attributes are defined in the documents. Select them to display a set of relevant documentation. Note that some attributes are defined in several documents. -</p></body></html> - <html><body> -<p> -添加、修改和删除文档过滤器,文档过滤器决定在"帮助"模式下显示的文档集合。属性在文档中定义,选中属性以显示相关的一组文档。注意:有些属性在多个文件中定义。 -</p></body></html> - - - Attributes - 属性 - - - 1 - 1 - - - Add - 添加 - - - Help index - 帮助索引 - - - Help Index - 帮助索引 - - - Help - 帮助 - - - Contents - 目录 - - - Index - 索引 - - - Search - 查找 - - - Bookmarks - 书签 - - - Home - 主页 - - - Meta+M - Meta+M - - - Ctrl+M - Ctrl+M - - - Report Bug... - 报告bug... - - - Meta+I - Meta+I - - - Ctrl+Shift+I - Ctrl+Shift+I - - - Meta+Shift+C - Meta+Shift+C - - - Ctrl+Shift+C - Ctrl+Shift+C - - - Meta+/ - Meta+/ - - - Ctrl+Shift+/ - Ctrl+Shift+/ - - - Meta+B - Meta+B - - - Ctrl+Shift+B - Ctrl+Shift+B - - - Meta+O - Meta+O - - - Ctrl+Shift+O - Ctrl+Shift+O - - - Show Sidebar - 显示边栏 - - - Previous - 上一个 - - - Next - 下一个 - - - Hide Sidebar - 隐藏边栏 - - - Add Bookmark - 添加书签 - - - Previous Page - 上一页 - - - Next Page - 下一页 - - - Context Help - 上下文相关帮助 - - - Technical Support - 技术支持 - - - Report Bug - 报告错误 - - - Activate Index in Help mode - 帮助模式下激活索引 - - - Activate Contents in Help mode - 帮助模式下激活目录表示 - - - Activate Search in Help mode - 帮助模式下激活搜索 - - - Increase Font Size - 增大字号 - - - Ctrl++ - Ctrl++ - - - Decrease Font Size - 减小字号 - - - Ctrl+- - Ctrl+- - - - Reset Font Size - 重置字号 - - - 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 Bookmarks in Help mode - 帮助模式下激活书签 - - - Open Pages - 打开页面 - - - Activate Open Pages in Help mode - 帮助模式下激活打开页面表示 - - - Go to Help Mode - 切换到帮助模式 - - - Close current Page - 关闭当前页 - - - No Documentation - 没有文档 - - - No documentation available. - 没有可用文档。 - - - Close current page - 关闭当前页 - - - Filtered by: - 过滤方式: - - - &Copy - 复制(&C) - - - Copy &Link Location - 复制链接位置(&L) - - - Open Link in New Tab - 在新页面打开链接 - - - Select All - 全选 - - - Indexing - 索引中 - - - Indexing Documentation... - 正在建立文档索引... - - - Open Link - 打开链接 - - - Open Link as New Page - 在新页面打开连接 - - - Copy Link - 复制链接 - - - Copy - 复制 - - - Reload - 重新载入 - - - <title>about:blank</title> - <title>关于:空白页</title> - - - <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>错误404...</title></head><body><div align="center"><br><br><h1>页面无法被找到</h1><br><h3>'%1'</h3></div></body> - - - <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> - <title>错误 404...</title><div align="center"><br><br><h1>找不到页面</h1><br><h3>'%1'</h3></div> - - - Unable to launch external application. - - 无法执行外部应用。 - - - - OK - OK - - - Open Link in New Tab Ctrl+LMB - 在新页面打开链接 Ctrl+LMB - - - Error 404... - 错误 404... - - - The page could not be found! - 无法找到页面! - - - <li>Check that you have one or more documentation sets installed.</li> - <li>请检查您是否安装了一个或多个文档集。</li> - - - <li>Check that you have installed the appropriate browser plug-in to support the file your loading.</li> - <li>请检查您是否安装了正确的浏览器插件以支持您要载入的文件。</li> - - - <li>If you try to access a public URL, make sure to have a network connection.</li> - <li>如果您要访问一个公开的网络地址,请确认网络连接可用。</li> - - - <li>If your computer or network is protected by a firewall or proxy, make sure the application is permitted to access the network.</li> - <li>如果您的电脑或网络受到防火墙或网络代理的保护,请确认应用程序有访问网络的权限。</li> - - - - IndexWindow - - &Look for: - 查找(&L): - - - Open Link - 打开链接 - - - Open Link as New Page - 在新页面打开连接 - - - Open Link in New Tab - 在新页面打开链接 - - - - InputPane - - Type Ctrl-<Return> to execute a line. - 键入Ctrl-<Return> 执行一行。 - - - - Locator - - Filters - 过滤器 - - - Locator - 定位器 - - - - MainWindow - - Open file - 打开文件 - - - &File - 文件(&F) - - - &New... - 新建(&N)... - - - &Open... - 打开(&O)... - - - Ctrl+O - Ctrl+O - - - Recent Files - 最近使用的文件 - - - &Save - 保存(&S) - - - Save &As... - 另存为(&A)... - - - &Preview - 预览(&P) - - - Ctrl+R - Ctrl+R - - - &Preview with Debug - 带调试的预览(&P) - - - &Quit - 退出(&Q) - - - &Edit - 编辑(&E) - - - &Copy - 复制(&C) - - - &Cut - 剪切(&C) - - - &Paste - 粘贴(&P) - - - &Delete - 删除(&D) - - - &View - 视图(&V) - - - &Help - 帮助(&H) - - - &About... - 关于(&A)... - - - Properties - 属性 - - - Could not open file <%1> - 无法打开文件 <%1> - - - Qml Errors: - QML错误: - - - Quit - 退出 - - - Run to main() - 执行到main() - - - Ctrl+F5 - Ctrl+F5 - - - F5 - F5 - - - Shift+F5 - Shift+F5 - - - F6 - F6 - - - F7 - F7 - - - Shift+F6 - Shift+F6 - - - Shift+F9 - Shift+F9 - - - Shift+F7 - Shift+F7 - - - Shift+F8 - Shift+F8 - - - F8 - F8 - - - ALT+D,ALT+W - ALT+D,ALT+W - - - Files - 文件 - - - File - 文件 - - - Debug - 调试 - - - Not a runnable project - 不是一个可执行的项目 - - - The current startup project can not be run. - 当前启动的项目无法被执行。 - - - Open File - 打开文件 - - - Cannot find special data dumpers - 找不到特殊数据dumpers - - - The debugged binary does not contain information needed for nice display of Qt data types. - -Make sure you use something like - -SOURCES *= .../ide/main/bin/dumper/dumper.cpp - -in your .pro file. - 被调试的程序未包含用于正确显示Qt数据类型的信息。 - -请确保使用添加类似如下信息 - -SOURCES *= .../ide/main/bin/dumper/dumper.cpp - -到您的.pro文件中。 - - - Open Executable File - 打开可执行文件 - - - Ctrl+Q - Ctrl+Q - - - - MakeStep - - Override %1: - 覆盖 %1: - - - Make arguments: - Make 参数: - - - - MyMain - - N/A - N/A - - - - NickNameDialog - - Nick Names - 昵称 - - - Filter: - 过滤器: - - - Clear - 清空 - - - Nicknames - 昵称 - - - - OpenWithDialog - - Open File With... - 用...打开文件 - - - Open file extension with: - 使用..打开文件扩展名: - - - - Perforce::Internal - - No executable specified - 未指定可执行的 - - - Unable to launch "%1": %2 - 无法执行 "%1": %2 - - - "%1" timed out after %2ms. - 在%2毫秒后"%1" 超时. - - - "%1" crashed. - "%1" 崩溃 - - - "%1" terminated with exit code %2: %3 - "%1" 中止,退出代码 %2: %3 - - - The client does not seem to contain any mapped files. - 客户端看上去不存在任何映射文件 - - - - Perforce::Internal::ChangeNumberDialog - - Change Number - Change编号 - - - Change Number: - Change编号: - - - - Perforce::Internal::PendingChangesDialog - - P4 Pending Changes - P4未完成的Change - - - Submit - 提交 - - - Cancel - 取消 - - - Change %1: %2 - Change %1: %2 - - - - Perforce::Internal::PerforcePlugin - - &Perforce - &Perforce - - - Edit - 编辑 - - - Edit "%1" - 编辑"%1" - - - Alt+P,Alt+E - Alt+P,Alt+E - - - Edit File - 编辑文件 - - - Add - 添加 - - - Add "%1" - 添加"%1" - - - Alt+P,Alt+A - Alt+P,Alt+A - - - Add File - 添加文件 - - - Delete - 删除 - - - Delete "%1" - 删除 "%1" - - - Delete File - 删除文件 - - - Revert - 还原 - - - Revert "%1" - 还原"%1" - - - Alt+P,Alt+R - Alt+P,Alt+R - - - Revert File - 还原文件 - - - Diff Current File - Diff 当前文件 - - - Diff "%1" - Diff "%1" - - - Diff Current Project/Session - Diff 当前文件项目/会话 - - - Diff Project "%1" - Diff 项目 "%1" - - - Alt+P,Alt+D - Alt+P,Alt+D - - - Diff Opened Files - Diff 打开的文件 - - - Opened - 已打开 - - - Alt+P,Alt+O - Alt+P,Alt+O - - - Submit Project - 提交项目 - - - Submit Project "%1" - 提交项目 "%1" - - - Alt+P,Alt+S - Alt+P,Alt+S - - - Pending Changes... - 未完成的Change... - - - Update Current Project/Session - 更新当前的项目/会话 - - - Update Project "%1" - 更新项目 "%1" - - - Revert Project - 还原项目 - - - Revert Project "%1" - 还原项目 "%1" - - - Revert Unchanged - 还原未修改的内容 - - - Revert Unchanged Files of Project "%1" - 还原项目 %1 中所有未修改的内容 - - - Describe... - 说明... - - - Annotate Current File - 注释(Annotate) 当前文件 - - - Annotate "%1" - 注释 "%1" - - - Annotate... - 注释... - - - Filelog Current File - Filelog当前文件 - - - Filelog "%1" - Filelog "%1" - - - Alt+P,Alt+F - Alt+P,Alt+F - - - Filelog... - Filelog... - - - Update All - 更新所有 - - - Delete... - 删除... - - - Delete "%1"... - 删除 "%1"... - - - Log Project - Log 项目 - - - Log Project "%1" - Log 项目 "%1" - - - Repository Log - 仓库日志 - - - Submit - 提交 - - - Diff Selected Files - Diff 选中的文件 - - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - - - p4 revert - p4 还原(revert) - - - The file has been changed. Do you want to revert it? - 文件被改变,您想还原它么? - - - Do you want to revert all changes to the project "%1"? - 您想还原项目 "%1"的所有修改吗? - - - Another submit is currently executed. - 另一个提交正在被执行。 - - - Cannot create temporary file. - 无法创建临时文件。 - - - Project has no files - 项目中没有文件 - - - p4 annotate - p4 annotate - - - p4 annotate %1 - p4 annotate %1 - - - p4 filelog - p4 filelog - - - p4 filelog %1 - p4 filelog %1 - - - Executing: %1 - - 正在执行: %1 - - - - The process terminated with exit code %1. - 进程异常终止,退出码 %1 . - - - The commit message check failed. Do you want to submit this change list? - 检查提交信息失败,您想要提交这个修改列表吗? - - - p4 submit failed: %1 - p4 submit 失败: %1 - - - Error running "where" on %1: %2 - Failed to run p4 "where" to resolve a Perforce file name to a local file system name. - 在 %1运行 "where" 发生错误: %2 - - - The file is not mapped - File is not managed by Perforce - 文件未映射 - - - Perforce repository: %1 - Perforce 仓库地址: %1 - - - Perforce: Unable to determine the repository: %1 - Perforce: 无法定位仓库地址:'%1' - - - The process terminated abnormally. - 进程异常终止。 - - - Meta+P,Meta+F - Meta+P,Meta+F - - - Meta+P,Meta+E - Meta+P,Meta+E - - - Meta+P,Meta+A - Meta+P,Meta+A - - - Meta+P,Meta+R - Meta+P,Meta+R - - - Meta+P,Meta+D - Meta+P,Meta+D - - - Meta+P,Meta+S - Meta+P,Meta+S - - - Update Current Project - 更新当前项目 - - - Meta+P,Meta+O - Meta+P,Meta+O - - - Diff &Selected Files - Diff 选中的文件(&S) - - - Could not start perforce '%1'. Please check your settings in the preferences. - 无法启动 perforce '%1'. 请检查首选项中的设置. - - - Perforce did not respond within timeout limit (%1 ms). - Perforce 在超时限制(%1 毫秒)内未响应. - - - Unable to write input data to process %1: %2 - 无法向进程%1写入输入数据: %2 - - - Perforce is not correctly configured. - Perforce未正确配置。 - - - p4 diff %1 - p4 diff %1 - - - p4 describe %1 - p4 describe %1 - - - Closing p4 Editor - 正在关闭 p4编辑器 - - - Do you want to submit this change list? - 您想提交这个修改列表吗? - - - The commit message check failed. Do you want to submit this change list - 检查提交信息失败,您想要提交这个修改列表吗? - - - Cannot open temporary file. - 无法打开临时文件。 - - - Pending change - 未完成的修改 - - - Could not submit the change, because your workspace was out of date. Created a pending submit instead. - 无法提交修改,因为您的工作空间已经过时。创建了一个“未完成的提交”。 - - - Invalid configuration: %1 - 无效配置: %1 - - - Timeout waiting for "where" (%1). - 超时等待 "where" (%1). - - - Error running "where" on %1: The file is not mapped - 运行错误 "where" 在 %1: 文件没有被映射 - - - - Perforce::Internal::PerforceSubmitEditor - - Perforce Submit - Perforce提交 - - - - Perforce::Internal::PromptDialog - - Perforce Prompt - Perforce信息提示 - - - OK - OK - - - - Perforce::Internal::SettingsPage - - P4 Command: - P4 命令: - - - Use default P4 environment variables - 使用默认 P4 环境变量 - - - Environment variables - 环境变量 - - - P4 Client: - P4 客户端: - - - P4 User: - P4 用户: - - - P4 Port: - P4 端口: - - - Perforce - Perforce - - - Test - 测试 - - - Configuration - 配置 - - - Miscellaneous - 其他 - - - Prompt on submit - 提交时弹出提示 - - - Timeout: - 超时时间: - - - s - - - - Log count: - 日志数: - - - P4 command: - P4 命令: - - - P4 client: - P4 客户端: - - - P4 user: - P4 用户: - - - P4 port: - P4 端口: - - - Environment Variables - 环境变量 - - - Automatically open files when editing - 编辑时自动打开文件 - - - - Perforce::Internal::SettingsPageWidget - - Testing... - 测试中... - - - Test succeeded (%1). - 测试成功 (%1)。 - - - Test succeeded. - 测试成功。 - - - Perforce Command - Perforce 命令 - - - - Perforce::Internal::SubmitPanel - - Submit - 提交 - - - Change: - 更改: - - - Client: - 客户端: - - - User: - 用户: - - - - PluginDialog - - Details - 详情 - - - Error Details - 错误详情 - - - Installed Plugins - 已安装的插件 - - - Plugin Details of %1 - 插件%1 的详细信息 - - - Plugin Errors of %1 - 插件 %1 的错误信息 - - - - PluginManager - - The plugin '%1' does not exist. - 插件 '%1' 不存在。 - - - Unknown option %1 - 未知选项 %1 - - - The option %1 requires an argument. - 选项 %1 需要参数。 - - - Failed Plugins - 发生错误的插件 - - - - PluginSpec - - '%1' misses attribute '%2' - '%1' 缺少属性 '%2' - - - '%1' has invalid format - '%1' 格式无效 - - - Invalid element '%1' - '%1' 无效元素 - - - Unexpected closing element '%1' - 未预料到的关闭元素 '%1' - - - Unexpected token - 未预料到的符号 - - - Expected element '%1' as top level element - '%1' 应为顶层元素 - - - Resolving dependencies failed because state != Read - 解决依赖关系失败因为 state != Read - - - Could not resolve dependency '%1(%2)' - 无法解决依赖 '%1(%2)' - - - Loading the library failed because state != Resolved - 载入库文件失败因为 state != Resolved - - - Plugin is not valid (does not derive from IPlugin) - 不是有效插件 (未从IPlugin继承) - - - Initializing the plugin failed because state != Loaded - 初始化插件失败因为 state != Loaded - - - Internal error: have no plugin instance to initialize - 内部错误:没有插件实例要初始化 - - - Plugin initialization failed: %1 - 插件初始化失败: %1 - - - Cannot perform extensionsInitialized because state != Initialized - 无法进行扩展初始化因为 state != Initialized - - - Internal error: have no plugin instance to perform extensionsInitialized - 内部错误:没有可进行扩展初始化的插件实例 - - - Internal error: have no plugin instance to perform delayedInitialize - 内部错误: 没有可进行延迟初始化的插件实例 - - - - ProjectExplorer::AbstractProcessStep - - <font color="#0000ff">Starting: %1 %2</font> - - <font color="#0000ff">启动中: %1 %2</font> - - - - <font color="#0000ff">Exited with code %1.</font> - <font color="#0000ff">已退出,退出代码 %1.</font> - - - <font color="#ff0000"><b>Exited with code %1.</b></font> - <font color="#ff0000"><b>已退出,退出代码 %1.</b></font> - - - <font color="#ff0000">Could not start process %1 </b></font> - <font color="#ff0000">无法启动进程 %1 </b></font> - - - <font color="#0000ff">Starting: "%1" %2</font> - - <font color="#0000ff">启动中: %1 %2</font> - - - - <font color="#0000ff">The process "%1" exited normally.</font> - <font color="#ff0000">进程 %1正常退出 </b></font> - - - <font color="#ff0000"><b>The process "%1" exited with code %2.</b></font> - <font color="#ff0000">进程 %1退出,退出代码 %2 </b></font> - - - <font color="#ff0000"><b>The process "%1" crashed.</b></font> - <font color="#ff0000">进程 %1崩溃 </b></font> - - - <font color="#ff0000"><b>Could not start process "%1"</b></font> - <font color="#ff0000">无法启动进程 %1 </b></font> - - - Starting: "%1" %2 - - 正在启动 "%1" %2 - - - - Starting: "%1" %2 - 正在启动 "%1" %2 - - - - The process "%1" exited normally. - 进程"%1"正常退出。 - - - The process "%1" exited with code %2. - 进程"%1"退出,退出代码 %2 。 - - - The process "%1" crashed. - 进程"%1"崩溃。 - - - Could not start process "%1" %2 - 无法启动进程"%1" %2 - - - Could not start process "%1" - 无法启动进程"%1" - - - - ProjectExplorer::BuildManager - - Finished %1 of %n build steps - - 完成 %n 之中的 %1 个构建步骤 - - - - Build System - Category for build system isses listened under 'Build Issues' - 构建系统 - - - Compile - Category for compiler isses listed under 'Issues' - 编译 - - - Build System - Category for build system isses listed under 'Issues' - 构建系统 - - - Build canceled - 构建被取消 - - - Canceled build. - 取消构建. - - - When executing build step '%1' - 当执行构建步骤 '%1'时 - - - Running build steps for project %1... - 为项目%1执行构建步骤 ... - - - <font color="#ff0000">Canceled build.</font> - <font color="#ff0000">取消构建.</font> - - - Build - 构建 - - - <font color="#ff0000">Error while building project %1 (target: %2)</font> - <font color="#ff0000">构建项目%1时发生错误 (目标: %2)</font> - - - Error while building project %1 (target: %2) - 构建项目%1 时发生错误 (目标: %2) - - - Finished %n of %1 build steps - - 完成 %n 之中的 %1 构建步骤 - - - - Compile - Category for compiler isses listened under 'Build Issues' - 编译 - - - Buildsystem - Category for build system isses listened under 'Build Issues' - 构建系统 - - - <font color="#ff0000">Error while building project %1</font> - <font color="#ff0000">构建项目%1时发生错误 %1</font> - - - <font color="#ff0000">When executing build step '%1'</font> - <font color="#ff0000">当执行构建步骤'%1'时 </font> - - - Error while building project %1 - 构建项目%1 时发生错误 - - - <b>Running build steps for project %2...</b> - <b>为项目%2执行构建步骤 ...</b> - - - Finished %1 of %n steps - - 完成了 %n 之中的 %1 个步骤 - - - - Compile - Category for compiler issues listed under 'Issues' - 编译 - - - Build System - Category for build system issues listed under 'Issues' - 构建系统 - - - Build/Deployment canceled - 构建/部署被取消 - - - Canceled build/deployment. - 取消了构建/部署。 - - - Error while building/deploying project %1 (target: %2) - 构建/部署项目%1 时发生错误 (目标: %2) - - - When executing step '%1' - 当执行步骤 '%1'时 - - - Running steps for project %1... - 为项目%1执行步骤 ... - - - Skipping disabled step %1. - 跳过被禁用的步骤 %1。 - - - - ProjectExplorer::CustomExecutableRunConfiguration - - Custom Executable - 自定义执行档 - - - Could not find the executable, please specify one. - 无法找到执行档, 请指定一个. - - - Clean Environment - 清理时的环境变量 - - - System Environment - 系统环境变量 - - - Build Environment - 构建时的环境变量 - - - Run %1 - 运行%1 - - - - ProjectExplorer::CustomExecutableRunConfigurationFactory - - Custom Executable - 自定义执行档 - - - - ProjectExplorer::EnvironmentModel - - <UNSET> - <未设定> - - - Value - - - - Variable - 变量 - - - <VARIABLE> - Name when inserting a new variable - <变量> - - - <VALUE> - Value when inserting a new variable - <值> - - - <VARIABLE> - Name when inserting a new variable - <变量> - - - <VALUE> - Value when inserting a new variable - <值> - - - - ProjectExplorer::EnvironmentWidget - - &Edit - 编辑(&E) - - - &Add - 添加(&A) - - - &Reset - 重置(&R) - - - &Unset - 取消设置(&U) - - - &Batch Edit... - 批量编辑(&B)... - - - Unset <a href="%1"><b>%1</b></a> - 撤回设置 <a href="%1"><b>%1</b></a> - - - Set <a href="%1"><b>%1</b></a> to <b>%2</b> - 设置 <a href="%1"><b>%1</b></a> 到 <b>%2</b> - - - Use <b>%1</b> - %1 is "System Environment" or some such. - 使用 <b>%1</b> - - - Use <b>%1</b> and - Yup, word puzzle. The Set/Unset phrases above are appended to this. %1 is "System Environment" or some such. - 使用 <b>%1</b> 和 - - - Unset <b>%1</b> - 取消设置 <b>%1</b> - - - Set <b>%1</b> to <b>%2</b> - 设置 <b>%1</b> 为<b>%2</b> - - - Using <b>%1</b> - 使用 <b>%1</b> - - - Using <b>%1</b> and - 使用 <b>%1</b> 和 - - - Summary: No changes to Environment - 概要:环境变量没有改变 - - - - ProjectExplorer::Internal::AllProjectsFilter - - Files in any project - 任何项目中的文件 - - - Files in Any Project - 任意项目中的文件 - - - - ProjectExplorer::Internal::AllProjectsFind - - All Projects - 所有项目 - - - All Projects: - 所有项目: - - - Filter: %1 -%2 - 过滤器: '%1' -%2 - - - Fi&le pattern: - 文件模式(&L): - - - File &pattern: - 文件模式(&P): - - - - ProjectExplorer::Internal::BuildSettingsPanel - - Build Settings - 构建设置 - - - - ProjectExplorer::Internal::BuildSettingsWidget - - &Clone Selected - 克隆选中(&C) - - - Build Steps - 构建步骤 - - - Edit Build Configuration: - 编辑构建配置: - - - No Build Settings available - 没有可用的构建设置 - - - No build settings available - 没有可用的构建设置 - - - Edit build configuration: - 编辑构建配置: - - - Add - 添加 - - - Remove - 删除 - - - Rename - 重命名 - - - Remove Build Configuration - 删除构建配置 - - - Do you really want to delete the build configuration <b>%1</b>? - 确定要删除此构建配置<b>%1</b>吗? - - - Rename... - 重命名... - - - New name for build configuration <b>%1</b>: - 构建配置的新名称 <b>%1</b>: - - - Clone Configuration - Title of a the cloned BuildConfiguration window, text of the window - 克隆配置 - - - New configuration name: - 新配置名称: - - - Cancel Build && Remove Build Configuration - 取消构建 && 移除构建配置 - - - Do Not Remove - 不要移除 - - - Remove Build Configuration %1? - 删除构建配置%1? - - - The build configuration <b>%1</b> is currently being built. - 构建配置<b>%1</b> 正在被构建。 - - - Do you want to cancel the build process and remove the Build Configuration anyway? - 您想要取消构建并移除构建配置吗? - - - Remove Build Configuration? - 删除构建配置? - - - Do you really want to delete build configuration <b>%1</b>? - 确定要删除构建配置<b>%1</b>吗? - - - Clean Steps - 清除步骤 - - - <a href="#">Make %1 active.</a> - <a href="#">激活 %1 .</a> - - - New Configuration Name: - 新配置名称: - - - Clone configuration - 克隆配置 - - - - ProjectExplorer::Internal::BuildStepsPage - - Move Up - 向上移动 - - - Move Down - 向下移动 - - - Remove Item - 删除项目 - - - Removing Step failed - 删除步骤失败 - - - Can't remove build step while building - 无法在构建时删除构建步骤 - - - No Build Steps - 没有构建步骤 - - - Add Clean Step - 添加清除步骤 - - - Add Build Step - 添加构建步骤 - - - Add build step - 添加构建步骤 - - - Remove build step - 删除构建步骤 - - - Build Steps - 构建步骤 - - - Clean Steps - 清除步骤 - - - - ProjectExplorer::Internal::CompileOutputWindow - - Compile Output - 编译输出 - - - - ProjectExplorer::Internal::CoreListenerCheckingForRunningBuild - - Cancel Build && Close - 退出构建并关闭 - - - A project is currently being built. - 有个项目现正在构建中。 - - - Close Qt Creator? - 退出Qt Creator ? - - - Do not Close - 不要关闭 - - - - ProjectExplorer::Internal::CurrentProjectFilter - - Files in current project - 当前项目中的文件 - - - Files in Current Project - 当前项目中的文件 - - - - ProjectExplorer::Internal::CurrentProjectFind - - Current Project - 当前项目 - - - Project '%1': - 项目 '%1': - - - File &pattern: - 文件模式(&P): - - - - ProjectExplorer::Internal::CustomExecutableConfigurationWidget - - Name: - 名称: - - - Executable: - 执行档: - - - Arguments: - 参数: - - - Working Directory: - 工作目录: - - - Working directory: - 工作目录: - - - Run in &Terminal - 在终端中运行(&T) - - - Debugger: - 调试器: - - - Run Environment - 运行时的环境变量 - - - Base environment for this runconfiguration: - 运行配置的基本环境: - - - Clean Environment - 清除时的环境变量 - - - System Environment - 系统环境变量 - - - Build Environment - 构建时的环境变量 - - - No Executable specified. - 未指定执行档。 - - - Running executable: <b>%1</b> %2 - 运行的执行档: <b>%1</b> %2 - - - - ProjectExplorer::Internal::DependenciesPanel - - Dependencies - 依赖关系 - - - - ProjectExplorer::Internal::DetailedModel - - Could not rename file - 无法重命名文件 - - - Renaming file %1 to %2 failed. - 重命名 %1 到 %2 失败。 - - - - ProjectExplorer::Internal::EditorSettingsPanel - - Editor Settings - 编辑器设置 - - - - ProjectExplorer::Internal::EditorSettingsPropertiesPage - - Default File Encoding: - 默认文件编码: - - - Default file encoding: - 默认文件编码: - - - Use global settings - 实用全局设置 - - - Restore Global Values - 还原到全局变量 - - - Editor settings: - 编辑器设置: - - - Global - 全局设置 - - - Custom - 自定义设置 - - - Restore Global - 还原全局设置 - - - - Core::FolderNavigationWidgetFactory - - File System - 文件系统 - - - Meta+Y - Meta+Y - - - Alt+Y - Alt+Y - - - Synchronize with Editor - 与编辑器同步 - - - - ProjectExplorer::Internal::NewSessionInputDialog - - New session name - 新会话名称 - - - Enter the name of the new session: - 为新会话输入名称: - - - - ProjectExplorer::Internal::SessionDialog - - Switch to session - 切换到会话 - - - Session Manager - 会话管理器 - - - Create New Session - 创建新会话 - - - Clone Session - 复制会话 - - - Delete Session - 删除会话 - - - <a href="qthelp://org.qt-project.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">What is a Session?</a> - <a href="qthelp://org.qt-project.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">什么是会话?</a> - - - &New - 新建(&N) - - - &Rename - 重命名(&R) - - - C&lone - 克隆(&L) - - - &Delete - 删除(&D) - - - &Open - 打开(&S) - - - New session name - 新会话名称 - - - Rename session - 重命名会话 - - - <a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> - <a href="qthelp://org.qt-project.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">什么是会话?</a> - - - Automatically restore the last session when Qt Creator is started. - Qt Creator启动时自动恢复上一次会话。 - - - Restore last session on startup - 启动时恢复上次会话 - - - - ProjectExplorer::Internal::OutputPane - - Re-run this run-configuration - 重新执行运行配置 - - - Stop - 停止 - - - Application Output Window - 应用程序输出窗口 - - - The application is still running. - 应用程序仍在执行. - - - Force it to quit? - 强行关闭? - - - Force Quit - 强行关闭 - - - Ctrl+Shift+R - Ctrl+Shift+R - - - Application Output - 应用程序输出 - - - The application is still running. Close it first. - 应用程序仍在执行,请先关闭。 - - - Unable to close - 无法关闭 - - - - ProjectExplorer::Internal::OutputWindow - - Application Output Window - 应用程序输出窗口 - - - Additional output omitted - - 省略附加输出 - - - - - ProjectExplorer::Internal::ProcessStep - - Custom Process Step - Default ProcessStep display name - 自定义进程步骤 - - - Custom Process Step - item in combobox - 自定义处理步骤 - - - - ProjectExplorer::Internal::ProcessStepConfigWidget - - <b>%1</b> %2 %3 %4 - <b>%1</b> %2 %3 %4 - - - (disabled) - (禁用) - - - Custom Process Step - 自定义进程步骤 - - - %1 (disabled) - %1 is the custom process step summary - %1 (禁用) - - - - ProjectExplorer::Internal::ProcessStepWidget - - Name: - 名称: - - - Command: - 命令: - - - Working Directory: - 工作目录: - - - Command Arguments: - 命令参数: - - - Enable Custom Process Step - 启用自定义进程步骤 - - - Enable custom process step - 启用自定义处理步骤 - - - Working directory: - 工作目录: - - - Command arguments: - 命令参数: - - - Arguments: - 参数: - - - - ProjectExplorer::Internal::ProjectExplorerSettingsPage - - Build and Run - 构建和运行 - - - General - 概要 - - - Projects - 项目 - - - - ProjectExplorer::Internal::ProjectFileFactory - - Project File Factory - ProjectExplorer::ProjectFileFactory display name. - 项目文件工厂 - - - Failed to open project - 打开项目失败 - - - Could not open the following project: '%1' - 无法打开以下项目: '%1' - - - All Projects - 所有项目 - - - - ProjectExplorer::Internal::ProjectFileWizardExtension - - <Implicitly Add> - <隐式添加> - - - The files are implicitly added to the projects: - - 文件隐式添加到项目中: - - - - <None> - No project selected - <无> - - - Failed to add subproject '%1' -to project '%2'. - 添加子项目'%1' -到项目'%2'失败。 - - - Failed to add one or more files to project -'%1' (%2). - 添加一个或多个文件到项目'%1'失败 - (%2)。 - - - A version control system repository could not be created in '%1'. - 在%1处无法创建版本控制系统代码仓库. - - - Failed to add '%1' to the version control system. - 添加'%1' 到版本控制系统失败。 - - - - ProjectExplorer::Internal::ProjectTreeWidget - - Simplify tree - 简化视图 - - - Hide generated files - 隐藏生成的文件 - - - Simplify Tree - 简化树形视图 - - - Hide Generated Files - 隐藏生成的文件 - - - Synchronize with Editor - 与编辑器同步 - - - - ProjectExplorer::Internal::ProjectTreeWidgetFactory - - Projects - 项目 - - - Meta+X - Meta+X - - - Alt+X - Alt+X - - - Filter Tree - 过滤器树形视图 - - - Filter tree - 过滤视图 - - - - ProjectExplorer::Internal::ProjectWindow - - Active Build and Run Configurations - 激活构建和运行配置 - - - No project loaded. - 没有载入项目。 - - - - ProjectExplorer::Internal::ProjectWizardPage - - Add to &VCS (%1) - 添加到VCS(%1)(&V) - - - Summary - 汇总 - - - Add as a subproject to project: - 作为子项目添加到项目中: - - - Add to &project: - 添加到项目(&P): - - - Files to be added: - 要添加的文件: - - - Files to be added in - 要添加的文件 - - - - ProjectExplorer::Internal::RemoveFileDialog - - Remove File - 删除文件 - - - &Delete file permanently - 彻底删除文件(&D) - - - &Remove from Version Control - 从版本控制系统中删除(&R) - - - File to remove: - 即将被删除的文件: - - - - ProjectExplorer::Internal::RunSettingsPanel - - Run Settings - 运行设置 - - - - ProjectExplorer::Internal::RunSettingsWidget - - Add - 添加 - - - Remove - 删除 - - - <a href="#">Make %1 active.</a> - <a href="#">激活 %1 。</a> - - - Rename - 重命名 - - - Run configuration: - 运行配置: - - - Deployment: - 部署: - - - Run Settings - 运行设置 - - - Deployment - 部署 - - - Method: - 方法: - - - Run - 运行 - - - Remove Run Configuration? - 删除运行配置? - - - Do you really want to delete the run configuration <b>%1</b>? - 确定要删除此运行配置<b>%1</b>吗? - - - Rename... - 重命名... - - - New name for run configuration <b>%1</b>: - 运行配置的新名称 <b>%1</b>: - - - Cancel Build && Remove Deploy Configuration - 取消构建 && 移除部署设置 - - - Do Not Remove - 不要移除 - - - Remove Deploy Configuration %1? - 删除部署(deploy)配置%1? - - - The deploy configuration <b>%1</b> is currently being built. - 部署设置<b>%1</b> 正在被构建。 - - - Do you want to cancel the build process and remove the Deploy Configuration anyway? - 您想要取消构建并移除部署设置吗? - - - Remove Deploy Configuration? - 删除部署(deploy)配置? - - - Do you really want to delete deploy configuration <b>%1</b>? - 确定要删除此部署配置<b>%1</b>吗? - - - New name for deploy configuration <b>%1</b>: - 部署配置的新名称 <b>%1</b>: - - - - ProjectExplorer::Internal::RunSettingsPropertiesPage - - + - + - - - - - - - - - Edit run configuration: - 编辑运行配置: - - - Run configuration: - 运行配置: - - - Deployment: - 部署: - - - Add - 添加 - - - Remove - 删除 - - - Rename - 重命名 - - - Rename ... - 重命名... - - - - ProjectExplorer::Internal::SessionFile - - Session - 会话 - - - Failed to open project - 打开项目失败 - - - Untitled - default file name to display - 未命名 - - - - ProjectExplorer::Internal::TaskDelegate - - File not found: %1 - 未找到文件: %1 - - - - ProjectExplorer::Internal::TaskWindow - - Build Issues - 构建问题 - - - Issues - 问题 - - - Filter by categories - 根据分类过滤 - - - &Copy - 复制(&C) - - - Show Warnings - 显示警告 - - - - ProjectExplorer::Internal::WinGuiProcess - - The process could not be started! - 无法启动进程! - - - Cannot retrieve debugging output! - 无法获取调试输出! - - - The process could not be started: %1 - 无法启动进程: %1 - - - - ProjectExplorer::Internal::WizardPage - - Project management - 项目管理 - - - &Project - 项目(&P) - - - The following files will be added: - - - - - 以下文件将被添加: - - - - - - - Add to &project: - 添加到项目(&P): - - - Add to &version control: - 添加到版本控制系统(&V): - - - Project Management - 项目管理 - - - Manage - 管理 - - - Manage ... - 管理... - - - Manage... - 管理... - - - - ProjectExplorer::ProjectExplorerPlugin - - Projects - 项目 - - - &Build - 构建(&B) - - - &Debug - 调试(&D) - - - &Start Debugging - 开始调试 - - - Open With - 用...打开 - - - Recent Sessions - 当前会话 - - - Session Manager... - 会话管理器... - - - New Project... - 新建项目... - - - Ctrl+Shift+N - Ctrl+Shift+N - - - Load Project... - 载入项目... - - - Ctrl+Shift+O - Ctrl+Shift+O - - - Open File - 打开文件 - - - Show in Explorer... - 在Explorer中显示... - - - Show in Finder... - 在搜索器中显示 ... - - - Show containing folder... - 显示包含的目录... - - - Recent Projects - 最近使用的项目 - - - Recent P&rojects - 最近使用的项目(&R) - - - Close Project - 关闭项目 - - - Close Project "%1" - 关闭项目 "%1" - - - Close All Projects - 关闭所有项目 - - - Session - 会话 - - - Set Build Configuration - 设定构建配置 - - - Build All - 构建所有项目 - - - Ctrl+Shift+B - Ctrl+Shift+B - - - Rebuild All - 重新构建所有项目 - - - Deploy All - 部署所有 - - - Clean All - 清理所有项目 - - - Build Project - 构建项目 - - - Build Project "%1" - 构建项目 "%1" - - - Ctrl+B - Ctrl+B - - - Rebuild Project - 重新构建项目 - - - Rebuild Project "%1" - 重新构建项目 "%1" - - - Deploy Project - 部署项目 - - - Deploy Project "%1" - 部署项目 "%1" - - - Publish Project... - 发布项目... - - - Publish Project "%1"... - 发布项目"%1"... - - - Clean Project - 清理项目 - - - Clean Project "%1" - 清理项目 "%1" - - - Build Without Dependencies - 忽略依赖关系来构建 - - - Rebuild Without Dependencies - 忽略依赖关系重新构建 - - - Deploy Without Dependencies - 忽略依赖关系部署 - - - Clean Without Dependencies - 忽略依赖关系来清除 - - - Run - 运行 - - - Sessions - 会话 - - - Close All Projects and Editors - 关闭所有项目和编辑器 - - - Ctrl+R - Ctrl+R - - - Run Without Deployment - 忽略部署直接运行 - - - Build - 构建 - - - Rebuild - 重新构建 - - - Clean - 清除 - - - Deploy - 部署 - - - Rename... - 重命名... - - - Set as Active Project - 设为活动项目 - - - Set "%1" as Active Project - 将"%1"设置为活动项目 - - - Collapse All - 折叠全部 - - - Open Build and Run Kit Selector... - 打开 构建/运行 构建套件选择器... - - - Quick Switch Target Selector - 快速切换目标选择器 - - - Full build path of the current project's active build configuration. - 当前项目的活动构建配置的绝对构建路径。 - - - Failed to open project - 打开项目失败 - - - Cancel Build && Unload - 取消构建 && 卸载 - - - Do Not Unload - 不要卸载 - - - Unload Project %1? - 卸载项目 %1? - - - The project %1 is currently being built. - 项目 %1 正在被构建。 - - - Do you want to cancel the build process and unload the project anyway? - 您确定要取消构建并卸载项目吗? - - - Project Editing Failed - 编辑项目失败 - - - The file %1 was renamed to %2, but the project file %3 could not be automatically changed. - 文件 %1 更名为 %2,但项目文件 %3 无法自动更改。 - - - The project '%1' has no active target - 项目'%1'没有活动的目标 - - - The target '%1' for project '%2' has no active run configuration - 目标'%1' 为项目'%2' 没有活动的运行配置 - - - Cannot run '%1' in mode '%2'. - 无法运行'%1' 在模式'%2'. - - - A build is still in progress. - 仍有一个构建在进行中。 - - - Set Run Configuration - 设定运行配置 - - - Cancel Build - 取消构建 - - - Start Debugging - 开始调试 - - - F5 - F5 - - - Add New... - 添加新文件... - - - Add Existing Files... - 添加现有文件... - - - New Subproject... - 新子项目... - - - Remove File... - 删除文件... - - - Remove Project... - Remove project from parent profile (Project explorer view); will not physically delete any files. - 删除项目... - - - Delete File... - 删除文件... - - - Rename - 重命名 - - - Set as Startup Project - 设置为启动项目 - - - Open Build/Run Target Selector... - 打开 构建/运行 目标选择器... - - - Ctrl+T - Ctrl+T - - - Full path of the current project's main file, including file name. - 当前项目主文件的完整路径,包含文件名。 - - - Full path of the current project's main file, excluding file name. - 当前项目主文件的完整路径,不包含文件名。 - - - Load Project - 载入项目 - - - New Project - Title of dialog - 新建项目 - - - Always save files before build - 构建之前总是先保存文件 - - - No project loaded - 没有载入的项目 - - - Project has no build settings - 项目没有构建设置 - - - Building '%1' is disabled: %2<br> - 构建'%1' 被禁用: %2<br> - - - Failed to Open Project - 打开项目失败 - - - Unknown error - 未知错误 - - - Could Not Run - 无法运行 - - - Ignore all errors? - 忽略所有错误吗? - - - Found some build errors in current task. -Do you want to ignore them? - 在当前任务中发现一些构建错误。 -您想要忽略这些错误吗? - - - The project %1 is not configured, skipping it. - - 项目 %1 没有被配置,跳过该项目。 - - - No project loaded. - 没有载入项目。 - - - Currently building the active project. - 目前正在构建活动项目。 - - - The project %1 is not configured. - 项目 %1 未配置。 - - - Project has no build settings. - 项目没有构建设置。 - - - A build is in progress - 有一个构建在进行中 - - - Building '%1' is disabled: %2 - - 构建'%1' 被禁用: %2 - - - - Cancel Build && Close - 取消构建并关闭 - - - Do Not Close - 不要关闭 - - - Close Qt Creator? - 关闭 Qt Creator ? - - - A project is currently being built. - 有个项目现正在构建中。 - - - Do you want to cancel the build process and close Qt Creator anyway? - 您无论如何都要取消构建进程并且关闭 Qt Creator 吗? - - - Cannot run without a project. - 无法在一个项目外运行. - - - Cannot debug without a project. - 无法在一个项目外调试. - - - New File - Title of dialog - 新建文件 - - - New Subproject - Title of dialog - 新建子项目 - - - Add Existing Files - 添加现有文件 - - - Could not add following files to project %1: - - 无法添加以下文件到项目 %1 : - - - - Adding Files to Project Failed - 添加文件到项目失败 - - - Adding to Version Control Failed - 添加文件到版本控制系统失败 - - - Removing File Failed - 删除文件失败 - - - Deleting File Failed - 删除文件失败 - - - Delete File - 删除文件 - - - No active project. - 没有活动项目。 - - - The project '%1' has no active target. - 项目'%1'没有活动的目标。 - - - The target '%1' for the project '%2' has no active run configuration. - 项目'%2' 的目标'%1' 没有活动的运行配置。 - - - Cannot run '%1'. - 无法运行: %1。 - - - Run %1 - 运行 %1 - - - Delete %1 from file system? - 从文件系统中删除 %1吗? - - - Add files to project failed - 添加文件到项目失败 - - - Add files to version control failed - 添加文件到版本控制系统失败 - - - Projects (%1) - 项目(%1) - - - All Files (*) - 所有文件 (*) - - - Launching Windows Explorer failed - 启动Windows Explorer 失败 - - - Could not find explorer.exe in path to launch Windows Explorer. - 在环境变量中找不到explorer.exe,无法启动Windows Explorer. - - - Launching a file explorer failed - 启动文件管理器失败 - - - Could not find xdg-open to launch the native file explorer. - 无法找到 xdg-open 来启动本地文件浏览器. - - - Remove file failed - 删除文件失败 - - - Could not remove file %1 from project %2. - 无法从项目 %2.中删除文件 %1 。 - - - Delete file failed - 删除文件失败 - - - Could not delete file %1. - 无法删除文件 %1 。 - - - - ProjectExplorer::Internal::BuildConfigDialog - - Change build configuration && continue - 改变构建配置然后继续 - - - Cancel - 取消 - - - Continue anyway - 无论如何继续 - - - Run configuration does not match build configuration - 运行配置和构建配置不匹配 - - - The active build configuration builds a target that cannot be used by the active run configuration. - 当前活动的构建配置构建的目标无法被运行配置所使用. - - - 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). - 这种情况可能发生在配置使用了错误的Qt版本/工具链 -(比如,要想在Symbian模拟器中运行就需要用WINSCW工具链来进行构建). - - - Active run configuration - 激活运行配置 - - - Choose build configuration: - 选择构建配置: - - - No valid build configuration found. - 没有找到有效的构建。 - - - - ProjectExplorer::SessionManager - - Error while restoring session - 恢复会话时发生错误 - - - Could not restore session %1 - 无法恢复会话 %1 - - - Failed to restore project files - 还原项目文件失败 - - - Could not restore the following project files:<br><b>%1</b> - 无法还原以下项目文件:<br><b>%1</b> - - - Keep projects in Session - 在会话中保留项目 - - - Remove projects from Session - 从会话中移除项目 - - - Failed to open project - 打开项目失败 - - - Session - 会话 - - - Error while saving session - 保存会话时发生错误 - - - Could not save session to file %1 - 无法将会话保存到文件 %1 - - - Qt Creator - Qt Creator - - - Untitled - 未命名 - - - Session ('%1') - 会话 ('%1') - - - - QmakeProjectManager - - QMake Build Configuration: - qmake 构建配置: - - - qmake Build Configuration: - qmake 构建配置: - - - - QObject - - Pass - 通过 - - - Expected Failure - 预料中的失败 - - - Failure - 失败 - - - Expected Pass - 预料中的通过 - - - Warning - 警告 - - - Qt Warning - Qt 警告 - - - Qt Debug - Qt 调试 - - - Critical - 严重错误 - - - Fatal - 致命错误 - - - Skipped - 忽略 - - - Info - 信息 - - - Failed to create item of type %1 - 无法为项 创建类型 %1 - - - The Symbian SDK and the project sources must reside on the same drive. - 塞班SDK和项目源文件必须在同一驱动器上. - - - The Symbian SDK was not found for Qt version %1. - 在Qt版本%1中没有找到塞班SDK. - - - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. - 在塞班SDK中没有安装"Open C/C++ 插件"或者塞班SDK的路径被Qt版本%1误设置. - - - The Symbian toolchain does not handle special characters in a project path well. - 塞班的工具链不能在项目路径下处理特殊字符. - - - The Qt version is invalid: %1 - %1: Reason for being invalid - 当前Qt版本无效:%1 - - - The qmake command "%1" was not found or is not executable. - %1: Path to qmake executable. - qmake命令"%1"没有被找到或者它是不可执行的. - - - Ids have to be unique: - 标识符必须唯一: - - - Invalid Id: - 无效标识符: - - - -Only alphanumeric characters and underscore allowed. -Ids must begin with a lowercase letter. - -只允许数字字母和下划线。 -标识符必须以小写字母开头。 - - - - QTestLib::Internal::QTestOutputPane - - Test Results - 测试结果 - - - Result - 结果 - - - Message - 消息 - - - - QTestLib::Internal::QTestOutputWidget - - All Incidents - 所有事件 - - - Show Only: - 仅显示: - - - - QmlProjectManager::Internal::QmlNewProjectWizard - - QML Application - QML 应用 - - - Creates a QML application. - 创建一个QML 应用。 - - - Projects - 项目 - - - The project %1 could not be opened. - 无法打开项目 %1 。 - - - - QmlProjectManager::Internal::QmlNewProjectWizardDialog - - New QML Project - 新建 QML 项目 - - - This wizard generates a QML application project. - 本向导将创建一个QML 应用项目。 - - - - QmlProjectManager::Internal::QmlProjectWizard - - Import of existing QML directory - 导入现有的 QML文件夹 - - - Creates a QML project from an existing directory of QML files. - 使用现有目录中的 QML 文件创建一个 QML项目。 - - - Projects - 项目 - - - The project %1 could not be opened. - 无法打开项目 %1 。 - - - - QmlProjectManager::Internal::QmlProjectWizardDialog - - Import of QML Project - 导入QML 项目 - - - QML Project - QML项目 - - - Project name: - 项目名称: - - - Location: - 路径: - - - - QmlProjectManager::Internal::QmlRunConfiguration - - QML Viewer - QML 查看器 - - - <Current File> - <当前文件> - - - QML Viewer arguments: - QML 查看器参数: - - - Main QML File: - 主要 QML 文件: - - - Debugging Port: - 调试端口: - - - QML Runtime - QML运行环境 - - - - QrcEditor - - Add - 添加 - - - Remove - 删除 - - - Properties - 属性 - - - Prefix: - 前缀: - - - Language: - 语言: - - - Alias: - 别名: - - - - QmakeProjectManager - - Qt4 Console Application - Qt4 控制台应用 - - - Creates a Qt4 console application. - 创建一个Qt4 控制台应用。 - - - Qt Console Application - Qt 控制台应用 - - - Creates a project containing a single main.cpp file with a stub implementation. - -Preselects a desktop Qt for building the application if available. - 创建一个包含单一main.cpp文件及基本实现的项目。 - -预选一个可用的Qt桌面版本用于编译程序。 - - - Creates a Qt console application. - 创建一个Qt4 控制台应用。 - - - This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. - 本向导创建一个Qt4控制台应用项目,该应用继承自QCoreApplication,没有图形界面。 - - - Qt Designer is not responding (%1). - Qt设计师无响应 (%1)。 - - - Unable to create server socket: %1 - 无法创建服务器套接字: %1 - - - Embedded Linux - 嵌入式 Linux - - - Empty Qt4 Project - 空的 Qt4 项目 - - - Empty Qt Project - 空的 Qt 项目 - - - Creates a qmake-based project without any files. This allows you to create an application without any default classes. - 创建一个基于qmake的空白项目,这样您可以创建一个不包含任何类的程序。 - - - Creates an empty Qt project. - 创建一个空的 Qt 项目. - - - This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. - 本向导将创建一个空的Qt4项目,稍后使用其他向导添加文件. - - - Unable to start "%1" - 无法启动"%1" - - - The application "%1" could not be found. - 找不到应用 "%1"。 - - - Class Information - 类信息 - - - Specify basic information about the classes for which you want to generate skeleton source code files. - 指定您要创建的源码文件的基本类信息。 - - - Qt4 Gui Application - Qt4 GUI 应用 - - - Creates a Qt4 Gui Application with one form. - 创建有一个界面的Qt4 Gui应用 - - - Qt Gui Application - Qt Gui 应用 - - - Creates a Qt application for the desktop. Includes a Qt Designer-based main window. - -Preselects a desktop Qt for building the application if available. - 创建一个桌面Qt应用,包含一个基于Qt设计师的主窗体。 - -预选一个可用的Qt桌面版本用于编译程序。 - - - Creates a Qt Gui Application with one form. - 创建有一个界面的Qt Gui应用. - - - The template file '%1' could not be opened for reading: %2 - 无法打开读取模板文件 '%1': %2 - - - This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. - 本向导将创建一个Qt4 GUI应用项目,应用程序默认继承自QApplication并且包含一个空白的窗体。 - - - Details - 详情 - - - C++ Library - C++ 库 - - - Creates a C++ library based on qmake. This can be used to create:<ul><li>a shared C++ library for use with <tt>QPluginLoader</tt> and runtime (Plugins)</li><li>a shared or static C++ library for use with another project at linktime</li></ul> - 创建一个基于qmake的C++库。可以用于创建:<ul><li>用于<tt>QPluginLoader</tt>和运行时(插件)的共享C++库</li><li>在其他项目中链接时使用的共享库或静态C++库</li></ul> - - - Creates a C++ library based on qmake. This can be used to create:<ul><li>a shared C++ library for use with <tt>QPluginLoader</tt> and runtime (Plugins)</li><li>a shared or static C++ library for use with another project at linktime</li></ul>. - 创建一个基于qmake的C++库。可以用于创建:<ul><li>用于<tt>QPluginLoader</tt>和运行时(插件)的共享C++库</li><li>在其他项目中链接时使用的动态或静态C++库</li></ul>. - - - Creates a Qt based C++ Library. - 创建 一个基于Qt的 C++ 库. - - - Creates a C++ Library. - 创建一个C++ 库 - - - Shared library - 共享库 - - - Statically linked library - 静态链接库 - - - Qt 4 plugin - Qt 4 插件 - - - Shared Library - 共享库 - - - Statically Linked Library - 静态链接库 - - - Qt 4 Plugin - Qt 4 插件 - - - Type - 类型 - - - This wizard generates a C++ library project. - 本向导将创建一个C++ 库项目. - - - Symbian Specific - Symbian 特定 - - - Select required modules - 选择需要的模块 - - - Select Required Modules - 选择需要的模块 - - - Select the modules you want to include in your project. The recommended modules for this project are selected by default. - 请选择您的项目需要包含的模块,推荐的模块已经被默认选中。 - - - Remove - 删除 - - - Up - 上移 - - - Down - 下移 - - - Cut - 剪切 - - - Copy - 复制 - - - Paste - 粘贴 - - - Ctrl+X - Ctrl+X - - - Ctrl+C - Ctrl+C - - - Ctrl+V - Ctrl+V - - - Add Variable - 添加参数 - - - Add Scope - 添加范围 - - - Add Block - 添加段落 - - - <Global Scope> - <全局范围> - - - Change Item - 改变项目 - - - Change Variable Assignment - 改变参数的复制 - - - Change Variable Type - 改变参数的类型 - - - Change Scope Condition - 改变范围条件 - - - Change Expression - 改变表达式 - - - Move Item - 向上移动 - - - Remove Item - 删除项目 - - - Insert Item - 插入项目 - - - Import existing build settings - 导入现有的构建设置 - - - Qt Creator has found an already existing build in the source directory.<br><br><b>Qt Version:</b> %1<br><b>Build configuration:</b> %2<br><b>Additional QMake Arguments:</b>%3 - Qt Creator 在源文件夹中找到已经存在的构建.<br><br><b>Qt 版本:</b> %1<br><b>构建配置:</b> %2<br><b>额外 QMake 参数:</b>%3 - - - <b>Note:</b> Importing the settings will automatically add the Qt Version identified by <br><b>%1</b> to the list of Qt versions. - <b>注意:</b> 导入设置将会自动添加 被<br><b>%1</b>识别的Qt版本到 Qt 版本列表中. - - - Import existing build settings. - 导入现有的构建设置 - - - Project setup - 项目设置 - - - Project Setup - 项目设置 - - - Clear system environment - 清除系统环境变量 - - - Cannot open the file for edit with VCS. - 无法使用VCS打开用于编辑的文件. - - - Could not open the file for edit with VCS. - 无法使用VCS打开用于编辑的文件。 - - - Error while reading .pro file %1: %2 - 打开 .pro 文件 %1 出错: %2 - - - Could not open the file for edit with SCC. - 无法使用SCC打开用于编辑的文件. - - - Could not set permissions to writable. - 无法设置可写权限。 - - - Error while reading PRO file %1: %2 - 打开PRO文件%1出错: %2 - - - Error while changing pro file %1. - 修改pro文件 %1 时发生错误 - - - Configuration Name: - 配置名称: - - - Qt Version: - Qt 版本: - - - This Qt-Version is invalid. - 当前Qt版本无效. - - - Build Directory: - 构建目录: - - - <a href="import">Import existing build</a> - <a href="import">导入现有构建</a> - - - Shadow Build Directory - shadow build目录 - - - Default Qt Version (%1) - 默认 Qt 版本 (%1) - - - No Qt Version set - 没有设置Qt 版本 - - - using <font color="#ff0000">invalid</font> Qt Version: <b>%1</b><br>%2 - 使用 <font color="#ff0000">无效</font> Qt 版本: <b>%1</b><br>%2 - - - No Qt Version found. - 没有找到Qt 版本. - - - using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> - 使用 Qt 版本: <b>%1</b><br>和工具链 <b>%2</b><br>在目录 <b>%3</b>构建 - - - <Invalid tool chain> - <无效的工具链> - - - General - 概要 - - - Invalid Qt version - 无效的 Qt 版本 - - - A build for a different project exists in %1, which will be overwritten. - %1 build directory - 一个不同项目的构建存在于%1, 这将会被覆盖。 - - - An build for a different project exists in %1, which will be overwritten. - %1 build directory - 在%1 存在这不同项目的构建, 这些将被覆盖. - - - building in <b>%1</b> - 正在<b>%1</b>中进行构建 - - - This target cannot build this project since it does not define a Qt version. - 这个目标无法构建该项目,因为没有定义Qt版本。 - - - The Qt version %1 does not support shadow builds, building might fail. - Qt版本 %1 不支持shadow build,构建可能会失败。 - - - Error: - 错误: - - - Warning: - 警告: - - - <No tool chain selected> - <没有选择工具链> - - - Building in subdirectories of the source directory is not supported by qmake. - qmake不支持在源文件路径的子目录下构建. - - - An incompatible build exists in %1, which will be overwritten. - %1 build directory - 在 %1处有不兼容的构建, 它将被覆盖。 - - - Manage - 管理 - - - Tool Chain: - 工具链: - - - problemLabel - 问题标签 - - - Configuration name: - 配置名称: - - - Qt version: - Qt 版本: - - - This Qt version is invalid. - 当前Qt版本无效. - - - Tool chain: - 工具链: - - - Shadow build: - Shadow build: - - - Build directory: - 构建目录: - - - Run qmake - 执行qmake - - - Build - 构建 - - - Build "%1" - 构建 "%1" - - - Rebuild - 重新构建 - - - Clean - 清除 - - - Build Subproject - 构建子项目 - - - Build Subproject "%1" - 构建子项目 "%1" - - - Rebuild Subproject - 重新构建子项目 - - - Rebuild Subproject "%1" - 重新构建子项目 "%1" - - - Clean Subproject - 清理子项目 - - - Clean Subproject "%1" - 清理子项目 "%1" - - - Build File - 构建文件 - - - Build File "%1" - 构建文件"%1" - - - Ctrl+Alt+B - Ctrl+Alt+B - - - Jump to File Under Cursor - 跳转到光标下的文件 - - - Add Library... - 添加库... - - - Run qmake in %1 - 在%1执行qmake - - - Build in %1 - 在%1构建 - - - Qt4RunConfiguration - Qt4 运行配置 - - - The .pro file '%1' is currently being parsed. - .pro文件 '%1' 正在被解析。 - - - Clean Environment - 清理时的环境变量 - - - System Environment - 系统环境变量 - - - Build Environment - 构建时的环境变量 - - - Qt4 Run Configuration - Qt4 运行配置 - - - Qt4 RunConfiguration - Qt4 运行配置 - - - Running executable: <b>%1</b> %2 (in terminal) - 正在执行程序: <b>%1</b> %2 (在控制台) - - - Running executable: <b>%1</b> %2 - 正在执行程序: <b>%1</b> %2 - - - Arguments: - 参数: - - - Run in Terminal - 在终端中运行 - - - Select Working Directory - 选择工作目录 - - - Working directory: - 工作目录: - - - Run in terminal - 在终端中运行 - - - Base environment for this run configuration: - 运行设置的基础环境: - - - Debugger: - 调试器: - - - Run Environment - 运行时的环境变量 - - - Base environment for this runconfiguration: - 运行配置的基本环境变量: - - - Name: - 名称: - - - Executable: - 执行档: - - - Select the working directory - 选择工作目录 - - - Reset to default - 重置为默认 - - - Working Directory: - 工作目录: - - - Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) - 使用开发框架的调试版 (DYLD_IMAGE_SUFFIX=_debug) - - - <specify a name> - <指定一个名字> - - - <specify a qmake location> - <指定qmake的位置> - - - Select QMake Executable - 选择QMake 的执行档 - - - Select qmake Executable - 选择qmake 的执行档 - - - Select the MinGW Directory - 选择MinGW 的目录 - - - Select Carbide Install Directory - 选择Carbide 的安装目录 - - - Select S60 SDK Root - 选择S60 SDK 的根目录 - - - Select the CSL ARM Toolchain (GCCE) Directory - 选择CSL ARM 工具链 (GCCE) 的目录 - - - Auto-detected - 自动检测 - - - Manual - 手动设置 - - - Debugging Helper Build Log for '%1' - 调试助手为 '%1' 构建日志 - - - Helpers: None available - 助手:没有可用 - - - Helpers: %1. - %1 is list of tool names. - 助手: %1. - - - <i>Not yet built.</i> - <i>还没被构建.</i> - - - <i>Not needed.</i> - <i>不需要.</i> - - - <i>Cannot be compiled.</i> - <i>无法编译.</i> - - - Binary not found - 无法找到二进制文件 - - - <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>GDB 调试助手</b></td></tr><tr><td>文件:</td><td><pre>%1</pre></td></tr><tr><td>最后&nbsp;修改:</td><td>%2</td></tr><tr><td>大小:</td><td>%3 字节</td></tr><tr><td colspan="2"><b>QML 类型 dumper</b></td></tr><tr><td>文件:</td><td><pre>%4</pre></td></tr><tr><td>最后&nbsp;修改:</td><td>%5</td></tr><tr><td>大小:</td><td>%6 字节</td></tr><tr><td colspan="2"><b>QML 监视器</b></td></tr><tr><td>文件:</td><td><pre>%7</pre></td></tr><tr><td>最后&nbsp;修改:</td><td>%8</td></tr><tr><td>大小:</td><td>%9 字节</td></tr></table></body></html> - - - <html><body><table><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></table></body></html> - Tooltip showing the debugging helper library file. - <html><body><table><tr><td>文件:</td><td><pre>%1</pre></td></tr><tr><td>上次&nbsp;修改时间:</td><td>%2</td></tr><tr><td>大小:</td><td>%3 字节</td></tr></table></body></html> - - - This Qt Version has a unknown toolchain. - 此Qt 版本具有一个未知的工具链。 - - - Desktop - Qt Version is meant for the desktop - 桌面 - - - Symbian - Qt Version is meant for Symbian - 塞班 - - - Qt Simulator - Qt Version is meant for Qt Simulator - Qt模拟器 - - - unkown - No idea what this Qt Version is meant for! - 未知 - - - Found Qt version %1, using mkspec %2 (%3) - 找到Qt 版本 %1 使用mkspec %2 (%3) - - - The Qt Version identified by %1 is not installed. Run make install - %1识别的Qt版本没有被安装 。请运行 make install - - - %1 does not specify a valid Qt installation - %1 没有指定一个有效的Qt安装 - - - Found Qt version %1, using mkspec %2 - 找到Qt 版本 %1 使用mkspec %2 - - - Qt versions - Qt 版本 - - - Name - 名称 - - - Debugging Helper - 调试助手 - - - + - + - - - - - - - - - Version Name: - 版本名称: - - - MinGW Directory: - MinGW 目录: - - - MSVC Version: - MSVC 版本: - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#ff0000;">Unable to detect MSVC version.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" color:#ff0000;">检测不到MSVC的版本.</span></p></body></html> - - - Debugging Helper: - 调试助手: - - - Show &Log - 显示日志(&L) - - - &Rebuild - 重新构建(&R) - - - Default Qt Version: - 默认 Qt 版本: - - - QMake Location - QMake 路径 - - - QMake Location: - QMake 路径: - - - S60 SDK: - S60 SDK: - - - Carbide Directory: - Carbide 目录: - - - CSL/GCCE Directory: - CSL/GCCE 目录: - - - qmake Location - qmake 路径 - - - qmake Location: - qmake 路径: - - - Toolchain: - 工具链: - - - Version name: - 版本名称: - - - qmake location: - qmake 路径: - - - MinGW directory: - MinGW 目录: - - - CSL/GCCE directory: - CSL/GCCE 目录: - - - Carbide directory: - Carbide 目录: - - - Debugging helper: - 调试助手: - - - Unable to detect MSVC version. - 无法探测 MSVC 版本。 - - - Debugging helpers: - 调试助手: - - - Add - 添加 - - - The project %1 could not be opened. - 无法打开项目 %1 - - - Edit Variable - 编辑变量 - - - Variable Name: - 变量名称: - - - Assignment Operator: - 赋值运算符: - - - Variable: - 变量: - - - Append (+=) - 添加 (+=) - - - Remove (-=) - 删除(-=) - - - Replace (~=) - 覆盖(~=) - - - Set (=) - 设置(=) - - - Select Item - 选择项目 - - - Edit Item - 编辑项目 - - - Select Items - 选择项目 - - - Edit Items - 编辑项目 - - - Edit Values - 编辑数值 - - - Edit %1 - 编辑%1 - - - Edit Scope - 编辑范围 - - - Edit Advanced Expression - 编辑高级表达式 - - - Make - Qt4 MakeStep display name. - Make - - - Qt Creator needs a compiler set up to build. Configure a compiler in the kit options. - Qt Creator 需要设置一个编译器来构建。在构建套件选项里设置一个编译器。 - - - Qt Creator needs a tool chain set up to build. Configure a tool chain in Project mode. - Qt Creator 需要设置一个工具链来构建. 在项目模式里设置一个工具链. - - - Cannot find Makefile. Check your build settings. - 无法找到 Makefile. 检查您的构建设置。 - - - Configuration is faulty. Check the Issues view for details. - 配置错误,请检查"问题"视图获得详细信息。 - - - Configuration is faulty. Check the Build Issues view for details. - 配置错误. 请点击构建视图查看详细信息. - - - Qt Creator needs a tool chain set up to build. Please configure a tool chain in Project mode. - Qt Creator 需要一个工具链来构建. 请在项目模式下设置工具链. - - - Makefile not found. Please check your build settings - 未找到Makefile. 请检查您的构建设置 - - - Configuration is faulty, please check the Build Issues view for details. - 配置有误,请检查“构建问题”视图来获得更多信息. - - - Could not find make command: %1 in the build environment - 无法在环境变量中找到make命令: %1 - - - <font color="#ff0000">Could not find make command: %1 in the build environment</font> - <font color="#ff0000">在构建环境中找不到 make 命令: %1 </font> - - - Override %1: - 覆盖 %1: - - - Make: - Make: - - - <b>Make:</b> %1 - <b>Make:</b> %1 - - - <b>Make:</b> No Qt4 build configuration. - <b>Make:</b> 没有Qt4 的构建配置。 - - - <b>Make:</b> %1 not found in the environment. - <b>Make:</b> 在环境中找不到%1 。 - - - <b>Make Step:</b> %1 not found in the environment. - <b>Make 步骤:</b> %1 无法在环境变量中找到. - - - <b>Make:</b> %1 %2 in %3 - <b>Make:</b> %1 %2 在目录 %3 - - - Make - Make - - - -<font color="#ff0000"><b>No valid Qt version set. Set one in Preferences </b></font> - - <font color="#ff0000"><b>没有设置有效的Qt版本. 请在首选项中设置一个 </b></font> - - - - -<font color="#ff0000"><b>No valid Qt version set. Set one in Tools/Options </b></font> - - <font color="#ff0000"><b>没有设置有效的Qt版本t. 请在工具/选项中设置 </b></font> - - - - <font color="#0000ff">Configuration unchanged, skipping QMake step.</font> - <font color="#0000ff">配置没有改变, 跳过 QMake 步骤.</font> - - - qmake - QMakeStep default display name - qmake - - - Configuration is faulty, please check the Issues view for details. - 配置有误,请检查“问题”视图来获得更多信息。 - - - Configuration unchanged, skipping qmake step. - 配置没有改变, 跳过 qmake 步骤。 - - - No Qt version. - 没有设置Qt 版本。 - - - Invalid Qt version. - 无效的 Qt 版本。 - - - Requires Qt 4.7.1 or newer. - 需要Qt 4.7.1 或更新的版本。 - - - Library not available. <a href='compile'>Compile...</a> - 库不可用. <a href='compile'>编译...</a> - - - <font color="#0000ff">Configuration is faulty, please check the Build Issues view for details.</font> - <font color="#0000ff">配置有缺陷, 请检查构建输出来查看详情.</font> - - - <font color="#ff0000">Qt version <b>%1</b> is invalid. Set a valid Qt Version in Preferences </font> - - <font color="#ff0000">Qt 版本 <b>%1</b> 无效,请在选项中设置一个有效的Qt版本 </font> - - - <font color="#ff0000">Qt version <b>%1</b> is invalid. Set valid Qt Version in Tools/Options </b></font> - - <font color="#ff0000">Qt 版本 <b>%1</b> 无效,请在 工具/选项 中设置一个有效的Qt版本 </font> - - - The Symbian SDK and the project sources must reside on the same drive. - 塞班SDK和项目源文件必须在同一驱动器上 - - - The Symbian SDK was not found for Qt version %1. - 在Qt版本%1中没有找到塞班SDK. - - - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. - 在塞班SDK中没有安装"Open C/C++ 插件"或者塞班SDK的路径被Qt版本%1误设置 - - - The Symbian toolchain does not handle special characters in a project path well. - 塞班的工具链不能在项目路径下处理特殊字符 - - - <font color="#0000ff">Configuration unchanged, skipping qmake step.</font> - <font color="#0000ff">配置未改变,跳过 qmake 步骤.</font> - - - <b>QMake:</b> No Qt version set. QMake can not be run. - <b>QMake:</b> 没有设置 Qt 版本. QMake 无法运行. - - - <b>QMake:</b> %1 %2 - <b>QMake:</b> %1 %2 - - - No valid Qt version set. - 没有设置有效的Qt版本 - - - QML Debugging - QML 调试 - - - The option will only take effect if the project is recompiled. Do you want to recompile now? - 需要重新编译项目才能使选项生效。您想现在就重新编译吗? - - - Building helpers - 构建助手 - - - <b>qmake:</b> No Qt version set. Cannot run qmake. - <b>qmake:</b> 没有设置Qt版本,无法运行qmake。 - - - <b>qmake:</b> %1 %2 - <b>qmake:</b> %1 %2 - - - <b>Warning:</b> The tool chain suggested "%1" as mkspec. - <b>警告:</b> 工具链建议"%1" 作为 mkspec. - - - Enable QML debugging: - 打开QML调试: - - - Might make your application vulnerable. Only use in a safe environment. - 可能导致应用程序易受攻击,请仅在安全环境中使用。 - - - <No Qt version> - <没有设置Qt 版本> - - - Might make the application vulnerable. Use only in a safe environment. - 可能导致应用程序不稳定,仅可在安全模式下运行. - - - Loading project %1 ... - 载入项目 %1 ... - - - Full path to the host bin directory of the current project's Qt version. - 当前项目使用的Qt 版本的主机bin目录的完整路径。 - - - Full path to the target bin directory of the current project's Qt version. You probably want %1 instead. - 当前项目使用的Qt 版本的目标bin目录的完整路径。您很可能需要的是 %1。 - - - Update of Generated Files - 更新生成的文件 - - - 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. - 以下文件不是过期就是被修改过了:<br><br>%1<br><br>您希望Qt Creator更新这些文件吗?您将丢失所有的修改。 - - - Failed opening project '%1': Project file does not exist - 打开项目 '%1'失败: 项目文件不存在 - - - QMake - QMake - - - Failed opening project - 打开项目失败 - - - Failed opening project '%1': Project already open - 打开项目 '%1'失败: 项目已经被打开 - - - Opening %1 ... - 正在打开%1 ... - - - Done opening project - 完成打开项目 - - - MinGW from %1 - MinGW 从%1 - - - <not found> - <未找到> - - - Qt in PATH - PATH中的 Qt - - - Source: - 源: - - - mkspec: - mkspec: - - - qmake: - qmake: - - - Default: - 默认: - - - Compiler: - 编译器: - - - Version: - 版本: - - - - QApplication - - The Qt Version has no toolchain. - 此Qt 版本没有工具链。 - - - Build Settings - 构建设置 - - - Dependencies - 依赖关系 - - - Editor Settings - 编辑器设置 - - - Run Settings - 运行设置 - - - EditorManager - Next Open Document in History - 编辑管理器 - - - EditorManager - Previous Open Document in History - 编辑管理器 - - - Ninja (%1) - Ninja (%1) - - - NMake Generator (%1) - NMake 创建器(%1) - - - MinGW Generator (%1) - MinGW 创建器 (%1) - - - Unix Generator (%1) - Unix 创建器 (%1) - - - - QtModulesInfo - - QtCore Module - QtCore 模块 - - - Core non-GUI classes used by other modules - 其他模块使用的非图形界面核心类 - - - QtGui Module - QtGui 模块 - - - Graphical user interface components - 图形化用户界面组件 - - - QtNetwork Module - QtNetwork 模块 - - - Classes for network programming - 网络编程类 - - - QtOpenGL Module - QtOpenGL 模块 - - - OpenGL support classes - OpenGL 支持类 - - - QtSql Module - QtSql 模块 - - - Classes for database integration using SQL - 使用SQL的数据库集成类 - - - QtScript Module - QtScript 模块 - - - Classes for evaluating Qt Scripts - Qt Scripts类 - - - QtScriptTools Module - QtScriptTools 模块 - - - Additional Qt Script components - Qt Script额外组件 - - - QtSvg Module - QtSvg 模块 - - - Classes for displaying the contents of SVG files - 显示SVG文件内容的类 - - - QtWebKit Module - QtWebKit 模块 - - - Classes for displaying and editing Web content - 显示和编辑网络内容的类 - - - QtXml Module - QtXml 模块 - - - Classes for handling XML - 处理XML的类 - - - QtXmlPatterns Module - QtXmlPatterns模块 - - - An XQuery/XPath engine for XML and custom data models - XML和自定义数据模型的XQuery/XPath引擎 - - - Phonon Module - Phonon模块 - - - Multimedia framework classes - 多媒体框架类 - - - QtMultimedia Module - QtMultimedia模块 - - - Classes for low-level multimedia functionality - 提供底层多媒体功能的类 - - - Qt3Support Module - Qt3Support模块 - - - Classes that ease porting from Qt 3 to Qt 4 - 帮助Qt 3到Qt 4移植的类 - - - QtTest Module - QtTest模块 - - - Tool classes for unit testing - 用于单元测试的工具类 - - - QtDBus Module - QtDBus模块 - - - Classes for Inter-Process Communication using the D-Bus - 用D-Bus进行进程间通讯的类 - - - - QtScriptEditor::Internal::QtScriptEditorPlugin - - Creates a Qt Script file. - 创建一个Qt Script文件 - - - Qt Script file - Qt Script文件 - - - Qt - Qt - - - - QtScriptEditor::Internal::ScriptEditor - - <Select Symbol> - <选择符号> - - - - Locator::ILocatorFilter - - Filter Configuration - 过滤器配置 - - - Limit to prefix - 前缀名限制 - - - Prefix: - 前缀名: - - - - Locator::Internal::DirectoryFilter - - Generic Directory Filter - 标准目录过滤器 - - - Filter Configuration - 过滤器配置 - - - Select Directory - 选择目录 - - - %1 filter update: %n files - - %1 过滤器更新: %n 个文件 - - - - Choose a directory to add - 选择一个要添加的目录 - - - %1 filter update: 0 files - %1 过滤器更新: 0 个文件 - - - %1 filter update: canceled - %1 过滤器更新: 已取消 - - - - Locator::Internal::DirectoryFilterOptions - - Name: - 名称: - - - File Types: - 文件类型: - - - Specify file name filters, separated by comma. Filters may contain wildcards. - 指定文件名称过滤器, 用逗号分隔。过滤器可以包含通配符。 - - - Prefix: - 前缀: - - - Limit to prefix - 前缀限制 - - - Add... - 添加... - - - Edit... - 编辑... - - - Remove - 删除 - - - Directories: - 目录: - - - Specify a short word/abbreviation that can be used to restrict completions to files from this directory tree. -To do this, you type this shortcut and a space in the Locator entry field, and then the word to search for. - 指定用于限定此目录树的文件的关键词或者缩写。 -您可以在“定位器”的输入位置键入这个缩写和一个空格,然后输入搜索的词。 - - - File types: - 文件类型: - - - Add - 添加 - - - Edit - 编辑 - - - - Locator::Internal::FileSystemFilter - - Files in file system - 在文件系统中的文件 - - - Files in File System - 文件系统中的文件 - - - - Locator::Internal::FileSystemFilterOptions - - Filter configuration - 过滤器设置 - - - Prefix: - 前缀: - - - Limit to prefix - 限制前缀 - - - Include hidden files - 包括隐藏文件 - - - Filter: - 过滤器: - - - Add Filter Configuration - 添加过滤器配置 - - - - Locator::Internal::OpenDocumentsFilter - - Open documents - 打开的文档 - - - Open Documents - 打开文档 - - - - Locator::Internal::LocatorFiltersFilter - - Available filters - 可使用的过滤器 - - - - Locator::Internal::LocatorPlugin - - Ctrl+K - Ctrl+K - - - Type to locate - 输入以定位 - - - Type to locate (%1) - 输入以定位(%1) - - - Indexing - 索引中 - - - - Locator::Internal::LocatorWidget - - Refresh - 刷新 - - - Configure... - 配置... - - - Locate... - 定位... - - - Type to locate - 输入以定位 - - - Options - 选项 - - - <type here> - <在此输入> - - - - Locator::Internal::SettingsPage - - %1 (Prefix: %2) - %1 (前缀: %2) - - - %1 (prefix: %2) - %1 (前缀: %2) - - - - Locator::Internal::SettingsWidget - - Configure Filters - 配置过滤器 - - - Add - 添加 - - - Remove - 删除 - - - Edit - 编辑 - - - Refresh Interval: - 更新间隔: - - - min - - - - Refresh interval: - 更新间隔: - - - - RegExp::Internal::RegExpWindow - - &Pattern: - 模式(&P): - - - &Escaped Pattern: - 转义模式(&E): - - - &Pattern Syntax: - 模式语法(&P): - - - &Text: - 文本(&T): - - - Case &Sensitive - 区分大小写(&S) - - - &Minimal - 最小化(&M) - - - Index of Match: - 匹配项的索引: - - - Matched Length: - 匹配长度: - - - Regular expression v1 - 正则表达式 v1 - - - Regular expression v2 - 正则表达式 v2 - - - Wildcard - 通配符 - - - Fixed string - 固定字符串 - - - &Escaped pattern: - 转义模式(&E): - - - &Pattern syntax: - 模式语法(&P): - - - Case &sensitive - 区分大小写(&S) - - - Index of match: - 匹配项的索引: - - - Matched length: - 匹配长度: - - - Regular Expression v1 - 正则表达式 v1 - - - Regular Expression v2 - 正则表达式 v2 - - - Fixed String - 固定字符串 - - - Capture %1: - Capture %1: - - - Match: - 匹配: - - - Regular Expression - 正则表达式 - - - Enter Pattern from Code... - 从代码中输入模式... - - - Clear Patterns - 清除模式 - - - Clear Text - 清除文字 - - - Enter Pattern from Code - 从代码中输入模式 - - - Enter pattern from code... - 从代码中输入模式... - - - Clear patterns - 清除模式 - - - Clear texts - 清除文字 - - - Enter pattern from code - 从代码中输入模式 - - - Pattern - 模式 - - - - ResourceEditor - - Creates a Qt Resource file (.qrc). - 创建一个Qt 资源文件(.qrc). - - - Qt Resource file - Qt 资源文件 - - - Qt - Qt - - - Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. - 创建可以添加到Qt C++项目中的Qt资源文件。 - - - Creates a Qt Resource file (.qrc) that you can add to a Qt Widget Project. - 创建一个可以添加到Qt C++项目中的Qt资源文件(.qrc)。 - - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - - - Recheck existence of referenced files - 再次检查访问的文件是否存在 - - - - ResourceEditor - - Rename File... - 重命名文件... - - - Copy Resource Path to Clipboard - 复制资源路径到剪贴板 - - - untitled - 未命名 - - - - SaveItemsDialog - - Save Changes - 保存修改 - - - The following files have unsaved changes: - 以下文件有未保存的修改: - - - Automatically save all files before building - 构建前自动保存所有文件 - - - - SettingsDialog - - Options - 选项 - - - 0 - 0 - - - - SharedTools::QrcEditor - - Add Files - 添加文件 - - - Add Prefix - 添加前缀 - - - Choose Copy Location - 选择复制位置 - - - Overwriting Failed - 覆盖失败 - - - Copying Failed - 复制失败 - - - Invalid file - 无效文件 - - - Copy - 复制 - - - Skip - 跳过 - - - Abort - 终止 - - - The file %1 is not in a subdirectory of the resource file. Continuing will result in an invalid resource file. - 文件 %1 没有在资源文件的子目录中,继续会产生无效的源文件. - - - Invalid file location - 无效的文件路径 - - - The file %1 is not in a subdirectory of the resource file. You now have the option to copy this file to a valid location. - 文件 %1 没有在资源文件的子目录中,您可以选择复制此文件到一个有效的路径. - - - Choose copy location - 选择复制位置 - - - Overwrite failed - 覆盖失败 - - - Could not overwrite file %1. - 无法覆盖文件 %1 . - - - Copying failed - 复制失败 - - - Could not copy the file to %1. - 无法复制文件到 %1 . - - - - SharedTools::ResourceView - - Add Files... - 添加文件... - - - Change Alias... - 改变别名... - - - Add Prefix... - 添加前缀... - - - Change Prefix... - 改变前缀... - - - Change Language... - 改变语言... - - - Remove Item - 删除项 - - - Open File - 打开文件 - - - Input prefix: - 输入前缀: - - - Open file - 打开文件 - - - All files (*) - 所有文件 (*) - - - Change Prefix - 改变前缀 - - - Input Prefix: - 输入前缀: - - - Change Language - 改变语言 - - - Language: - 语言: - - - Change File Alias - 改变文件别名 - - - Alias: - 别名: - - - - ShortcutSettings - - Keyboard Shortcuts - 快捷键 - - - Filter: - 过滤器: - - - Command - 命令 - - - Label - 标签 - - - Shortcut - 快捷键 - - - Defaults - 默认 - - - Import... - 导入... - - - Export... - 输出... - - - Key Sequence - 按键顺序 - - - Shortcut: - 快捷键: - - - Reset - 重置 - - - Remove - 删除 - - - - ShowBuildLog - - Debugging Helper Build Log - 调试助手构建日志 - - - - Snippets::Internal::SnippetsPlugin - - Snippets - 片段 - - - - Snippets::Internal::SnippetsWindow - - Snippets - 片段 - - - - StartExternalDialog - - Executable: - 执行档: - - - Arguments: - 参数: - - - Start Debugger - 启动调试器 - - - Break at 'main': - 在'main'函数断点: - - - Working directory: - 工作目录: - - - &Executable: - 执行档(&E): - - - &Arguments: - 参数(&A): - - - &Working directory: - 工作目录(&W): - - - Break at '&main': - 在'main'函数断点(&M): - - - &Tool chain: - 工具链(&T): - - - Run in &terminal: - 在终端中运行(&T): - - - - StartRemoteDialog - - Start Debugger - 启动调试器 - - - Host and port: - 主机和端口号: - - - Architecture: - 体系结构: - - - Use server start script: - 使用服务器启动脚本: - - - Server start script: - 服务器启动脚本: - - - Debugger: - 调试器: - - - Local executable: - 本地执行档: - - - Sysroot: - 系统根目录: - - - &Debugger: - 调试器(&D): - - - Local &executable: - 本地执行档(&E): - - - &Host and port: - 主机和端口号(&H): - - - &Architecture: - 体系结构(&A): - - - &GNU target - &GNU 目标 - - - Sys&root: - 系统根目录(&R): - - - &Use server start script: - 使用服务器启动脚本(&U): - - - Server st&art script: - 服务器启动脚本(&A): - - - &GNU target: - &GNU 目标: - - - &Server start script: - 服务器启动脚本(&S): - - - Override s&tart script: - 覆盖启动脚本(&S): - - - Location of debugging information: - 调试信息位置: - - - Override host GDB s&tart script: - 覆盖主机GDB启动脚本(&T): - - - - Subversion::Internal::SettingsPage - - Subversion Command: - Subversion 命令: - - - Authentication - 验证信息 - - - User name: - 用户名: - - - Password: - 密码: - - - Subversion - Subversion - - - Configuration - 配置 - - - Miscellaneous - 其他 - - - Prompt on submit - 提交时弹出提示 - - - Timeout: - 超时时间: - - - s - - - - Ignore whitespace changes in annotation - 忽略注释中的空格变化 - - - Log count: - 日志数: - - - Subversion command: - Subversion 命令: - - - Username: - 用户名: - - - - Subversion::Internal::SettingsPageWidget - - Subversion Command - Subversion 命令 - - - - Subversion::Internal::SubversionPlugin - - &Subversion - &Subversion - - - Add - 添加 - - - Add "%1" - 添加"%1" - - - Alt+S,Alt+A - Alt+S,Alt+A - - - Delete - 删除 - - - Delete "%1" - 删除"%1" - - - Revert - 复原 - - - Revert "%1" - 复原"%1" - - - Diff Project - Diff 项目 - - - Diff Project "%1" - Diff 项目 "%1" - - - Diff Current File - Diff 当前文件 - - - Diff "%1" - Diff "%1" - - - Alt+S,Alt+D - Alt+S,Alt+D - - - Commit All Files - 提交所有文件 - - - Commit Current File - 提交当前文件 - - - Commit "%1" - 提交 "%1" - - - Alt+S,Alt+C - Alt+S,Alt+C - - - Filelog Current File - Filelog当前文件 - - - Filelog "%1" - Filelog "%1" - - - Annotate Current File - Annotate 当前文件 - - - Annotate "%1" - Annotate "%1" - - - Describe... - 说明... - - - Project Status - 项目状态 - - - Meta+S,Meta+D - Meta+S,Meta+D - - - Meta+S,Meta+A - Meta+S,Meta+A - - - Meta+S,Meta+C - Meta+S,Meta+C - - - Delete... - 删除... - - - Delete "%1"... - 删除 "%1"... - - - Revert... - 还原... - - - Revert "%1"... - 还原 "%1"... - - - Status of Project "%1" - 项目 "%1" 的状态 - - - Log Project - Log 项目 - - - Log Project "%1" - Log 项目 "%1" - - - Update Project - 更新项目 - - - Update Project "%1" - 更新项目 "%1" - - - Repository Log - 仓库日志 - - - Revert Repository... - 还原代码仓库... - - - Commit - 提交 - - - Diff Selected Files - Diff 选中的文件 - - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - - - Closing Subversion Editor - 关闭Subversion 编辑器 - - - Do you want to commit the change? - 您想要提交此修改吗? - - - The commit message check failed. Do you want to commit the change? - 提交信息检查失败,您想要提交修改吗? - - - Revert repository - 还原代码仓库 - - - Revert failed: %1 - 还原失败: %1 - - - The file has been changed. Do you want to revert it? - 文件被改变,您想还原它吗? - - - Executing: %1 %2 - - 执行中: %1 %2 - - - - Another commit is currently being executed. - 另一个提交正在被执行。 - - - Commit Project - 提交项目 - - - Commit Project "%1" - 提交项目 "%1" - - - Diff Repository - Diff 代码仓库 - - - Repository Status - 仓库状态 - - - Log Repository - Log 代码仓库 - - - Update Repository - 更新代码仓库 - - - Diff &Selected Files - Diff 选中的文件(&S) - - - Revert all pending changes to the repository? - 还原所有未完成的更改到仓库? - - - There are no modified files. - 没有被更改的文件。 - - - Cannot create temporary file: %1 - 无法创建临时文件: %1 - - - Describe - 说明 - - - Revision number: - 修订版本编号: - - - Executing in %1: %2 %3 - - 在 %1 中执行 : %2 %3 - - - No subversion executable specified! - 没有指定subversion执行档! - - - The process terminated with exit code %1. - 进程终止,退出代码: %1 . - - - The process terminated abnormally. - 进程异常终止. - - - Could not start subversion '%1'. Please check your settings in the preferences. - 无法启动 subversion '%1'. 请检查首选项中的设置. - - - Subversion did not respond within timeout limit (%1 ms). - Subversion 在超时限制(%1 毫秒)内未响应. - - - - Subversion::Internal::SubversionSubmitEditor - - Subversion Submit - Subversion提交 - - - - TextEditor::BaseFileFind - - Search - 查找 - - - %1 found - 找到 %1 - - - List of comma separated wildcard filters - 以逗号分隔的通配符过滤器列表 - - - Use regular e&xpressions - 使用正则表达式(&X) - - - Use Regular E&xpressions - 使用正则表达式(&X) - - - - TextEditor::BaseTextDocument - - untitled - 未命名 - - - Out of memory - 内存不足 - - - Opening file - 打开文件 - - - <em>Binary data</em> - <em>二进制数据</em> - - - - TextEditor::BaseTextEditor - - Print Document - 打印文档 - - - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. - <b>错误:</b> 无法用 "%2"-编码解码 "%1" . 无法编辑. - - - Select Encoding - 选择编码 - - - The text is too large to be displayed (%1 MB). - 文本过大,无法显示(%1 MB)。 - - - Line: %1, Col: %2 - 行号: %1, 列号: %2 - - - Line: 9999, Col: 999 - 行号: %1, 列号: 999 - - - - TextEditor::BaseTextEditorEditable - - Line: %1, Col: %2 - 行号: %1, 列号: %2 - - - Line: %1, Col: 999 - 行号: %1, 列号: 999 - - - - TextEditor::BehaviorSettingsPage - - Storage - 保存 - - - Removes trailing whitespace on saving. - 保存时去除尾部空白. - - - &Clean whitespace - 清除空白(&C) - - - Clean whitespace in entire document instead of only for changed parts. - 清除整个文档的空白代,不只清除改变部分的空白. - - - In entire &document - 整个文档适用(&D) - - - Correct leading whitespace according to tab settings. - 根据tab设置正确留白. - - - Clean indentation - 清空缩进 - - - &Ensure newline at end of file - 确保文件结尾有新的一行(&E) - - - Tabs and Indentation - 制表符和缩进 - - - Ta&b size: - 制表符尺寸(&B): - - - &Indent size: - 缩进尺寸(&i): - - - Backspace will go back one indentation level instead of one space. - 退格键将退回一个缩进而不是一个空白. - - - &Backspace follows indentation - 退格键跟随缩进(&B) - - - Insert &spaces instead of tabs - 插入空格代替制表符(&S) - - - Enable automatic &indentation - 开启自动缩进(&i) - - - Never - 从不 - - - Always - 总是 - - - In leading white space - 仅用于行首空白 - - - Mouse - 鼠标 - - - Enable &mouse navigation - 开启鼠标导航(&M) - - - Enable scroll &wheel zooming - 开启鼠标滚轮缩放(&W) - - - Automatically determine based on the nearest indented line (previous line preferred over next line) - 按最近的缩进行自动决定 (前一行优先于后一行) - - - Based on the surrounding lines - 依据周围行的情况 - - - Block indentation style: - 代码块缩进风格: - - - Exclude Braces - 不包括括号 - - - Include Braces - 包括括号 - - - GNU Style - GNU风格 - - - In Leading White Space - 仅用于行首空白 - - - <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> -控制花括号的缩进风格 - -<ul> -<li>排除花括号: 花括号不缩进。 -<pre> -void foo() -{ - if (a) - { - bar(); - } -} -</pre> -</li> - -<li>包括花括号: 缩进花括号。代码块的内容与花括号在同一层。 -<pre> -void foo() - { - if (a) - { - bar(); - } - } -</pre> -</li> - -<li>GNU 风格: 缩进声明内部的花括号。其内容缩进两次。 -<pre> -void foo() -{ - if (a) - { - bar(); - } -} -</pre> -</li> -</ul></body></html> - - - Align continuation lines: - 对齐连续行: - - - <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> -改变连续行的缩进 - -<ul> -<li>不对齐: 不进行对齐。代码行只根据当前逻辑缩进深度进行缩进。 -<pre> -(tab)int i = foo(a, b -(tab)c, d); -</pre> -</li> - -<li>伴随空格: 允许使用空格进行对齐,忽略其他缩进设置。 -<pre> -(tab)int i = foo(a, b -(tab) c, d); -</pre> -</li> - -<li>伴随规则缩进: 在原设置上使用 tab 或 空格进行对齐。 -<pre> -(tab)int i = foo(a, b -(tab)(tab)(tab) c, d); -</pre> -</li> -</ul></body></html> - - - Not At All - 不对齐 - - - With Spaces - 伴随空格 - - - With Regular Indent - 伴随规则缩进 - - - Global - Settings - 全局 - - - - TextEditor::DisplaySettingsPage - - Animate matching parentheses - 动画显示对应的括号 - - - Navigation - 导航 - - - Enable &mouse navigation - 开启鼠标导航(&M) - - - Mark text changes - 标记文本改变 - - - - TextEditor::FontSettingsPage - - Font & Colors - 字体和颜色 - - - Font && Colors - 字体和颜色 - - - Copy Color Scheme - 复制配色方案 - - - Color Scheme name: - 配色方案名称: - - - Color scheme name: - 配色方案名称: - - - %1 (copy) - %1 (复制) - - - Delete Color Scheme - 删除配色方案 - - - Are you sure you want to delete this color scheme permanently? - 您确定想永久删除这项配色方案吗? - - - Delete - 删除 - - - Color Scheme Changed - 配色方案改变 - - - The color scheme "%1" was modified, do you want to save the changes? - 配色方案 "%1" 被改变,您想保存改变么? - - - Discard - 丢弃 - - - - TextEditor::Internal::CodecSelector - - Text Encoding - 文本编码 - - - -The following encodings are likely to fit: - -以下编码可能符合: - - - Select encoding for "%1".%2 - 为"%1"选择编码 。%2 - - - Reload with Encoding - 按编码重新载入 - - - Save with Encoding - 按编码保存 - - - - TextEditor::Internal::FindInCurrentFile - - Current File - 当前文件 - - - File '%1': - 文件'%1': - - - File path: %1 -%2 - 文件路径: '%1' -%2 - - - - TextEditor::Internal::FindInFiles - - Files on Disk - 磁盘上的文件 - - - Files on File System - 在文件系统中的文件 - - - &Directory: - 目录(&D): - - - &Browse - 浏览(&B) - - - File &pattern: - 文件模式(&P): - - - Directory to search - 搜索目录 - - - - TextEditor::FontSettingsPageWidget - - Family: - 字型: - - - Size: - 字号: - - - Font - 字体 - - - Color Scheme - 配色方案 - - - Antialias - 抗锯齿 - - - Copy... - 复制... - - - Delete - 删除 - - - % - % - - - Zoom: - 缩放: - - - - TextEditor::Internal::LineNumberFilter - - Line in current document - 当前文档内的行 - - - Line %1 - 行%1 - - - Line in Current Document - 当前文档内的行 - - - - TextEditor::Internal::TextEditorPlugin - - Creates a text file (.txt). - 创建一个文本文件(.txt). - - - Creates a text file. The default file extension is <tt>.txt</tt>. You can specify a different extension as part of the filename. - 创建一个文本文件。默认的文件扩展名是<tt>.txt</tt>。您可以在指定文件名时指定扩展名。 - - - Text File - 文本文件 - - - General - 概要 - - - Creates a scratch buffer using a temporary file. - 使用临时文件创建一个临时缓冲区。 - - - Scratch Buffer - 临时缓冲区 - - - Triggers a completion in this scope - 在当前范围内触发自动补全 - - - Ctrl+Space - Ctrl+Space - - - Meta+Space - Meta+Space - - - Triggers a quick fix in this scope - 在当前范围内触发快速修正 - - - Alt+Return - Alt+Return - - - Selected text within the current document. - 当前文档中选中的文本。 - - - Line number of the text cursor position in current document (starts with 1). - 当前文档光标所在位置的行号(以1开始). - - - Column number of the text cursor position in current document (starts with 0). - 当前文档光标所在位置的列号(以0开始). - - - Number of lines visible in current document. - 当前文档的可见行数。 - - - Number of columns visible in current document. - 当前文档的可见列数。 - - - Current document's font size in points. - 当前文档的字体大小(以点为单位)。 - - - - TextEditor::TextEditorActionHandler - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - - - Select Encoding... - 选择编码... - - - Auto-&indent Selection - 选中的文字自动缩进(&i) - - - Ctrl+I - Ctrl+I - - - Meta - Meta - - - Ctrl - Ctrl - - - %1+E, R - %1+E, R - - - &Visualize Whitespace - 标示空白(&V) - - - Clean Whitespace - 清除空白 - - - Enable Text &Wrapping - 开启文字折行(&W) - - - (Un)Comment &Selection - (取消)注释或选择(&S) - - - Ctrl+/ - Ctrl+/ - - - Copy &Line - 复制行(&L) - - - Ctrl+Ins - Ctrl+Ins - - - Delete &Line - 删除行(&L) - - - Delete Word From The Cursor On - 从光标处删除文字 - - - Delete Word Camel Case From The Cursor On - 从光标处删除驼峰式文字 - - - Delete Word Up To The Cursor - 从光标上方处删除文字 - - - Delete Word Camel Case Up To The Cursor - 从光标上方处删除驼峰式文字 - - - Fold - 折叠 - - - Unfold - 展开 - - - (Un)&Fold All - 折叠/展开所有(&F) - - - Reset Font Size - 重置字号 - - - Ctrl+0 - Ctrl+0 - - - Go to Block Start - 移到段落开头 - - - Go to Block End - 移到段落结尾 - - - Shift+Del - Shift+Del - - - &Rewrap Paragraph - 段落重新折行(&R) - - - %1+E, %2+V - %1+E, %2+V - - - %1+E, %2+W - %1+E, %2+W - - - Toggle Comment &Selection - 选中区域注释/反注释(&S) - - - Cut &Line - 剪切行(&L) - - - Collapse - 折叠 - - - Ctrl+< - Ctrl+< - - - Expand - 展开 - - - Ctrl+> - Ctrl+> - - - (Un)&Collapse All - (取消)折叠所有代码(&C) - - - Increase Font Size - 增大字号 - - - Ctrl++ - Ctrl++ - - - Decrease Font Size - 减小字号 - - - Ctrl+- - Ctrl+- - - - Ctrl+[ - Ctrl+[ - - - Ctrl+] - Ctrl+] - - - Ctrl+{ - Ctrl+{ - - - Meta+E, R - Meta+E, R - - - Ctrl+E, R - Ctrl+E, R - - - Meta+E, Meta+V - Meta+E, Meta+V - - - Ctrl+E, Ctrl+V - Ctrl+E, Ctrl+V - - - Meta+E, Meta+W - Meta+E, Meta+W - - - Ctrl+E, Ctrl+W - Ctrl+E, Ctrl+W - - - Delete Word from Cursor On - 从光标处删除文字 - - - Delete Word Camel Case from Cursor On - 从光标处删除驼峰式文字 - - - Delete Word up to Cursor - 从光标上方处删除文字 - - - Delete Word Camel Case up to Cursor - 从光标上方处删除驼峰式文字 - - - Toggle &Fold All - 选择 折叠/展开所有(&F) - - - Meta+0 - Meta+0 - - - Go to Block Start with Selection - 选中到段落开头 - - - Go to Block End with Selection - 选中到段落末尾 - - - Ctrl+} - Ctrl+} - - - Select Block Up - 选择段落上移 - - - Ctrl+U - Ctrl+U - - - Select Block Down - 选择的段落下移 - - - Move Line Up - 上移一行 - - - Ctrl+Shift+Up - Ctrl+Shift+Up - - - Move Line Down - 下移一行 - - - Ctrl+Shift+Down - Ctrl+Shift+Down - - - Copy Line Up - 向上复制本行 - - - Ctrl+Alt+Up - Ctrl+Alt+Up - - - Copy Line Down - 向下复制本行 - - - Ctrl+Alt+Down - Ctrl+Alt+Down - - - Join Lines - 合并行 - - - Ctrl+J - Ctrl+J - - - Insert Line Above Current Line - 在当前行之前插入行 - - - Ctrl+Shift+Return - Ctrl+Shift+Return - - - Insert Line Below Current Line - 在当前行之后插入行 - - - Ctrl+Return - Ctrl+Return - - - Uppercase Selection - 大写选择 - - - Alt+Shift+U - Alt+Shift+U - - - Meta+Shift+U - Meta+Shift+U - - - Lowercase Selection - 小写选择 - - - Alt+U - Alt+U - - - Meta+U - Meta+U - - - Paste from Clipboard History - 从剪贴板历史中粘贴 - - - Ctrl+Shift+V - Ctrl+Shift+V - - - Indent - 缩进 - - - Unindent - 不缩进 - - - Follow Symbol Under Cursor - 跟踪光标位置的符号 - - - Jump To File Under Cursor - 跳到光标所在处的文件 - - - Go to Line Start - 移到行首 - - - Go to Line End - 移到行尾 - - - Go to Next Line - 移到下一行 - - - Go to Previous Line - 移到前一行 - - - Go to Previous Character - 移到上一字符 - - - Go to Next Character - 移到下一字符 - - - Go to Previous Word - 移到上一单词 - - - Go to Next Word - 移到下一单词 - - - Go to Previous Word Camel Case - 移到上一个使用骆驼命名法的单词 - - - Go to Next Word Camel Case - 移到下一个使用骆驼命名法的单词 - - - Go to Line Start with Selection - 选中到行首 - - - Go to Line End with Selection - 选中到行尾 - - - Go to Next Line with Selection - 选中到下一行 - - - Go to Previous Line with Selection - 选中到上一行 - - - Go to Previous Character with Selection - 选中到上一字符 - - - Go to Next Character with Selection - 选中到下一字符 - - - Go to Previous Word with Selection - 选中到上一单词 - - - Go to Next Word with Selection - 选中到下一单词 - - - Go to Previous Word Camel Case with Selection - 选中到上一个使用骆驼命名法的单词 - - - Go to Next Word Camel Case with Selection - 选中到下一个使用骆驼命名法的单词 - - - <line number> - <行号> - - - - TextEditor::TextEditorSettings - - Text - 文本 - - - Generic text. -Applied to text, if no other rules matching. - 一般文本 -当没有其他规则时应用于文本。 - - - Link - 链接 - - - Links that follow symbol under cursor. - 跟随光标所在符号的链接。 - - - Selection - 选择 - - - Selected text. - 选中的文本。 - - - Line Number - 行号 - - - Line numbers located on the left side of the editor. - 位于编辑器左侧的行号。 - - - Search Result - 搜索结果 - - - Highlighted search results inside the editor. - 在编辑器中高亮搜索结果。 - - - Search Scope - 搜索范围 - - - Section where the pattern is searched in. - 搜索模式所在的搜索段落范围。 - - - Parentheses - 括号 - - - Displayed when matching parentheses, square brackets or curly brackets are found. - 当匹配到括号、方括号和大括号时显示。 - - - Current Line - 当前行 - - - Line where the cursor is placed in. - 光标所在的行号。 - - - Current Line Number - 当前行号 - - - Line number located on the left side of the editor where the cursor is placed in. - 当前光标所在位置、位于编辑器左侧的行号。 - - - Occurrences - 出现位置 - - - Occurrences of the symbol under the cursor. -(Only the background will be applied.) - 光标处的符号出现的位置。 -(仅应用背景颜色。) - - - Unused Occurrence - 未使用的出现位置 - - - Occurrences of unused variables. - 未用到的变量出现的位置。 - - - Renaming Occurrence - 重命名出现位置 - - - Occurrences of a symbol that will be renamed. - 将要被更名的符号出现的位置。 - - - Number - 数字 - - - Number literal. - 数字。 - - - String - 字符串 - - - Character and string literals. - 字符和字符串。 - - - Type - 类型 - - - Name of a type. - 类型名称。 - - - Local - 局部 - - - Local variables. - 局部变量。 - - - Field - 字段 - - - Class' data members. - 类的数据成员。 - - - Enumeration - 枚举量 - - - Applied to Enumeration Items. - 应用到枚举项。 - - - Function - 函数 - - - Name of a function. - 函数名。 - - - QML item id within a QML file. - QML文件中的QML项的id。 - - - QML root Object Property - QML根对象的属性 - - - QML property of a parent item. - 父项的QML属性。 - - - QML scope Object Property - QML范围内的对象属性 - - - Property of the same QML item. - 同一个QML项的属性。 - - - Location in the files where the difference is (in diff editor). - diff编辑器中显示文件差别所在的位置。 - - - Static - 静态 - - - Virtual Method - 虚方法 - - - Name of method declared as virtual. - 声明为虚函数的方法名。 - - - QML Binding - QML 绑定 - - - QML item property, that allows a binding to another property. - 允许绑定到另一个属性的QML项属性。 - - - QML Local Id - QML 局部 ID - - - QML Root Object Property - QML 根对象属性 - - - QML Scope Object Property - QML 范围对象的属性 - - - QML State Name - QML 状态名 - - - Name of a QML state. - QML状态的名称。 - - - QML Type Name - QML类型名 - - - Name of a QML type. - QML类型名。 - - - QML External Id - QML 外部 ID - - - QML id defined in another QML file. - 在另一个QML文件中定义的QML id。 - - - QML External Object Property - QML 外部对象属性 - - - QML property defined in another QML file. - 在另一个QML文件中定义的QML属性。 - - - JavaScript Scope Var - JavaScript 范围变量 - - - Variables defined inside the JavaScript file. - JavaScript文件内定义的变量。 - - - JavaScript Import - JavaScript 导入 - - - Name of a JavaScript import inside a QML file. - QML文件内的JavaScript导入的名称。 - - - JavaScript Global Variable - JavaScript 全局变量 - - - Variables defined outside the script. - 脚本内定义的变量。 - - - Keyword - 关键字 - - - Reserved keywords of the programming language. - 编程语言的保留关键字。 - - - Operator - 运算符 - - - Operators. (for example operator++ operator-=) - 操作符(如++和-=)。 - - - Preprocessor - 预处理器 - - - Preprocessor directives. - 预处理指令。 - - - Label - 标签 - - - Labels for goto statements. - goto语句的标签。 - - - Comment - 注释 - - - All style of comments except Doxygen comments. - 除Doxygen注释之外的所有风格的注释。 - - - Doxygen Comment - Doxgen注释 - - - Doxygen comments. - Doxgen注释。 - - - Doxygen Tag - Doxgen标签 - - - Doxygen tags - Doxgen标签 - - - Visual Whitespace - 标示空白 - - - Whitespace -Will not be applied to whitespace in comments and strings. - “空格” -注释和字符串中的空格不适用。 - - - Disabled Code - 禁用的代码 - - - Code disabled by preprocessor directives. - 被预处理指令禁用的代码。 - - - Added Line - 添加的行 - - - Applied to added lines in differences (in diff editor). - 应用于(diff编辑器的)差异中增加的行。 - - - Removed Line - 删除的行 - - - Applied to removed lines in differences (in diff editor). - 应用于(diff编辑器的)差异中删除的行。 - - - Diff File - Diff文件 - - - Compared files (in diff editor). - (diff编辑中)比较的文件。 - - - Diff Location - Diff路径 - - - Text Editor - 文本编辑器 - - - Behavior - 行为 - - - Display - 显示 - - - - TopicChooser - - Filter - 过滤器 - - - Choose a topic for <b>%1</b>: - 为<b>%1</b>选择一个标题: - - - Choose Topic - 选择标题 - - - &Topics - 标题(&T) - - - &Display - 显示(&D) - - - &Close - 关闭(&C) - - - - VcsBase - - Version Control - 版本控制 - - - General - 概要 - - - Common - 共同 - - - Project from Version Control - 从版本控制中导出 - - - - VcsBase::Internal::NickNameDialog - - Name - 姓名 - - - E-mail - 电邮 - - - Alias - 别名 - - - Alias e-mail - 别名电邮 - - - Cannot open '%1': %2 - 无法打开'%1' : %2 - - - Nicknames - 昵称 - - - - VcsBase::SubmitFileModel - - State - 状态 - - - File - 文件 - - - - VcsBase::VcsBaseEditor - - Annotate "%1" - Annotate "%1" - - - Copy "%1" - 复制 "%1" - - - Describe change %1 - 描述改变%1 - - - - VcsBase::VcsBaseSubmitEditor - - Check message - 检查消息 - - - Insert name... - 插入名称... - - - Prompt to submit - 提交时弹出提示 - - - Submit Message Check failed - 提交信息检查失败 - - - Check Message - 检查消息 - - - Insert Name... - 插入姓名... - - - Submit Message Check Failed - 提交信息检查失败 - - - Executing %1 - 正在执行 %1 - - - - Executing [%1] %2 - 正在执行 [%1] %2 - - - The check script '%1' crashed. - 检查脚本 '%1' 崩溃. - - - Unable to open '%1': %2 - 无法打开 '%1': %2 - - - The check script '%1' could not be started: %2 - 检查脚本 '%1' 无法被启动: %2 - - - The check script '%1' timed out. - 检查脚本 '%1' 超时. - - - The check script '%1' could not be run: %2 - 检查脚本 '%1' 无法运行: %2 - - - The check script '%1' crashed - 检查脚本 '%1' 崩溃 - - - The check script returned exit code %1. - 检查脚本返回的退出代码%1。 - - - - VcsBaseSettingsPage - - Common - 共同 - - - - VcsManager - - Version Control - 版本控制 - - - - ViewDialog - - &Username: - 用户名(&U): - - - <Username> - <用户名> - - - &Description: - 说明(&D): - - - <Description> - <说明> - - - Patch 1 - Patch 1 - - - Patch 2 - Patch 2 - - - Protocol: - 协议: - - - Parts to send to server - 发送到服务器的部分 - - - Parts to Send to Server - 发送到服务器的部分 - - - - mainClass - - main - 主界面 - - - Text1: - 文本1: - - - N/A - N/A - - - Text2: - 文本2: - - - Text3: - 文本3: - - - - Utils::CheckableMessageBox - - Dialog - 对话框 - - - TextLabel - TextLabel - - - CheckBox - 复选框 - - - Do not ask again - 下次不再询问 - - - - PasteBinComSettingsWidget - - Form - 界面 - - - Server Prefix: - 服务器前缀: - - - Server prefix: - 服务器前缀: - - - <i>Note: The plugin will use this for posting as well as fetching.</i> - <i>注意: 插件将会使用此来获取和发布.</i> - - - - Cvs - - CVS Command: - CVS 命令: - - - CVS Root: - CVS 路径: - - - CVS - CVS - - - Configuration - 配置 - - - Miscellaneous - 其他 - - - Prompt on submit - 提交时弹出提示 - - - Describe all files matching commit id - 描述提交id匹配的所有文件 - - - Timeout: - 超时时间: - - - s - - - - CVS command: - CVS 命令: - - - CVS root: - CVS 路径: - - - Diff options: - Diff选项: - - - When checked, all files touched by a commit will be displayed when clicking on a revision number in the annotation view (retrieved via commit ID). Otherwise, only the respective file will be displayed. - 选中此项后,点击注释视图中(通过commit ID获取)的某个修订版本号时,所有该commit涉及的文件都将被显示。否则,仅显示对应的文件。 - - - - Debugger - - Form - 界面 - - - Gdb - Gdb - - - Symbian ARM gdb location: - Symbian ARM 用 Gdb 位置: - - - Communication - 通信 - - - Serial Port - 连续端口 - - - Bluetooth - Bluetooth - - - Port: - 端口: - - - Device: - 设备: - - - - Designer - - Form - 界面 - - - Embedding of the UI Class - UI类嵌入方式 - - - Aggregation as a pointer member - 以指针成员方式集成 - - - Aggregation - 集成 - - - Multiple Inheritance - 多重继承 - - - Code Generation - 生成代码 - - - Support for changing languages at runtime - 对运行时更改语言的支持 - - - Use Qt module name in #include-directive - 在#include指令中使用Qt模块名 - - - Multiple inheritance - 多重继承 - - - Add Qt version #ifdef for module names - 为模块名添加表示Qt版本的#ifdef - - - - Gitorious::Internal::GitoriousHostWidget - - ... - ... - - - <New Host> - <新主机> - - - Host - 主机 - - - Projects - 项目 - - - Description - 说明 - - - - Gitorious::Internal::GitoriousProjectWidget - - WizardPage - 向导页面 - - - Filter: - 过滤器: - - - ... - ... - - - Keep updating - 保持更新 - - - Project - 项目 - - - Description - 说明 - - - - Gitorious::Internal::GitoriousRepositoryWizardPage - - WizardPage - 向导页面 - - - Filter: - 过滤器: - - - ... - ... - - - Name - 名称 - - - Owner - 所有者 - - - Description - 说明 - - - Repository - 代码仓库 - - - Choose a repository of the project '%1'. - 为项目'%1'选择一个代码仓库。 - - - Mainline Repositories - 主线代码仓库 - - - Clones - 克隆 - - - Baseline Repositories - 基线代码仓库 - - - Shared Project Repositories - 共享的项目代码仓库 - - - Personal Repositories - 个人代码仓库 - - - - GeneralSettingsPage - - Form - 界面 - - - Font - 字体 - - - Family: - 字型: - - - Style: - 风格: - - - Size: - 大小: - - - Startup - 启动 - - - On context help: - 上下文相关帮助: - - - Show side-by-side if possible - 如果可能则并排显示 - - - Always show side-by-side - 总是并排显示 - - - On help start: - 帮助开始时: - - - Show my home page - 显示主页 - - - Show a blank page - 显示空白页 - - - Show my tabs from last session - 显示我最后关闭的页面 - - - Home Page: - 主页: - - - Use &Current Page - 使用当前页(&C) - - - Use &Blank Page - 使用空白页(&B) - - - Restore to Default - 重置为默认 - - - Help Bookmarks - 帮助书签 - - - Import... - 导入... - - - Export... - 导出... - - - Home page: - 主页: - - - Show Side-by-Side if Possible - 尽可能并排显示 - - - Always Show Side-by-Side - 总是并排显示 - - - Always Start Full Help - 总是从完整的帮助开始 - - - Show My Home Page - 显示我的主页 - - - Show a Blank Page - 显示空白页 - - - Show My Tabs from Last Session - 显示上一次会话的打开页面 - - - Behaviour - 行为 - - - Switch to editor context after last help page is closed. - 最后一个帮助页面关闭后切换到编辑模式。 - - - Return to editor on closing the last page - 关闭最后一页时返回编辑器 - - - Reset - 重置 - - - - ProjectExplorer::Internal::ProjectExplorerSettingsPageUi - - Build and Run - 构建和运行 - - - Save all files before Build - 在构建前保存所有文件 - - - Always build Project before Running - 在运行前总是构建 - - - Show Compiler Output on building - 构建时显示编译输出 - - - Use jom instead of nmake - 使用jom代替nmake - - - Current directory - 当前目录 - - - directoryButtonGroup - 目录按钮组 - - - Directory - 目录 - - - Projects Directory - 项目目录 - - - Save all files before build - 在构建前保存所有文件 - - - Always build project before running - 在运行前总是先构建 - - - Show compiler output on building - 构建时显示编译输出 - - - Clear old application output on a new run - 在新的应用运行之前清除旧的应用输出 - - - Always build project before deploying it - 在部署项目前总是先构建 - - - Always deploy project before running it - 在运行项目前总是先部署 - - - Word-wrap application output - 对程序的输出进行折行 - - - Open compiler output pane when building - 构建时打开编译输出窗口 - - - Open application output pane when running - 应用运行时打开应用程序输出窗口 - - - Ask before terminating the running application in response to clicking the stop button in Application Output. - 在应用输出界面点击停止按钮时,终止应用程序前先询问。 - - - Always ask before stopping applications - 总是在停止应用前询问 - - - Enabling this option ensures that the order of interleaved messages from stdout and stderr is preserved, at the cost of disabling highlighting of stderr. - 选中此项将保留stdout 和stderr 的交错信息的顺序,代价是禁用stderr的高亮效果。 - - - Merge stderr and stdout - 整合stderr stdout - - - Limit application output to - 限制程序输出到 - - - lines - - - - <i>jom</i> is a drop-in replacement for <i>nmake</i> which distributes the compilation process to multiple CPU cores. The latest binary is available at <a href="http://releases.qt-project.org/jom/">http://releases.qt-project.org/jom/</a>. Disable it if you experience problems with your builds. - <i>jom</i>是<i>nmake</i> 的简易替换,用于将编译进程分布到多个CPU核上运行。最新的二进制可以从<a href="http://releases.qt-project.org/jom/">http://releases.qt-project.org/jom/</a> 获得。禁用它可能影响您的构建体验。 - - - Open application output pane when debugging - 调试时打开程序的输入窗口 - - - - ProjectExplorer::Internal::ProjectWelcomePageWidget - - Form - 界面 - - - Manage Sessions... - 管理会话... - - - Create New Project... - 创建新项目... - - - Open Recent Project - 打开最近使用的项目 - - - Recent Projects - 最近使用的项目 - - - Resume Session - 恢复会话 - - - %1 (last session) - %1 (最后的会话) - - - %1 (current session) - %1 (当前会话) - - - New Project - 新建项目 - - - New Project... - 新项目... - - - Create Project... - 创建项目... - - - Recent Sessions - 当前会话 - - - Open Project... - 打开项目... - - - - Welcome - - Form - 界面 - - - - QmakeProjectManager - - Form - 界面 - - - The header file - 头文件 - - - &Sources - 源文件(&S) - - - Widget librar&y: - 控件库(&Y): - - - Widget project &file: - 控件项目文件(&F): - - - Widget h&eader file: - 控件头文件(&E): - - - The header file has to be specified in source code. - 头文件必须在源代码中指定。 - - - Widge&t source file: - 控件源文件(&T): - - - Widget &base class: - 控件的基类(&B): - - - QWidget - QWidget - - - Plugin class &name: - 插件类名(&N): - - - Plugin &header file: - 插件头文件(&H): - - - Plugin sou&rce file: - 插件源文件(&R): - - - Icon file: - 图标文件: - - - &Link library - 链接库(&L) - - - Create s&keleton - 创建代码框架(&K) - - - Include pro&ject - 包含项目(&J) - - - &Description - 说明(&D) - - - G&roup: - 组(&R): - - - &Tooltip: - 工具提示(&T): - - - W&hat's this: - 这是什么(&H): - - - The widget is a &container - 控件是个容器(&C) - - - Property defa&ults - 默认属性(&U) - - - dom&XML: - dom &XML: - - - Select Icon - 选择图标 - - - Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) - 图标文件 (*.png *.ico *.jpg *.xpm *.tif *.svg) - - - WizardPage - 向导页面 - - - Plugin and Collection Class Information - 插件和集合类的信息 - - - Specify the properties of the plugin library and the collection class. - 指定插件库和集合类的属性。 - - - Collection class: - 集合类: - - - Collection header file: - 集合类头文件: - - - Collection source file: - 集合类源文件: - - - Plugin name: - 插件名称: - - - Resource file: - 资源文件: - - - icons.qrc - icons.qrc - - - Custom Qt Widget Wizard - 自定义 Qt 控件向导 - - - Custom Widget List - 自定义控件列表 - - - Widget &Classes: - 控件类(&C): - - - Specify the list of custom widgets and their properties. - 指定自定义控件列表及其属性. - - - ... - ... - - - - Welcome - - Examples not installed - 例子没有被安装 - - - Open - 打开 - - - Tutorials - 教程 - - - Explore Qt Examples - 浏览Qt例子 - - - <b>Qt Creator - A quick tour</b> - <b>Qt Creator - 快速浏览</b> - - - Creating an address book - 创建一个通讯簿 - - - Understanding widgets - 理解控件 - - - Building with qmake - 使用qmake 构建 - - - The Qt Creator User Interface - Qt Creator 用户界面 - - - Building and Running an Example - 构建运行一个例子 - - - Creating a Qt C++ Application - 创建 一个Qt C++ 应用 - - - Creating a Mobile Application - 创建一个移动应用 - - - Creating a Qt Quick Application - 创建 一个Qt Quick 应用 - - - Choose an example... - 选择一个例子... - - - Choose an Example... - 选择一个例子... - - - &Location: - 路径(&L): - - - &Copy Project and Open - 复制项目并且打开(&C) - - - &Keep Project and Open - 保留项目并且打开(&K) - - - The specified location already exists. Please specify a valid location. - 指定路径已经存在,请指定有效路径。 - - - <a href='%1'>Details...</a> - <a href='%1'>详情...</a> - - - <a href='%1'>Take Tutorial</a> - <a href='%1'>学习教程</a> - - - New Project... - 新建项目... - - - Cmd - Shortcut key - Cmd - - - Alt - Shortcut key - Alt - - - Ctrl - Shortcut key - Ctrl - - - In the editor, <tt>F2</tt> follows symbol definition, <tt>Shift+F2</tt> toggles declaration and definition while <tt>F4</tt> toggles header file and source file. - 编辑器中, <tt>F2</tt> 追踪符号定义, <tt>Shift+F2</tt> 在声明和定义之间切换 <tt>F4</tt> 在头文件和源文件之间切换. - - - Examples not installed... - 例子没有被安装... - - - Create Project... - 创建项目... - - - Explore Qt C++ Examples - 浏览Qt C++例子 - - - Explore Qt Quick Examples - 浏览Qt Quick 例子 - - - Open Project... - 打开项目... - - - Examples - 示例 - - - Explore Qt C++ examples: - 探索Qt C++示例: - - - Examples Not Installed... - 示例未安装... - - - Explore Qt Quick examples: - 探索Qt Quick示例: - - - Explore Qt C++ mobile examples: - 探索Qt C++ 移动示例: - - - Featured - 特色 - - - - RemoteLinux - - Qt Location - Qt 路径 - - - Refresh - 更新 - - - S60 SDKs - S60 的 SDK - - - Error - 错误 - - - Add - 添加 - - - Change Qt version - 改变Qt版本 - - - Remove - 删除 - - - - TextEditor::Internal::ColorSchemeEdit - - Bold - 粗体 - - - Italic - 斜体 - - - Background: - 背景颜色: - - - Foreground: - 前景颜色: - - - Erase background - 清除背景色 - - - x - x - - - Erase foreground - 清除前景色 - - - - VcsBase::BaseCheckoutWizardPage - - WizardPage - 向导页面 - - - Checkout Directory: - 检出目录: - - - Path: - 路径: - - - Repository - 仓库 - - - The remote repository to check out. - 将要检出的远程仓库. - - - Branch: - 分支: - - - The development branch in the remote repository to check out. - 将要检出的远程仓库分支. - - - Retrieve list of branches in repository. - 获取仓库中的分支列表. - - - ... - ... - - - Working Copy - 工作拷贝 - - - The path in which the directory containing the checkout will be created. - 包含检出文件的文件夹将被创建. - - - Checkout Path: - 检出路径: - - - The local directory that will contain the code after the checkout. - 本地文件夹中将会包含检出代码. - - - Checkout path: - 检出路径: - - - Checkout directory: - 检出目录: - - - - Welcome - - <b>Forum Nokia</b><br /><font color='gray'>Mobile Application Support</font> - <b>诺基亚论坛</b><br /><font color='gray'>移动应用帮助</font> - - - <b>Qt GPL Support</b><br /><font color='gray'>Buy professional Qt support</font> - <b>Qt GPL 帮助</b><br /><font color='gray'>购买专业 Qt 帮助</font> - - - <b>Qt LGPL Support</b><br /><font color='gray'>Buy professional Qt support</font> - <b>Qt GPL 帮助</b><br /><font color='gray'>购买专业 Qt 帮助</font> - - - <b>Qt LGPL Support</b><br /><font color='gray'>Buy commercial Qt support</font> - <b>Qt LGPL 支持</b><br /><font color='gray'>购买商业 Qt 支持</font> - - - <b>Qt Centre</b><br /><font color='gray'>Community based Qt support</font> - <b>Qt Centre</b><br /><font color='gray'>基于Qt社区的帮助 </font> - - - <b>Forum Nokia</b><br /><font color='gray'>Mobile application support</font> - <b>诺基亚论坛</b><br /><font color='gray'>移动应用帮助</font> - - - <b>Qt DevNet</b><br /><font color='gray'>Qt Developer Resources</font> - <b>Qt开发网站</b><br /><font color='gray'>Qt Developer Resources</font> - - - <b>Qt Home</b><br /><font color='gray'>Qt by Nokia on the web</font> - <b>Qt 主页</b><br /><font color='gray'>诺基亚Qt主页</font> - - - <b>Qt Git Hosting</b><br /><font color='gray'>Participate in Qt development</font> - <b>Qt Git 主页</b><br /><font color='gray'>参与Qt开发</font> - - - <b>Qt Apps</b><br /><font color='gray'>Find free Qt-based apps</font> - <b>Qt 应用</b><br /><font color='gray'>寻找基于Qt的免费应用</font> - - - News From the Qt Labs - Qt Labs的新闻 - - - Qt Support Sites - Qt 技术支持站点 - - - Qt Links - Qt 链接 - - - Qt Websites - Qt Web站点 - - - Qt Home - Qt 主页 - - - Qt Labs - Qt 实验室 - - - Qt Git Hosting - Qt Git 主机 - - - Qt Centre - Qt 中心 - - - Qt Apps - Qt Apps - - - Qt for Symbian at Forum Nokia - 诺基亚论坛---Qt for Symbian - - - Help us make Qt Creator even better - 协助我们使Qt Creator 更加完美 - - - Feedback - 反馈 - - - - Utils::DetailsButton - - Show Details - 显示详细信息 - - - Details - 详情 - - - - OpenWith::Editors - - Plain Text Editor - 普通文本编辑器 - - - Binary Editor - 二进制编辑器 - - - C++ Editor - C++ 编辑器 - - - .pro File Editor - .pro 文件编辑器 - - - .files Editor - .files 编辑器 - - - QMLJS Editor - QMLJS 编辑器 - - - .qmlproject Editor - .qmlproject 编辑器 - - - Qt Designer - Qt设计师 - - - Qt Linguist - Qt语言家 - - - Resource Editor - 资源编辑器 - - - GLSL Editor - GLSL 编辑器 - - - - Core::Internal::SettingsDialog - - Preferences - 首选项 - - - Options - 选项 - - - - CodePaster - - No Server defined in the CodePaster preferences. - 在CodePaster首选项中没有定义服务器。 - - - No Server defined in the CodePaster options. - 在CodePaster选项中没有定义服务器。 - - - No such paste - 没有相关粘贴 - - - CodePaster - CodePaster - - - <i>Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com).</i> - <i>注意: 为CodePaster服务指定主机名,不包括任何协议前缀。(如 codepaster.mycompany.com).</i> - - - Server: - 服务器: - - - Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). - 注释: 为CodePaster服务指定主机名,不包括任何协议前缀。(如 codepaster.mycompany.com). - - - - PasteBinDotComProtocol - - Error during paste - 粘贴错误 - - - - PasteBinDotComSettings - - Pastebin.com - Pastebin.com - - - Code Pasting - 代码粘贴 - - - - PasteView - - Paste - 粘贴 - - - <Username> - <用户名> - - - <Description> - <说明> - - - - CppTools::Internal::CppCurrentDocumentFilter - - Methods in current Document - 当前文档中的方法 - - - Methods in Current Document - 当前文档中的方法 - - - - CppTools::Internal::CppFileSettingsWidget - - /************************************************************************** -** Qt Creator license header template -** Special keywords: %USER% %DATE% %YEAR% -** Environment variables: %$VARIABLE% -** To protect a percent sign, use '%%'. -**************************************************************************/ - - /************************************************************************** -** Qt Creator license header template -** Special keywords: %USER% %DATE% %YEAR% -** Environment variables: %$VARIABLE% -** To protect a percent sign, use '%%'. -**************************************************************************/ - - - - Edit... - 编辑... - - - Choose Location for New License Template File - 为新的版权许可模板文件选择一个存储位置 - - - Choose a location for the new license template file - 为新的许可模板文件选择一个存储位置 - - - Edit - 编辑 - - - Template write error - 模板写入错误 - - - Cannot write to %1: %2 - 无法写入%1 : %2 - - - - CppTools::Internal::CppFindReferences - - Searching... - 搜索中... - - - C++ Usages: - C++ 使用: - - - Searching - 搜索中 - - - C++ Macro Usages: - C++ 宏的使用: - - - - Cvs - - Checks out a project from a CVS repository. - 从CVS仓库中检出项目。 - - - Checks out a CVS repository and tries to load the contained project. - 检出一个CVS代码仓库并载入其中的项目。 - - - CVS Checkout - CVS Checkout - - - Location - 位置 - - - Specify repository and path. - 指定仓库和路径。 - - - Repository: - 代码仓库: - - - Parsing of the log output failed - 解析日志输出失败 - - - &CVS - CVS(&C) - - - Add - 添加 - - - Add "%1" - 添加"%1" - - - Alt+C,Alt+A - Alt+C,Alt+A - - - Delete - 删除 - - - Delete "%1" - "%1" 删除 - - - Revert - 恢复 - - - Revert "%1" - 恢复"%1" - - - Diff Project - Diff 项目 - - - Diff Project "%1" - Diff 项目 "%1" - - - Diff Current File - Diff 当前文件 - - - Diff "%1" - Diff "%1" - - - Alt+C,Alt+D - Alt+C,Alt+D - - - Commit All Files - 提交所有文件 - - - Commit Current File - 提交当前文件 - - - Commit "%1" - 提交 "%1" - - - Alt+C,Alt+C - Alt+C,Alt+C - - - Filelog Current File - Filelog当前文件 - - - Cannot find repository for '%1' - 无法为'%1'找到仓库 - - - Meta+C,Meta+D - Meta+C,Meta+D - - - Filelog "%1" - Filelog "%1" - - - Annotate Current File - Annotate 当前文件 - - - Annotate "%1" - Annotate "%1" - - - Meta+C,Meta+A - Meta+C,Meta+A - - - Meta+C,Meta+C - Meta+C,Meta+C - - - Delete... - 删除... - - - Delete "%1"... - 删除 "%1"... - - - Revert... - 还原... - - - Revert "%1"... - 还原 "%1"... - - - Edit - 编辑 - - - Edit "%1" - 编辑"%1" - - - Unedit - Unedit - - - Unedit "%1" - Unedit "%1" - - - Unedit Repository - Unedit代码仓库 - - - Project Status - 项目状态 - - - Status of Project "%1" - 项目 "%1" 的状态 - - - Log Project - Log 项目 - - - Log Project "%1" - Log 项目 "%1" - - - Update Project - 更新项目 - - - Update Project "%1" - 更新项目 "%1" - - - Commit Project - Commit 项目 - - - Commit Project "%1" - Commit 项目 "%1" - - - Diff Repository - Diff 仓库 - - - Repository Status - 仓库状态 - - - Repository Log - 仓库日志 - - - Update Repository - Update 仓库 - - - Revert Repository... - 还原仓库... - - - Commit - Commit - - - Diff &Selected Files - Diff 选中的文件(&S) - - - Diff Selected Files - Diff 选中的文件 - - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - - - Closing CVS Editor - 关闭CVS编辑器 - - - Do you want to commit the change? - 您确定要提交此更改吗? - - - The commit message check failed. Do you want to commit the change? - Commit 信息检查失败,您想要提交修改吗? - - - The files do not differ. - 文件没有变化。 - - - Revert repository - 还原仓库 - - - Revert all pending changes to the repository? - 还原所有对代码仓库的未完成的修改吗? - - - Would you like to revert all changes to the repository? - 您想要还原对仓库的所有修改吗? - - - Revert failed: %1 - 还原失败: %1 - - - The file '%1' could not be deleted. - 文件 '%1' 无法被删除。 - - - The file has been changed. Do you want to revert it? - 文件被改变,您想要还原吗? - - - Another commit is currently being executed. - 另一个提交正在被执行。 - - - There are no modified files. - 没有被更改的文件。 - - - Cannot create temporary file: %1 - 无法创建临时文件: %1 - - - Would you like to discard your changes to the repository '%1'? - 您想要放弃对仓库 '%1' 的修改吗? - - - Would you like to discard your changes to the file '%1'? - 您想要放弃对文件 '%1' 的修改吗? - - - Project status - 项目状态 - - - Repository status - 仓库状态 - - - The initial revision %1 cannot be described. - 初始修订版本 %1 无法被描述。 - - - Could not find commits of id '%1' on %2. - %2 is a date - 无法找到在 %2 的id为 '%1'的提交。 - - - Executing: %1 %2 - - 执行中: %1 %2 - - - - Executing in %1: %2 %3 - - 正在 %1 中执行: %2 %3 - - - - No cvs executable specified! - 未指定cvs的执行档! - - - The process terminated with exit code %1. - 进程终止,退出代码 %1。 - - - The process terminated abnormally. - 进程异常终止。 - - - Could not start cvs '%1'. Please check your settings in the preferences. - 无法启动 cvs '%1'.请检查首选项中的设置。 - - - CVS did not respond within timeout limit (%1 ms). - CVS 在超时时间 (%1 毫秒)内无响应。 - - - Added - 已添加 - - - Removed - 已删除 - - - Modified - 已更改 - - - CVS Command - CVS 命令 - - - - NameDemanglerPrivate - - Premature end of input - 过早的结束输入 - - - Invalid encoding - 无效编码 - - - Invalid name - 无效名称 - - - Invalid nested-name - 无效嵌套名称 - - - Invalid template args - 无效模板参数 - - - Invalid template-param - 无效模板参数 - - - Invalid qualifiers: unexpected 'volatile' - 无效的限定词:未预期的'volatile' - - - Invalid qualifiers: 'const' appears twice - 无效的限定词:'const'出现了两次 - - - Invalid non-negative number - 无效的非负数 - - - Invalid template-arg - 无效模板参数 - - - Invalid expression - 无效的表达式 - - - Invalid primary expression - 无效的主表达式 - - - Invalid expr-primary - 无效的主表达式 - - - Invalid type - 无效类型 - - - Invalid built-in type - 无效的内置类型 - - - Invalid builtin-type - 无效的内置类型 - - - Invalid function type - 无效的函数类型 - - - Invalid unqualified-name - 无效的未限定的名称 - - - Invalid operator-name '%s' - 无效的运算符名称 '%s' - - - Invalid array-type - 无效的数组类型 - - - Invalid pointer-to-member-type - 无效的指针成员类型 - - - Invalid substitution - 无效置换 - - - Invalid substitution: element %1 was requested, but there are only %2 - 无效置换:需要元素 %1 , 但是只有 %2 - - - Invalid substitution: There are no elements - 无效置换:没有元素 - - - Invalid special-name - 无效特殊名称 - - - Invalid local-name - 无效本地名称 - - - Invalid discriminator - 无效的鉴别器 - - - Invalid ctor-dtor-name - ctor- constructor, dtor- destructor - 无效的构造函数析构函数名 - - - Invalid call-offset - 无效的调用位移 - - - Invalid v-offset - v-> vertical? - 无效的v位移 - - - Invalid digit - 无效数字 - - - At position %1: - 在位置 %1: - - - - Designer - - untitled - 未命名 - - - - Git - - Clones a project from a git repository. - 从 Git 仓库中 clone 一个项目。 - - - Clones a Git repository and tries to load the contained project. - 克隆一个Git仓库并尝试载入其中的项目。 - - - Git Repository Clone - Git仓库的克隆 - - - Location - 位置 - - - Specify repository URL, checkout directory and path. - 指定代码仓库的URL,检出目录和路径。 - - - Clone URL: - 克隆 URL: - - - Delete master branch - 删除master分支 - - - Delete the master branch after checking out the repository. - 检出代码仓库后删除master分支。 - - - - Gitorious::Internal::Gitorious - - Error parsing reply from '%1': %2 - 解析 '%1' 的回应时发生错误: %2 - - - Request failed for '%1': %2 - %1 is a host name - 请求 '%1' 失败: %2 - - - Open source projects that use Git. - 打开使用 Git 的源项目。 - - - - Gitorious::Internal::GitoriousCloneWizard - - Clones a project from a Gitorious repository. - 从 Gitorious 仓库克隆一个项目。 - - - Clones a Gitorious repository and tries to load the contained project. - 克隆一个Git仓库并尝试载入其中的项目。 - - - Gitorious Repository Clone - Git仓库的克隆 - - - - Gitorious::Internal::GitoriousHostWizardPage - - Host - 主机 - - - Select a host. - 选择主机。 - - - - Gitorious::Internal::GitoriousProjectWizardPage - - Project - 项目 - - - Choose a project from '%1' - 从'%1'选择一个项目 - - - - Help - - General settings - 基本设置 - - - General Settings - 基本设定 - - - Open Image - 打开图片 - - - General - 概要 - - - Import Bookmarks - 导入书签 - - - Files (*.xbel) - 文件 (*.xbel) - - - Cannot import bookmarks. - 无法导入书签。 - - - There was an error while importing bookmarks! - 导入书签时发生错误! - - - Save File - 保存文件 - - - Form - 界面 - - - Font - 字体 - - - Family: - 字型: - - - Style: - 风格: - - - Size: - 字号: - - - Note: This setting takes effect only if the HTML file does not use a style sheet. - 注意: 该设定仅在HTML文件不使用样式表时有效。 - - - Startup - 启动 - - - On context help: - 上下文相关帮助: - - - Show Side-by-Side if Possible - 尽可能并排显示 - - - Always Show Side-by-Side - 总是并排显示 - - - Always Start Full Help - 总是打开完整的帮助 - - - Always Show Help in External Window - 总是在外部窗口中显示帮助 - - - On help start: - 帮助开始时: - - - Show My Home Page - 显示我的主页 - - - Show a Blank Page - 显示空白页 - - - Show My Tabs from Last Session - 显示上一次会话的打开页面 - - - Home page: - 主页: - - - Use &Current Page - 使用当前页(&C) - - - Use &Blank Page - 使用空白页(&B) - - - Reset to default - 重置为默认 - - - Reset - 重置 - - - Help Bookmarks - 帮助书签 - - - Import... - 导入... - - - Export... - 导出... - - - Behaviour - 行为 - - - Switch to editor context after last help page is closed. - 最后一个帮助页面关闭后切换到编辑模式。 - - - Return to editor on closing the last page - 关闭最后一页时返回编辑器 - - - The file is not an XBEL version 1.0 file. - 此文件不是XBEL 1.0文件。 - - - Unknown title - 未知标题 - - - - ProjectExplorer::ApplicationLauncher - - Failed to start program. Path or permissions wrong? - 启动程序失败,路径或者权限错误? - - - The program has unexpectedly finished. - 程序异常结束。 - - - Some error has occurred while running the program. - 运行程序期间发生了一些错误。 - - - Cannot retrieve debugging output. - - 无法获取调试输出. - - - - - ProjectExplorer::Internal::LocalApplicationRunControlFactory - - Run - 运行 - - - - ProjectExplorer::Internal::LocalApplicationRunControl - - Starting %1... - %1 启动中... - - - %1 exited with code %2 - %1 退出,代码: %2 - - - No executable specified. - - 未指定执行档。 - - - - Starting %1... - - %1 启动中... - - - - %1 exited with code %2 - - %1 退出,退出代码: %2 - - - - - ProjectExplorer::DebuggingHelperLibrary - - The target directory %1 could not be created. - 目标目录 %1 无法被创建。 - - - The existing file %1 could not be removed. - 现存文件 %1 无法被删除。 - - - The file %1 could not be copied to %2. - 文件 %1 无法被复制到 %2 。 - - - The debugger helpers could not be built in any of the directories: -- %1 - -Reason: %2 - 在以下任何目录下调试器助手都无法被构建: -- %1 - -原因: %2 - - - GDB helper - GDB助手 - - - Building debugging helper library in %1 - - 在 %1构建调试助手库 - - - - Running %1 %2... - - 正在运行 %1 %2... - - - - %1 not found in PATH - - %1 在 PATH中未找到 - - - - Running %1 ... - - 正在运行%1... - - - - - ProjectExplorer::Internal::ProjectWelcomePage - - Develop - 开发 - - - - ProjectExplorer::Internal::ActiveConfigurationWidget - - Active run configuration - 激活运行配置 - - - - ProjectExplorer::Internal::ProjectLabel - - Edit Project Settings for Project <b>%1</b> - 为项目编辑项目设置<b>%1</b> - - - No Project loaded - 没有载入的项目 - - - - ProjectExplorer::Internal::ProjectPushButton - - Select Project - 选择项目 - - - - ToolChain - - GCC - GCC - - - Intel C++ Compiler (Linux) - Intel C++ 编译器 (Linux) - - - Microsoft Visual C++ - Microsoft Visual C++ - - - Windows CE - Windows CE - - - WINSCW - WINSCW - - - GCCE - GCCE - - - RVCT (ARMV5) - RVCT (ARMV5) - - - RVCT (ARMV6) - RVCT (ARMV6) - - - GCC for Maemo - Maemo的GCC - - - Other - 其他 - - - <Invalid> - <无效> - - - <Unknown> - <未知> - - - - QmlEditor::Internal::ScriptEditor - - <Select Symbol> - <选择标记> - - - Rename... - 重命名... - - - New id: - 新ID: - - - Rename id '%1'... - 重命名ID '%1' ... - - - - QmlEditor::Internal::QmlEditorPlugin - - Qt - Qt - - - Creates a Qt QML file. - 创建一个Qt QML 文件。 - - - Qt QML File - Qt QML 文件 - - - - QmlEditor::Internal::QmlModelManager - - Indexing - 索引中 - - - - QmakeProjectManager - - <New class> - <新类> - - - Confirm Delete - 确认删除 - - - Delete class %1 from list? - 从列表中删除类 %1 吗? - - - Qt4 Designer Custom Widget - Qt4 设计师自定义控件 - - - Creates a Qt4 Designer Custom Widget or a Custom Widget Collection. - 创建一个Qt4设计师自定义控件或者一个自定义容器控件 - - - Qt Custom Designer Widget - Qt4 设计师自定义控件 - - - Creates a Qt Custom Designer Widget or a Custom Widget Collection. - 创建一个Qt设计师自定义控件或者一个自定义控件集合。 - - - This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. - 本向导将创建一个Qt4设计师自定义控件或者一个Qt4设计师自定义控件集合项目。 - - - Custom Widgets - 自定义控件 - - - Plugin Details - 插件详细信息 - - - Cannot open icon file %1. - 无法打开图标文件 %1. - - - Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. - 不支持在一个项目中(%3)创建多个控件库 (%1, %2). - - - Cannot open %1: %2 - 无法打开%1 : %2 - - - - Welcome - - Getting Started - 入门 - - - - RemoteLinux - - QtS60DeviceRunConfiguration - Qt S60 设备运行配置 - - - %1 on Symbian Device - S60 device runconfiguration default display name, %1 is base pro-File name - Symbian 设备上的 %1 - - - Run on Symbian device - S60 device runconfiguration default display name (no profile set) - 在Symbian设备上运行 - - - - RemoteLinux - - Device: - 设备: - - - Debugger: - 调试器: - - - Installation file: - 安装文件: - - - Device on serial port: - 在串口上的设备: - - - Install File: - 安装文件: - - - Device on Serial Port: - 在连续端口上的设备: - - - Queries the device for information - 查询设备信息 - - - Choose key file (.key / .pem) - 选择密钥文件(.key / .pem) - - - <No Device> - Summary text of S60 device run configuration - <没有设备> - - - (custom certificate) - (自定义证书) - - - (self-signed certificate) - (自己签名的证书) - - - Summary: Run on '%1' %2 - 概要:在 '%1'执行 %2 - - - Connecting... - 正在连接... - - - - RemoteLinux - - Deploying - 部署中 - - - %1 %2 - %1 %2 - - - An error occurred while creating the package. - 创建包的时候发生错误 - - - Unable to remove existing file '%1': %2 - 现存文件 '%1' 无法被删除: %2 - - - Unable to rename file '%1' to '%2': %3 - 无法重命名文件 '%1' 到 '%2': %3 - - - Renaming new package '%1' to '%2' - 正在重命名新软件包 '%1' 到 '%2‘ - - - Removing old package '%1' - 正在删除旧软件包 '%1' - - - Package file not found - 无法找到软件包文件 - - - Failed to find package '%1': %2 - 找不到软件包 '%1' : %2 - - - Package: %1 -Deploying application to '%2'... - 包: %1 -部署应用到 '%2'... - - - Could not connect to phone on port '%1': %2 -Check if the phone is connected and App TRK is running. - 无法从端口 '%1' 连接到电话: %2 -检查电话是否连接 并且 App TRK 已经运行. - - - Could not create file %1 on device: %2 - 无法在设备上创建文件 %1: %2 - - - Could not write to file %1 on device: %2 - 无法在设备上写入文件 %1: %2 - - - Could not close file %1 on device: %2. It will be closed when App TRK is closed. - 无法在设备上关闭文件 %1 : %2 , 它将随App TRK关闭而关闭. - - - Could not connect to App TRK on device: %1. Restarting App TRK might help. - 无法在设备上连接App TRK: %1. 重新启动App TRK也许会有帮助. - - - Copying installation file... - 复制安装文件... - - - Copying install file... - 复制安装文件... - - - The device '%1' has been disconnected - 设备 '%1' 的连接已经被断开 - - - %1% copied. - %1% 被复制。 - - - Installing application... - 正在安装应用... - - - Could not install from package %1 on device: %2 - 无法从安装包%1 安装到设备: %2 - - - Please start App TRK on %1. - 请在%1上启动 App TRK. - - - %1 has unexpectedly finished. - %1 异常中止 - - - An error has occurred while running %1. - 运行%1 时发生了错误 - - - - RemoteLinux - - There is no device plugged in. - 没有插入设备. - - - Executable file: %1 - 可执行文件:%1 - - - Waiting for App TRK - 等待 App TRK - - - Starting application... - 正在启动应用... - - - Application running with pid %1. - 应用程序运行pid:%1. - - - Could not start application: %1 - 无法启动应用: %1 - - - Warning: Cannot locate the symbol file belonging to %1. - 警告:无法打开属于%1的符号文件. - - - Warning: Cannot locate the symbol file belonging to %1. - - 警告:无法打开属于%1的符号文件. - - - Launching debugger... - - 启动调试器... - - - - Debugging - 调试 - - - Launching debugger... - 启动调试器... - - - Debugging finished. - 调试完成. - - - - RemoteLinux - - No Qt installed - 没有安装Qt - - - Executable: - 执行档: - - - - RemoteLinux - - %1 in Symbian Emulator - S60 emulator run configuration default display name, %1 is base pro-File name ----------- -S60 emulator run configuration default display name, %1 is base pro-File name - %1 在Symbian 模拟器中 - - - Run on Symbian Emulator - S60 emulator run configuration default display name (no pro-file name) - 在Symbian模拟器中运行 - - - Qt Symbian Emulator RunConfiguration - Qt Symbian 模拟器运行配置 - - - - RemoteLinux - - Starting %1... - 启动%1 ... - - - Starting %1... - - %1 启动中... - - - - [Qt Message] - [Qt 消息] - - - %1 exited with code %2 - - %1 退出,退出代码: %2 - {1 ?} - - - %1 exited with code %2 - %1 退出,退出代码: %2 - - - - RemoteLinux - - Run in Emulator - 在模拟器中执行 - - - Run on Device - 在设备上执行 - - - Debug on Device - 在设备上调试 - - - - QmakeProjectManager - - Using Default Qt Version - 使用默认Qt版本 - - - Using Qt Version "%1" - 使用Qt版本 "%1" - - - New configuration - 新建配置 - - - New Configuration Name: - 新配置名称: - - - Qmake based build - 基于Qmake的构建 - - - New Configuration - 新配置 - - - New configuration name: - 新配置名称: - - - %1 Debug - Debug build configuration. We recommend not translating it. - %1 Debug - - - %1 Release - Release build configuration. We recommend not translating it. - %1 Release - - - Debug - Name of a debug build configuration to created by a project wizard. We recommend not translating it. - better to leave it as it is - Debug - - - Release - Name of a release build configuration to be created by a project wizard. We recommend not translating it. - Release - - - - Subversion::Internal::CheckoutWizard - - Checks out a Subversion repository and tries to load the contained project. - 从Subversion仓库中检出项目并尝试载入其中的项目。 - - - Subversion Checkout - Subversion Checkout - - - - Subversion::Internal::CheckoutWizardPage - - Location - 位置 - - - Specify repository URL, checkout directory and path. - 指定代码仓库的URL,检出目录和路径。 - - - Repository: - 代码仓库: - - - - TextEditor::Internal::ColorScheme - - Not a color scheme file. - 不是一个配色方案文件. - - - - TextEditor::Internal::FontSettings - - Customized - 自定义 - - - - VcsBase::BaseCheckoutWizard - - Cannot Open Project - 无法打开项目 - - - Failed to open project in '%1'. - 打开项目'%1' 失败。 - - - Could not find any project files matching (%1) in the directory '%2'. - 在目录 '%2' 中找不到任何项目文件匹配 (%1)。 - - - The Project Explorer is not available. - 项目浏览器不可用。 - - - '%1' does not exist. - '%1'不存在。 - - - Unable to open the project '%1'. - 无法打开项目 '%1'。 - - - - VcsBase::ProcessCheckoutJob - - Unable to start %1: %2 - 无法启动%1 : %2 - - - The process terminated with exit code %1. - 进程终止,退出代码 %1 . - - - The process returned exit code %1. - 进程返回了退出代码 %1 . - - - The process terminated in an abnormal way. - 进程异常终止。 - - - Stopping... - 正在停止... - - - - VcsBase::Internal::CheckoutProgressWizardPage - - Checkout - Checkout - - - No job running, please abort. - 没有运行中的任务,请退出。 - - - Checkout started... - 开始检出代码... - - - Failed. - 失败. - - - Succeeded. - 成功. - - - - VcsBase::VcsBaseOutputWindow - - Open "%1" - 打开 "%1" - - - Clear - 清空 - - - Version Control - 版本控制 - - - Executing: %1 %2 - - 执行:%1 %2 - - - - Executing in %1: %2 %3 - - 正在 %1 中执行: %2 %3 - - - - - Welcome - - Community - 社区 - - - News && Support - 新闻与支持 - - - - MimeType - - unknown - 不明 - - - CMake Project file - CMake 项目文件 - - - C Source file - C 源文件 - - - C Header file - C 头文件 - - - C++ Header file - C++ 头文件 - - - C++ header - C++ 头文件 - - - C++ Source file - C++ 源文件 - - - C++ source code - C++ 源代码 - - - Objective-C source code - Objective-C 源代码 - - - CVS submit template - CVS 提交模板 - - - Qt Designer file - Qt 设计师文件 - - - Generic Qt Creator Project file - 通用 Qt Creator 项目文件 - - - Generic Project Files - 通用项目文件 - - - Generic Project Include Paths - 通用项目包含路径 - - - Generic Project Configuration File - 通用项目配置文件 - - - Perforce submit template - Perforce 提交模板 - - - QML file - QML 文件 - - - Qml Project file - Qml 项目文件 - - - Qt Project file - Qt 项目文件 - - - Qt Project include file - Qt 项目包含文件 - - - message catalog - 消息目录 - - - Qt Script file - Qt 脚本文件 - - - Automake based Makefile - 基于automake的Makefile - - - ClearCase submit template - ClearCase 提交模板 - - - GLSL Shader file - GLSL 着色器文件 - - - GLSL Fragment Shader file - GLSL 片段着色器文件 - - - GLSL/ES Fragment Shader file - GLSL/ES 片段着色器文件 - - - GLSL Vertex Shader file - GLSL 顶点着色器文件 - - - GLSL/ES Vertex Shader file - GLSL/ES 顶点着色器文件 - - - GLSL/ES Geometry Shader file - GLSL/ES 几何着色器文件 - - - BMP image - BMP 图像 - - - GIF image - GIF 图像 - - - ICO image - ICO 图像 - - - JPEG image - JPEG 图像 - - - MNG video - MNG 视频 - - - PBM image - PBM 图像 - - - PGM image - PGM 图像 - - - PNG image - PNG 图像 - - - PPM image - PPM 图像 - - - SVG image - SVG 图像 - - - TIFF image - TIFF 图像 - - - XBM image - XBM 图像 - - - XPM image - XPM 图像 - - - JSON file - JSON文件 - - - QML Project file - QML 项目文件 - - - Qt Project feature file - Qt 项目特征文件 - - - Qt Resource file - Qt 资源文件 - - - Subversion submit template - Subversion 提交模板 - - - Qt Creator task list file - Qt Creator任务列表文件 - - - Plain text document - 普通文本文档 - - - XML document - XML 文档 - - - Assembler - 汇编程序 - - - Qt Creator Generic Assembler - Qt Creator通用汇编程序 - - - Differences between files - 文件之间的差异 - - - - QmlParser - - Illegal character - 非法字符 - - - Unclosed string at end of line - 在行尾有未关闭的字符串 - - - Illegal escape squence - 非法的转义序列 - - - Illegal unicode escape sequence - 非法的unicode转义序列 - - - Illegal escape sequence - 非法的转义序列 - - - Unclosed comment at end of file - 在文件末有未关闭的注释 - - - Illegal syntax for exponential number - 指数语法无效 - - - Identifier cannot start with numeric literal - 标识符不能以数字打头 - - - Unterminated regular expression literal - 正则表达式未结束 - - - Invalid regular expression flag '%0' - 无效的正则表达式标志 '%0' - - - Unterminated regular expression backslash sequence - 正则表达式反斜杠序列未结束 - - - Unterminated regular expression class - 正则表达式类未结束 - - - Unexpected token `%1' - 未预料到的符号 `%1' - - - Expected token `%1' - 预计符号 `%1' - - - Syntax error - 语法错误 - - - - RemoteLinux - - Id: - ID: - - - Name: - 名称: - - - EPOC: - EPOC: - - - Tools: - 工具: - - - Qt: - Qt: - - - - trk::BluetoothListener - - %1: Stopping listener %2... - %1: 停止监听器 %2... - - - %1: Starting Bluetooth listener %2... - %1: 启动蓝牙监听器 %2... - - - Unable to run '%1': %2 - 无法运行 '%1': %2 - - - %1: Bluetooth listener running (%2). - %1: 蓝牙监听器运行中 (%2). - - - %1: Process %2 terminated with exit code %3. - %1: 进程 %2 终止,退出代码 %3. - - - %1: Process %2 crashed. - %1: 进程 %2 崩溃. - - - %1: Process error %2: %3 - %1: 进程错误 %2: %3 - - - - trk::promptStartCommunication - - Connection on %1 canceled. - %1 上的连接被取消. - - - Waiting for App TRK - 等待 App TRK - - - Waiting for App TRK to start on %1... - 等待在 %1 启动 App TRK ... - - - Waiting for Bluetooth Connection - 等待蓝牙连接 - - - Connecting to %1... - 正在连接到%1... - - - - trk::BaseCommunicationStarter - - %1: timed out after %n attempts using an interval of %2ms. - - %1: 在尝试 %n 次,每次间隔%2毫秒之后 超时. - - - - %1: Connection attempt %2 succeeded. - %1: 连接尝试 %2 成功. - - - %1: Connection attempt %2 failed: %3 (retrying)... - %1: 连接尝试 %2 失败: %3 (正在重试)... - - - - trk::Session - - CPU: v%1.%2%3%4 - CPU description of an S60 device %1 major verison, %2 minor version %3 real name of major verison, %4 real name of minor version - CPU: v%1.%2%3%4 - - - App TRK: v%1.%2 TRK protocol: v%3.%4 - App TRK: v%1.%2 TRK 协议: v%3.%4 - - - %1, %2%3%4, %5 - s60description description of an S60 device %1 CPU description, %2 endianness %3 default type size (if any), %4 float size (if any) %5 TRK version - %1, %2%3%4, %5 - - - , type size: %1 - will be inserted into s60description - , 类型尺寸: %1 - - - , float size: %1 - will be inserted into s60description - , 浮点型尺寸: %1 - - - - Mercurial - - General Information - 概要信息 - - - Repository: - 代码仓库: - - - repository - 代码仓库 - - - Branch: - 分支: - - - branch - 分支 - - - Commit Information - 提交信息 - - - Author: - 作者: - - - Email: - 电子邮件: - - - Form - 界面 - - - Configuration - 配置 - - - Command: - 命令: - - - User - 用户 - - - Username to use by default on commit. - 提交时默认使用的用户名。 - - - Default username: - 默认用户名: - - - Email to use by default on commit. - 提交时默认使用的 Email。 - - - Default Email: - 默认 Email: - - - Miscellaneous - 其他 - - - The number of recent commit logs to show, choose 0 to see all enteries - 要显示的最近提交日志的数目,选择 0 查看所有内容 - - - Timeout: - 超时时间: - - - s - - - - Prompt on submit - 提交时弹出提示 - - - Mercurial - Mercurial - - - Log count: - 日志计数: - - - Default email: - 默认电子邮件: - - - The number of recent commit logs to show, choose 0 to see all entries. - 要显示的最近提交的日志数, 选择0 来查看所有项. - - - Revert - 还原 - - - Specify a revision other than the default? - 指定一个修订版本而不用默认版本? - - - Revision: - 修订版本: - - - Dialog - 对话框 - - - Local filesystem: - 本地文件系统: - - - e.g. https://[user[:pass]@]host[:port]/[path] - 例如 https://[用户名[:密码]@]主机名[:端口]/[路径] - - - Specify Url: - 指定 Url: - - - Default Location - 默认位置 - - - Specify URL: - 指定URL: - - - - QmakeProjectManager - - Class name: - 类名: - - - Type: - 类型: - - - Test - 测试 - - - Benchmark - 性能测试 - - - File: - 文件: - - - Generate initialization and cleanup code - 生成初始化和清理代码 - - - Test slot: - 测试槽: - - - Requires QApplication - 需要 QApplication - - - Use a test data set - 使用测试数据集 - - - Specify basic information about the test class for which you want to generate skeleton source code file. - 指定您要为之创建源码文件的测试类的基本信息。 - - - Test Class Information - 测试类信息 - - - - CMakeProjectManager - - Run CMake target - 执行 CMake 目标 - - - The executable is not built by the current build configuration - 这个可执行档不是使用当前的构建配置构建出来的 - - - (disabled) - (禁用) - - - - Core - - Qt Files and Classes - Qt 文件和类 - - - Qt - Qt - - - Environment - 环境 - - - All Files (*) - 所有文件 (*) - - - Clear Menu - 清除菜单 - - - - CodePaster - - Code Pasting - 代码粘贴 - - - - Debugger - - Cdb - Cdb - - - CDB - CDB - - - - Mercurial - - Clone a Mercurial repository - 克隆一个 Mercurial 仓库 - - - Clones a Mercurial repository and tries to load the contained project. - 克隆一个Mercurial仓库并载入其中的项目。 - - - Mercurial Clone - Mercurial 克隆 - - - Location - 位置 - - - Specify repository URL, checkout directory and path. - 指定代码仓库的URL,检出目录和路径。 - - - Clone URL: - 克隆 URL: - - - Commit Editor - Commit编辑器 - - - Unable to find parent revisions of %1 in %2: %3 - 无法在 %2 找到 %1 的父修订版本: %3 - - - Cannot parse output: %1 - 无法解析输出: %1 - - - Hg incoming %1 - no idea what it is - Hg 正在传入 %1 - - - Hg outgoing %1 - Hg 正在传出 %1 - - - Working... - 工作中... - - - Executing: %1 %2 - - 执行中: %1 %2 - - - - Unable to start mercurial process '%1': %2 - 无法启动 mercurial 进程 '%1': %2 - - - Timed out after %1s waiting for mercurial process to finish. - 等待 mercurial 进程结束,等待%1 秒后超时。 - - - Annotate Current File - Annotate 当前文件 - - - Annotate "%1" - Annotate "%1" - - - Diff Current File - Diff 当前文件 - - - Diff "%1" - Diff "%1" - - - Alt+H,Alt+D - Alt+H,Alt+D - - - Meta+H,Meta+D - Meta+H,Meta+D - - - Log Current File - Log 当前文件 - - - Log "%1" - Log "%1" - - - Alt+H,Alt+L - Alt+H,Alt+L - - - Meta+H,Meta+L - Meta+H,Meta+L - - - Status Current File - Status 当前文件 - - - Status "%1" - Status "%1" - - - Alt+H,Alt+S - Alt+H,Alt+S - - - Meta+H,Meta+S - Meta+H,Meta+S - - - Add - 添加 - - - Add "%1" - 添加 "%1" - - - Delete... - 删除... - - - Delete "%1"... - 删除 "%1"... - - - Revert Current File... - 还原当前文件... - - - Revert "%1"... - 还原 "%1"... - - - Diff - Diff - - - Log - Log - - - Revert... - 还原... - - - Status - Status - - - Pull... - Pull... - - - Push... - Push... - - - Update... - 更新... - - - Import... - 导入... - - - Incoming... - 传入... - - - Outgoing... - 传出... - - - Commit... - 提交... - - - Alt+H,Alt+C - Alt+H,Alt+C - - - Meta+H,Meta+C - Meta+H,Meta+C - - - Create Repository... - 创建代码仓库... - - - Pull Source - Pull 源码 - - - Push Destination - Push 目标 - - - Update - 更新 - - - Incoming Source - 传入源 - - - Commit - 提交 - - - Diff &Selected Files - Diff 选中的文件(&S) - - - Diff Selected Files - Diff 选中的文件 - - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - - - There are no changes to commit. - 没有修改可提交。 - - - 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". - 为 "%1" 提交修改。 - - - Close commit editor - 关闭提交编辑器 - - - Do you want to commit the changes? - 您想提交此修改吗? - - - Close Commit Editor - 关闭Commit编辑器 - - - Message check failed. Do you want to proceed? - 信息检查失败,您想要继续吗? - - - Mercurial Command - Mercurial 命令 - - - - Perforce::Internal::PerforceChecker - - No executable specified - 未指定执行档 - - - "%1" timed out after %2ms. - 在%2毫秒后"%1" 超时。 - - - Unable to launch "%1": %2 - 无法启动 "%1": %2 - - - "%1" crashed. - "%1" 崩溃。 - - - "%1" terminated with exit code %2: %3 - "%1" 中止,退出代码 %2: %3 - - - The client does not seem to contain any mapped files. - 客户端看上去不存在任何映射文件。 - - - Unable to determine the client root. - Unable to determine root of the p4 client installation - 无法决定客户端的根目录。 - - - The repository "%1" does not exist. - 源码仓库 "%1" 不存在。 - - - - ProjectExplorer::BaseProjectWizardDialog - - Location - 位置 - - - untitled - File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks and using only ascii chars. - untitled - - - - ProjectExplorer::Internal::DependenciesModel - - <No other projects in this session> - <会话中没有其他项目> - - - - ProjectExplorer - - Projects - 项目 - - - Build & Run - 构建和运行 - - - Other Project - 其他项目 - - - Applications - 应用程序 - - - Libraries - - - - Non-Qt Project - 非Qt 项目 - - - Import Project - 导入项目 - - - Devices - 设备 - - - Qt Application - Qt应用 - - - - ProjectExplorer::TaskWindow - - Build Issues - 构建问题 - - - &Copy - 复制(&C) - - - &Annotate - 注释(&A) - - - Show Warnings - 显示警告 - - - Filter by categories - 根据分类过滤 - - - - QmlProjectManager::Internal::QmlRunControl - - Starting %1 %2 - 正在启动 %1 %2 - - - %1 exited with code %2 - %1 退出,退出代码: %2 - - - - QmlProjectManager::Internal::QmlRunControlFactory - - Run - 运行 - - - Open Qt4 Options - 打开Qt4选项 - - - Cancel - 取消 - - - QML Observer Missing - QML Observer缺失 - - - QML Observer could not be found. - QML Observer未找到. - - - QML Observer is used to offer debugging features for QML applications, such as interactive debugging and inspection tools. It must be compiled for each used Qt version separately. On the Qt4 options page, select the current Qt installation and click Rebuild. - QML Observer能够能够用来调试QML应用程序,其中包含了调试和检查组件.但该工具必须为每个Qt版本单独编译一份.在Qt4的选项设置页,选择最新的Qt版本然后点击重新构建. - - - - QmakeProjectManager - - %1 on Maemo device - Maemo 设备上的 %1 - - - MaemoRunConfiguration - Maemo 运行配置 - - - New Maemo Run Configuration - 新建Maemo运行配置 - - - '%1' does not contain a valid Maemo simulator image. - '%1' 不存在一个有效的 Maemo 模拟器镜像。 - - - Run on Maemo device - Maemo run configuration default display name - 在Maemo设备上运行 - - - %1 on Maemo Device - Maemo 设备上的 %1 - - - Run on device - 在设备上运行 - - - Could not connect to host - 无法连接主机 - - - Could not start remote shell: %1 - 不能启动远程 shell: %1 - - - Error running command: %1 - 运行命令发生错误: %1 - - - SSH error: %1 - SSH 错误: %1 - - - Error setting up SFTP subsystem: %1 - 设置 SFTP 子系统发生错误: %1 - - - Could not open file '%1' - 无法打开文件 '%1' - - - Could not copy local file '%1' to remote file '%2': %3 - 无法复制本地文件 '%1' 到远程文件 '%2': %3 - - - Qt Versions - Qt 版本 - - - Qt Widget Project - Qt 控件 项目 - - - Qt C++ Project - Qt C++ 项目 - - - Linux Devices - Linux 设备 - - - - TextEditor - - Text Editor - 文本编辑器 - - - Translate this string - 翻译这个字符串 - - - - CommandMappings - - Command Mappings - 命令映射 - - - Command - 命令 - - - Label - 标签 - - - Target - 目标 - - - Defaults - 默认 - - - Import... - 导入... - - - Export... - 导出... - - - Target Identifier - 目标标识符 - - - Target: - 目标: - - - Reset - 重置 - - - Reset all to default - 重置所有为默认 - - - Reset All - 重置所有 - - - Reset to default - 重置为默认 - - - - Git - - Stashes - Stash列表 - - - Name - 名称 - - - Branch - 分支 - - - Message - 消息 - - - Delete all... - 删除所有... - - - Delete... - 删除... - - - Show - Show - - - Restore... - 还原... - - - Restore to branch... - Restore a git stash to new branch to be created - 还原到 分支... - - - Refresh - 刷新 - - - <No repository> - <无 仓库> - - - Repository: %1 - 代码仓库: %1 - - - Delete stashes - 删除 stashes - - - Do you want to delete all stashes? - 您想删除所有 stash 吗? - - - Do you want to delete %n stash(es)? - - 您想删除 %n 个stash 吗? - - - - Repository modified - 仓库已变更 - - - Delete All... - 删除全部... - - - Restore to Branch... - Restore a git stash to new branch to be created - 恢复为分支... - - - Delete Stashes - 删除 stash - - - Repository Modified - 仓库已变更 - - - %1 cannot be restored since the repository is modified. -You can choose between stashing the changes or discarding them. - %1 不能被还原,因为仓库已经变更。 -您可以选择 stash 修改的内容或者丢弃修改。 - - - Discard - 丢弃 - - - Restore Stash to Branch - 还原 stash 到分支 - - - Branch: - Branch: - - - Stash Restore - 还原 stash - - - Would you like to restore %1? - 您想还原 %1吗? - - - Error restoring %1 - 还原 %1 时出错 - - - - ProjectExplorer::Internal::AddTargetDialog - - Add target - 添加目标 - - - Target: - 目标: - - - - ProjectExplorer::Internal::DoubleTabWidget - - DoubleTabWidget - 双标签部件 - - - - ProjectExplorer::Internal::TargetSettingsWidget - - TargetSettingsWidget - no need to translate - TargetSettingsWidget - - - Add Kit - 添加构建套件 - - - Manage Kits... - 管理构建套件... - - - - BehaviorDialog - - Dialog - 对话框 - - - Type: - 类型: - - - Id: - ID: - - - Property Name: - 属性名称: - - - Animation - 动画 - - - SpringFollow - 弹性随动 - - - Settings - 设置 - - - Duration: - 持续时间: - - - Curve: - 曲线: - - - easeNone - 缓慢(easeNone) - - - Source: - 源: - - - Velocity: - 速率: - - - Spring: - 弹性: - - - Damping: - 阻尼: - - - ID: - ID: - - - Property name: - 属性名称: - - - - GradientDialog - - Edit Gradient - 编辑渐进 - - - - GradientEditor - - Form - 界面 - - - Gradient Editor - 渐进编辑器 - - - 1 - 1 - - - 2 - 2 - - - 3 - 3 - - - 4 - 4 - - - 5 - 5 - - - Gradient Stops Editor - 渐进终止编辑器 - - - Zoom - 缩放 - - - Reset Zoom - 重置缩放 - - - Position - 位置 - - - Hue - 色调 - - - Saturation - 饱和度 - - - Sat - 饱和度 - - - Value - - - - Val - - - - Alpha - Alpha通道 - - - Type - 类型 - - - Spread - 展开 - - - Color - 颜色 - - - Current stop's color - 当前终止点颜色 - - - Show HSV specification - 显示 HSV 信息 - - - Show RGB specification - 显示 RGB 信息 - - - Current stop's position - 当前终止点位置 - - - Zoom In - 放大 - - - Zoom Out - 缩小 - - - Toggle details extension - 显示详情 - - - Linear Type - 线性型 - - - ... - ... - - - Radial Type - 放射型 - - - Conical Type - 圆锥型 - - - Pad Spread - 填充展开 - - - Repeat Spread - 重复展开 - - - Reflect Spread - 反射展开 - - - Start X - 起点横坐标(X) - - - Start Y - 起点纵坐标(Y) - - - Final X - 终点横坐标(X) - - - Final Y - 终点纵坐标(Y) - - - Central X - 中心横坐标(X) - - - Central Y - 中心纵坐标(Y) - - - Focal X - 焦点横坐标(X) - - - Focal Y - 焦点纵坐标(Y) - - - Radius - 半径 - - - Angle - 角度 - - - Linear - 线性 - - - Radial - 放射 - - - Conical - 圆锥 - - - Pad - 填充 - - - Repeat - 重复 - - - Reflect - 反射 - - - - QtGradientDialog - - Edit Gradient - 编辑渐进 - - - - QtGradientEditor - - Form - 界面 - - - Gradient Editor - 渐变编辑器 - - - 1 - 1 - - - 2 - 2 - - - 3 - 3 - - - 4 - 4 - - - 5 - 5 - - - Gradient Stops Editor - 渐变终止点编辑器 - - - Zoom - 缩放 - - - Reset Zoom - 重置缩放 - - - Position - 位置 - - - Hue - 色调 - - - Saturation - 饱和度 - - - Sat - 饱和度 - - - Value - - - - Val - - - - Alpha - Alpha通道 - - - Type - 类型 - - - Spread - 展开 - - - Color - 颜色 - - - Current stop's color - 当前终止点颜色 - - - Show HSV specification - 显示 HSV 信息 - - - Show RGB specification - 显示 RGB 信息 - - - Current stop's position - 当前终止点位置 - - - Zoom In - 放大 - - - Zoom Out - 缩小 - - - Toggle details extension - 显示详情 - - - Linear Type - 线性型 - - - ... - ... - - - Radial Type - 放射型 - - - Conical Type - 圆锥型 - - - Pad Spread - 填充展开 - - - Repeat Spread - 重复展开 - - - Reflect Spread - 反射展开 - - - Start X - 起点横坐标(X) - - - Start Y - 起点纵坐标(Y) - - - Final X - 终点横坐标(X) - - - Final Y - 终点纵坐标(Y) - - - Central X - 中心横坐标(X) - - - Central Y - 中心纵坐标(Y) - - - Focal X - 焦点横坐标(X) - - - Focal Y - 焦点纵坐标(Y) - - - Radius - 半径 - - - Angle - 角度 - - - Linear - 线性 - - - Radial - 放射 - - - Conical - 圆锥 - - - Pad - 填充 - - - Repeat - 重复 - - - Reflect - 反射 - - - - QtGradientView - - Gradient View - 渐变视图 - - - New... - 新建... - - - Edit... - 编辑... - - - Rename - 重命名 - - - Remove - 删除 - - - Grad - 渐变 - - - Remove Gradient - 删除渐变 - - - - QtGradientViewDialog - - Select Gradient - 选择渐变 - - - - QmlDesigner::Internal::SettingsPage - - Form - 界面 - - - Files - 文件 - - - Open file in: - 打开文件: - - - Design mode - 设计模式 - - - Edit mode - 编辑模式 - - - Snapping - hard to translate - Snapping - - - Item spacing - 项之间的间隔 - - - Snap margin - 页面快照 - - - Qt Quick Designer - Qt Quick 设计器 - - - Snap margin: - snap边距: - - - Item spacing: - 项之间的间隔: - - - Canvas - 画布 - - - Width - 宽度 - - - Height - 高度 - - - - MaemoConfigTestDialog - - Device Configuration Test - 设备配置测试 - - - - MaemoSettingsWidget - - Maemo Device Configurations - Maemo设备配置 - - - Configuration: - 配置: - - - Add - 添加 - - - Remove - 删除 - - - Test - 测试 - - - Deploy Key ... - 部署密钥... - - - Name - 名称 - - - Device type: - 设备类型: - - - Remote Device - 远程设备 - - - Local Simulator - 本地设备 - - - Authentication type: - 验证类型: - - - Password - 密码 - - - Key - 密钥 - - - Host Name: - 主机名称: - - - IP or host name of the device - 设备的IP或者主机名称 - - - Ports: - 端口: - - - Gdb server: - Gdb 服务器: - - - Connection Timeout: - 连接超时: - - - Timeout value in milliseconds - 超时(毫秒) - - - User Name: - 用户名: - - - Password: - 密码: - - - Private key file: - 私钥文件: - - - s - - - - Generate SSH Key ... - 创建SSH密钥... - - - Remote device - 远程设备 - - - Maemo emulator - Maemo模拟器 - - - Host name: - 主机名称: - - - Connection timeout: - 连接超时: - - - Username: - 用户名: - - - SSH port: - SSH端口: - - - Free ports: - 空闲端口: - - - TextLabel - TextLabel - - - Show password - 显示密码 - - - - MaemoSshConfigDialog - - SSH Key Configuration - SSH密钥配置 - - - Use key from location: - 使用密钥来自: - - - Private key file: - 私钥文件: - - - Generate SSH Key - 创建SSH密钥 - - - Deploy Public Key - 部署公钥 - - - Close - 关闭 - - - Options - 选项 - - - Key size: - 密钥长度: - - - Key algorithm: - 密钥算法: - - - Key - 密钥 - - - Save public Key... - 保存公钥文件... - - - Save private Key... - 保存私钥文件... - - - Save Public Key... - 保存公钥文件... - - - Save Private Key... - 保存私钥文件... - - - Key &size: - 密钥长度(&S): - - - &Generate SSH Key - 生成SSH密钥(&G) - - - Save P&ublic Key... - 保存公钥文件... - - - Save Pr&ivate Key... - 保存私钥文件... - - - &Close - 关闭(&C) - - - - RemoteLinux - - Self-signed certificate - 自签名证书 - - - Custom certificate: - 自定义证书: - - - Choose certificate file (.cer) - 选择证书文件(.cer) - - - Key file: - 密钥文件: - - - Not signed - 未签名 - - - Create Smart Installer package - 创建智能安装包 - - - Resets saved passphrases for all used keys - 重置所有保存的密钥的口令(passphrase) - - - Reset Passphrases - 重置口令 - - - Choose certificate file - 选择证书文件 - - - Certificate's details - 验证详情 - - - - VcsBase::CleanDialog - - Clean repository - 清空库 - - - The directory %1 could not be deleted. - 目录 %1 无法被删除。 - - - The file %1 could not be deleted. - 文件 '%1' 无法被删除。 - - - There were errors when cleaning the repository %1: - 清理代码仓库%1时发生错误: - - - Delete... - 删除... - - - Name - 名称 - - - Repository: %1 - 仓库: %1 - - - %n bytes, last modified %1 - - %n 个字节, 最后修改时间 %1 - - - - %1 bytes, last modified %2 - %1 字节, 最后修改 %2 - - - Delete - 删除 - - - Do you want to delete %n files? - - 您想删除 %n 个文件吗? - - - - Cleaning %1 - 正在清理 %1 - - - Clean Repository - 清空代码库 - - - - CommonSettingsPage - - Wrap submit message at: - 提交信息折行在: - - - characters - 字符 - - - An executable which is called with the submit message in a temporary file as first argument. It should return with an exit != 0 and a message on standard error to indicate failure. - 一个可执行档,以保存在临时文件中的提交信息为首参数。当提交失败时以非零值退出并在标准错误中输出信息。 - - - Submit message check script: - 提交信息检查脚本: - - - A file listing user names and email addresses in a 4-column mailmap format: -name <email> alias <email> - 一个列出用户名和电子邮件地址的文件,使用四列的邮件映射格式: -名字 <电子邮件> 别名 <email> - - - User/alias configuration file: - 用户/别名配置文件: - - - A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. - 一个包含了如 ”Reviewed-By:" 等字段名的简单文件,其内容会被添加在提交编辑器的下面。 - - - User fields configuration file: - 用户字段配置文件: - - - 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). - 指定一条执行图形化提示密码的命令, -会在代码仓库要求 SSH 身份验证的时候用到。(查看 SSH 和环境变量 SSH_ASKPASS 的相关文档)。 - - - SSH prompt command: - SSH 提示命令: - - - Submit message &check script: - 提交信息检查脚本(&C): - - - User/&alias configuration file: - 用户/别名配置文件(&A): - - - User &fields configuration file: - 用户字段配置文件(&F): - - - &Patch command: - 补丁命令(&P): - - - &SSH prompt command: - SSH 提示命令(&S): - - - - ExtensionSystem::PluginDetailsView - - None - - - - - ExtensionSystem::PluginView - - Load on Startup - 启动时载入 - - - Utilities - 实用工具 - - - - QmlJS::Check - - '%1' is not a valid property name - '%1' 不是一个有效的属性名称 - - - unknown type - 未知类型 - - - unknown value for enum - 未知的枚举值 - - - ids must be lower case or start with underscore - id必须使用小写字母或者开始于下划线 - - - ids must be unique - id 必须独一无二 - - - unknown identifier - 未知的认证 - - - could not resolve - 无法处理 - - - does not have members - 没有成员 - - - unknown member - 未知成员 - - - == and != perform type coercion, use === or !== instead to avoid - == 和 != 类型强制转换, 使用 === 或 !== 来避免 - - - blocks do not introduce a new scope, avoid - 块不引入一个新的范围,阻止 - - - use of the with statement is not recommended, use a var instead - 使用with语句不推荐,使用变量来代替 - - - use of void is usually confusing and not recommended - 使用void通常会造成困扰,不推荐 - - - avoid comma expressions - 避免逗号表达式 - - - expression statements should be assignments, calls or delete expressions only - 表达式语句应分配,只可使用或者删除表达式 - - - '%1' does not have members - '%1' 没有成员 - - - '%1' is not a member of '%2' - '%1' 不是'%2'的成员 - - - easing-curve name is not a string - easing-curve的名称不是一个字符串 - - - unknown easing-curve name - 未知的 easing-curve 名 - - - value might be 'undefined' - 值可能 '未定义' - - - enum value is not a string or number - 枚举形不是一个字符串或者数字 - - - numerical value expected - 期望数值类型的数据 - - - boolean value expected - 期望布尔类型的数据 - - - string value expected - 期望字符串类型的数据 - - - not a valid url - 不是一个有效的连接 - - - file or directory does not exist - 文件或目录不存在 - - - not a valid color - 不是一个有效的颜色 - - - expected anchor line - 期望anchor行 - - - unreachable - 无法到达 - - - declarations should be at the start of a function - 声明必须在函数开头 - - - already a formal parameter - 已经是一个正式的参数 - - - already declared as function - 已经声明过的函数 - - - duplicate declaration - 重复声明 - - - variable is used before being declared - 变量在声明之前使用 - - - already declared as var - 已经定义为变量 - - - function is used before being declared - 函数在声明之前就使用 - - - properties can only be assigned once - 属性只能分配一次 - - - prototype cycle, the last non-repeated object is %1 - 原型周期,最后一个不重复的对象是 %1 - - - expected id - 期望id - - - using string literals for ids is discouraged - 不推荐标识符使用字符串 - - - '%1' is not a valid property type - '%1' 不是一个有效的属性名称 - - - unintentional empty block, use ({}) for empty object literal - 无意的空块, 为空对象使用 ({}) - - - 'new' should only be used with functions that start with an uppercase letter - 'new' 只可以被使用在功能开始于大写字母 - - - calls of functions that start with an uppercase letter should use 'new' - 调用函数开始于大写字母,应当使用'new' - - - avoid assignments in conditions - 避免条件转让 - - - case is not terminated and not empty - 情况是不被终止不为空 - - - case does not end with return, break, continue or throw - case 语句没有在结尾处:return, break, continue 或 throw - - - ids must be lower case - 标识符必须小写 - - - 'int' or 'real' - '整数' 或 '实数' - - - - QmlJS::Interpreter::QmlXmlReader - - The file is not module file. - 此文件不是模块文件. - - - Unexpected element <%1> in <%2> - 未预料到的<%2>中的元素 <%1> - - - invalid value '%1' for attribute %2 in <%3> - 赋给 <%3>的属性 %2 的值 '%1'无效 - - - <%1> has no valid %2 attribute - <%1> 没有有效的%2 属性 - - - - QmlJS::Link - - could not find file or directory - 找不到文件或文件夹 - - - expected two numbers separated by a dot - 两个数字应该由点号分隔 - - - package import requires a version number - 导入包需要版本号 - - - package not found - 无法找到软件包文件 - - - Library contains C++ plugins, type dump is in progress. - 库包含了C++ 插件, 类型清空中. - - - file or directory not found - 文件或路径未找到 - - - QML module not found - -Import paths: -%1 - -For qmake projects, use the QML_IMPORT_PATH variable to add import paths. -For qmlproject projects, use the importPaths property to add import paths. - QML 模块未找到 - -导入路径: -%1 - -对于 qmake 项目, 使用QML_IMPORT_PATH 来添加导入路径。 -对于qmlproject 项目,使用 importPaths 属性来添加导入路径。 - - - QML module contains C++ plugins, currently reading type information... - QML 模块包含C++ 插件,正读取类型信息... - - - - Utils::FileWizardDialog - - Location - 位置 - - - - Utils::FilterLineEdit - - Filter - 过滤器 - - - Clear text - 清除文字 - - - - Utils::fileDeletedPrompt - - File has been removed - 文件已经被删除 - - - The file %1 has been removed outside Qt Creator. Do you want to save it under a different name, or close the editor? - 文件%1已经在Qt Creator外部被删除,您想要另存为其他名称或者关闭编辑器吗? - - - The file %1 was removed. Do you want to save it under a different name, or close the editor? - 文件%1已经被删除。您想将它以另一个名字保存呢,或者关闭编辑器吗? - - - &Close - 关闭(&C) - - - Save &as... - 另存为(&A)... - - - &Save - 保存(&S) - - - Close - 关闭 - - - Save as... - 另存为... - - - Save - 保存 - - - - Utils::UnixTools - - <table border=1 cellspacing=0 cellpadding=3><tr><th>Variable</th><th>Expands to</th></tr><tr><td>%d</td><td>directory of current file</td></tr><tr><td>%f</td><td>file name (with full path)</td></tr><tr><td>%n</td><td>file name (without path)</td></tr><tr><td>%%</td><td>%</td></tr></table> - <table border=1 cellspacing=0 cellpadding=3><tr><th>变量</th><th>扩展为</th></tr><tr><td>%d</td><td>当前文件所在目录</td></tr><tr><td>%f</td><td>文件名 (带完整路径)</td></tr><tr><td>%n</td><td>文件名 (不带路径)</td></tr><tr><td>%%</td><td>%</td></tr></table> - - - - Utils::LinearProgressWidget - - ... - ... - - - - BINEditor::BinEditor - - Decimal unsigned value (little endian): %1 -Decimal unsigned value (big endian): %2 -Decimal signed value (little endian): %3 -Decimal signed value (big endian): %4 - 十进制无符号数值 (little endian): %1 -十进制无符号数值 (big endian): %2 -十进制有符号数值 (little endian): %3 -十进制有符号数值 (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 - 上一个无符号十进制值 (小端): %1 -上一个无符号十进制值 (大端): %2 -上一个有符号十进制值 (小端): %3 -上一个有符号十进制值 (大端): %4 - - - Memory at 0x%1 - 0x%1 处的内存 - - - Decimal&nbsp;unsigned&nbsp;value: - 十进制&nbsp;无符号&nbsp;数值: - - - Decimal&nbsp;signed&nbsp;value: - 十进制&nbsp;有符号&nbsp;数值: - - - Previous&nbsp;decimal&nbsp;unsigned&nbsp;value: - 上一个&nbsp;十进制&nbsp;无符号&nbsp;数值: - - - Previous&nbsp;decimal&nbsp;signed&nbsp;value: - 上一个&nbsp;十进制&nbsp;有符号&nbsp;数值: - - - %1-bit&nbsp;Integer&nbsp;Type - %1-bit&nbsp;整数&nbsp;类型 - - - Little Endian - no official chinese word for this - Little Endian - - - Big Endian - Big Endian - - - Binary&nbsp;value: - 二进制&nbsp;数值: - - - Octal&nbsp;value: - 八进制&nbsp;数值: - - - Previous&nbsp;binary&nbsp;value: - 上一个&nbsp;二进制&nbsp;数值: - - - Previous&nbsp;octal&nbsp;value: - 上一个&nbsp;八进制&nbsp;数值: - - - <i>double</i>&nbsp;value: - <i>双精度浮点数</i>&nbsp;数值: - - - Previous <i>double</i>&nbsp;value: - 上一个<i>双精度浮点数</i>&nbsp;数值: - - - <i>float</i>&nbsp;value: - <i>浮点数</i>&nbsp;数值: - - - Previous <i>float</i>&nbsp;value: - 上一个<i>浮点数</i>&nbsp;数值: - - - Copying Failed - 复制失败 - - - You cannot copy more than 4 MB of binary data. - 您不能复制超过 4 MB 的二进制数据。 - - - Copy Selection as ASCII Characters - 复制选中部分作为 ASCII 字符串 - - - Copy Selection as Hex Values - 复制选中部分作为十六进制值 - - - Set Data Breakpoint on Selection - 选中时设置数据断点 - - - Jump to Address in This Window - 在当前窗口中跳转到地址 - - - Jump to Address in New Window - 在新窗口中跳转到地址 - - - Jump to Address 0x%1 in This Window - 在当前窗口中跳转到地址 0x%1 - - - Jump to Address 0x%1 in New Window - 在新窗口中跳转到地址 0x%1 - - - - BINEditor::Internal::ImageViewerFactory - - Image Viewer - 图像查看器 - - - - CMakeProjectManager - - Desktop - CMake Default target display name - 桌面 - - - Make - Display name for CMakeProjectManager::MakeStep id. - Make - - - - Core::CommandMappings - - Command - 命令 - - - Label - 标签 - - - - Core::DesignMode - - Design - 设计 - - - - Core::Internal::SystemEditor - - Could not open url %1. - 无法打开url '%1'。 - - - - Core::EditorToolBar - - Split - 分栏 - - - Copy Full Path to Clipboard - 复制完整路径到剪贴板 - - - Remove Split - 删除分栏 - - - Make Writable - 使文件可写 - - - Make writable - 使文件可写 - - - File is writable - 文件可写 - - - - CodePaster - - Pastebin.com - Pastebin.com - - - <Comment> - <注释> - - - Paste - 粘贴 - - - - CppEditor - - C++ Files and Classes - C++ 文件和类 - - - C++ - C++ - - - - VCS - - CVS Commit Editor - CVS提交编辑器 - - - CVS Command Log Editor - CVS命令行日志编辑器 - - - CVS File Log Editor - CVS文件日志编辑器 - - - CVS Annotation Editor - CVS注释编辑器 - - - CVS Diff Editor - CVS Diff编辑器 - - - Git Command Log Editor - Git命令行日志编辑器 - - - Git File Log Editor - Git文件日志编辑器 - - - Git Annotation Editor - Git注释编辑器 - - - Git Diff Editor - Git Diff编辑器 - - - Git Submit Editor - Git 提交编辑器 - - - Mercurial Command Log Editor - Mercurial 命令行日志编辑器 - - - Mercurial File Log Editor - Mercurial文件日志编辑器 - - - Mercurial Annotation Editor - Mercurial注释编辑器 - - - Mercurial Diff Editor - Mercurial Diff编辑器 - - - Mercurial Commit Log Editor - Mercurial 提交日志编辑器 - - - Perforce.SubmitEditor - Perforce提交编辑器 - - - Perforce CommandLog Editor - Perforce 命令行日志编辑器 - - - Perforce Log Editor - Perforce日志编辑器 - - - Perforce Diff Editor - Perforce Diff 编辑器 - - - Perforce Annotation Editor - Perforce注释编辑器 - - - Subversion Editor - Subversion编辑器 - - - Subversion Commit Editor - Subversion提交编辑器 - - - Subversion Command Log Editor - Subversion命令行日志编辑器 - - - Subversion File Log Editor - Subversion文件日志编辑器 - - - Subversion Annotation Editor - Subversion注释编辑器 - - - Subversion Diff Editor - Subversion Diff 编辑器 - - - Bazaar Command Log Editor - Bazaar 命令行日志编辑器 - - - Bazaar File Log Editor - Bazaar 文件日志编辑器 - - - Bazaar Annotation Editor - Bazaar注释编辑器 - - - Bazaar Diff Editor - Bazaar Diff编辑器 - - - Bazaar Commit Log Editor - Bazaar 提交日志编辑器 - - - ClearCase Check In Editor - ClearCase Check In 编辑器 - - - ClearCase Command Log Editor - ClearCase 命令行日志编辑器 - - - ClearCase File Log Editor - ClearCase 文件日志编辑器 - - - ClearCase Annotation Editor - ClearCase 注释编辑器 - - - ClearCase Diff Editor - ClearCase Diff 编辑器 - - - - Cvs - - Annotate revision "%1" - 注释修订版本 "%1" - - - - Debugger - - Toolchains - 工具链 - - - Duplicate binary - 复制二进制档 - - - The binary '%1' already exists. - 二进制档 '%1' 已经存在。 - - - Select binary and toolchains - 选择二进制和工具链 - - - Gdb binary - Gdb 二进制 - - - Date: - 日期: - - - Date - 日期 - - - Location - 位置 - - - - Designer - - This file can only be edited in Design Mode. - 此文件仅可在设计模式中编辑。 - - - Open Designer - 打开设计师 - - - This file can only be edited in <b>Design</b> mode. - 此文件仅可在<b>设计</b>模式中编辑。 - - - Switch mode - 切换模式 - - - Location - 位置 - - - - FakeVim::Internal::FakeVimExCommandsPage - - Ex Command Mapping - 额外命令映射 - - - FakeVim - FakeVim - - - Ex Trigger Expression - 额外触发表达式 - - - Regular expression: - 正则表达式: - - - Regular Expression: - 正则表达式: - - - Ex Command - 额外命令 - - - - Find::FindPlugin - - &Find/Replace - 查找/替换(&F) - - - Advanced Find - 高级查找 - - - Open Advanced Find... - 打开高级查找... - - - Advanced... - 高级... - - - Ctrl+Shift+F - Ctrl+Shift+F - - - - GenericProjectManager::Internal::GenericMakeStep - - Make - Make - - - Qt Creator needs a compiler set up to build. Configure a compiler in the kit options. - Qt Creator 需要设置一个编译器来构建。在构建套件选项里设置一个编译器。 - - - Configuration is faulty. Check the Issues view for details. - 配置错误,请检查"问题"视图获得详细信息。 - - - Override %1: - 覆盖 %1: - - - Make arguments: - Make 参数: - - - Targets: - 目标: - - - - Git - - (no branch) - (没有分支) - - - Unable to determine the repository for %1. - 无法为 %1 决定仓库。 - - - Error: Git timed out after %1s. - 错误: Git 在 %1秒后超时. - - - Blame %1 - Blame %1 - - - Blame parent revision %1 - Blame父修订版本 %1 - - - - Help - - Error loading: %1 - 载入 %1 除错 - - - Unknown or unsupported Content! - 未知的或不支持的内容! - - - (Untitled) - (未命名) - - - Close %1 - 关闭%1 - - - Close All Except %1 - 除了%1 以外全部关闭 - - - - Mercurial - - Annotate %1 - 注释 "%1" - - - Annotate parent revision %1 - 注释父修订版本 %1 - - - - Perforce::Internal::PerforceEditor - - Annotate change list "%1" - 注释变更列表 "%1" - - - - ProjectExplorer::BuildConfiguration - - Build - Display name of the build build step list. Used as part of the labels in the project window. - 构建 - - - Clean - Display name of the clean build step list. Used as part of the labels in the project window. - 清理 - - - System Environment - 系统环境变量 - - - Clean Environment - 清理时的环境变量 - - - - ProjectExplorer::BuildEnvironmentWidget - - Clear system environment - 清除系统环境变量 - - - Build Environment - 构建环境 - - - - BuildSettingsPanelFactory - - Build Settings - 构建设置 - - - - BuildSettingsPanel - - Build Settings - 构建设置 - - - - ProjectExplorer::CustomWizard - - Details - Default short title for custom wizard page to be shown in the progress pane of the wizard. - 详情 - - - Creates a C++ plugin to extend the funtionality of the QML runtime. - Creates a plug-in for the QML runtime. - 为扩展QML运行时的功能创建一个C++插件. - - - QML Runtime Plug-in - QML运行时插件 - - - QML Runtime Plug-in Parameters - QML运行时插件参数 - - - Example Object Class-name: - 举例对象类名: - - - Creates a plain C project using qmake, not using the Qt library. - 创建一个使用QMake的纯C语言项目,不使用Qt 库。 - - - Creates a plain C++ project using qmake, not using the Qt library. - 创建一个使用qmake的纯C++语言项目,不使用Qt 库。 - - - Creates a C++ plugin that makes it possible to offer extensions that can be loaded dynamically into applications using the QDeclarativeEngine class. - 创建一个C++插件,可以提供用QDeclarativeEngine类动态载入的扩展。 - - - Custom QML Extension Plugin - 自定义QML扩展插件 - - - QML Extension Plugin - QML扩展插件 - - - Custom QML Extension Plugin Parameters - 自定义QML扩展插件的参数 - - - Object Class-name: - 对象类名: - - - URI: - URI: - - - The project name and the object class-name cannot be the same. - 项目名和对象类名不能相同。 - - - Creates a custom Qt Creator plugin. - 创建一个自定义Qt Creator插件。 - - - Qt Creator plugin - Qt Creator插件 - - - URL: - URL: - - - Other Project - 其他项目 - - - Creates a plain C project using QMake, not using the Qt library. - 使用QMake创建一个纯C语言的项目, 不使用Qt 的库. - - - Plain C Project - 纯C语言项目 - - - Creates a plain C++ project using QMake, not using the Qt library. - 使用QMake创建一个纯C语言的项目, 不使用Qt 的库. - - - Creates an application descriptor file. - 创建一个应用程序描述符文件。 - - - Application descriptor - 应用程序描述符 - - - BlackBerry - 黑莓 - - - Creates a Qt Gui application for BlackBerry. - 为“黑莓”创建一个Qt图形应用程序。 - - - BlackBerry Qt Gui Application - “黑莓”Qt图形应用程序 - - - Creates an Qt5 application descriptor file. - 创建一个Qt5应用程序的描述符文件。 - - - Qt5 Application descriptor - Qt5应用程序描述符 - - - Creates an experimental Qt5 Gui application for BlackBerry 10. You need an own Qt5 build for BlackBerry 10 since Qt5 is not provided in the current BlackBerry 10 NDK and is not included in DevAlpha devices. - 为“黑莓”10系统创建一个实验性的Qt5图形界面程序。您需要自己构建“黑莓“10系统的Qt5,因为目前“黑莓”10的NDK尚不提供Qt5,而且DevAlpha设备中也没有包括Qt5。 - - - BlackBerry Qt5 Gui Application - “黑莓”上的Qt5图形应用程序 - - - Creates an experimental Qt Quick 2 application for BlackBerry 10. You need an own Qt5 build for BlackBerry 10 since Qt5 is not provided in the current BlackBerry 10 NDK and is not included in DevAlpha devices. - 为“黑莓”10系统创建一个实验性的Qt Quick 2程序。您需要自己构建“黑莓“10系统的Qt5,因为目前“黑莓”10的NDK尚不提供Qt5,而且DevAlpha设备中也没有包括Qt5。 - - - BlackBerry Qt Quick 2 Application - “黑莓”上的Qt Quick 2程序 - - - Creates a Qt Quick application for BlackBerry. - 为“黑莓”创建一个Qt Quick程序。 - - - BlackBerry Qt Quick Application - “黑莓”上的Qt Quick 程序 - - - Type: - 类型: - - - Non-Qt Project - 非Qt 项目 - - - Creates a plain C project using CMake, not using the Qt library. - 创建一个使用CMake的纯C语言项目,不使用Qt 库。 - - - Plain C Project (CMake Build) - 纯C项目(使用CMake构建) - - - Plain C++ Project - 纯C++语言项目 - - - Creates a plain C++ project using CMake, not using the Qt library. - 创建一个使用CMake的纯C语言项目,不使用Qt 库。 - - - Plain C++ Project (CMake Build) - 纯C++项目(使用CMake构建) - - - Libraries - - - - Qt Creator Plugin - Qt Creator插件 - - - Plugin Information - 插件信息 - - - Plugin name: - 插件名称: - - - Vendor name: - 供应商名称: - - - Copyright: - 版权: - - - License: - 许可: - - - Description: - 说明: - - - Url: - Url: - - - Qt Creator sources: - Qt Creator源文件: - - - Qt Creator build: - Qt Creator构建: - - - Deploy into: - 部署到: - - - Qt Creator build - Qt Creator 构建 - - - Local user settings - 本地用户设置 - - - - ProjectExplorer::CustomProjectWizard - - The project %1 could not be opened. - 无法打开项目 %1 。 - - - - ProjectExplorer::Internal::CustomWizardPage - - Path: - 路径: - - - - DependenciesPanel - - Dependencies - 依赖关系 - - - - DependenciesPanelFactory - - Dependencies - 依赖关系 - - - - EditorSettingsPanelFactory - - Editor Settings - 编辑器设置 - - - Editor - 编辑器 - - - - EditorSettingsPanel - - Editor Settings - 编辑器设置 - - - Editor - 编辑器 - - - - Core::FolderNavigationWidget - - Open - 打开 - - - Open parent folder - 打开上级文件夹 - - - Open "%1" - 打开 "%1" - - - Open with - 用...打开 - - - Choose folder... - 选择文件夹... - - - Choose folder - 选择文件夹 - - - Show in Explorer... - 在Explorer中显示... - - - Show in Finder... - 在搜索器中显示 ... - - - Show containing folder... - 显示包含的目录... - - - Open Command Prompt here... - 在此打开命令行控制台... - - - Open Terminal here... - 在此打开终端... - - - Open Parent Folder - 打开上级目录 - - - Choose Folder... - 选择目录... - - - Choose Folder - 选择目录 - - - Find in this directory... - 在这个目录中搜索... - - - Show Containing Folder... - 显示包含的目录... - - - Open Command Prompt Here... - 在此打开命令行控制台... - - - Open Terminal Here... - 在此打开终端... - - - Launching a file browser failed - 启动文件浏览器失败 - - - Unable to start the file manager: - -%1 - - - 无法启动文件管理器: - -%1 - - - - - '%1' returned the following error: - -%2 - '%1' 返回以下错误: - -%2 - - - Settings... - 设定... - - - Launching Windows Explorer Failed - 启动Windows Explorer 失败 - - - Launching Windows Explorer failed - 启动Windows Explorer 失败 - - - Could not find explorer.exe in path to launch Windows Explorer. - 在环境变量中找不到explorer.exe,无法启动Windows Explorer. - - - - ProjectExplorer::Internal::MiniTargetWidget - - Select active build configuration - 选择激活构建配置 - - - Select active run configuration - 选择激活运行配置 - - - Build: - 构建: - - - Run: - 运行: - - - - ProjectExplorer::Internal::MiniProjectTargetSelector - - Project - 项目 - - - Kit - 构建套件(Kit) - - - Build - 构建 - - - Deploy - 部署 - - - Run - 运行 - - - Unconfigured - 未配置 - - - <b>Project:</b> %1 - <b>项目:</b> %1 - - - <b>Target:</b> %1 - <b>目标:</b> %1 - - - <b>Build:</b> %1 - <b>构建:</b> %1 - - - <b>Deploy:</b> %1 - <b>部署:</b> %1 - - - <b>Run:</b> %1 - <b>运行:</b> %1 - - - %1 - %1 - - - <html><nobr>%1</html> - <html><nobr>%1</html> - - - Project: <b>%1</b><br/> - 项目: <b>%1</b><br/> - - - Kit: <b>%1</b><br/> - 构建套件: <b>%1</b><br/> - - - Build: <b>%1</b><br/> - 构建: <b>%1</b><br/> - - - Deploy: <b>%1</b><br/> - 部署: <b>%1</b><br/> - - - Run: <b>%1</b><br/> - 运行: <b>%1</b><br/> - - - <style type=text/css>a:link {color: rgb(128, 128, 255, 240);}</style>The project <b>%1</b> is not yet configured<br/><br/>You can configure it in the <a href="projectmode">Projects mode</a><br/> - <style type=text/css>a:link {color: rgb(128, 128, 255, 240);}</style>项目 <b>%1</b> 尚未配置<br/><br/>您可以在 <a href="projectmode">项目模式</a>中配置它<br/> - - - Build: - 构建: - - - Run: - 运行: - - - <html><nobr><b>Project:</b> %1<br/>%2%3<b>Run:</b> %4%5</html> - <html><nobr><b>项目:</b> %1<br/>%2%3<b>运行:</b> %4%5</html> - - - <b>Target:</b> %1<br/> - <b>目标:</b> %1<br/> - - - <b>Build:</b> %2<br/> - <b>构建:</b> %2<br/> - - - - ProjectExplorer::ProjectConfiguration - - Clone of %1 - %1 的克隆 - - - - TargetSettingsPanelFactory - - Targets - 目标 - - - Build & Run - 构建和运行 - - - - RunSettingsPanelFactory - - Run Settings - 运行设置 - - - - RunSettingsPanel - - Run Settings - 运行设置 - - - - ProjectExplorer::Internal::TargetSettingsPanelWidget - - No target defined. - 没有定义目标. - - - Cancel Build && Remove Target - 退出构建并移除目标 - - - No kit defined in this project. - 项目中未定义构建套件(Kit)。 - - - Cancel Build && Remove Kit - 退出构建并移除构建套件 - - - Do Not Remove - 不要移除 - - - Remove Kit %1? - 移除套件%1吗? - - - The kit <b>%1</b> is currently being built. - 构建套件<b>%1</b>正在被构建。 - - - Do you want to cancel the build process and remove the Kit anyway? - 您无论如何都要取消构建进程并且删除此构建套件吗? - - - Do you really want to remove the -"%1" kit? - 您真的想删除 -构建套件"%1" 吗? - - - Remove Target %1? - 移除目标%1? - - - The target <b>%1</b> is currently being built. - 目标<b>%1</b> 正在被构建. - - - Do you want to cancel the build process and remove the Target anyway? - 您想要取消构建并移除目标? - - - Qt Creator - Qt Creator - - - Do you really want to remove the -"%1" target? - 您真的想删除 -目标"%1" ? - - - - GenericProjectManager::GenericTarget - - Desktop - Generic desktop target display name - 桌面 - - - - QmakeProjectManager - - Desktop - Qt4 Desktop target display name - 桌面 - - - Symbian Emulator - Qt4 Symbian Emulator target display name - 塞班模拟器 - - - Symbian Device - Qt4 Symbian Device target display name - 塞班设备 - - - Maemo Emulator - Qt4 Maemo Emulator target display name - Maemo模拟器 - - - Maemo Device - Qt4 Maemo Device target display name - Maemo设备 - - - Qt Simulator - Qt4 Simulator target display name - Qt模拟器 - - - <b>Device:</b> Not connected - <b>设备:</b> 没有连接 - - - <b>Device:</b> %1 - <b>设备:</b> %1 - - - <b>Device:</b> %1, %2 - <b>设备:</b> %1, %2 - - - - QmlProjectManager::QmlTarget - - QML Runtime - QML Runtime target display name - QML运行环境 - - - QML Viewer - QML Viewer target display name - QML 查看器 - - - - QmlDesigner::ComponentView - - whole document - 整个文档 - - - - QmlDesigner::DesignDocumentController - - -New Form- - -新界面- - - - Cannot save to file "%1": permission denied. - 无法保存到文件 "%1": 没有权限。 - - - Parent folder "%1" for file "%2" does not exist. - 文件 "%2" 的上级目录 "%1" 不存在。 - - - Error - 错误 - - - Cannot write file: "%1". - 无法写入文件" %1". - - - - QmlDesigner::XUIFileDialog - - Open file - 打开文件 - - - Save file - 保存文件 - - - Open File - 打开文件 - - - Save File - 保存文件 - - - Declarative UI files (*.qml) - 声明式的UI文件(*.qml) - - - All files (*) - 所有文件 (*) - - - - QmlDesigner::ItemLibrary - - Library - Title of library view - - - - Items - Title of library items view - - - - Resources - Title of library resources view - 资源 - - - <Filter> - Library search input hint text - <过滤器> - - - - QmlDesigner::NavigatorTreeModel - - Invalid id. -Only alphanumeric characters and underscore allowed. -Ids must begin with a lowercase letter. - 无效id -仅支持字母数字和下划线 -标识符必须是以小写字母打头. - - - Item id must be unique. - 项id必须唯一. - - - Unknown item: %1 - 未知项 %1 - - - Invalid Id - 无效标识符 - - - %1 is an invalid id - 标识符%1无效 - - - %1 already exists - %1已存在 - - - Warning - 警告 - - - Reparenting the component %1 here will cause the component %2 to be deleted. Do you want to proceed? - 在此重定义父级组件%1 将会导致组件%2被删除。您想要继续吗? - - - - QmlDesigner::NavigatorWidget - - Navigator - Title of navigator view - 导航 - - - Become first sibling of parent (CTRL + Left) - 成为父节点的第一个兄弟点 (CTRL + Left) - - - Become child of first sibling (CTRL + Right) - 成为第一个兄弟节点的子节点 (CTRL + Right) - - - Move down (CTRL + Down) - 下移(CTRL + Down) - - - Move up (CTRL + Up) - 上移(CTRL + Up) - - - - QmlDesigner::PluginManager - - About plugins - 关于插件 - - - About Plugins - 关于插件 - - - - WidgetPluginManager - - Failed to create instance. - 创建实例失败。 - - - Not a QmlDesigner plugin. - 不是一个QmlDesigner的插件。 - - - Failed to create instance of file '%1': %2 - 无法创建文件 '%1'的实例: %2 - - - Failed to create instance of file '%1'. - 无法创建文件 '%1'的实例。 - - - File '%1' is not a QmlDesigner plugin. - 文件 '%1' 不是一个 QmlDesigner 的插件。 - - - - QmlDesigner::AllPropertiesBox - - Properties - Title of properties view. - 属性 - - - - FileWidget - - Open File - 打开文件 - - - - qdesigner_internal::QtGradientStopsController - - Hue - 色调 - - - Sat - 饱和度 - - - Val - - - - Saturation - 饱和度 - - - Value - - - - R - R - - - Red - - - - Green - 绿 - - - Blue - - - - - QtGradientStopsWidget - - New Stop - 新的停止 - - - Delete - 删除 - - - Flip All - 反选全部 - - - Select All - 全选 - - - Zoom In - 放大 - - - Zoom Out - 缩小 - - - Reset Zoom - 重置缩放 - - - - QmlDesigner::Internal::StatesEditorModel - - base state - Implicit default state - 基本状态 - - - Invalid state name - 无效状态名称 - - - The empty string as a name is reserved for the base state. - 空字符串是为基本状态保留的名称. - - - Name already used in another state - 名称已经被其他状态使用 - - - - QmlDesigner::Internal::StatesEditorWidgetPrivate - - base state - 基本状态 - - - State%1 - Default name for newly created states - 状态%1 - - - - QmlDesigner::StatesEditorWidget - - States - Title of Editor widget - 状态 - - - - QmlDesigner::Internal::SubComponentManagerPrivate - - QML Components - QML组件 - - - - QmlDesigner::Internal::ModelPrivate - - invalid type - 无效类型 - - - - QmlDesigner::RewriterView - - Error parsing - 解析错误 - - - Internal error - 内部错误 - - - "%1" - "%1" - - - line %1 - 行 %1 - - - column %1 - 列 %1 - - - - QmlDesigner::Internal::DocumentWarningWidget - - <a href="goToError">Go to error</a> - <a href="goToError">转到错误</a> - - - %3 (%1:%2) - %3 (%1:%2) - - - Internal error (%1) - 内部错误(%1) - - - - QmlDesigner::Internal::DesignModeWidget - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - - - Delete - 删除 - - - Delete "%1" - 删除 "%1" - - - Cu&t - 剪切(&T) - - - Cut "%1" - 剪切 "%1" - - - &Copy - 复制(&C) - - - Copy "%1" - 复制 "%1" - - - &Paste - 粘贴(&P) - - - Paste "%1" - 粘贴 "%1" - - - Select &All - 全选(&A) - - - Select All "%1" - 全选"%1" - - - Toggle Full Screen - 切换到全屏 - - - &Restore Default View - 重置到默认视图(&R) - - - &Go into Component - 进入组件(&G) - - - Toggle &Left Sidebar - 切换左边栏(&L) - - - Toggle &Right Sidebar - 切换右边栏(&R) - - - Projects - 项目 - - - File System - 文件系统 - - - Open Documents - 打开的文档 - - - Qt Quick emulation layer crashed - Qt Quick 模拟层崩溃 - - - - QmlDesigner::Internal::BauhausPlugin - - Switch Text/Design - 切换 文本/设计 - - - Save %1 As... - %1另存为 ... - - - &Save %1 - 保存%1(&S) - - - Revert %1 to Saved - 恢复%1 到已保存的状态 - - - Close %1 - 关闭%1 - - - Close All Except %1 - 除了%1 以外全部关闭 - - - Close Others - 关闭其他 - - - - Qml::Internal::QLineGraph - - Frame rate - 帧率 - - - - Qml::Internal::GraphWindow - - Total time elapsed (ms) - 总消耗时间(毫秒) - - - - Qml::Internal::CanvasFrameRate - - Resolution: - 分辨率: - - - Clear - 清空 - - - New Graph - 新图表 - - - Enabled - 启用 - - - - Qml::Internal::ExpressionQueryWidget - - <Expression> - <表达式> - - - Write and evaluate QtScript expressions. - 编写和求值QtScript表达式. - - - Clear Output - 清空输出 - - - Debug Console - - 调试控制台 - - - - <Type expression to evaluate> - <输入表达式用于求值> - - - Script Console - - 脚本控制台 - - - - Expression queries - 表达式查询 - - - Expression queries (using context for %1) - Selected object - 表达式查询(为%1使用上下文) - - - <%n items> - - <%n 个项> - - - - - Qml::Internal::ObjectPropertiesView - - Name - 名称 - - - Value - - - - Type - 类型 - - - &Watch expression - 监视表达式 (&W) - - - &Remove watch - 删除监视(&R) - - - Show &unwatchable properties - 显示不可监视的属性(&U) - - - &Group by item type - 按项类型分组(&G) - - - <%n items> - - <%n 个项> - - - - Hide unwatchable properties - 隐藏不可监视的属性 - - - Show unwatchable properties - 显示不可监视的属性 - - - - Qml::Internal::ObjectTree - - Add watch... - 添加监视 - - - Add watch expression... - 添加监视表达式 ... - - - Show uninspectable items - 显示无法监视的项 - - - Go to file - 转到文件 - - - Watch expression - 监视表达式 - - - Expression: - 表达式: - - - - Qml::Internal::WatchTableModel - - Name - 名称 - - - Value - - - - - Qml::Internal::WatchTableView - - Stop watching - 停止监视 - - - - Qml::InspectorOutputWidget - - Output - 输出 - - - Clear - 清空 - - - - Qml::Internal::EngineSpinBox - - Engine %1 - engine number - 引擎 %1 - - - - Qml::QmlInspector - - No active project, debugging canceled. - 没有激活的项目,调试取消. - - - Failed to connect to debugger - 连接调试器失败 - - - Could not connect to debugger server. - 无法连接调试服务器. - - - Invalid project, debugging canceled. - 无效的项目,退出调试. - - - Cannot find project run configuration, debugging canceled. - 无法找到运行配置,调试取消. - - - [Inspector] set to connect to debug server %1:%2 - [检查器] 设置为连接到调试服务器 %1:%2 - - - [Inspector] disconnected. - - - [检查器] 断开连接. - - - - - [Inspector] resolving host... - [检查器] 解析主机... - - - [Inspector] connecting to debug server... - [检查器] 连接到调试服务器... - - - [Inspector] connected. - - [检查器] 已连接. - - - [Inspector] closing... - [检查器] 正在关闭... - - - Script console - 脚本控制台 - - - Start Debugging C++ and QML Simultaneously... - 同步启动QML和C++的调试... - - - No project was found. - 没有找到任何项目. - - - No run configurations were found for the project '%1'. - 在项目'%1'中没有找到运行配置. - - - A valid run control was not registered in Qt Creator for this project run configuration. - 在Qt Creator 的项目的运行配置中未注册一个有效的运行控制. - - - Debugging failed: could not start C++ debugger. - 调试失败:无法启动C++调试器. - - - Frame rate - 帧速率 - - - QML engine: - QML 引擎: - - - Object Tree - 对象树 - - - Properties and Watchers - 属性和监视器 - - - Script Console - 脚本控制台 - - - Output of the QML inspector, such as information on connecting to the server. - QML检查器的输出,如连接到服务器时的信息。 - - - - Qml::QmlInspectorPlugin - - Failed to connect to debugger - 连接调试器失败 - - - Could not connect to debugger server. Please check your settings from Projects pane. - 无法链接调试服务器.请检查项目设置. - - - - QmlJSEditor - - Rename... - 重命名... - - - New id: - 新ID: - - - Rename id '%1'... - 重命名ID '%1' ... - - - <Select Symbol> - <选择符号> - - - Enable Qt Quick Designer - 启用Qt Quick 设计器 - - - Qt Creator -> About Plugins... - Qt Creator -> 关于插件... - - - Help -> About Plugins... - 帮助 -> 关于插件... - - - Enable experimental Qt Quick Designer? - 启用尚处在实验阶段的Qt Quick 设计器吗? - - - Cancel - 取消 - - - Please restart Qt Creator - 请重新启动Qt Creator - - - Please restart Qt Creator to make the change effective. - 请重新启动Qt Creator使配置生效. - - - Creates a Qt QML file. - 创建一个Qt QML 文件. - - - Qt QML File - Qt QML 文件 - - - Creates a QML file. - 创建一个QML文件。 - - - QML File - QML文件 - - - Creates a JavaScript file. - 创建一个JavaScript文件。 - - - JS File - JS 文件 - - - Rename Symbol Under Cursor - 重命名光标所在符号 - - - Ctrl+Shift+R - Ctrl+Shift+R - - - Run Checks - 运行检查 - - - Ctrl+Shift+C - Ctrl+Shift+C - - - Reformat File - 重新格式化文件 - - - QML - QML - - - QML Analysis - QML 分析 - - - Follow Symbol Under Cursor - 跟踪光标位置的符号 - - - Find Usages - 搜索被使用的地方 - - - Ctrl+Shift+U - Ctrl+Shift+U - - - Show Qt Quick Toolbar - 显示Qt Quick工具栏 - - - Unfiltered - 未过滤 - - - Library at %1 - %1 is library path - %1中的库 - - - Dumped plugins successfully. - 成功读取插件。 - - - Read typeinfo files successfully. - 读取typeinfo文件成功。 - - - Indexing - 索引中 - - - Type dump of QML plugin in %0 failed. -Errors: -%1 - - 在 %0 丢弃QML插件失败. -错误: -%1 - - - - QmlProjectManager::QmlProject - - Error while loading project file! - 载入项目文件时发生错误! - - - Error while loading project file %1. - 载入项目文件%1时发生错误。 - - - QML project: %1 - QML 项目: %1 - - - Warning while loading project file %1. - 载入项目文件 %1时收到警告信息。 - - - File '%1' does not exist or is not readable. - 文件 '%1'不存在或不可读。 - - - Device type is not desktop. - 设备类型不是桌面。 - - - No Qt version set in kit. - 构建套件中未设置Qt版本。 - - - Error while loading `project file %1. - 载入项目文件时发生错误%1. - - - - QmlProjectManager::Internal::QmlProjectApplicationWizardDialog - - New QML Project - 新建 QML 项目 - - - This wizard generates a QML application project. - 本向导将创建一个QML 应用项目。 - - - New Qt Quick UI Project - 新建Qt Quick UI项目 - - - This wizard generates a Qt Quick UI project. - 此向导将生成一个Qt Quick的UI项目。 - - - - QmlProjectManager::Internal::QmlProjectApplicationWizard - - Qt QML Application - Qt QML 应用 - - - Creates a Qt QML application. - 创建一个Qt QML 应用。 - - - Qt Quick UI - Qt Quick UI - - - Creates a Qt Quick UI project with a single QML file that contains the main view. - -You can review Qt Quick UI projects in the QML Viewer and you need not build them. You do not need to have the development environment installed on your computer to create and run this type of projects. - -Requires <b>Qt 4.7.4</b> or newer. - 创建一个包含主视图的单一QML文件的Qt Quick UI项目。 - -您可以在QML查看器中查看Qt Quick UI项目而不需要构建项目。创建和运行此类项目不需要在您的电脑中安装开发环境。 - -需要<b>Qt 4.7.4</b> 或更新版本。 - - - File generated by QtCreator - qmlproject Template - Comment added to generated .qmlproject file - Qt Creator创建的文件 - - - Include .qml, .js, and image files from current directory and subdirectories - qmlproject Template - Comment added to generated .qmlproject file - 在当前目录和子目录下包含的qml,js和图片文件 - - - List of plugin directories passed to QML runtime - qmlproject Template - Comment added to generated .qmlproject file - 列出QML运行环境下的插件目录 - - - The project %1 could not be opened. - 项目 %1 无法被打开。 - - - - QmlProjectManager - - Qt Quick Project - Qt Quick 项目 - - - - QmlProjectManager::Internal::QmlProjectImportWizardDialog - - Import Existing Qt QML Directory - 导入现有的 QML文件夹 - - - Project Name and Location - 项目名称和路径 - - - Project name: - 项目名称: - - - Location: - 路径: - - - Location - 路径 - - - - QmlProjectManager::Internal::QmlProjectImportWizard - - Import Existing Qt QML Directory - 导入现有的Qt QML文件夹 - - - Creates a QML project from an existing directory of QML files. - 使用现有目录中的 QML 文件创建一个 QML项目。 - - - File generated by QtCreator - qmlproject Template - Comment added to generated .qmlproject file - Qt Creator创建的文件 - - - Include .qml, .js, and image files from current directory and subdirectories - qmlproject Template - Comment added to generated .qmlproject file - 从当前目录和子目录下包含qml, .js和图片文件 - - - List of plugin directories passed to QML runtime - qmlproject Template - Comment added to generated .qmlproject file - 列出QML运行环境下的插件目录 - - - The project %1 could not be opened. - 项目 %1 无法被打开 - - - - QmlProjectManager::Internal::Manager - - Failed opening project '%1': Project already open - 打开项目 '%1'失败:项目已经被打开 - - - Failed opening project '%1': Project file is not a file - 打开项目 '%1'失败: 项目文件不是一个文件 - - - - QmlProjectManager::QmlProjectRunConfiguration - - QML Runtime - QMLRunConfiguration display name. - QML运行环境 - - - QML Runtime - QML运行环境 - - - QML Runtime arguments: - QML 运行参数: - - - No qmlviewer or qmlobserver found. - 没有找到qml查看器或qml观察器. - - - No qmlviewer or qmlscene found. - 没有找到qmlviewer或qmlscene。 - - - QML Scene - QMLRunConfiguration display name. - QML Scene - - - QML Viewer - QMLRunConfiguration display name. - QML 查看器 - - - Manage Qt versions - 管理Qt版本 - - - Qt version: - Qt 版本: - - - Arguments: - 参数: - - - Debugger: - 调试器: - - - Main QML file: - QML主文件: - - - Invalid Qt version - 非法的Qt版本 - - - QML Viewer - QML 查看器 - - - QML Viewer arguments: - QML 查看器参数: - - - Main QML File: - 主 QML 文件: - - - Debugging Address: - 调试地址: - - - Debugging Port: - 调试端口: - - - - QmlManager - - <Current File> - <当前文件> - - - - QmlProjectManager::Internal::QmlProjectRunConfigurationFactory - - Run QML Script - 运行QML脚本 - - - QML Viewer - QML 查看器 - - - QML Scene - QML Scene - - - - QmakeProjectManager - - Testing configuration... - 测试配置... - - - Stop Test - 停止测试 - - - Device configuration test failed: -%1 - 设备配置测试失败: -%1 - - - Testing configuration. This may take a while. - 测试设置.这将需要一点时间. - - - Remote process failed: %1 - 远端进程失败:%1 - - - Qt version mismatch! Expected Qt on device: 4.6.2 or later. - Qt版本不符合!需要Qt4.6.2或者更新的版本. - - - Mad Developer is not installed.<br>You will not be able to deploy to this device. - Mad Developer未安装.<br>您将无法在该设备上部署. - - - %1 is not installed.<br>You will not be able to deploy to this device. - 没有安装 %1 .<br>您将无法部署到此设备. - - - Please switch the device to developer mode via Settings -> Security. - 请通过 设置-> 安全 选项来切换设备到开发模式。 - - - Error retrieving list of used ports: %1 - 无法搜索到已使用的端口: %1 - - - All specified ports are available. - 所有指定的端口都可用。 - - - The following supposedly free ports are being used on the device: - 以下有可能可使用的端口已经被设备使用: - - - Device configuration okay. - 设备配置完毕. - - - Close - 关闭 - - - Device configuration test failed: Unexpected output: -%1 - 设备配置测试失败:意外的输出 -%1 - - - Hardware architecture: %1 - - 硬件架构:%1 - - - - Kernel version: %1 - - 内核版本:%1 - - - - Device configuration successful. - - 设备成功配置. - - - - No Qt packages installed. - 没有安装Qt包. - - - List of installed Qt packages: - 已经安装的Qt包列表: - - - Start Maemo Emulator - 启动Maemo模拟器 - - - Stop Maemo Emulator - 停止Maemo模拟器 - - - Package Creation - 生成包 - - - No Version Available. - 没有可用的版本. - - - Could not read icon - 无法调入图标 - - - Images - 图片 - - - Choose Image - 选择图片 - - - Choose Image (will be scaled to 48x48 pixels if necessary) - 选择图像(会缩放到 48x48 像素, 如果需要) - - - Could Not Set New Icon - 无法设置新图标 - - - Could not set project name. - 无法设置项目名称。 - - - Could not set package name for project manager. - 无法为项目管理器设置包的名称。 - - - Could not set project description. - 无法设置项目描述。 - - - <b>Create Package:</b> - <b>创建 包:</b> - - - (Packaging disabled) - (禁止打包) - - - Could Not Set Version Number - 无法设置版本号 - - - Choose a local file - 选择一个本地文件 - - - File already in package - 文件已经存在于包中 - - - Run configuration name: - 运行配置名称: - - - Fetch Device Environment - 获取设备环境 - - - <a href="%1">Manage device configurations</a> - <a href="%1">管理Maemo设备配置</a> - - - <a href="%1">Set Debugger</a> - <a href="%1">设置调试器</a> - - - Device configuration: - 设备配置: - - - Executable on host: - 主机上的执行档: - - - Executable on device: - 设备上的执行档: - - - C++ only - 只是C++ - - - QML only - 只是QML - - - C++ and QML - C++和QML - - - Debugging type: - 调试类型: - - - Use remote GDB - 使用远程 GDB - - - Use remote GDB server - 使用远程 GDB 服务器 - - - <b>Debugging details:</b> Use GDB - <b>调试详细信息:</b> 使用GDB - - - <b>Debugging details:</b> Use GDB server - <b>调试详细信息:</br>使用gdb 服务器 - - - Use remote gdb - 使用远程gdb - - - Use remote gdbserver - 使用远程gdbserver - - - Choose directory to mount - 选择挂载的目录 - - - <b>Debugging details:</b> Use gdb - <b>调试详细信息:</br>使用gdb - - - <b>Debugging details:</b> Use gdbserver - <b>调试详细信息:</br>使用gdbserver - - - Cancel Fetch Operation - 取消获取操作 - - - Device error - 设备错误 - - - Fetching environment failed: %1 - 获取环境失败:%1 - - - No local directories to be mounted on the device. - 没有本地目录将被挂载到设备. - - - One local directory to be mounted on the device. - 一个本地目录将被挂载到设备. - - - %n local directories to be mounted on the device. - Note: Only mountCount>1 will occur here as 0, 1 are handled above. - - %n个本地目录将被挂载到设备上. - - - - Device Configuration: - 设备配置: - - - Simulator: - 模拟器: - - - New Device Configuration %1 - Standard Configuration name with number - 新设备配置%1 - - - Choose public key file - 选择公钥文件 - - - Public Key Files(*.pub);;All Files (*) - 选择公钥文件(*.pub);;所有文件 (*) - - - Could not read public key file '%1'. - 无法读取公钥文件 '%1'. - - - Key deployment failed: %1. - 部署密钥失败:%1. - - - Stop deploying - 停止部署 - - - Deploy Public Key ... - 部署公钥... - - - Deployment Failed - 部署失败 - - - Choose Public Key File - 选择公钥文件 - - - Stop Deploying - 停止部署 - - - Key deployment failed: %1 - 密钥部署失败:%1 - - - Deployment Succeeded - 部署成功 - - - Key was successfully deployed. - 部署密钥成功. - - - Deploy Key ... - 部署公钥... - - - Deploy Public Key - 展开公钥 - - - Save public key file - 保存公钥文件 - - - Save private key file - 保存私钥文件 - - - Save Public Key File - 保存公钥文件 - - - Save Private Key File - 保存私钥文件 - - - Error writing file - 写文件时发生错误 - - - Could not write file '%1': - %2 - 无法写入文件 '%1': - %2 - - - Error in cryptography backend: %1 - 后台加密发生错误:%1 - - - - RemoteLinux - - Could not find make command '%1' in the build environment - 在构建环境中找不到'%1'命令 - - - Package Modified - 包修改完成 - - - Packages Modified - 包修改完成 - - - Ignore patching for this packaging step. - 忽略打补丁这个打包过程。 - - - No certificate file specified. Please specify one in the project settings. - 没有指定验证文件。请在项目设置中选一个。 - - - Certificate file "%1" does not exist. Please specify an existing certificate file in the project settings. - 验证文件"%1" 不存在.请在项目设置中指定一个存在的验证文件. - - - No key file specified. Please specify one in the project settings. - 没有指定密钥。请在项目设置中设置一个。 - - - Key file "%1" does not exist. Please specify an existing key file in the project settings. - 密钥文件"%1" 不存在.请在项目设置中指定一个存在的密钥文件. - - - The package created will not install on a device as some of the defined capabilities are not supported by the certificate: %1 - 由于一些权限不被验证支持,所以创建的包将不会被安装到设备上: %1 - - - The process "%1" exited normally. - 进程"%1"正常退出. - - - The process "%1" exited with code %2. - 进程"%1"退出,退出代码 %2 。 - - - The process "%1" crashed. - 进程"%1"崩溃。 - - - Could not start process "%1" in %2 - 无法在%2启动进程'%1' - - - Starting: "%1" %2 in %3 - - 正在启动: "%1" %2 在 %3 - - - - RemoteLinux - - self-signed - 自签名 - - - signed with certificate %1 and key file %2 - 签名使用证书 %1 和密钥 %2 - - - Default - 默认 - - - SDK Location - SDK 路径 - - - Choose Qt folder - 选择Qt文件夹 - - - Step 1 of 2: Choose GnuPoc folder - 步骤1/2:选择GnuPoc文件夹 - - - Step 2 of 2: Choose Qt folder - 步骤2/2:选择Qt文件夹 - - - Adding GnuPoc - 添加GnuPoc - - - GnuPoc and Qt folders must not be identical. - GnuPoc 和 Qt folders 不能为相同文件夹. - - - - QmakeProjectManager - - Evaluating - 评估中 - - - No Qt version set in kit. - 构建套件中未设置Qt版本。 - - - The .pro file '%1' does not exist. - .pro文件 '%1'不存在。 - - - The .pro file '%1' is not part of the project. - .pro文件 '%1' 不是项目的一部分。 - - - The .pro file '%1' could not be parsed. - 无法解析.pro文件 '%1'。 - - - - QtSupport - - No qmake path set - 没有设置qmake路径 - - - qmake does not exist or is not executable - qmake不存在或者不可执行 - - - Qt version has no name - 没有设置Qt版本名称 - - - <unknown> - <未知> - - - System - 系统 - - - Qt %1 in PATH (%2) - 在 PATH (%2)中的Qt %1 - - - Qt %1 (%2) - Qt %1 (%2) - - - Qt version is not properly installed, please run make install - Qt没有被正确安装,请运行make install - - - Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong? - 无法确定Qt安装的二进制所在的路径,或许qmake的路径设置出现了错误? - - - The default mkspec symlink is broken. - 默认的mkspec 符号链接错误。 - - - ABI detection failed: Make sure to use a matching compiler when building. - ABI 检测失败: 确保构建时使用一个匹配的编译器。 - - - Non-installed -prefix build - for internal development only. - -prefix构建未安装 - 仅供内部使用。 - - - Failed to detect the ABI(s) used by the Qt version. - 无法检测Qt版本使用的ABI(s). - - - ABI detection failed: Make sure to use a matching tool chain when building. - ABI 检测失败: 构建时确保使用一个匹配的工具链. - - - No qmlscene installed. - qmlscene未安装。 - - - No qmlviewer installed. - 未安装qmlviewer。 - - - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured - "Open C/C++ plugin" 没有安装到Symbian SDK 或者Symbian SDK路径没有配置对 - - - SBS was not found. - 未找到SBS . - - - Desktop - Qt Version is meant for the desktop - 桌面 - - - Maemo - Qt Version is meant for Maemo5 - Maemo - - - Harmattan - Qt Version is meant for Harmattan - Harmattan - - - Qt Simulator - Qt Version is meant for Qt Simulator - Qt模拟器 - - - unkown - No idea what this Qt Version is meant for! - 未知 - - - Qt version %1, using mkspec %2 (%3) - Qt 版本%1, 使用mkspec %2 (%3) - - - Cannot determine the installation path for Qt version '%1'. - 无法确定Qt版本'%1'的安装路径。 - - - The Qt Version has no tool chain. - 此Qt 版本没有工具链。 - - - Building helper(s) with toolchain '%1' ... - - 使用工具链'%1'构建助手 ... - - - - Building helper(s) with toolchain '%1'... - - 使用工具链 '%1' 构建"助手"... - - - Build failed. - 构建失败. - - - Build succeeded. - 构建成功。 - - - The Qt Version has no toolchain. - 此Qt 版本没有工具链. - - - Qt for WinCE - Qt Version is meant for WinCE - Qt for WinCE - - - Embedded Linux - Qt Version is used for embedded Linux development - 嵌入式 Linux - - - - QmakeProjectManager - - Mobile Qt Application - 移动Qt应用 - - - Creates a Qt application optimized for mobile devices with a Qt Designer-based main window. - -Preselects Qt for Simulator and mobile targets if available - 创建一个基于Qt设计师的主窗体应用,为移动设备优化。 - -预选可用的用于模拟器和移动目标平台的Qt版本 - - - Creates a mobile Qt Gui Application with one form. - 创建有一个界面的移动Qt Gui应用. - - - Modules - 模块 - - - Kits - 构建套件(Kit) - - - Qt Creator can set up the following targets: - Qt Creator可以设置如下目标: - - - Qt Version - Qt版本 - - - Status - 状态 - - - Directory - 目录 - - - Add shadow build location... - 添加 shadow build 路径... - - - Import - Is this an import of an existing build or a new one? - 导入 - - - New - Is this an import of an existing build or a new one? - 新建 - - - Choose a directory to scan for additional shadow builds - 为额外的shadow build选择一个需要扫描的目录 - - - No builds found - 没有找到构建 - - - No builds for project file "%1" were found in the folder "%2". - %1: pro-file, %2: directory that was checked. - 在文件夹 "%2"中没有找到项目文件 "%1"的构建. - - - Check All - 选中全部 - - - Check all Qt versions - 选中全部Qt版本 - - - Check only this version - 只选中该版本 - - - Check all versions - 选中全部版本 - - - Uncheck all versions - 取消选中所有版本 - - - debug and release - We are going to build debug and release - 调试和发布 - - - debug - Debug build - 调试 - - - release - release build - 发布 - - - <br>using %1 (%2) - %1: qmake used (incl. full path), %2: "debug", "release" or "debug and release" - <br>使用%1(%2) - - - New - Is this an import of an existing build or a new one? - 新建 - - - Build Directory - 构建目录 - - - Import existing shadow build... - 导入存在的shadow构建... - - - Import Existing Shadow Build... - 导入存在的shadow build... - - - Uncheck all Qt versions - 反选所有Qt版本 - - - Uncheck All - 取消选中 - - - <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>没有找到有效的qt 版本.</b><br> 请在 工具/选项中添加或者使用SDK中的工具. - - - <html><head/><body><p><b>No valid Qt versions found.</b></p><p>Please add a Qt version in <i>Tools/Options</i> or via the maintenance tool of the SDK.</p></body></html> - <html><head/><body><p><b>没有有效的Qt版本.</b></p><p> 请添加Qt 版本在<i>工具/选项</i> 或者使用SDK的管理工具.</p></body></html> - - - Qt Unit Test - Qt单元测试 - - - Creates a QTestLib-based unit test for a feature or a class. Unit tests allow you to verify that the code is fit for use and that there are no regressions. - 为某个类或某功能创建一个基于QTestLib的单元测试。单元测试让您验证代码可用并且没有倒退。 - - - Creates a Qt Unit Test. - 创建一个Qt单元测试. - - - This wizard generates a Qt unit test consisting of a single source file with a test class. - 本向导将创建一个Qt单元测试,其中包括一个含有测试类的源文件。 - - - - Subversion::Internal::SubversionEditor - - Annotate revision "%1" - 注释修订版本 "%1" - - - - TextEditor::TextEditorPlugin - - Creates a text file (.txt). - 创建一个文本文件(.txt). - - - Text File - 文本文件 - - - General - 概要 - - - Ctrl+Space - Ctrl+Space - - - Meta+Space - Meta+Space - - - Triggers a quick fix in this scope - 在当前范围内触发快速修正 - - - Alt+Return - Alt+Return - - - - VcsBase::VcsBasePlugin - - Version Control - 版本控制 - - - The file '%1' could not be deleted. - 文件 '%1' 无法被删除。 - - - Choose repository directory - 选择分支目录 - - - Choose Repository Directory - 选择代码仓库目录 - - - The directory '%1' is already managed by a version control system (%2). Would you like to specify another directory? - 目录 '%1' 已经被一个版本控制系统(%2)管理。您想要指定另一个目录吗? - - - Repository already under version control - 代码仓库已经处于版本控制下 - - - Repository Created - 仓库创建成功 - - - Repository Creation Failed - 仓库创建失败 - - - Error: Executable timed out after %1s. - 错误:可执行档在 %1 秒后超时。 - - - There is no patch-command configured in the common 'Version Control' settings. - 在'版本控制' 设置中没有设定patch-command。 - - - Unable to launch '%1': %2 - 无法启动'%1': %2 - - - A timeout occurred running '%1' - 运行'%1'发生超时 - - - '%1' crashed. - '%1' 崩溃。 - - - '%1' failed (exit code %2). - '%1' 失败 (退出代码 %2)。 - - - Repository created - 代码仓库被创建 - - - A version control repository has been created in %1. - 在%1处创建版本控制仓库。 - - - Repository creation failed - 创建代码仓库失败 - - - A version control repository could not be created in %1. - 在%1处版本控制仓库无法被创建。 - - - - trk::Launcher - - Cannot open remote file '%1': %2 - 无法打开远程文件'%1': %2 - - - Cannot open '%1': %2 - 无法打开'%1' : %2 - - - No device is connected. Please connect a device and try again. - 没有设备连接。请连接设备后再试。 - - - Unable to acquire a device for port '%1'. It appears to be in use. - 无法监听设备端口'%1',看起来此端口正在被使用. - - - - AboutDialog - - About Bauhaus - AboutDialog - 关于Bauhaus - - - - StartExternalQmlDialog - - Start Simultaneous QML and C++ Debugging - 启动QML和C++的同步调试 - - - Debugging address: - 调试地址: - - - Debugging port: - 调试端口: - - - Project: - 项目: - - - <No project> - <没有项目> - - - Viewer path: - 查看器路径: - - - Viewer arguments: - 查看器参数: - - - To switch languages while debugging, go to Debug->Language menu. - 调试中需要切换语言,请进入调试->语言菜单. - - - - RemoteLinux - - Package contents: - 软件包内容: - - - Check this if you want the files below to be deployed directly. - 如果您希望以下文件被直接展开,请选中此项. - - - Skip packaging step - 跳过打包步骤 - - - Version number: - 版本号: - - - Major: - 主版本: - - - Minor: - 副版本: - - - Patch: - 补丁: - - - Add File to Package - 添加文件到包 - - - Remove File from Package - 从包中移除文件 - - - <b>Version number:</b> - <b>版本号</b> - - - <b>Adapt Debian file:</b> - <b>适应 Debian 文件:</b> - - - Edit - 编辑 - - - <b>Package Manager icon:</b> - <b>包管理器图标</b> - - - Package name: - 包名称: - - - Package version: - 包版本: - - - Name to be displayed in Package Manager: - 在包管理器里显示的名称: - - - Icon to be displayed in Package Manager: - 在包管理器里显示的图标: - - - Size is 48x48 pixels - 尺寸是48x48像素 - - - Adapt Debian file: - 插入 Debian 文件: - - - Edit spec file - 编辑spec文件 - - - Edit... - 编辑... - - - - Utils::FancyMainWindow - - Locked - 锁定 - - - Reset to Default Layout - 重置为默认布局 - - - Reset to default layout - 重置为默认布局 - - - - GenericSshConnection - - Could not connect to host. - 无法连接主机. - - - Error in cryptography backend: %1 - 后台加密发生错误:%1 - - - - Core::InteractiveSshConnection - - Error sending input - 发送输入信息错误 - - - - Core::SftpConnection - - Error setting up SFTP subsystem - 设置 SFTP 子系统发生错误 - - - Could not open file '%1' - 无法打开文件 '%1' - - - Could not uplodad file '%1' - 无法上传文件 '%1' - - - Could not copy remote file '%1' to local file '%2' - 无法复制远程文件 '%1' 为本地文件 '%2' - - - Could not create remote directory - 无法创建远程目录 - - - Could not remove remote directory - 无法删除远程目录 - - - Could not get remote directory contents - 无法获得远程目录内容 - - - Could not remove remote file - 无法删除远程文件 - - - Could not change remote working directory - 无法改变远程工作目录 - - - - SshKeyGenerator - - Error creating temporary files. - 创建临时文件失败. - - - Error generating keys: %1 - 生成密钥失败:%1 - - - Error reading temporary files. - 读取临时文件失败. - - - Error generating key: %1 - 生成密钥失败:%1 - - - Password for Private Key - 私钥密码 - - - It is recommended that you secure your private key -with a password, which you can enter below. - 推荐使用密码保护 -您的私钥, 在下面输入。 - - - Encrypt Key File - 加密密钥文件 - - - Do Not Encrypt Key File - 不要加密密钥文件 - - - Encrypt key file - 加密密钥文件 - - - Do not encrypt key file - 不要加密密钥文件 - - - - CodePaster - - Cannot open %1: %2 - 无法打开%1 : %2 - - - %1 does not appear to be a paster file. - %1似乎不是一个粘贴(paster)文件。 - - - Error in %1 at %2: %3 - 文件 %1 在 %2发生错误: %3 - - - Please configure a path. - 请配置一个路径. - - - Unable to open a file for writing in %1: %2 - 写入方式打开文件%1失败: %2 - - - Pasted: %1 - 粘贴了 "%1" - - - Fileshare - 文件共享 - - - %1 - Configuration Error - %1 - 配置错误 - - - Settings... - 设定... - - - - ProjectExplorer::Internal::SessionNameInputDialog - - Enter the name of the session: - 输入会话的名称: - - - Switch to - 切换到 - - - - Qml::Internal::EngineComboBox - - Engine %1 - engine number - 引擎 %1 - - - - Qml::Internal::StartExternalQmlDialog - - <No project> - <没有项目> - - - - QmlJSEditor - - Failed to preview Qt Quick file - 预览Qt Quick文件失败 - - - Could not preview Qt Quick (QML) file. Reason: -%1 - 无法预览Qt Quick (QML) 文件. 原因: -%1 - - - - QmakeProjectManager - - Local File Path - 本地文件路径 - - - Remote File Path - 远程文件路径 - - - Creating package file ... - 创建包文件... - - - Cannot open MADDE config file '%1'. - 无法打开MADDE配置文件'%1'. - - - Packaging Error: Cannot open file '%1'. - 打包错误:无法打开文件'%1'. - - - Packaging Error: Cannot write file '%1'. - 打包错误:无法写入文件'%1'. - - - Packaging Error: Could not create directory '%1'. - 打包错误:无法创建文件夹'%1'. - - - Packaging Error: Could not replace file '%1'. - 打包错误:无法覆盖文件'%1'. - - - Packaging Error: Could not copy '%1' to '%2'. - 打包错误:无法复制文件'%1'到'%2'. - - - Package created. - 打包完成. - - - Package Creation: Running command '%1'. - 生成包:运行命令'%1'. - - - Packaging failed. - 打包失败. - - - Packaging for Maemo - 正在为Maemo打包 - - - Package up to date. - 包已更新. - - - Could not move package files from %1 to %2. - 无法将包文件从%1移动到%2. - - - Could not move package file from %1 to %2. - 无法移动包文件从%1 到%2. - - - Packaging failed: Foreign debian directory detected. - 打包失败:检测到外部debian目录. - - - Could not remove directory '%1'. - 无法删除目录'%1'. - - - Could not create Debian directory '%1'. - 无法创建Debian目录'%1'. - - - Could not copy file '%1' to '%2' - 无法拷贝文件‘%1’到'%2' - - - Error: Could not create create file '%1'. - 错误:无法创建文件'%1'. - - - Packaging error: Could not start command '%1'. Reason: %2 - 打包错误:无法执行命令'%1' 原因'%2' - - - Reason: %1 - 原因 %1 - - - Exit code: %1 - 退出代码: %1 - - - Could not remove directory '%1': %2 - 无法删除目录'%1': %2 - - - Error: Could not create file '%1'. - 错误:无法创建文件'%1'. - - - Packaging Error: Command '%1' timed out. - 打包错误:命令%1'超时. - - - Packaging Error: Command '%1' failed. - 打包错误:命令%1'失败. - - - Output was: - 输出是: - - - - Debugger - - Unable to start pdb '%1': %2 - 无法启动 pdb '%1': %2 - - - Adapter start failed - 适配器启动失败 - - - Python Error - Python错误 - - - '%1' contains no identifier - '%1' 不包含标识符 - - - String literal %1 - 字符串 %1 - - - Cowardly refusing to evaluate expression '%1' with potential side effects - 表达式 '%1' 有潜在的副作用所以无法计算其值 - - - Pdb I/O Error - Pdb I/O 错误 - - - The Pdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. - Pdb 进程启动失败。可能是调用程序 '%1' 缺失,或者您没有足够的权限调用此程序。 - - - The Pdb process crashed some time after starting successfully. - Pdb 进程在正常启动后崩溃。 - - - An error occurred when attempting to write to the Pdb process. For example, the process may not be running, or it may have closed its input channel. - 尝试写入 Pdb 进程时发生错误。例如,进程可能不在运行或者它关闭了自己的输入通道。 - - - An error occurred when attempting to read from the Pdb process. For example, the process may not be running. - 尝试从 Pdb 进程读取时发生错误。例如,进程可能不在运行。 - - - An unknown error in the Pdb process occurred. - Pdb 进程发生了未知错误。 - - - - ProjectExplorer::Internal::TargetSelector - - Run - 运行 - - - Build - 构建 - - - - QmlDesigner::PropertyEditor - - Properties - 属性 - - - Invalid Id - 无效标识符 - - - %1 is an invalid id - ID %1非法 - - - %1 already exists - %1已存在 - - - - RemoteLinux - - The Symbian SDK and the project sources must reside on the same drive. - 塞班SDK和项目源文件必须在同一分区上。 - - - The Symbian SDK was not found for Qt version %1. - Qt版本 %1 没有找到塞班SDK。 - - - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. - 在塞班SDK中没有安装"Open C/C++ 插件"或者塞班SDK的路径对Qt版本 %1 设置错误。 - - - The Symbian toolchain does not handle special characters in a project path well. - 塞班的工具链无法处理项目路径中的特殊字符。 - - - The Symbian tool chain does not handle spaces in the project path '%1'. - 塞班工具链不能处理在项目路径中的空间'%1'. - - - The Symbian tool chain does not handle special characters in the project name '%1' well. - 塞班工具链不能很好处理在项目路径中的空间'%1'. - - - - QtSupport - - The Qt version is invalid: %1 - %1: Reason for being invalid - Qt版本无效: %1 - - - The qmake command "%1" was not found or is not executable. - %1: Path to qmake executable - qmake命令 "%1" 没有找到或不可执行。 - - - - QmakeProjectManager - - Qmake does not support build directories below the source directory. - Qmake不支持源文件目录下的构建目录。 - - - The build directory needs to be at the same level as the source directory. - 构建目录必须和源文件目录为同级目录。 - - - Warning: Cannot build QMLObserver; Qt version must be 4.7.1 or higher. - 警告:无法构建QMLObserver;Qt必须为4.7.1或更高版本. - - - Warning: Cannot build qmldump; Qt version must be 4.7.1 or higher. - 警告:无法构建qmldump.Qt必须为4.7.1或更高版本. - - - - CppTools::QuickFix - - Rewrite Using %1 - 使用 %1 重写 - - - Swap Operands - 交换操作数 - - - Rewrite Condition Using || - 使用 || 重写条件 - - - Split Declaration - 分离声明 - - - Add Curly Braces - 添加大括号 - - - Move Declaration out of Condition - 将声明移到条件之外 - - - Split if Statement - 分离if语句 - - - Enclose in %1(...) (Qt %2) - 封装在%1(...) (Qt %2) - - - Enclose in %1(...) - 封装在 %1(...) - - - Convert to String Literal - 转换为文本字符串 - - - Convert to Character Literal and Enclose in QLatin1Char(...) - 转换为字符并用QLatin1Char(...)封装 - - - Convert to Character Literal - 转换为文本字符 - - - Add #include %1 - 添加#include %1 - - - Switch with Previous Parameter - 与上一个参数切换 - - - Switch with Next Parameter - 与下一个参数切换 - - - Enclose in QLatin1Char(...) - 用QLatin1Char(...)封装 - - - Enclose in QLatin1String(...) - 用QLatin1String(...)封装 - - - Mark as Translatable - 标记为可翻译 - - - Convert to Objective-C String Literal - 转换为Objective-C字符串 - - - Convert to Hexadecimal - 转换为16进制 - - - Convert to Octal - 转换为8进制 - - - Convert to Decimal - 转换为10进制 - - - Add Local Declaration - 添加本地声明 - - - Convert to Camel Case - 转换为驼峰命名法 - - - Complete Switch Statement - 完成Switch语句 - - - #include Header File - #include头文件 - - - Add local Declaration - 添加本地声明 - - - Convert to Camel Case ... - 转换为驼峰命名法... - - - Use Fast String Concatenation with % - 用%实现快速字符串连接 - - - - GenericProjectManager::Internal::Manager - - Failed opening project '%1': Project already open - 打开项目 '%1'失败:项目已经被打开 - - - - QmlDesigner::FormEditorWidget - - Snap to guides (E) - 向导快照(E) - - - Show bounding rectangles (A) - 显示外围边框(A) - - - Show bounding rectangles and stripes for empty items (Press Key A) - 显示空项的外围边框(按键 A) - - - Only select items with content (S) - 仅选择有内容的项目 (S) - - - width - 宽度 - - - height - 高度 - - - Reset view (R) - 重置窗口(R) - - - - QmlDesigner::InvalidArgumentException - - Failed to create item of type %1 - 无法创建类型为 %1的项目 - - - - InvalidIdException - - Ids have to be unique: - 标识符必须唯一: - - - Invalid Id: - 无效标识符: - - - -Only alphanumeric characters and underscore allowed. -Ids must begin with a lowercase letter. - -只允许数字字母和下划线。 -标识符必须以小写字母开头。 - - - Only alphanumeric characters and underscore allowed. -Ids must begin with a lowercase letter. - 仅允许字母数字和下划线。 -Id必须以小写字母开头。 - - - Ids have to be unique. - Id 必须唯一。 - - - Invalid Id: %1 -%2 - 无效 Id: %1 -%2 - - - - QmlDesigner::QmlModelView - - Invalid Id - 无效标识符 - - - - ContextPaneTextWidget - - Text - 文本 - - - Style - 风格 - - - Normal - 正常 - - - ... - ... - - - - BorderImageSpecifics - - Image - 图像 - - - Source - 来源 - - - Source Size - 源文件尺寸 - - - Source size - 源尺寸 - - - BorderImage - 边界图片 - - - Left - 左端 - - - Right - 右端 - - - - emptyPane - - none or multiple items selected - 没有选中或选中多项 - - - None or multiple items selected. - 没有选中或选中多项. - - - - ExpressionEditor - - Expression - 表达式 - - - - Extended - - Effect - 效果 + Could not find Core plugin in %1 + - Blur Radius: - 模糊半径: - - - Pixel Size: - 像素大小: - - - x Offset: - x 偏移: - - - y Offset: - y 偏移: - - - - ExtendedFunctionButton - - Reset - 重置 - - - Set Expression - 设置表达式 - - - - FontGroupBox - - Font - 字体 - - - Size - 字号 - - - Font style - 字体风格 - - - Font Style - 字体风格 - - - Style - 风格 - - - - Geometry - - Geometry - 位置信息 - - - Position - 位置 - - - Size - 大小 - - - Width - 宽度 - - - Height - 高度 - - - Lock aspect ratio - 锁定外观比率 - - - - ImageSpecifics - - Image - 图像 - - - Source - - - - Fill mode - 填充模式 - - - Source size - 源尺寸 - - - Painted size - 绘制尺寸 - - - Fill Mode - 填充模式 - - - Aliasing - anti-alias - 边缘锯齿 - - - Smooth - 平滑 - - - Source Size - 源文件尺寸 - - - Painted Size - 绘制尺寸 - - - - Layout - - Layout - 页面布局 - - - Anchors - 锚点 - - - Set anchors - 设置锚点 - - - Setting anchors in states is not supported. - 在不支持的状态下设置锚点. - - - Target - 目标 - - - Margin - 页面空白 - - - - Modifiers - - Manipulation - 操作 - - - Rotation - 旋转 - - - - RectangleColorGroupBox - - Colors - 颜色 - - - Stops - 停止点 - - - Gradient stops - 渐变停止点 - - - Gradient Stops - 渐变停止点 - - - Rectangle - 矩形 - - - Border - 边框 - - - - RectangleSpecifics - - Rectangle - 矩形 - - - Border width - 边框宽度 - - - Border has to be solid to change width - 边框必须是实线才能改变宽度 - - - Border - 边框 - - - Radius - 半径 - - - - StandardTextColorGroupBox - - Color - 颜色 - - - Text - 文本 - - - Style - 风格 - - - Selection - 选择 - - - Selected - 选中 - - - - StandardTextGroupBox - - Text - 文本 - - - Wrap mode - 折行模式 - - - Wrap Mode - 折行模式 - - - Alignment - 对齐方式 - - - - - <上下文注释> - - - Aliasing - 别名 - - - Smooth - 平滑 - - - - Switches - - special properties - 特殊属性 - - - layout and geometry - 布局和位置 - - - Geometry - 位置 - - - layout - 布局 - - - Special properties - 特殊属性 - - - Layout - 布局 - - - Advanced properties - 高级属性 - - - advanced properties - 高级属性 - - - Advanced - 高级 - - - - TextEditSpecifics - - Text Edit - 编辑文本 - - - Format - 格式 - - - - TextInputGroupBox - - Text Input - 输入文本 - - - Input mask - 输入掩码 - - - Echo mode - 回显模式 - - - Pass. char - 密码字符 - - - Character displayed when users enter passwords. - 输入密码时显示明文. - - - Read only - 只读 - - - Cursor visible - 光标可见 - - - Active focus on press - 点击后设置焦点 - - - Auto scroll - 自动滚动 - - - Input Mask - 输入掩码 - - - Echo Mode - 回显模式 - - - Pass. Char - 密码字符 - - - Password Character - 密码字符 - - - Flags - 标志 - - - Read Only - 只读 - - - Cursor Visible - 光标可见 - - - Focus On Press - 点击后设置焦点 - - - Auto Scroll - 自动滚动 - - - - Transformation - - Transformation - 变形 - - - Origin - 原始 - - - Top Left - 顶端左侧 - - - Top - 顶端 - - - Top Right - 顶端右侧 - - - Top left - 顶端左侧 - - - Top right - 顶端右侧 - - - Left - 左边 - - - Center - 中心 - - - Right - 右边 - - - Bottom left - 底端左侧 - - - Bottom right - 底端右侧 - - - Bottom Left - 底端左侧 - - - Bottom - 底端 - - - Bottom Right - 底端右侧 - - - Scale - 缩放比例 - - - Rotation - 旋转 - - - - Type - - Type - 类型 - - - - Visibility - - Visibility - 可见性 - - - Is visible - 可见的 - - - Visible - 可见 - - - isVisible - 可见的 - - - Smooth - 平滑 - - - Clip - 剪贴 - - - Opacity - 不透明度 + Core plugin is disabled. + - WebViewSpecifics - - WebView - 网页视图 - + ApplicationWindowSpecifics - Url - Url + Window + Title - 标题 + 标题 - Pref Width - 首选宽度 - - - Preferred Width - 首选宽度 - - - Pref Height - 首选高度 - - - Preferred Height - 首选高度 - - - Scale - 缩放比例 - - - Contents Scale - 内容比例 - - - Page Height - 页面高度 - - - - Core::HelpManager - - Unfiltered - 未过滤 - - - - FakeVim::Internal::FakeVimHandler::Private - - [New] - [新建] - - - Not an editor command: %1 - 不是一个编辑器命令: %1 - - - - QmlDesigner::ContextPaneWidget - - Disable permanently - 永久禁止 - - - - QmakeProjectManager - - Qemu finished with error: Exit code was %1. - Qemu 在有错误的情况下结束: 退出代码 %1. - - - Qemu failed to start: %1 - Qemu 启动失败:%1 - - - Qemu crashed - Qemu崩溃了 - - - Qemu error - Qemu 错误 - - - - ContextPaneWidgetBorderImage - - Form - 界面 - - - Stretch vertically. Scales the image to fit to the available area. - 竖直拉伸,将图片在竖直方向拉伸以填满可用区域。 - - - Repeat vertically. Tiles the image until there is no more space. May crop the last image. - 垂直方向重复显示,平铺图片直到空间填满。可能会截断最后一张图片。 - - - Round. Like Repeat, but scales the images down to ensure that the last image is not cropped. - 环绕。类似重复,但会缩小图像确保最后一块图像不会被裁剪。 - - - Repeat horizontally. Tiles the image until there is no more space. May crop the last image. - 水平方向重复显示,平铺图片直到空间填满。可能会截断最后一张图片。 - - - Stretch horizontally. Scales the image to fit to the available area. - 水平拉伸,将图片水平拉伸以适应可用区域。 - - - 10 x 10 - 10 x 10 - - - - ContextPaneWidgetImage - - Form - 界面 - - - The image is scaled to fit - 图像被缩放到合适大小 - - - The image is stretched horizontally and tiled vertically - 图像被水平拉伸且垂直平铺 - - - The image is stretched vertically and tiled horizontally - 图像被垂直拉伸且水平平铺 - - - The image is duplicated horizontally and vertically - 图像在水平和垂直上被复制 - - - The image is scaled uniformly to fit without cropping - 图像被一致地缩放到合适大小,不裁剪 - - - The image is scaled uniformly to fill, cropping if necessary - 图像被一致地缩放到合适大小,在必要时裁剪 - - - 10 x 10 - 10 x 10 - - - - ContextPaneWidgetRectangle - - Form - 界面 - - - Gradient - 渐变填充 + Size + Color - 颜色 + 颜色 - ... - ... + Visible + 可见 - Border - 边框 + Opacity + 不透明度 - EasingContextPane + Autotest - Dialog - 对话框 + Testing + - Play simulation - 运行模拟器 + &Tests + - Easing - 弹性弯曲 + Run &All Tests + - Type of easing curve - 弹性曲线类型 + Run All Tests + - Subtype - 子类型 + Ctrl+Meta+T, Ctrl+Meta+A + - Acceleration or deceleration of easing curve - 弹性曲线的加速或减速 + Alt+Shift+T,Alt+A + - Duration - 持续时间 + Run All Tests Without Deployment + - Duration of animation - 动画持续时间 + Ctrl+Meta+T, Ctrl+Meta+E + - INVALID - 无效 + Alt+Shift+T,Alt+E + + + + &Run Selected Tests + + + + Run Selected Tests + + + + Ctrl+Meta+T, Ctrl+Meta+R + + + + Alt+Shift+T,Alt+R + + + + &Run Selected Tests Without Deployment + + + + Ctrl+Meta+T, Ctrl+Meta+W + + + + Alt+Shift+T,Alt+W + + + + Run &Failed Tests + + + + Run Failed Tests + + + + Ctrl+Meta+T, Ctrl+Meta+F + + + + Alt+Shift+T,Alt+F + + + + Run Tests for &Current File + + + + Run Tests for Current File + + + + Ctrl+Meta+T, Ctrl+Meta+C + + + + Alt+Shift+T,Alt+C + + + + Re&scan Tests + + + + Ctrl+Meta+T, Ctrl+Meta+S + + + + Alt+Shift+T,Alt+S + + + + &Run Test Under Cursor + + + + Run Test Under Cursor Without Deployment + + + + &Debug Test Under Cursor + + + + Debug Test Under Cursor Without Deployment + + + + Selected test was not found (%1). + + + + Boost Test + + + + Executing test case %1 + + + + Executing test suite %1 + + + + Test execution took %1 + + + + Test suite execution took %1 + + + + Executing test module %1 + + + + Test module execution took %1 + + + + %1 failures detected in %2. + + + + %1 tests passed. + + + + No errors detected. + + + + Running tests exited with %1 + + + + Executable: %1 + + + + Running tests failed. +%1 +Executable: %2 + + + + Running tests without output. + + + + Log format: + + + + Report level: + + + + Seed: + + + + A seed of 0 means no randomization. A value of 1 uses the current time, any other value is used as random seed generator. + + + + Randomize + + + + Randomize execution order. + + + + Catch system errors + + + + Catch or ignore system errors. + + + + Floating point exceptions + + + + Enable floating point exception traps. + + + + Detect memory leaks + + + + Enable memory leak detection. + + + + parameterized + + + + fixture + + + + templated + + + + Catch Test + + + + Exception: + + + + Executing %1 "%2" + + + + %1 "%2" passed + + + + Expression passed + + + + Expression failed: %1 + + + + Finished executing %1 "%2" + + + + Number of resamples for bootstrapping. + ms - 毫秒 + 毫秒 - Amplitude - 振幅 + Abort after + - Amplitude of elastic and bounce easing curves - 弹性曲线振幅 + Aborts after the specified number of failures. + - Period - 周期 + Benchmark samples + - Easing period of an elastic curve - 弹性曲线的弹性周期 + Number of samples to collect while running benchmarks. + - Overshoot - 缓冲 + Benchmark resamples + - Easing overshoot for a back curve - 后弧的弹性缓冲 + Number of resamples used for statistical bootstrapping. + - - - ClassView::Internal::NavigationWidget - Form - 界面 + Confidence interval used for statistical bootstrapping. + - Show Subprojects - 显示子项目 + Benchmark confidence interval + - - - AttachTcfDialog - Start Debugger - 启动调试器 + Benchmark warmup time + - Host and port: - 主机和端口号: + Warmup time for each test. + - Architecture: - 体系结构: + Disable analysis + - Use server start script: - 使用服务器启动脚本: + Disables statistical analysis and bootstrapping. + - Server start script: - 服务器启动脚本: + Show success + - - - BreakpointDialog - Edit Breakpoint Properties - 编辑断点属性 + Show success for tests. + - Breakpoint type: - 断点类型: + Break on failure while debugging + - File name: - 文件名: + Turns failures into debugger breakpoints. + - Line number: - 行号: + Skip throwing assertions + - Use full path: - 使用完整路径: + Skips all assertions that test for thrown exceptions. + - Address: - 地址: + Visualize whitespace + - Function: - 函数: + Makes whitespace visible. + - Condition: - 条件: + Warn on empty tests + - Thread specification: - 线程信息: + Warns if a test section does not check any assertion. + - - - Help - Filter configuration - 过滤器设置 + Running tests for %1 + - Prefix: - 前缀: + Output on failure + - Limit to prefix - 前缀限制 + Output mode + - + - + + Default + 默认 - - - - + Verbose + 详细 - Double click to edit item. - 双击编辑元素. + Very Verbose + - Double-click to edit item. - 双击编辑元素。 + Repetition mode + - Edit Filter Configuration - 编辑过滤器配置 + Until Fail + - - - ImageViewer - Image Viewer - 图像查看器 + Until Pass + - Show background - 显示背景 + After Timeout + - Show outline - 显示大纲 + Count + - Fit image in the screen - 调整图像适应屏幕 + Number of re-runs for the test. + - Original size - 原始大小 + Schedule random + - Show Background - 显示背景 + Stop on failure + - Show Outline - 显示轮廓线 + Run tests in parallel mode using given number of jobs. + - Fit to Screen - 适应屏幕 + Jobs + - - - ComponentNameDialog - Dialog - 对话框 + Test load + - Component name: - 组件名: + Try not to start tests when they may cause CPU load to pass a threshold. + - Path: - 路径: + Threshold + - Choose... - 选择... + CTest + - - - QmlJSEditor - Form - 界面 + Repeat tests + - Qt Quick Toolbars - Qt Quick工具栏 + Run in parallel + - Always show Qt Quick Toolbar - 总是显示Qt Quick工具栏 + Google Test + - If enabled, the toolbar will remain pinned to an absolute position. - 如果启用,工具栏将被钉在固定位置。 + Enable or disable grouping of test cases by folder or GTest filter. +See also Google Test settings. + - Pin Qt Quick Toolbar - 钉住Qt Quick工具栏 + Running tests failed. + %1 +Executable: %2 + - Qt Quick ToolBar - Qt Quick工具栏 + (iteration %1) + - - - QmakeProjectManager - Library: - 库: + Repeating test suite %1 (iteration %2) + - Library file: - 库文件: + Entering test case %1 + - Include path: - 包含路径: + Execution took %1. + - Platform - 平台 + Iterations: + - Linux - Linux + A seed of 0 generates a seed based on the current timestamp. + - Mac - Mac + Run disabled tests + - Windows - Windows + Executes disabled tests when performing a test run. + - Symbian - Symbian + Shuffle tests + - Linkage: - 链接: + Shuffles tests automatically on every iteration by the given seed. + - Dynamic - 动态 + Repeats a test run (you might be required to increase the timeout to avoid canceling the tests). + - Static - 静态 + Throw on failure + - Mac: - Mac: + Turns assertion failures into C++ exceptions. + - Library - + Directory + 目录 - Framework - 框架 + GTest Filter + - Windows: - Windows: + Group mode: + - Library inside "debug" or "release" subfolder - debug或release子目录下的库 + Select on what grouping the tests should be based. + - Add "d" suffix for debug version - 为debug版本添加'd'作为后缀 + Active filter: + - Remove "d" suffix for release version - 移除release版本中的'd'后缀 + Set the GTest filter to be used for grouping. +See Google Test documentation for further information on GTest filters. + - Package: - 包: + <matching> + - - - QtQuickAppWizardSourcesPage - WizardPage - 向导页面 + <not matching> + - Main QML File - QML主文件 + Change GTest filter in use inside the settings. + - Generate a main.qml file - 生成一个main.qml文件 + typed + - Import an existing .qml file - 导入一个已存在的qml文件 + Active frameworks: + - - - HighlighterSettingsPage - Form - 界面 + Automatically run tests after build + - <html><head/><body> -<p>Highlight definitions are provided by the <a href="http://kate-editor.org/">Kate Text Editor</a>.</p></body></html> - <html><head/><body> -<p><a href="http://kate-editor.org/">Kate Text Editor</a>提供高亮定义</p></body></html> - - - Syntax Highlight Definition Files - 语义高亮定义文件 - - - Location: - 位置: - - - Use fallback location - 选择目录 - - - Behavior - 行为 - - - Alert when a highlight definition is not found - 当未找到定义时显示提示 - - - Ignored file patterns: - 被忽略的文件模式: - - - - ManageDefinitionsDialog - - Dialog - 对话框 - - - Definitions - 定义 - - - Select All - 全选 - - - Clear Selection - 清空选择 - - - Invert Selection - 反选 - - - Download Selected Definitions - 下载选中的定义 - - - - QmlEditorWidgets::ContextPaneWidget - - Hides this toolbar. - 隐藏这个工具条. - - - Pin Toolbar - 钉住工具栏 - - - Show Always - 总是显示 - - - Unpins the toolbar and moves it to the default position. - 解除工具栏停靠并移动到默认位置。 - - - Hides this toolbar. This toolbar can be permanently disabled in the options page or in the context menu. - 隐藏这个工具栏。该工具栏可在选项页或上下文菜单中永久禁用。 - - - - QmlEditorWidgets::ContextPaneWidgetImage - - double click for preview - 双击预览 - - - - QmlEditorWidgets::FileWidget - - Open File - 打开文件 - - - - QmlJS::Bind - - expected two numbers separated by a dot - 应为点号分隔的两个数字 - - - package import requires a version number - 导入包需要版本号 - - - file or directory not found - 文件或路径未找到 - - - - ProjectExplorer::BuildableHelperLibrary - - Cannot start process: %1 - 无法启动进程 %1 - - - Timeout after %1s. - 超时共花费%1秒。 - - - The process crashed. - 进程崩溃了。 - - - The process returned exit code %1: -%2 - 进程返回代码%1: -%2 - - - Error running '%1' in %2: %3 - 在 %2运行'%1'时发生错误: %3 - - - Building helper '%1' in %2 - - 在 %2构建助手'%1' - - - - Building helper library '%1' in %2 - - 在%2构建助手库 '%1' - - - - Running %1 %2... - - 正在运行 %1 %2... - - - - Running %1 %2 ... - - 正在运行%1 %2 ... - - - - Running %1 ... - - 正在运行%1... - - - - %1 not found in PATH - - 在 PATH未找到%1 - - - - - Utils::DebuggerLanguageChooser - - C++ - C++ - - - QML - QML - - - Debug port: - 调试端口: - - - <a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">What are the prerequisites?</a> - <a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">先决条件是什么?</a> - - - - Utils::SynchronousProcess - - The command '%1' finished successfully. - 命令'%1'成功完成。 - - - The command '%1' terminated with exit code %2. - 命令'%1'终止,退出代码%2。 - - - The command '%1' terminated abnormally. - 命令'%1'异常终止。 - - - The command '%1' could not be started. - 命令'%1'无法启动。 - - - The command '%1' did not respond within the timeout limit (%2 ms). - 命令'%1'在指定超时时间(%2毫秒)内未响应。 - - - Process not Responding - 进程无响应 - - - The process is not responding. - 进程未响应。 - - - The process '%1' is not responding. - 进程'%1'未响应。 - - - Would you like to terminate it? - 您想要结束它吗? - - - - ClassView::Internal::NavigationWidgetFactory - - Class View - 类视图 - - - - CMakeProjectManager - - Make - Default display name for the cmake make step. - Make - - - Qt Creator needs a compiler set up to build. Configure a compiler in the kit options. - Qt Creator 需要设置一个编译器来构建。请在构建套件选项里设置一个编译器。 - - - Configuration is faulty. Check the Issues view for details. - 配置错误,请检查"问题"视图获得详细信息。 - - - - Core::Internal::CommandComboBox - - Activate %1 Pane - 激活 %1 窗口 - - - - Core::NavigationWidget - - Activate %1 Pane - 激活%1 窗口 - - - Hide Sidebar - 隐藏边栏 - - - Show Sidebar - 显示边栏 - - - - Core::Internal::SftpChannelPrivate - - Server could not start sftp subsystem. - 服务器无法启动 sftp 子系统。 - - - Unexpected packet of type %1. - 未预料的包,类型 %1。 - - - Protocol version mismatch: Expected %1, got %2 - 协议版本不匹配:期望 %1,得到 %2 - - - Unknown error. - 未知错误. - - - Created remote directory '%1'. - 创建远程目录 '%1'。 - - - Remote directory '%1' already exists. - 远程目录 '%1'已存在。 - - - Error creating directory '%1': %2 - 创建文件夹时发生错误 '%1':'%2' - - - Could not open local file '%1': %2 - 无法打开本地文件 '%1':%2 - - - Remote directory could not be opened for reading. - 无法打开用于读取的远程目录。 - - - Failed to list remote directory contents. - 列出远程目录的内容失败。 - - - Failed to close remote directory. - 关闭远程目录失败。 - - - Failed to open remote file for reading. - 打开用于读取的远程文件失败。 - - - Failed retrieve information on the remote file ('stat' failed). - 获取远程文件的信息失败('stat' 失败)。 - - - Failed to read remote file. - 读取远程文件失败。 - - - Failed to close remote file. - 关闭远程文件失败。 - - - Failed to open remote file for writing. - 打开用于写入的远程文件失败。 - - - Failed to write remote file. - 写入远程文件失败。 - - - Cannot append to remote file: Server does not support the file size attribute. - 无法附加到远程文件:服务器不支持文件大小属性。 - - - Server could not start session. - 服务器无法启动会话。 - - - Error reading local file: %1 - 读取本地文件时发生错误:%1 - - - - SshConnection - - Server and client capabilities don't match. Client list was: %1. -Server list was %2. - 服务器端和客户端参数不匹配。客户端是%1, -而服务器端是%2。 - - - - Core::Internal::SshChannelManager - - Invalid channel id %1 - 无效的通道 ID %1 - - - - Core::Internal::SshConnectionPrivate - - SSH Protocol error: %1 - SSH协议错误:%1 - - - Botan library exception: %1 - Botan库异常:%1 - - - Invalid protocol version: Expected '2.0', got '%1'. - 无效协议版本.期望版本'2.0',实际版本'%1'. - - - Invalid server id '%1'. - 服务器id'%1'非法. - - - Unexpected packet of type %1. - 未预料的包,类型 %1。 - - - Could not read private key file: %1 - 无法读取私钥文件:'%1' - - - Password expired. - 密码过期. - - - Server rejected password. - 密码被服务器退回. - - - Server rejected key. - 密钥被服务器退回. - - - Server closed connection: %1 - 连接已被服务器关闭:%1 - - - Connection closed unexpectedly. - 连接意外关闭. - - - Timeout waiting for reply from server. - 等待Server响应超时. - - - - CodePaster - - Checking connection - 正在检查连接 - - - Connecting to %1... - 正在连接到%1... - - - - CheckUndefinedSymbols - - Expected a namespace-name - 应为命名空间的名称 - - - - CppEditor::InsertDeclOperation - - Add %1 Declaration - 添加%1声明 - - - - CppEditor::InsertDefOperation - - Add Definition in %1 - 在%1添加定义 - - - - CppEditor::Internal::CppTypeHierarchyWidget - - No type hierarchy available - 没有可用的类型层次 - - - Bases - 基类 - - - Derived - 派生类 - - - - CppEditor::Internal::CppTypeHierarchyFactory - - Type Hierarchy - 类型层次 - - - - CppTools::Internal::SymbolsFindFilter - - C++ Symbols - C++符号 - - - Searching - 搜索中 - - - C++ Symbols: - C++符号: - - - Classes - - - - Methods - 方法 - - - Enums - 枚举 - - - Declarations - 声明 - - - Scope: %1 -Types: %2 -Flags: %3 - 范围:%1 -类型:%2 -标志:%3 + None + All - 所有 + 所有 - Projects - 项目 + Selected + 选中 - , - + Qt Test + - - - CppTools::Internal::SymbolsFindFilterConfigWidget - Types: - 类型: + %1 %2 per iteration (total: %3, iterations: %4) + - Classes - + Qt version: %1 + - Methods - 方法 + Qt build: %1 + - Enums - 枚举 + QTest version: %1 + - Declarations - 声明 + XML parsing failed. + - Projects only - 仅显示项目 + Entering test function %1::%2 + - All files - 所有文件 + Executing test function %1 + - - - Debugger - File and Line Number - 文件和行号 + Execution took %1 ms. + - Function Name - 函数名 + Test execution took %1 ms. + - Break when C++ Exception is Thrown - 中断 当C++ Exception 被丢出 + Test function finished. + - Break when C++ Exception is Caught - 中断 当C++ Exception 被抓住 + Test finished. + - Break when Function "main()" Starts - 中断 当"main()"启动时 + Walltime + - Break when a new Process is Forked - 中断 当一个新进程被创建 + Uses walltime metrics for executing benchmarks (default). + - Break when a new Process is Executed - 中断 当一个新进程被执行 + Tick counter + - Break when a System Call is Executed - 中断 当一个系统调用被执行 + Uses tick counter when executing benchmarks. + - Break on Data Access (Watchpoint) - 中断当数据进入(端点) + Event counter + - File name and line number - 文件名称和行号 + Uses event counter when executing benchmarks. + - Function name - 函数名 + Callgrind + - Break on memory address - 在内存地址处中断 + Uses Valgrind Callgrind when executing benchmarks (it must be installed). + - Break when C++ exception is thrown - 当C++ Exception 丢出时中断 + Perf + - Break when C++ exception is caught - 当C++ Exception 被抓住时中断 + Uses Perf when executing benchmarks (it must be installed). + - Break when function "main" starts - 当"main()"启动时中断 + Disable crash handler while debugging + - Break when a new process is forked - 当一个新进程被创建时中断 + Enables interrupting tests on assertions. + - Break when a new process is executed - 当一个新进程被执行时中断 + Use XML output + - Break when a system call is executed - 当一个系统调用被执行时中断 - - - Break on data access at fixed address - 当访问固定的地址数据时中断 - - - Break on data access at address given by expression - 当访问表达式指定的地址的数据时中断 - - - Break on QML signal handler - 在QML信号处理时中断 - - - Break when JavaScript exception is thrown - JavaScrip丢出异常时中断 - - - 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). - 指定函数或文件类型的断点的模块 -(库或者执行档的名称)可以显着加快 -调试启动时间 (CDB, LLDB)。 - - - <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>设置断点时确定如何指定路径:</p><ul><li><i>使用引擎默认值</i>: 使用调试引擎的建议设置.</li><li><i>使用完整路径</i>: 传递完整路径, 在几个模块中应避免含糊不清的同名文件存在。这是CDB 和 LLDB的默认引擎。</li><li><i>使用文件名称</i>: 只传递文件名称。这将在使用源代码树但是位置和构建模块的路径不匹配的时候很有用。这是GDB的默认引擎,如果使用完整路径那么这个引擎可能会比较慢.</li></ul></body></html> - - - Function "main()" - "main()"函数 - - - Basic - 基础 - - - Break on QML signal emit - 在QML信号发出时断点 - - - Breakpoint &type: - 断点类型(&T): - - - &File name: - 文件名(&F): - - - &Line number: - 行号(&L): - - - &Enabled: - 启用(&E): - - - &Address: - 地址(&A): - - - Fun&ction: - 函数(&C): - - - Advanced - 高级 - - - T&racepoint only: - 仅跟踪点(&R): - - - &One shot only: - 仅触发一次(&O): - - - Pat&h: - 路径(&H): - - - &Module: - 模块(&M): - - - &Command: - 命令(&C): - - - Use Engine Default - 使用默认引擎 - - - Use Full Path - 使用完整路径 - - - Use File Name - 使用文件名称 - - - Debugger commands to be executed when the breakpoint is hit. -This feature is only available for GDB. - 断点触发时执行的调试器命令。 -此功能仅对GDB可用。 - - - &Commands: - 命令(&C): - - - C&ondition: - 条件(&O): - - - &Ignore count: - 忽略次数(&i): - - - &Expression: - 表达式(&E): - - - &Message: - 消息(&M): - - - The console process '%1' could not be started. - 终端进程'%1' 无法被启动。 - - - Debugger Error - 调试器错误 - - - There is no CDB executable specified. - 没有指定CDB可执行档。 - - - CDB crashed - CDB 崩溃了 - - - CDB exited (%1) - CDB 退出(%1) - - - Unable to add expression - 无法添加表达式 - - - Interrupting is not possible in remote sessions. - 在远程会话里中断是不可能的。 - - - Trace point %1 (%2) in thread %3 triggered. - 在线程%3 中的跟踪点%1 (%2) 被触发。 - - - Conditional breakpoint %1 (%2) in thread %3 triggered, examining expression '%4'. - 在线程%3中的条件断点%1 (%2) 被触发, 正在检查表达式 '%4'。 - - - Malformed stop response received. - 收到了格式错误的停止响应。 - - - Switching to main thread... - 切换到主线程... - - - Value %1 obtained from evaluating the condition of breakpoint %2, stopping. - 计算断点条件 %2获得了值%1, 停止。 - - - Value 0 obtained from evaluating the condition of breakpoint %1, continuing. - 计算断点条件 %1获得了值0, 继续。 - - - "Select Widget to Watch": Please stop the application first. - "选择监视的控件": 请先停止应用程序。 - - - "Select Widget to Watch": Not supported in state '%1'. - "选择监视的控件":在状态'%1'下不支持。 - - - - Debugger - - Select Local Cache Folder - 选择本地缓存目录 - - - Path: - 路径: - - - Already Exists - 已存在 - - - A file named '%1' already exists. - 文件'%1'已存在。 - - - Cannot Create - 无法创建 - - - The folder '%1' could not be created. - 目录'%1'无法被创建。 - - - Console - 控制台 - - - Remove Breakpoint - 删除断点 - - - Attempting to interrupt. - 正在尝试中断。 - - - Debug Information - 调试信息 - - - Debugger Test - 调试器测试 - - - Launching - 正在启动 - - - %1 (explicitly set in the Debugger Options) - %1 (在调试器选项中设定) - - - This debugger cannot handle user input. - 这个调试器无法处理用户的输入。 - - - Watchpoint %1 (%2) at 0x%3 triggered. - 0x%3 的观察点%1 (%2)被触发. - - - Internal watchpoint %1 at 0x%2 triggered. - 内部观察点%1 在 0x%2 被触发. - - - Watchpoint %1 (%2) at 0x%3 in thread %4 triggered. - 观察点%1 (%2) 在0x%3 在线程%4 被触发. - - - Internal watchpoint %1 at 0x%2 in thread %3 triggered. - 内部观察点%1 在0x%2 在线程%3 被触发. - - - Data breakpoint %1 (%2) at %3 triggered. - 在 %3 中的数据断点%1 (%2) 被触发。 - - - Internal data breakpoint %1 at %2 triggered. - 在%2中的内部数据断点%1 被触发。 - - - Data breakpoint %1 (%2) at %3 in thread %4 triggered. - 线程%4 的%3中的数据断点%1 (%2) 被触发。 - - - Internal data breakpoint %1 at %2 in thread %3 triggered. - 线程%3中%2的内部数据断点%1 被触发。 - - - Data breakpoint %1 (%2) at 0x%3 triggered. - 在 0x%3 处的数据断点%1 (%2) 被触发。 - - - Internal data breakpoint %1 at 0x%2 triggered. - 在0x%2处的内部数据断点%1 被触发。 - - - Data breakpoint %1 (%2) at 0x%3 in thread %4 triggered. - 线程%4 的0x%3处的数据断点%1 (%2) 被触发。 - - - Internal data breakpoint %1 at 0x%2 in thread %3 triggered. - 线程%3中0x%2处的内部数据断点%1 被触发。 - - - Stopped at breakpoint %1 (%2) in thread %3. - 在线程%3的断点%1 (%2) 处停止。 - - - Stopped at internal breakpoint %1 in thread %2. - 在线程%2的内部断点%1处停止。 - - - Setup failed. - 设置失败。 - - - Loading finished. - 载入完成。 - - - Run failed. - 运行失败。 - - - Running. - 正在运行。 - - - Run requested... - 运行已请求... - - - Stopped: "%1" - 已停止: "%1" - - - Stopped: %1 (Signal %2). - 已停止: %1 (信号%2)。 - - - Stopped in thread %1 by: %2. - 在线程%1中停止,因为: %2。 - - - Interrupted. - 已中断。 - - - <Unknown> - name - <未知> - - - <Unknown> - meaning - <未知> - - - <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>底层由于接收到操作系统的信号而停止 .<p><table><tr><td>信号名称 : </td><td>%1</td></tr><tr><td>信号含义 : </td><td>%2</td></tr></table> - - - Signal received - 接收到信号 - - - <p>The inferior stopped because it triggered an exception.<p>%1 - <p>底层停止了因为它触发了一个异常。<p>%1 - - - Exception Triggered - 异常被触发 - - - Taking notice of pid %1 - 注意pid %1 - - - Run to Address 0x%1 - 运行到地址0x%1 - - - Run to Line %1 - 运行到行%1 - - - Jump to Address 0x%1 - 跳到地址0x%1 - - - Jump to Line %1 - 跳到行%1 - - - - Debugger - - Option '%1' is missing the parameter. - 选项 '%1' 缺少参数。 - - - Only one executable allowed! - 只允许一个执行档! - - - The parameter '%1' of option '%2' does not match the pattern <server:port>@<executable>@<architecture>. - 选项'%2'的参数 '%1' 不符合格式<server:port>@<executable>@<architecture>. - - - The parameter '%1' of option '%2' does not match the pattern <handle>:<pid>. - 选项'%2'的参数 '%1' 不符合格式<handle>:<pid>。 - - - The parameter '%1' of option '%2' is not a number. - 选项 '%2' 的参数 '%1' 不是一个数字. - - - Invalid debugger option: %1 - 无效的调试选项: %1 - - - The application requires the debugger engine '%1', which is disabled. - 程序需要调试器引擎 "%1",而其被禁用。 - - - Some breakpoints cannot be handled by the debugger languages currently active, and will be ignored. - 当前激活的调试器语言无法处理一些断点,这些断点将会被忽略。 - - - The debugger engine '%1' is disabled. - 调试引擎'%1' 被禁用. - - - The debugger engine '%1' required for debugging binaries of the type '%2' is not configured correctly. - 调试二进制类型'%2'需要调试引擎'%1' 但是没配置正确. - - - None of the debugger engines '%1' capable of debugging binaries of the type '%2' is configured correctly. - 可以调试这种二进制类型'%2'的调试引擎'%1' 被设置正确了. - - - 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 - 建议使用的调试二进制类型'%1'的调试引擎不可用. -调试引擎'%2' 将会作为备用来使用. -详细: %3 - - - Install &Debug Information - 安装调试信息(&D) - - - Tries to install missing debug information. - 请尝试安装缺失的调试信息。 - - - - Debugger - - Cannot debug '%1' (tool chain: '%2'): %3 - 无法调试 "%1" (工具链: "%2") : %3 - - - Starting debugger '%1' for tool chain '%2'... - 正在为工具链'%2'启动调试器'%1'... - - - Debugging starts - 调试开始 - - - Debugging has failed - 调试失败 - - - Debugging has finished - 调试正常结束 - - - No executable specified. - - 未指定执行档。 - - - - Debugging starts - - 调试开始 - - - - Debugging has failed - - 调试失败 - - - - Debugging has finished - - 调试结束 - - - - A debugging session is still in progress. Terminating the session in the current state can leave the target in an inconsistent state. Would you still like to terminate it? - 一个调试会话正在运行中。强行结束会话可能会导致会话状态异常,即使如此还是要结束它吗? - - - Close Debugging Session - 关闭调试会话 - - - This does not seem to be a "Debug" build. -Setting breakpoints by file name and line number may fail. - 没有选择Debug构建方式.为文件的某行设置断点可能会失败. - - - - Debugger - - Connection could not be established. - 无法建立连接. - - - Connection failure: %1. - 连接失败: %1。 - - - Could not create FIFO. - 无法创建FIFO。 - - - Application output reader unexpectedly finished. - 应用程序输出读取意外结束。 - - - Remote GDB failed to start. - 远程gdb启动失败。 - - - Remote GDB crashed. - 远程gdb崩溃了。 - - - Remote gdb failed to start. - 远程gdb启动失败. - - - Remote gdb crashed. - 远程gdb崩溃了. - - - - Debugger - - Type Ctrl-<Return> to execute a line. - 键入Ctrl-<Return> 执行一行。 - - - - Debugger - - Debugger Log - 调试器日志 - - - Command: - 命令: - - - Log File - 日志文件 - - - Write Failure - 写失败 - - - Unable to write log contents to '%1': %2 - 无法将日志内容写到'%1':%2 - - - - Debugger - - Connecting to debug server on %1 - 连接到调试服务器%1 - - - resolving host... - 正在解析主机... - - - connecting to debug server... - 正在连接到调试服务器... - - - connected. - - 已连接. - - - - closing... - 正在关闭... - - - Status of '%1' changed to 'unavailable'. - '%1'的状态转变为'不可用'. - - - Status of '%1' changed to 'enabled'. - '%1'的状态转变为'可用'. - - - Status of '%1' changed to 'not connected'. - '%1'的状态转变为'无连接'. - - - Debug service '%1' became unavailable. - 调试服务'%1' 变为不可用. - - - Connected to debug service '%1'. - 已连接到调试服务器 '%1'. - - - Not connected to debug service '%1'. - 未连接到调试服务器 '%1'. - - - Failed to connect to debugger - 连接调试器失败 - - - Trying to stop while process is no longer running. - 当进程不再继续运行时尝试终止. - - - <Type expression to evaluate> - <输入表达式用于求值> - - - Write and evaluate QtScript expressions. - 编写和求值QtScript表达式. - - - Script Console - - 脚本控制台 - - - - Internal name - 内部名称 - - - Full name - 全名 - - - Internal Name - 内部名称 - - - Full Name - 全名 - - - - Git - - Set the environment variable HOME to '%1' -(%2). -This causes msysgit to look for the SSH-keys in that location -instead of its installation directory when run outside git bash. - 设置环境变量 HOME 到 '%1' -(%2). -这将使 msysgit 在那个位置查找 SSH-keys -而不是在安装目录中查找。 - - - not currently set - 当前未设置 - - - currently set to '%1' - 设置到'%1' - - - Git Repository Browser Command - Git代码仓库浏览器命令 - - - - Help - - Qt Creator Offline Help - Qt Creator离线帮助 - - - - EditorManager - - Next Open Document in History - 历史中下个打开的文件 - - - Previous Open Document in History - 历史中先前打开的文件 - - - Go Back - 返回 - - - Go Forward - 前进 - - - Split - 分栏 - - - Split Side by Side - 左右分栏 - - - Close Document - 关闭文档 - - - Close - 关闭 - - - - Help - - Copy Full Path to Clipboard - 复制完整路径到剪贴板 - - - Online Documentation - 在线文档 - - - Web Search - 搜索网络 - - - - ImageViewer - - Zoom In - 放大 - - - Ctrl++ - Ctrl++ - - - Zoom Out - 缩小 - - - Ctrl+- - Ctrl+- - - - Original Size - 原始大小 - - - Ctrl+0 - Ctrl+0 - - - Meta+0 - Meta+0 - - - Fit To Screen - 适应屏幕 - - - Ctrl+= - Ctrl+= - - - Switch Background - 切换背景 - - - Switch Outline - 显示轮廓线 - - - Toggle Animation - 切换动画 - - - Switch background - 切换背景 - - - Ctrl+[ - Ctrl+[ - - - Switch outline - 显示大纲 - - - Ctrl+] - Ctrl+] - - - - ProjectExplorer::Internal::BuildStepListWidget - - %1 Steps - %1 is the name returned by BuildStepList::displayName - %1 is a name instead of a number - %1的步骤 - - - No %1 Steps - 没有%1步骤 - - - Add %1 Step - 添加%1步骤 - - - Move Up - 上移 - - - Disable - 禁用 - - - Move Down - 下移 - - - Remove Item - 移除项 - - - Removing Step failed - 删除步骤失败 - - - Cannot remove build step while building - 无法在构建时移除构建步骤 - - - No Build Steps - 没有构建步骤 - - - - ProjectExplorer::Internal::CopyTaskHandler - - error: - Task is of type error - 错误: - - - warning: - Task is of type warning - 警告: - - - error: - Task is of type: error - 错误: - - - warning: - Task is of type: warning - 警告: - - - &Copy - Name of the action triggering the copytaskhandler - 复制(&C) - - - Copy task to clipboard - 复制任务到剪贴板 - - - - ProjectExplorer::DeployConfiguration - - Deploy - Display name of the deploy build step list. Used as part of the labels in the project window. - 部署 - - - Deploy locally - Default DeployConfiguration display name - 在本地部署 - - - No deployment - Default DeployConfiguration display name - 当前无部署 - - - - ProjectExplorer::DeployConfigurationFactory - - Deploy Configuration - Display name of the default deploy configuration - 部署设置 - - - - ProjectExplorer::Internal::EditorSettingsWidget - - Default - 默认 - - - - ProjectExplorer::RunControl - - Application Still Running - 应用仍然在运行 - - - %1 is still running. - %1仍然在运行. - - - Force it to quit? - 强行关闭? - - - PID %1 - PID %1 - - - Invalid - Invalid process handle. - 无效 - - - <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> 仍然在运行。<center/><center>强制关闭吗?</center></body></html> - - - Force Quit - 强行退出 - - - Keep Running - 保持运行 - - - Do not ask again - 下次不再询问 - - - - ProjectExplorer::Internal::ShowInEditorTaskHandler - - &Show in editor - 在编辑器中显示(&S) - - - Show task location in an editor - 在编辑器中显示任务位置 - - - &Show in Editor - 在编辑器中显示(&S) - - - Show task location in an editor. - 在编辑器中显示任务位置。 - - - - ProjectExplorer::Internal::ShowOutputTaskHandler - - Show &Output - 显示输出(&O) - - - Show output generating this issue. - 显示产生此问题的输出。 - - - - ProjectExplorer::UserFileAccessor - - Using Old Project Settings File - 使用旧的项目设置文件 - - - <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>一个.user 设置的备用文件将会被使用,因为新版 Qt Creator产生了一个没有版本号的文件.</p><p>项目设置改变自从最近一次这个版本的Qt Creator 被用做这个项目, 现在产生的改变 <b>不会</b> 影响到新版本.</p></body></html> - - - Project Settings File from a different Environment? - 来自于不同环境的项目设置文件? - - - - ProjectExplorer::UserFileHandler - - No deployment - 当前无部署 - - - Deploy to Maemo device - 部署到Maemo设备 - - - - ProjectExplorer::Internal::VcsAnnotateTaskHandler - - &Annotate - 注释(&A) - - - Annotate using version control system - 使用版本控制系统注释 - - - - QmlDesigner::TextToModelMerger - - Unsupported import: -import QtQuick 1.0 use import Qt 4.7 instead - 不支持的引入,请用import Qt 4.7来引入QtQuick 1.0库 - - - - QmlJSEditor - - Move Component into separate file - 将组件移到独立文件中 - - - Move Component into '%1.qml' - 将组件移到文件'%1.qml'中 - - - Move Component into Separate File - 将组件移到独立文件中 - - - Choose a path - 选择路径 - - - Invalid component name - 组件名非法 - - - Invalid path - 非法路径 - - - Path: - 路径: - - - Component name: - 组件名: - - - - QmlJsEditor - - QML - QML - - - - QmlJSEditor - - QML/JS Usages: - QML/JS 使用: - - - Searching - 搜索中 - - - Show All Bindings - 显示所有绑定 - - - Split initializer - 分离初始化 - - - Split Initializer - 分离初始化 - - - - QmlJSInspector::Internal::QmlInspectorToolbar - - Apply Changes on Save - 保存时应用修改 - - - Observer Mode - 观察者模式 - - - Play/Pause Animations - 播放/暂停动画 - - - Select - 选择 - - - Zoom - 缩放 - - - Color Picker - 颜色拾取器 - - - Live Preview Changes in QML Viewer - 在QML查看器中即时预览 - - - Animation Speed - 动画速度 - - - 1x - 1x - - - 0.5x - 0.5x - - - 0.25x - 0.25x - - - 0.125x - 0.125x - - - 0.1x - 0.1x - - - Pause - 暂停 - - - - QmlJSInspector::Internal::ContextCrumblePath - - [no context] - [无关连] - - - - QmlJSInspector::Internal::InspectorUi - - Context Path - 上下文路径 - - - QML Inspector - QML 检查器 - - - QML Observer - QML Observer - - - Filter properties - 过滤属性 - - - - QmlJSInspector::Internal::QmlJSLiveTextPreview - - Disable Live Preview - 禁用即时预览 - - - The %1 attribute at line %2, column %3 cannot be changed without reloading the QML application. - 第%2行第%3列的%1属性在重新载入QML应用前无法更改. - - - The %1 element at line %2, column %3 cannot be changed without reloading the QML application. - 第%2行第%3列的%1元素在重新载入QML应用前无法更改. - - - Reload - 重新载入 - - - - QmlJSInspector::Internal::QmlJSObjectTree - - Go to file - 转到文件 - - - Url: - Url: - - - - QmlJSInspector::ToolBarColorBox - - Copy Color - 复制颜色 - - - - QmakeProjectManager - - Add Library - 添加库 - - - Summary - 汇总 - - - Library Type - 库类型 - - - Choose the type of the library to link to - 选择链接到的库类型 - - - System library - 系统库 - - - Links to a system library. -Neither the path to the library nor the path to its includes is added to the .pro file. - 链接到系统库。 -无论是库的路径还是库的 includes都没被添加到 .pro 文件中。 - - - System package - 系统包 - - - Links to a system library using pkg-config. - 使用pkg-config.连接到系统库。 - - - External library - 外部库 - - - Links to a library that is not located in your build tree. -Adds the library and include paths to the .pro file. - 链接到不在您的构建树中的库。 -请将库和它的include 路径添加到.pro文件中。 - - - Internal library - 内部库 - - - Links to a library that is located in your build tree. -Adds the library and include paths to the .pro file. - 链接到在您的构建树中的库。 -请将库和它的include 路径添加到.pro文件中。 - - - System Library - 系统库 - - - Specify the library to link to - 指定链接到的库 - - - System Package - 系统包 - - - Specify the package to link to - 指定链接到的包 - - - External Library - 外部库 - - - Specify the library to link to and the includes path - 指定链接库和包含路径 - - - Internal Library - 内部库 - - - Choose the project file of the library to link to - 选择要链接的库的项目文件 - - - The following snippet will be added to the<br><b>%1</b> file: - 下列代码段将被添加到文件<br><b>%1</b> 中: - - - %1 Dynamic - %1 动态 - - - %1 Static - %1 静态 - - - %1 Framework - %1 框架 - - - %1 Library - %1 库 - - - Only available for Qt for Desktop and Qt for Qt Simulator. - 仅限 Qt 桌面版 或者 Qt 模拟器版本。 - - - Not needed. - 不需要。 - - - Private headers are missing for this Qt version. - 这个Qt版本的私有头文件缺失。 - - - qmldump - qmldump - - - - ProjectExplorer::QmlDumpTool - - qmldump could not be built in any of the directories: -- %1 + XML output is recommended, because it avoids parsing issues, while plain text is more human readable. -Reason: %2 - qmldump无法在以下目录中构建: --%1 - -原因:%2 - - - - QmlDumpBuildTask - - Building helper - 构建助手 - - - - QmakeProjectManager - - Only available for Qt for Desktop or Qt for Qt Simulator. - 仅限 Qt 桌面版 或者 Qt 模拟器版本。 +Warning: Plain text misses some information, such as duration. + - QMLObserver - QMLObserver - - - - ProjectExplorer::QmlObserverTool - - The target directory %1 could not be created. - 目标目录 %1 无法被创建。 + Verbose benchmarks + - QMLObserver could not be built in any of the directories: -- %1 - -Reason: %2 - QMLObserver无法在下列任何一个目录中被构建: --%1 - -原因是:%2 - - - - QmakeProjectManager - - SBSv2 build log - SBSv2构建日志 + Log signals and slots + - The file '%1' is not a SBSv2 log file. - 文件'%1'不是一个SBSv2日志文件. + Log every signal emission and resulting slot invocations. + - Running command: %1 - - 执行命令:%1 + Limit warnings + - Recipe %1 failed with exit code %2. - %1 is the SBSv2 build recipe name, %2 the return code of the failed command - SBSv2 build recipe %1错误,错误代码为%2. + Set the maximum number of warnings. 0 means that the number is not limited. + - Could not open desktop file template - 无法打开桌面文件模板 + Unlimited + - Could not open main.cpp template '%1'. - 无法打开main.cpp模板'%1'. + Benchmark Metrics + - Could not open project file template '%1'. - 无法打开项目文件模板'%1'. + <p>Multiple testcases inside a single executable are not officially supported. Depending on the implementation they might get executed or not, but never will be explicitly selectable.</p> + - Could not open template file '%1'. - 无法打开模板文件'%1'。 + inherited + - Application Options - 应用程序选项 - - - - MobileAppWizard - - Mobile Qt Application - 移动Qt应用 + multiple testcases + - Creates a Qt application optimized for mobile devices with a Qt Designer-based main window. - -Preselects Qt for Simulator and mobile targets if available. - 创建一个为移动设备优化的基于Qt Designer的主窗口应用程序。 - -预选一个可用的针对模拟器或者移动目标的Qt版本。 - - - - QmakeProjectManager - - The file is not a valid image. - 不是一个合法的图片文件. + Quick Test + - The icon has an invalid size. - 图标大小不合法. + <unnamed> + - Icon unusable - 图标不可用 + Give all test cases a name to ensure correct behavior when running test cases and to be able to select them + - The QML import path '%1' cannot be found. - QML导入路径'%1'无法找到。 + Scanning for Tests + - The QML module '%1' cannot be found. - QML模块'%1'未找到。 + Tests + - Invalid '%1' entry in '%2' of module '%3'. - 模块'%3'的'%2'中的项'%1'无效。 + No active test frameworks. + - No .pro file for plugin '%1' can be found. - 找不到'%1'插件对应的.pro文件。 + Run This Test + - No .pro file for plugin '%1' cannot be found. - 没有可被插件'%1'使用的.pro文件被找到. + Run Without Deployment + 忽略部署直接运行 - Could not write file '%1'. - 无法写文件'%1'. + Debug This Test + - New Qt Quick Application - 新建Qt Quick程序 - - - This wizard generates a Qt Quick application project. - 此向导将生成一个Qt Quick应用程序项目。 - - - Select existing QML file - 选择现有的QML 文件 - - - Application Type - 应用程序类型 - - - QML Sources - QML源文件 - - - Qt Quick Application - Qt Quick应用程序 - - - Creates a Qt Quick application project that can contain both QML and C++ code and includes a QDeclarativeView. - - - 创建一个Qt Quick应用程序项目,它可以同时包含QML和C++代码,并包括一个QDeclarativeView。 - - - - - Qt Quick 1 Application (Built-in Elements) - Qt Quick 1应用程序(内建元素) - - - The built-in elements in the QtQuick 1 namespace allow you to write cross-platform applications with a custom look and feel. - -Requires <b>Qt 4.7.0</b> or newer. - QtQuick 1命名空间的内建元素允许您编写跨平台的自定义观感的应用程序。 - -要求<b>Qt 4.7.0</b>或更新版本。 - - - Qt Quick 2 Application (Built-in Elements) - Qt Quick 2应用程序(内建元素) - - - Creates a Qt Quick application project that can contain both QML and C++ code and includes a QQuickView. - -The built-in elements in the QtQuick 2 namespace allow you to write cross-platform applications with a custom look and feel. - -Requires <b>Qt 5.0</b> or newer. - 创建一个Qt Quick应用程序项目,它可以同时包含QML和C++代码,并包括一个QQuickView。 - -QtQuick 2命名空间的内建元素允许您编写跨平台的自定义观感的应用程序。 - -要求<b>Qt 5.0</b>或更新版本。 - - - Qt Quick Application for MeeGo Harmattan - MeeGo Harmattan平台的Qt Quick程序 - - - The Qt Quick Components for MeeGo Harmattan are a set of ready-made components that are designed with specific native appearance for the MeeGo Harmattan platform. - -Requires <b>Qt 4.7.4</b> or newer, and the component set installed for your Qt version. - Meego Harmattan 的QT Quick组件是已经定制完成的组件集,设计为原生支持MeeGo Harmattan系统平台。 - -需要Qt 4.7.4 或更新版本,并且也要安装相应的组件。 - - - Qt Quick Application (from Existing QML File) - Qt Quick应用程序(从已经存在的QML文件) - - - Creates a deployable Qt Quick application from existing QML files. All files and directories that reside in the same directory as the main .qml file are deployed. You can modify the contents of the directory any time before deploying. - -Requires <b>Qt 4.7.0</b> or newer. - 从已经存在的QML文件创建一个可部署的Qt Quick应用程序。所有和主qml文件在同一目录下的文件和目录都将被部署。您可以在部署之前的任意时刻修改目录的内容。 - -需要<b>Qt 4.7.0</b> 或更新版本。 - - - - TaskList::Internal::StopMonitoringHandler - - Stop monitoring - 停止监视 - - - Stop Monitoring - 停止监视 - - - Stop monitoring task files. - 停止监视任务文件。 - - - - TaskList::Internal::TaskFileFactory - - Task file reader - 任务文件读取器 - - - File Error - 文件错误 - - - - TaskList::TaskListPlugin - - Cannot open task file %1: %2 - 文法打开任务文件%1:%2 - - - My Tasks - Category under which tasklist tasks are listed in Issues view - 我的任务 - - - - TextEditor::HighlighterSettingsPage - - Generic Highlighter - 通用高亮器 - - - Download Definitions - 下载定义 - - - Download Definitions... - 下载定义... - - - Autodetect - 自动检测 - - - Autodetect Definitions - 自动检测定义 - - - No pre-installed definitions could be found. - 没有找到预装的定义。 - - - Error connecting to server. - 连接服务器失败。 - - - Not possible to retrieve data. - 无法获取数据。 - - - - TextEditor::Internal::ManageDefinitionsDialog - - Name - 名称 - - - Installed - 已安装 - - - Available - 可用 - - - Download Definitions - 下载定义 - - - Download Information - 下载信息 - - - There is already one download in progress. Please wait until it is finished. - 队列中已有一个下载任务,请等待其完成。 - - - Dialog - 对话框 - - - Definitions - 定义 + Debug Without Deployment + Select All - 全选 + 全选 - Clear Selection - 清空选择 + Deselect All + - Invert Selection - 反选 + Filter Test Tree + - Download Selected Definitions - 下载选中的定义 - - - - TextEditor::Internal::Manager - - Registering definitions - 正在注册定义 + Sort Naturally + - Downloading definitions - 正在下载定义 + Expand All + 展开全部 - Error downloading selected definition(s). - 下载选中定义时出错。 + Collapse All + 折叠全部 - Error downloading one or more definitions. - 下载一个或多个定义时出错。 + Sort Alphabetically + 按字母排序 + + + Show Init and Cleanup Functions + + + + Show Data Functions + + + + Test executable crashed. + + + + Stop Test Run + + + + Filter Test Results + + + + Switch Between Visual and Text Display + + + + Test Results + 测试结果 + + + Pass + 通过 + + + Fail + + + + Expected Fail + + + + Unexpected Pass + + + + Skip + 跳过 + + + Benchmarks + + + + Debug Messages + + + + Warning Messages + + + + Internal Messages + + + + Check All Filters + + + + Uncheck All Filters + + + + Test summary + + + + passes + + + + fails + + + + unexpected passes + + + + expected fails + + + + fatals + + + + blacklisted + + + + skipped + + + + disabled + + + + Copy + 复制 + + + Copy All + + + + Save Output to File... + + + + Run This Test Without Deployment + + + + Debug This Test Without Deployment + + + + Save Output To + + + + Error + 错误 + + + Failed to write "%1". + +%2 + + + + AutoTest Debug + + + + Test run canceled by user. + -Please check the directory's access rights. - -请检查目录访问权限。 +Run configuration: deduced from "%1" + - Download Error - 下载错误 + +Run configuration: "%1" + + + + Omitted the following arguments specified on the run configuration page for "%1": + + + + Omitted the following environment variables for "%1": + + + + Executable path is empty. (%1) + + + + Current kit has changed. Canceling test run. + + + + Test case canceled due to timeout. +Maybe raise the timeout? + + + + Failed to start test for project "%1". + + + + Test for project "%1" crashed. + + + + Test for project "%1" did not produce any expected output. + + + + No tests selected. Canceling test run. + + + + Project is null. Canceling test run. +Only desktop kits are supported. Make sure the currently active kit is a desktop kit. + + + + Project is not configured. Canceling test run. + + + + Project is null for "%1". Removing from test run. +Check the test environment. + + + + Project's run configuration was deduced for "%1". +This might cause trouble during execution. +(deduced from "%2") + + + + Startup project has changed. Canceling test run. + + + + No test cases left for execution. Canceling test run. + + + + Running Tests + + + + Failed to get run configuration. + + + + Could not find command "%1". (%2) + + + + Unable to display test results when using CDB. + + + + Build failed. Canceling test run. + + + + Select Run Configuration + + + + Could not determine which run configuration to choose for running tests + + + + Remember choice. Cached choices can be reset by switching projects or using the option to clear the cache. + + + + Run Configuration: + + + + Executable: + 执行档: + + + Arguments: + 参数: + + + Working Directory: + 工作目录: + + + Omit internal messages + + + + Hides internal messages by default. You can still enable them by using the test results filter. + + + + Omit run configuration warnings + + + + Hides warnings related to a deduced run configuration. + + + + Limit result output + + + + Limits result output to 100000 characters. + + + + Limit result description: + + + + Limit number of lines shown in test result tooltip and description. + + + + Open results when tests start + + + + Displays test results automatically when tests are started. + + + + Open results when tests finish + + + + Displays test results automatically when tests are finished. + + + + Only for unsuccessful test runs + + + + Displays test results only if the test run contains failed, fatal or unexpectedly passed tests. + + + + Automatically scroll results + + + + Automatically scrolls down when new items are added and scrollbar is at bottom. + + + + Group results by application + + + + Process arguments + + + + Allow passing arguments specified on the respective run configuration. +Warning: this is an experimental feature and might lead to failing to execute the test executable. + + + + Runs chosen tests automatically if a build succeeded. + + + + Timeout: + 超时时间: + + + Timeout used when executing each test case. + + + + s + + + + Timeout used when executing test cases. This will apply for each test case on its own, not the whole project. + + + + Selects the test frameworks to be handled by the AutoTest plugin. + + + + Framework + 框架 + + + Group + + + + Enables grouping of test cases. + + + + Reset Cached Choices + + + + Clear all cached choices of run configurations for tests where the executable could not be deduced. + + + + General + 概要 + + + Automatically run + + + + Active Test Frameworks + + + + Enable or disable test frameworks to be handled by the AutoTest plugin. + + + + Enable or disable grouping of test cases by folder. + + + + No active test frameworks or tools. + + + + You will not be able to use the AutoTest plugin without having at least one active test framework. + + + + Mixing test frameworks and test tools. + + + + Mixing test frameworks and test tools can lead to duplicating run information when using "Run All Tests", for example. + + + + %1 (none) + - TextEditor::Internal::OutlineWidgetStack + AutotoolsProjectManager - No outline available - 没有可用大纲 + Arguments: + 参数: - Synchronize with Editor - 与编辑器同步 + Configuration unchanged, skipping autogen step. + 配置未改变,跳过autogen步骤。 - Filter tree - 过滤视图 + Autogen + Display name for AutotoolsProjectManager::AutogenStep id. + Autogen + + + Configuration unchanged, skipping autoreconf step. + 配置未改变,跳过autoreconf步骤。 + + + Autoreconf + Display name for AutotoolsProjectManager::AutoreconfStep id. + Autoreconf + + + Autotools Manager + + + + Configuration unchanged, skipping configure step. + 配置未改变,跳过configure步骤。 + + + Configure + Display name for AutotoolsProjectManager::ConfigureStep id. + 配置 + + + Parsing %1 in directory %2 + 正在目录 %2中分析 %1 + + + Parsing directory %1 + 正在分析目录 %1 - TextEditor::Internal::OutlineFactory + BackgroundColorMenuActions - Outline - 大纲 + Background Color Actions + - TextEditor::Internal::PlainTextEditorFactory + BareMetal - A highlight definition was not found for this file. Would you like to try to find one? - 没有为这个文件找到高亮定义,您想要搜索一个吗? + Cannot debug: Kit has no device. + - Show highlighter options... - 显示高亮选项... + No debug server provider found for %1 + - Show highlighter options - 显示高亮选项 + Bare Metal + + + + Bare Metal Device + + + + Debug server provider: + + + + New Bare Metal Device Configuration Setup + + + + Set up Debug Server or Hardware Debugger + + + + Name: + 名称: + + + Deploy to BareMetal Device + + + + Unknown + 未知 + + + Custom Executable + 自定义执行档 + + + The remote executable must be set in order to run a custom remote run configuration. + + + + Manage... + 管理... + + + None + + + + Not recognized + + + + GDB + GDB + + + UVSC + + + + GDB compatible provider engine +(used together with the GDB debuggers). + + + + UVSC compatible provider engine +(used together with the KEIL uVision). + + + + Name + + + + Type + 类型 + + + Engine + + + + Duplicate Providers Detected + + + + The following providers were already configured:<br>&nbsp;%1<br>They were not configured again. + + + + Add + 添加 + + + Clone + 克隆 + + + Remove + 删除 + + + Debug Server Providers + + + + Clone of %1 + %1 的克隆 + + + EBlink + + + + Host: + 主机: + + + Executable file: + + + + Script file: + + + + Specify the verbosity level (0 to 7). + + + + Verbosity level: + + + + Connect under reset (hotplug). + + + + Connect under reset: + + + + Interface type. + + + + Type: + 类型: + + + Specify the speed of the interface (120 to 8000) in kilohertz (kHz). + + + + Speed: + + + + Do not use EBlink flash cache. + + + + Disable cache: + + + + Shut down EBlink server after disconnect. + + + + Auto shutdown: + + + + Init commands: + + + + Reset commands: + + + + SWD + + + + JTAG + + + + Cannot debug: Local executable is not set. + + + + Cannot debug: Could not find executable for "%1". + + + + Choose the desired startup mode of the GDB server provider. + + + + Startup mode: + + + + Peripheral description files (*.svd) + + + + Select Peripheral Description File + + + + Peripheral description file: + + + + Startup in TCP/IP Mode + + + + Startup in Pipe Mode + + + + Enter GDB commands to reset the board and to write the nonvolatile memory. + + + + Enter GDB commands to reset the hardware. The MCU should be halted after these commands. + + + + Generic + + + + Use GDB target extended-remote + + + + Extended mode: + + + + JLink + + + + JLink GDB Server (JLinkGDBServerCL.exe) + + + + JLink GDB Server (JLinkGDBServer) + + + + IP Address + + + + Host interface: + + + + Speed + + + + Target interface: + + + + Device: + 设备: + + + Additional arguments: + 额外的参数: + + + Default + 默认 + + + USB + + + + TCP/IP + + + + Compact JTAG + + + + Renesas RX FINE + + + + ICSP + + + + Auto + + + + Adaptive + + + + %1 kHz + + + + OpenOCD + + + + Root scripts directory: + + + + Configuration file: + + + + ST-LINK Utility + + + + Specify the verbosity level (0..99). + + + + Continue listening for connections after disconnect. + + + + Reset board on connection. + + + + Reset on connection: + + + + Transport layer type. + + + + Version: + 版本: + + + ST-LINK/V1 + + + + ST-LINK/V2 + + + + Keep unspecified + + + + uVision JLink + + + + Unable to create a uVision project options template. + + + + Adapter options: + + + + Port: + 端口: + + + 50MHz + + + + 33MHz + + + + 25MHz + + + + 20MHz + + + + 10MHz + + + + 5MHz + + + + 3MHz + + + + 2MHz + + + + 1MHz + + + + 500kHz + + + + 200kHz + + + + 100kHz + + + + uVision Simulator + + + + Limit speed to real-time. + + + + Limit speed to real-time: + + + + uVision St-Link + + + + 9MHz + + + + 4.5MHz + + + + 2.25MHz + + + + 1.12MHz + + + + 560kHz + + + + 280kHz + + + + 140kHz + + + + 4MHz + + + + 1.8MHz + + + + 950kHz + + + + 480kHz + + + + 240kHz + + + + 125kHz + + + + 50kHz + + + + 25kHz + + + + 15kHz + + + + 5kHz + + + + Unable to create a uVision project template. + + + + Choose Keil Toolset Configuration File + + + + Tools file path: + + + + Target device: + + + + Target driver: + + + + Starting %1 ... + + + + Version + 版本 + + + Vendor + 销售商 + + + ID + ID + + + Start + + + + Size + + + + FLASH Start + + + + FLASH Size + + + + RAM Start + + + + RAM Size + + + + Algorithm path. + + + + FLASH: + + + + Start address. + + + + Size. + + + + RAM: + + + + Vendor: + 销售商: + + + Package: + 包: + + + Description: + 说明: + + + Memory: + + + + Flash algorithm: + + + + Target device not selected. + + + + Available Target Devices + + + + Path + + + + Debugger CPU library (depends on a CPU core). + + + + Debugger driver library. + + + + Driver library: + + + + CPU library: + + + + Target driver not selected. + + + + Available Target Drivers + + + + IAREW %1 (%2, %3) + + + + IAREW + + + + &Compiler path: + 编译器路径(&C): + + + Platform codegen flags: + + + + &ABI: + &ABI: + + + Enter the name of the debugger server provider. + + + + Enter TCP/IP hostname of the debug server, like "localhost" or "192.0.2.1". + + + + Enter TCP/IP port which will be listened by the debug server. + + + + KEIL %1 (%2, %3) + + + + KEIL + + + + SDCC %1 (%2, %3) + + + + SDCC + + + + + BaseFileWizard + + Unable to create the directory %1. + 无法创建目录 %1。 + + + + BaseMessage + + Cannot decode content with "%1". Falling back to "%2". + + + + Expected an integer in "%1", but got "%2". + @@ -29549,12 +4288,6 @@ Please check the directory's access rights. Branch: 分支: - - Perform a local commit in a bound branch. -Local commits are not pushed to the master branch until a normal commit is performed - 本地提交到一个受限的分支. -直到一次正常提交之前,本地提交不会直接合并到master分支 - Local commit 本地提交 @@ -29575,99 +4308,6 @@ Local commits are not pushed to the master branch until a normal commit is perfo Fixed bugs: 修复的bug: - - Perform a local commit in a bound branch. -Local commits are not pushed to the master branch until a normal commit is performed. - 本地提交到一个受限的分支. -直到一次正常提交之前,本地提交不会被推送到master分支。 - - - 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 - 默认情况下, 如果目标文件夹存在则分支将会失败, 但是如果还没有控制目录. -那么分支将被执行 - - - 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分支来指向源分支. -新的分支将会自动判断源分支的权限来确定可用性 - - - Stacked - Stacked - - - Do not use a shared repository, even if available - 即使可用,也不要使用共享仓库 - - - Standalone - 独立的 - - - Bind new branch to source location - 绑定新的分支到源路径 - - - 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 - 创建一个没有工作树的分支 - - - No working-tree - 无工作树 - - - 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. - 默认情况下,如果目标目录存在但还没有控制目录则branch将会失败。 -该标志允许branch继续执行。 - - - 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. - 即使可用,也不要使用共享仓库。 - - - Switch the checkout in the current directory to the new branch. - 切换当前目录的检出分支到新的分支。 - - - Hard-link working tree files where possible. - 如果可能,硬连接工作树下的文件。 - - - Create a branch without a working-tree. - 创建一个没有工作树的分支。 - - - - Bazaar - - Form - 界面 - Configuration 配置 @@ -29704,10 +4344,6 @@ The new branch will depend on the availability of the source branch for all oper Log count: 日志数: - - The number of recent commit logs to show, choose 0 to see all enteries - 要显示的最近提交日志的数目,选择 0 查看所有内容 - Timeout: 超时时间: @@ -29716,17 +4352,10 @@ The new branch will depend on the availability of the source branch for all oper s - - Prompt on submit - 提交时弹出提示 - The number of recent commit logs to show. Choose 0 to see all entries. 要显示的最近提交日志的数目,选择 0 查看所有内容。 - - - Bazaar Dialog 对话框 @@ -29743,10 +4372,6 @@ The new branch will depend on the availability of the source branch for all oper Local filesystem: 本地文件系统: - - for example https://[user[:pass]@]host[:port]/[path] - 比如https://[user[:pass]@]host[:port]/[path] - Specify URL: 指定URL: @@ -29759,30 +4384,14 @@ The new branch will depend on the availability of the source branch for all oper Remember specified location as default 记住指定的位置为默认位置 - - Ignore differences between branches and overwrite -unconditionally - 忽略分支和覆盖之间的差异 -无条件 - Overwrite 覆盖 - - 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 - 默认情况下, 如果目标文件夹存在则push将会失败, 但是如果还没有控制目录. -那么push将被执行 - Use existing directory 使用存在的目录 - - Create the path leading up to the branch if it does not already exist - 如果不存在则创建一个路径到分支 - Create prefix 创建前缀 @@ -29791,12 +4400,6 @@ This flag will allow push to proceed Revision: 修订版本: - - Perform a local pull in a bound branch. -Local pulls are not applied to the master branch - 本地pull到一个受限的分支. -本地 pull 不会合并到master分支 - Local 本地 @@ -29809,35 +4412,12 @@ Local pulls are not applied to the master branch Push Destination Push 目标 - - For example: https://[user[:pass]@]host[:port]/[path] - 例如 https://[用户名[:密码]@]主机名[:端口]/[路径] - - - Ignore differences between branches and overwrite -unconditionally. - the chinese translation is not as long as the original text. - 无条件地忽略分支和覆盖之间的差异。 - 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. 默认情况下,如果目标目录存在但还没有控制目录则push将会失败。 该标志允许push继续执行。 - - Create the path leading up to the branch if it does not already exist. - 如果不存在则创建分支的前导路径。 - - - Perform a local pull in a bound branch. -Local pulls are not applied to the master branch. - 在一个受限的分支中执行本地pull。 -本地 pull 不会应用到master分支。 - - - - Bazaar Revert 还原 @@ -29846,1709 +4426,10 @@ Local pulls are not applied to the master branch. Specify a revision other than the default? 指定一个修订版本而不使用默认版本? - - - Core::ExternalToolConfig - - Form - 界面 - - - Add tool - 添加工具 - - - Add - 添加 - - - Remove tool - 删除工具 - - - Remove - 删除 - - - Revert tool to default - 还原到默认工具 - - - Reset - 重置 - - - Description: - 说明: - - - Executable: - 执行档: - - - Arguments: - 参数: - - - Working directory: - 工作目录: - - - <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>对于执行档的标准输出如何处理。 -<ul><li>忽略: 什么也不做</li><li>显示到窗口: 显示到标准输出窗口中</li><li>覆盖选择: 在当前的文档种覆盖当前的选择</li></ul></p></body></html> - - - - Output: - 输出: - - - Ignore - 忽略 - - - Show in Pane - 显示在窗格中 - - - Replace Selection - 替代选择 - - - <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>对于执行档的标准错误输出如何处理.</p> -<ul><li>忽略: 什么也不做</li> -<li>显示到窗口: 显示到标准输出窗口中</li> -<li>覆盖选择: 在当前的文档种覆盖当前的选择</li></ul></p></body></html> -</ul></body></html> - - - Error output: - 错误输出: - - - Text to pass to the executable via standard input. Leave empty if the executable should not receive any input. - 通过标准输入传递给可执行文件的文本,如果可执行档不应收到任何输入则此项留白。 - - - Input: - 输入: - - - 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. - 如果工具修改了当前的文档,设置这个标志保证文档在工具运行前被保存并且在工具运行后自动重新载入文档。 - - - Modifies current document - 修改当前的文档 - - - Add Tool - 添加工具 - - - Add Category - 添加目录 - - - - MimeTypeMagicDialog - - Dialog - 对话框 - - - Value: - 值: - - - Type - 类型 - - - String - 字符串 - - - Byte - 字节 - - - Use Recommended - 使用建议 - - - Start range: - 开始范围: - - - End range: - 结束范围: - - - Priority: - 优先级: - - - <i>Note: Wide range values might impact on Qt Creator's performance when opening files.</i> - <i>注意: 广域的取值范围可能影响到Qt Creator's 打开文件的性能.</i> - - - <i>Note: Wide range values might impact Qt Creator's performance when opening files.</i> - <i>注意: 广域的取值范围可能影响到Qt Creator's 打开文件的性能.</i> - - - - MimeTypeSettingsPage - - Form - 界面 - - - Registered MIME Types - 注册了的MIME 类型 - - - Reset all to default - 重置所有为默认 - - - Reset All - 重置所有 - - - Details - 详情 - - - Patterns: - 模式: - - - Magic Header - 魔力头文件 - - - Type - 类型 - - - Range - 范围 - - - Priority - 优先级 - - - Add - 添加 - - - Edit - 编辑 - - - Remove - 删除 - - - Reset all to default. - 重置所有为默认. - - - Add... - 添加... - - - Edit... - 编辑... - - - - Core::VariableChooser - - Variables - 变量 - - - Select a variable to insert. - 选择一个变量来插入。 - - - Insert variable - 插入变量 - - - - LldbOptionsPageWidget - - Enable LLDB - 启用LLDB - - - Use Gdb python dumpers - 使用Gdb python dumpers - - - Use GDB python dumpers - 使用GDB python 回收助手 - - - Use GDB Python dumpers - 使用Gdb python dumpers - - - - StartRemoteEngineDialog - - Start Remote Engine - 启动远程引擎 - - - &Host: - 主机(&H): - - - &Username: - 用户名(&U): - - - &Password: - 密码(&P): - - - &Engine path: - 引擎路径(&E): - - - &Inferior path: - &Inferior 路径: - - - - Macros::Internal::MacroOptionsWidget - - Form - 界面 - - - Preferences - 首选项 - - - Name - 名称 - - - Description - 说明 - - - Shortcut - 快捷键 - - - Remove - 删除 - - - Macro - - - - Description: - 说明: - - - - Macros::Internal::SaveDialog - - Save Macro - 保存宏 - - - Name: - 名称: - - - Description: - 说明: - - - - MemcheckConfigWidget - - Backtrace frame count: - 回溯帧数: - - - Add - 添加 - - - Remove - 删除 - - - Track origins of uninitialized memory - 跟踪原始未初始化的内存 - - - - SuppressionDialog - - Dialog - 对话框 - - - Suppression File: - Suppression 文件: - - - - ProjectExplorer::Internal::PublishingWizardSelectionDialog - - Publishing Wizard Selection - 选择发布向导 - - - Available Wizards: - 可用向导: - - - Start Wizard - 开启向导 - - - Publishing is currently not possible for project '%1'. - 项目 '%1' 当前不可发布。 - - - - ToolChainOptionsPage - - Add - 添加 - - - Remove - 删除 - - - Clone - 克隆 - - - - QmakeProjectManager - - Used to extract QML type information from library-based plugins. - 使用基于库的插件来解压QML类型的信息。 - - - QML Dump: - QML 提取: - - - A modified version of qmlviewer with support for QML/JS debugging. - 修改过的qmlviewer版本支持QML/JS 调试. - - - QML Observer: - QML Observer: - - - QML Debugging Library: - QML 调试库: - - - Show compiler output of last build. - 显示最后一次构建的编译输出。 - - - Show Log - 显示日志 - - - Compile debugging helpers that are checked. - 编译选中的调试助手。 - - - Build All - 构建所有项目 - - - Helps showing content of Qt types. Only used in older versions of GDB. - 助手显示内容的Qt 类型。只使用在老版本的GDB上。 - - - GDB Helper: - GDB 助手: - - - - MaemoDeviceConfigurationsSettingsWidget - - Maemo Device Configurations - Maemo设备配置 - - - &Configuration: - 配置(&C): - - - &Name: - 名称(&N): - - - Device type: - 设备类型: - - - Authentication type: - 验证类型: - - - Password - 密码 - - - &Key - 密钥(&K) - - - &Host name: - 主机名称(&H): - - - IP or host name of the device - 设备的IP或者主机名称 - - - &SSH port: - SSH端口(&S): - - - Free ports: - 空闲端口: - - - You can enter lists and ranges like this: 1024,1026-1028,1030 - 您可以输入范围,输入形式如:1024,1026-1028,1030 - - - TextLabel - TextLabel - - - Connection time&out: - 连接超时(&O): - - - s - - - - &Username: - 用户名(&U): - - - &Password: - 密码(&P): - - - Show password - 显示密码 - - - Private key file: - 私钥文件: - - - Set as Default - 设置为默认 - - - OS type: - OS 类型: - - - &Add - 添加(&A) - - - &Remove - 删除(&R) - - - Click here to check whether this device is properly set up to run Maemo projects. - 选中此项来检查设备已经完成设置来运行Maemo项目了. - - - &Test - 测试(&T) - - - Click here if you do not have an SSH key yet. - 如果您还没有SSH密钥请点击这里。 - - - &Generate SSH Key ... - 生成SSH密钥(&G)... - - - &Deploy Public Key ... - 部署公钥(&D)... - - - Click here to see which processes are running on the device. - 点击这里查看设备上正在运行的进程。 - - - Remote Processes ... - 远程进程... - - - Set As Default - 设置为默认 - - - &Generate SSH Key... - 生成SSH密钥(&G)... - - - - MaemoPublishingUploadSettingsPageFremantleFree - - WizardPage - 向导页面 - - - Upload Settings - 上传设置 - - - Garage account name: - 车库账户名称: - - - <a href="https://garage.maemo.org/account/register.php">Get an account</a> - <a href="https://garage.maemo.org/account/register.php">取得帐号</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">请求获得上传权限</a> - - - Private key file: - 私钥文件: - - - Server address: - 服务器地址: - - - Target directory on server: - 在服务器上的目标文件夹: - - - - RemoteLinux - - List of Remote Processes - 远程进程列表 - - - &Filter by process name: - 按进程名过滤(&F): - - - &Update List - 更新列表(&U) - - - &Kill Selected Process - 停止选中进程(&K) - - - - QmakeProjectManager - - ARM &version: - ARM版本(&V): - - - Version 5 - 版本5 - - - Version 6 - 版本6 - - - &Compiler path: - 编译器路径(&C): - - - Environment Variables - 环境变量 - - - - RemoteLinux - - Details of Certificate - 验证详情 - - - Choose a build configuration: - 选择一个构建配置: - - - Only Qt versions above 4.6.3 are made available in this wizard. -Previous Qt versions have limitations in building suitable SIS files. - 只有Qt版本高于4.6.3 才能使用本向导. -之前的Qt版本在构建SIS 文件时有限制. - - - Choose a tool chain: - 选择一个工具链: - - - - RemoteLinux - - Global vendor name: - 全局供应商名称: - - - Qt version used in builds: - 在构建种使用的Qt 版本: - - - Current Qt Version - 当前的Qt版本 - - - Application UID: - 应用程序UID: - - - Current UID3 - 当前UID3 - - - Capabilities: - 能力: - - - Current set of capabilities - 当前设置的能力 - - - Current Global Vendor Name - 当前的全局供应商名称 - - - Localised vendor names: - 本地供应商名称: - - - Localised Vendor Names - 本地供应商名称 - - - Display name: - 显示名称: - - - - QmakeProjectManager - - Dialog - 对话框 - - - Compiler path: - 编译器路径: - - - System include path: - 系统包含路径: - - - System library path: - 系统库路径: - - - SBS v2 directory: - SBS v2 目录: - - - - Html5AppWizardSourcesPage - - WizardPage - 向导页面 - - - Main HTML File - 主HTML 文件 - - - Generate an index.html file - 创建一个index.html 文件 - - - Import an existing .html file - 导入一个现有的.html 文件 - - - Load a URL - 载入一个URL - - - Touch optimized navigation - 触摸导航 - - - Enable touch optimized navigation - 开启触摸导航 - - - - MobileAppWizardGenericOptionsPage - - WizardPage - 向导页面 - - - Orientation behavior: - 自适应行为: - - - - MobileAppWizardMaemoOptionsPage - - WizardPage - 向导页面 - - - Application icon (64x64): - 应用程序图标(64x64): - - - Application icon (%%w%%x%%h%%): - 应用程序图标(%%w%%x%%h%%): - - - - MobileAppWizardSymbianOptionsPage - - WizardPage - 向导页面 - - - Application icon (.svg): - 应用程序图标(.svg): - - - Target UID3: - 目标UID3: - - - Enable network access - 允许网络访问 - - - - BehaviorSettingsPage - - Form - 界面 - - - - BehaviorSettingsWidget - - Tabs and Indentation - 制表符和缩进 - - - Insert &spaces instead of tabs - 插入空格代替制表符(&S) - - - Ta&b size: - 制表符尺寸(&B): - - - Automatically determine based on the nearest indented line (previous line preferred over next line) - 按最近的缩进行自动决定 (前一行优先于后一行) - - - Based on the surrounding lines - 依据周围行的情况 - - - &Indent size: - 缩进尺寸(&i): - - - Enable automatic &indentation - 开启自动缩进(&i) - - - Backspace will go back one indentation level instead of one space. - 退格键将退回一个缩进而不是一个空白. - - - &Backspace follows indentation - 退格键跟随缩进(&B) - - - Block indentation style: - 代码块缩进风格: - - - <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> -控制花括号的缩进风格 - -<ul> -<li>排除花括号: 花括号不缩进。 -<pre> -void foo() -{ - if (a) - { - bar(); - } -} -</pre> -</li> - -<li>包括花括号: 缩进花括号。代码块的内容与花括号在同一层。 -<pre> -void foo() - { - if (a) - { - bar(); - } - } -</pre> -</li> - -<li>GNU 风格: 缩进声明内部的花括号。其内容缩进两次。 -<pre> -void foo() -{ - if (a) - { - bar(); - } -} -</pre> -</li> -</ul></body></html> - - - Exclude Braces - 不包括括号 - - - Include Braces - 包括括号 - - - GNU Style - GNU风格 - - - Never - 从不 - - - Always - 总是 - - - In Leading White Space - 仅用于行首空白 - - - Align continuation lines: - 对齐连续行: - - - <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> -改变连续行的缩进 - -<ul> -<li>不对齐: 不进行对齐。代码行只根据当前逻辑缩进深度进行缩进。 -<pre> -(tab)int i = foo(a, b -(tab)c, d); -</pre> -</li> - -<li>伴随空格: 允许使用空格进行对齐,忽略其他缩进设置。 -<pre> -(tab)int i = foo(a, b -(tab) c, d); -</pre> -</li> - -<li>伴随规则缩进: 在原设置上使用 tab 或 空格进行对齐。 -<pre> -(tab)int i = foo(a, b -(tab)(tab)(tab) c, d); -</pre> -</li> -</ul></body></html> - - - Not At All - 不对齐 - - - With Spaces - 伴随空格 - - - With Regular Indent - 伴随规则缩进 - - - Cleanup actions which are automatically performed right before the file is saved to disk. - 文件保存到磁盘上去之前清理工作将会自动执行。 - - - Cleanups Upon Saving - 保存时清理 - - - Removes trailing whitespace upon saving. - 保存时去除尾部空白. - - - &Clean whitespace - 清除空白(&C) - - - Clean whitespace in entire document instead of only for changed parts. - 清除整个文档的空白代,不只清除改变部分的空白. - - - In entire &document - 整个文档适用(&D) - - - Correct leading whitespace according to tab settings. - 根据tab设置正确留白. - - - Clean indentation - 清空缩进 - - - &Ensure newline at end of file - 确保文件结尾有新的一行(&E) - - - File Encodings - 文件编码 - - - Default encoding: - 默认编码: - - - <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>文本编辑器如何处理 UTF-8编码签名 . 选项是:</p> -<ul ><li><i>如果编码是 UTF-8:</i> 当保存为UTF-8 编码时总是添加BOM . 这将不会工作如果编码是<i>System</i>, Qt Creator 不知道它确切编码是什么.</li> -<li><i>如果已经存在则保持: </i>如果已经存在,当他载入时保存文件伴随BOM .</li> -<li><i>总是删除:</i> 从来不写UTF-8 BOM, 还有可能删除已经存在的.</li></ul> -<p>注意UTF-8 BOMs 是不统一的并且一些编辑器处理方式也不同, 所以通常情况下添加的意义不大.</p> -<p>此项设置 <b>不</b> 影响UTF-16 和UTF-32 BOMs的使用.</p></body></html> - - - Add If Encoding Is UTF-8 - 如果编码是UTF-8则添加 - - - Keep If Already Present - 目前存在了则保持 - - - Always Delete - 总是删除 - - - Mouse - 鼠标 - - - Enable &mouse navigation - 开启鼠标导航(&M) - - - Enable scroll &wheel zooming - 开启鼠标滚轮缩放(&W) - - - Typing - 打字 - - - Backspace indentation: - 退格缩进: - - - <html><head/><body> -Specifies how backspace interacts with indentation. - -<ul> -<li>None: No interaction at all. Regular plain backspace behavior. -</li> - -<li>Follows Previous Indents: In leading white space it will take the cursor back to the nearest indentation level used in previous lines. -</li> - -<li>Unindents: If the character behind the cursor is a space it behaves as a backtab. -</li> -</ul></body></html> - - <html><head/><body> -指定退格键如何与缩进互动. - -<ul> -<li>无: 没有任何互动. 正常的退格键行为. -</li> - -<li>跟随上次的缩进: 依据之前行的缩进来进行缩进. -</li> - -<li>没有缩进: 如果鼠标之后的字符是空格他将表现为 backtab. -</li> -</ul></body></html> - - - - None - - - - Follows Previous Indents - 跟随之前的缩进 - - - Unindents - 不缩进 - - - Enable &tooltips only when Shift key is down - 只有当Shift键按下时,才启用 tooltips(&T) - - - Always write a newline character at the end of the file. - 总是在最后一行之后留一行空白行. - - - - SnippetsSettingsPage - - Form - 界面 - - - Group: - 组: - - - Add - 添加 - - - Remove - 删除 - - - Revert Built-in - 还原到内置 - - - Restore Removed Built-ins - 恢复被删除的内置 - - - Reset All - 充值所有 - - - - Valgrind - - Common Valgrind Options - 常用Valgrind 命令 - - - - QmlJS::TypeDescriptionReader - - %1: %2 - %1: %2 - - - Errors while loading qmltypes from %1: -%2 - %1导入qmltypes时发生错误: -%2 - - - Warnings while loading qmltypes from %1: -%2 - %1导入qmltypes时发生警告: -%2 - - - - Utils::AbstractProcess - - Cannot retrieve debugging output. - 无法获取调试输出. - - - - Utils::EnvironmentModel - - <UNSET> - <未设定> - - - Variable - 变量 - - - Value - - - - <VARIABLE> - Name when inserting a new variable - <变量> - - - <VALUE> - Value when inserting a new variable - <值> - - - - Utils::IpAddressLineEdit - - The IP address is not valid. - IP地址无效。 - - - - Utils::QtcProcess - - Error in command line. - 命令行发生错误。 - - - - Utils::Internal::SftpChannelPrivate - - Server could not start sftp subsystem. - 服务器无法启动 sftp 子系统。 - - - Unexpected packet of type %1. - 未预料的包,类型 %1。 - - - Protocol version mismatch: Expected %1, got %2 - 协议版本不匹配:期望 %1,得到 %2 - - - Unknown error. - 未知错误. - - - Created remote directory '%1'. - 创建远程目录 '%1'。 - - - Remote directory '%1' already exists. - 远程目录 '%1'已存在。 - - - Error creating directory '%1': %2 - 创建文件夹时发生错误 '%1':'%2' - - - Could not open local file '%1': %2 - 无法打开本地文件 '%1':%2 - - - Remote directory could not be opened for reading. - 无法打开用于读取的远程目录。 - - - Failed to list remote directory contents. - 列出远程目录的内容失败。 - - - Failed to close remote directory. - 关闭远程目录失败。 - - - Failed to open remote file for reading. - 打开用于读取的远程文件失败。 - - - Failed retrieve information on the remote file ('stat' failed). - 获取远程文件的信息失败('stat' 失败)。 - - - Failed to read remote file. - 读取远程文件失败。 - - - Failed to close remote file. - 关闭远程文件失败。 - - - Failed to open remote file for writing. - 打开用于写入的远程文件失败。 - - - Failed to write remote file. - 写入远程文件失败。 - - - Cannot append to remote file: Server does not support the file size attribute. - 无法附加到远程文件:服务器不支持文件大小属性。 - - - Server could not start session. - 服务器无法启动会话。 - - - Error reading local file: %1 - 读取本地文件时发生错误:%1 - - - - Utils::Internal::SshChannelManager - - Invalid channel id %1 - 无效的通道 ID %1 - - - - Utils::Internal::SshConnectionPrivate - - SSH Protocol error: %1 - SSH协议错误:%1 - - - Botan library exception: %1 - Botan库异常:%1 - - - Invalid protocol version: Expected '2.0', got '%1'. - 无效协议版本.期望版本'2.0',实际版本'%1'. - - - Invalid server id '%1'. - 服务器id'%1'非法. - - - Unexpected packet of type %1. - 未预料的包,类型 %1。 - - - Could not read private key file: %1 - 无法读取私钥文件:'%1' - - - Private key error: %1 - 私钥错误: %1 - - - Password expired. - 密码过期. - - - Server rejected password. - 密码被服务器退回. - - - Server rejected key. - 密钥被服务器退回. - - - The server sent an unexpected SSH packet of type SSH_MSG_UNIMPLEMENTED. - 服务器发出一个未知的SSH 类型包SSH_MSG_UNIMPLEMENTED. - - - Server closed connection: %1 - 连接已被服务器关闭:%1 - - - Connection closed unexpectedly. - 连接意外关闭. - - - Timeout waiting for reply from server. - 等待Server响应超时. - - - No private key file given. - 未给出私钥文件。 - - - Private key file error: %1 - 私钥文件错误: %1 - - - - Valgrind - - No errors found - 没有找到错误 - - - What - 什么 - - - Unique - 独一无二 - - - Thread ID - 线程ID - - - Kind - 类型 - - - Leaked Blocks - 泄漏块 - - - Leaked Bytes - 泄露字节 - - - Helgrind Thread ID - Helgrind线程ID - - - - Valgrind - - Function: - 函数: - - - Location: - 位置: - - - Instruction pointer: - 指令指针: - - - Object: - 对象: - - - - Valgrind - - Could not parse hex number from "%1" (%2) - 无法从"%1" (%2) 解析出十六进制数字 - - - trying to read element text although current position is not start of element - 尝试着读取元素的文本尽管当前的位置不是元素的开头 - - - Unexpected child element while reading element text - 读取文本元素时遇到非预期的子元素 - - - Unexpected token type %1 - 非预期的符号类型 %1 - - - Could not parse protocol version from "%1" - 无法从"%1" 解析协议版本 - - - XmlProtocol version %1 not supported (supported version: 4) - XmlProtocol 版本%1 不被支持(支持版本: 4) - - - Valgrind tool "%1" not supported - Valgrind 工具"%1" 不被支持 - - - Unknown memcheck error kind "%1" - 未知的 memcheck 错误"%1" - - - Unknown helgrind error kind "%1" - 未知的helgrind错误类型"%1" - - - Unknown ptrcheck error kind "%1" - 未知的 ptrcheck 错误类型"%1" - - - Could not parse error kind, tool not yet set. - 无法解析错误类型,工具还未被设置。 - - - Unknown state "%1" - 未知状态"%1" - - - Unexpected exception caught during parsing. - 解析时遇到未知异常。 - - - - Valgrind - - Description - 说明 - - - Instruction Pointer - 指令指针 - - - Object - 对象 - - - Directory - 目录 - - - File - 文件 - - - Line - 行号 - - - - Analyzer - - Analyzer - 分析器 - - - - Analyzer::Internal::AnalyzerMode - - Analyze - 分析 - - - - Analyzer::AnalyzerManager - - Tool "%1" finished, %n issues were found. - - 工具'%1' 完成, 找到%n 个问题。 - - - - Tool "%1" finished, no issues were found. - 工具'%1' 完成, 未找到问题。 - - - - Analyzer::Internal::AnalyzerPlugin - - Analyzer - Category under which Analyzer tasks are listed in Issues view - 分析器 - - - - Analyzer::Internal::AnalyzerRunConfigWidget - - Analyzer settings: - 分析器设置: - - - Analyzer Settings - 分析器设置 - - - Available settings: %1 - 可用的设置: %1 - - - - Analyzer::Internal::AnalyzerRunControlFactory - - Analyzer - 分析器 - - - No analyzer tool selected - 没有选中任何分析器工具 - - - - Analyzer::Internal::AnalyzerRunControl - - Build Issues - 构建问题 - - - - Analyzer::AnalyzerProjectSettings - - Analyzer Settings - 分析器设置 - - - - Analyzer::IAnalyzerTool - - Debug - 调试 - - - Release - 发布 - - - (Remote) - (远程) - - - (External) - (外部) - - - - Bazaar Bazaar Bazaar - - - Bazaar - - Annotate %1 - 注释 "%1" - - - Annotate parent revision %1 - 注释父修订版本%1 - - - - Bazaar Annotate Current File Annotate 当前文件 @@ -31677,34 +4558,10 @@ Specifies how backspace interacts with indentation. Update 更新 - - Commit - 提交 - - - Diff &Selected Files - Diff 选中的文件(&S) - - - Diff Selected Files - Diff 选中的文件 - - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - There are no changes to commit. 没有修改可提交。 - - Unable to generate a temporary file for the commit editor. - 无法为提交编辑器生成临时文件。 - Unable to create an editor for the commit. 无法为提交创建编辑器。 @@ -31717,9266 +4574,3234 @@ Specifies how backspace interacts with indentation. Commit changes for "%1". 为 "%1" 提交修改。 - - Close Commit Editor - 关闭Commit编辑器 - - - Do you want to commit the changes? - 您想提交修改吗? - - - Message check failed. Do you want to proceed? - 信息检查失败,您想要继续吗? - - - - Bazaar - - Clones a Bazaar branch and tries to load the contained project. - 克隆一个Bazaar 分支并尝试载入其中的项目。 - - - Bazaar Clone (Or Branch) - Bazaar 克隆(或者分支) - - - - Bazaar - - Location - 位置 - - - Specify repository URL, clone directory and path. - 指定仓库URL,克隆目录和路径。 - - - Clone URL: - 克隆 URL: - - - - Bazaar Commit Editor 提交编辑器 - - - Bazaar Bazaar Command Bazaar 命令 - - - Core::Internal::ExternalToolModel - - Uncategorized - 未分类 - - - Tools that will appear directly under the External Tools menu. - 工具会直接显示在“外部工具”菜单中。 - - - New Category - 新类别 - - - New Tool - 新工具 - - - This tool prints a line of useful text - 此工具可以打印一行有用的文本 - - - /c echo Useful text - /c 显示有用的文本 - - - Useful text - Sample external tool text - 有用的文本 - - - - Core::Internal::ExternalTool - - Could not open tool specification %1 for reading: %2 - 无法打开工具定义%1 来读取: %2 - - - Could not write tool specification %1: %2 - 无法读取工具定义%1: %2 - - - Creates qm translation files that can be used by an application from the translator's ts files - 从翻译人员的ts 文件生成 可以用在程序中的qm 翻译文件 - - - Release Translations (lrelease) - 发布翻译(lrelease) - - - Linguist - Qt语言家 - - - Synchronizes translator's ts files with the program code - 与程序代码同步ts文件 - - - Update Translations (lupdate) - 更新翻译(lupdate) - - - Opens the current file in Notepad - 用记事本打开当前文件 - - - Edit with Notepad - 使用记事本编辑 - - - Text - 文本 - - - Runs the current QML file with qmlviewer - 使用 qmlviewer 运行当前 QML文件 - - - Preview (qmlviewer) - 预览 (qmlviewer) - - - Qt Quick - Qt Quick - - - Sorts the selected text - 对选定文本进行排序 - - - Sort Selection - 排序选定 - - - Opens the current file in vi - 在vi中打开当前文件 - - - Edit with vi - 使用vi进行编辑 - - - - Core::Internal::ExternalToolRunner - - Could not find executable for '%1' (expanded '%2') - - 无法为'%1'找到执行文件 (展开了'%2') - - - - Starting external tool '%1' %2 - 启动外部工具'%1' %2 - - - '%1' finished - '%1' 完成 - - - - Core::ExternalToolManager - - Configure... - 配置... - - - External - 外部 - - - &External - 外部(&E) - - - Error while parsing external tool %1: %2 - 解析外部工具%1时发生错误: %2 - - - Error: External tool in %1 has duplicate id - 错误: 在%1的外部工具有重复ID - - - - Core::Internal::MimeTypeMagicDialog - - Magic Header - 魔力头文件 - - - Add Magic Header - 添加Magic Header - - - Error - 错误 - - - Not a valid byte pattern. - 不是一个有效的字节形式。 - - - Dialog - 对话框 - - - Value: - 值: - - - Type - 类型 - - - String - 字符串 - - - Byte - 字节 - - - Use Recommended - 使用建议 - - - Start range: - 开始范围: - - - End range: - 结束范围: - - - Priority: - 优先级: - - - <i>Note: Wide range values might impact Qt Creator's performance when opening files.</i> - <i>注意: 广域的取值范围可能影响到Qt Creator 打开文件的性能。</i> - - - - Core::Internal::MimeTypeSettingsModel - - MIME Type - MIME 类型 - - - Handler - 处理器 - - - Undefined - 未定义 - - - Invalid MIME Type - 无效MIME 类型 - - - Conflicting pattern(s) will be discarded. - 发生冲突的模式将被丢弃。 - - - %n pattern(s) already in use. - - %n 个样式已在使用中。 - - - - - Core::Internal::MimeTypeSettingsPrivate - - Error - 错误 - - - No MIME type selected. - 没有选中任何MIME类型。 - - - No magic header selected. - 没有选中任何magic header文件。 - - - MIME Types - MIME 类型 - - - Changes will take effect in the next time you start Qt Creator. - 这些选项将在Qt Creator 下次启动时生效。 - - - - Core::Internal::MimeTypeSettings - - MIME Types - MIME 类型 - - - - Core::Internal::ToolSettings - - External Tools - 外部工具 - - - - Core::VcsManager - - Version Control - 版本控制 - - - Would you like to remove this file from the version control system (%1)? -Note: This might remove the local file. - 您想从版本控制系统 (%1)中删除此文件么? -注意: 本地文件有可能被删除。 - - - Add to Version Control - 添加到版本控制系统 - - - Add the file -%1 -to version control (%2)? - 添加文件 -%1 -到版本控制 (%2)吗? - - - Add the files -%1 -to version control (%2)? - 添加文件 -%1 -到版本控制 (%2)吗? - - - Adding to Version Control Failed - 添加文件到版本控制系统失败 - - - Could not add the file -%1 -to version control (%2) - - 无法添加文件 -%1 -到版本控制系统 (%2) - - - - Could not add the following files to version control (%1) -%2 - 无法添加以下文件到版本控制系统 (%1) -%2 - - - - CppEditor::Internal::CPPEditorWidget - - Sort Alphabetically - 按字母排序 - - - This change cannot be undone. - 这项改变将无法被撤销。 - - - Yes, I know what I am doing. - 是的,我知道自己在做什么。 - - - &Refactor - 重构(&R) - - - Unused variable - 未使用的变量 - - - - CppEditor::Internal::InsertQtPropertyMembers - - Generate missing Q_PROPERTY members... - 生成丢失Q_PROPERTY成员... - - - Generate Missing Q_PROPERTY Members... - 生成缺失的Q_PROPERTY成员... - - - - CppEditor::Internal::CppOutlineTreeView - - Expand All - 展开全部 - - - Collapse All - 折叠全部 - - - - CppEditor::Internal::CppSnippetProvider - - C++ - C++ - - - - Debugger - - Edit Breakpoint Properties - 编辑断点属性 - - - &Condition: - 条件(&C): - - - &Thread specification: - 线程信息(&T): - - - - Debugger - - <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>远程CDB 需要载入匹配的Qt Creator CDB 插件(<code>%1</code> or <code>%2</code>, respectively).</p><p>复制到远程机器然后设置环境变量<code>%3</code> 指向这个文件夹.</p><p>启动远程CDB 作为 <code>%4 &lt;执行档&gt;</code> 来使用TCP/IP 作为通信协议.</p><p>输入连接参数如:</p><pre>%5</pre></body></html> - - - <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>远程CDB需要载入匹配的Qt Creator CDB扩展(<code>%1</code>或 <code>%2</code>,按顺序)。</p><p>请把它复制到远程机器,并设定环境变量 <code>%3</code> 指向它所在的目录。</p><p>以 <code>%4 &lt;可执行档&gt;</code>的方式启动远程CDB以使用TCP/IP作为通讯协议。</p><p>按照</p><pre>%5</pre>的格式输入连接的参数</body></html> - - - Start a CDB Remote Session - 启动一个CDB远程会话 - - - &Connection: - 连接(&C): - - - - Debugger - - Memory... - 内存... - - - Debugger Toolbar - 调试器工具栏 - - - - Debugger - - No function selected. - 没有选择函数。 - - - Running to function "%1". - 运行到函数"%1"。 - - - Process %1 - 进程%1 - - - Attaching to local process %1. - attach到本地进程%1。 - - - Remote: "%1" - 远程:'%1' - - - Attaching to remote server %1. - 关联到远程服务器%1。 - - - Core file "%1" - 核心文件'%1' - - - Attaching to core file %1. - 关联到核心文件 %1。 - - - Crashed process %1 - 崩溃的进程%1 - - - Attaching to crashed process %1 - attach到崩溃的进程%1 - - - 0x%1 hit - Message tracepoint: Address hit. - 命中地址0x%1 - - - %1:%2 %3() hit - Message tracepoint: %1 file, %2 line %3 function hit. - 命中%1:%2 %3() - - - Add Message Tracepoint - 添加消息追踪点 - - - Executable file "%1" - 可执行文件:"%1" - - - Debugging file %1. - 调试文件%1。 - - - Cannot attach to process with PID 0 - 无法attach到PID为0的进程 - - - Debugger attached to %1 - 调试器挂接到%1 - - - Remove Breakpoint %1 - 移除断点%1 - - - Disable Breakpoint %1 - 禁用断点 %1 - - - Enable Breakpoint %1 - 启用断点 %1 - - - Edit Breakpoint %1... - 编辑断点%1... - - - Set Breakpoint at 0x%1 - 在0x%1处设置断点 - - - Set Breakpoint at line %1 - 在第%1行设置断点 - - - Set Message Tracepoint at 0x%1... - 在0x%1处设置消息追踪点... - - - Set Message Tracepoint at line %1... - 在%1行设置消息追踪点... - - - Start '%1' and break at function 'main()' - 启动'%1' 然后在'main()'函数处停止 - - - Save Debugger Log - 保存调试器日志 - - - User commands are not accepted in the current state. - 在当前状态下不能接收用户的命令。 - - - Debugger finished. - 调试器已结束。 - - - QML Script Console - QML脚本命令行 - - - Continue - 继续 - - - Exit Debugger - 退出调试器 - - - Interrupt - 中断 - - - Debugger is Busy - 调试器忙 - - - Abort Debugging - 终止调试 - - - Aborts debugging and resets the debugger to the initial state. - 终止调试并重置调试器到初始状态。 - - - Step Over - 单步跳过 - - - Step Into - 单步进入 - - - Step Out - 单步跳出 - - - Run to Line - 执行到行 - - - Run to Selected Function - 运行到选择的函数 - - - Immediately Return From Inner Function - 从内层函数立即返回 - - - Jump to Line - 跳到指定行 - - - Toggle Breakpoint - 切换断点 - - - Add to Watch Window - 添加到监视窗口 - - - Reverse Direction - 掉转方向 - - - Move to Called Frame - 移动到被调用的帧 - - - Move to Calling Frame - 移动到调用帧 - - - Error evaluating command line arguments: %1 - 命令行参数赋值错误: %1 - - - Start Debugging - 开始调试 - - - Start and Debug External Application... - 启动和调试外部应用程序... - - - Start and Debug External Application with External Engine... - 启动和调试外部应用程序使用外部调试引擎... - - - Start and Debug Remote Application... - 启动并且调试远程应用... - - - Attach to Remote Debug Server... - 关联到远程调试服务器... - - - Attach to QML Port... - 关联到QML端口... - - - This attaches to a running 'Target Communication Framework' agent. - 这将附加到运行中的'目标通信框架'协议. - - - Attach to Remote CDB Session... - 挂接到一个CDB会话... - - - Detach Debugger - 脱离调试器 - - - Interrupt Debugger - 中断调试器 - - - Stop Debugger - 停止调试 - - - Process Already Under Debugger Control - 进程已在调试器控制之下 - - - The process %1 is already under the control of a debugger. -Qt Creator cannot attach to it. - 进程%1 已经运行在调试器之下。 -Qt Creator 无法attach到进程。 - - - Set Breakpoint at Line %1 - 在第%1行设置断点 - - - Set Message Tracepoint at Line %1... - 在%1行设置消息追踪点... - - - Disassemble Function "%1" - 反汇编函数 "%1" - - - Starting debugger "%1" for ABI "%2"... - 为 ABI '%2'启动调试器'%1'... - - - Ctrl+Y - Ctrl+Y - - - F5 - F5 - - - Select - 选择 - - - Zoom - 缩放 - - - Start Debugging Without Deployment - 忽略部署直接开始调试 - - - Load Core File... - 载入核心文件... - - - Start Remote Debug Server Attached to Process... - 启动关联到进程的远程调试服务器... - - - Attach to Running Application... - 关联到运行中的程序... - - - Attach to Running Application - 关联到运行中的程序 - - - Start Gdbserver - 启动 Gdbserver - - - Shift+Ctrl+Y - Shift+Ctrl+Y - - - Shift+F5 - Shift+F5 - - - Reset Debugger - 重置调试器 - - - Ctrl+Shift+O - Ctrl+Shift+O - - - F10 - F10 - - - Ctrl+Shift+I - Ctrl+Shift+I - - - F11 - F11 - - - Ctrl+Shift+T - Ctrl+Shift+T - - - Shift+F11 - Shift+F11 - - - Shift+F8 - Shift+F8 - - - Ctrl+F10 - Ctrl+F10 - - - Ctrl+F6 - Ctrl+F6 - - - F12 - F12 - - - F8 - F8 - - - F9 - F9 - - - Threads: - 线程: - - - Symbol - 符号 - - - Address - 地址 - - - Code - 代码 - - - Section - - - - Symbols in "%1" - "%1" 中的符号 - - - <new source> - <新源> - - - <new target> - <新目标> - - - Source path - 源路径 - - - Target path - 目标路径 - - - Add - 添加 - - - Add Qt sources... - 添加Qt 源码... - - - Remove - 删除 - - - Source Paths Mapping - 源码路径映射 - - - <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>调试器使用的映射源文件夹在这里输入.</p><p>这在使用的源代码树的副本和模块构建的路径不一致时非常有用, 比如, 在远程调试的时候。</body></html> - - - Add a mapping for Qt's source folders when using an unpatched version of Qt. - 添加一个Qt源文件夹的映射使用没打过补丁的Qt版本。 - - - The source path contained in the debug information of the executable as reported by the debugger - 调试器报告的执行档的调试信息中包含的源码路径 - - - The source path contained in the executable's debug information as reported by the debugger - 源路径中的可执行文件的调试信息中所报告的调试器 - - - &Source path: - 源路径(&S): - - - The actual location of the source tree on the local machine - 本机上源码树的实际路径 - - - &Target path: - 目标路径(&T): - - - Qt Sources - Qt 源码 - - - - Debugger - - %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>调试器:</td><td>%2</td></tr> - - - Debugging complex command lines is currently not supported under Windows - 调试复杂的命令行目前在windows下尚不支持 - - - Debugging complex command lines is currently not supported on Windows. - 调试复杂的命令行目前在windows下尚不支持。 - - - - Debugger - - Fatal engine shutdown. Incompatible binary or IPC error. - 致命引擎关闭。不匹配的二进制或IPC错误。 - - - Fatal engine shutdown. Incompatible binary or ipc error. - 致命引擎关闭。不匹配的二进制或IPC错误。 - - - - Debugger - - qtcreator-lldb failed to start: %1 - qtcreator-lldb 无法启动: %1 - - - Fatal engine shutdown. Consult debugger log for details. - 致命引擎关闭。查看调试器日志来获取详细信息。 - - - SSH connection error: %1 - SSH连接错误:%1 - - - - Debugger - - LLDB - LLDB - - - - Debugger - - Memory $ - 内存 $ - - - No memory viewer available - 没有可用的内存查看器 - - - Memory at 0x%1 - 在 0x%1地址处的内存 - - - No Memory Viewer Available - 没有可用的内存查看器 - - - The memory contents cannot be shown as no viewer plugin for binary data has been loaded. - 没有载入二进制数据查看器插件,无法显示内存内容。 - - - - Debugger - - The slave debugging engine required for combined QML/C++-Debugging could not be created: %1 - 整合QML/C++-调试需要的从属调试引擎无法被创建: %1 - - - C++ debugger activated - 激活C++ 调试器 - - - QML debugger activated - 激活QML 调试器 - - - %1 debugger activated - 已激活%1调试器 - - - QML/C++ Debugging - QML/C++ 调试 - - - Cannot stop execution before QML engine is started. Skipping breakpoint. -Suggestions: Move the breakpoint after QmlApplicationViewer instantiation or switch to C++ only debugging. - 无在QML 引擎启动之前法停止执行. 跳过断点. -建议: 移动断点到QmlApplicationViewer 之后或者切换到C++ 调试. - - - - Debugger - - QML Debugger connected. - QML调试器已连接. - - - QML Debugger connecting... - 正在连接QML调试器... - - - No application output received in time - 没有及时收到应用程序的输出 - - - Qt Creator - Qt Creator - - - Could not connect to the in-process QML debugger. -Do you want to retry? - 无法连接到进程内(in-process)QML调试器。 -您想要重试吗? - - - Could not connect to the in-process QML debugger. -%1 - 无法连接到进程内(in-process)QML调试器。 -%1 - - - QML Debugger: Remote host closed connection. - QML调试器:连接被远端主机关闭。 - - - QML Debugger: Could not connect to service '%1'. - QML调试器:无法连接到服务 '%1'。 - - - JS Source for %1 - %1的JS源码 - - - Run to line %1 (%2) requested... - 请求执行到行 %1(%2)... - - - Context: - 上下文: - - - The port seems to be in use. - Error message shown after 'Could not connect ... debugger:" - 端口已被使用. - - - The application is not set up for QML/JS debugging. - Error message shown after 'Could not connect ... debugger:" - 应用没有被设置为QML/JS 调试. - - - Could not connect to the in-process QML debugger: -%1 - %1 is detailed error message - 无法连接到QML 调试器: -%1 - - - Starting %1 %2 - 正在启动 %1 %2 - - - Application startup failed: %1 - 应用程序启动失败:%1 - - - QML Debugger disconnected. - QML调试器连接已断开。 - - - From: - 从: - - - To: - 到: - - - - Git - - Use the patience algorithm for calculating the diff - 使用耐心算法来计算差异 - - - Use the patience algorithm for calculating the differences. - 使用耐心算法来计算差异。 - - - Patience - 耐心 - - - Ignore whitespace only changes. - 忽略仅为空白的修改。 - - - Ignore whitespace only changes - 忽略空白仅关注改变 - - - Ignore Whitespace - 忽略空白 - - - Select the pretty printing format - 选择一个漂亮的输出格式 - - - Select the pretty printing format. - 选择一个漂亮的输出格式. - - - oneline - oneline - - - short - short - - - medium - medium - - - full - full - - - fuller - fuller - - - email - 电子邮件 - - - raw - raw - - - Do not show the date a change was made in the output - 输出改变了不要显示日期 - - - Hide the date of a change from the output. - 在输出隐藏更改的日期。 - - - Omit Date - 忽略日期 - - - - GLSLEditor::Internal::FunctionArgumentWidget - - %1 of %2 - %1/%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. - 使用OpenGL/ES 2.0 着色语言 (GLSL/ES)来创建一个片段着色器。片段着色器生成OpenGL渲染的三角形、点以及线的最终像素颜色。 - - - Fragment Shader (OpenGL/ES 2.0) - 片段着色器 (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. - 使用OpenGL/ES 2.0 着色语言 (GLSL/ES)来创建一个顶点着色器。顶点着色器对OpenGL渲染的三角形、点和线进行位置和纹理坐标的变形。 - - - Vertex Shader (OpenGL/ES 2.0) - 顶点着色器 (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. - 使用桌面OpenGL 着色语言 (GLSL)来创建一个片段着色器。片段着色器生成OpenGL渲染的三角形、点以及线的最终像素颜色。 - - - Fragment Shader (Desktop OpenGL) - 片段着色器 (桌面 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. - 使用桌面OpenGL 着色语言 (GLSL)来创建一个顶点着色器。顶点着色器对OpenGL渲染的三角形、点和线进行位置和纹理坐标的变形。 - - - Vertex Shader (Desktop OpenGL) - 顶点着色器 (桌面 OpenGL) - - - - GLSLEditor::GLSLFileWizard - - New %1 - 新建 %1 - - - - Macros::Internal::MacroLocatorFilter - - Macros - - - - - Macros::MacroManager - - Playing Macro - 播放宏 - - - An error occured while replaying the macro, execution stopped. - 播放macro时发生错误, 执行停止. - - - An error occurred while replaying the macro, execution stopped. - 播放macro时发生错误, 执行停止。 - - - Macro mode. Type "%1" to stop recording and "%2" to play it - 宏模式. 按"%1" 停止录制,按"%2" 播放 - - - Stop Recording Macro - 停止录制宏 - - - - Macros::Internal::MacrosPlugin - - &Macros - 宏(&M) - - - Record Macro - 录制宏 - - - Ctrl+( - Ctrl+( - - - Alt+( - Alt+( - - - Stop Recording Macro - 停止录制宏 - - - Ctrl+) - Ctrl+) - - - Alt+) - Alt+) - - - Play Last Macro - 播放最近的宏 - - - Alt+R - Alt+R - - - Meta+R - Meta+R - - - Save Last Macro - 保存最近的宏 - - - - Analyzer::Internal::MemcheckConfigWidget - - Valgrind Suppression File (*.supp);;All Files (*) - Valgrind 配置文件 (*.supp);;所有文件 (*) - - - - Analyzer::Internal::MemcheckEngine - - Analyzing Memory - 内存分析中 - - - Analyzing memory of %1 - 内存分析中%1 - - - - Analyzer::Internal::MemcheckErrorView - - Copy Selection - 复制选择 - - - Suppress Error - 防止错误 - - - - Analyzer::Internal::AbstractMemcheckSettings - - Memory Analysis - 内存分析 - - - - Analyzer::Internal::MemcheckTool - - External Errors - 外部错误 - - - Definite Memory Leaks - 明显内存溢出 - - - Possible Memory Leaks - 可能内存溢出 - - - Use of Uninitialized Memory - 使用了未初始化的内存 - - - Invalid Frees - 不合法的释放 - - - Show issues originating outside currently opened projects. - 一些情况发生在当前打开项目的外部. - - - These suppression files were used in the last memory analyzer run. - 这些suppression 文件被上一次内存分析所使用. - - - These suppression files where used in the last memory analyzer run. - 这些suppression 文件被使用在最近一次内存分析运行中. - - - Analyze Memory - 分析内存 - - - Error Filter - 错误过滤 - - - Internal Error - 内部错误 - - - Error occurred parsing valgrind output: %1 - 发生错误,分析valgrind输出: %1 - - - - Analyzer::Internal::SuppressionDialog - - Select Suppression File - 选择Suppression 文件 - - - Save Suppression - 保存Suppression - - - - ProjectExplorer::Internal::GccToolChainFactory - - GCC - GCC - - - - ProjectExplorer::Internal::GccToolChainConfigWidget - - &Compiler path: - 编译器路径(&C): - - - &ABI: - &ABI: - - - - ProjectExplorer::Internal::MingwToolChainFactory - - MinGW - MinGW - - - - ProjectExplorer::Internal::LinuxIccToolChainFactory - - Linux ICC - Linux ICC - - - - ProjectExplorer::Internal::MsvcToolChainFactory - - MSVC - MSVC - - - - ProjectExplorer::Internal::MsvcToolChainConfigWidget - - Initialization: - 初始化: - - - No CDB debugger detected (neither 32bit nor 64bit). - 没有检测到CDB调试器 (不管32位还是64位都没有). - - - No 64bit CDB debugger detected. - 没有检测到64位CDB调试器. - - - The CDB debugger could not be found in %1 - CDB 调试器无法在 %1找到 - - - - ProjectExplorer::ProjectsMode - - Projects - 项目 - - - - ProjectExplorer::ToolChain - - Clone of %1 - %1 的克隆 - - - - ProjectExplorer::ToolChainConfigWidget - - &Debugger: - 调试器(&D): - - - Autodetect - 自动检测 - - - Name: - 名称: - - - - ProjectExplorer::Internal::ToolChainModel - - Auto-detected - 自动检测 - - - Manual - 手动设置 - - - <nobr><b>ABI:</b> %1 - <nobr><b>ABI:</b> %1 - - - not up-to-date - 不是最新 - - - Name - 名称 - - - Type - 类型 - - - Duplicate Compilers Detected - 检测到重复的编译器 - - - The following compiler was already configured:<br>&nbsp;%1<br>It was not configured again. - 以下编译器已被设置:<br>&nbsp;%1<br>。没有再次设置。 - - - The following compilers were already configured:<br>&nbsp;%1<br>They were not configured again. - 以下工具链已被设置:<br>&nbsp;%1<br>。没有再次设置。 - - - Duplicate Tool Chain detected - 工具链检测到冲突 - - - The following tool chain was already configured:<br>&nbsp;%1<br>It was not configured again. - 以下工具链已被设置:<br>&nbsp;%1<br>没有再次设置. - - - Duplicate Tool Chains detected - 工具链检测到冲突 - - - The following tool chains were already configured:<br>&nbsp;%1<br>They were not configured again. - 以下工具链已被设置:<br>&nbsp;%1<br>没有再次设置. - - - - ProjectExplorer::Internal::ToolChainOptionsPage - - Tool Chains - 工具链 - - - Clone ... - 克隆 ... - - - Compilers - 编译器 - - - Add - 添加 - - - Clone - 克隆 - - - Remove - 删除 - - - - QmlDesigner::ItemLibraryWidget - - Library - Title of library view - - - - Items - Title of library items view - - - - Resources - Title of library resources view - 资源 - - - <Filter> - Library search input hint text - <过滤器> - - - - QmlDesigner::StatesEditorModel - - base state - Implicit default state - 基线状态 - - - Invalid state name. - 无效状态名称。 - - - The empty string as a name is reserved for the base state. - 空字符串是为基线状态保留的名称。 - - - Name already used in another state. - 名称已经被另一个状态使用。 - - - - QmlDesigner::StatesEditorView - - State%1 - Default name for newly created states - 状态%1 - - - base state - 基线状态 - - - - JsFileOptionsPage - - Options - 选项 - - - Stateless library - 无国籍库 - - - 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. - 通常每个QML 都有一份独一无二的导入的 JavaScript 库的拷贝。 -注明库为“无国籍”意味着单一的实例在所有组件之间共享。 -“无国籍”的库不能直接访问QML组件的实例对象及其属性。 - - - - QmlJSEditor - - New %1 - 新建 %1 - - - Show Qt Quick ToolBar - 显示Qt Quick工具栏 - - - Unused variable - 未使用的变量 - - - Refactoring - 重构 - - - Expand All - 展开全部 - - - Collapse All - 折叠全部 - - - - QmlJSInspector::Internal::QmlInspectorToolBar - - Apply Changes on Save - 保存时应用修改 - - - Observer Mode - 观察者模式 - - - Play/Pause Animations - 播放/暂停动画 - - - Select - 选择 - - - Zoom - 缩放 - - - Color Picker - 颜色拾取器 - - - 1x - 1x - - - 0.5x - 0.5x - - - 0.25x - 0.25x - - - 0.125x - 0.125x - - - 0.1x - 0.1x - - - - QmlJSInspector::Internal::QmlJSPropertyInspector - - Enter expression - 输入表达式 - - - Choose color - 选择颜色 - - - JavaScript expression for %1 - JavaScript 表达式%1 - - - Color selection for %1 - 为 %1选择颜色 - - - - QmlJSTools - - Functions - 功能 - - - Methods and functions - 方法和功能 - - - Methods and Functions - 方法和函数 - - - Indexing - 索引中 - - - Type dump of QML plugin in %1 failed. -Errors: -%2 - - 在 %1丢弃QML插件失败. -错误: -%2 - - - - Type dump of C++ plugin failed. -First 10 lines or errors: - -%1 -Check 'General Messages' output pane for details. - 丢弃 C++ 插件失败. -最初10行存在错误: - -%1 -检查 '概要信息' 输出来取得详细信息. - - - QML module does not contain information about components contained in plugins - -Module path: %1 -See "Using QML Modules with Plugins" in the documentation. - QML 模块不包含插件中的组件信息 - -模块路径: %1 -参考文档 "Using QML Modules with Plugins"。 - - - Automatic type dump of QML module failed. -Errors: -%1 - - 自动 类型转储 QML 模块失败。 -错误: -%1 - - - - Automatic type dump of QML module failed. -First 10 lines or errors: - -%1 -Check 'General Messages' output pane for details. - 自动类型转储QML模块失败。 -前10行或者错误: - -%1 -详细信息请查看“概要信息”输出窗体。 - - - Warnings while parsing qmltypes information of %1: -%2 - 解析%1的qmltype信息时发生警告: -%2 - - - Errors while reading typeinfo files: - 读取typeinfo文件发生错误: - - - Could not locate the helper application for dumping type information from C++ plugins. -Please build the qmldump application on the Qt version options page. - 无法定位助手应用来从C++插件转储类型信息。 -请在Qt 版本选项页面构建 qmldump应用。 - - - Type dump of C++ plugin failed. Parse error: -'%1' - 丢弃C++ 插件错误. 处理错误: -'%1' - - - Could not open file '%1' for reading. - 无法打开文件'%1' 来读取. - - - Failed to parse '%1'. -Error: %2 - 解析'%1'失败。 -错误: %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. - 无法定位帮助信息. -请在Qt 版本选择页面编译调试助手. - - - - QmlProjectManager::Internal::QmlProjectRunConfigurationWidget - - Manage Qt versions - 管理Qt版本 - - - Manage Qt versions... - 管理Qt版本... - - - Qt version: - Qt 版本: - - - Arguments: - 参数: - - - Main QML file: - 主QML文件: - - - Debugger: - 调试器: - - - Run Environment - 运行时的环境变量 - - - System Environment - 系统环境变量 - - - Invalid Qt version - 无效的 Qt 版本 - - - - QmakeProjectManager - - Only available for Qt 4.7.1 or newer. - 仅可用于 Qt 4.7.1 或更新版本。 - - - The target directory %1 could not be created. - 目标目录 %1 无法被创建。 - - - QML Debugging library could not be built in any of the directories: -- %1 - -Reason: %2 - QML 调试库无法在以下任何目录下构建: -- %1 - -原因: %2 - - - (default for %1) - (默认 %1) - - - Physical Device - 物理设备 - - - Emulator (Qemu) - 模拟器(Qemu) - - - General Information - 概要 - - - Device Status Check - 检测设备状态 - - - Existing Keys Check - 现有密钥检测 - - - Key Creation - 密钥创建 - - - Cannot Create Keys - 无法创建密钥 - - - Creating keys ... - 创建密钥... - - - Key creation failed: %1 - 密钥创建失败: %1 - - - Could Not Save File - 无法保存文件 - - - Failed to save key file %1: %2 - 保存密钥文件失败%1: %2 - - - Key Deployment - 公钥部署 - - - Deploying... - 部署中... - - - Key Deployment Failure - 密钥部署失败 - - - Key Deployment Success - 密钥部署成功 - - - Done. - 完成。 - - - Setup Finished - 设置完成 - - - 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. - 新设备的设置文件将被生成,然后将会运行一些测试程序来检查 Qt Creator 是否能够连接设备并且提供一些有效信息. - - - The new device configuration will now be created. - 新设备配置将会被创建。 - - - New Device Configuration Setup - 新设备配置设置 - - - -Is the device connected and set up for network access? - -设备已经被设置成能联网的了么? - - - (No device) - (没有设备) - - - SDK Connectivity - SDK 连接性 - - - Mad Developer - 疯狂开发者 - - - Failed to remove directory '%1'. - 移除文件夹'%1'失败. - - - Failed to remove file '%1'. - 移除文件'%1'失败. - - - Failed to create directory '%1'. - 无法创建文件夹'%1'. - - - Could not copy file '%1' to '%2'. - 无法复制文件'%1'到'%2'. - - - - RemoteLinux - - Error while reading .pro file %1: %2 - 打开 .pro 文件 %1 出错: %2 - - - Created %1 - - 创建了%1 - - - - Sis file not created due to previous errors - - Sis 文件由于之前的错误没有被创建 - - - - Done! - - 完成! - - - - Sis file not created due to previous errors - - Sis 文件由于之前的错误没有被创建 - - - - Clean - 清理 - - - qmake - qmake - - - Build - 构建 - - - Freeze - 冻结 - - - "%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 是默认的测试和开发供应商名称. <br>供应商名称不能包含名称'Nokia'. <br>您不被允许使用'Vendor' 和'Vendor-EN'这样的字眼. <br>您也不能留空. <br>浏览 <a href="http://www.forum.nokia.com/Distribute/Packaging_and_signing.xhtml">打包和签名</a> 为了指引.<br> - - - %1 is a default vendor name used for testing and development. - %1 是默认的测试和开发供应商名称. - - - %1 are default vendor names used for testing and development. - %1 是默认的测试和开发供应商名称. - - - 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 仅供测试和开发.<br>用它构建的SIS 包无法发布到Ovi 商店.<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 仅供测试和开发.<br>用它构建的SIS 包无法发布到Ovi 商店.<br>如果您想继续,那么前往symbiansigned.com UID, 在symbiansigned.com 为您的应用程序签名然后上传签名过的应用发布到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 仅供测试和开发.<br>用它构建的SIS 包无法发布到Ovi 商店.<br> - - - The application UID is a global unique indentifier of the SIS package.<br> - 应用程序的 UID 是一个全球唯一的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> - 为了为您的包得到一个唯一的 UID ,<br>请注册<a href="http://info.publish.ovi.com/">publish.ovi.com</a> - - - Some capabilities might require a special kind of signing or approval from the manufacturer.<br> - 一些应用可能需要制造商特殊的签名和许可.<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. - 请确认您发布了一个Qt版本. <br><a href="http://wiki.forum.nokia.com/index.php/Nokia_Smart_Installer_for_Symbian">Qt 包使用的Smart Installer生成的</a> 有一串发布了的Qt 版本. - - - - RemoteLinux - - Publish Qt Symbian Applications to Ovi Store - 发布Qt Symbian 应用到Ovi 商店 - - - - RemoteLinux - - Publishing to Ovi Store - 发布到Ovi 商店 - - - Build Configuration - 构建配置 - - - Project File Checks - 项目文件检查 - - - Creating an Uploadable SIS File - 创建一个可上传的SIS 文件 - - - - RemoteLinux - - Launching - 正在启动 - - - Application Still Running - 应用仍然在运行 - - - Force Quit - 强行关闭 - - - Finished. - 完成. - - - - QmakeProjectManager - - No device is connected. Please connect a device and try again. - 没有设备连接。请连接设备后再试。 - - - Executable file: %1 - 可执行文件:%1 - - - Could not connect to phone on port '%1': %2 -Check if the phone is connected and App TRK is running. - 无法从端口 '%1' 连接到电话: %2 -检查电话是否连接 并且 App TRK 已经运行. - - - Waiting for App TRK - 等待 App TRK - - - Canceled. - 已取消. - - - Starting application... - 正在启动应用... - - - Application running with pid %1. - 应用程序运行pid:%1. - - - Could not start application: %1 - 无法启动应用: %1 - - - WINSCW - WINSCW - - - WINSCW from Qt version - Qt version中的WINSCW - - - - Qt4DefaultTargetSetupWidget - - <b>Error:</b> - Severity is Task::Error - <b>错误:</b> - - - <b>Warning:</b> - Severity is Task::Warning - <b>警告:</b> - - - - QmakeProjectManager - - Add build from: - 从添加构建: - - - Add Build - 添加构建 - - - Create Build Configurations: - 创建构建配置: - - - For Each Qt Version One Debug And One Release - 为每个Qt版本分别建立一个调试版本和一个发布版本 - - - For One Qt Version One Debug And One Release - 为一个Qt版本分别建立一个调试版本和一个发布版本 - - - Manually - 手动设置 - - - None - - - - Use Shadow Building - 使用影子构建 - - - No build found - 没有找到构建 - - - The build found in %1 is incompatible with this target - 在%1找到的构建与目标不是完全匹配 - - - No Build found in %1 matching project %2. - 在%1没有找到构建 符合项目%2. - - - Incompatible build found - 找到了不完全符合的构建 - - - The Build found in %1 is incompatible with this target - 在%1找到的构建与目标不是完全匹配 - - - Import build from %1 - 从%1导入构建 - - - Targets - 目标 - - - Mobile Options - 移动选项 - - - Maemo5 And MeeGo Specific - Maemo5 和Meego 的特定选项 - - - Maemo5 And Meego Specific - 指定Maemo5 和Meego - - - Harmattan Specific - Harmattan 的特定选项 - - - Maemo Specific - Maemo设备配置 - - - New HTML5 Application - 新的HTML5 应用 - - - This wizard generates a HTML5 application project. - 本向导创建一个HTML5 应用项目。 - - - HTML Options - HTML 选项 - - - HTML5 Application - 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. - 创建一个可以同时包含HTML5和C++代码并包括一个WebKit视图的HTML5应用程序项目。 - -您可以构建此程序并将其部署到桌面和移动目标平台上。 - - - Select HTML File - 选择HTML文件 - - - Automatically Rotate Orientation - 自动旋转方向 - - - Lock to Landscape Orientation - 横向锁定(Landscape) - - - Lock to Portrait Orientation - 纵向锁定(Portrait) - - - Orientation behavior: - 方向行为: - - - Could not copy icon file. - 无法复制图标文件。 - - - Application icon (64x64): - 应用程序图标(64x64): - - - Subdirs Project - 子目录项目 - - - Creates a qmake-based subdirs project. This allows you to group your projects in a tree structure. - 创建一个基于qmake 的子目录项目。这可以让您将项目组织成树形结构。 - - - Done && Add Subproject - 完成&& 添加子项目 - - - Finish && Add Subproject - 完成&& 添加子项目 - - - New Subproject - Title of dialog - 新建子项目 - - - This wizard generates a Qt4 subdirs project. Add subprojects to it later on by using the other wizards. - 本向导将创建一个Qt4子目录项目,稍后可以用其他向导添加子项目。 - - - Target Setup - 目标设置 - - - Qt Creator can set up the following targets for project <b>%1</b>: - %1: Project name - Qt Creator 可以为项目<b>%1</b>设置如下目标: - - - <span style=" font-weight:600;">No valid kits found.</span> - <span style=" font-weight:600;">没有找到可用的构建套件。</span> - - - Please add a kit in the <a href="buildandrun">options</a> or via the maintenance tool of the SDK. - 请在<a href="buildandrun">选项</a>中或者通过SDK的维护工具添加一个构建套件。 - - - Select Kits for Your Project - 为您的项目选择构建套件 - - - Kit Selection - 选择构建套件 - - - %1 - temporary - %1 - 临时 - - - Qt Creator can use the following kits for project <b>%1</b>: - %1: Project name - Qt Creator为项目<b>%1</b>使用下列构建套件: - - - No Build Found - 未找到构建 - - - No build found in %1 matching project %2. - 在%1中没有找到符合项目%2的构建。 - - - - TextEditor::BaseTextEditorWidget - - CTRL+D - CTRL+D - - - Print Document - 打印文档 - - - File Error - 文件错误 - - - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. - <b>错误:</b> 无法用 "%2"-编码解码 "%1"。无法编辑。 - - - Select Encoding - 选择编码 - - - Delete UTF-8 BOM on Save - 保存时删除UTF-8 BOM - - - Add UTF-8 BOM on Save - 保存时添加UTF-8 BOM - - - The text is too large to be displayed (%1 MB). - 文本过大,无法显示(%1 MB)。 - - - - TextEditor::Internal::PlainTextSnippetProvider - - Text - 文本 - - - - TextEditor::Internal::SnippetsTableModel - - Error - 错误 - - - Not a valid trigger. - 不是一个有效的触发。 - - - Trigger - 触发 - - - Trigger Variant - 触发种类 - - - Error reverting snippet. - 恢复碎片发生错误。 - - - - TextEditor::Internal::SnippetsSettingsPagePrivate - - Snippets - 片段 - - - Error While Saving Snippet Collection - 保存片断集时发生错误 - - - Error - 错误 - - - No snippet selected. - 没有选择的片段。 - - - - Analyzer::Internal::ValgrindConfigWidget - - Valgrind Command - Valgrind 命令 - - - - Analyzer::Internal::ValgrindEngine - - Valgrind options: %1 - Valgrind 选项: %1 - - - Working directory: %1 - 工作目录: %1 - - - Command-line arguments: %1 - 命令参数: %1 - - - ** Error: "%1" could not be started: %2 ** - ** 错误: "%1" 无法被启动: %2 ** - - - ** Error: no valgrind executable set ** - ** 错误: 没有可执行的 valgrind ** - - - ** Process Terminated ** - ** 进程强制关闭** - - - Application Output - 应用程序输出 - - - - Analyzer::Internal::ValgrindSettings - - Generic Settings - 一般设置 - - - - VcsBase::VcsBaseClient - - Unable to start process '%1': %2 - 无法启动进程'%1': %2 - - - Timed out after %1s waiting for the process %2 to finish. - 等待进程%2 完成,等待了%1秒后超时。 - - - Working... - 工作中... - - - - VcsBase::VcsBaseEditorWidget - - Annotate "%1" - Annotate "%1" - - - Copy "%1" - 复制 "%1" - - - Describe change %1 - 描述改变%1 - - - Send to CodePaster... - 发送到CodePaster... - - - Apply Chunk... - 应用块... - - - Revert Chunk... - 恢复块... - - - Unable to Paste - 无法粘贴 - - - Code pasting services are not available. - Code pasting 服务不可用。 - - - Revert Chunk - 恢复块 - - - Apply Chunk - 应用块 - - - Would you like to revert the chunk? - 您想要恢复块吗? - - - Would you like to apply the chunk? - 您想要应用块吗? - - - - VcsBase::VcsJobRunner - - Unable to start process '%1': %2 - 无法启动进程'%1': %2 - - - Timed out after %1s waiting for the process %2 to finish. - 超时%1s 等待进程%2 完成. - - - - SymbianUtils::VirtualSerialDevice - - The port %1 could not be opened: %2 (POSIX error %3) - 端口%1 无法被打开: %2 (POSIX错误%3) - - - Unable to retrieve terminal settings of port %1: %2 (POSIX error %3) - 无法获得终端设置为端口%1: %2 (POSIX 错误%3) - - - Unable to apply terminal settings to port %1: %2 (POSIX error %3) - 无法应用终端设置为端口%1: %2 (POSIX 错误%3) - - - Cannot write to port %1: %2 (POSIX error %3) - 端口%1 无法写入: %2 (POSIX错误%3) - - - Port not found - 未找到端口 - - - Port in use - 端口已用 - - - Timed out - 超时 - - - Port unreachable - 无法到达端口 - - - The port %1 could not be opened: %2 - 端口 %1 无法被打开: %2 - - - An error occurred while waiting for read notifications from %1: %2 - 等待阅读通知时发生错误%1: %2 - - - An error occurred while reading from %1: %2 - 读取%1发生错误: %2 - - - An error occurred while writing to %1: %2 - 写入%1发生错误: %2 - - - An error occurred while syncing on waitForBytesWritten for %1: %2 - 同步waitForBytesWritten%1发生错误: %2 - - - - Macros - - Macros - - - - - AnchorButtons - - Setting anchors in states is not supported. - 在不支持的状态下设置锚点. - - - Set bottom anchor - 设置底部锚点 - - - Set left anchor - 设置左锚点 - - - Set right anchor - 设置右锚点 - - - Fill to parent - 适应父控件 - - - Set vertical anchor - 设置垂直锚点 - - - Set horizontal anchor - 设置横向锚点 - - - - ColorGroupBox - - Color editor - 颜色编辑器 - - - Hue - 色调 - - - Saturation - 饱和度 - - - Brightness - 亮度 - - - Alpha - Alpha通道 - - - - ColorTypeButtons - - Solid color - 纯色 - - - Solid color (only editable in base state) - 纯色(仅在基础状态下可编辑) - - - Gradient - 渐变填充 - - - Gradient (only editable in base state) - 渐变(仅在基础状态下可编辑) - - - Transparent - 透明 - - - Transparent (only editable in base state) - 透明(仅在基础状态下可编辑) - - - - FlickableSpecifics - - Flickable - 可摇动 - - - Content Size - 内容尺寸 - - - Flickable Direction - 摇动方向 - - - Bounds Behavior - 边界行为 - - - Interactive - 互动 - - - Max. Velocity - 最大速度 - - - Maximum Flick Velocity - 最大摇动速度 - - - Deceleration - 减速 - - - Flick Deceleration - 摇动减速 - - - - Analyzer::StartRemoteDialog - - Start Debugger - 启动调试器 - - - Remote - 远程 - - - Host: - 主机: - - - User: - 用户: - - - Password: - 密码: - - - Port: - 端口: - - - Private key: - 私钥: - - - Target - 目标 - - - Kit: - 构建套件(Kit): - - - Executable: - 执行档: - - - Arguments: - 参数: - - - Working directory: - 工作目录: - - - Start Remote Analysis - 开始远程分析 - - - - CppTools::Internal::CppCodeStyleSettingsPage - - Form - 界面 - - - General - 概要 - - - Content - 内容 - - - Indent - 缩进 - - - "public", "protected" and -"private" within class body - 在类中的"public", "protected" -和"private" - - - Declarations relative to "public", -"protected" and "private" - 与"public","protected" -和"private"相关的声明 - - - Statements within method body - 在方法体中的语句 - - - Statements within blocks - 在块中的语句 - - - Declarations within -"namespace" definition - 在"命名空间"定义中的声明 - - - Braces - 括号 - - - Indent Braces - 缩进括号 - - - Class declarations - 类的声明 - - - Namespace declarations - 命名空间的声明 - - - Enum declarations - 枚举类型的声明 - - - Method declarations - 方法声明 - - - Blocks - 代码段 - - - "switch" - "switch" - - - Indent within "switch" - 在"switch"内缩进 - - - "case" or "default" - "case" 或 "default" - - - Statements relative to -"case" or "default" - "case" 或 "default" -的相关语句 - - - Blocks relative to -"case" or "default" - "case" 或 "default" -相关的代码段 - - - "break" statement relative to -"case" or "default" - "case" 或 "default"相关的 -"break"语句 - - - Alignment - 对齐方式 - - - Align - 对齐 - - - <html><head/><body> -Enables alignment to tokens after =, += etc. When the option is disabled, regular continuation line indentation will be used.<br> -<br> -With alignment: -<pre> -a = a + - b -</pre> -Without alignment: -<pre> -a = a + - b -</pre> -</body></html> - <html><head/><body> -对诸如 =, += 等之后出现的符号开启对齐。当该选项被禁用时,将使用普通的续行缩进。<br> -<br> -对齐: -<pre> -a = a + - b -</pre> -无对齐: -<pre> -a = a + - b -</pre> -</body></html> - - - Align after assignments - 赋值语句后对齐 - - - <html><head/><body> -The extra padding usually only affects if statement conditions. Without extra padding: -<pre> -if (a && - b) - c; -</pre> -With extra padding: -<pre> -if (a && - b) - c; -</pre> -</body></html> - <html><head/><body> -额外的空白填充通常只影响条件语句,没有空白填充的时候: -<pre> -if (a && - b) - c; -</pre> -有空白填充的时候: -<pre> -if (a && - b) - c; -</pre> -</body></html> - - - Add extra padding to conditions -if they would align to the next line - 如果条件语句需要与下一行对齐, -则添加额外的空白 - - - <html><head/><body> -Adds an extra level of indentation to multiline conditions in the switch, if, while and foreach statements if they would otherwise have the same or less indentation than a nested statement. - -For four-spaces indentation only if statement conditions are affected. Without extra padding: -<pre> -if (a && - b) - c; -</pre> -With extra padding: -<pre> -if (a && - b) - c; -</pre> -</body></html> - <html><head/><body> -如果switch、if、while和foreach表达式中的多行条件的缩进等于或少于其他嵌套语句,则为其多添加一层缩进。 - -如果是四个空格方式的缩进,则只修改if语句。不添加额外空白: -<pre> -if (a && - b) - c; -</pre> -添加额外空白: -<pre> -if (a && - b) - c; -</pre> -</body></html> - - - - Git - - Dialog - 对话框 - - - Branch Name: - 分支名称: - - - CheckBox - 复选框 - - - Track remote branch '%1' - 跟踪远程分支'%1' - - - Track local branch '%1' - 跟踪本地分支'%1' - - - Add Remote - 添加远程 - - - Name: - 名称: - - - URL: - URL: - - - Remotes - 远程 - - - F&etch - F&etch - - - Delete Remote - 删除远程 - - - Would you like to delete the remote "%1"? - 您想要删除远程"%1"吗? - - - &Push - &Push - - - - ProjectExplorer::CodeStyleSettingsPropertiesPage - - Form - 界面 - - - Language: - 语言: - - - - QmlProfiler - - Dialog - 对话框 - - - Address: - 地址: - - - 127.0.0.1 - 0.1x {127.0.0.1?} - - - Port: - 端口: - - - QML Profiler - QML 分析器(Profiler) - - - &Host: - 主机(&H): - - - localhost - localhost - - - &Port: - 端口(&P): - - - Sys&root: - Sys&root: - - - - QtQuickComponentSetOptionsPage - - Built-in elements only (for all platforms) - 仅限内置元素(全平台) - - - Qt Quick Components for Symbian - Symbian的Qt Quick 组件 - - - Qt Quick Components for Meego/Harmattan - Meego/Harmattan 的Qt Quick 组件 - - - Use an existing .qml file - 使用现有的qml 文件 - - - The Qt Quick Components for Symbian are a set of ready-made components that are designed with specific native appearance for the Symbian platform. - -Requires Qt 4.7.3 or newer, and the component set installed for your Qt version. - Symbian 的QT 组件是已经定制完成的组件,是设计用来原生支持Symbian 系统平台的. - -需要Qt 4.7.3 或更新, 并且也要安装相应的组件. - - - The Qt Quick Components for Meego/Harmattan are a set of ready-made components that are designed with specific native appearance for the Meego/Harmattan platform. - -Requires Qt 4.7.4 or newer, and the component set installed for your Qt version. - Meego/Harmattan 的QT 组件是已经定制完成的组件,是设计用来原生支持Symbian 系统平台的. - -需要Qt 4.7.3 或更新, 并且也要安装相应的组件. - - - Qt Quick Components for MeeGo/Harmattan - Meego/Harmattan 的Qt Quick 组件 - - - The Qt Quick Components for MeeGo/Harmattan are a set of ready-made components that are designed with specific native appearance for the MeeGo/Harmattan platform. - -Requires Qt 4.7.4 or newer, and the component set installed for your Qt version. - Meego/Harmattan 的QT 组件是已经定制完成的组件,是设计用来原生支持Symbian 系统平台的. - -需要Qt 4.7.4 或更新, 并且也要安装相应的组件. - - - The Qt Quick Components for Symbian are a set of ready-made components that are designed with specific native appearance for the Symbian platform. - -Requires Qt 4.7.4 or newer, and the component set installed for your Qt version. - Symbian 的QT 组件是已经定制完成的组件,是设计用来原生支持Symbian 系统平台的. - -需要Qt 4.7.4 或更新, 并且也要安装相应的组件. - - - - QtSupport - - Used to extract QML type information from library-based plugins. - 用于从基于库的插件解析出QML的类型信息。 - - - QML Dump: - QML Dump: - - - A modified version of qmlviewer with support for QML/JS debugging. - 支持QML/JS 调试的、修改过的qmlviewer版本。 - - - QML Observer: - QML Observer: - - - Build - 构建 - - - QML Debugging Library: - QML 调试库: - - - Helps showing content of Qt types. Only used in older versions of GDB. - 协助显示Qt类型的内容。只使用在老版本的GDB上。 - - - GDB Helper: - GDB 助手: - - - Show compiler output of last build. - 显示最后一次构建的编译输出。 - - - Show Log - 显示日志 - - - Compile debugging helpers that are checked. - 编译选中的调试助手。 - - - Build All - 构建所有项目 - - - Tool Chain: - 工具链: - - - Compiler: - 编译器: - - - - QtSupport - - Version name: - 版本名称: - - - qmake location: - qmake 路径: - - - Edit - 编辑 - - - - QtSupport - - Name - 名称 - - - qmake Location - qmake 路径 - - - Add - 添加 - - - Remove - 删除 - - - Clean up - 清理 - - - Add... - 添加... - - - - GenericLinuxDeviceConfigurationWizardSetupPage - - WizardPage - 向导页面 - - - The name to identify this configuration: - 说明配置的名称: - - - The device's host name or IP address: - 设备的域名或者IP地址: - - - The user name to log into the device: - 登录设备的用户名: - - - The authentication type: - 验证类型: - - - Password - 密码 - - - Key - 密钥 - - - The user's password: - 用户密码: - - - The file containing the user's private key: - 文件包含用户私钥: - - - - LinuxDeviceFactorySelectionDialog - - Device Configuration Wizard Selection - 设备设置向导选择 - - - Available device types: - 可用的设备类型: - - - - MaemoDeployConfigurationWidget - - Form - 界面 - - - Device configuration: - 设备配置: - - - <a href="irrelevant">Manage device configurations</a> - <a href="irrelevant">设置设备选项</a> - - - These show the INSTALLS settings from the project file(s). - 显示来自于项目文件的安装(INSTALLS)设置. - - - Files to install for subproject: - 为子项目需要安装的文件: - - - Edit the project file to add or remove entries. - 编辑项目文件添加或删除条目. - - - Add Desktop File - 添加桌面文件 - - - Add Launcher Icon... - 添加一个启动图标 ... - - - - TextEditor::TabPreferencesWidget - - Form - 界面 - - - Tab settings: - 标签设置: - - - - TextEditor::TabSettingsWidget - - Insert &spaces instead of tabs - 插入空格代替制表符(&S) - - - Automatically determine based on the nearest indented line (previous line preferred over next line) - 按最近的缩进行自动决定 (前一行优先于后一行) - - - Based on the surrounding lines - 依据周围行的情况 - - - Enable automatic &indentation - 开启自动缩进(&i) - - - Backspace will go back one indentation level instead of one space. - 退格键将退回一个缩进而不是一个空白. - - - &Backspace follows indentation - 退格键跟随缩进(&B) - - - Never - 从不 - - - Always - 总是 - - - In Leading White Space - 仅用于行首空白 - - - - Valgrind - - Dialog - 对话框 - - - Suppression File: - Suppression 文件: - - - Suppression: - Suppression: - - - Select Suppression File - 选择Suppression 文件 - - - Save Suppression - 保存Suppression - - - - Valgrind - - Valgrind executable: - Valgrind 执行档: - - - Valgrind Command - Valgrind 命令 - - - Valgrind Suppression Files - Valgrind Suppression 文件 - - - Valgrind Suppression File (*.supp);;All Files (*) - Valgrind Suppression文件 (*.supp);;所有文件 (*) - - - Memory Analysis Options - 内存分析选项 - - - Backtrace frame count: - 回溯(backtrace)帧数: - - - Suppression files: - Suppression 文件: - - - Add... - 添加... - - - Remove - 删除 - - - Track origins of uninitialized memory - 跟踪未初始化的内存的出处 - - - Profiling Options - 分析选项 - - - Limits the amount of results the profiler gives you. A lower limit will likely increase performance. - 限制分析器输出结果的数量。较低的限制有可能提高性能。 - - - Result view: Minimum event cost: - 结果视图: 最小事件花费: - - - % - % - - - Show additional information for events in tooltips - 在工具提示中显示事件的额外信息 - - - <html><head/><body> -<p>Does full cache simulation.</p> -<p>By default, only instruction read accesses will be counted ("Ir").</p> -<p> -With cache simulation, further event counters are enabled: -<ul><li>Cache misses on instruction reads ("I1mr"/"I2mr")</li> -<li>Data read accesses ("Dr") and related cache misses ("D1mr"/"D2mr")</li> -<li>Data write accesses ("Dw") and related cache misses ("D1mw"/"D2mw")</li></ul> -</p> - -</body></html> - <html><head/><body> -<p>进行全缓存模拟。</p> -<p>默认情况下, 只有读取访问指令被计算在内 ("Ir")。</p> -<p> -缓存模拟情况下,更多事件计数器被启用: -<ul><li>缓存未命中的读取指令("I1mr"/"I2mr")</li> -<li>数据读取访问("Dr") 和相关的缓存未命中("D1mr"/"D2mr")</li> -<li>数据写入指令 ("Dw") 和相关的缓存未命中 ("D1mw"/"D2mw")</li></ul> -</p> - -</body></html> - - - Enable cache simulation - 开启缓存模拟 - - - <html><head/><body> -<p>Do branch prediction simulation.</p> -<p>Further event counters are enabled: </p> -<ul><li>Number of executed conditional branches and related predictor misses ( -"Bc"/"Bcm")</li> -<li>Executed indirect jumps and related misses of the jump address predictor ( -"Bi"/"Bim")</li></ul></body></html> - <html><head/><body> -<p>进行分支预测模拟。</p> -<p>更多事件计数器将被启用: </p> -<ul><li>多个执行的条件分支和相关的预测未命中( -"Bc"/"Bcm")</li> -<li>执行的间接跳转和相关的跳转地址预测未命中( -"Bi"/"Bim")</li></ul></body></html> - - - Enable branch prediction simulation - 开启分支预测模拟 - - - Collect information for system call times. - 搜集系统调用时间的信息。 - - - Collect system call time - 搜集系统调用时间 - - - Collect the number of global bus events that are executed. The event type "Ge" is used for these events. - 搜集执行的全局总线事件的数量.事件类型"Ge"被用于此类事件。 - - - Collect global bus events - 搜集全局总线事件 - - - Visualisation: Minimum event cost: - 可视化:最小事件花费: - - - Visualization: Minimum event cost: - 可视化: 最小事件花费: - - - - VcsBase::VcsConfigurationPage - - Configure - 配置 - - - Configuration - 配置 - - - Please configure <b>%1</b> now. - 请现在设置<b>%1</b> 。 - - - Configure... - 配置... - - - - Utils::FileUtils - - Refusing to remove root directory. - 拒绝移除根目录(root)。 - - - Refusing to remove your home directory. - 拒绝移除您的家目录(home)。 - - - Failed to remove directory '%1'. - 移除目录'%1'失败。 - - - Failed to remove file '%1'. - 移除文件'%1'失败。 - - - Failed to create directory '%1'. - 无法创建目录'%1'。 - - - Could not copy file '%1' to '%2'. - 无法复制文件'%1'到'%2'。 - - - Cannot open %1 for reading: %2 - 无法打开%1 来读取: %2 - - - Cannot read %1: %2 - 无法读取%1: %2 - - - File Error - 文件错误 - - - Cannot write file %1. Disk full? - 无法写入文件%1。磁盘已满? - - - Cannot overwrite file %1: %2 - 无法覆盖文件 %1 : %2 - - - Cannot create file %1: %2 - 无法创建文件%1: %2 - - - Cannot create temporary file in %1: %2 - 无法在%1创建临时文件 : %2 - - - - Analyzer::AnalyzerManagerPrivate - - &Analyze - 分析(&A) - - - Start - 开始 - - - Stop - 停止 - - - Analyzer Toolbar - 分析器工具栏 - - - <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>Debug and Release mode run-time characteristics differ significantly, analytical findings for one mode may or may not be relevant for the other.</p><p>Do you want to continue and run the tool in %2 mode?</p></body></html> - <html><head/><body><p>您正在尝试在%2模式下对应用运行"%1"工具。该工具设计为用于%3模式。</p><p>Debug 和 Release 模式运行时的特征差异非常明显。在一个模式下的分析发现不一定适用于另一模式。</p><p>您想要继续在%2模式下运行该工具吗?</p></body></html> - - - Analyzer Still Running - 分析器仍然在运行 - - - Stop Active Run - 停止运行中的 - - - Keep Running - 保持运行 - - - Debug - Debug - - - Release - Release - - - Run %1 in %2 Mode? - 在%2 模式下运行%1吗? - - - &Do not ask again - 下次不再询问(&D) - - - An analysis is still in progress. - 一个分析流程仍在进行中。 - - - No analyzer tool selected. - 没有选中任何分析器工具。 - - - - Analyzer::AnalyzerRunConfigWidget - - Analyzer Settings - 分析器设置 - - - Available settings: %1 - 可用的设置: %1 - - - - Analyzer::AnalyzerRunControl - - Build Issues - 构建问题 - - - - Bazaar - - Ignore whitespace - 忽略空白 - - - Ignore blank lines - 忽略空白行 - - - - BinEditorFile - - Cannot open %1: %2 - 无法打开%1 : %2 - - - File Error - 文件错误 - - - - CMakeProjectManager - - Changes to cmake files are shown in the project tree after building. - 构建之后在项目树中显示cmake文件的变化。 - - - Build now - 现在构建 - - - - Core::Internal::PromptOverwriteDialog - - Overwrite Existing Files - 覆盖现有文件 - - - The following files already exist in the folder -%1. -Would you like to overwrite them? - 以下文件已经存在于目录 -%1中。 -您想要覆盖吗? - - - - Core::IFile - - File was restored from auto-saved copy. Use <i>Save</i> to confirm, or <i>Revert to Saved</i> to discard changes. - 文件由自动保存的备份恢复. 使用<i>保存</i> 来确认, 或者<i>回滚到保存的</i> 来丢弃修改. - - - - Core::InfoBarDisplay - - Close - 关闭 - - - - Core::OutputWindow - - Additional output omitted - - 省略的附加输出 - - - - - CppTools::Internal::CppCodeStylePreferencesWidget - - Code style settings: - 代码风格设置: - - - - CppTools::CppToolsSettings - - Global C++ - Settings - 全局C++ - - - Global - Settings - 全局 - - - Qt - Qt - - - GNU - GNU - - - Old Creator - 旧的 Creator - - - - Cvs - - Ignore whitespace - 忽略空白 - - - Ignore blank lines - 忽略空白行 - - - - Debugger - - Previous - 上一个 - - - - Debugger - - Memory at Register '%1' (0x%2) - 注册内存'%1' (0x%2) - - - Register '%1' - 注册'%1' - - - - FakeVim::Internal::FakeVimUserCommandsModel - - Action - 动作 - - - Command - 命令 - - - User command #%1 - 用户命令#%1 - - - - FakeVim::Internal::FakeVimUserCommandsPage - - User Command Mapping - 用户命令映射 - - - FakeVim - FakeVim - - - - GenericProjectManager::Internal::FilesSelectionWizardPage - - Hide files matching: - 隐藏符合条件的文件: - - - Apply Filter - 应用过滤器 - - - Generating file list... - -%1 - 生成文件列表... - -%1 - - - - GenericProjectManager::Internal::GenericProjectPlugin - - Edit Files... - 编辑文件... - - - - GenericProjectManager::Internal::SelectableFilesDialog - - Edit Files - 编辑文件 - - - Hide files matching: - 隐藏符合条件的文件: - - - Apply Filter - 应用过滤器 - - - Generating file list... - -%1 - 生成文件列表... - -%1 - - - Not showing %n files that are outside of the base directory. -These files are preserved. - - 未显示基础目录外部的 %n个文件。 -这些文件受到保护。 - - - - - Git - - Local Branches - 本地分支 - - - - ImageViewer - - Cannot open image file %1 - 无法打开图形文件 %1 - - - Cannot open image file %1. - 无法打开图形文件 %1。 - - - Play Animation - 播放动画 - - - Pause Animation - 暂停动画 - - - - Mercurial - - Ignore whitespace - 忽略空白 - - - Ignore blank lines - 忽略空白行 - - - - Perforce::Internal::PerforceDiffParameterWidget - - Ignore whitespace - 忽略空白 - - - - ProjectExplorer::AbiWidget - - <custom> - <自定义> - - - - ProjectExplorer::Internal::AppOutputPane - - Attach debugger to this process - attach调试器到此进程 - - - Attach debugger to %1 - 挂接调试器到%1 - - - Stop - 停止 - - - Close Tab - 关闭标签 - - - Close All Tabs - 关闭所有标签 - - - Close Other Tabs - 关闭其他标签 - - - Re-run this run-configuration - 重新执行此运行配置 - - - Application Output - 应用程序输出 - - - Application Output Window - 应用程序输出窗口 - - - - CodeStyleSettingsPanelFactory - - Code Style Settings - 代码风格设置 - - - Code Style - 代码风格 - - - - CodeStyleSettingsPanel - - Code Style Settings - 代码风格设置 - - - Code Style - 代码风格 - - - - ProjectExplorer::EditorConfiguration - - Project - Settings - 项目 - - - Project %1 - Settings, %1 is a language (C++ or QML) - 项目%1 - - - - ProjectExplorer::Internal::ClangToolChainFactory - - Clang - Clang - - - - Welcome - - %1 (last session) - %1 (最后的会话) - - - %1 (current session) - %1 (当前会话) - - - - QmlDesigner::ComponentAction - - Edit sub components defined in this file - 编辑这个文件中定义的子组件 - - - - QmlDesigner::NodeInstanceServerProxy - - Cannot Start QML Puppet Executable - 无法启动QML替身执行文件 - - - The executable of the QML Puppet process (%1) cannot be started. Please check your installation. QML Puppet is a process which runs in the background to render the items. - QML 替身进程(%1)的可执行档无法启动。请检查您的安装。QML 替身进程是运行在后台用来渲染项的。 - - - Cannot Find QML Puppet Executable - 无法找到QML替身的可执行档 - - - The executable of the QML Puppet process (%1) cannot be found. Please check your installation. QML Puppet is a process which runs in the background to render the items. - QML 替身进程(%1)的可执行档无法启动。请检查您的安装。QML 替身进程是运行在后台用来渲染项的。 - - - - QmlDesigner::ModelNodeContextMenu - - Selection - 选择 - - - Select parent: %1 - 选择父节点: %1 - - - Select: %1 - 选择: %1 - - - Stack (z) - 栈(z) - - - To Front - 转到前面 - - - To Back - 转到后面 - - - Raise - 在堆栈中上升 - - - Lower - 在堆栈中降低 - - - Reset z property - 重置z属性 - - - Edit - 编辑 - - - Reset Position - 重置位置 - - - Reset Size - 重置尺寸 - - - Visibility - 可见性 - - - Anchors - 锚点 - - - Fill - 填充 - - - Reset - 重置 - - - Layout - 布局 - - - Layout in Row - 行布局 - - - Layout in Column - 列布局 - - - Layout in Grid - 网格布局 - - - Layout in Flow - 流程布局 - - - Go into Component - 进入组件 - - - - QmlJSInspector::Internal::QmlJsInspectorToolBar - - Apply Changes on Save - 保存时应用修改 - - - Play/Pause Animations - 播放/暂停动画 - - - Select - 选择 - - - Zoom - 缩放 - - - Color Picker - 颜色拾取器 - - - 1x - 1x - - - 0.5x - 0.5x - - - 0.25x - 0.25x - - - 0.125x - 0.125x - - - 0.1x - 0.1x - - - - QmlJSTools - - Code Style - 代码风格 - - - Qt Quick - Qt Quick - - - &QML/JS - &QML/JS - - - Reset Code Model - 重置代码模型 - - - Global Qt Quick - Settings - 全局Qt Quick - - - Global - Settings - 全局 - - - Qt - Qt - - - Old Creator - 旧的 Creator - - - - QmlProfiler - - Application finished before loading profiled data. - Please use the stop button instead. - 载入分析数据前应用程序完成运行了. - 请使用停止按钮. - - - No executable file to launch. - 没有可执行档来启动。 - - - The port seems to be in use. - Error message shown after 'Could not connect ... debugger:" - 端口已被使用. - - - The application is not set up for QML/JS debugging. - Error message shown after 'Could not connect ... debugger:" - 应用没有被设置为QML/JS 调试. - - - Qt Creator - Qt Creator - - - Could not connect to the in-process QML debugger: -%1 - %1 is detailed error message - 无法连接到进程内(in-process)QML 调试器: -%1 - - - Time per Call - 呼叫时间比 - - - QML Profiler Options - QML 分析器选项 - - - The QML Profiler can be used to find performance bottlenecks in applications using QML. - QML分析器可被用于找到使用QML的应用程序的性能瓶颈。 - - - %1 s - %1秒 - - - Elapsed: %1 - 逝去: %1 - - - QML traces (*%1) - QML 追踪文件(*%1) - - - Application finished before loading profiled data. -Please use the stop button instead. - 应用程序在载入分析数据之前已经结束。 -请使用“停止”按钮。 - - - Attach... - 挂接... - - - Load QML Trace - 载入QML 追踪文件 - - - Save QML Trace - 保存 QML 追踪文件 - - - The QML profiler requires Qt 4.7.4 or newer. -The Qt version configured in your active build configuration is too old. -Do you want to continue? - QML 分析器需要Qt 4.7.4 或更新版本。 -您在构建配置中设置的Qt 版本太旧。 -您想要继续吗? - - - Callees - 被叫 - - - Callers - 主叫 - - - Discard data - 丢弃数据 - - - Elapsed: 0 s - 逝去: 0 s - - - Disable profiling - 禁用分析器 - - - Enable profiling - 启用分析器 - - - Elapsed: %1 s - 逝去: %1 s - - - QML traces (%1) - QML 踪迹(%1) - - - Detach - 分离 - - - Gathering ports failed: %1 - 搜集端口失败:%1 - - - Not enough free ports on device for analyzing. - - 设备上可用于分析的空闲端口不够。 - - - - Starting remote process... - - 启动远端进程... - - - Failure running remote process. - 运行远程程序失败。 - - - Starting remote process ... - - 启动远端进程... - - - - Finished running remote process. Exit code was %1. - - 远程进程运行结束.返回值%1. - - - - Zoom in 10% - 放大 10% - - - Zoom out 10% - 缩小 10% - - - - QmlProjectManager::Internal::QmlProjectRunControl - - Starting %1 %2 - - 正在启动 %1 %2 - - - - %1 exited with code %2 - - %1 退出,退出代码: %2 - - - - - QmlProjectManager::Internal::QmlProjectRunControlFactory - - Run - 运行 - - - Open Qt4 Options - 打开Qt4选项 - - - Cancel - 取消 - - - QML Observer Missing - QML Observer丢失 - - - QML Observer could not be found. - QML Observer未找到. - - - QML Observer is used to offer debugging features for QML applications, such as interactive debugging and inspection tools. It must be compiled for each used Qt version separately. On the Qt4 options page, select the current Qt installation and click Rebuild. - QML Observer能够能够用来调试QML应用程序,其中包含了调试和检查组件.但该工具必须为每个Qt版本单独编译一份.在Qt4的选项设置页,选择最新的Qt版本然后点击重新构建. - - - - QmakeProjectManager - - No device is connected. Please connect a device and try again. - - 没有设备连接。请连接设备后再试。 - - - - Executable file: %1 - - 可执行文件:%1 - - - - Connecting to '%1'... - - 连接到'%1'... - - - - Unable to create CODA connection. Please try again. - - 无法创建CODA 连接. 请再试一次. - - - - Could not open serial device: %1 - - 无法连续打开设备: %1 - - - - Connecting to %1:%2... - - 正在连接到%1:%2... - - - - Error: %1 - - 错误: %1 - - - - Connected. - - 已连接. - - - - Process has finished. - - 进程完成了. - - - - Thread has crashed: %1 - - 线程崩溃了: %1 - - - - The process is already running on the device. Please first close it. - - 进程已经在设备上运行。请先关闭。 - - - - Launching: %1 - - 启动中: %1 - - - - Launched. - - 启动了. - - - - Launch failed: %1 - - 启动失败: %1 - - - - Waiting for CODA - 等待CODA - - - %1 on Symbian Device - Symbian 设备上的 %1 - - - Running %1 - %1 is a name of the Publish Step i.e. Clean Step - 正在运行%1 - - - No valid Qt version has been detected.<br>Define a correct Qt version in "Options > Qt4" - 没有检测到有效的Qt版本.<br>请定义一个有效的Qt 版本在"选项> Qt4" - - - No valid tool chain has been detected.<br>Define a correct tool chain in "Options > Tool Chains" - 没有检测到有效的工具链.<br>请定义一个正确的工具链在"选项> 工具链" - - - Keep Running - 保持运行 - - - Finished. - - 完成. - - - - Parsing the .pro file - 正在解析.pro文件 - - - Error while parsing file %1. Giving up. - 分析文件%1时发生错误,放弃中。 - - - Could not find .pro file for sub dir '%1' in '%2' - 在'%2'的子目录'%1' 中找不到.pro文件 - - - Select QML File - 选择QML文件 - - - Select Existing QML file - 选择现有的QML 文件 - - - Qt Quick Application Type - Qt Quick 应用类型 - - - All files and directories that reside in the same directory as the main QML file are deployed. You can modify the contents of the directory any time before deploying. - 目录内所有文件包括主QML文件已经部署。您可以在部署之前的任何时间修改目录里的内容。 - - - - BaseQtVersion - - The compiler '%1' (%2) cannot produce code for the Qt version '%3' (%4). - 编译器'%1' (%2)无法为Qt版本'%3" (%4)生成代码。 - - - Name: - 名称: - - - Invalid Qt version - 无效的 Qt 版本 - - - ABI: - ABI: - - - Source: - 源: - - - mkspec: - mkspec: - - - qmake: - qmake: - - - Default: - 默认: - - - Version: - 版本: - - - - QtSupport - - Getting Started - 入门 - - - <specify a name> - <指定一个名字> - - - Auto-detected - 自动检测 - - - Manual - 手动设置 - - - Remove invalid Qt Versions - 删除无效的Qt版本 - - - Do you want to remove all invalid Qt Versions?<br><ul><li>%1</li></ul><br>will be removed. - 您想删除所有无效的Qt版本吗?<br><ul><li>%1</li></ul><br>将会被删除。 - - - Qt version %1 for %2 - %2的Qt 版本%1 - - - No tool chain can produce code for this Qt version. Please define one or more tool chains. - 没有这个Qt版本的工具链.请定义一个或更多的工具链. - - - Not all possible target environments can be supported due to missing tool chains. - 因为工具链的丢失,不是所有可能的环境变量可以被支持. - - - The following ABIs are currently not supported:<ul><li>%1</li></ul> - 以下ABI 目前不支持:<ul><li>%1</li></ul> - - - Building helpers - 构建助手 - - - Debugging Helper Build Log for '%1' - '%1' 的调试助手构建日志 - - - Select a qmake executable - 选择一个qmake执行档 - - - Qt versions incompatible - Qt版本不匹配 - - - The qt version selected must be for the same target. - 选中的qt 版本必须是同一个目标. - - - Remove Invalid Qt Versions - 删除无效的Qt版本 - - - No compiler can produce code for this Qt version. Please define one or more compilers. - 没有这个Qt版本的编译器。请定义一个或更多编译器。 - - - Not all possible target environments can be supported due to missing compilers. - 由于编译器不全,不是所有的目标环境都能被支持。 - - - Qt known - 已知的Qt - - - This Qt version was already registered as "%1". - 该Qt版本已经注册为 "%1"。 - - - Incompatible Qt Versions - 不兼容的Qt版本 - - - The Qt version selected must be for the same target. - 选中的Qt版本必须针对同一个目标平台。 - - - Helpers: None available - 助手: 没有可用 - - - Helpers: %1. - %1 is list of tool names. - 助手: %1。 - - - <i>Not yet built.</i> - <i>还没被构建。</i> - - - <i>Not needed.</i> - <i>不需要。</i> - - - <i>Cannot be compiled.</i> - <i>无法编译。</i> - - - S60 SDK: - S60 SDK: - - - SBS v2 directory: - SBS v2 目录: - - - - QtSupport - - MinGW from %1 - MinGW 从%1 - - - - AbstractLinuxDeviceDeployStep - - No valid device set. - 没有设置有效的设备. - - - - RemoteLinux - - <no target path set> - <没有设置目标路径> - - - Local File Path - 本地文件路径 - - - Remote Directory - 远程目录 - - - - RemoteLinux - - Test - 测试 - - - Remote Processes - 远程进程 - - - Deploy Public Key - 部署公钥 - - - - RemoteLinux - - New Generic Linux Device Configuration Setup - 设置新的通用型Linux设备 - - - - RemoteLinux - - Connection Data - 连接数据 - - - - RemoteLinux - - Setup Finished - 设置完成 - - - The new device configuration will now be created. -In addition, device connectivity will be tested. - 新设备的设置将被创建。 -另外,设备的连接性将被测试。 - - - - RemoteLinux - - (default for %1) - (默认 %1) - - - - RemoteLinux - - Start Wizard - 开启向导 - - - - RemoteLinux - - Device with MADDE support (Fremantle, Harmattan, MeeGo) - 设备拥有MADDE支持(例如:Fremantle, Harmattan, MeeGo) - - - Other MeeGo OS - 其他MeeGo 操作系统 - - - - RemoteLinux - - Testing configuration. This may take a while. - 测试设置.这将需要一点时间. - - - Testing configuration... - 测试配置... - - - Stop Test - 停止测试 - - - Qt version mismatch! Expected Qt on device: 4.6.2 or later. - Qt版本不符合!需要Qt4.6.2或者更新的版本. - - - Error retrieving list of used ports: %1 - 无法搜索到已使用的端口: %1 - - - All specified ports are available. - 所有指定的端口都可用。 - - - The following supposedly free ports are being used on the device: - 以下有可能可使用的端口已经被设备使用: - - - Device configuration okay. - 设备配置完毕. - - - Close - 关闭 - - - Device configuration test failed: Unexpected output: -%1 - 设备配置测试失败:意外的输出 -%1 - - - Hardware architecture: %1 - - 硬件架构:%1 - - - - Kernel version: %1 - - 内核版本:%1 - - - - No Qt packages installed. - 没有安装Qt包. - - - List of installed Qt packages: - 已经安装的Qt包列表: - - - - RemoteLinux - - No matching packaging step found. - 没有找到符合条件的打包步骤. - - - Deploy package via UTFS mount - 通过挂在UTFS来部署包 - - - - RemoteLinux - - All files copied. - 所有文件拷贝结束. - - - Deploy files via UTFS mount - 通过挂载UTFS来部署包 - - - - RemoteLinux - - Choose Icon (will be scaled to %1x%1 pixels, if necessary) - 选择图标(如果需要会缩放到%1x%1 像素 ) - - - Invalid Icon - 无效图标 - - - Unable to read image - 无法读取图片 - - - Failed to Save Icon - 无法保存图标 - - - Could not save icon to '%1'. - 无法保存图标到'%1'. - - - - RemoteLinux - - General Information - 概要 - - - - RemoteLinux - - Device Status Check - 检测设备状态 - - - - RemoteLinux - - Existing Keys Check - 现有密钥检测 - - - - RemoteLinux - - Key Creation - 密钥创建 - - - Cannot Create Keys - 无法创建密钥 - - - Creating keys ... - 创建密钥... - - - Key creation failed: %1 - 密钥创建失败: %1 - - - Done. - 完成。 - - - Could Not Save Key File - 无法保存密钥文件 - - - - RemoteLinux - - Key Deployment - 公钥部署 - - - Deploying... - 部署中... - - - Key Deployment Failure - 密钥部署失败 - - - Key Deployment Success - 密钥部署成功 - - - - RemoteLinux - - The new device configuration will now be created. - 新设备配置将会被创建。 - - - - RemoteLinux - - New Device Configuration Setup - 新设备配置设置 - - - - RemoteLinux - - SFTP initialization failed: %1 - SFTP 初始化失败: %1 - - - All files successfully deployed. - 所有文件部署成功. - - - Uploading file '%1'... - 上传文件中%1 ... - - - Failed to upload file '%1'. - 上传文件'%1'失败. - - - Failed to upload file '%1': Could not open for reading. - 无法上传文件'%1': 无法打开并读取. - - - Upload of file '%1' failed: %2 - 上传文件'%1' 失败: %2 - - - Upload files via SFTP - 通过SFTP上传文件 - - - - RemoteLinux - - -Did you start Qemu? - -启动Qemu了吗? - - - (No device) - (没有设备) - - - SDK Connectivity - SDK 连接性 - - - Mad Developer - 疯狂开发者 - - - Unknown OS - 未知系统 - - - - RemoteLinux - - Cannot deploy to sysroot: No packaging step found. - 无法部署到sysroot.没有找到打包的步骤. - - - - RemoteLinux - - Cannot install to sysroot without build configuration. - 在没哟构建配置的状况下,无法安装到sysroot. - - - Cannot install package to sysroot without packaging step. - 在没有打包步骤的情况下,无法安装包到sysroot. - - - Cannot install package to sysroot without a Qt version. - 在没有设置Qt版本的情况下,无法安装包到sysroot. - - - - RemoteLinux - - Install Debian package to sysroot - 安装Debian包到sysroot - - - - RemoteLinux - - Install RPM package to sysroot - 安装RPM包到sysroot - - - - RemoteLinux - - Cannot copy to sysroot without build configuration. - 无法在没有构建配置的情况下复制到sysroot. - - - Cannot copy to sysroot without valid Qt version. - 无法在没有有效的QT版本的情况下复制到sysroot. - - - Copying files to sysroot ... - 正在拷贝文件到sysroot... - - - Sysroot installation failed: %1 - Continuing anyway. - Sysroot 安装失败: %1 - 仍然继续. - - - - RemoteLinux - - Copy files to sysroot - 复制文件到sysroot - - - - RemoteLinux - - Create RPM Package - 创建 RPM 包 - - - Package up to date. - 包已更新. - - - Creating package file ... - 创建包文件... - - - Package created. - 打包完成. - - - Package Creation: Running command '%1'. - 生成包:运行命令'%1'. - - - Packaging error: Could not start command '%1'. Reason: %2 - 打包错误:无法执行命令'%1' 原因'%2' - - - Packaging Error: Command '%1' failed. - 打包错误:命令%1'失败. - - - Reason: %1 - 原因 %1 - - - Exit code: %1 - 退出代码: %1 - - - - RemoteLinux - - Create Debian Package - 创建Deb包 - - - Could not move package files from %1 to %2. - 无法将包文件从%1移动到%2. - - - Packaging failed: Foreign debian directory detected. - 打包失败:检测到外部debian目录. - - - Could not remove directory '%1': %2 - 无法删除目录'%1': %2 - - - Could not create Debian directory '%1'. - 无法创建Debian目录'%1'. - - - Could not copy file '%1' to '%2' - 无法拷贝文件‘%1’到'%2' - - - Error: Could not create file '%1'. - 错误:无法创建文件'%1'. - - - - RemoteLinux - - Could not move package file from %1 to %2. - 无法移动包文件从%1 到%2. - - - - RemoteLinux - - Size should be %1x%2 pixels - 尺寸应当是 %1x%2 像素 - - - No Version Available. - 没有可用的版本. - - - Could not read icon - 无法调入图标 - - - Images - 图片 - - - Choose Image (will be scaled to 48x48 pixels if necessary) - 选择图像(会缩放到 48x48 像素, 如果需要) - - - Could Not Set New Icon - 无法设置新图标 - - - File Error - 文件错误 - - - Could not set project name. - 无法设置项目名称。 - - - Could not set package name for project manager. - 无法为项目管理器设置包的名称。 - - - Could not set project description. - 无法设置项目描述。 - - - <b>Create Package:</b> - <b>创建 包:</b> - - - Could Not Set Version Number - 无法设置版本号 - - - - RemoteLinux - - Connection failure: %1 - 连接失败: %1 - - - Installing package failed. - 安装package失败. - - - - RemoteLinux - - Include in package - 包含到包 - - - Include - 包含 - - - Do not include - 不要包含 - - - - RemoteLinux - - Canceled. - 已取消. - - - Publishing canceled by user. - 发布被用户取消。 - - - The project is missing some information important to publishing: - 项目丢失了一些发布需要的重要信息: - - - Publishing failed: Missing project information. - 发布失败:丢失项目信息。 - - - Removing left-over temporary directory ... - 移除留下的临时文件夹... - - - Error removing temporary directory: %1 - 移除临时文件夹出错: %1 - - - Publishing failed: Could not create source package. - 发布失败:无法生成源文件包。 - - - Setting up temporary directory ... - 设置临时文件夹... - - - Error: Could not create temporary directory. - 错误:无法创建临时文件夹. - - - Error: Could not copy project directory. - 错误:无法复制项目文件夹. - - - Error: Could not fix newlines. - 错误:无法修复新行. - - - Publishing failed: Could not create package. - 发布失败:无法创建包. - - - Cleaning up temporary directory ... - 清理临时文件夹... - - - Failed to create directory '%1'. - 无法创建文件夹'%1'. - - - Could not copy file '%1' to '%2': %3. - 无法复制文件'%1' 到 '%2': %3. - - - Error: Failed to start dpkg-buildpackage. - 错误: 无法开始 dpkg-buildpackage. - - - Error: dpkg-buildpackage did not succeed. - 错误: dpkg-buildpackage 没有成功. - - - Package creation failed. - 包创建失败。 - - - Packaging finished successfully. The following files were created: - - 打包成功完成。如下文件被创建: - - - - No Qt version set. - 没有设置Qt 版本. - - - Building source package... - 构建源程序包... - - - Starting scp ... - 启动scp ... - - - SSH error: %1 - SSH 错误: %1 - - - Upload failed. - 上传失败。 - - - Error uploading file: %1. - 上传文件错误: %1. - - - Error uploading file. - 上传文件错误。 - - - All files uploaded. - 所有文件已上传。 - - - Uploading file %1 ... - 上传文件中%1 ... - - - Cannot open file for reading: %1. - 无法打开并读取文件: %1. - - - Cannot read file: %1 - 无法读取文件: %1 - - - - RemoteLinux - - Publishing to Fremantle's "Extras-devel/free" Repository - 发布到Fremantle's "Extras-devel/free"仓库 - - - Upload options - 上传选项 - - - Choose a private key file - 选择一个私钥文件 - - - - RemoteLinux - - Publish for "Fremantle Extras-devel free" repository - 发布到"Fremantle Extras-devel free" 仓库 - - - - RemoteLinux - - Publishing to Fremantle's "Extras-devel free" Repository - 发布到Fremantle的"Extras-devel free" 仓库 - - - Build Settings - 构建设置 - - - Upload Settings - 上传设置 - - - Result - 结果 - - - - RemoteLinux - - Start Maemo Emulator - 启动Maemo模拟器 - - - Start MeeGo Emulator - 启动Maemo模拟器 - - - Stop MeeGo Emulator - 停止Maemo模拟器 - - - Stop Maemo Emulator - 停止Maemo模拟器 - - - - RemoteLinux - - Error: Copy command failed. - 错误: 复制命令失败. - - - - RemoteLinux - - No directories to mount - 没有目录将被挂载 - - - No directories to unmount - 没有目录将被卸载 - - - Could not execute unmount request. - 无法生成卸载请求. - - - Failure unmounting: %1 - 卸载%1失败 - - - Finished unmounting. - 卸载完成. - - - -stderr was: '%1' - stderr为'%1' - - - Error: Not enough free ports on device to fulfill all mount requests. - 错误: 没有足够的空闲端口来让设备完成所有的接入请求. - - - Starting remote UTFS clients... - 正在启动远程UTFS客户端... - - - Mount operation succeeded. - 挂载操作成功. - - - Failure running UTFS client: %1 - 运行UTFS客户端:%1失败 - - - Starting UTFS servers... - 正在启动UTFS服务器... - - - -stderr was: %1 - stderr为:%1 - - - Error running UTFS server: %1 - 运行UTFS服务器%1时出错 - - - Timeout waiting for UTFS servers to connect. - 等待UTFS服务器连接超时. - - - - RemoteLinux - - Local directory - 本地目录 - - - Remote mount point - 远程挂载点 - - - - RemoteLinux - - Not enough free ports on the device. - 设备上没有足够的开放端口. - - - - RemoteLinux - - Choose directory to mount - 选择挂载的目录 - - - No local directories to be mounted on the device. - 没有本地目录将被挂载到设备. - - - One local directory to be mounted on the device. - 一个本地目录将被挂载到设备. - - - %n local directories to be mounted on the device. - Note: Only mountCount>1 will occur here as 0, 1 are handled above. - - %n个本地目录将被挂载到设备上. - - - - - RemoteLinux - - Run on device - 在设备上运行 - - - - RemoteLinux - - Qemu error - Qemu 错误 - - - Qemu crashed. - Qemu崩溃了。 - - - Click here to change the OpenGL mode. - 点击这里来改变OpenGL 模式. - - - - RemoteLinux - - Device Configurations - 设备配置 - - - - RemoteLinux - - Save Public Key File - 保存公钥文件 - - - Save Private Key File - 保存私钥文件 - - - - RemoteLinux - - Mounting host directories... - 正在挂载主机目录... - - - Potentially unmounting left-over host directory mounts... - 静默卸载剩余挂载的主机目录... - - - Unmounting host directories... - 卸载主机目录... - - - - RemoteLinux - - Waiting for file name... - 等待文件名称... - - - Choose Public Key File - 选择公钥文件 - - - Public Key Files (*.pub);;All Files (*) - 选择公钥文件(*.pub);;所有文件 (*) - - - Deploying... - 部署中... - - - Deployment finished successfully. - 部署成功完成。 - - - - RemoteLinux - - Preparing remote side ... - - 正在准备远端... - - - - Remote application failed with exit code %1. - 远端程序失败,退出代码 %1. - - - The gdbserver process closed unexpectedly. - gdbserver进程异常终止. - - - - RemoteLinux - - The .pro file '%1' is being parsed. - .pro文件'%1'正在被解析。 - - - No active build configuration. - 没有激活的构建设置。 - - - Don't know what to run. - 不知道要运行什么。 - - - %1 (on Remote Device) - %1 is the name of a project which is being run on remote Linux - %1 (在远端设备上) - - - Run on Remote Device - Remote Linux run configuration default display name - 在远端设备上运行 - - - Run on remote device - Remote Linux run configuration default display name - 在远程设备上运行 - - - - RemoteLinux - - (on Remote Generic Linux Host) - (在远程通用Linux主机) - - - - RemoteLinux - - Fetch Device Environment - 获取设备环境 - - - <a href="%1">Manage device configurations</a> - <a href="%1">管理Maemo设备配置</a> - - - <a href="%1">Set Debugger</a> - <a href="%1">设置调试器</a> - - - Device configuration: - 设备配置: - - - Executable on host: - 主机上的执行档: - - - Executable on device: - 设备上的执行档: - - - Use this command instead - 用这个命令代替 - - - Alternate executable on device: - 设备上的备用执行档: - - - Arguments: - 参数: - - - <default> - <默认> - - - Working directory: - 工作目录: - - - C++ only - 只是C++ - - - QML only - 只是QML - - - C++ and QML - C++和QML - - - Debugging type: - 调试类型: - - - Base environment for this run configuration: - 运行设置的基础环境: - - - Clean Environment - 清理时的环境变量 - - - System Environment - 系统环境变量 - - - Cancel Fetch Operation - 取消获取操作 - - - Device Error - 设备错误 - - - Device error - 设备错误 - - - Fetching environment failed: %1 - 获取环境失败:%1 - - - - RemoteLinux - - Starting remote process ... - - 启动远端进程... - - - - Finished running remote process. Exit code was %1. - - 远程进程运行结束.返回值%1. - - - - Remote Execution Failure - 远程执行失败 - - - - RemoteLinux - - Run on remote Linux device - 在远程Linux设备上运行 - - - - Subversion::Internal::SubversionDiffParameterWidget - - Ignore whitespace - 忽略空白 - - - - TextEditor::FunctionHintProposalWidget - - %1 of %2 - %1/%2 - - - - TextEditor::FallbackSelectorWidget - - Settings: - 设置: - - - Custom - 自定义 - - - Restore %1 - %1 is settings name (e.g. Global C++) - 还原 %1 - - - Restore - 还原 - - - - TextEditor::Internal::SnippetsCollection - - Cannot create user snippet directory %1 - 无法创建用户片断目录%1 - - - - Valgrind - - Profiling - 正在分析 - - - Profiling %1 - - 正在分析%1 - - - - - Valgrind - - Valgrind Function Profiler - Valgrind 功能分析器 - - - Valgrind Profile uses the "callgrind" tool to record function calls when a program runs. - Valgrind 分析器使用了"callgrind" 工具来记录程序运行时的函数调用。 - - - Profile Costs of this Function and its Callees - 分析此函数和被调用者的花销 - - - - Valgrind - - Callers - 调用者 - - - Functions - 函数 - - - Callees - 被调用者 - - - Visualization - 可视化 - - - Request the dumping of profile information. This will update the callgrind visualization. - 请求dump分析信息。这将更新callgrind的可视化。 - - - Reset all event counters. - 重置所有的事件计数器。 - - - Pause event logging. No events are counted which will speed up program execution during profiling. - 暂停事件记录日志。不对事件计数,这将加快程序在分析时的执行速度。 - - - Go back one step in history. This will select the previously selected item. - 在历史中返回一步。这将选中之前选过的项。 - - - Go forward one step in history. - 在历史中向前一步。 - - - Selects which events from the profiling data are shown and visualized. - 选择分析数据时显示哪些事件并且图形化。 - - - Absolute Costs - 绝对花费 - - - Show costs as absolute numbers. - 显示花费的确切数字。 - - - Relative Costs - 相对花费 - - - Show costs relative to total inclusive cost. - 显示相对于总花费的花费。 - - - Relative Costs to Parent - 相对于父级的花费 - - - Show costs relative to parent functions inclusive cost. - 显示相对于包括父级函数的花费。 - - - Cost Format - 花费格式 - - - Cycle Detection - 循环检测 - - - Enable cycle detection to properly handle recursive or circular function calls. - 启用循环检测来正确处理递归或循环的函数调用。 - - - This removes template parameter lists when displaying function names. - 该选项在显示函数名时去掉模板参数列表。 - - - Show Project Costs Only - 仅显示项目花费 - - - Show only profiling info that originated from this project source. - 仅显示源于本项目代码的分析信息。 - - - Filter... - 过滤器... - - - Profiling aborted. - 分析中断。 - - - Parsing finished, no data. - 分析完成,无数据。 - - - Parsing finished, total cost of %1 reported. - 分析完成,报告总花费%1 。 - - - Parsing failed. - 分析失败。 - - - Select this Function in the Analyzer Output - 在分析器输出中选择此函数 - - - Populating... - 正在填充... - - - - Valgrind - - All functions with an inclusive cost ratio higher than %1 (%2 are hidden) - 包含成本比%1高的所有函数 (%2 被隐藏) - - - - Valgrind - - Analyzing Memory - 内存分析中 - - - Analyzing memory of %1 - - 正在分析内存%1 - - - - - Valgrind - - %1 in %2 - %1 function, %2 path - 在 %2中的%1 - - - in %1 - 在 %1中 - - - - Valgrind - - Copy Selection - 复制选择 - - - Suppress Error - 防止错误 - - - - Valgrind - - Memory Analysis - 内存分析 - - - - Valgrind - - External Errors - 外部错误 - - - Show issues originating outside currently opened projects. - 显示源于当前打开的项目之外的问题。 - - - Suppressions - Suppressions - - - These suppression files were used in the last memory analyzer run. - 这些suppression 文件被上一次内存分析所使用。 - - - Definite Memory Leaks - 确定的内存泄露 - - - Possible Memory Leaks - 可能的内存泄露 - - - Use of Uninitialized Memory - 使用了未初始化的内存 - - - Invalid Calls to "free()" - 无效调用"free()" - - - Valgrind Memory Analyzer - Valgrind 内存分析器 - - - Valgrind Analyze Memory uses the "memcheck" tool to find memory leaks - Valgrind 分析内存使用"memcheck" 工具来查找内存泄漏 - - - Memory Issues - 内存问题 - - - Go to previous leak. - 移到上一个泄漏。 - - - Go to next leak. - 移到下一个泄漏。 - - - Error Filter - 错误过滤器 - - - Internal Error - 内部错误 - - - Error occurred parsing valgrind output: %1 - 分析valgrind输出时发生了错误: %1 - - - - Valgrind - - Callee - 被调用者 - - - Caller - 调用者 - - - Cost - 花费 - - - Calls - 调用 - - - - Valgrind - - Previous command has not yet finished. - 之前的命令还没有完成。 - - - Dumping profile data... - dump分析数据... - - - Resetting event counters... - 重置事件计数器... - - - Pausing instrumentation... - 暂停分析... - - - Unpausing instrumentation... - 继续仪器... - - - Callgrind dumped profiling info - Callgrind dump分析信息 - - - Callgrind unpaused. - Callgrind 已继续。 - - - Downloading remote profile data... - 正在下载远程分析数据... - - - - Valgrind - - File: - 文件: - - - Called: - 被调用: - - - %n time(s) - - %n 次 - - - - Events - 事件 - - - Self costs - 自身花费 - - - (%) - (%) - - - Incl. costs - 包括杂项的花费 - - - %1 - %1 - - - (%1%) - (%1%) - - - %1 cost spent in a given function excluding costs from called functions. - 给定的函数的花费为 %1,不包括调用其他函数的花费。 - - - %1 cost spent in a given function including costs from called functions. - 给定的函数的花费为 %1,包括调用其他函数的花费。 - - - Function - 函数 - - - Location - 位置 - - - Called - 被调用 - - - Self Cost: %1 - 自身花费: %1 - - - Incl. Cost: %1 - 包括杂项的花费: %1 - - - - Valgrind - - %1:%2 in %3 - %1: 在 %3 中的%2 - - - - Valgrind - - Last-level - 最后一级 - - - Instruction - 指令 - - - Cache - 缓存 - - - Conditional branches - 条件分支 - - - Indirect branches - 间接分支 - - - level %1 - 级别%1 - - - read - 读取 - - - write - 写入 - - - mispredicted - 错误预计 - - - executed - 执行 - - - miss - 未命中 - - - access - 访问 - - - Line: - 行号: - - - Position: - 位置: - - - - Valgrind - - Parsing Profile Data... - 解析分析数据... - - - - Valgrind - - No network interface found for remote analysis. - 没有找到用于远程分析的网络接口. - - - Select Network Interface - 选择网络接口 - - - - Valgrind - - Could not determine remote PID. - 无法确定远程的PID。 - - - - Valgrind - - Valgrind options: %1 - Valgrind 选项: %1 - - - Working directory: %1 - 工作目录: %1 - - - Command-line arguments: %1 - 命令参数: %1 - - - ** Analyzing finished ** - - ** 分析完成** - - - - ** Error: "%1" could not be started: %2 ** - - ** 错误: "%1" 无法被启动: %2 ** - - - - ** Error: no valgrind executable set ** - - ** 错误: 没有设置 valgrind的可执行档 ** - - - - ** Process Terminated ** - - ** 进程已终止** - - - - Application Output - 应用程序输出 - - - - Valgrind - - Analyzer - 分析器 - - - - Valgrind - - Generic Settings - 一般设置 - - - - VcsBase::Internal::CommonSettingsWidget - - Command used for reverting diff chunks - 用于还原差异部分的命令 - - - - Welcome - - Welcome - 欢迎 - - - New Project - 新项目 - - - - Coda::Session - - CPU: v%1.%2%3%4 - CPU description of an S60 device %1 major verison, %2 minor version %3 real name of major verison, %4 real name of minor version - CPU: v%1.%2%3%4 - - - CODA: v%1.%2 CODA protocol: v%3.%4 - CODA: v%1.%2 CODA 协议: v%3.%4 - - - %1, %2%3%4, %5 - s60description description of an S60 device %1 CPU description, %2 endianness %3 default type size (if any), %4 float size (if any) %5 Coda version - %1, %2%3%4, %5 - - - big endian - 大段 - - - little endian - 小段 - - - , type size: %1 - will be inserted into s60description - , 类型尺寸: %1 - - - , float size: %1 - will be inserted into s60description - , 浮点型尺寸: %1 - - - - CodePaster - - <Unknown> - Unknown user of paste. - <未知> - - - - RemoteLinux - - MeeGo Qemu Settings - MeeGo Qemu 设置 - - - - QmlDesigner::TextToModelMerger error message - - No import statements found - 没有找到导入语句 - - - Unsupported QtQuick version - 不支持的QtQuick版本 - - - - QmlProjectManager::QmlProjectPlugin - - Open Qt4 Options - 打开Qt4选项 - - - Cancel - 取消 - - - Open Qt Versions - 打开Qt版本 - - - QML Observer Missing - QML Observer缺失 - - - QML Observer could not be found for this Qt version. - 当前Qt版本找不到对应的QML Observer。 - - - QML Observer is used to offer debugging features for Qt Quick UI projects in the Qt 4.7 series. - -To compile QML Observer, go to the Qt Versions page, select the current Qt version, and click Build in the Helpers section. - QML Observer用于在Qt 4.7系列为Qt Quick UI项目提供调试功能。 - -要想编译QML Observer,请进入“Qt版本”页面,选择当前的Qt版本,然后点击“助手”部分的“构建”按钮。 - - - QML Observer could not be found. - QML Observer未找到. - - - QML Observer is used to offer debugging features for QML applications, such as interactive debugging and inspection tools. It must be compiled for each used Qt version separately. On the Qt4 options page, select the current Qt installation and click Rebuild. - QML Observer能够能够用来调试QML应用程序,其中包含了调试和检查组件.但该工具必须为每个Qt版本单独编译一份.在Qt4的选项设置页,选择最新的Qt版本然后点击重新构建. - - - - Valgrind - - Valgrind - Valgrind - - - - text - - text - 文本 - - - - textedit - - text edit - 编辑文本 - - - - textinput - - text - 文本 - - - - StatusDisplay - - No QML events recorded - 没有QML项目被录制 - - - Profiling application - 分析应用程序 - - - Loading data - 导入数据 - - - - TimeDisplay - - length: %1 - 长度: %1 - - - - FlickableGroupBox - - Flickable - 可摇动 - - - Content size - 内容尺寸 - - - Flick direction - 摇动方向 - - - Flickable direction - 摇动方向 - - - Behavior - 行为 - - - Bounds behavior - 边界行为 - - - Interactive - 互动 - - - Max. velocity - 最大速度 - - - Maximum flick velocity - 最大摇动速度 - - - Deceleration - 减速 - - - Flick deceleration - 摇动减速 - - - - FlowSpecifics - - Flow - 流程 - - - Spacing - 间距 - - - - GridSpecifics - - Grid - 框架 - - - Columns - - - - Rows - - - - Flow - 流程 - - - Spacing - 间距 - - - - GridViewSpecifics - - Grid View - 框架视图 - - - Cache - 缓存 - - - Cache buffer - 缓存存储器 - - - Cell height - 网格高度 - - - Cell width - 网格宽度 - - - Flow - 流程 - - - Resize wraps - 调整框架 - - - Navigation wraps - 导航跃迁 - - - Determines whether the grid wraps key navigation. - 决定框架的按键导航. - - - Snap mode - 页面模式 - - - Determines how the view scrolling will settle following a drag or flick. - 决定视图如何滚动,拖拽或是轻击. - - - Grid View Highlight - 框架视图高度 - - - Range - 范围 - - - Highlight range - 高亮范围 - - - Move duration - 移动持续时间 - - - Move animation duration of the highlight delegate. - 高亮代表移动动画的持续时间. - - - Move speed - 移动速度 - - - Move animation speed of the highlight delegate. - 高亮代表移动动画的速度. - - - Preferred begin - 首选起始 - - - Preferred highlight begin - must be smaller than Preferred end. - 首选高亮起始-必须比首选结束数值要小. - - - Preferred end - 首选结束 - - - Preferred highlight end - must be larger than Preferred begin. - 首选高亮结束-必须比首选起始数值要大. - - - Follows current - 跟随当前 - - - Determines whether the highlight is managed by the view. - 决定高亮是否需要由视图来管理. - - - - LineEdit - - Translate this string - 翻译这个字符串 - - - - ListViewSpecifics - - List View - 列表视图 - - - Cache - 缓存 - - - Cache buffer - 缓存存储器 - - - Navigation wraps - 导航跃迁 - - - Determines whether the grid wraps key navigation. - 决定框架的按键导航. - - - Orientation - 方向 - - - Orientation of the list. - 列表方向. - - - Snap mode - 页面模式 - - - Determines how the view scrolling will settle following a drag or flick. - 决定视图如何滚动,拖拽还是轻点. - - - Spacing - 间距 - - - Spacing between items. - 项之间的间距. - - - List View Highlight - 列表视图高亮 - - - Range - 范围 - - - Highlight range - 高亮范围 - - - Move duration - 移动持续时间 - - - Move animation duration of the highlight delegate. - 高亮代表移动动画的持续时间. - - - Move speed - 移动速度 - - - Move animation speed of the highlight delegate. - 高亮代表移动动画的速度. - - - Resize duration - 调整时间 - - - Resize animation duration of the highlight delegate. - 调整高亮代表的动画移动. - - - Resize speed - 调整速度 - - - Resize animation speed of the highlight delegate. - 调整高亮代表的动画速度. - - - Preferred begin - 首选起始 - - - Preferred highlight begin - must be smaller than Preferred end. - 首选高亮起始-必须比首选结束数值要小. - - - Preferred end - 首选结束 - - - Preferred highlight end - must be larger than Preferred begin. - 首选高亮结束-必须比首选起始数值要大. - - - Follows current - 跟随当前 - - - Determines whether the highlight is managed by the view. - 决定高亮是否需要由视图来管理. - - - - MouseAreaSpecifics - - MouseArea - 鼠标区域 - - - Enabled - 启用 - - - This property holds whether the item accepts mouse events. - 这项属性决定这项是否接受鼠标事件. - - - Hover Enabled - 启用悬停 - - - This property holds whether hover events are handled. - 这项属性决定这项是否处理鼠标悬停事件事件. - - - - PathViewSpecifics - - Path View - 路径查看 - - - Drag margin - 拖拽量 - - - Flick deceleration - 摇动减速 - - - Follows current - 跟随当前 - - - A user cannot drag or flick a PathView that is not interactive. - 用户不可以拖拽或点击一个不是交互式类型的路径视图. - - - Offset - 便宜 - - - Specifies how far along the path the items are from their initial positions. This is a real number that ranges from 0.0 to the count of items in the model. - 指定项最远离初始位置的路径.这是一个浮点数,范围从0.0到模型中项的数量. - - - Item count - 项目计数 - - - pathItemCount: number of items visible on the path at any one time. - pathItemCount: 任何时间内可见项的数量. - - - Path View Highlight - 路径视图高亮 - - - Highlight range - 高亮范围 - - - Move duration - 移动持续时间 - - - Move animation duration of the highlight delegate. - 高亮代表移动动画的持续时间. - - - Preferred begin - 首选起始 - - - Preferred highlight begin - must be smaller than Preferred end. - 首选高亮起始-必须比首选结束数值要小. - - - Preferred end - 首选结束 - - - Preferred highlight end - must be larger than Preferred begin. - 首选高亮结束-必须比首选起始数值要大. - - - Determines whether the highlight is managed by the view. - 决定高亮是否需要由视图来管理. - - - - RowSpecifics - - Row - - - - Spacing - 间距 - - - - ExampleBrowser - - Search in Tutorials - 在教程中搜索 - - - Search in Tutorials, Examples and Demos - 在教程,例子,演示中搜索 - - - Show Examples and Demos - 显示例子和演示 - - - Tag List - 标签列表 - - - - ExampleDelegate - - Tags: - 标签: - - - - FeaturedAndNewsListing - - Featured News - 特色新闻 - - - Latest News - 最新新闻 - - - - Feedback - - Feedback - 反馈 - - - Help us make Qt Creator even better - 协助我们使Qt Creator 更加完美 - - - Search in Tutorials, Examples and Demos - 在教程,例子,演示中搜索 - - - Open Project... - 打开项目... - - - Create Project... - 创建项目... - - - - NewsListing - - Click to read more... - 点击阅读更多... - - - - RecentProjects - - Recently Edited Projects - 最近使用的项目 - - - - RecentSessions - - Recently Used Sessions - 当前使用的会话 - - - %1 (last session) - %1 (最后的会话) - - - %1 (current session) - %1 (当前会话) - - - - TagBrowser - - Please choose a tag to filter for: - 请问过滤器选择一个标签: - - - - RemoteLinux - - Tarball creation not possible. - 不可能创建tarball。 - - - Create tarball: - 创建tarball: - - - - ExtensionSystem::Internal::PluginErrorOverview - - Qt Creator - Plugin loader messages - Qt Creator - 插件载入信息 - - - The following plugins have errors and cannot be loaded: - 以下插件有错误,无法被载入: - - - Details: - 详情: - - - - AttachToQmlPortDialog - - Start Debugger - 启动调试器 - - - Host - 主机 - - - &Host: - 主机(&H): - - - &Port: - 端口(&P): - - - - QmlProfiler - - Painting - 绘制中 - - - Compiling - 编译中 - - - Creating - 创建中 - - - Signal Handler - 信号处理 - - - - Tracing - - Duration - 持续时间 - - - Details - 详情 - - - Location - 位置 - - - Duration: - 持续时间: - - - Details: - 详情: - - - - MobileAppWizardHarmattanOptionsPage - - WizardPage - 向导页面 - - - Application icon (80x80): - 应用程序图标 (80x80): - - - Generate code to speed up the launching on the device. - 生成代码来加速设备上的运行速度. - - - Make application boostable - 使应用程序启动稳定 - - - - NewTestCaseDlg - - ... - ... - - - - RecordDialog - - Abort - 终止 - - - Stop - 停止 - - - - SelectDlg - - Dialog - 对话框 - - - - QtTest::Internal::TestSettingsPropertiesPage - - General - 概要 - - - Add - 添加 - - - Branch - Branch - - - E-mail - 电子邮件 - - - - LinuxDeviceConfigurationsSettingsWidget - - Linux Device Configurations - Linux 设备设置 - - - &Configuration: - 配置(&C): - - - &Name: - 名称(&N): - - - OS type: - OS 类型: - - - Device type: - 设备类型: - - - Authentication type: - 验证类型: - - - Password - 密码 - - - &Key - 密钥(&K) - - - &Host name: - 主机名称(&H): - - - IP or host name of the device - 设备的IP或者主机名称 - - - &SSH port: - SSH端口(&S): - - - Free ports: - 空闲端口: - - - Timeout: - 超时时间: - - - s - - - - &Username: - 用户名(&U): - - - &Password: - 密码(&P): - - - Show password - 显示密码 - - - Private key file: - 私钥文件: - - - Set as Default - 设置为默认 - - - &Add - 添加(&A) - - - &Remove - 删除(&R) - - - Set As Default - 设置为默认 - - - &Generate SSH Key... - 生成SSH密钥(&G)... - - - &Add... - 添加(&A)... - - - - LinuxDeviceTestDialog - - Device Test - 设备测试 - - - - ProFilesUpdateDialog - - Maemo Deployment Issue - Maemo部署事件 - - - &Check all - 选中全部(&C) - - - &Uncheck All - 取消选中(&U) - - - - RemoteLinuxDeployConfigurationWidget - - Form - 界面 - - - Device configuration: - 设备配置: - - - <a href="irrelevant">Manage device configurations</a> - <a href="irrelevant">设置设备选项</a> - - - These show the INSTALLS settings from the project file(s). - 显示来自于项目文件的安装(INSTALLS)设置. - - - Files to install for subproject: - 为子项目需要安装的文件: - - - Edit the project file to add or remove entries. - 编辑项目文件添加或删除条目. - - - - RemoteLinuxProcessesDialog - - List of Remote Processes - 远程进程列表 - - - &Filter by process name: - 按进程名过滤(&F): - - - &Update List - 更新列表(&U) - - - &Kill Selected Process - 停止选中进程(&K) - - - - SshKeyCreationDialog - - SSH Key Configuration - SSH密钥配置 - - - Options - 选项 - - - Key &size: - 密钥长度(&S): - - - Key algorithm: - 密钥算法: - - - Key - 密钥 - - - &Generate SSH Key - 生成SSH密钥(&G) - - - Save P&ublic Key... - 保存公钥文件... - - - Save Pr&ivate Key... - 保存私钥文件... - - - &Close - 关闭 - - - - StartGdbServerDialog - - List of Remote Processes - 远程进程列表 - - - Device: - 设备: - - - &Filter by process name: - 按进程名过滤(&F): - - - &Attach to Selected Process - 挂接到指定进程 - - - &Update List - 更新列表(&U) - - - - ExampleLineEdit - - Show Examples and Demos - 显示例子和演示 - - - Search in Tutorials - 在教程中搜索 - - - Search in Tutorials, Examples and Demos - 在教程,例子,演示中搜索 - - - Tag List - 标签列表 - - - - LinksBar - - Qt Creator - Qt Creator - - - - ExtensionSystem::Internal::PluginErrorOverviewPrivate - - Continue - 继续 - - - - QmlJsDebugClient::QmlProfilerEventList - - Source code not available - 源代码不可用 - - - No data to save - 没有数据需要保存 - - - Could not open %1 for writing - 无法打开%1来写入 - - - Could not open %1 for reading - 无法打开%1来读取 - - - Error while parsing %1 - 解析 %1 发生错误 - - - - Utils::Ssh - - Password Required - 需要密码 - - - - Utils::TextFileFormat - - Out of memory. - 内存不足。 - - - An encoding error was encountered. - 发生了一个编码错误。 - - - - Bazaar Verbose 详细 - - Show files changed in each revision - 显示每个修订版本改变的文件 - Forward 按时间顺序 - - Show from oldest to newest - 显示从最老到最新 - - - Include merges - 包含合并 - - - Show merged revisions - 显示合并了的修订版本 - Detailed 详细 - Moderately short - 略短 + Ignore Whitespace + 忽略空白 - One line - 一行 + Ignore Blank Lines + - GNU ChangeLog - GNU 更新日志 + Show files changed in each revision. + + + + Show from oldest to newest. + + + + Include Merges + + + + Show merged revisions. + + + + Moderately Short + + + + One Line + + + + GNU Change Log + + + + Format + 格式 + + + Performs a local commit in a bound branch. +Local commits are not pushed to the master branch until a normal commit is performed. + + + + &Annotate %1 + + + + Annotate &parent revision %1 + + + + Uncommit + + + + Keep tags that point to removed revisions + + + + Only remove the commits from the local branch when in a checkout + + + + If a revision is specified, uncommits revisions to leave the branch at the specified revision. +For example, "Revision: 15" will leave the branch at revision 15. + + + + Last committed + + + + Dry Run + + + + Test the outcome of removing the last committed revision, without actually removing anything. + + + + Triggers a Bazaar version control operation. + + + + Uncommit... + + + + For example: 'https://[user[:pass]@]host[:port]/[path]'. + + + + Ignores differences between branches and overwrites +unconditionally. + + + + Creates the path leading up to the branch if it does not already exist. + + + + Performs a local pull in a bound branch. +Local pulls are not applied to the master branch. + - Core::Internal + Beautifier - Launching a file browser failed - 启动文件浏览器失败 + Bea&utifier + - Unable to start the file manager: - -%1 - - - 无法启动文件管理器: - -%1 - - - - - '%1' returned the following error: - -%2 - '%1' 返回以下错误: - -%2 - - - Settings... - 设定... - - - Launching Windows Explorer Failed - 启动Windows Explorer 失败 - - - Could not find explorer.exe in path to launch Windows Explorer. - 在搜索路径中找不到explorer.exe,无法启动Windows Explorer。 - - - Show in Explorer - 在Explorer中显示 - - - Show in Finder - 在Finder中显示 - - - Show Containing Folder - 显示包含的目录 - - - Open Command Prompt Here - 在此弹出命令提示 - - - Open Terminal Here - 在此打开终端 - - - Deleting File Failed - 删除文件失败 - - - Could not delete file %1. - 无法删除文件 %1 。 - - - Show in Explorer... - 在Explorer中显示... - - - Show in Finder... - 在搜索器中显示 ... - - - Show Containing Folder... - 显示包含的目录... - - - Open Command Prompt Here... - 在此打开命令行控制台... - - - Open Terminal Here... - 在此打开终端... + Beautifier + - BaseFileWizard + Beautifier::Internal - Unable to create the directory %1. - 无法创建目录 %1。 + Artistic Style + + + + Uncrustify + - FunctionDeclDefLink + Beautifier::Internal::AbstractSettings - Target file was changed, could not apply changes - 目标文件改变, 无法应用设置 + Cannot save styles. %1 does not exist. + - Apply changes to definition - 在定义中应用设置 + Cannot open file "%1": %2. + - Apply changes to declaration - 在声明中定义设置 + Cannot save file "%1": %2. + - Apply function signature changes - 应用功能签名设置 + No documentation file specified. + + + + Cannot open documentation file "%1". + + + + The file "%1" is not a valid documentation file. + + + + Cannot read documentation file "%1": %2. + - Debugger + Beautifier::Internal::ArtisticStyle - C++ exception - C++ 异常 - - - Thread creation - 线程创建 - - - Thread exit - 线程退出 - - - Load module: - 载入模块: - - - Unload module: - 卸载模块: - - - Output: - 输出: - - - - Debugger - - <p>An uncaught exception occurred:</p><p>%1</p> - <p>发生了一个未被捕获的异常:</p><p>%1</p> - - - <p>An uncaught exception occurred in '%1':</p><p>%2</p> - <p>在 '%1'处发生了未被捕捉的异常:</p><p>%2</p> - - - No Local Variables - 没有局部变量 - - - <p>An uncaught exception occurred in <i>%1</i>:</p><p>%2</p> - <p>发生未被捕捉到的异常,位置在<i>%1</i>:</p><p>%2</p> - - - Uncaught Exception - 未被捕捉的异常 - - - - Find::IFindFilter - - Case sensitive - 区分大小写 - - - Whole words - 全词匹配 - - - Regular expressions - 正则表达式 - - - Flags: %1 - 标志: %1 - - - None - - - - , - - - - - Find::Internal::SearchResultWidget - - Search was canceled. - 查找被取消。 - - - Cancel - 取消 - - - Repeat the search with same parameters - 使用相同的参数重复搜索 - - - Search again - 再次搜索 - - - Replace with: - 替换为: - - - Replace all occurrences - 替换所有出现位置 - - - Replace - 替换 - - - This change cannot be undone. - 这项改变将无法被撤销。 - - - Do not warn again - 下次不再警告 - - - The search resulted in more than %n items, do you still want to continue? - - 搜索到了超过%n个项,您仍然想继续吗? - - - - Continue - 继续 - - - No matches found. - 未找到匹配。 - - - %n matches found. - - 找到%n 个匹配。 - - - - - RemoteLinux - - Maemo GCC - Maemo GCC - - - Maemo GCC for %1 - Maemo GCC 为 %1 - - - %1 GCC (%2) - %1 GCC (%2) - - - - RemoteLinux - - <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> MADDE路径:</td><td>%1</td></tr><tr><td> MADDE 路径目标:</td><td>%2</td></tr><tr><td>调试器:</td/><td>%3</td></tr></body></html> - - - - RemoteLinux - - Copy Files to Maemo5 Device - 复制文件到Maemo5 设备 - - - Build Debian Package and Install to Maemo5 Device - 构建 Debian 包然后安装到 Maemo5 设备上 - - - Build Debian Package and Install to Harmattan Device - 构建Debian 包然后安装到 Harmattan 设备上 - - - Build RPM Package and Install to MeeGo Device - 构建 RPM 包然后安装到 MeeGo 设备上 - - - - RemoteLinux - - Cannot open file '%1': %2 - 文法打开文件'%1':'%2' - - - Qt Creator - Qt Creator - - - Error creating packaging directory '%1'. - 创建打包目录发生错误'%1'. - - - Error creating MeeGo templates - 创建MeeGo模板出错 - - - - ProjectExplorer::Internal::RunSettingsPanelFactory - - Run Settings - 运行设置 - - - - ProjectExplorer::SettingsAccessor - - Using Old Project Settings File - 使用旧的项目设置文件 - - - <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>一个用户设置文件的带版本号的备用将会被使用,因为不带版本号的文件由不兼容的新版 Qt Creator创建。</p><p>在该版本的Qt Creator上次被使用时进行的项目设定更改被忽略,现在进行的修改将<b>不会</b>被传递到新版本。</p></body></html> - - - Project Settings File from a different Environment? - 来自于不同环境的项目设置文件? - - - Qt Creator has found a .user settings file which was created for another development setup, maybe originating from another machine. - -The .user settings files contain environment specific settings. They should not be copied to a different environment. - -Do you still want to load the settings file? - Qt Creator 找到了一个由其他开发环境创建的用户设置文件,或许是来自于其他机器的。 - -用户设置文件包含了特定环境的设定。它不应当被复制到其他应用环境中去。 - -您仍然想载入这个设置文件吗? - - - Unsupported Shared Settings File - 不支持的共享设置文件 - - - The version of your .shared file is not yet supported by this Qt Creator version. Only settings that are still compatible will be taken into account. - -Do you want to continue? - -If you choose not to continue Qt Creator will not try to load the .shared file. - 您的共享的文件的版本号不被这个 Qt Creator 支持。只有仍然兼容的设定会被计入。 - -您想继续吗? - -如果您选择不继续, Qt Creator 不会尝试载入这个共享的文件。 - - - - QmlJSEditor - - Qt Quick - Qt Quick - - - - FindExportedCppTypes - - The type will only be available in Qt Creator's QML editors when the type name is a string literal - 此种类型名称 string literal 仅在 Qt Creator 中的 QML编辑器时可使用 - - - The module URI cannot be determined by static analysis. The type will be available -globally in the QML editor. You can add a "// @uri My.Module.Uri" annotation to let -Qt Creator know about a likely URI. - 模块URI 无法由静态分析来决定. 类型将在QML编辑器中全局可用. -您可以添加 "// @uri My.Module.Uri" 注释来让 -Qt Creator 知道一个相似的URI. - - - must be a string literal to be available in the QML editor - 字符串文字只在 QML 编辑器中可用 - - - - QmakeProjectManager - - Headers - 头文件 - - - Sources - 源文件 - - - Forms - 界面文件 - - - Resources - 资源 - - - QML - QML - - - Other files - 其他文件 - - - Cannot Open File - 无法打开文件 - - - Cannot open the file for editing with VCS. - 无法使用VCS打开用于编辑的文件。 - - - Cannot Set Permissions - 无法设置权限 - - - Cannot set permissions to writable. - 无法设置文件的可写权限。 - - - There are unsaved changes for project file %1. - 项目文件 %1 中有未保存的改变。 - - - Failed! - 失败! - - - Could not write project file %1. - 无法写入项目文件 %1。 - - - File Error - 文件错误 - - - Wrong Icon Size - 错误的图标大小 - - - The icon needs to be %1x%2 pixels big, but is not. Do you want Qt Creator to scale it? - 图标必须要%1x%2像素大, 但现在不是。您希望Qt Creator缩放图标吗? - - - Could not copy icon file: %1 - 无法复制图标文件: %1 - - - - QtTest::Internal::TestNavigationWidgetFactory - - Filter tree - 过滤视图 - - - - QtTest::Internal::QtTestPlugin - - &Test - 测试(&T) - - - Error - 错误 - - - - ResultsView - - Result - 结果 - - - Description - 说明 - - - - TestResultsWindow - - Test Results - 测试结果 - - - - TestExecuter - - Stopping... - 正在停止... - - - - RemoteLinux - - No deployment action necessary. Skipping. - 不必要执行部署,跳过。 - - - No device configuration set. - 没有设备设置。 - - - Connecting to device... - 正在连接设备... - - - Could not connect to host: %1 - 无法连接到主机: %1 - - - -Did the emulator fail to start? - -模拟器启动失败了吗? - - - -Is the device connected and set up for network access? - -设备已经连接并设置为可以访问网络了吗? - - - - RemoteLinux - - Deployment failed: %1 - 部署失败:%1 - - - Cannot deploy: %1 - 无法部署:%1 - - - User requests deployment to stop; cleaning up. - 用户要求停止部署; 清理中。 - - - Deploy step failed. - 部署步骤失败。 - - - Deploy step finished. - 部署步骤完成。 - - - - RemoteLinux - - Successfully uploaded package file. - 上传包文件成功。 - - - Installing package to device... - 正在将包安装到设备... - - - Package installed. - 包已安装。 - - - - RemoteLinux - - Upload of file '%1' failed. The server said: '%2'. - 上传文件'%1'。服务器回应: '%2'。 - - - If '%1' is currently running on the remote host, you might need to stop it first. - 如果 '%1'正在远程主机上运行,您可能需要先停止它。 - - - Failed to set executable flag. - 设置可运行标志失败。 - - - Warning: No remote path set for local file '%1'. Skipping upload. - 警告:没有为本地文件'%1'设置远程路径,跳过上传。 - - - Incremental deployment - 增量部署 - - - Command line: - 命令行: - - - Device test finished successfully. - 设备测试成功完成。 - - - Device test failed. - 设备测试失败。 - - - - RemoteLinux - - Connecting to host... - 连接到主机... - - - SSH connection failure: %1 - - SSH 连接失败 '%1' - - - - uname failed: %1 - - uname失败%1 - - - - uname failed. - - uname失败。 - - - - Checking if specified ports are available... - 检查指定端口是否可用... - - - Error gathering ports: %1 - - 搜集端口错误: %1 - - - - The following specified ports are currently in use: %1 - - 以下指定端口现正被使用: %1 - - - - - RemoteLinux - - Preparing SFTP connection... - 准备SFTP连接... - - - Connection failed: %1 - 连接失败:%1 - - - SFTP error: %1 - SFTP 错误: %1 - - - Package upload failed: Could not open file. - 包上传失败:无法打开文件。 - - - Failed to upload package: %2 - 上传包失败: %2 - - - - RemoteLinux - - Updateable Project Files - 可更新的项目文件 - - - Maemo Deployment Issue - Maemo部署问题 - - - The project files listed below do not contain 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. - 以下列出的项目文件不包含部署信息, 意味着对应的目标无法在设备上部署或者运行。如果您在下面检选了对应的行,Qt Creator会添加缺失的信息到这些文件中。 - - - &Check all - 选中全部(&C) - - - &Uncheck All - 全部取消选中(&U) - - - - RemoteLinux - - Cannot run: %1 - 无法运行: %1 - - - Killing remote process(es)... - 正在结束远程进程... - - - - RemoteLinux - - Run custom remote command - 执行自定义的远程命令 - - - - RemoteLinux - - No command line given. - 没有给定命令行。 - - - Starting remote command '%1'... - 启动远端命令'%1'...... - - - Remote process failed to start. - 远端进程启动失败。 - - - Remote process was killed by a signal. - 远端进程收到信号退出。 - - - Remote process finished with exit code %1. - 远端进程完成,退出代码'%1'。 - - - Remote command finished successfully. - 远端命令成功完成。 - - - - RemoteLinux - - Deploy to Remote Linux Host - 部署到远程Linux主机 - - - Linux Devices - Linux 设备 - - - - RemoteLinux - - <b>%1 using device</b>: %2 - <b>%1 使用设备</b>: %2 - - - - RemoteLinux - - Connection error: %1 - 连接错误:%1 - - - Error running remote process: %1 - 运行远程程序发生错误:%1 - - - -Remote stderr was: '%1' - -远程stderr为:'%1' - - - - RemoteLinux - - Start Remote Debug Server... - 启动远程调试服务... - - - Start Gdbserver - 启动 Gdb服务 - - - - RemoteLinux - - Remote Error - 远程错误 - - - - RemoteLinux - - Command Line - 命令行 - - - Error: Remote process failed to start: %1 - 错误:远程进程启动失败: %1 - - - Error: Remote process crashed: %1 - 错误:远程进程崩溃: %1 - - - Remote process failed. - 远端进程失败。 - - - -Remote stderr was: %1 - -远程stderr 是: %1 - - - - RemoteLinux - - Public key error: %1 - 公钥错误: %1 - - - Key deployment failed: %1. - 部署密钥失败:%1。 - - - - RemoteLinux - - Could not retrieve list of free ports: - 无法获取可用端口列表: - - - Starting gdbserver... - 启动 gdb服务... - - - Port %1 is now accessible. - 端口 %1 现可使用. - - - Process gdbserver finished. Status: %1 - gdb服务进程完毕. 状态: %1 - - - - RemoteLinux - - Packaging finished successfully. - 打包顺利完成。 - - - Packaging failed. - 打包失败。 - - - Creating tarball... - 创建tarball... - - - Tarball up to date, skipping packaging. - 归档文件已经是最新, 跳过打包。 - - - Error: tar file %1 cannot be opened (%2). - 错误: tar 文件%1 无法被打开(%2)。 - - - No remote path specified for file '%1', skipping. - 没有为文件 '%1'指定远程路径,跳过步骤。 - - - Error writing tar file '%1': %2. - 写入tar 文件 '%1'发生错误: %2。 - - - Error reading file '%1': %2. - 读取文件'%1'错误: %2。 - - - Adding file '%1' to tarball... - 添加文件'%1' 到tarball... - - - Cannot add file '%1' to tar-archive: path too long. - 无法添加文件'%1' 到压缩包(tar-archive): 路径太长。 - - - Error writing tar file '%1': %2 - 写入tar 文件 '%1'发生错误: %2 - - - Create tarball - 创建tarball - - - - RemoteLinux - - (default) - (默认) - - - %1 (default) - %1 (默认) - - - - RemoteLinux - - No tarball creation step found. - 没有找到生成tarball所需的步骤。 - - - Deploy tarball via SFTP upload - 通过SFTP上传来部署tarball - - - - TextEditor::Internal::CodeStyleDialog - - Edit Code Style - 编辑代码风格 - - - Code style name: - 代码风格名称: - - - You cannot save changes to a built-in code style. Copy it first to create your own version. - 您无法保存修改到内建的代码风格。请先复制它然后创建您自己的版本。 - - - Copy Built-in Code Style - 复制内建代码风格 - - - %1 (Copy) - %1 (复制) - - - - TextEditor::CodeStyleSelectorWidget - - Copy... - 复制... - - - Edit... - 编辑... - - - Remove - 删除 - - - Import... - 导入... - - - Export... - 输出... - - - Current settings: - 当前设置: - - - Copy Code Style - 复制代码风格 - - - Code style name: - 代码风格名称: - - - %1 (Copy) - %1 (复制) - - - Delete Code Style - 删除代码风格 - - - Are you sure you want to delete this code style permanently? - 您确定想永久删除这项代码风格方案吗? - - - Delete - 删除 - - - Import Code Style - 导入代码风格 - - - Code styles (*.xml);;All files (*) - 代码风格(*.xml);;所有文件(*) - - - Cannot import code style from %1 - 无法从%1导入代码风格 - - - Cannot import code style - 无法导入代码风格 - - - Export Code Style - 导出代码风格 - - - %1 [proxy: %2] - %1 [代理: %2] - - - %1 [built-in] - %1 [内置] - - - Form - 界面 - - - - TextEditor::FindInFiles - - Files on File System - 在文件系统中的文件 - - - Directory '%1': - 目录'%1': - - - Path: %1 -Filter: %2 -%3 - %3 is filled by BaseFileFind::runNewSearch - 路径: %1 -过滤器: %2 -%3 - - - Director&y: - 目录(&Y): - - - &Browse... - 浏览(&B)... - - - &Browse - 浏览(&B) - - - Fi&le pattern: - 文件模式(&L): - - - Directory to search - 搜索目录 - - - - UpdateInfo::Internal::UpdateInfoPlugin - - Could not determine location of maintenance tool. Please check your installation if you did not enable this plugin manually. - 无法确定维护工具所在位置,请检查安装(有可能没有手动开启插件支持)。 - - - Could not find maintenance tool at '%1'. Check your installation. - 无法在'%1'找到维护工具,请检查安装。 - - - Start Updater - 启动更新工具 - - - Update - 更新 - - - - TextEditor::CodeStyleEditor - - Edit preview contents to see how the current settings are applied to custom code snippets. Changes in the preview do not affect the current settings. - 编辑预览内容来查看当前设置如何应用到自定义代码段。在预览中修改并不影响当前设置。 - - - - VcsCommand - - -'%1' failed (exit code %2). - - -'%1' 失败 (退出代码 %2)。 - - - - -'%1' completed (exit code %2). - - -'%1' 完成 (退出代码 %2)。 - - - - - VcsBase::Command - - Error: VCS timed out after %1s. - 错误: VCS 在 %1秒后超时。 - - - Unable to start process, binary is empty - 无法启动进程,二进制为空 - - - - QSsh::SshKeyCreationDialog - - SSH Key Configuration - SSH密钥配置 + &Artistic Style + Options - 选项 + 选项 - Key algorithm: - 密钥算法: + Use file *.astylerc defined in project files + - &RSA - &RSA + Use specific config file: + - &DSA - &DSA + AStyle (*.astylerc) + - Key &size: - 密钥长度(&S): + Use file .astylerc or astylerc in HOME + - Private key file: - 私钥文件: + Use customized style: + - Browse... - 浏览... + Configuration + 配置 - Public key file: - 公钥文件: + Artistic Style command: + - &Generate And Save Key Pair - 创建并保存密钥文件对(&G) + Restrict to MIME types: + - &Cancel - 取消(&C) - - - Key Generation Failed - 密钥创建失败 - - - Choose Private Key File Name - 选择私钥文件名 - - - Cannot Save Key File - 无法保存密钥文件 - - - Failed to create directory: '%1'. - 无法创建目录:'%1'。 - - - Cannot Save Private Key File - 无法保存私钥文件 - - - The private key file could not be saved: %1 - 私钥文件无法保存:%1 - - - Cannot Save Public Key File - 无法保存公钥文件 - - - The public key file could not be saved: %1 - 公钥文件无法保存:%1 + Artistic Style + - Android + Beautifier::Internal::BeautifierPlugin - Create new AVD - 创建新AVD + Error in Beautifier: %1 + - Name: - 名称: + Cannot get configuration file for %1. + - Kit: - 工具套件(Kit): + Format &Current File + Menu entry + - SD card size: - SD卡容量: + Format &Selected Text + Menu entry + - MiB - MiB + &Format at Cursor + Menu entry + - Create a keystore and a certificate - 创建一个密钥存储库和一个证书 + Format &Line(s) + Menu entry + - Keystore - 密钥存储库 + &Disable Formatting for Selected Text + Menu entry + - Password: - 密码: + %1 Command + File dialog title for path chooser when choosing binary + + + + + Beautifier::Internal::ClangFormat + + &ClangFormat + - Retype password: - 再次输入密码: + ClangFormat + - Show password - 显示密码 + Options + 选项 - <span style=" color:#ff0000;">Password is too short</span> - <span style=" color:#ff0000;">密码太短</span> + Use customized style: + - Certificate - 证书 + Use predefined style: + - Alias name: - 别名: + Fallback style: + - Aaaaaaaa; - Aaaaaaaa; + Configuration + 配置 - Keysize: - 密钥长度: + Clang Format command: + - Validity (days): - 有效期(天数): + Restrict to MIME types: + - Certificate Distinguished Names - 证书的特别(distinguished)名称 + Clang Format + - First and last name: - 全名: + Use file uncrustify.cfg defined in project files + - Organizational unit (e.g. Necessitas): - Necessitas is the Qt Android porting - 组织和单位(如Necessitas): + Use file specific uncrustify.cfg + - Organization (e.g. KDE): - 组织(如KDE): + Uncrustify file (*.cfg) + - City or locality: - 城市或地点: + Use file uncrustify.cfg in HOME + - State or province: - 州或省: + Format entire file if no text was selected + - Two-letter country code for this unit (e.g. RO): - 单位的两字母的国家代码(如RO): + For action Format Selected Text + - >AA; - >AA; + Uncrustify command: + - Form - 界面 + Uncrustify + + + + + Beautifier::Internal::ClangFormatSettings + + No description available. + + + + + Beautifier::Internal::ConfigurationDialog + + Name + - Use Qt libraries from device - 使用设备上的Qt库 + Value + - Push local Qt libraries to device. -You must have Qt libraries compiled for that platform - 将本地Qt库推送到设备。 -您必须有为该平台的编译Qt库 + Documentation + 文档 - Deploy local Qt libraries - 部署本地的Qt库 + Documentation for "%1" + + + + Beautifier::Internal::ConfigurationPanel - Check this option to force the application to use local Qt libraries instead of system libraries. - 检选此选项强制程序使用本地的Qt库替代系统库。 - - - Use local Qt libraries - 使用本地Qt库 - - - Edit Rules File - 编辑规则文件 - - - Choose and install Ministro system wide Qt shared libraries. -This option is useful when you want to try your application on devices which don't have Android Market (e.g. Android Emulator). - 选择并安装Ministro系统范围的Qt共享库。 -该选项在您想要在设备上试验您的程序但没有Android Market(如Android模拟器)时很有用。 - - - Install Ministro, system-wide Qt shared libraries installer - 安装Ministro - 系统范围的Qt共享库安装工具 - - - Choose APK - 选择APK - - - Manifest - Manifest - - - <b>Android target SDK:</b> - <b>Android 目标 SDK:</b> - - - <b>Package name:</b> - <b>包名:</b> - - - <p align="justify">Please choose a valid package name for your application (e.g. "org.example.myapplication").</p> -<p align="justify">Packages are usually defined using a hierarchical naming pattern, with levels in the hierarchy separated by periods (.) (pronounced "dot").</p> -<p align="justify">In general, a package name begins with the top level domain name of the organization and then the organization's domain and then any subdomains listed in reverse order. The organization can then choose a specific name for their package. Package names should be all lowercase characters whenever possible.</p> -<p align="justify">Complete conventions for disambiguating package names and rules for naming packages when the Internet domain name cannot be directly used as a package name are described in section 7.7 of the Java Language Specification.</p> - <p align="justify">请为您的应用程序选择一个有效的包名(如 "org.example.myapplication")。</p> -<p align="justify">包通常用层次性命名规则来定义,层次用英文句点(‘.’,读做"点")来分隔。</p> -<p align="justify">通常情况下,包名由组织的顶层域名打头,接着是组织的域名,然后是反向排列的子域名。之后组织可以为包选择一个特定的名称。包名必须全部为小写字母。</p> -<p align="justify">在网络域名不能直接用作包名时,如何解决包名的二义性和命名包的规则的完整惯例说明可以在“Java语言规范”的Section7.7找到。</p> - - - <b>Version code:</b> - <b>版本号:</b> - - - <b>Version name:</b> - <b>版本名称:</b> - - - 1.0.0 - 1.0.0 - - - Application - 应用程序 - - - <b>Application name:</b> - <b>程序的名称:</b> - - - <b>Run:</b> - <b>运行:</b> - - - <b>Application icon:</b> - <b>程序的图标:</b> - - - Select low dpi icon - 选择低解析度的图标 - - - Select medium dpi icon - 选择中等解析度的图标 - - - Select high dpi icon - 选择高解析度的图标 - - - Permissions - 权限 - - - Add - 添加 + Edit + 编辑 Remove - 删除 + 删除 - Save - 保存 + Add + 添加 - Discard - 丢弃 + Add Configuration + - Libraries - + Edit Configuration + + + + + Beautifier::Internal::GeneralOptionsPageWidget + + Enable auto format on file save + - Automatically check required Qt libraries from compiled application - 从编译好的程序中自动检查需要的Qt库 + Tool: + - Read information from application (must be compiled) - 从应用程序读取信息(必须编译程序) + Restrict to MIME types: + - Required Qt libraries - 需要Qt库 + Restrict to files contained in the current project + - <center>Prebundled libraries</center> -<p align="justify">Please be aware that the order is very important: If library <i>A</i> depends on library <i>B</i>, <i>B</i> <b>must</b> go before <i>A</i>.</p> - <center>预打包的库</center> -<p align="justify">请注意顺序非常重要: 如果库<i>A</i> 依赖于库<i>B</i>,则<i>B</i> <b>必须</b> 出现在 <i>A</i>之前。</p> + Automatic Formatting on File Save + - Up - 上移 + General + 概要 + + + + Beautifier::Internal::Uncrustify + + &Uncrustify + + + + + BinEditor + + Cannot open %1: %2 + 无法打开%1 : %2 - Down - 下移 + File Error + 文件错误 - Sign package - 包签名 + The Binary Editor cannot open empty files. + 二进制编辑无法打开空文件。 - Keystore: - 密钥存储库: + The file is too big for the Binary Editor (max. 32GB). + - Create - 创建 + &Redo + - Browse - 浏览 + Memory at 0x%1 + - Open package location after is complete - 完成后打开包所在的位置 + Decimal&nbsp;unsigned&nbsp;value: + 十进制&nbsp;无符号&nbsp;数值: - Certificate alias: - 证书别名: + Decimal&nbsp;signed&nbsp;value: + 十进制&nbsp;有符号&nbsp;数值: - Android Configuration - Android配置 + Previous&nbsp;decimal&nbsp;unsigned&nbsp;value: + 上一个&nbsp;十进制&nbsp;无符号&nbsp;数值: - Android SDK location: - Android SDK的路径: + Previous&nbsp;decimal&nbsp;signed&nbsp;value: + 上一个&nbsp;十进制&nbsp;有符号&nbsp;数值: - Android NDK location: - Android NDK的路径: + %1-bit&nbsp;Integer&nbsp;Type + %1-bit&nbsp;整数&nbsp;类型 - Android NDK tool chain version: - Android NDK 工具链的版本: + Little Endian + Little Endian - Ant location: - Ant的路径: + Big Endian + Big Endian - ARM GDB location: - ARM GDB的路径: + Binary&nbsp;value: + 二进制&nbsp;数值: - ARM GDB server location: - ARM GDB 服务器的路径: + Octal&nbsp;value: + 八进制&nbsp;数值: - x86 GDB location: - x86 GDB的路径: + Previous&nbsp;binary&nbsp;value: + 上一个&nbsp;二进制&nbsp;数值: - x86 GDB server location: - x86 GDB服务器的路径: + Previous&nbsp;octal&nbsp;value: + 上一个&nbsp;八进制&nbsp;数值: - OpenJDK location: - OpenJDK的路径: + <i>double</i>&nbsp;value: + <i>双精度浮点数</i>&nbsp;数值: - Start - 启动 + Previous <i>double</i>&nbsp;value: + 上一个<i>双精度浮点数</i>&nbsp;数值: - AVD Manager - AVD管理器 + <i>float</i>&nbsp;value: + <i>浮点数</i>&nbsp;数值: - System/data partition size: - 系统/数据分区的大小: + Previous <i>float</i>&nbsp;value: + 上一个<i>浮点数</i>&nbsp;数值: - Mb - Mb + Zoom: %1% + - Start Android AVD Manager - 启动Android AVD管理器 + Copying Failed + 复制失败 + + + You cannot copy more than 4 MB of binary data. + 您不能复制超过 4 MB 的二进制数据。 + + + Copy Selection as ASCII Characters + 复制选中部分作为 ASCII 字符串 + + + Copy Selection as Hex Values + 复制选中部分作为十六进制值 + + + Set Data Breakpoint on Selection + 选中时设置数据断点 + + + Copy 0x%1 + + + + Jump to Address in This Window + 在当前窗口中跳转到地址 + + + Jump to Address in New Window + 在新窗口中跳转到地址 + + + Copy Value + + + + Jump to Address 0x%1 in This Window + 在当前窗口中跳转到地址 0x%1 + + + Jump to Address 0x%1 in New Window + 在新窗口中跳转到地址 0x%1 + + + + BinEditor::Internal::BinEditorPlugin + + &Undo + 撤销(&U) + + + + BookmarkDialog + + Add Bookmark + 添加书签 + + + New Folder + 新建文件夹 + + + Bookmark: + 书签: + + + Add in folder: + 添加到文件夹: + + + Bookmarks + 书签 + + + Delete Folder + 删除文件夹 + + + Rename Folder + 重命名文件夹 + + + + BookmarkManager + + Bookmarks + 书签 + + + Remove + 删除 + + + Deleting a folder also removes its content.<br>Do you want to continue? + 删除文件夹会同时删除文件夹下的文件。<br>您确定继续吗? + + + New Folder + 新建文件夹 + + + + BookmarkWidget + + Delete Folder + 删除文件夹 + + + Rename Folder + 重命名文件夹 + + + Show Bookmark + 显示书签 + + + Show Bookmark as New Page + 在新页面显示书签 + + + Delete Bookmark + 删除书签 + + + Rename Bookmark + 重命名书签 + + + + Bookmarks + + Bookmarks + 书签 + + + Move Up + 向上移动 + + + Move Down + 向下移动 + + + &Remove + 删除(&R) + + + Remove All + 全部删除 + + + &Bookmarks + 书签(&B) + + + Toggle Bookmark + 切换书签 + + + Ctrl+M + Ctrl+M + + + Meta+M + Meta+M + + + Previous Bookmark + 上个书签 + + + Ctrl+, + Ctrl+, + + + Meta+, + Meta+, + + + Next Bookmark + 下个书签 + + + Ctrl+. + Ctrl+. + + + Meta+. + Meta+. + + + Previous Bookmark in Document + 文档中的上个书签 + + + Next Bookmark in Document + 文档中的下个书签 + + + Alt+Meta+M + Alt+Meta+M + + + Alt+M + Alt+M + + + Bookmark + + + + Matches all bookmarks. Filter by file name, by the text on the line of the bookmark, or by the bookmark's note text. + + + + &Edit + 编辑(&E) + + + Remove All Bookmarks + + + + Are you sure you want to remove all bookmarks from all files in the current session? + + + + Edit Bookmark + + + + Note text: + + + + Line number: + 行号: + + + Meta+Shift+M + + + + Ctrl+Shift+M + + + + + Boot2Qt + + Boot2Qt: %1 + + + + + BrowserWindow + + Edit + 编辑 + + + Copy + 复制 + + + URL: + URL: + + + Browse... + 浏览... + + + Open File + 打开文件 + + + Enter location + + + + + BuildConfiguration + + Release + The name of the release build configuration created by default for a qmake project. + + + + Debug + The name of the debug build configuration created by default for a qmake project. + + + + Profile + The name of the profile build configuration created by default for a qmake project. + + + + + BuildSettingsPanel + + Build Settings + 构建设置 + + + + ButtonSpecifics + + Button + + + + Text + 文本 + + + Text displayed on the button. + + + + Checked + + + + State of the button. + + + + Checkable + + + + Determines whether the button is checkable or not. + + + + Enabled + 启用 + + + Determines whether the button is enabled or not. + + + + Default button + + + + Sets the button as the default button in a dialog. + + + + Tool tip + + + + The tool tip shown for the button. + + + + Focus on press + + + + Determines whether the button gets focus if pressed. + + + + Icon source + + + + The URL of an icon resource. + + + + + CMakeProjectManager + + Clear system environment + 清除系统环境变量 + + + Build + 构建 + + + Clean Environment + 清除环境变量 + + + System Environment + 系统环境变量 + + + Generator: + 创建器: + + + Run CMake + 执行CMake + + + CMake + CMake + + + Targets: + 目标: + + + Build CMake target + 构建 CMake 目标 + + + Initial Configuration + + + + Current Configuration + + + + Kit Configuration + + + + Edit the current kit's CMake configuration. + + + + Filter + 过滤器 + + + &Add + 添加(&A) + + + Add a new configuration value. + + + + &Boolean + + + + &String + + + + &Directory + + + + &File + 文件(&F) + + + &Edit + 编辑(&E) + + + Edit the current CMake configuration value. + + + + &Set + + + + Set a value in the CMake configuration. + + + + &Unset + 取消设置(&U) + + + Unset a value in the CMake configuration. + + + + &Reset + 重置(&R) + + + Reset all unapplied changes. + + + + Batch Edit... + + + + Set or reset multiple values in the CMake configuration. + + + + Advanced + 高级 + + + <UNSET> + <未设定> + + + Edit CMake Configuration + + + + Enter one CMake <a href="variable">variable</a> per line.<br/>To set or change a variable, use -D&lt;variable&gt;:&lt;type&gt;=&lt;value&gt;.<br/>&lt;type&gt; can have one of the following values: FILEPATH, PATH, BOOL, INTERNAL, or STRING.<br/>To unset a variable, use -U&lt;variable&gt;.<br/> + + + + Re-configure with Initial Parameters + + + + Clear CMake configuration and configure with initial parameters? + + + + Do not ask again + 下次不再询问 + + + Kit CMake Configuration + + + + Configure + 配置 + + + Stop CMake + + + + bool + display string for cmake type BOOLEAN + + + + file + display string for cmake type FILE + + + + directory + display string for cmake type DIRECTORY + + + + string + display string for cmake type STRING + + + + Force to %1 + + + + Help + 帮助 + + + Apply Kit Value + + + + Apply Initial Configuration Value + + + + Copy + 复制 + + + Changing Build Directory + + + + Change the build directory to "%1" and start with a basic CMake configuration? + + + + The CMake flag for the development team + + + + The CMake flag for the provisioning profile + + + + The CMake flag for the architecture on macOS + + + + The CMake flag for QML debugging, if enabled + + + + Minimum Size Release + + + + Release with Debug Information + + + + Profile + + + + Additional CMake <a href="options">options</a>: + + + + Build type: + + + + Current executable + + + + Build the executable used in the active run configuration. Currently: %1 + + + + Target: %1 + + + + CMake arguments: + + + + Tool arguments: + + + + Enable automatic provisioning updates: + + + + Tells xcodebuild to create and download a provisioning profile if a valid one does not exist. + + + + Target + 目标 + + + The build configuration is currently disabled. + + + + A CMake tool must be set up for building. Configure a CMake tool in the kit options. + + + + There is a CMakeCache.txt file in "%1", which suggest an in-source build was done before. You are now building in "%2", and the CMakeCache.txt file might confuse CMake. + + + + Persisting CMake state... + + + + Running CMake in preparation to build... + + + + Project did not parse successfully, cannot build. + + + + Build + ConfigWidget display name. + 构建 + + + CMake Build + Display name for CMakeProjectManager::CMakeBuildStep id. + + + + Copy to Clipboard? + + + + Files are not automatically added to the CMakeLists.txt file of the CMake project. +Copy the path to the source files to the clipboard? + + + + The kit needs to define a CMake tool to parse this project. + + + + Apply configuration changes? + + + + Run CMake with configuration changes? + + + + <b>CMake configuration failed<b><p>The backup of the previous configuration has been restored.</p><p>Issues and "Projects > Build" settings show more information about the failure.</p + + + + <b>Failed to load project<b><p>Issues and "Projects > Build" settings show more information about the failure.</p + + + + Scan "%1" project tree + + + + Failed to create build directory "%1". + + + + No CMake tool set up in kit. + + + + The remote CMake executable cannot write to the local build directory. + + + + Failed to open %1 for reading. + + + + <No CMake Tool available> + + + + CMake Tool + + + + The CMake Tool to use when building a project with CMake.<br>This setting is ignored when using other build systems. + + + + Unconfigured + 未配置 + + + Path to the cmake executable + + + + CMake version %1 is unsupported. Update to version 3.14 (with file-api) or later. + + + + Change... + + + + Platform + 平台 + + + Toolset + + + + CMake Generator + + + + Extra generator: + + + + Platform: + + + + Toolset: + + + + <none> + <无> + + + CMake <a href="generator">generator</a> + + + + CMake generator defines how a project is built when using CMake.<br>This setting is ignored when using other build systems. + + + + CMake Tool is unconfigured, CMake generator will be ignored. + + + + CMake Tool does not support the configured generator. + + + + Platform is not supported by the selected CMake generator. + + + + Toolset is not supported by the selected CMake generator. + + + + The selected CMake binary does not support file-api. %1 will not be able to parse CMake projects. + + + + <Use Default Generator> + + + + Generator: %1<br>Extra generator: %2 + + + + Platform: %1 + + + + Toolset: %1 + + + + Enter one CMake <a href="variable">variable</a> per line.<br/>To set a variable, use -D&lt;variable&gt;:&lt;type&gt;=&lt;value&gt;.<br/>&lt;type&gt; can have one of the following values: FILEPATH, PATH, BOOL, INTERNAL, or STRING. + + + + CMake Configuration + + + + Default configuration passed to CMake when setting up a project. + + + + CMake configuration has no path to qmake binary set, even though the kit has a valid Qt version. + + + + CMake configuration has a path to a qmake binary set, even though the kit has no valid Qt version. + + + + CMake configuration has a path to a qmake binary set that does not match the qmake binary path configured in the Qt version. + + + + CMake configuration has no CMAKE_PREFIX_PATH set that points to the kit Qt version. + + + + CMake configuration has no path to a C compiler set, even though the kit has a valid tool chain. + + + + CMake configuration has a path to a C compiler set, even though the kit has no valid tool chain. + + + + CMake configuration has a path to a C compiler set that does not match the compiler path configured in the tool chain of the kit. + + + + CMake configuration has no path to a C++ compiler set, even though the kit has a valid tool chain. + + + + CMake configuration has a path to a C++ compiler set, even though the kit has no valid tool chain. + + + + CMake configuration has a path to a C++ compiler set that does not match the compiler path configured in the tool chain of the kit. + + + + Builds a target of any open CMake project. + + + + Open CMake target + + + + Jumps to the definition of a target of any open CMake project. + + + + The source directory %1 is not reachable by the CMake executable %2. + + + + The build directory %1 is not reachable by the CMake executable %2. + + + + The build directory "%1" does not exist + + + + CMake executable "%1" and build directory "%2" must be on the same device. + + + + Running %1 in %2. + + + + Configuring "%1" + + + + CMake process failed to start. + + + + CMake process was canceled by the user. + + + + CMake process crashed. + + + + CMake process exited with exit code %1. + + + + No cmake tool set. + + + + No compilers set in kit. + + + + CMakeUserPresets.json cannot re-define the %1 preset: %2 + + + + Build preset %1 is missing a corresponding configure preset. + + + + Failed to load %1: %2 + + + + Unexpected source directory "%1", expected "%2". This can be correct in some situations, for example when importing a standalone Qt test, but usually this is an error. Import the build anyway? + + + + Clear CMake Configuration + + + + Rescan Project + + + + Build File + 构建文件 + + + Build File "%1" + 构建文件"%1" + + + Ctrl+Alt+B + Ctrl+Alt+B + + + Build File is not supported for generator "%1" + + + + CMake Modules + + + + Target type: + + + + No build artifacts + + + + Build artifacts: + + + + Build "%1" + 构建 "%1" + + + CMake + SnippetProvider + CMake + + + Version: %1 + 版本: %1 + + + Supports fileApi: %1 + + + + yes + + + + no + + + + Detection source: "%1" + + + + (Default) + + + + CMake executable path does not exist. + + + + CMake executable path is not a file. + + + + CMake executable path is not executable. + + + + CMake executable does not provide required IDE integration features. + + + + Name + + + + Path + + + + Manual + 手动设置 + + + CMake .qch File + + + + Autorun CMake + + + + Automatically run CMake after changes to CMake project files. + + + + Name: + 名称: + + + Path: + 路径: + + + Version: + 版本: + + + Help file: + + + + Add + 添加 + + + Clone + 克隆 + + + Remove + 删除 + + + Make Default + 设置为默认 + + + Set as the default CMake Tool to use when creating a new kit or when no value is set. + + + + Clone of %1 + %1 的克隆 + + + New CMake + + + + Ask about copying file paths + + + + Do not copy file paths + + + + Copy file paths + + + + Determines whether file paths are copied to the clipboard for pasting to the CMakeLists.txt file when you add new files to CMake projects. + + + + Package manager auto setup + + + + Add the CMAKE_PROJECT_INCLUDE_BEFORE variable pointing to a CMake script that will install dependencies from the conanfile.txt, conanfile.py, or vcpkg.json file from the project source directory. + + + + Ask before re-configuring with initial parameters + + + + Show subfolders inside source group folders + + + + General + 概要 + + + Adding Files + + + + Version not parseable + + + + Searching CMake binaries... + + + + Found "%1" + + + + Removing CMake entries... + + + + Removed "%1" + + + + CMake: + + + + System CMake at %1 + + + + Key + 密钥 + + + Value + + + + Kit: + + + + Initial Configuration: + + + + Current Configuration: + + + + Not in CMakeCache.txt + + + + Type: + 类型: + + + Select a file for %1 + + + + Select a directory for %1 + + + + <Build Directory> + + + + <Other Locations> + + + + Failed to set up CMake file API support. %1 cannot extract project information. + + + + Invalid reply file created by CMake. + + + + Invalid cache file generated by CMake. + + + + Invalid cmakeFiles file generated by CMake. + + + + Invalid codemodel file generated by CMake: No directories. + + + + Invalid codemodel file generated by CMake: Empty directory object. + + + + Invalid codemodel file generated by CMake: No projects. + + + + Invalid codemodel file generated by CMake: Empty project object. + + + + Invalid codemodel file generated by CMake: Broken project data. + + + + Invalid codemodel file generated by CMake: Empty target object. + + + + Invalid codemodel file generated by CMake: Broken target data. + + + + Invalid codemodel file generated by CMake: No configurations. + + + + Invalid codemodel file generated by CMake: Empty configuration object. + + + + Invalid codemodel file generated by CMake: Broken indexes in directories, projects, or targets. + + + + Invalid codemodel file generated by CMake. + + + + Invalid target file: Information is missing. + + + + Invalid target file generated by CMake: Broken indexes in target details. + + + + CMake parsing was canceled. + + + + No "%1" CMake configuration found. Available configurations: "%2". +Make sure that CMAKE_CONFIGURATION_TYPES variable contains the "Build type" field. + + + + No "%1" CMake configuration found. Available configuration: "%2". +Make sure that CMAKE_BUILD_TYPE variable matches the "Build type" field. + + + + CMake returned error code: %1 + + + + Failed to rename %1 to %2. + + + + Failed to copy %1 to %2. + + + + Failed to read %1 file + + + + Invalid %1 file + + + + Invalid "version" in %1 file + + + + Invalid "configurePresets" section in %1 file + + + + Invalid "buildPresets" section in %1 file + + + + <File System> + + + + + CMakeProjectManager::Tr::Tr + + Tools + + + + + CPlusPlus::CheckSymbols + + Only virtual functions can be marked 'final' + + + + Expected a namespace-name + 应为命名空间的名称 + + + Too many arguments + + + + + CPlusplus::CheckSymbols + + Only virtual functions can be marked 'override' + + + + + CVS + + Annotate revision "%1" + 注释修订版本 "%1" + + + Ignore Whitespace + 忽略空白 + + + Ignore Blank Lines + + + + &Edit + 编辑(&E) + + + CVS Checkout + CVS Checkout + + + Triggers a CVS version control operation. + + + + &CVS + CVS(&C) + + + Diff Current File + Diff 当前文件 + + + Diff "%1" + Diff "%1" + + + Meta+C,Meta+D + Meta+C,Meta+D + + + Alt+C,Alt+D + Alt+C,Alt+D + + + Filelog Current File + Filelog当前文件 + + + Filelog "%1" + + + + Annotate Current File + + + + Annotate "%1" + + + + Add + 添加 + + + Add "%1" + + + + Meta+C,Meta+A + Meta+C,Meta+A + + + Alt+C,Alt+A + Alt+C,Alt+A + + + Commit Current File + 提交当前文件 + + + Commit "%1" + 提交 "%1" + + + Meta+C,Meta+C + Meta+C,Meta+C + + + Alt+C,Alt+C + Alt+C,Alt+C + + + Delete... + 删除... + + + Delete "%1"... + 删除 "%1"... + + + Revert... + 还原... + + + Revert "%1"... + 还原 "%1"... + + + Edit + 编辑 + + + Edit "%1" + 编辑"%1" + + + Unedit + Unedit + + + Unedit "%1" + Unedit "%1" + + + Unedit Repository + Unedit代码仓库 + + + Diff Project + Diff 项目 + + + Diff Project "%1" + Diff 项目 "%1" + + + Project Status + 项目状态 + + + Status of Project "%1" + 项目 "%1" 的状态 + + + Log Project + Log 项目 + + + Log Project "%1" + Log 项目 "%1" + + + Update Project + 更新项目 + + + Update Project "%1" + + + + Commit Project + + + + Commit Project "%1" + + + + Update Directory + + + + Update Directory "%1" + + + + Commit Directory + + + + Commit Directory "%1" + + + + Diff Repository + + + + Repository Status + + + + Repository Log + 仓库日志 + + + Update Repository + + + + Commit All Files + 提交所有文件 + + + Revert Repository... + + + + Revert Repository + + + + Revert all pending changes to the repository? + + + + Revert failed: %1 + 还原失败: %1 + + + The file has been changed. Do you want to revert it? + + + + Another commit is currently being executed. + 另一个提交正在被执行。 + + + There are no modified files. + + + + Would you like to discard your changes to the repository "%1"? + + + + Would you like to discard your changes to the file "%1"? + + + + Project status + 项目状态 + + + Repository status + 仓库状态 + + + Cannot find repository for "%1". + + + + The initial revision %1 cannot be described. + 初始修订版本 %1 无法被描述。 + + + Parsing of the log output failed. + + + + Could not find commits of id "%1" on %2. + + + + No CVS executable specified. + + + + CVS Command + CVS 命令 + + + CVS command: + CVS 命令: + + + CVS root: + CVS 路径: + + + Describe all files matching commit id + 描述提交id匹配的所有文件 + + + When checked, all files touched by a commit will be displayed when clicking on a revision number in the annotation view (retrieved via commit ID). Otherwise, only the respective file will be displayed. + 选中此项后,点击注释视图中(通过commit ID获取)的某个修订版本号时,所有该commit涉及的文件都将被显示。否则,仅显示对应的文件。 + + + CVS + CVS + + + Configuration + 配置 + + + Miscellaneous + 其他 + + + Added + 已添加 + + + Removed + 已删除 + + + Modified + 已更改 + + + + CameraToggleAction + + Toggle Perspective/Orthographic Edit Camera + + + + + ChangeStyleWidgetAction + + Change style for Qt Quick Controls 2. + + + + Change style for Qt Quick Controls 2. Configuration file qtquickcontrols2.conf not found. + + + + + CheckBoxSpecifics + + Check Box + + + + Text + 文本 + + + Text shown on the check box. + + + + Checked + + + + State of the check box. + + + + Focus on press + + + + Determines whether the check box gets focus if pressed. + + + + + Clang Tools + + Custom Configuration + + + + + ClangCodeModel + + Component + + + + Total Memory + + + + Update + 更新 + + + + ClangCodeModel::Internal::ClangCodeModelPlugin + + Generating Compilation DB + + + + Clang Code Model + + + + Generate Compilation Database + + + + Generate Compilation Database for "%1" + + + + Clang compilation database generated at "%1". + + + + Generating Clang compilation database failed: %1 + + + + + ClangCodeModel::Internal::ClangModelManagerSupport + + The use of clangd for the C/C++ code model was disabled, because it is likely that its memory requirements would be higher than what your system can handle. + + + + With clangd enabled, Qt Creator fully supports modern C++ when highlighting code, completing symbols and so on.<br>This comes at a higher cost in terms of CPU load and memory usage compared to the built-in code model, which therefore might be the better choice on older machines and/or with legacy code.<br>You can enable/disable and fine-tune clangd <a href="dummy">here</a>. + + + + Enable Anyway + + + + Cannot use clangd: Failed to generate compilation database: +%1 + + + + + ClangCodeModel::Internal::ClangProjectSettingsWidget + + Parse templates in a MSVC-compliant way. This helps to parse headers for example from Active Template Library (ATL) or Windows Runtime Library (WRL). +However, using the relaxed and extended rules means also that no highlighting/completion can be provided within template functions. + + + + Enable MSVC-compliant template parsing + + + + + ClangCodeModel::Internal::ClangdClient + + clangd + + + + Indexing %1 with clangd + + + + Indexing session with clangd + + + + Memory Usage + + + + Location: %1 + Parent folder for proposed #include completion + + + + collecting overrides ... + + + + <base declaration> + + + + + ClangCodeModel::Internal::ClangdFindReferences + + C++ Usages: + C++ 使用: + + + Re&name %n files + + + + + + Files: +%1 + + + + + ClangDiagnosticConfig + + Project: %1 (based on %2) + + + + Changes applied in Projects Mode > Clang Code Model + + + + + ClangDiagnosticConfigsModel + + Default Clang-Tidy and Clazy checks + + + + Checks for questionable constructs + + + + Build-system warnings + + + + + ClangDiagnosticWidget + + [Source: %1] + + + + Clazy Issue + + + + Clang-Tidy Issue + + + + + ClangFormat::ClangFormatConfigWidget + + Clang-Format Style + + + + + ClangFormat::ClangFormatGlobalConfigWidget + + ClangFormat global setting: + + + + Formatting mode: + + + + Format while typing + + + + Format edited code on file save + + + + Override Clang Format configuration file + + + + Indenting only + + + + Full formatting + + + + Disable + 禁用 + + + The current project has its own .clang-format file which can be overridden by the settings below. + + + + Override Clang Format configuration file with the chosen configuration. + + + + + ClangFormat::ClangFormatPlugin + + Open Used .clang-format Configuration File + + + + The ClangFormat plugin has been built against an unmodified Clang. You might experience formatting glitches in certain circumstances. See https://code.qt.io/cgit/qt-creator/qt-creator.git/tree/README.md for more information. + + + + + ClangFormatStyleFactory + + ClangFormat + + + + + ClangTools::Diagnostic + + Category: + + + + Type: + 类型: + + + Description: + 说明: + + + Location: + + + + Fixit status: + + + + Steps: + + + + Documentation: + + + + + ClangTools::ExplainingStep + + Message: + 消息: + + + Location: + + + + + ClangTools::Internal::BaseChecksTreeModel + + Web Page + + + + + ClangTools::Internal::ClangTidyRunner + + Clang-Tidy + + + + + ClangTools::Internal::ClangTool + + Analyze Project... + + + + Analyze Current File + + + + Go to previous diagnostic. + + + + Go to next diagnostic. + + + + Load diagnostics from YAML files exported with "-export-fixes". + + + + Clear + + + + Expand All + 展开全部 + + + Collapse All + 折叠全部 + + + Filter Diagnostics + + + + Apply Fixits + + + + Clang-Tidy and Clazy use a customized Clang executable from the Clang project to search for diagnostics. + + + + Clang-Tidy and Clazy + + + + Clang-Tidy and Clazy... + + + + Release + + + + Run %1 in %2 Mode? + 在%2 模式下运行%1吗? + + + You are trying to run the tool "%1" on an application in %2 mode. The tool is designed to be used in Debug mode since enabled assertions can reduce the number of false positives. + + + + Do you want to continue and run the tool in %1 mode? + + + + Clang-Tidy and Clazy tool stopped by user. + + + + Cannot analyze current file: No files open. + + + + Cannot analyze current file: "%1" is not a known source file. + + + + Select YAML Files with Diagnostics + + + + YAML Files (*.yml *.yaml);;All Files (*) + + + + Error Loading Diagnostics + + + + Set a valid Clang-Tidy executable. + + + + Set a valid Clazy-Standalone executable. + + + + Project "%1" is not a C/C++ project. + + + + Open a C/C++ project to start analyzing. + + + + Failed to build the project. + + + + Failed to start the analyzer. + + + + All Files + + + + Opened Files + + + + Edited Files + + + + Failed to analyze %n file(s). + + + + + + Analyzing... + + + + Analyzing... %1 of %n file(s) processed. + + + + + + Analysis stopped by user. + + + + Finished processing %n file(s). + + + + + + Diagnostics imported. + + + + %1 diagnostics. %2 fixits, %3 selected. + + + + No diagnostics. + + + + In general, the project should be built before starting the analysis to ensure that the code to analyze is valid.<br/><br/>Building the project might also run code generators that update the source files as necessary. + + + + Info About Build the Project Before Analysis + + + + + ClangTools::Internal::ClangToolRunWorker + + Failed to build the project. + + + + No code model data available for project. + + + + The project configuration changed since the start of the %1. Please re-run with current configuration. + + + + Failed to create temporary directory: %1. + + + + Running %1 on %2 with configuration "%3". + + + + Analyzing + + + + Analyzing "%1" [%2]. + + + + Failed to start runner "%1". + + + + Failed to analyze "%1": %2 + + + + Error: Failed to analyze %n files. + + + + + + Note: You might need to build the project to generate or update source files. To build automatically, enable "Build the project before analysis". + + + + %1 finished: Processed %2 files successfully, %3 failed. + + + + + ClangTools::Internal::ClangToolRunner + + An error occurred with the %1 process. + + + + %1 crashed. + %1 崩溃。 + + + %1 finished with exit code: %2. + + + + Command line: %1 +Process Error: %2 +Output: +%3 + + + + + ClangTools::Internal::ClangToolsOptionsPage + + Clang Tools + + + + + ClangTools::Internal::ClangToolsPlugin + + Clang Tools + + + + Analyze File + + + + + ClangTools::Internal::ClangToolsProjectSettingsWidget + + Restore Global Settings + + + + Go to Analyzer + + + + Remove Selected + + + + Remove All + 全部删除 + + + Suppressed diagnostics + + + + + ClangTools::Internal::ClazyChecks + + See <a href="https://github.com/KDE/clazy">Clazy's homepage</a> for more information. + + + + Filters + 过滤器 + + + Reset Topic Filter + + + + Checks + + + + Enable lower levels automatically + + + + When enabling a level explicitly, also enable lower levels (Clazy semantic). + + + + Could not query the supported checks from the clazy-standalone executable. +Set a valid executable first. + + + + + ClangTools::Internal::ClazyChecksTreeModel + + Manual Level: Very few false positives + + + + Level 0: No false positives + + + + Level 1: Very few false positives + + + + Level 2: More false positives + + + + Level 3: Experimental checks + + + + Level %1 + + + + + ClangTools::Internal::ClazyStandaloneRunner + + Clazy + + + + + ClangTools::Internal::DiagnosticConfigsWidget + + Checks + + + + Clang-Tidy Checks + + + + Clazy Checks + + + + Edit Checks as String... + + + + View Checks as String... + + + + Checks (%n enabled, some are filtered out) + + + + + + Checks (%n enabled) + + + + + + + ClangTools::Internal::DiagnosticMark + + Copy to Clipboard + + + + Disable Diagnostic + + + + + ClangTools::Internal::DiagnosticView + + Filter... + 过滤器... + + + Clear Filter + + + + Filter for This Diagnostic Kind + + + + Filter out This Diagnostic Kind + + + + Web Page + + + + Suppress Selected Diagnostics + + + + Suppress This Diagnostic + + + + Disable These Checks + + + + Disable This Check + + + + + ClangTools::Internal::FilterChecksModel + + Check + + + + + ClangTools::Internal::FilterDialog + + Filter Diagnostics + + + + Select All + 全选 + + + Select All with Fixits + + + + Clear Selection + 清空选择 + + + Select the diagnostics to display. + + + + + ClangTools::Internal::RunSettingsWidget + + Build the project before analysis + + + + Analyze open files + + + + Run Options + + + + Parallel jobs: + + + + + ClangTools::Internal::SelectableFilesDialog + + Files outside of the base directory + + + + Files to Analyze + + + + Analyze + 分析 + + + + ClangTools::Internal::SettingsWidget + + Clang-Tidy Executable + + + + Clazy Executable + + + + Executables + + + + Clang-Tidy: + + + + Clazy-Standalone: + + + + + ClangTools::Internal::SuppressedDiagnosticsModel + + File + 文件 + + + Diagnostic + + + + + ClangTools::Internal::TidyChecks + + Select Checks + + + + Use .clang-tidy config file + + + + Edit Checks as String... + + + + Could not query the supported checks from the clang-tidy executable. +Set a valid executable first. + + + + + ClangTools::Internal::TidyChecksTreeModel + + Options + 选项 + + + + ClangTools::Internal::TidyOptionsDialog + + Options for %1 + + + + Option + + + + Value + + + + Add Option + + + + Remove Option + + + + <new option> + + + + + ClangToolsDiagnosticModel + + No Fixits + + + + Not Scheduled + + + + Invalidated + + + + Scheduled + + + + Failed to Apply + + + + Applied + + + + + ClangUtils + + Could not retrieve build directory. + + + + Could not create "%1": %2 + + + + + ClangdTextMark + + Code Model Error + + + + Code Model Warning + + + + Copy to Clipboard + Clang Code Model Marks + + + + Disable Diagnostic in Current Project + + + + + ClassView::Internal::NavigationWidget + + Show Subprojects + 显示子项目 + + + + ClassView::Internal::NavigationWidgetFactory + + Class View + 类视图 @@ -41003,7 +7828,6 @@ This option is useful when you want to try your application on devices which don Use &Hijacked file - Hijack: Unset read-only flag without check-out. This is used for local changes which the user does not want to commit. 使用&Hijack文件 @@ -41018,10 +7842,6 @@ This option is useful when you want to try your application on devices which don Diff Diff - - &Graphical (Single file only) - &Graphical (仅单个文件) - &External 外部(&E) @@ -41050,10 +7870,6 @@ This option is useful when you want to try your application on devices which don &Automatically check out files on edit 编辑时自动checkout文件(&A) - - Check this if you have a trigger that renames the activity automatically. You will not be prompted for activity name - 如果您需要自动命名activity则检选此项,这样将不会弹出activity名称的提示 - Aut&o assign activity names 自动指定activity的名称(&O) @@ -41068,13 +7884,8 @@ This option is useful when you want to try your application on devices which don &Index only VOBs: - VOB: Versioned Object Base 仅对下列VOB索引(&i): - - VOBs list, separated by comma. Indexer will only traverse the specified VOBs. If left blank, all active VOBs will be indexed - VOB的列表,用逗号分隔。索引器仅遍历指定的VOB。如果为空,则所有活动的VOB都会被索引 - ClearCase ClearCase @@ -41095,2968 +7906,18 @@ This option is useful when you want to try your application on devices which don Confirm Version to Check Out 确定checkout的版本 - - There are multiple versions of '%1' which can be considered for checkout. Please select version to checkout: - 多个版本的'%1'可供检出,请选择一个版本: - - - &Loaded Version - 载入的版本(&L) - Created by: 创建人: Created on: - Date 创建于: Version after &update 更新之后的版本(&U) - - <html><head/><body><p><b>NOTE: You will not be able to check in this file without merging the changes (not supported by the plugin)</b></p></body></html> - <html><head/><body><p><b>注意: 在合并修改之前您将无法checkin此文件(插件不支持)</b></p></body></html> - - - - Core::Internal::CommandMappings - - Command Mappings - 命令映射 - - - Command - 命令 - - - Label - 标签 - - - Target - 目标 - - - Reset all to default - 重置所有为默认 - - - Reset All - 重置所有 - - - Import... - 导入... - - - Export... - 导出... - - - Target Identifier - 目标标识符 - - - Target: - 目标: - - - Reset to default - 重置为默认 - - - Reset - 重置 - - - - Core::Internal::MimeTypeSettingsPage - - Form - 界面 - - - Registered MIME Types - 已注册的MIME 类型 - - - Reset all to default. - 重置所有为默认值。 - - - Reset All - 重置所有 - - - Details - 详情 - - - Patterns: - 模式: - - - Magic Header - Magic Header - - - Type - 类型 - - - Range - 范围 - - - Priority - 优先级 - - - Add... - 添加... - - - Edit... - 编辑... - - - Remove - 删除 - - - - Core::RemoveFileDialog - - Remove File - 删除文件 - - - File to remove: - 要删除的文件: - - - &Delete file permanently - 彻底删除文件(&D) - - - &Remove from Version Control - 从版本控制系统中删除(&R) - - - - Core::Internal::VariableChooser - - Variables - 变量 - - - Select a variable to insert. - 选择一个变量来插入。 - - - - CodePaster - - Form - 界面 - - - The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. - 基于fileshare的剪贴板协议允许在共享的网络驱动器上以文件的方式共享代码片段。文件永远不会被删除。 - - - &Path: - 路径(&P): - - - &Display: - 显示(&D): - - - entries - - - - <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> 允许发送主题到自定义子域名,(比如. creator.pastebin.com),请输入您希望的前缀。 - - - Server prefix: - 服务器前缀: - - - <i>Note: The plugin will use this for posting as well as fetching.</i> - <i>注意: 插件将会使用它来获取和发布。</i> - - - Protocol: - 协议: - - - Paste: - 粘贴: - - - Send to Codepaster - 发送到CodePaster - - - &Username: - 用户名(&U): - - - <Username> - <用户名> - - - &Description: - 说明(&D): - - - <Description> - <说明> - - - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">&lt;Comment&gt;</p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> -<html><head><meta name="qrichtext" content="1" /><style type="text/css"> -p, li { white-space: pre-wrap; } -</style></head><body style=" font-family:'Sans Serif'; font-size:9pt; font-weight:400; font-style:normal;"> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;">&lt;注释&gt;</p></body></html> - - - Parts to Send to Server - 发送到服务器的部分 - - - Patch 1 - Patch 1 - - - Patch 2 - Patch 2 - - - Display Output pane after sending a post - 发送后显示输出对话框 - - - Copy-paste URL to clipboard - 复制/粘帖URL到剪贴板 - - - Username: - 用户名: - - - Default protocol: - 默认协议: - - - - CppTools::Internal::CppFileSettingsPage - - Header suffix: - 头文件后缀名: - - - Source suffix: - 源文件后缀名: - - - Lower case file names - 小写文件名 - - - License template: - 许可协议模板: - - - - Debugger - - Behavior - 行为 - - - Use alternating row colors in debug views - 在调试视图交替行的颜色 - - - Change the font size in the debugger views when the font size in the main editor changes. - 当主编辑器的字体改变时,调试器视图自动调整字体大小。 - - - Debugger font size follows main editor - 调试器字体和主编辑器一致 - - - Use tooltips in main editor while debugging - 当调试时在主编辑器中启用工具提示 - - - Populate the source file view automatically. This might slow down debugger startup considerably. - 自动填充源文件视图,这将在很大程度上延缓调试器的启动。 - - - Populate source file view automatically - 自动填充源文件视图 - - - Close temporary buffers on debugger exit - 在调试器退出时关闭临时缓冲区 - - - Switch to previous mode on debugger exit - 在调试器退出时切换到上一个模式 - - - Bring Qt Creator to foreground when application interrupts - 应用程序中断时将Qt Creator提到前台 - - - Show QML object tree in Locals & Expressions when connected and not stepping. - 在已连接而非单步调试的情况下,在“局部变量和表达式”中显示QML对象树。 - - - Show QML object tree - 显示QML对象树 - - - Enable a full file path in breakpoints by default also for the GDB - 为GDB同样默认开启断点中的完整路径 - - - Breakpoints full path by default - 默认为断点的完整路径 - - - Register Qt Creator for debugging crashed applications. - 注册 Qt Creator 来调试崩溃的应用。 - - - Use Qt Creator for post-mortem debugging - 使用 Qt Creator 进行崩溃后(post-mortem)调试 - - - Maximum stack depth: - 最大堆栈深度: - - - <unlimited> - <无限制> - - - Stop when %1() is called - 当%1()被调用时停止 - - - Always add a breakpoint on the <i>%1()</i> function. - 总是在函数 <i>%1()</i> 处添加断点。 - - - - Debugger - - Enable LLDB - 启用LLDB - - - Use GDB Python dumpers - 使用Gdb python dumper - - - - RemoteLinux - - Has a passwordless (key-based) login already been set up for this device? - 这个设备已经设置了不需要密码(密钥验证)登录吗? - - - Yes, and the private key is located at - 是的,私钥保存在 - - - No - - - - - RemoteLinux - - Choose build configuration: - 选择构建配置: - - - Only create source package, do not upload - 仅创建源码包,不要上传 - - - - RemoteLinux - - Choose Package Contents - 选择软件包内容 - - - <b>Please select the files you want to be included in the source tarball.</b> - - <b>请选择您想包含到源码包当中去的文件。</b> - - - - Progress - 进度 - - - OpenGL Mode - OpenGL 模式 - - - &Hardware acceleration - 硬件加速(&H) - - - &Software rendering - 软件渲染(&S) - - - &Auto-detect - 自动检测(&A) - - - - ProjectExplorer::Internal::CodeStyleSettingsPropertiesPage - - Form - 界面 - - - Language: - 语言: - - - - ProjectExplorer::Internal::DeviceFactorySelectionDialog - - Device Configuration Wizard Selection - 设备设置向导选择 - - - Available device types: - 可用的设备类型: - - - Start Wizard - 开启向导 - - - - ProjectExplorer::Internal::DeviceSettingsWidget - - Linux Device Configurations - Linux 设备设置 - - - &Device: - 设备(&D): - - - General - 概要 - - - &Name: - 名称(&N): - - - Type: - 类型: - - - Auto-detected: - 自动检测: - - - Current state: - 当前状态: - - - Type Specific - 类型特定 - - - &Add... - 添加(&A)... - - - &Remove - 删除(&R) - - - Set As Default - 设置为默认 - - - Yes (id is "%1") - 是的 (id为 "%1") - - - No - - - - Remote Processes - 远程进程 - - - - QmlDesigner::Internal::BehaviorDialog - - Dialog - 对话框 - - - Type: - 类型: - - - ID: - ID: - - - Property name: - 属性名称: - - - Animation - 动画 - - - SpringFollow - 弹性随动 - - - Settings - 设置 - - - Duration: - 持续时间: - - - Curve: - 曲线: - - - easeNone - easeNone - - - Source: - 源: - - - Velocity: - 速率: - - - Spring: - 弹性: - - - Damping: - 阻尼: - - - - texteditv2 - - text edit - 编辑文本 - - - - textinputv2 - - text - 文本 - - - - textv2 - - text - 文本 - - - - Tracing - - Selection - 选择 - - - Start - 启动 - - - - Qnx - - Icon: - 图标: - - - Splash screens - 闪屏 - - - Landscape: - 横屏(landscape): - - - Portrait: - 竖屏(portrait): - - - Images - 图片 - - - Images (*.jpg *.png) - 图片 (*.jpg *.png) - - - <font color="red">Could not open '%1' for reading.</font> - <font color="red">无法打开并读取 '%1'。</font> - - - <font color="red">Incorrect icon size (%1x%2). The maximum size is %3x%4 pixels.</font> - <font color="red">图标大小不正确(%1x%2)。最大尺寸为%3x%4 像素。</font> - - - <font color="red">Incorrect landscape splash screen size (%1x%2). The maximum size is %3x%4 pixels.</font> - <font color="red">横屏下闪屏尺寸不正确(%1x%2)。最大尺寸为%3x%4 像素。</font> - - - <font color="red">Incorrect portrait splash screen size (%1x%2). The maximum size is %3x%4 pixels.</font> - <font color="red">竖屏下闪屏尺寸不正确(%1x%2)。最大尺寸为%3x%4 像素。</font> - - - - Qnx - - Packages to deploy: - 要部署的包: - - - - Qnx - - &Device name: - 设备名(&D): - - - IP or host name of the device - 设备的IP或者主机名称 - - - Device &password: - 设备的密码(&P): - - - Show password - 显示密码 - - - Debug token: - 调试标记(token): - - - Private key file: - 私钥文件: - - - - Qnx - - WizardPage - 向导页面 - - - The name to identify this configuration: - 标识配置的名称: - - - The device's host name or IP address: - 设备的域名或者IP地址: - - - Device password: - 设备的密码: - - - Device type: - 设备类型: - - - Physical device - 物理设备 - - - Simulator - 模拟器 - - - Connection Details - 连接详情 - - - Public key file: - 公钥文件: - - - Generate - 创建 - - - SSH Key Setup - SSH密钥设置 - - - Please select an existing <b>4096</b>-bit key or click <b>Generate</b> to create a new one. - 请选择一个已经存在的 <b>4096</b>位密钥,或者点击<b>“创建”</b>来创建一个新的密钥。 - - - Key Generation Failed - 密钥创建失败 - - - - Qnx - - Device: - 设备: - - - Package: - 包: - - - - Qnx - - SDK: - SDK: - - - - QmakeProjectManager - - Make arguments: - Make 参数: - - - qmake build configuration: - qmake 构建配置: - - - Additional arguments: - 额外的参数: - - - Link QML debugging library: - 链接QML 调试库: - - - Effective qmake call: - 有效的qmake调用: - - - Main HTML File - 主HTML 文件 - - - Generate an index.html file - 创建一个index.html 文件 - - - Import an existing .html file - 导入一个现有的.html 文件 - - - Load a URL - 载入一个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. - 注意:除非您选择载入一个URL,所有在与主HTML文件在同一目录下的文件和目录都将被部署。您可以在部署之前的任何时间修改目录的内容。 - - - Touch optimized navigation - 触摸优化的导航 - - - Enable touch optimized navigation - 开启触摸优化的导航 - - - 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. - “触摸优化的导航”使 HTML 页面可以用手指拂动(flickable),或放大触摸敏感的元素的区域。如果您使用一个优化触摸互动的JavaScript 框架,那么不要检选此项。 - - - Application icon (80x80): - 应用程序图标 (80x80): - - - Generate code to speed up the launching on the device. - 生成代码来加速设备上的启动速度。 - - - Make application boostable - 使应用程序加速启动 - - - Plugin's directory name: - 插件的目录名: - - - - QtSupport - - Debugging Helper Build Log - 调试助手构建日志 - - - - RemoteLinux - - Authentication type: - 验证类型: - - - &Key - 密钥(&K) - - - &Host name: - 主机名称(&H): - - - IP or host name of the device - 设备的IP或者主机名称 - - - &SSH port: - SSH端口(&S): - - - Free ports: - 空闲端口: - - - You can enter lists and ranges like this: 1024,1026-1028,1030 - 您可以输入列表或者范围,输入形式如:1024,1026-1028,1030 - - - Timeout: - 超时时间: - - - s - - - - &Username: - 用户名(&U): - - - &Password: - 密码(&P): - - - Show password - 显示密码 - - - Private key file: - 私钥文件: - - - Create New... - 创建新密钥... - - - Machine type: - 机器类型: - - - Physical Device - 物理设备 - - - Emulator - 模拟器 - - - You will need at least one port. - 您需要至少一个端口。 - - - - RemoteLinux - - WizardPage - 向导页面 - - - The name to identify this configuration: - 标识配置的名称: - - - The device's host name or IP address: - 设备的域名或者IP地址: - - - The user name to log into the device: - 登录设备的用户名: - - - The authentication type: - 验证类型: - - - Key - 密钥 - - - The user's password: - 用户密码: - - - The file containing the user's private key: - 包含用户私钥的文件: - - - - RemoteLinux - - Device Test - 设备测试 - - - - RemoteLinuxCheckForFreeDiskSpaceStepWidget - - Form - 界面 - - - Remote path to check for free space: - 检测剩余空间的远程路径: - - - Required disk space: - 需要的磁盘空间: - - - - RemoteLinux - - Form - 界面 - - - Files to deploy: - 部署文件: - - - These show the INSTALLS settings from the project file(s). - 显示来自于项目文件的安装(INSTALLS)设置。 - - - Files to install for subproject: - 为子项目需要安装的文件: - - - - TextEditor::Internal::BehaviorSettingsPage - - Form - 界面 - - - - TextEditor::BehaviorSettingsWidget - - Typing - 打字 - - - Enable automatic &indentation - 开启自动缩进(&) - - - Backspace indentation: - 退格缩进: - - - <html><head/><body> -Specifies how backspace interacts with indentation. - -<ul> -<li>None: No interaction at all. Regular plain backspace behavior. -</li> - -<li>Follows Previous Indents: In leading white space it will take the cursor back to the nearest indentation level used in previous lines. -</li> - -<li>Unindents: If the character behind the cursor is a space it behaves as a backtab. -</li> -</ul></body></html> - - <html><head/><body> -指定退格键如何与缩进互动。 - -<ul> -<li>无: 没有任何互动,正常的退格键行为。 -</li> - -<li>跟随上次的缩进: 在行首的空白处,依据之前行的缩进将光标移回最近一个缩进层次。 -</li> - -<li>反缩进: 如果光标之后的字符是空格,则表现为 backtab。 -</li> -</ul></body></html> - - - - None - - - - Follows Previous Indents - 跟随之前的缩进 - - - Unindents - 反缩进 - - - Tab key performs auto-indent: - 制表符(Tab键)提供自动缩进: - - - Never - 从不 - - - Always - 总是 - - - In Leading White Space - 用于行首空白 - - - Cleanup actions which are automatically performed right before the file is saved to disk. - 文件保存到磁盘上之后会自动执行的清理动作。 - - - Cleanups Upon Saving - 保存时清理 - - - Removes trailing whitespace upon saving. - 保存时去除尾部空白。 - - - &Clean whitespace - 清除空白(&C) - - - Clean whitespace in entire document instead of only for changed parts. - 清除整个文档的空白,而不只是清除改变部分的空白。 - - - In entire &document - 用于整个文档(&D) - - - Correct leading whitespace according to tab settings. - 根据tab设置修正行首的空白。 - - - Clean indentation - 清除缩进 - - - Always write a newline character at the end of the file. - 总是在文件结尾留一行空白行。 - - - &Ensure newline at end of file - 确保文件结尾有新的一行(&E) - - - File Encodings - 文件编码 - - - Default encoding: - 默认编码: - - - <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>文本编辑器如何处理 UTF-8的字节顺序标记(Byte Order Marks)。选项是:</p> -<ul ><li><i>如果编码是 UTF-8:</i> 当保存为UTF-8 编码时总是添加BOM。如果编码是<i>System</i>这将不会工作,因为 Qt Creator 不知道它的确切编码是什么。</li> -<li><i>如果已经存在则保持: </i>如果文件载入时已经有BOM,则保存文件时仍带BOM。</li> -<li><i>总是删除:</i> 从来不写UTF-8 BOM, 还有可能删除已经存在的。</li></ul> -<p>注意UTF-8 BOM并不常用,某些编辑器可能会处理错误,所以通常情况下添加的意义不大。</p> -<p>此项设置 <b>不</b> 影响UTF-16 和UTF-32 BOM的使用。</p></body></html> - - - Add If Encoding Is UTF-8 - 如果编码是UTF-8则添加 - - - Keep If Already Present - 目前存在了则保留 - - - Always Delete - 总是删除 - - - UTF-8 BOM: - UTF-8 BOM: - - - Mouse and Keyboard - 鼠标和键盘 - - - Enable &mouse navigation - 开启鼠标导航(&M) - - - Enable scroll &wheel zooming - 开启鼠标滚轮缩放(&W) - - - Enable built-in camel case &navigation - 开启内建的驼峰大小写导航(&N) - - - Show help tooltips: - 显示帮助工具提示: - - - On Mouseover - 在鼠标悬停时 - - - On Shift+Mouseover - 在Shift+鼠标悬停时 - - - Press Alt to display context-sensitive help or type information as tooltips. - 在按下Alt键时以工具提示的方式显示上下文相关的帮助或者类型信息。 - - - Using keyboard shortcut (Alt) - 使用键盘快捷键(Alt) - - - - TextEditor::Internal::CodeStyleSelectorWidget - - Form - 界面 - - - Current settings: - 当前设置: - - - Copy... - 复制... - - - Edit... - 编辑... - - - Remove - 删除 - - - Export... - 导出... - - - Import... - 导入... - - - - TextEditor::DisplaySettingsPage - - Text Wrapping - 文字折行 - - - Enable text &wrapping - 开启文字折行(&W) - - - Display right &margin at column: - 显示右边空白(&margin)在列: - - - Display - 显示 - - - Display line &numbers - 显示行号(&N) - - - Highlight current &line - 高亮显示当前行(&L) - - - Display &folding markers - 显示折叠标记(&F) - - - Highlight &blocks - 高亮显示段落(&B) - - - Mark &text changes - 标记文本改变(&T) - - - Show tabs and spaces. - 显示制表符和空白。 - - - &Visualize whitespace - 标示空白(&V) - - - &Animate matching parentheses - 动画显示对应的括号(&A) - - - Center &cursor on scroll - 滚动时居中光标(&C) - - - Auto-fold first &comment - 自动折叠开头的注释(&C) - - - - TextEditor::Internal::HighlighterSettingsPage - - Form - 界面 - - - <html><head/><body> -<p>Highlight definitions are provided by the <a href="http://kate-editor.org/">Kate Text Editor</a>.</p></body></html> - <html><head/><body> -<p><a href="http://kate-editor.org/">Kate文本编辑器</a>提供的高亮定义。</p></body></html> - - - Syntax Highlight Definition Files - 语法高亮定义文件 - - - Location: - 路径: - - - Use fallback location - 使用备用路径 - - - Behavior - 行为 - - - Alert when a highlight definition is not found - 当未找到高亮定义时显示提示 - - - Ignored file patterns: - 被忽略的文件模式: - - - - TextEditor::Internal::SnippetsSettingsPage - - Form - 界面 - - - Group: - 组: - - - Add - 添加 - - - Remove - 删除 - - - Revert Built-in - 还原到内置(Built-in) - - - Restore Removed Built-ins - 恢复被删除的内置 - - - Reset All - 重置所有 - - - - TextEditor::TabSettingsWidget - - Form - 界面 - - - Tabs And Indentation - 制表符和缩进 - - - Tab policy: - 制表符策略: - - - Spaces Only - 仅空格 - - - Tabs Only - 仅制表符 - - - Mixed - 混合 - - - Ta&b size: - 制表符尺寸(&B): - - - &Indent size: - 缩进尺寸(&i): - - - Align continuation lines: - 对齐连续的行: - - - <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> -改变连续行的缩进 - -<ul> -<li>不对齐: 不进行对齐。代码行只根据当前逻辑缩进深度进行缩进。 -<pre> -(tab)int i = foo(a, b -(tab)c, d); -</pre> -</li> - -<li>用空格对齐: 总是用空格进行对齐,忽略其他缩进设置。 -<pre> -(tab)int i = foo(a, b -(tab) c, d); -</pre> -</li> - -<li>用一般的缩进对齐: 根据上面的设置使用制表符或空格进行对齐。 -<pre> -(tab)int i = foo(a, b -(tab)(tab)(tab) c, d); -</pre> -</li> -</ul></body></html> - - - Not At All - 不对齐 - - - With Spaces - 用空格对齐 - - - With Regular Indent - 用一般的缩进对齐 - - - - Todo - - Keyword - 关键字 - - - Icon - 图标 - - - Color - 颜色 - - - errorLabel - dont need to translate - errorLabel - - - Keyword cannot be empty, contain spaces, colons, slashes or asterisks. - 关键字不能为空,包含空格、冒号、斜杠或者星号。 - - - There is already a keyword with this name. - 已经有一个同名关键字。 - - - - Todo - - Form - 界面 - - - Keywords - 关键字 - - - Add - 添加 - - - Edit - 编辑 - - - Remove - 删除 - - - Reset - 重置 - - - Scanning scope - 扫描范围 - - - Scan in the whole project - 在整个项目中扫描 - - - Scan in the current opened file - 在当前打开的文件中扫描 - - - - VcsBase::Internal::BaseCheckoutWizardPage - - WizardPage - 向导页面 - - - Repository - 代码仓库 - - - The remote repository to check out. - 要检出的远程仓库。 - - - Branch: - 分支: - - - The development branch in the remote repository to check out. - 要检出的远程仓库中的开发分支。 - - - Retrieve list of branches in repository. - 获取仓库中的分支列表。 - - - ... - ... - - - Working Copy - 工作拷贝 - - - The path in which the directory containing the checkout will be created. - 将要创建的包含检出代码的目录的路径。 - - - Checkout path: - 检出路径: - - - The local directory that will contain the code after the checkout. - 检出之后将会包含代码的本地目录。 - - - Checkout directory: - 检出目录: - - - - VcsBase::Internal::CleanDialog - - Clean Repository - 清空代码仓库 - - - - VcsBase::Internal::CommonSettingsPage - - Wrap submit message at: - 提交信息折行在: - - - characters - 字符 - - - An executable which is called with the submit message in a temporary file as first argument. It should return with an exit != 0 and a message on standard error to indicate failure. - 一个可执行档,以保存在临时文件中的提交信息为首参数进行调用。当提交失败时应以非零值退出并在标准错误中输出信息。 - - - Submit message &check script: - 提交信息检查脚本(&C): - - - A file listing user names and email addresses in a 4-column mailmap format: -name <email> alias <email> - 一个列出用户名和电子邮件地址的文件,使用四列的邮件映射格式: -名字 <电子邮件> 别名 <电子邮件> - - - User/&alias configuration file: - 用户/别名配置文件(&A): - - - A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. - 一个包含了如 ”Reviewed-By:" 等字段名的简单文件,其内容会被添加在提交编辑器的下面。 - - - User &fields configuration file: - 用户字段配置文件(&F): - - - &Patch command: - 补丁命令(&P): - - - 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). - 指定一条执行图形化提示密码的命令, -会在代码仓库要求 SSH 身份验证的时候用到。(查看 SSH 和环境变量 SSH_ASKPASS 的相关文档)。 - - - &SSH prompt command: - SSH 提示命令(&S): - - - - develop - - Develop - 开发 - - - Recent Projects - 最近使用的项目 - - - Open Project - 打开项目 - - - - examples - - Examples - 示例 - - - - gettingstarted - - Getting Started - 入门 - - - User Interface - 用户界面 - - - - tutorials - - Tutorials - 教程 - - - - Delegate - - Tags: - 标签: - - - - SessionItem - - Clone - 克隆 - - - Rename - 重命名 - - - Delete - 删除 - - - - Sessions - - %1 (last session) - %1 (最后的会话) - - - %1 (current session) - %1 (当前会话) - - - - QmlDebug::QmlOutputParser - - The port seems to be in use. - Error message shown after 'Could not connect ... debugger:" - 端口可能被占用。 - - - The application is not set up for QML/JS debugging. - Error message shown after 'Could not connect ... debugger:" - 应用没有被设置为支持QML/JS 调试。 - - - - StaticAnalysisMessages - - do not use '%1' as a constructor - 不要把'%1'当作构造函数使用 - - - invalid value for enum - 无效的枚举值 - - - enum value must be a string or a number - 枚举值必须是一个字符串或者是一个数字 - - - number value expected - 期望数值类型的数据 - - - boolean value expected - 期望布尔类型的数据 - - - string value expected - 期望字符串类型的数据 - - - invalid URL - 无效URL - - - file or directory does not exist - 文件或目录不存在 - - - invalid color - 无效颜色 - - - anchor line expected - 期望锚点(anchor)行 - - - duplicate property binding - 重复的属性绑定 - - - id expected - 期望id - - - invalid id - 无效标识符 - - - duplicate id - 重复的标识符 - - - invalid property name '%1' - 无效的属性名 '%1' - - - '%1' does not have members - '%1' 没有成员 - - - '%1' is not a member of '%2' - '%1' 不是'%2'的成员 - - - assignment in condition - 在条件语句中赋值 - - - unterminated non-empty case block - 未结束的非空case代码块 - - - do not use 'eval' - 不要使用'eval' - - - unreachable - 无法到达 - - - do not use 'with' - 不要使用'with' - - - do not use comma expressions - 不要使用逗号表达式 - - - '%1' is already a formal parameter - '%1'已经是一个正式的参数 - - - unnecessary message suppression - 不必要的消息suppression - - - '%1' is already a function - '%1'已经是一个函数 - - - var '%1' is used before its declaration - 变量'%1'在声明之前使用 - - - '%1' is already a var - '%1'已经是一个变量 - - - '%1' is declared more than once - '%1'声明了不止一次 - - - function '%1' is used before its declaration - 函数'%1'在声明之前使用 - - - the 'function' keyword and the opening parenthesis should be separated by a single space - 'function'关键字和括号之间应该用一个空格分隔 - - - do not use stand-alone blocks - 不要使用独立的块 - - - do not use void expressions - 不要使用空(void)表达式 - - - confusing pluses - 混乱的加号 - - - confusing minuses - 混乱的减号 - - - declare all function vars on a single line - 在一行上声明所有的函数和变量 - - - unnecessary parentheses - 不必要的括号 - - - == and != may perform type coercion, use === or !== to avoid - == 和 != 可能引起强制类型转换,使用 === 或者 !== 避免此问题 - - - expression statements should be assignments, calls or delete expressions only - 表达式语句只能为赋值、调用或者删除表达式 - - - var declarations should be at the start of a function - 变量的声明应该位于函数开头 - - - only use one statement per line - 请在一行仅用一个语句 - - - unknown component - 未知组件 - - - could not resolve the prototype '%1' of '%2' - 无法分析原型%2 的%1 - - - could not resolve the prototype '%1' - 无法分析原型%1 - - - prototype cycle, the last non-repeated component is '%1' - 原型周期,最后一个不重复的组件是 '%1' - - - invalid property type '%1' - 无效的属性类型 '%1' - - - == and != perform type coercion, use === or !== to avoid - == 和 != 执行强制类型转换,使用 === 或者 !== 避免此问题 - - - calls of functions that start with an uppercase letter should use 'new' - 大写字母开头的函数的调用应当使用'new' - - - 'new' should only be used with functions that start with an uppercase letter - 'new' 只能用于大写字母开头的函数 - - - use spaces around binary operators - 请在二进制操作符周围使用空格 - - - unintentional empty block, use ({}) for empty object literal - 无意的空块,对空的对象代码请使用 ({}) - - - use %1 instead of 'var' or 'variant' to improve performance - 使用 %1代替 'var'或'variant'以提高性能 - - - missing property '%1' - 缺失属性 '%1' - - - object value expected - 期望对象的值 - - - array value expected - 期望数组的值 - - - %1 value expected - 期望%1的值 - - - maximum number value is %1 - 最大的数值是%1 - - - minimum number value is %1 - 最小的数值是%1 - - - maximum number value is exclusive - 最大的数值是排他的(exclusive) - - - minimum number value is exclusive - 最小的数值是排他的(exclusive) - - - string value does not match required pattern - 字符串不匹配需要的模式 - - - minimum string value length is %1 - 字符串的最短长度是 %1 - - - maximum string value length is %1 - 字符串的最大长度是 %1 - - - %1 elements expected in array value - 期望在数组值中出现%1个元素 - - - - QSsh::Internal::SftpChannelPrivate - - Server could not start SFTP subsystem. - 服务器无法启动 sftp 子系统。 - - - Unexpected packet of type %1. - 未预料的包,类型 %1。 - - - Protocol version mismatch: Expected %1, got %2 - 协议版本不匹配:期望 %1,得到 %2 - - - Unknown error. - 未知错误。 - - - Created remote directory '%1'. - 创建远程目录 '%1'。 - - - Remote directory '%1' already exists. - 远程目录 '%1'已存在。 - - - Error creating directory '%1': %2 - 创建目录 '%1'时发生错误:'%2' - - - Could not open local file '%1': %2 - 无法打开本地文件 '%1':%2 - - - Remote directory could not be opened for reading. - 无法打开用于读取的远程目录。 - - - Failed to list remote directory contents. - 列出远程目录的内容失败。 - - - Failed to close remote directory. - 关闭远程目录失败。 - - - Failed to open remote file for reading. - 打开用于读取的远程文件失败。 - - - Failed to retrieve information on the remote file ('stat' failed). - 获取远程文件的信息失败('stat' 失败)。 - - - Failed to read remote file. - 读取远程文件失败。 - - - Failed to close remote file. - 关闭远程文件失败。 - - - Failed to open remote file for writing. - 打开用于写入的远程文件失败。 - - - Failed to write remote file. - 写入远程文件失败。 - - - Cannot append to remote file: Server does not support the file size attribute. - 无法附加到远程文件:服务器不支持文件大小属性。 - - - SFTP channel closed unexpectedly. - SFTP通道意外关闭。 - - - Server could not start session: %1 - 服务器无法启动会话: %1 - - - Error reading local file: %1 - 读取本地文件时发生错误:%1 - - - - QSsh::SftpFileSystemModel - - File Type - 文件类型 - - - File Name - 文件名 - - - Error getting 'stat' info about '%1': %2 - 获取'%1'的'stat'信息时发生错误: %2 - - - Error listing contents of directory '%1': %2 - 列出目录'%1'的内容时发生错误: %2 - - - - QSsh::Internal::SshChannelManager - - Invalid channel id %1 - 无效的通道 ID %1 - - - - QSsh::Internal::SshConnectionPrivate - - SSH Protocol error: %1 - SSH协议错误:%1 - - - Botan library exception: %1 - Botan库异常:%1 - - - Server identification string is %n characters long, but the maximum allowed length is 255. - - 服务器的标识字符串的长度为 %n个字符,但最大允许长度是255。 - - - - Server identification string contains illegal NUL character. - 服务器的标识字符串包含非法的空(NUL)字符。 - - - Server Identification string '%1' is invalid. - 服务器的标识字符串 '%1'无效。 - - - Server protocol version is '%1', but needs to be 2.0 or 1.99. - 服务器的协议版本为 '%1',但需要的版本是2.0或者1.99。 - - - Server identification string is invalid (missing carriage return). - 服务器的标识字符串无效(缺少回车)。 - - - Server reports protocol version 1.99, but sends data before the identification string, which is not allowed. - 服务器报告的协议版本为1.99,但在发出标识字符串之前发出了数据,这是不允许的。 - - - Unexpected packet of type %1. - 未预料的包,类型 %1。 - - - Password expired. - 密码过期。 - - - Server rejected password. - 密码被服务器拒绝。 - - - Server rejected key. - 密钥被服务器拒绝。 - - - The server sent an unexpected SSH packet of type SSH_MSG_UNIMPLEMENTED. - 服务器发出了一个未预料的类型为SSH_MSG_UNIMPLEMENTED的SSH包。 - - - Server closed connection: %1 - 连接已被服务器关闭:%1 - - - Connection closed unexpectedly. - 连接意外关闭。 - - - Timeout waiting for reply from server. - 等待Server响应超时。 - - - No private key file given. - 未给出私钥文件。 - - - Private key file error: %1 - 私钥文件错误: %1 - - - - QSsh::Ssh - - Password Required - 需要密码 - - - Please enter the password for your private key. - 请输入您的私钥密码。 - - - - QSsh::Internal::SshRemoteProcessPrivate - - Process killed by signal - 进程收到信号退出 - - - Server sent invalid signal '%1' - 服务器发出了无效的信号 '%1' - - - - Utils::BaseTreeView - - Adjust Column Widths to Contents - 按内容调整列宽 - - - - Utils::ElfReader - - '%1' is an invalid ELF object (%2) - '%1' 不是一个有效的ELF对象(%2) - - - '%1' is not an ELF object (file too small) - '%1' 不是一个有效的ELF对象(文件太小) - - - '%1' is not an ELF object - '%1' 不是一个ELF对象 - - - odd cpu architecture - 异常的cpu体系架构 - - - odd endianess - 异常的字节顺序 - - - unexpected e_shsize - 未预料到的e_shsize - - - unexpected e_shentsize - 未预料到的 e_shentsize - - - announced %n sections, each %1 bytes, exceed file size - - 公布了 %n个部分,每部分%1个字节,超出了文件的大小 - - - - string table seems to be at 0x%1 - 字符串表可能在0x%1 - - - section name %1 of %2 behind end of file - %2的段名 %1在文件末尾之后 - - - - Utils::SettingsSelector - - Add - 添加 - - - Remove - 删除 - - - Rename - 重命名 - - - Do you really want to delete the configuration <b>%1</b>? - 确定要删除此配置<b>%1</b>吗? - - - New name for configuration <b>%1</b>: - 配置的新名称 <b>%1</b>: - - - Rename... - 重命名... - - - - ZeroConf::Internal::ZConfLib - - AvahiZConfLib could not load the native library '%1': %2 - AvahiZConfLib无法载入本地库 '%1': %2 - - - %1 cannot create a client. The daemon is probably not running. - %1无法创建一个客户端。后台服务器可能没有运行。 - - - cAvahiClient, server collision. - cAvahiClient,服务器冲突。 - - - cAvahiClient, an error occurred on the client side. - cAvahiClient,客户端发生错误。 - - - cAvahiClient, still connecting, no server available. - cAvahiClient,仍在连接,没有可用的服务器。 - - - Unexpected state %1 in cAvahiClientReply. - cAvahiClientReply中出现了未预料到的状态 %1。 - - - Unexpected state %1 in cAvahiBrowseReply. - cAvahiBrowseReply中出现了未预料到的状态 %1。 - - - %1 failed to kill other daemons with '%2'. - %1 用 '%2' 杀死其他的服务器进程失败。 - - - %1 detected a file at /tmp/mdnsd, daemon startup will probably fail. - %1检测到在/tmp/mdnsd有一个文件,服务器进程启动可能会失败。 - - - %1: log of previous daemon run is: '%2'. - - %1: 上一次服务器进程运行的日志为: '%2'。 - - - - %1 failed starting embedded daemon at %2. - %1 在 %2启动内嵌的服务器进程失败。 - - - - ZeroConf - - could not load native library - 无法载入本地库 - - - skipping over avahi compatibility lib (or obsolete mdnsd) - 跳过avahi兼容性库(或过时的mdnsd) - - - *WARNING* detected an obsolete version of Apple Bonjour, either disable/uninstall it or upgrade it, otherwise zeroconf will fail - *警告* 检测到过时版本的Apple Bonjour,要么禁用/卸载它,或者将其升级,否则zeroconf将失败 - - - Zeroconf could not load a valid library, failing. - Zeroconf 无法载入有效的库,运行失败。 - - - Zeroconf giving up on non working %1 (%2). - %1不工作,Zeroconf放弃执行,(%2)。 - - - Zeroconf has no valid library, aborting connection. - Zeroconf 没有有效的库,退出连接。 - - - Zeroconf giving up on %1, switching to %2. - Zeroconf放弃载入 %1,转为 %2。 - - - Zeroconf giving up on %1, no fallback provided, aborting connection. - Zeroconf放弃载入 %1,没有提供备用库,退出连接。 - - - Trying %1... - 正在尝试 %1... - - - Zeroconf using %1 failed the initialization of the main library connection with error %2. - 使用 %1的zeroconf初始化主库连接失败,错误为 %2。 - - - Zeroconf using %1 failed because no daemon is running. - 使用 %1的zeroconf失败,因为服务器进程没在运行。 - - - Starting the Zeroconf daemon using %1 seems successful, continuing. - 用 %1启动 zeroconf服务器进程似乎成功了,继续进行。 - - - Zeroconf using %1 failed getProperty call with error %2. - 使用%1的zeroconf的getProperty调用失败,错误为 %2。 - - - Succeeded using %1. - 使用 %1成功。 - - - MainConnection could successfully create a connection using %1. - MainConnection可以使用%1成功创建一个连接。 - - - Zeroconf, unexpected start status, aborting. - zeroconf遇到了未预料到的启动状态,退出。 - - - Zeroconf detected an unexpected return status of handleEvent. - zeroconf检测到一个未预料到的handleEvent返回状态。 - - - Zeroconf for [%1] accumulated %n consecutive errors, aborting. - - [%1]的zeroconf积累了 %n个连续的错误,退出。 - - - - - ZeroConf::ServiceBrowser - - Starting Zeroconf Browsing - 启动zeroconf浏览 - - - - Analyzer::Internal::AnalyzerToolDetailWidget - - <strong>%1</strong> settings - <strong>%1</strong> 设置 - - - - Analyzer::AnalyzerRunConfigurationAspect - - Analyzer Settings - 分析器设置 - - - - Android - - Error Creating AVD - 创建AVD错误 - - - Cannot create a new AVD. No sufficiently recent Android SDK available. -Please install an SDK of at least API version %1. - 无法创建一个新的AVD。没有足够新的Android SDK。 -请安装API版本至少为 %1的 SDK。 - - - <span style=" color:#ff0000;">Passwords don't match</span> - <span style=" color:#ff0000;">密码不匹配</span> - - - <span style=" color:#00ff00;">Password is ok</span> - <span style=" color:#00ff00;">密码可用</span> - - - Keystore file name - 密钥存储库文件名 - - - Keystore files (*.keystore *.jks) - 密钥存储库文件 (*.keystore *.jks) - - - Error - 错误 - - - Deploy on Android - 部署到Android设备 - - - Deploy to Android device - AndroidDeployStep default display name - 部署到Android设备 - - - Please wait, searching for a suitable device for target:%1. - 请稍后,正在为目标搜索合适的设备: %1。 - - - Cannot deploy: no devices or emulators found for your package. - 无法部署: 没有为您的包找到设备或者模拟器。 - - - Package deploy: Running command '%1 %2'. - 包部署: 运行命令 '%1 %2'。 - - - Reason: %1 - 原因: %1 - - - Exit code: %1 - 退出代码: %1 - - - Clean old Qt libraries - 清除旧的Qt库 - - - Deploy Qt libraries. This may take some time, please wait. - 部署Qt库,这可能需要一段时间,请稍后。 - - - Qt Android smart installer installation failed - Qt Android智能安装工具安装失败 - - - Installing package onto %1. - 安装包到 %1。 - - - Package installation failed. - 包安装失败。 - - - Pulling files necessary for debugging. - 正在读取调试需要的文件。 - - - Deploy to Android device or emulator - 部署到Android设备或模拟器 - - - <b>Deploy configurations</b> - <b>Deploy 配置</b> - - - Qt Android Smart Installer - Qt Android智能安装工具 - - - Android package (*.apk) - Android包 (*.apk) - - - Run on Android - 在Android上运行 - - - Android Device - Android设备 - - - Error creating Android directory '%1'. - 创建Android目录 '%1'失败。 - - - No Qt for Android SDKs were found. -Please install at least one SDK. - 没有找到Qt Android平台的SDK。 -请至少安装一个SDK。 - - - Warning - 警告 - - - Android files have been updated automatically - Android文件已经自动更新 - - - Error creating Android templates - 无法创建Android模板 - - - Can't parse '%1' - 无法解析 '%1' - - - Can't open '%1' - 无法打开 '%1' - - - Create Android (.apk) Package - 创建Android (.apk)包 - - - Packaging for Android - 正在为Android打包 - - - Cannot create Android package: current build configuration is not Qt 4. - 无法创建Android包: 当前的构建配置不是Qt 4。 - - - Cannot find ELF information - 找不到ELF信息 - - - Cannot find '%1'. -Please make sure your application is built successfully and is selected in Application tab ('Run option'). - 找不到 '%1'。 -请确保您的程序构建成功,并且在“应用程序”标签("运行选项")中选中。 - - - Failed to run keytool - 运行keytool失败 - - - Invalid password - 非法的密码 - - - Copy Qt app & libs to Android package ... - 将Qt应用和库拷贝到Android包中... - - - Can't copy gdbserver from '%1' to '%2' - 无法将gdbserver从 '%1'复制到 '%2' - - - Creating package file ... - 创建包文件... - - - Signing package ... - 正在为包签名... - - - Failed, try again - 失败,再次尝试 - - - Release signed package created to %1 - 发布创建在 %1的已签名的包 - - - Package created. - 包创建完成。 - - - Packaging failed. - 打包失败。 - - - Packaging error: Could not start command '%1 %2'. Reason: %3 - 打包错误:无法执行命令'%1 %2'。原因: %3 - - - Packaging Error: Command '%1 %2' failed. - 打包错误:命令'%1 %2'失败。 - - - Keystore password: - 密钥存储库的密码: - - - Certificate password (%1): - 证书的密码(%1): - - - Invalid Package Name - 非法的包名 - - - The package name '%1' is not valid. -Please choose a valid package name for your application (e.g. "org.example.myapplication"). - 包名 '%1'不合法。 -请为您的程序选择一个合法的包名 (如 "org.example.myapplication")。 - - - Choose High DPI Icon - 选择高解析度的图标 - - - PNG images (*.png) - PNG 图像 (*.png) - - - Choose Medium DPI Icon - 选择中等解析度的图标 - - - Choose Low DPI Icon - 选择低解析度的图标 - - - < Type or choose a permission > - <键入或者选择一个权限> - - - <b>Package configurations</b> - <b>包配置</b> - - - Select keystore file - 选择密钥存储库文件 - - - Deploy to device - 部署到设备 - - - Copy application data - 复制应用程序的数据 - - - Failed to detect the ABIs used by the Qt version. - 检测Qt版本使用的ABI失败。 - - - Android - Qt Version is meant for Android - Android - - - Run on Android device - 在Android设备上运行 - - - Starting remote process. - 启动远端进程。 - - - Run on Android device or emulator. - 在Android设备或模拟器上运行。 - - - - -'%1' died. - - -'%1' 已死。 - - - Failed to forward C++ debugging ports. Reason: %1. - 转发C++调试端口失败。原因是: %1。 - - - Failed to forward C++ debugging ports. - 转发C++调试端口失败。 - - - Failed to forward QML debugging ports. Reason: %1. - 转发QML调试端口失败。原因是: %1。 - - - Failed to forward QML debugging ports. - 转发QML调试端口失败。 - - - Failed to start the activity. Reason: %1. - 无法开始活动。原因是: %1。 - - - Unable to start '%1'. - 无法启动 '%1'。 - - - Cannot find %1 process. - 找不到 %1进程。 - - - - -'%1' killed. - - -'%1' 被杀死。 - - - Android Configurations - Android配置 - - - AVD Name - AVD - Android Virtual Device - AVD(Android虚拟设备)名称 - - - AVD Target - AVD目标 - - - CPU/ABI - CPU/ABI - - - Android SDK Folder - Android SDK的目录 - - - "%1" does not seem to be an Android SDK top folder. - "%1"看上去不是一个Android SDK的顶层目录。 - - - "%1" does not seem to be an Android NDK top folder. - "%1"看上去不是一个Android NDK的顶层目录。 - - - Select Android SDK folder - 选择Android SDK的目录 - - - Select Android NDK folder - 选择Android NDK的目录 - - - Select ant Script - 选择ant脚本 - - - Select GDB Executable - 选择GDB执行档 - - - Select GDB Server Android Executable - 选择GDB Server的Android执行档 - - - Select OpenJDK Path - 选择OpenJDK的路径 - - - Android GCC - Android GCC - - - Android GCC for %1 - %1的Android GCC - - - Android GCC (%1-%2) - Android GCC (%1-%2) - - - NDK Root: - NDK根目录: - - - Autogen - Display name for AutotoolsProjectManager::AutogenStep id. - Autogen - - - Autogen - Autogen - - - Configuration unchanged, skipping autogen step. - 配置未改变,跳过autogen步骤。 - - - Arguments: - 参数: - - - Autogen - AutotoolsProjectManager::AutogenStepConfigWidget display name. - Autogen - - - Autoreconf - Display name for AutotoolsProjectManager::AutoreconfStep id. - Autoreconf - - - Autoreconf - Autoreconf - - - Configuration unchanged, skipping autoreconf step. - 配置未改变,跳过autoreconf步骤。 - - - Autoreconf - AutotoolsProjectManager::AutoreconfStepConfigWidget display name. - Autoreconf - - - Build - 构建 - - - New Configuration - 新配置 - - - New configuration name: - 新配置名称: - - - Build directory: - 构建目录: - - - Failed opening project '%1': Project file does not exist - 打开项目 '%1'失败: 项目文件不存在 - - - Failed opening project '%1': Project already open - 打开项目 '%1'失败:项目已经被打开 - - - Autotools Wizard - Autotool向导 - - - Please enter the directory in which you want to build your project. Qt Creator recommends to not use the source directory for building. This ensures that the source directory remains clean and enables multiple builds with different settings. - 请进入您想构建项目的目录。Qt Creator 建议不要使用源目录构建。这能确保源目录干净,并且可以针对不同设定多次构建。 - - - Build Location - 构建路径 - - - Configure - Display name for AutotoolsProjectManager::ConfigureStep id. - 配置 - - - Configure - 配置 - - - Configuration unchanged, skipping configure step. - 配置未改变,跳过configure步骤。 - - - Configure - AutotoolsProjectManager::ConfigureStepConfigWidget display name. - 配置 - - - Parsing %1 in directory %2 - 正在目录 %2中分析 %1 - - - Parsing directory %1 - 正在分析目录 %1 - - - Make - Display name for AutotoolsProjectManager::MakeStep id. - Make - - - Make - Make - - - Qt Creator needs a compiler set up to build. Configure a compiler in the kit options. - Qt Creator 需要设置一个编译器来构建。在构建套件选项里设置一个编译器。 - - - Configuration is faulty. Check the Issues view for details. - 配置错误,请检查"问题"视图获得详细信息。 - - - Make - AutotoolsProjectManager::MakeStepConfigWidget display name. - Make - - - - BinEditorDocument - - The Binary Editor cannot open empty files. - 二进制编辑无法打开空文件。 - - - File Error - 文件错误 - - - Cannot open %1: %2 - 无法打开%1 : %2 - - - - Bookmarks - - Alt+Meta+M - Alt+Meta+M - - - Alt+M - Alt+M - - - - ClearCase Select &activity: 选择活动(&A): @@ -44069,10 +7930,6 @@ Please choose a valid package name for your application (e.g. "org.example. Keep item activity 保留项的活动 - - &Check Out - &Check Out - &Hijack &Hijack @@ -44257,42 +8114,10 @@ Please choose a valid package name for your application (e.g. "org.example. Check In Check In - - Diff Selected Files - Diff 选中的文件 - - - &Undo - 撤销(&U) - - - &Redo - 重做(&R) - - - Closing ClearCase Editor - 正在关闭ClearCase编辑器 - - - Do you want to check in the files? - 您想要checkin这些文件吗? - - - The comment check failed. Do you want to check in the files? - 注释检查失败。您想要checkin这些文件吗? - - - Do you want to undo the check out of '%1'? - 您想要撤销checkout '%1'吗? - Undo Hijack File 撤销Hijack文件 - - Do you want to undo hijack of '%1'? - 您想要撤销hijack '%1'吗? - External diff is required to compare multiple files. 比较多个文件时需要外部的diff。 @@ -44365,10 +8190,6 @@ Please choose a valid package name for your application (e.g. "org.example. Enter activity headline 输入活动的标题 - - CC Indexing - CC 正在索引 - ClearCase Check In ClearCase Check In @@ -44382,47 +8203,715 @@ Please choose a valid package name for your application (e.g. "org.example. &Check In - ClearCase Command - ClearCase 命令 + Editing Derived Object: %1 + - In order to use External diff, 'diff' command needs to be accessible. - 为了使用外部的diff,'diff'命令必须可访问。 + Triggers a ClearCase version control operation. + - DiffUtils is available for free download <a href="http://gnuwin32.sourceforge.net/packages/diffutils.htm">here</a>. Please extract it to a directory in your PATH. - DiffUtils可从<a href="http://gnuwin32.sourceforge.net/packages/diffutils.htm">这里</a>免费下载。请将它解压到您的PATH的目录中。 + Do you want to undo the check out of "%1"? + + + + Do you want to undo hijack of "%1"? + + + + Updating ClearCase Index + + + + Check &Out + + + + &Graphical (single file only) + + + + VOBs list, separated by comma. Indexer will only traverse the specified VOBs. If left blank, all active VOBs will be indexed. + + + + Check this if you have a trigger that renames the activity automatically. You will not be prompted for activity name. + + + + Do &not prompt for comment during checkout or check-in + + + + Check out or check in files with no comment (-nc/omment). + + + + In order to use External diff, "diff" command needs to be accessible. + + + + DiffUtils is available for free download at http://gnuwin32.sourceforge.net/packages/diffutils.htm. Extract it to a directory in your PATH. + + + + Multiple versions of "%1" can be checked out. Select the version to check out: + + + + &Loaded version + + + + Note: You will not be able to check in this file without merging the changes (not supported by the plugin) + - CMakeProjectManager + ClearCase::Tr::Tr - Build CMake target - 构建 CMake 目标 + ClearCase Command + ClearCase 命令 + + + + Coco::CocoPlugin + + Select a Squish Coco CoverageBrowser Executable + - Choose Cmake Executable - 选择CMake 的执行档 + CoverageBrowser: + - The cmake executable is valid. - cmake的执行档无效。 + Coco instrumentation files (*.csmes) + - Please specify the path to the cmake executable. No cmake executable was found in the path. - 请指定cmake可执行档的路径,在环境变量path中没有找到cmake执行档。 + Select a Squish Coco Instrumentation File + - The cmake executable (%1) does not exist. - cmake执行档 (%1) 不存在。 + CSMes: + + + + + CodePaster + + &Code Pasting + 粘贴代码(&C) - The path %1 is not a executable. - 路径 %1 不是可执行程序。 + Paste Snippet... + 粘贴代码片段... - The path %1 is not a valid cmake. - 路径 %1 不是有效的cmake。 + Alt+C,Alt+P + Alt+C,Alt+P + + + Meta+C,Meta+P + Meta+C,Meta+P + + + Fetch Snippet... + 取得代码片段... + + + Alt+C,Alt+F + Alt+C,Alt+F + + + Meta+C,Meta+F + Meta+C,Meta+F + + + Fetch from URL... + 从URL获取... + + + Fetch from URL + 从URL获取 + + + Enter URL: + 输入URL: + + + Empty snippet received for "%1". + "%1"接收到空的片段。 + + + Refresh + 刷新 + + + Waiting for items + 等待数据项 + + + This protocol does not support listing + 此协议不支持列表 + + + General + 概要 + + + Code Pasting + 代码粘贴 + + + <Comment> + <注释> + + + Paste + 粘贴 + + + Cannot open %1: %2 + 无法打开%1 : %2 + + + %1 does not appear to be a paster file. + %1似乎不是一个粘贴(paster)文件。 + + + Error in %1 at %2: %3 + 文件 %1 在 %2发生错误: %3 + + + Please configure a path. + 请配置一个路径. + + + Fileshare + 文件共享 + + + %1 - Configuration Error + %1 - 配置错误 + + + Checking connection + 正在检查连接 + + + Connecting to %1... + 正在连接到%1... + + + The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. + 基于fileshare的剪贴板协议允许在共享的网络驱动器上以文件的方式共享代码片段。文件永远不会被删除。 + + + &Path: + 路径(&P): + + + &Display: + 显示(&D): + + + entries + + + + Protocol: + 协议: + + + Paste: + 粘贴: + + + Send to Codepaster + 发送到CodePaster + + + &Username: + 用户名(&U): + + + <Username> + <用户名> + + + &Description: + 说明(&D): + + + <Description> + <说明> + + + Parts to Send to Server + 发送到服务器的部分 + + + Copy-paste URL to clipboard + 复制/粘帖URL到剪贴板 + + + Username: + 用户名: + + + Default protocol: + 默认协议: + + + %1: %2 + %1: %2 + + + Days + + + + &Expires after: + + + + Display General Messages after sending a post + + + + + CodeStyleSettingsPanelFactory + + Code Style + 代码风格 + + + + ColorToolAction + + Edit Color + + + + + ComboBoxSpecifics + + Combo Box + + + + Focus on press + + + + Determines whether the combobox gets focus if pressed. + + + + + CompilationDatabaseProjectManager::Internal::CompilationDatabaseProjectManagerPlugin + + Change Root Directory + + + + + CompilationDatabaseProjectManager::Internal::CompilationDbParser + + Scan "%1" project tree + + + + Parse "%1" project + + + + + Component + + Error exporting node %1. Cannot parse type %2. + + + + + ConanPackageManager::Internal::ConanInstallStep + + Conan install + + + + Conan file: + + + + Enter location of conanfile.txt or conanfile.py. + + + + Additional arguments: + 额外的参数: + + + Run conan install + + + + + ContentWindow + + Open Link + 打开链接 + + + Open Link as New Page + 在新页面打开连接 + + + + ContextPaneTextWidget + + Text + 文本 + + + Style + 风格 + + + ... + ... + + + + ContextPaneWidgetBorderImage + + Stretch vertically. Scales the image to fit to the available area. + 竖直拉伸,将图片在竖直方向拉伸以填满可用区域。 + + + Repeat vertically. Tiles the image until there is no more space. May crop the last image. + 垂直方向重复显示,平铺图片直到空间填满。可能会截断最后一张图片。 + + + Round. Like Repeat, but scales the images down to ensure that the last image is not cropped. + 环绕。类似重复,但会缩小图像确保最后一块图像不会被裁剪。 + + + Repeat horizontally. Tiles the image until there is no more space. May crop the last image. + 水平方向重复显示,平铺图片直到空间填满。可能会截断最后一张图片。 + + + Stretch horizontally. Scales the image to fit to the available area. + 水平拉伸,将图片水平拉伸以适应可用区域。 + + + 10 x 10 + 10 x 10 + + + + ContextPaneWidgetImage + + 10 x 10 + 10 x 10 + + + The image is scaled to fit. + + + + The image is stretched horizontally and tiled vertically. + + + + The image is stretched vertically and tiled horizontally. + + + + The image is duplicated horizontally and vertically. + + + + The image is scaled uniformly to fit without cropping. + + + + The image is scaled uniformly to fill, cropping if necessary. + + + + + ContextPaneWidgetRectangle + + Gradient + 渐变填充 + + + Color + 颜色 + + + ... + ... + + + Border + 边框 + + + + Core + + Qt + Qt + + + Environment + 环境 + + + Clear Menu + 清除菜单 + + + Show Left Sidebar + + + + Hide Left Sidebar + + + + Show Right Sidebar + + + + Hide Right Sidebar + + + + %1 > %2 Preferences... + + + + All Files (*.*) + On Windows + + + + All Files (*) + On Linux/macOS + 所有文件 (*) + + + on + + + + off + + + + Configure... + msgShowOptionsDialog + 配置... + + + Open Preferences dialog. + msgShowOptionsDialogToolTip (mac version) + + + + Open Options dialog. + msgShowOptionsDialogToolTip (non-mac version) + + + + Open From Device... + + + + Apply Chunk + 应用块 + + + Revert Chunk + 恢复块 + + + Would you like to apply the chunk? + 您想要应用块吗? + + + Would you like to revert the chunk? + 您想要恢复块吗? + + + There is no patch-command configured in the general "Environment" settings. + + + + The patch-command configured in the general "Environment" settings does not exist. + + + + Running in %1: %2 %3 + + + + Unable to launch "%1": %2 + + + + A timeout occurred running "%1" + + + + "%1" crashed. + + + + "%1" failed (exit code %2). + + + + + Core::BaseFileWizard + + File Generation Failure + 生成文件失败 + + + Existing files + 已存在的文件 + + + + Core::BaseFileWizardFactory + + Failed to open an editor for "%1". + + + + [read only] + + + + [folder] + + + + [symbolic link] + + + + The project directory %1 contains files which cannot be overwritten: +%2. + 项目目录 %1 存在着无法被覆盖的文件: +%2。 + + + + Core::CodecSelector + + Text Encoding + 文本编码 + + + The following encodings are likely to fit: + + + + Select encoding for "%1".%2 + 为"%1"选择编码 。%2 + + + Reload with Encoding + 按编码重新载入 + + + Save with Encoding + 按编码保存 + + + + Core::CommandMappings + + Command + 命令 + + + Label + 标签 + + + Command Mappings + 命令映射 + + + Target + 目标 + + + Reset All + + + + Reset all to default. + + + + Reset + 重置 + + + Reset to default. + 重置为默认。 + + + Import... + 导入... + + + Export... + + + + + Core::DesignMode + + Design + 设计 + + + + Core::DirectoryFilter + + Generic Directory Filter + 标准目录过滤器 + + + Matches all files from a custom set of directories. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + + + + Select Directory + 选择目录 + + + %1 filter update: 0 files + %1 过滤器更新: 0 个文件 + + + %1 filter update: %n files + + %1 过滤器更新: %n 个文件 + + + + %1 filter update: canceled + %1 过滤器更新: 已取消 @@ -44439,10 +8928,6 @@ Please choose a valid package name for your application (e.g. "org.example. Overwrite? 覆盖? - - An item named '%1' already exists at this location. Do you want to overwrite it? - 名为'%1'的项已经存在,您想要覆盖它吗? - Save File As 文件另存为 @@ -44451,36 +8936,598 @@ Please choose a valid package name for your application (e.g. "org.example. Open File 打开文件 - - File Is Read Only - 文件是只读状态 - - - The file <i>%1</i> is read only. - 文件 <i>%1</i> 是只读的。 - - - Make &Writable - 使文件可写(&W) - - - &Save As... - 另存为(&S)... - Cannot reload %1 无法重新载入%1 - - - Core::Internal::OpenEditorsViewFactory - Meta+O - Meta+O + Could not save the files. + error message + - Alt+O - Alt+O + An item named "%1" already exists at this location. Do you want to overwrite it? + + + + + Core::EditorManager + + Revert to Saved + 恢复到已保存的状态 + + + Close + 关闭 + + + Close All + 关闭所有文件 + + + Close Others + 关闭其他 + + + Split + 分栏 + + + Split Side by Side + 左右分栏 + + + Opening File + 打开文件 + + + Next Open Document in History + 历史中下个打开的文件 + + + Previous Open Document in History + 历史中先前打开的文件 + + + Go Back + 返回 + + + Go Forward + 前进 + + + Close "%1" + 关闭%1 + + + Close Editor + 关闭编辑器 + + + Close All Except "%1" + 除了%1 以外全部关闭 + + + Close Other Editors + 关闭其他编辑器 + + + File Error + 文件错误 + + + Close All Except Visible + + + + Go to Last Edit + + + + Copy Full Path + + + + Copy Path and Line Number + + + + Copy File Name + + + + &Save + 保存(&S) + + + Save &As... + 另存为(&A)... + + + Continue Opening Huge Text File? + + + + The text file "%1" has the size %2MB and might take more memory to open and process than available. + +Continue? + + + + Unpin "%1" + + + + Pin "%1" + + + + Pin Editor + + + + Open With + 用...打开 + + + Open in New Window + + + + Close Document + 关闭文档 + + + + Core::EditorToolBar + + Split + 分栏 + + + Remove Split + 删除分栏 + + + Make Writable + 使文件可写 + + + File is writable + 文件可写 + + + Drag to drag documents between splits + + + + + Core::ExternalTool + + System Environment + 系统环境变量 + + + Error while parsing external tool %1: %2 + 解析外部工具%1时发生错误: %2 + + + + Core::ExternalToolConfig + + Add + 添加 + + + Remove + 删除 + + + Reset + 重置 + + + Description: + 说明: + + + Executable: + 执行档: + + + Arguments: + 参数: + + + Working directory: + 工作目录: + + + Output: + 输出: + + + Ignore + 忽略 + + + Replace Selection + 替代选择 + + + Error output: + 错误输出: + + + Text to pass to the executable via standard input. Leave empty if the executable should not receive any input. + 通过标准输入传递给可执行文件的文本,如果可执行档不应收到任何输入则此项留白。 + + + Input: + 输入: + + + 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. + 如果工具修改了当前的文档,设置这个标志保证文档在工具运行前被保存并且在工具运行后自动重新载入文档。 + + + Modifies current document + 修改当前的文档 + + + Add Tool + 添加工具 + + + Add Category + 添加目录 + + + Uncategorized + 未分类 + + + Tools that will appear directly under the External Tools menu. + 工具会直接显示在“外部工具”菜单中。 + + + New Category + 新类别 + + + New Tool + 新工具 + + + This tool prints a line of useful text + 此工具可以打印一行有用的文本 + + + Useful text + Sample external tool text + 有用的文本 + + + Add tool. + + + + Remove tool. + + + + Revert tool to default. + + + + <html><head/><body> +<p>What to do with the executable's standard output. +<ul><li>Ignore: Do nothing with it.</li><li>Show in General Messages.</li><li>Replace selection: Replace the current selection in the current document with it.</li></ul></p></body></html> + + + + + Show in General Messages + + + + <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 General Messages.</li> +<li>Replace selection: Replace the current selection in the current document with it.</li> +</ul></body></html> + + + + No changes to apply. + + + + Change... + + + + Base environment: + + + + Environment: + 环境: + + + PATH=C:\dev\bin;${PATH} + + + + PATH=/opt/bin:${PATH} + + + + External Tools + 外部工具 + + + + Core::ExternalToolManager + + &External + 外部(&E) + + + Error: External tool in %1 has duplicate id + 错误: 在%1的外部工具有重复ID + + + + Core::ExternalToolRunner + + Could not find executable for "%1" (expanded "%2") + + + + Starting external tool "%1" + + + + "%1" finished + + + + "%1" finished with error + + + + + Core::FilePropertiesDialog + + Name: + 名称: + + + Path: + 路径: + + + MIME type: + + + + Default editor: + + + + Line endings: + + + + Indentation: + + + + Owner: + + + + Group: + 组: + + + Size: + + + + Last read: + + + + Last modified: + + + + Readable: + + + + Writable: + + + + Executable: + 执行档: + + + Symbolic link: + + + + Unknown + 未知 + + + Windows (CRLF) + + + + Unix (LF) + + + + Mac (CR) + + + + Mixed + 混合 + + + %1 Spaces + + + + Tabs + + + + Undefined + 未定义 + + + + Core::FileUtils + + Failed to rename the include guard in file "%1". + + + + + Core::Find + + &Find/Replace + 查找/替换(&F) + + + Advanced Find + 高级查找 + + + Open Advanced Find... + 打开高级查找... + + + Advanced... + 高级... + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + Core::FolderNavigationWidget + + Open "%1" + 打开 "%1" + + + Show Hidden Files + + + + Show Bread Crumbs + + + + Show Folders on Top + + + + Synchronize with Editor + 与编辑器同步 + + + Synchronize Root Directory with Editor + + + + New File + Title of dialog + 新建文件 + + + New Folder + 新建文件夹 + + + Remove Folder + + + + Collapse All + 折叠全部 + + + Error + 错误 + + + Computer + + + + Home + 主页 + + + Projects + 项目 + + + + Core::FolderNavigationWidgetFactory + + File System + 文件系统 + + + Meta+Y,Meta+F + + + + Alt+Y,Alt+F + + + + Options + 选项 + + + Add New... + 添加新文件... + + + Rename... + 重命名... + + + Remove... + + + + + Core::ICore + + (%1) + + + + %1 %2%3 + %1 %2%3 + + + Based on Qt %1 (%2, %3) + @@ -44490,6 +9537,79 @@ Please choose a valid package name for your application (e.g. "org.example. 文件由自动保存的备份恢复。选择“保存”来确认, 或者“恢复”回滚到已经保存的内容来丢弃修改。 + + Core::IFindFilter + + Case sensitive + 区分大小写 + + + Whole words + 全词匹配 + + + Regular expressions + 正则表达式 + + + Preserve case + + + + Flags: %1 + 标志: %1 + + + None + + + + , + + + + + Core::ILocatorFilter + + Filter Configuration + 过滤器配置 + + + Prefix: + + + + Type the prefix followed by a space and search term to restrict search to the filter. + + + + Include by default + + + + Include the filter when not using a prefix for searches. + + + + + Core::IOutputPane + + Use Regular Expressions + 使用正则表达式 + + + Case Sensitive + 区分大小写 + + + Show Non-matching Lines + + + + Filter output... + + + Core::IVersionControl @@ -44497,6 +9617,3790 @@ Please choose a valid package name for your application (e.g. "org.example. 使用VCS打开 (%1) + + Core::IWizardFactory + + Factory with id="%1" already registered. Deleting. + + + + Reload All Wizards + + + + Inspect Wizard State + + + + + Core::Internal + + Launching a file browser failed + 启动文件浏览器失败 + + + Unable to start the file manager: + +%1 + + + 无法启动文件管理器: + +%1 + + + + + Launching Windows Explorer Failed + 启动Windows Explorer 失败 + + + Could not find explorer.exe in path to launch Windows Explorer. + 在搜索路径中找不到explorer.exe,无法启动Windows Explorer。 + + + Show in Explorer + 在Explorer中显示 + + + Show in Finder + 在Finder中显示 + + + Show Containing Folder + 显示包含的目录 + + + Open Command Prompt Here + 在此弹出命令提示 + + + Open Terminal Here + 在此打开终端 + + + "%1" returned the following error: + +%2 + + + + The command for file browser is not set. + + + + Error while starting file browser. + + + + Find in This Directory... + + + + Show in File System View + + + + Open Command Prompt With + Opens a submenu for choosing an environment, such as "Run Environment" + + + + Open Terminal With + Opens a submenu for choosing an environment, such as "Run Environment" + + + + Failed to remove file "%1". + + + + + Core::Internal::ActionsFilter + + Global Actions & Actions from the Menu + + + + Triggers an action. If it is from the menu it matches any part of a menu hierarchy, separated by ">". For example "sess def" matches "File > Sessions > Default". + + + + + Core::Internal::AddToVcsDialog + + Add the file to version control (%1) + + + + Add the files to version control (%1) + + + + + Core::Internal::CommandComboBox + + Activate %1 View + + + + + Core::Internal::CorePlugin + + No themes found in installation. + + + + The current date (ISO). + + + + The current time (ISO). + + + + The current date (RFC2822). + + + + The current time (RFC2822). + + + + The current date (Locale). + + + + The current time (Locale). + + + + The configured default directory for projects. + + + + The directory last visited in a file dialog. + + + + Is %1 running on Windows? + + + + Is %1 running on OS X? + + + + Is %1 running on Linux? + + + + Is %1 running on any unix-based platform? + + + + The path list separator for the platform. + + + + The platform executable suffix. + + + + The directory where %1 finds its pre-installed resources. + + + + The current date (QDate formatstring). + + + + The current time (QTime formatstring). + + + + Generate a new UUID. + + + + A comment. + + + + Create Folder + + + + Settings File Error + + + + The settings file "%1" is not writable. +You will not be able to store any %2 settings. + + + + The file is not readable. + + + + The file is invalid. + + + + Error reading settings file "%1": %2 +You will likely experience further problems using this instance of %3. + + + + %1 collects crash reports for the sole purpose of fixing bugs. To disable this feature go to %2. + + + + %1 can collect crash reports for the sole purpose of fixing bugs. To enable this feature go to %2. + + + + > Preferences > Environment > System + + + + Edit > Preferences > Environment > System + + + + Configure... + 配置... + + + %1 uses Google Crashpad for collecting crashes and sending them to our backend for processing. Crashpad may capture arbitrary contents from crashed process’ memory, including user sensitive information, URLs, and whatever other content users have trusted %1 with. The collected crash reports are however only used for the sole purpose of fixing bugs. + + + + More information: + + + + Crashpad Overview + + + + %1 security policy + + + + + Core::Internal::CurrentDocumentFind + + %n occurrences replaced. + + + + + + + Core::Internal::DirectoryFilterOptions + + Name: + 名称: + + + Specify a short word/abbreviation that can be used to restrict completions to files from this directory tree. +To do this, you type this shortcut and a space in the Locator entry field, and then the word to search for. + 指定用于限定此目录树的文件的关键词或者缩写。 +您可以在“定位器”的输入位置键入这个缩写和一个空格,然后输入搜索的词。 + + + Directories: + 目录: + + + Add... + 添加... + + + Edit... + 编辑... + + + Remove + 删除 + + + + Core::Internal::DocumentManagerPrivate + + Ctrl+Shift+S + Ctrl+Shift+S + + + Save A&ll + 保存所有文件(&L) + + + + Core::Internal::DocumentModelPrivate + + <no document> + + + + No document is selected. + + + + + Core::Internal::EditMode + + Edit + 编辑 + + + + Core::Internal::EditorManagerPrivate + + Properties... + + + + Pin + + + + Revert File to Saved + 恢复文件到已保存的状态 + + + Ctrl+W + Ctrl+W + + + Alternative Close + + + + Ctrl+F4 + Ctrl+F4 + + + Ctrl+Shift+W + Ctrl+Shift+W + + + Alt+Tab + Alt+Tab + + + Ctrl+Tab + Ctrl+Tab + + + Alt+Shift+Tab + Alt+Shift+Tab + + + Ctrl+Shift+Tab + Ctrl+Shift+Tab + + + Ctrl+Alt+Left + Ctrl+Alt+Left + + + Alt+Left + Alt+Left + + + Ctrl+Alt+Right + Ctrl+Alt+Right + + + Alt+Right + Alt+Right + + + Split + 分栏 + + + Meta+E,2 + Meta+E,2 + + + Ctrl+E,2 + Ctrl+E,2 + + + Split Side by Side + 左右分栏 + + + Meta+E,3 + Meta+E,3 + + + Ctrl+E,3 + Ctrl+E,3 + + + Open in New Window + + + + Meta+E,4 + Meta+E,4 + + + Ctrl+E,4 + Ctrl+E,4 + + + Remove Current Split + 删除当前分隔 + + + Meta+E,0 + Meta+E,0 + + + Ctrl+E,0 + Ctrl+E,0 + + + Remove All Splits + 删除所有分隔 + + + Meta+E,1 + Meta+E,1 + + + Ctrl+E,1 + Ctrl+E,1 + + + Go to Previous Split or Window + + + + Meta+E,i + + + + Ctrl+E,i + + + + Go to Next Split or Window + + + + Meta+E,o + Meta+E,o + + + Ctrl+E,o + Ctrl+E,o + + + Ad&vanced + 高级(&A) + + + Current document + + + + X-coordinate of the current editor's upper left corner, relative to screen. + 当前编辑器的左上角(相对屏幕来说)X坐标轴。 + + + Y-coordinate of the current editor's upper left corner, relative to screen. + 当前编辑器的左上角(相对屏幕来说)Y坐标轴。 + + + Could not open "%1": Cannot open files of type "%2". + + + + Could not open "%1" for reading. Either the file does not exist or you do not have the permissions to open it. + + + + Could not open "%1": Unknown error. + + + + <b>Warning:</b> This file was not opened in %1 yet. + <b>警告:</b> 此文件还没有在%1中打开。 + + + Open + 打开 + + + <b>Warning:</b> You are changing a read-only file. + <b>警告:</b> 您正在改写一个只读文件。 + + + Make Writable + 使文件可写 + + + &Save %1 + 保存%1(&S) + + + Save %1 &As... + %1 另存为(&A)... + + + Revert %1 to Saved + 恢复%1 到已保存的状态 + + + Reload %1 + + + + Close %1 + + + + Close All Except %1 + + + + Close Others + 关闭其他 + + + Cannot Open File + 无法打开文件 + + + Cannot open the file for editing with VCS. + + + + File Error + 文件错误 + + + Revert to Saved + 恢复到已保存的状态 + + + You will lose your current changes if you proceed reverting %1. + 如果恢复 %1 那么您将会丢失现有的所有修改。 + + + Proceed + 继续 + + + Cancel + 取消 + + + Cancel && &Diff + + + + + Core::Internal::ExecuteFilter + + Execute Custom Commands + 执行自定义的命令 + + + Runs an arbitrary command with arguments. The command is searched for in the PATH environment variable if needed. Note that the command is run directly, not in a shell. + + + + Previous command is still running ("%1"). +Do you want to kill it? + + + + Kill Previous Process? + 杀死前一个进程吗? + + + Could not find executable for "%1". + + + + Starting command "%1". + + + + + Core::Internal::ExternalToolsFilter + + Run External Tool + + + + Runs an external tool that you have set up in the preferences (Environment > External Tools). + + + + + Core::Internal::FileSystemFilter + + Files in File System + 文件系统中的文件 + + + Opens a file given by a relative path to the current document, or absolute path. "~" refers to your home directory. You have the option to create a file if it does not exist yet. + + + + Create and Open "%1" + + + + Create File + + + + Create "%1"? + + + + Always create + + + + Create + + + + + Core::Internal::FileSystemFilterOptions + + Include hidden files + 包括隐藏文件 + + + Filter: + 过滤器: + + + + Core::Internal::FindDialog + + &Search + 搜索(&S) + + + Search && &Replace + 查找和替换(&R) + + + Search f&or: + + + + &Case sensitive + 区分大小写(&C) + + + Whole words o&nly + 全词匹配(&N) + + + Use re&gular expressions + 使用正则表达式(&G) + + + Sco&pe: + 范围(&P): + + + + Core::Internal::FindToolBar + + Shift+Enter + Shift+Enter + + + Shift+Return + Shift+Return + + + Find/Replace + 查找/替换 + + + Enter Find String + 输入搜索字符串 + + + Ctrl+E + Ctrl+E + + + Find Next + 查找下一个 + + + Find Previous + 查找前一个 + + + Find Next (Selected) + 查找下一个(选中的) + + + Ctrl+F3 + Ctrl+F3 + + + Find Previous (Selected) + 查找前一个(选中的) + + + Ctrl+Shift+F3 + Ctrl+Shift+F3 + + + Select All + 全选 + + + Ctrl+Alt+Return + + + + Replace + 替换 + + + Replace && Find + 查找并替换 + + + Ctrl+= + Ctrl+= + + + Replace && Find Previous + 替换并且查找前一个 + + + Replace All + 替换所有 + + + Case Sensitive + 区分大小写 + + + Whole Words Only + 全词匹配 + + + Use Regular Expressions + 使用正则表达式 + + + Preserve Case when Replacing + + + + Search for... + 查找... + + + Replace with... + + + + + Core::Internal::FindToolWindow + + Empty search term. + + + + + Core::Internal::FindWidget + + Find + 查找 + + + Find: + 查找: + + + Replace with: + 替换为: + + + Replace + 替换 + + + Replace && Find + 查找并替换 + + + Replace All + 替换所有 + + + Advanced... + 高级... + + + + Core::Internal::GeneralSettings + + <System Language> + <系统语言> + + + User Interface + 用户界面 + + + Color: + 颜色: + + + Language: + 语言: + + + Reset + 重置 + + + Reset to default. + Color + 重置为默认。 + + + Reset Warnings + Button text + + + + Re-enable warnings that were suppressed by selecting "Do Not Show Again" (for example, missing highlighter). + + + + Theme: + + + + Enable high DPI scaling + + + + Restart Required + + + + The high DPI settings will take effect after restart. + + + + Text codec for tools: + + + + Show keyboard shortcuts in context menus (default: %1) + + + + The language change will take effect after restart. + + + + Interface + + + + + Core::Internal::JavaScriptFilter + + Evaluate JavaScript + + + + Evaluates arbitrary JavaScript expressions and copies the result. + + + + Reset Engine + + + + Engine aborted after timeout. + + + + Copy to clipboard: %1 + + + + + Core::Internal::Locator + + Locate... + 定位... + + + Ctrl+K + Ctrl+K + + + <html><body style="color:#909090; font-size:14px"><div align='center'><div style="font-size:20px">Open a document</div><table><tr><td><hr/><div style="margin-top: 5px">&bull; File > Open File or Project (%1)</div><div style="margin-top: 5px">&bull; File > Recent Files</div><div style="margin-top: 5px">&bull; Tools > Locate (%2) and</div><div style="margin-left: 1em">- type to open file from any open project</div>%4%5<div style="margin-left: 1em">- type <code>%3&lt;space&gt;&lt;filename&gt;</code> to open file from file system</div><div style="margin-left: 1em">- select one of the other filters for jumping to a location</div><div style="margin-top: 5px">&bull; Drag and drop files here</div></td></tr></table></div></body></html> + + + + <div style="margin-left: 1em">- type <code>%1&lt;space&gt;&lt;pattern&gt;</code> to jump to a class definition</div> + + + + <div style="margin-left: 1em">- type <code>%1&lt;space&gt;&lt;pattern&gt;</code> to jump to a function definition</div> + + + + Updating Locator Caches + + + + + Core::Internal::LocatorFiltersFilter + + Available filters + 可使用的过滤器 + + + + Core::Internal::LocatorSettingsWidget + + Add... + 添加... + + + Refresh interval: + 更新间隔: + + + Locator filters that do not update their cached data immediately, such as the custom directory filters, update it after this time interval. + + + + min + + + + Remove + 删除 + + + Edit... + 编辑... + + + Files in Directories + + + + URL Template + + + + Name + + + + Prefix + + + + Default + 默认 + + + Built-in + + + + Custom + + + + + Core::Internal::LocatorWidget + + Open as Centered Popup + + + + Refresh + + + + Options + 选项 + + + Type to locate + 输入以定位 + + + Type to locate (%1) + 输入以定位(%1) + + + + Core::Internal::LoggingCategoryModel + + Category + + + + Type + 类型 + + + Color + 颜色 + + + + Core::Internal::MainWindow + + &File + 文件(&F) + + + &Edit + 编辑(&E) + + + &Tools + 工具(&T) + + + &Window + 控件(&W) + + + &Help + 帮助(&H) + + + &Open File or Project... + 打开文件或项目(&O)... + + + Open File &With... + 不需要快捷键 + 打开文件,用...(&W) + + + Recent &Files + 最近访问的文件(&F) + + + Save + 保存 + + + Ctrl+Shift+S + Ctrl+Shift+S + + + Save As... + 另存为... + + + &Print... + 打印(&P)... + + + E&xit + 退出(&X) + + + Ctrl+Q + Ctrl+Q + + + &Undo + 撤销(&U) + + + Undo + 撤销 + + + &Redo + 重做(&R) + + + Redo + 重做 + + + Cu&t + 剪切(&T) + + + &Copy + 复制(&C) + + + &Paste + 粘贴(&P) + + + Select &All + 全选(&A) + + + &Go to Line... + 转到行(&G)... + + + Ctrl+L + Ctrl+L + + + Minimize + 最小化 + + + Ctrl+M + Ctrl+M + + + Zoom + 缩放 + + + Ctrl+0 + Ctrl+0 + + + Alt+0 + Alt+0 + + + Full Screen + 全屏 + + + Ctrl+Meta+F + Ctrl+Meta+F + + + Ctrl+Shift+F11 + Ctrl+Shift+F11 + + + &Views + 视图(&V) + + + About &Plugins... + 关于插件(&P)... + + + Exit %1? + + + + &View + 视图(&V) + + + Return to Editor + + + + &New Project... + + + + New Project + Title of dialog + + + + New File... + + + + New File + Title of dialog + 新建文件 + + + Zoom In + 放大 + + + Ctrl++ + Ctrl++ + + + Zoom Out + 缩小 + + + Ctrl+- + Ctrl+- + + + Ctrl+Shift+- + + + + Original Size + 原始大小 + + + Meta+0 + Meta+0 + + + Debug %1 + + + + Show Logs... + + + + Pr&eferences... + + + + Close Window + + + + Ctrl+Meta+W + + + + Ctrl+Shift+0 + + + + Alt+Shift+0 + + + + About &%1 + + + + About &%1... + + + + Change Log... + + + + Contact... + + + + Cycle Mode Selector Styles + + + + Mode Selector Style + + + + Icons and Text + + + + Icons Only + + + + Hidden + + + + Version: + 版本: + + + Change Log + + + + Contact + + + + <p>Qt Creator developers can be reached at the Qt Creator mailing list:</p>%1<p>or the #qt-creator channel on Libera.Chat IRC:</p>%2<p>Our bug tracker is located at %3.</p><p>Please use %4 for bigger chunks of text.</p> + + + + + Core::Internal::MessageOutputWindow + + General Messages + 概要信息 + + + + Core::Internal::MimeTypeMagicDialog + + Add Magic Header + 添加Magic Header + + + Error + 错误 + + + Value: + 值: + + + String + 字符串 + + + Byte + 字节 + + + Use Recommended + 使用建议 + + + Priority: + 优先级: + + + <html><head/><body><p>MIME magic data is interpreted as defined by the Shared MIME-info Database specification from <a href="http://standards.freedesktop.org/shared-mime-info-spec/shared-mime-info-spec-latest.html">freedesktop.org</a>.<hr/></p></body></html> + + + + RegExp + + + + Host16 + + + + Host32 + + + + Big16 + + + + Big32 + + + + Little16 + + + + Little32 + + + + <html><head/><body><p><span style=" font-style:italic;">Note: Wide range values might impact performance when opening files.</span></p></body></html> + + + + Range start: + + + + Range end: + + + + Type: + 类型: + + + Mask: + + + + Internal error: Type is invalid + + + + + Core::Internal::MimeTypeSettings + + MIME Types + MIME 类型 + + + + Core::Internal::MimeTypeSettingsModel + + MIME Type + MIME 类型 + + + Handler + 处理器 + + + + Core::Internal::MimeTypeSettingsPage + + Registered MIME Types + 已注册的MIME 类型 + + + Details + 详情 + + + Patterns: + 模式: + + + Magic Header + Magic Header + + + Type + 类型 + + + Range + 范围 + + + Priority + 优先级 + + + Add... + 添加... + + + Edit... + 编辑... + + + Remove + 删除 + + + Reset all MIME type definitions to their defaults. + + + + Reset MIME Types + + + + Reset the assigned handler for all MIME type definitions to the default. + + + + Reset Handlers + + + + A semicolon-separated list of wildcarded file names. + + + + + Core::Internal::MimeTypeSettingsPrivate + + Reset MIME Types + + + + Changes will take effect after restart. + + + + + Core::Internal::NavigationSubWidget + + Split + 分栏 + + + Close + 关闭 + + + + Core::Internal::NewDialog + + Choose a template: + 选择一个模板: + + + Projects + 项目 + + + Files and Classes + 文件和类 + + + All Templates + 所有模板 + + + %1 Templates + %1 模板 + + + Platform independent + 与平台无关 + + + Supported Platforms + 支持的平台 + + + Choose... + 选择... + + + + Core::Internal::OpenDocumentsFilter + + Open Documents + + + + + Core::Internal::OpenEditorsWindow + + * + * + + + + Core::Internal::OpenWithDialog + + Open File With... + 打开文件,用... + + + Open file "%1" with: + + + + + Core::Internal::OutputPaneManager + + Output + 输出 + + + Clear + 清空 + + + Next Item + 下一项 + + + Previous Item + 上一项 + + + Shift+F6 + Shift+F6 + + + F6 + F6 + + + Minimize + 最小化 + + + Maximize + + + + Out&put + + + + Ctrl+Shift+9 + + + + Alt+Shift+9 + + + + + Core::Internal::PluginDialog + + Details + 详情 + + + Error Details + 错误详情 + + + Installed Plugins + 已安装的插件 + + + Plugin Details of %1 + %1 的插件详情 + + + Plugin Errors of %1 + %1 的插件错误 + + + Install Plugin... + + + + Plugin changes will take effect after restart. + + + + + Core::Internal::PluginInstallWizard + + Source + + + + Choose source location. This can be a plugin library file or a zip file. + + + + File does not exist. + + + + Check Archive + + + + Cancel + 取消 + + + Checking archive... + + + + The file is not an archive. + + + + Canceled. + 已取消. + + + There was an error while unarchiving. + + + + Archive is OK. + + + + Plugin requires an incompatible version of %1 (%2). + + + + Did not find %1 plugin. + + + + Install Location + + + + Choose install location. + + + + User plugins + + + + The plugin will be available to all compatible %1 installations, but only for the current user. + + + + %1 installation + + + + The plugin will be available only to this %1 installation, but for all users that can access it. + + + + Summary + 汇总 + + + "%1" will be installed into "%2". + + + + Overwrite File + + + + The file "%1" exists. Overwrite? + + + + Overwrite + 覆盖 + + + Failed to Write File + + + + Failed to write file "%1". + + + + Install Plugin + + + + Failed to Copy Plugin Files + + + + + Core::Internal::ProgressManagerPrivate + + Toggle Progress Details + + + + + Core::Internal::ProgressView + + Processes + 进程 + + + + Core::Internal::SaveItemsDialog + + Save All + 保存所有 + + + Save + 保存 + + + Save Selected + 保存选中 + + + Save Changes + 保存修改 + + + The following files have unsaved changes: + 以下文件有未保存的修改: + + + Automatically save all files before building + 构建前自动保存所有文件 + + + &Diff + &Diff + + + Do &Not Save + + + + &Save + 保存(&S) + + + &Diff && Cancel + + + + &Save All + + + + &Diff All && Cancel + + + + &Save Selected + + + + &Diff Selected && Cancel + + + + + Core::Internal::SearchResultWidget + + Cancel + 取消 + + + Repeat the search with same parameters. + + + + &Search Again + + + + Repla&ce with: + + + + Preser&ve case + + + + Replace all occurrences. + + + + &Replace + + + + This change cannot be undone. + 这项改变将无法被撤销。 + + + The search resulted in more than %n items, do you still want to continue? + + 搜索到了超过%n个项,您仍然想继续吗? + + + + Continue + 继续 + + + Search was canceled. + 查找被取消。 + + + %n matches found. + + 找到%n 个匹配。 + + + + Searching... + 搜索中... + + + No matches found. + 未找到匹配。 + + + + Core::Internal::SettingsDialog + + Preferences + 首选项 + + + + Core::Internal::ShortcutButton + + Click and type the new key sequence. + + + + Stop Recording + + + + Record + + + + + Core::Internal::ShortcutInput + + Key sequence: + 键位顺序: + + + Use "Cmd", "Opt", "Ctrl", and "Shift" for modifier keys. Use "Escape", "Backspace", "Delete", "Insert", "Home", and so on, for special keys. Combine individual keys with "+", and combine multiple shortcuts to a shortcut sequence with ",". For example, if the user must hold the Ctrl and Shift modifier keys while pressing Escape, and then release and press A, enter "Ctrl+Shift+Escape,A". + + + + Use "Ctrl", "Alt", "Meta", and "Shift" for modifier keys. Use "Escape", "Backspace", "Delete", "Insert", "Home", and so on, for special keys. Combine individual keys with "+", and combine multiple shortcuts to a shortcut sequence with ",". For example, if the user must hold the Ctrl and Shift modifier keys while pressing Escape, and then release and press A, enter "Ctrl+Shift+Escape,A". + + + + Enter key sequence as text + + + + + Core::Internal::ShortcutSettings + + Keyboard + 键盘 + + + Keyboard Shortcuts + 键盘快捷键 + + + Shortcut + 快捷键 + + + Import Keyboard Mapping Scheme + 导入键盘映射方案 + + + Keyboard Mapping Scheme (*.kms) + 键盘映射方案 (*.kms) + + + Export Keyboard Mapping Scheme + 导出键盘映射方案 + + + Add + 添加 + + + Invalid key sequence. + + + + Key sequence will not work in editor. + + + + Key sequence has potential conflicts. <a href="#conflicts">Show.</a> + + + + + Core::Internal::SideBarWidget + + Split + 分栏 + + + Close + 关闭 + + + + Core::Internal::SpotlightLocatorFilter + + Locator: Error occurred when running "%1". + + + + Locator query string. + + + + Locator query string with quotes escaped with backslash. + + + + Locator query string with quotes escaped with backslash and spaces replaced with "*" wildcards. + + + + Locator query string as regular expression. + + + + File Name Index + + + + Matches files from a global file system index (Spotlight, Locate, Everything). Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + + + + Executable: + 执行档: + + + Arguments: + 参数: + + + Case sensitive: + + + + + Core::Internal::SystemEditor + + System Editor + + + + Could not open URL %1. + + + + + Core::Internal::SystemSettings + + Auto-suspend unmodified files + + + + Enable crash reporting + + + + Warn before opening text files greater than + + + + Ask for confirmation before exiting + + + + Auto-save modified files + 自动保存修改的文件 + + + Clear Local Crash Reports + + + + Auto-save files after refactoring + + + + Automatically free resources of old documents that are not visible and not modified. They stay visible in the list of open documents. + + + + Allow crashes to be automatically reported. Collected reports are used for the sole purpose of fixing bugs. + + + + MB + MB + + + Command line arguments used for "Run in terminal". + + + + Always Ask + 总是询问 + + + Reload All Unchanged Editors + 重新载入所有未变更的编辑器 + + + Ignore Modifications + 忽略修改 + + + min + + + + Command line arguments used for "%1". + + + + File system case sensitivity: + + + + Influences how file names are matched to decide if they are the same. + + + + Files to keep open: + + + + Minimum number of open documents that should be kept in memory. Increasing this number will lead to greater resource usage when not manually closing documents. + + + + Reset + 重置 + + + Reset to default. + 重置为默认。 + + + ? + ? + + + Reset to default. + Terminal + 重置为默认。 + + + Patch command: + + + + Change... + + + + Environment: + 环境: + + + Terminal: + 终端: + + + External file browser: + 外部文件浏览器: + + + When files are externally modified: + 当文件被外部修改时: + + + Interval: + 间隔: + + + Maximum number of entries in "Recent Files": + + + + System + 系统 + + + Command used for reverting diff chunks. + + + + Automatically creates temporary copies of modified files. If %1 is restarted after a crash or power failure, it asks whether to recover the auto-saved content. + + + + Automatically saves all open files affected by a refactoring operation, +provided they were unmodified before the refactoring. + + + + Crash Reporting + + + + The change will take effect after restart. + + + + Case Sensitive (Default) + + + + Case Sensitive + 区分大小写 + + + Case Insensitive (Default) + + + + Case Insensitive + + + + The file system case sensitivity change will take effect after restart. + + + + No changes to apply. + + + + Variables + 变量 + + + + Core::Internal::ThemeChooser + + Current theme: %1 + + + + The theme change will take effect after restart. + + + + + Core::Internal::UrlFilterOptions + + Name: + 名称: + + + Add "%1" placeholder for the query string. +Double-click to edit item. + + + + Add + 添加 + + + Remove + 删除 + + + Move Up + + + + Move Down + + + + URLs: + + + + + Core::Internal::VersionDialog + + About %1 + + + + <br/>From revision %1<br/> + + + + <br/>Built on %1 %2<br/> + + + + <h3>%1</h3>%2<br/>%3%4%5<br/>Copyright 2008-%6 %7. All rights reserved.<br/><br/>The program is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.<br/> + + + + The Qt logo as well as Qt®, Qt Quick®, Built with Qt®, Boot to Qt®, Qt Quick Compiler®, Qt Enterprise®, Qt Mobile® and Qt Embedded® are registered trademarks of The Qt Company Ltd. + + + + + Core::Internal::WindowSupport + + Exit Full Screen + 退出全屏模式 + + + Enter Full Screen + 进入全屏模式 + + + + Core::JsExpander + + Error in "%1": %2 + + + + Cannot convert result of "%1" to string. + + + + Evaluate simple JavaScript statements.<br>Literal '}' characters must be escaped as "\}", '\' characters must be escaped as "\\", and "%{" must be escaped as "%\{". + + + + + Core::ListItemDelegate + + Tags: + 标签: + + + + Core::ModeManager + + Switch to <b>%1</b> mode + 切换到<b>%1</b> 模式 + + + + Core::NavigationWidget + + Activate %1 View + + + + + Core::OutputWindow + + Elided %n characters due to Application Output settings + + + + + + [Discarding excessive amount of pending output.] + + + + + + Core::PromptOverwriteDialog + + Overwrite Existing Files + 覆盖现有文件 + + + The following files already exist in the folder +%1. +Would you like to overwrite them? + 以下文件已经存在于目录 +%1中。 +您想要覆盖吗? + + + + Core::ReadOnlyFilesDialog + + Mixed + 混合 + + + Make Writable + 使文件可写 + + + Open with VCS + + + + Save As + + + + Failed to %1 File + + + + %1 file %2 from version control system %3 failed. + + + + No Version Control System Found + + + + Cannot open file %1 from version control system. +No version control system found. + + + + Cannot Set Permissions + 无法设置权限 + + + Cannot set permissions for %1 to writable. + + + + Cannot Save File + + + + Cannot save file %1 + + + + Canceled Changing Permissions + + + + Could Not Change Permissions on Some Files + + + + See details for a complete list of files. + + + + Files Without Write Permissions + + + + The following files have no write permissions. Do you want to change the permissions? + + + + Filename + + + + Path + + + + Change &Permission + + + + Select all, if possible: + + + + The following files are not checked out yet. +Do you want to check them out now? + + + + + Core::RestartDialog + + Restart Required + + + + Later + + + + Restart Now + + + + + Core::SearchResultWindow + + Expand All + 展开全部 + + + Filter Results + + + + New Search + 新搜索 + + + %1 %2 + %1 %2 + + + Collapse All + 折叠全部 + + + History: + + + + Search Results + 搜索结果 + + + + Core::UrlLocatorFilter + + Web Search + 搜索网络 + + + Qt Project Bugs + + + + URL Template + + + + + Core::VcsManager + + Version Control + 版本控制 + + + Add to Version Control + 添加到版本控制系统 + + + Add the file +%1 +to version control (%2)? + 添加文件 +%1 +到版本控制 (%2)吗? + + + Add the files +%1 +to version control (%2)? + 添加文件 +%1 +到版本控制 (%2)吗? + + + Adding to Version Control Failed + 添加文件到版本控制系统失败 + + + Could not add the file +%1 +to version control (%2) + + 无法添加文件 +%1 +到版本控制系统 (%2) + + + + Could not add the following files to version control (%1) +%2 + 无法添加以下文件到版本控制系统 (%1) +%2 + + + %1 repository was detected but %1 is not configured. + + + + Remove the following files from the version control system (%2)? %1Note: This might remove the local file. + + + + + CplusPlus::CheckSymbols + + Too few arguments + + + + + CppCodeModelInspectorDialog + + Compiler Flags + + + + + CppEditor + + C++ + C++ + + + Follow Symbol to Type is only available when using clangd + + + + Quick Fixes + + + + Code Style + 代码风格 + + + File Naming + 文件命名 + + + Diagnostic Configurations + + + + C++ Symbols in Current Document + + + + C++ Classes + + + + C++ Functions + + + + All Included C/C++ Files + + + + C++ Classes, Enums, Functions and Type Aliases + + + + C++ Symbols + C++符号 + + + Cannot show preprocessed file: %1 + + + + %1, falling back to built-in preprocessor. + + + + Failed to open output file "%1". + + + + Failed to write output file "%1". + + + + Could not determine which compiler to invoke. + + + + Could not determine compiler command line. + + + + The project contains C source files, but the currently active kit has no C compiler. The code model will not be fully functional. + + + + The project contains C++ source files, but the currently active kit has no C++ compiler. The code model will not be fully functional. + + + + + CppEditor::AbstractEditorSupport + + The file name. + + + + The class name. + + + + + CppEditor::ClangBaseChecks + + For appropriate options, consult the GCC or Clang manual pages or the <a href="https://gcc.gnu.org/onlinedocs/gcc/Warning-Options.html">GCC online documentation</a>. + + + + Use diagnostic flags from build system + + + + + CppEditor::ClangDiagnosticConfigsSelectionWidget + + Diagnostic configuration: + + + + + CppEditor::ClangDiagnosticConfigsWidget + + Diagnostic Configurations + + + + Copy... + 复制... + + + Rename... + 重命名... + + + Remove + 删除 + + + Clang Warnings + + + + Copy Diagnostic Configuration + + + + Diagnostic configuration name: + + + + %1 (Copy) + %1 (复制) + + + Rename Diagnostic Configuration + + + + New name: + + + + Option "%1" is invalid. + + + + Copy this configuration to customize it. + + + + Configuration passes sanity checks. + + + + %1 + %1 + + + + CppEditor::ClangdSettings + + Background Priority + + + + Normal Priority + + + + Low Priority + + + + Off + + + + + CppEditor::ConfigsModel + + Built-in + + + + Custom + + + + + CppEditor::CppEditorWidget + + &Refactor + 重构(&R) + + + + CppEditor::CppProjectUpdater + + Preparing C++ Code Model + + + + + CppEditor::CppQuickFixFactory + + Create Implementations for Member Functions + + + + Generate Missing Q_PROPERTY Members + + + + Generate Setter + + + + Generate Getter + + + + Generate Getter and Setter + + + + Generate Constant Q_PROPERTY and Missing Members + + + + Generate Q_PROPERTY and Missing Members with Reset Function + + + + Generate Q_PROPERTY and Missing Members + + + + Create Getter and Setter Member Functions + + + + Convert to Stack Variable + + + + Convert to Pointer + + + + Base Class Constructors + + + + Generate Constructor + + + + + CppEditor::CppToolsSettings + + Global + Settings + + + + Qt + Qt + + + GNU + GNU + + + Old Creator + 旧的 Creator + + + + CppEditor::InsertDeclOperation + + Add %1 Declaration + 添加%1声明 + + + + CppEditor::InsertDefOperation + + Add Definition in %1 + 在%1添加定义 + + + Add Definition Here + + + + Add Definition Inside Class + + + + Add Definition Outside Class + + + + + CppEditor::Internal::BuiltinIndexingSupport + + Parsing C/C++ Files + + + + + CppEditor::Internal::ClangdSettingsWidget + + If background indexing is enabled, global symbol searches will yield +more accurate results, at the cost of additional CPU load when +the project is first opened. +The indexing result is persisted in the project's build directory. + +If you disable background indexing, a faster, but less accurate, +built-in indexer is used instead. + +The thread priority for building the background index can be adjusted since clangd 15. +Background Priority: Minimum priority, runs on idle CPUs. May leave 'performance' cores unused. +Normal Priority: Reduced priority compared to interactive work. +Low Priority: Same priority as other clangd work. + + + + Number of worker threads used by clangd. Background indexing also uses this many worker threads. + + + + Controls whether clangd may insert header files as part of symbol completion. + + + + Defines the amount of time Qt Creator waits before sending document changes to the server. +If the document changes again while waiting, this timeout resets. + + + + Files greater than this will not be opened as documents in clangd. +The built-in code model will handle highlighting, completion and so on. + + + + The maximum number of completion results returned by clangd. + + + + Use clangd + + + + Insert header files on completion + + + + Ignore files greater than + + + + Completion results: + + + + No limit + + + + Path to executable: + + + + Background indexing: + + + + Worker thread count: + + + + Document update threshold: + + + + Sessions with a single clangd instance + + + + By default, Qt Creator runs one clangd process per project. +If you have sessions with tightly coupled projects that should be +managed by the same clangd process, add them here. + + + + Add ... + + + + Remove + 删除 + + + Choose a session: + + + + Additional settings are available via <a href="https://clangd.llvm.org/config"> clangd configuration files</a>.<br>User-specific settings go <a href="%1">here</a>, project-specific settings can be configured by putting a .clangd file into the project source tree. + + + + Failed to retrieve clangd version: Unexpected clangd output. + + + + The clangd version is %1, but %2 or greater is required. + + + + Clangd + + + + + CppEditor::Internal::ConstructorParams + + Initialize in Constructor + + + + Member Name + + + + Parameter Name + + + + Default Value + + + + + CppEditor::Internal::CppCodeModelSettingsWidget + + Interpret ambiguous headers as C headers + + + + Do not index files greater than + + + + MB + MB + + + Ignore precompiled headers + + + + <html><head/><body><p>When precompiled headers are not ignored, the parsing for code completion and semantic highlighting will process the precompiled header before processing any file.</p></body></html> + + + + Use built-in preprocessor to show pre-processed files + + + + Uncheck this to invoke the actual compiler to show a pre-processed source file in the editor. + + + + General + 概要 + + + Code Model + + + + + CppEditor::Internal::CppCodeStyleSettingsPage + + General + 概要 + + + Content + 内容 + + + Indent + 缩进 + + + "public", "protected" and +"private" within class body + 在类中的"public", "protected" +和"private" + + + Declarations relative to "public", +"protected" and "private" + 与"public","protected" +和"private"相关的声明 + + + Statements within function body + + + + Statements within blocks + 在块中的语句 + + + Declarations within +"namespace" definition + 在"命名空间"定义中的声明 + + + Braces + 括号 + + + Indent Braces + 缩进括号 + + + Class declarations + 类的声明 + + + Namespace declarations + 命名空间的声明 + + + Enum declarations + 枚举类型的声明 + + + Function declarations + + + + Blocks + 代码段 + + + "switch" + "switch" + + + Indent within "switch" + 在"switch"内缩进 + + + "case" or "default" + "case" 或 "default" + + + Statements relative to +"case" or "default" + "case" 或 "default" +的相关语句 + + + Blocks relative to +"case" or "default" + "case" 或 "default" +相关的代码段 + + + "break" statement relative to +"case" or "default" + "case" 或 "default"相关的 +"break"语句 + + + Alignment + 对齐方式 + + + Align + 对齐 + + + <html><head/><body> +Enables alignment to tokens after =, += etc. When the option is disabled, regular continuation line indentation will be used.<br> +<br> +With alignment: +<pre> +a = a + + b +</pre> +Without alignment: +<pre> +a = a + + b +</pre> +</body></html> + <html><head/><body> +对诸如 =, += 等之后出现的符号开启对齐。当该选项被禁用时,将使用普通的续行缩进。<br> +<br> +对齐: +<pre> +a = a + + b +</pre> +无对齐: +<pre> +a = a + + b +</pre> +</body></html> + + + Align after assignments + 赋值语句后对齐 + + + <html><head/><body> +Adds an extra level of indentation to multiline conditions in the switch, if, while and foreach statements if they would otherwise have the same or less indentation than a nested statement. + +For four-spaces indentation only if statement conditions are affected. Without extra padding: +<pre> +if (a && + b) + c; +</pre> +With extra padding: +<pre> +if (a && + b) + c; +</pre> +</body></html> + <html><head/><body> +如果switch、if、while和foreach表达式中的多行条件的缩进等于或少于其他嵌套语句,则为其多添加一层缩进。 + +如果是四个空格方式的缩进,则只修改if语句。不添加额外空白: +<pre> +if (a && + b) + c; +</pre> +添加额外空白: +<pre> +if (a && + b) + c; +</pre> +</body></html> + + + Add extra padding to conditions +if they would align to the next line + 如果条件语句需要与下一行对齐, +则添加额外的空白 + + + Pointers and References + + + + Bind '*' and '&&' in types/declarations to + + + + <html><head/><body>This does not apply to the star and reference symbol in pointer/reference to functions and arrays, e.g.: +<pre> int (&rf)() = ...; + int (*pf)() = ...; + + int (&ra)[2] = ...; + int (*pa)[2] = ...; + +</pre></body></html> + + + + Identifier + + + + Type name + + + + Left const/volatile + + + + This does not apply to references. + + + + Right const/volatile + + + + + CppEditor::Internal::CppEditorDocument + + <b>Warning</b>: This file is not part of any project. The code model might have issues parsing this file properly. + + + + Note: Multiple parse contexts are available for this file. Choose the preferred one from the editor toolbar. + + + + + CppEditor::Internal::CppEditorOutline + + Sort Alphabetically + 按字母排序 + + + + CppEditor::Internal::CppEditorPlugin + + &C++ + C++(&C) + + + Switch Header/Source + 切换头文件/源文件 + + + Open Corresponding Header/Source in Next Split + + + + Meta+E, F4 + + + + Ctrl+E, F4 + + + + Show Preprocessed Source + + + + Show Preprocessed Source in Next Split + + + + The license template. + + + + The configured path to the license template + + + + Insert "#pragma once" instead of "#ifndef" include guards into header file + + + + C++ + SnippetProvider + C++ + + + Header/Source + text on macOS touch bar + + + + Follow + text on macOS touch bar + + + + Additional Preprocessor Directives... + + + + Switch Between Function Declaration/Definition + + + + Shift+F2 + Shift+F2 + + + Decl/Def + text on macOS touch bar + + + + Open Function Declaration/Definition in Next Split + + + + Meta+E, Shift+F2 + + + + Ctrl+E, Shift+F2 + + + + Follow Symbol Under Cursor to Type + + + + Ctrl+Shift+F2 + Ctrl+Shift+F2 + + + Follow Symbol to Type in Next Split + + + + Meta+E, Ctrl+Shift+F2 + + + + Ctrl+E, Ctrl+Shift+F2 + + + + Find References With Access Type + + + + Open Type Hierarchy + 打开类型分层 + + + Meta+Shift+T + Meta+Shift+T + + + Ctrl+Shift+T + Ctrl+Shift+T + + + Open Include Hierarchy + + + + Meta+Shift+I + + + + Ctrl+Shift+I + Ctrl+Shift+I + + + Reparse Externally Changed Files + + + + Inspect C++ Code Model... + + + + Meta+Shift+F12 + + + + Ctrl+Shift+F12 + Ctrl+Shift+F12 + + + Clangd + + + + + CppEditor::Internal::CppFileSettingsPage + + Headers + 头文件 + + + &Suffix: + + + + S&earch paths: + + + + Comma-separated list of header paths. + +Paths can be absolute or relative to the directory of the current open document. + +These paths are used in addition to current directory on Switch Header/Source. + + + + &Prefixes: + + + + Comma-separated list of header prefixes. + +These prefixes are used in addition to current file name on Switch Header/Source. + + + + Include guards + + + + Uses "#pragma once" instead of "#ifndef" include guards. + + + + Use "#pragma once" instead of "#ifndef" guards + + + + Sources + 源文件 + + + S&uffix: + + + + Se&arch paths: + + + + Comma-separated list of source paths. + +Paths can be absolute or relative to the directory of the current open document. + +These paths are used in addition to current directory on Switch Header/Source. + + + + P&refixes: + + + + Comma-separated list of source prefixes. + +These prefixes are used in addition to current file name on Switch Header/Source. + + + + &Lower case file names + + + + License &template: + + + + + CppEditor::Internal::CppFileSettingsWidget + + /************************************************************************** +** %1 license header template +** Special keywords: %USER% %DATE% %YEAR% +** Environment variables: %$VARIABLE% +** To protect a percent sign, use '%%'. +**************************************************************************/ + + + + + Edit... + 编辑... + + + Choose Location for New License Template File + 为新的版权许可模板文件选择一个存储位置 + + + + CppEditor::Internal::CppFindReferences + + Reads + + + + Writes + + + + Declarations + 声明 + + + Other + 其他 + + + C++ Usages: + C++ 使用: + + + Searching for Usages + + + + Re&name %n files + + + + + + Files: +%1 + + + + C++ Macro Usages: + C++ 宏的使用: + + + + CppEditor::Internal::CppIncludeHierarchyFactory + + Include Hierarchy + + + + + CppEditor::Internal::CppIncludeHierarchyModel + + (none) + + + + (cyclic) + + + + Includes + + + + Included by + + + + + CppEditor::Internal::CppIncludeHierarchyWidget + + No include hierarchy available + + + + Synchronize with Editor + 与编辑器同步 + + + + CppEditor::Internal::CppIncludesFilter + + Matches all files that are included by all C++ files in all projects. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + + + + + CppEditor::Internal::CppOutlineTreeView + + Expand All + 展开全部 + + + Collapse All + 折叠全部 + + + + CppEditor::Internal::CppPreProcessorDialog + + Additional C++ Preprocessor Directives + + + + Additional C++ Preprocessor Directives for %1: + + + + + CppEditor::Internal::CppQuickFixProjectSettingsWidget + + Custom settings are saved in a file. If you use the global settings, you can delete that file. + + + + Delete Custom Settings File + + + + Resets all settings to the global settings. + + + + Reset to Global + + + + + CppEditor::Internal::CppQuickFixProjectsSettings + + Quick Fix settings are saved in a file. Existing settings file "%1" found. Should this file be used or a new one be created? + + + + Switch Back to Global Settings + + + + Use Existing + + + + Create New + + + + + CppEditor::Internal::CppTypeHierarchyFactory + + Type Hierarchy + 类型层次 + + + + CppEditor::Internal::CppTypeHierarchyWidget + + No type hierarchy available + 没有可用的类型层次 + + + Bases + 基类 + + + Derived + 派生类 + + + Evaluating Type Hierarchy + + + + Evaluating type hierarchy... + + + CppEditor::Internal::FunctionDeclDefLink @@ -44517,36 +13421,2591 @@ Please choose a valid package name for your application (e.g. "org.example. - QuickFix::ExtractFunction + CppEditor::Internal::InsertVirtualMethodsDialog - Extract Function - 解压缩函数 + Insert Virtual Functions + - Extract Function Refactoring - 解压缩函数的重构 + &Functions to insert: + - Enter function name - 输入函数名 + Filter + 过滤器 - Invalid function name - 无效的函数名 + &Hide reimplemented functions + + + + &Insertion options: + + + + Insert only declarations + + + + Insert definitions inside class + + + + Insert definitions outside class + + + + Insert definitions in implementation file + + + + Add "&virtual" to function declaration + + + + Add "override" equivalent to function declaration: + + + + Clear Added "override" Equivalents + - IndexingSupport + CppEditor::Internal::ParseContextModel - Parsing - 分析中 + <p><b>Active Parse Context</b>:<br/>%1</p><p>Multiple parse contexts (set of defines, include paths, and so on) are available for this file.</p><p>Choose a parse context to set it as the preferred one. Clear the preference from the context menu.</p> + + + + + CppEditor::Internal::ParseContextWidget + + Clear Preferred Parse Context + + + + + CppEditor::Internal::SymbolsFindFilter + + Searching for Symbol + + + + C++ Symbols: + C++符号: + + + Classes + + + + Functions + + + + Enums + 枚举 + + + Declarations + 声明 + + + Scope: %1 +Types: %2 +Flags: %3 + 范围:%1 +类型:%2 +标志:%3 + + + All + 所有 + + + Projects + 项目 + + + + CppEditor::Internal::SymbolsFindFilterConfigWidget + + Types: + 类型: + + + Classes + + + + Functions + + + + Enums + 枚举 + + + Declarations + 声明 + + + Projects only + 仅显示项目 + + + All files + 所有文件 + + + + CppEditor::OverviewModel + + <Select Symbol> + + + + <No Symbols> + <没有符号> + + + + CppEditor::QuickFix + + Insert Virtual Functions of Base Classes + + + + Rewrite Using %1 + 使用 %1 重写 + + + Swap Operands + 交换操作数 + + + Rewrite Condition Using || + 使用 || 重写条件 + + + Split Declaration + 分离声明 + + + Add Curly Braces + 添加大括号 + + + Move Declaration out of Condition + 将声明移到条件之外 + + + Split if Statement + 分离if语句 + + + Enclose in %1(...) + 封装在 %1(...) + + + Convert to String Literal + 转换为文本字符串 + + + Convert to Character Literal and Enclose in QLatin1Char(...) + 转换为字符并用QLatin1Char(...)封装 + + + Convert to Character Literal + 转换为文本字符 + + + Mark as Translatable + 标记为可翻译 + + + Convert to Objective-C String Literal + 转换为Objective-C字符串 + + + Convert to Hexadecimal + 转换为16进制 + + + Convert to Octal + 转换为8进制 + + + Convert to Decimal + 转换为10进制 + + + Convert to Binary + + + + Add Local Declaration + 添加本地声明 + + + Convert to Camel Case + 转换为驼峰命名法 + + + Add #include %1 + 添加#include %1 + + + Add forward declaration for %1 + + + + Switch with Previous Parameter + 与上一个参数切换 + + + Switch with Next Parameter + 与下一个参数切换 + + + Reformat to "%1" + + + + Reformat Pointers or References + + + + Complete Switch Statement + 完成Switch语句 + + + Extract Constant as Function Parameter + + + + Move Definition Outside Class + + + + Move Definition to %1 + + + + Move All Function Definitions Outside Class + + + + Move All Function Definitions to %1 + + + + Move Definition to Class + + + + Assign to Local Variable + + + + Optimize for-Loop + + + + Escape String Literal as UTF-8 + + + + Unescape String Literal as UTF-8 + + + + Convert connect() to Qt 5 Style + + + + Remove All Occurrences of "using namespace %1" in Global Scope and Adjust Type Names Accordingly + + + + Remove "using namespace %1" and Adjust Type Names Accordingly + + + + + CppEditor::Quickfix + + Add Class Member "%1" + + + + Provide the type + + + + Data type: + + + + + CppIndexer + + C++ Indexer: Skipping file "%1" because it is too big. + + + + + CppQuickFixSettingsWidget + + Generated Function Locations + + + + Default + 默认 + + + ≥ + + + + lines + + + + Generate Getters + + + + Generate Setters + + + + In .cpp file: + + + + Outside class: + + + + Inside class: + + + + Getter Setter Generation Properties + + + + Getter name: + + + + For example, new<Name> + + + + Setter name: + + + + Setters should be slots + + + + Generate signals with the new value as parameter + + + + Getter attributes: + + + + Setter parameter name: + + + + Reset name: + + + + Signal name: + + + + See tool tip for more information + + + + Normally reset<Name> + + + + For example, [[nodiscard]] + + + + Normally <name>Changed + + + + Member variable name: + + + + For example, m_<name> + + + + Missing Namespace Handling + + + + Generate missing namespaces + + + + Add "using namespace ..." + + + + Rewrite types to match the existing namespaces + + + + <html><head/><body><p>Uncheck this to make Qt Creator try to derive the type of expression in the &quot;Assign to Local Variable&quot; quickfix.</p><p>Note that this might fail for more complex types.</p></body></html> + + + + Use type "auto" when creating new variables + + + + Custom Getter Setter Templates + + + + Template + + + + Types: + 类型: + + + Separate the types by comma. + + + + Comparison: + + + + Assignment: + + + + Return expression: + + + + Return type: + + + + Use <new> and <cur> to access the parameter and current value. Use <type> to access the type and <T> for the template parameter. + + + + Add + 添加 + + + Remove + 删除 + + + Normally arguments get passed by const reference. If the Type is one of the following ones, the argument gets passed by value. Namespaces and template arguments are removed. The real Type must contain the given Type. For example, "int" matches "int32_t" but not "vector<int>". "vector" matches "std::pmr::vector<int>" but not "std::optional<vector<int>>" + + + + Value types: + + + + Return non-value types by const reference + + + + Use <name> for the variable +Use <camel> for camel case +Use <snake> for snake case +Use <Name>, <Camel> and <Snake> for upper case +e.g. name = "m_test_foo_": +"set_<name> => "set_test_foo" +"set<Name> => "setTest_foo" +"set<Camel> => "setTestFoo" + + + + + CppSourceProcessor + + %1: No such file or directory + %1: 没有文件或者目录 + + + %1: Could not get file contents + + + + + CppTypeHierarchyTreeView + + Open in Editor + + + + Open Type Hierarchy + 打开类型分层 + + + Expand All + 展开全部 + + + Collapse All + 折叠全部 + + + + Cppcheck::Internal::CppcheckOptionsPage + + Cppcheck + + + + + Cppcheck::Internal::CppcheckPlugin + + Cppcheck + + + + Go to previous diagnostic. + + + + Go to next diagnostic. + + + + Clear + + + + Cppcheck... + + + + + Cppcheck::Internal::CppcheckTool + + Cppcheck started: "%1". + + + + Cppcheck finished. + + + + + Cppcheck::Internal::DiagnosticView + + Cppcheck Diagnostics + + + + + Cppcheck::Internal::DiagnosticsModel + + Diagnostic + + + + + Cppcheck::Internal::ManualRunDialog + + Cppcheck Run Configuration + + + + Analyze + 分析 + + + + CppcheckOptionsPage + + Warnings + + + + Style + 风格 + + + Performance + + + + Portability + + + + Information + + + + Unused functions + + + + Missing includes + + + + Inconclusive errors + + + + Check all define combinations + + + + Show raw output + + + + Add include paths + + + + Calculate additional arguments + + + + Disables multithreaded check. + + + + Comma-separated wildcards of full file paths. Files still can be checked if others include them. + + + + Can find missing includes but makes checking slower. Use only when needed. + + + + Like C++ standard and language. + + + + Binary: + + + + Checks: + + + + Custom arguments: + + + + Ignored file patterns: + 被忽略的文件模式: + + + + CrashHandler + + + +Collecting backtrace aborted by user. + + + + + CrashHandlerDialog + + Dialog + 对话框 + + + Icon + 图标 + + + Some useful information here... + + + + &Restart Qt Creator on close + + + + Copy the whole contents to clipboard. + + + + C&opy to clipboard + + + + Open the bug tracker web site. + + + + Report this &bug + + + + Debug the application with a new instance of Qt Creator. During debugging the crash handler will be hidden. + + + + Attach and &Debug + + + + Quit the handler and the crashed application. + + + + &Close + + + + &Restart %1 on close + + + + Run Debugger And Abort Collecting Backtrace? + + + + <html><head/><body><p><b>Run the debugger and abort collecting backtrace?</b></p><p>You have requested to run the debugger while collecting the backtrace was not finished.</p></body></html> + + + + Do not &ask again. + + + + %1 has closed unexpectedly (Signal "%2") + + + + <p><b>%1.</b></p><p>Please file a <a href='%2'>bug report</a> with the debug information provided below.</p> + + + + from revision %1 + + + + %1 %2%3, based on Qt %4 (%5 bit) + + + + + + CtfVisualizer + + Title + 标题 + + + Count + + + + Total Time + 总时间 + + + Percentage + + + + Minimum Time + + + + Average Time + + + + Maximum Time + + + + Stack Level %1 + + + + Value + + + + Min + + + + Max + + + + Start + + + + Wall Duration + + + + Unfinished + + + + true + + + + Thread %1 + + + + Categories + + + + Arguments + 参数 + + + Instant + + + + Scope + + + + global + + + + process + + + + thread + + + + Return Arguments + + + + CTF Visualizer + + + + Cannot read the CTF file. + + + + The trace contains threads with stack depth > 512. +Do you want to display them anyway? + + + + Chrome Trace Format Viewer + + + + Load JSON File + + + + Restrict to Threads + + + + Timeline + 时间轴 + + + Reset Zoom + 重置缩放 + + + Statistics + + + + Load Chrome Trace Format File + + + + JSON File (*.json) + + + + The file does not contain any trace data. + + + + Loading CTF File + + + + Chrome Trace Format Visualizer + + + + + CustomToolChain + + Custom + + + + GCC + GCC + + + Clang + Clang + + + ICC + + + + MSVC + MSVC Debugger - Delete Breakpoint - 删除断点 + General + 概要 + + + Locals && Expressions + '&&' will appear as one (one is marking keyboard shortcut) + 局部变量和表达式(&&) + + + Debugger + Category under which Analyzer tasks are listed in Issues view + 调试器 + + + <Encoding error> + <编码错误> + + + Load Core File + 载入核心文件 + + + Use local core file: + 使用本地核心文件: + + + Select Executable + 选择执行档 + + + Kit: + 构建套件(Kit): + + + Core file: + 核心文件: + + + Override &start script: + 覆盖启动脚本(&S): + + + Select Remote Core File + 选择远程核心文件 + + + Select Core File + 选择核心文件 + + + Select Startup Script + 选择启动脚本 + + + Select Start Address + 选择开始地址 + + + Marker File: + 标记文件: + + + Marker Line: + 标记行: + + + Breakpoint Address: + 断点地址: + + + Property + 属性 + + + Breakpoint Type: + 断点类型: + + + Breakpoint + 断点 + + + Requested + 请求 + + + Obtained + 获得 + + + File Name: + 文件名: + + + Function Name: + 函数名: + + + Breakpoint on QML Signal Emit + 在QML信号发出时断点 + + + Data at 0x%1 + 数据在0x%1 + + + Data at %1 + 数据在%1 + + + Enabled + 启用 + + + Disabled + 禁用 + + + Line Number: + 行号: + + + Module: + 模块: + + + Message: + 消息: + + + Condition: + 条件: + + + Ignore Count: + 忽略次数: + + + Thread Specification: + 线程信息: + + + Function + 函数 + + + New + 新建 + + + Insertion requested + 请求插入 + + + Insertion proceeding + 执行插入 + + + Change requested + 请求改变 + + + Change proceeding + 执行改变 + + + Breakpoint inserted + 加入断点 + + + Removal requested + 移除请求 + + + Removal proceeding + 移除执行 + + + Dead + 死亡 + + + <invalid state> + Invalid breakpoint state. + <无效状态> + + + Breakpoint at "%1" + 在"%1"处的断点 + + + Breakpoint by File and Line + 文件和行处的断点 + + + Breakpoint by Function + 函数处断点 + + + Breakpoint by Address + 地址处断点 + + + Breakpoint at Function "main()" + 在"main"函数处断点 + + + Watchpoint at Address + 监视点在地址 + + + Watchpoint at Expression + 监视点在表达式 + + + Breakpoint at JavaScript throw + JavaScript 异常处的断点 + + + Unknown Breakpoint Type + 未知的断点类型 + + + File + 文件 + + + Line + 行号 + + + Number + 编号 + + + Condition + 条件 + + + Ignore + 忽略 + + + Breakpoint will only be hit if this condition is met. + 只有当条件满足时才会到达断点。 + + + Breakpoint will only be hit after being ignored so many times. + 断点将会在被忽略足够次数后到达。 + + + (all) + (全部) + + + Breakpoint will only be hit in the specified thread(s). + 断点只会在指定线程中被触发。 + + + Startup + 启动 + + + Use CDB &console + 使用 CDB 控制台(&C) + + + Correct breakpoint location + 校准断点位置 + + + Log Time Stamps + 记录时间戳 + + + Operate by Instruction + 依照命令操作 + + + Dereference Pointers Automatically + 自动去除对指针的引用 + + + Show "std::" Namespace in Types + 在类型中显示“std::”命名空间 + + + Show Qt's Namespace in Types + 在类型中显示Qt的命名空间 + + + Use Debugging Helpers + 使用调试助手 + + + Sort Members of Classes and Structs Alphabetically + 按字母顺序排序类和结构体的成员 + + + Adjust Breakpoint Locations + 对准断点位置 + + + Break on "throw" + 在抛出(throw)处中断 + + + Break on "catch" + 在捕获(catch)处中断 + + + Break on "qWarning" + 遇到"qWarning"时中断 + + + Break on "qFatal" + 遇到"qFatal"时中断 + + + Break on "abort" + 在“abort”时中断 + + + Use Dynamic Object Type for Display + 显示时使用动态对象类型(Dynamic Object Type) + + + Automatically Quit Debugger + 自动退出调试器 + + + Use tooltips in main editor when debugging + 调试时在主编辑器中使用工具提示 + + + Use Tooltips in Locals View when Debugging + 调试时在“局部变量”视图中使用工具提示 + + + Use Tooltips in Breakpoints View when Debugging + 调试时在“断点”视图中使用工具提示 + + + Skip Known Frames + 跳过已知帧 + + + Enable Reverse Debugging + 打开反向调试 + + + Reload Full Stack + 重新载入完整堆栈 + + + Create Full Backtrace + 创建完整回溯(Backtrace) + + + Use code model + 使用代码模型 + + + Display thread names + 显示线程名称 + + + An exception was triggered. + 异常被触发。 + + + Stopping temporarily. + 临时停止。 + + + Executable Failed + 执行失败 + + + Jumped. Stopped. + 跳转。停止。 + + + Application exited with exit code %1 + 程序退出,退出代码 %1 + + + Application exited after receiving signal %1 + 程序接收到信号 %1 后退出 + + + Value changed from %1 to %2. + 值从%1 变到 %2。 + + + Normal + 正常 + + + Cannot Read Symbols + 无法读取符号 + + + Cannot read symbols for module "%1". + 无法为模块"%1"读取符号。 + + + Could not find a widget. + 无法找到控件。 + + + GDB I/O Error + GDB I/O 错误 + + + Setting up inferior... + 正在设置 inferior... + + + Stop requested... + 请求停止... + + + Process failed to start. + 进程启动失败。 + + + Executable failed: %1 + 执行失败: %1 + + + Stopping temporarily + 临时停止 + + + Step requested... + 请求单步执行... + + + Finish function requested... + 请求完成函数... + + + Step next requested... + 请求执行下一步... + + + Run to line %1 requested... + 请求执行到行%1... + + + Run to function %1 requested... + 请求执行到函数: %1 ... + + + Immediate return from function requested... + 请求立即从函数中返回... + + + Found. + 已找到。 + + + The gdb process could not be stopped: +%1 + Gdb 进程无法停止: +%1 + + + Application process could not be stopped: +%1 + 应用进程无法被停止: +%1 + + + Connecting to remote server failed: +%1 + 连接远程服务器失败: +%1 + + + Disassembler failed: %1 + 反汇编失败:%1 + + + Stopped at breakpoint %1 in thread %2. + 在线程 %2 的断点 %1 处停止。 + + + Snapshot Creation Error + 快照生成错误 + + + Cannot create snapshot file. + 无法创建快照文件。 + + + Setting breakpoints... + 正在设置断点... + + + Execution Error + 执行错误 + + + Cannot continue debugged process: + + 无法继续调试进程: + + + + Library %1 loaded. + 载入了库%1 + + + Library %1 unloaded. + 卸载了库%1 + + + Thread group %1 created. + 创建了线程组 %1 。 + + + Thread %1 created. + 线程 %1 被创建。 + + + Thread group %1 exited. + 线程组 %1 退出了。 + + + Thread %1 in group %2 exited. + 组别%2 中的线程 %1退出了。 + + + Thread %1 selected. + 选中了线程%1 。 + + + Reading %1... + 读取%1中 ... + + + Retrieving data for stack view... + 为堆栈视图获取数据... + + + <%n items> + + <%n 项> + + + + Finished retrieving data. + 获取数据完成。 + + + GDB timeout: + Gdb超时时间: + + + sec + + + + Skip known frames when stepping + 当单步调试时跳过已知的帧 + + + <html><head/><body><p>Allows <i>Step Into</i> to compress several steps into one step +for less noisy debugging. For example, the atomic reference +counting code is skipped, and a single <i>Step Into</i> for a signal +emission ends up directly in the slot connected to it. + <html><head/><body><p>允许 <i>‘单步进入’</i>将多个步骤合并为一步 +以减少调试的冗余情况。例如原子级的计数代码,和 +信号发出引起的单个 <i>‘单步进入’</i> 直接进到与信号连接的槽。 + + + Show a message box when receiving a signal + 接到信号时显示消息窗口 + + + Displays a message box as soon as your application +receives a signal like SIGSEGV during debugging. + 当您的应用程序在调试过程中收到系统信号, +比如SIGSEGV时,显示一个消息窗口. + + + Adjust breakpoint locations + 对准断点位置 + + + 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允许在不生成代码的源码行设置断点。 +在这种情况下断点被调整到下一个实际生成代码的源码行。 +这个选项通过在源码编辑器中移动断点标记,来显示这项变动。 + + + Use dynamic object type for display + 显示时使用动态对象类型(dynamic object type) + + + Specifies whether the dynamic or the static type of objects will be displayed. Choosing the dynamic type might be slower. + 选择显示对象的动态的或静态的类型。选择动态类型的话可能会较慢。 + + + Load .gdbinit file on startup + 启动时载入.gdbinit 文件 + + + Allows or inhibits reading the user's default +.gdbinit file on debugger startup. + 允许或禁止调试器启动时读取 +用户的默认.gdbinit文件。 + + + Warn when debugging "Release" builds + 在调试"Release"构建时发出警告 + + + Use asynchronous mode to control the inferior + 使用异步模式来控制底层 + + + Use common locations for debug information + 对调试信息使用公共位置 + + + Enable reverse debugging + 打开反向调试 + + + Additional Startup Commands + 额外的启动命令 + + + GDB + GDB + + + Cannot create temporary file: %1 + 无法创建临时文件: %1 + + + Cannot create FiFo %1: %2 + 无法创建FIFo %1 : %2 + + + Cannot open FiFo %1: %2 + 无法打开FIFo %1 : %2 + + + Running requested... + 执行请求... + + + Stopped. + 已停止。 + + + Source Files + 源文件 + + + ... + ... + + + <More> + <更多> + + + Address: + 地址: + + + Function: + 函数: + + + File: + 文件: + + + Line: + 行号: + + + Note: + 注意: + + + Sources for this frame are available.<br>Double-click on the file name to open an editor. + 可以查看该帧的源代码。<br>在文件名上双击以打开编辑器。 + + + Level + 级别 + + + Thread&nbsp;id: + 线程&nbsp;id: + + + Target&nbsp;id: + 目标&nbsp;id: + + + Name: + 名称: + + + State: + 状态: + + + Core: + 核心: + + + Stopped&nbsp;at: + 停止&nbsp;于: + + + ID + ID + + + Core + 核心 + + + State + 状态 + + + Target ID + 目标 ID + + + Details + 详情 + + + Name + 名称 + + + Executable: + 执行档: + + + Arguments: + 参数: + + + Threads + 线程 + + + %1 <shadowed %2> + Display of variables shadowed by variables of the same name in nested scopes: Variable %1 is the variable name, %2 is a simple count. + %1 <隐藏了 %2> + + + Expression + 表达式 + + + Internal Type + 内部类型 + + + Object Address + 对象地址 + + + Static Object Size + 静态对象大小 + + + %n bytes + + %n 个字节 + + + + Internal ID + 内部ID + + + <empty> + <空> + + + <uninitialized> + <未初始化> + + + <invalid> + <无效> + + + <not accessible> + <无法访问> + + + %1 Object at %2 + 在 %2 的 %1 对象 + + + %1 Object at Unknown Address + 未知地址处的 %1对象 + + + returned value + 返回值 + + + Locals + 局部变量 + + + Inspector + 检查器 + + + Expressions + 表达式 + + + Return Value + 返回值 + + + Tooltip + 工具提示 + + + Locals and Expressions + 局部变量和表达式 + + + Use Display Format Based on Type + 使用基于类型的显示格式 + + + Clear Contents + 清空内容 + + + Save Contents + 保存内容 + + + CDB + CDB + + + Adapter start failed + 适配器启动失败 + + + Python Error + Python错误 + + + Pdb I/O Error + Pdb I/O 错误 + + + The Pdb process crashed some time after starting successfully. + Pdb 进程在正常启动后崩溃。 + + + An error occurred when attempting to write to the Pdb process. For example, the process may not be running, or it may have closed its input channel. + 尝试写入 Pdb 进程时发生错误。例如,进程可能不在运行或者它关闭了自己的输入通道。 + + + An error occurred when attempting to read from the Pdb process. For example, the process may not be running. + 尝试从 Pdb 进程读取时发生错误。例如,进程可能不在运行。 + + + Function Name + 函数名 + + + Basic + 基础 + + + Breakpoint &type: + 断点类型(&T): + + + &File name: + 文件名(&F): + + + &Line number: + 行号(&L): + + + &Enabled: + 启用(&E): + + + &Address: + 地址(&A): + + + Fun&ction: + 函数(&C): + + + Advanced + 高级 + + + T&racepoint only: + 仅跟踪点(&R): + + + &One shot only: + 仅触发一次(&O): + + + Pat&h: + 路径(&H): + + + &Module: + 模块(&M): + + + Use Engine Default + 使用默认引擎 + + + Use Full Path + 使用完整路径 + + + Use File Name + 使用文件名称 + + + &Commands: + 命令(&C): + + + C&ondition: + 条件(&O): + + + &Ignore count: + 忽略次数(&i): + + + &Expression: + 表达式(&E): + + + &Message: + 消息(&M): + + + Debugger Error + 调试器错误 + + + There is no CDB executable specified. + 没有指定CDB可执行档。 + + + Malformed stop response received. + 收到了格式错误的停止响应。 + + + Switching to main thread... + 切换到主线程... + + + Value %1 obtained from evaluating the condition of breakpoint %2, stopping. + 计算断点条件 %2获得了值%1, 停止。 + + + Value 0 obtained from evaluating the condition of breakpoint %1, continuing. + 计算断点条件 %1获得了值0, 继续。 + + + Select Local Cache Folder + 选择本地缓存目录 + + + Path: + 路径: + + + Already Exists + 已存在 + + + Cannot Create + 无法创建 + + + Remove Breakpoint + 删除断点 + + + Attempting to interrupt. + 正在尝试中断。 + + + Debug Information + 调试信息 + + + This debugger cannot handle user input. + 这个调试器无法处理用户的输入。 + + + Internal data breakpoint %1 at %2 triggered. + 在%2中的内部数据断点%1 被触发。 + + + Internal data breakpoint %1 at %2 in thread %3 triggered. + 线程%3中%2的内部数据断点%1 被触发。 + + + Internal data breakpoint %1 at 0x%2 triggered. + 在0x%2处的内部数据断点%1 被触发。 + + + Internal data breakpoint %1 at 0x%2 in thread %3 triggered. + 线程%3中0x%2处的内部数据断点%1 被触发。 + + + Loading finished. + 载入完成。 + + + Run failed. + 运行失败。 + + + Running. + 正在运行。 + + + Run requested... + 运行已请求... + + + Stopped: %1 (Signal %2). + 已停止: %1 (信号%2)。 + + + Stopped in thread %1 by: %2. + 在线程%1中停止,因为: %2。 + + + Interrupted. + 已中断。 + + + <p>The inferior stopped because it triggered an exception.<p>%1 + <p>底层停止了因为它触发了一个异常。<p>%1 + + + Exception Triggered + 异常被触发 + + + Taking notice of pid %1 + 注意pid %1 + + + Run to Address 0x%1 + 运行到地址0x%1 + + + Run to Line %1 + 运行到行%1 + + + Jump to Address 0x%1 + 跳到地址0x%1 + + + Jump to Line %1 + 跳到行%1 + + + Invalid debugger option: %1 + 无效的调试选项: %1 + + + A debugging session is still in progress. Terminating the session in the current state can leave the target in an inconsistent state. Would you still like to terminate it? + 一个调试会话正在运行中。强行结束会话可能会导致会话状态异常,即使如此还是要结束它吗? + + + Close Debugging Session + 关闭调试会话 + + + This does not seem to be a "Debug" build. +Setting breakpoints by file name and line number may fail. + 没有选择Debug构建方式.为文件的某行设置断点可能会失败. + + + Type Ctrl-<Return> to execute a line. + 键入Ctrl-<Return> 执行一行。 + + + Command: + 命令: + + + Log File + 日志文件 + + + Internal Name + 内部名称 + + + Full Name + 全名 + + + Edit Breakpoint Properties + 编辑断点属性 + + + &Condition: + 条件(&C): + + + &Thread specification: + 线程信息(&T): + + + Start a CDB Remote Session + 启动一个CDB远程会话 + + + &Connection: + 连接(&C): + + + Memory... + 内存... + + + No function selected. + 没有选择函数。 + + + Running to function "%1". + 运行到函数"%1"。 + + + Process %1 + %1: PID + 进程%1 + + + Attaching to local process %1. + attach到本地进程%1。 + + + Remote: "%1" + 远程:'%1' + + + Attaching to remote server %1. + 关联到远程服务器%1。 + + + Core file "%1" + 核心文件'%1' + + + Attaching to core file %1. + 关联到核心文件 %1。 + + + Crashed process %1 + 崩溃的进程%1 + + + Attaching to crashed process %1 + attach到崩溃的进程%1 + + + 0x%1 hit + Message tracepoint: Address hit. + 命中地址0x%1 + + + %1:%2 %3() hit + Message tracepoint: %1 file, %2 line %3 function hit. + 命中%1:%2 %3() + + + Add Message Tracepoint + 添加消息追踪点 + + + Executable file "%1" + 可执行文件:"%1" + + + Debugging file %1. + 调试文件%1。 + + + Cannot attach to process with PID 0 + 无法attach到PID为0的进程 + + + Set Breakpoint at 0x%1 + 在0x%1处设置断点 + + + Set Message Tracepoint at 0x%1... + 在0x%1处设置消息追踪点... + + + Save Debugger Log + 保存调试器日志 + + + User commands are not accepted in the current state. + 在当前状态下不能接收用户的命令。 + + + Debugger finished. + 调试器已结束。 + + + Continue + 继续 + + + Interrupt + 中断 + + + Abort Debugging + 终止调试 + + + Aborts debugging and resets the debugger to the initial state. + 终止调试并重置调试器到初始状态。 + + + Step Over + 单步跳过 + + + Step Into + 单步进入 + + + Step Out + 单步跳出 + + + Run to Line + 执行到行 + + + Run to Selected Function + 运行到选择的函数 + + + Immediately Return From Inner Function + 从内层函数立即返回 + + + Jump to Line + 跳到指定行 + + + Reverse Direction + 掉转方向 + + + Move to Called Frame + 移动到被调用的帧 + + + Move to Calling Frame + 移动到调用帧 + + + Error evaluating command line arguments: %1 + 命令行参数赋值错误: %1 + + + Start Debugging + 开始调试 + + + Start and Debug External Application... + 启动和调试外部应用程序... + + + Attach to QML Port... + 关联到QML端口... + + + Attach to Remote CDB Session... + 挂接到一个CDB会话... + + + Detach Debugger + 脱离调试器 + + + Interrupt Debugger + 中断调试器 + + + Stop Debugger + 停止调试 + + + Process Already Under Debugger Control + 进程已在调试器控制之下 + + + Set Breakpoint at Line %1 + 在第%1行设置断点 + + + Set Message Tracepoint at Line %1... + 在%1行设置消息追踪点... + + + Disassemble Function "%1" + 反汇编函数 "%1" + + + Starting debugger "%1" for ABI "%2"... + 为 ABI '%2'启动调试器'%1'... + + + Ctrl+Y + Ctrl+Y + + + F5 + F5 + + + Select + 选择 + + + Start Debugging Without Deployment + 忽略部署直接开始调试 + + + Load Core File... + 载入核心文件... + + + Attach to Running Application... + 关联到运行中的程序... + + + Attach to Running Application + 关联到运行中的程序 + + + Shift+Ctrl+Y + Shift+Ctrl+Y + + + Shift+F5 + Shift+F5 + + + Reset Debugger + 重置调试器 + + + Ctrl+Shift+O + Ctrl+Shift+O + + + F10 + F10 + + + Ctrl+Shift+I + Ctrl+Shift+I + + + F11 + F11 + + + Ctrl+Shift+T + Ctrl+Shift+T + + + Shift+F11 + Shift+F11 + + + Shift+F8 + Shift+F8 + + + Ctrl+F10 + Ctrl+F10 + + + Ctrl+F6 + Ctrl+F6 + + + F8 + F8 + + + F9 + F9 + + + Threads: + 线程: + + + Symbol + 符号 + + + Address + 地址 + + + Code + 代码 + + + Section + + + + Symbols in "%1" + "%1" 中的符号 + + + <new source> + <新源> + + + <new target> + <新目标> + + + Source path + 源路径 + + + Target path + 目标路径 + + + Add + 添加 + + + Add Qt sources... + 添加Qt 源码... + + + Remove + 删除 + + + Source Paths Mapping + 源码路径映射 + + + &Source path: + 源路径(&S): + + + &Target path: + 目标路径(&T): + + + Qt Sources + Qt 源码 + + + Debugging complex command lines is currently not supported on Windows. + 调试复杂的命令行目前在windows下尚不支持。 + + + Memory at 0x%1 + 在 0x%1地址处的内存 + + + No Memory Viewer Available + 没有可用的内存查看器 + + + The memory contents cannot be shown as no viewer plugin for binary data has been loaded. + 没有载入二进制数据查看器插件,无法显示内存内容。 + + + No application output received in time + 没有及时收到应用程序的输出 + + + Could not connect to the in-process QML debugger. +Do you want to retry? + 无法连接到进程内(in-process)QML调试器。 +您想要重试吗? + + + JS Source for %1 + %1的JS源码 + + + Run to line %1 (%2) requested... + 请求执行到行 %1(%2)... + + + QML Debugger disconnected. + QML调试器连接已断开。 + + + From: + 从: + + + To: + 到: + + + C++ exception + C++ 异常 + + + Thread creation + 线程创建 + + + Thread exit + 线程退出 + + + Load module: + 载入模块: + + + Unload module: + 卸载模块: + + + Output: + 输出: + + + Use alternating row colors in debug views + 在调试视图交替行的颜色 + + + Debugger font size follows main editor + 调试器字体和主编辑器一致 + + + Switch to previous mode on debugger exit + 在调试器退出时切换到上一个模式 + + + Show QML object tree + 显示QML对象树 + + + Maximum stack depth: + 最大堆栈深度: + + + <unlimited> + <无限制> + + + Stop when %1() is called + 当%1()被调用时停止 Delete All Breakpoints @@ -44560,22 +16019,10 @@ Please choose a valid package name for your application (e.g. "org.example. Delete Breakpoints of File 删除文件的断点 - - Adjust Column Widths to Contents - 按内容调整列宽 - Edit Breakpoint... 编辑断点... - - Associate Breakpoint With All Threads - 关联断点到所有线程 - - - Associate Breakpoint With Thread %1 - 关联断点到线程 %1 - Synchronize Breakpoints 同步断点 @@ -44604,9 +16051,6 @@ Please choose a valid package name for your application (e.g. "org.example. Add Breakpoint 添加断点 - - - Debugger Start Debugger 启动调试器 @@ -44619,18 +16063,6 @@ Please choose a valid package name for your application (e.g. "org.example. Select Working Directory 选择工作目录 - - Select Server Start Script - 选择服务器启动脚本 - - - This option can be used to point to a script that will be used to start a debug server. If the field is empty, Qt Creator's default methods to set up debug servers will be used. - 该选项可以用于指出用于启动调试服务器的脚本。如果该项为空,将使用Qt Creator默认的方法设置调试服务器。 - - - &Server start script: - 服务器启动脚本(&S): - Select Location of Debugging Information 选择调试信息的位置 @@ -44719,44 +16151,10 @@ Please choose a valid package name for your application (e.g. "org.example. Misc Types 其他类型 - - - Debugger - - Manage... - 管理... - The debugger to use for this kit. 当前构建套件使用的调试器。 - - Auto-detect - 自动检测 - - - Edit... - 编辑... - - - Debugger: - 调试器: - - - Debugger for "%1" - "%1"的调试器 - - - - Debugger - - &Engine: - 引擎(&E): - - - &Binary: - 二进制(&B): - 64-bit version 64 位版本 @@ -44765,26 +16163,10 @@ Please choose a valid package name for your application (e.g. "org.example. 32-bit version 32 位版本 - - <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>在这里指定到 <a href="%1">Windows 控制台调试器执行档</a>(%2)的路径。</p></body></html> - - - - Debugger No debugger set up. 调试器未设置。 - - Debugger '%1' not found. - 调试器'%1'未找到。 - - - Debugger '%1' not executable. - 调试器 '%1'不可执行。 - The debugger location must be given as an absolute path (%1). 调试器的路径必须给出绝对路径(%1)。 @@ -44797,36 +16179,6 @@ Please choose a valid package name for your application (e.g. "org.example. %1 using "%2" %1使用"%2" - - GDB Engine - GDB 引擎 - - - CDB Engine - CDB 引擎 - - - LLDB Engine - LLDB 引擎 - - - No kit found. - 未找到构建套件。 - - - - DeviceProcessesDialog - - &Attach to Process - &Attach到进程 - - - - Debugger - - Debugger Settings - 调试器的设置 - Enable C++ 启用C++ @@ -44835,10 +16187,6 @@ Please choose a valid package name for your application (e.g. "org.example. Enable QML 启用QML - - Debug port: - 调试端口: - <a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">What are the prerequisites?</a> <a href="qthelp://org.qt-project.qtcreator/doc/creator-debugging-qml.html">先决条件是什么?</a> @@ -44851,47 +16199,6 @@ Please choose a valid package name for your application (e.g. "org.example. Debug 调试 - - Unable to create a debugger engine of the type '%1' - 无法为类型'%1'创建调试引擎 - - - Starting executable failed: - - 启动执行档失败: - - - - Attached to process %1. - attach到进程%1。 - - - Open Qt Options - 打开Qt选项 - - - Turn off Helper Usage - 关闭助手应用 - - - Continue Anyway - 依然继续 - - - Debugging Helper Missing - 缺失调试助手 - - - The debugger could not load the debugging helper library. - 调试器无法装载调试帮助库。 - - - 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. In the Qt Creator Build and Run preferences page, select a Qt version, expand the Details section and click Build All. - 调试助手用于美化一些Qt和标准库类型数据的显示格式。它必须为每个使用的Qt版本单独编译。在Qt Creator的“构建和运行”首选项页面,选择一个Qt版本,打开 “详情”部分然后点击“构建所有”。 - - - - Debugger Error Loading Core File 载入核心文件出错 @@ -44912,137 +16219,30 @@ Please choose a valid package name for your application (e.g. "org.example. Symbols found. 找到符号。 - - No symbols found in core file <i>%1</i>. - 核心文件中找不到符号 <i>%1</i>。 - This can be caused by a path length limitation in the core file. 此问题可能是由核心文件中的路径长度限制引起。 - - Try to specify the binary using the <i>Debug->Start Debugging->Attach to Core</i> dialog. - 尝试用<i>调试->开始调试->关联到核心</i>对话框指定二进制文件。 - Attached to core. 关联到核心。 - - Attach to core "%1" failed: - - 关联到核心 %1失败: - - - - - Debugger Cannot set up communication with child process: %1 无法设置与子进程的通讯: %1 - - - Debugger - - The upload process failed to start. Shell missing? - 上载进程启动失败,缺少Shell? - - - The upload process crashed some time after starting successfully. - 上载进程成功启动后崩溃。 - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. 最后一次waitFor...()函数超时。QProcess的状态未改变,您可以尝试再次调用waitFor...()。 - - An error occurred when attempting to write to the upload process. For example, the process may not be running, or it may have closed its input channel. - 尝试写入上载进程时发生了错误。例如进程可能没有在运行,或者可能关闭了输入通道。 - - - An error occurred when attempting to read from the upload process. For example, the process may not be running. - 尝试从上载进程读取时发生错误。例如进程可能没有在运行。 - - - An unknown error in the upload process occurred. This is the default return value of error(). - 上传程序发生了一个未知错误。这是error()的默认返回值。 - No symbol file given. 未给出符号文件。 - - Reading debug information failed: - - 读取调试信息失败: - - - - Interrupting not possible - 不可中断 - - - - Debugger - - Remote Error - 远程错误 - - - Could not retrieve list of free ports: - 无法获取空闲端口的列表: - - - Process aborted - 进程退出 - - - Running command: %1 - 执行命令:%1 - - - Connection error: %1 - 连接错误:%1 - - - Starting gdbserver... - 启动 gdbserver... - - - Port %1 is now accessible. - 端口 %1 现在可以访问。 - - - Server started on %1:%2 - 服务器在 %1启动: %2 - - - Cannot find local executable for remote process "%1". - 找不到远程进程 %1的本地执行档。 - - - Cannot find ABI for remote process "%1". - 找不到远程进程 %1的ABI。 - - - Remote: "%1:%2" - 远程:'%1: %2" - - - Process gdbserver finished. Status: %1 - gdbserver进程完成。状态: %1 - - - - Debugger Download of remote file succeeded. 远程文件下载成功。 - - - Debugger Module Name 模块名称 @@ -45110,12 +16310,6 @@ Use "Examine Symbols" from the context menu to initiate a check. 这个模块既不包含也不引用调试信息。 单步进入模块或按文件和行号设置断点将不起作用。 - - - This module contains debug information. -Stepping into the module or setting breakpoints by file and is expected to work. - 这个模块包含调试信息。 -单步进入模块或按文件设置断点应当正常工作。 This module does not contain debug information itself, but contains a reference to external debug information. @@ -45127,9 +16321,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. End address of loaded module <未知> - - - Debugger Update Module List 更新模块列表 @@ -45178,92 +16369,10 @@ Stepping into the module or setting breakpoints by file and is expected to work. Show Dependencies of "%1" 显示"%1"的依赖 - - - Debugger - - Connecting to debug server %1:%2 - 连接到调试服务器%1:%2 - - - Error: (%1) %2 - %1=error code, %2=error message - 错误:(%1) %2 - - - Disconnected. - - - 连接已断开。 - - - - - Resolving host. - 正在解析主机。 - - - Connecting to debug server. - 正在连接到调试服务器。 - - - Connected. - - 已连接。 - - - - Closing. - 正在关闭。 - - - - Debugger - - Success: - 成功: - Properties 属性 - - - Debugger - - The %1 attribute at line %2, column %3 cannot be changed without reloading the QML application. - 要想更改第%2行第%3列的%1属性,必须重新载入QML应用。 - - - The %1 element at line %2, column %3 cannot be changed without reloading the QML application. - 要想更改第%2行第%3列的%1元素,必须重新载入QML应用。 - - - The changes in JavaScript cannot be applied without reloading the QML application. - 要想应用JavaScript中的更改,必须重新载入QML程序。 - - - The changes made cannot be applied without reloading the QML application. - 要想应用更改,必须重新载入QML程序。 - - - You can continue debugging, but behavior can be unexpected. - 您可以继续调试,但是可能得到意外的结果。 - - - Reload QML - 重新载入QML - - - - Debugger - - Anonymous Function - 匿名函数 - - - - Debugger Reload Register Listing 重新载入寄存器列表 @@ -45312,24 +16421,10 @@ Stepping into the module or setting breakpoints by file and is expected to work. Binary 二进制 - - - Debugger - - Snapshots - 快照 - Create Snapshot 创建快照 - - Remove Snapshot - 移除快照 - - - - Debugger Reload Data 重新载入数据 @@ -45338,10 +16433,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Open File 打开文件 - - Open File "%1"' - 打开文件 "%1" - Disassemble Function 反汇编函数 @@ -45366,9 +16457,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Frame #%1 (%2) 帧#%1 (%2) - - - Debugger <i>%1</i> %2 at #%3 HTML tooltip of a variable in the memory editor @@ -45383,14 +16471,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Register <i>%1</i> 寄存器<i>%1</i> - - Memory Referenced by Pointer "%1" (0x%2) - 被指针'%1'引用的内存 (0x%2) - - - Memory at Variable "%1" (0x%2) - 变量'%1'所在的内存 (0x%2) - Cannot Display Stack Layout 无法显示堆栈布局 @@ -45419,10 +16499,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Remove Expression Evaluator for "%1" 删除 "%1"的表达式求值器 - - Change Local Display Format... - 改变局部变量显示的格式... - Treat All Characters as Printable 所有字符都按可打印字符对待 @@ -45447,10 +16523,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Use Format for Type (Currently %1) 对类型(当前为 %1)使用格式 - - Use Display Format Based on Type - 按照类型选择显示的格式 - Change Display for Type "%1": 为类型"%1"改变显示: @@ -45459,30 +16531,14 @@ Stepping into the module or setting breakpoints by file and is expected to work. Automatic 自动 - - Change Display for Type or Item... - 为类型或项改变显示... - - - Add Data Breakpoint... - 添加数据断点... - Add Data Breakpoint at Object's Address (0x%1) 在对象地址(0x%1)添加数据断点 - - Add Data Breakpoint at Referenced Address (0x%1) - 在引用地址(0x%1)添加数据断点 - Add Data Breakpoint 添加数据断点 - - Setting a data breakpoint on an address will cause the program to stop when the data at the address is modified. - 在一个地址处设置数据断点,当这个地址处的数据被修改时将导致程序停止。 - Add Data Breakpoint at Expression 在表达式处添加数据断点 @@ -45491,14 +16547,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Add Data Breakpoint at Expression "%1" 在表达式"%1"处添加数据断点 - - Setting a data breakpoint on an expression will cause the program to stop when the data at the address given by the expression is modified. - 在一个表达式上设置数据断点,当数据在这个表达式处被修改时将导致程序停止。 - - - Insert New Expression Evaluator - 插入新的表达式求值器 - Select Widget to Add into Expression Evaluator 选择要添加到表达式求值器的控件 @@ -45527,22 +16575,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Open Memory View at Object's Address 在对象地址打开内存查看器 - - Open Memory Editor at Referenced Address (0x%1) - 在引用地址(0x%1)处打开内存编辑器 - - - Open Memory View at Referenced Address (0x%1) - 在引用地址(0x%1)处打开内存查看器 - - - Open Memory Editor at Referenced Address - 在引用的地址打开内存编辑器 - - - Open Memory View at Referenced Address - 在引用地址打开内存查看器 - Open Memory Editor Showing Stack Layout 打开内存编辑器显示堆栈布局 @@ -45551,33 +16583,4746 @@ Stepping into the module or setting breakpoints by file and is expected to work. Copy Contents to Clipboard 复制内容到剪贴板 - - Copy Value to Clipboard - 复制数值到剪贴板 - - - Show View Contents in Editor - 在编辑器中显示视图内容 - Close Editor Tooltips 关闭编辑器工具提示 - - Enter Expression for Evaluator - 为求值器输入表达式 - - - Expression: - 表达式: - Locals & Expressions 局部变量和表达式 + + &Copy + 复制(&C) + + + &Show in Editor + 在编辑器中显示(&S) + + + C&lear + hard to tell if it is lowercase L or capital i + 清空(&L) + + + Show debug, log, and info messages. + 显示调试、日志和信息消息。 + + + Warning + 警告 + + + Show warning messages. + 显示警告消息。 + + + Global + + + + Custom + + + + Restore Global + 还原全局设置 + + + Use Customized Settings + + + + Use Global Settings + + + + Copy + 复制 + + + Start Remote Analysis + 开始远程分析 + + + Working directory: + 工作目录: + + + File Name and Line Number + + + + Break on Memory Address + + + + Break When C++ Exception Is Thrown + + + + Break When C++ Exception Is Caught + + + + Break When Function "main" Starts + + + + Break When a New Process Is Forked + + + + Break When a New Process Is Executed + + + + Break When a System Call Is Executed + + + + Break on Data Access at Fixed Address + + + + Break on Data Access at Address Given by Expression + + + + Break on QML Signal Emit + + + + Break When JavaScript Exception Is Thrown + + + + <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> + + + + Specifying the module (base name of the library or executable) for function or file type breakpoints can significantly speed up debugger startup times (CDB, LLDB). + + + + Debugger commands to be executed when the breakpoint is hit. This feature is only available for GDB. + + + + Propagate Change to Preset Breakpoint + + + + Delete Selected Breakpoints + + + + Edit Selected Breakpoints... + + + + Disable Selected Locations + + + + Enable Selected Locations + + + + Disable Location + + + + Enable Location + + + + Internal ID: + + + + pending + + + + Hit Count: + + + + Display Name: + + + + Unclaimed Breakpoint + + + + Debuggee + + + + Remove All Breakpoints + + + + Are you sure you want to remove all breakpoints from all files in the current session? + + + + Failed to Start the Debugger + + + + Internal error: The extension %1 cannot be found. +If you have updated %2 via Maintenance Tool, you may need to rerun the Tool and select "Add or remove components" and then select the Qt > Tools > Qt Creator CDB Debugger Support component. +If you build %2 from sources and want to use a CDB executable with another bitness than your %2 build, you will need to build a separate CDB extension with the same bitness as the CDB you want to use. + + + + Trace point %1 in thread %2 triggered. + + + + Conditional breakpoint %1 in thread %2 triggered, examining expression "%3". + + + + Debugger encountered an exception: %1 + + + + The installed %1 is missing debug information files. +Locals and Expression might not be able to display all Qt types in a human readable format. + +Install the "Qt Debug Information Files" Package from the Maintenance Tool for this Qt installation to get all relevant symbols for the debugger. + + + + Missing Qt Debug Information + + + + Module loaded: %1 + + + + Various + + + + Break On + + + + Add Exceptions to Issues View + + + + Symbol Paths + + + + Source Paths + + + + CDB Paths + + + + Always adds a breakpoint on the <i>%1()</i> function. + + + + The debugging helpers are used to produce a nice display of objects of certain types like QString or std::map in the &quot;Locals&quot; and &quot;Expressions&quot; views. + + + + Extra Debugging Helper + + + + Debugging Helper Customization + + + + Show error messages. + + + + QML Debugger Console + + + + Can only evaluate during a debug session. + + + + Configure Debugger... + + + + Always Adjust View Column Widths to Contents + + + + Keep editor stationary when stepping + + + + Scrolls the editor only when it is necessary to keep the current line in view, instead of keeping the next statement centered at all times. + + + + Force logging to console + + + + Sets QT_LOGGING_TO_CONSOLE=1 in the environment of the debugged program, preventing storing debug output in system logs. + + + + Changes the font size in the debugger views when the font size in the main editor changes. + + + + <p>This switches the Locals and Expressions views to automatically dereference pointers. This saves a level in the tree view, but also loses data for the now-missing intermediate level. + + + + Additional arguments: + 额外的参数: + + + Catches runtime error messages caused by assert(), for example. + + + + Uses CDB's native console for console applications. This overrides the setting in Environment > System. The native console does not prompt on application exit. It is suitable for diagnosing cases in which the application does not start up properly in the configured console and the subsequent attach fails. + + + + Attempts to correct the location of a breakpoint based on file and line number shouldit be in a comment or in a line for which no code is generated. The correction is based on the code model. + + + + Use Python dumper + + + + First chance exceptions + + + + Second chance exceptions + + + + Ignore first chance access violations + + + + Show "std::" namespace in types + + + + <p>Shows "std::" prefix for types from the standard library. + + + + Show Qt's namespace in types + + + + <p>Shows Qt namespace prefix for Qt types. This is only relevant if Qt was configured with "-qtnamespace". + + + + Show QObject names if available + + + + <p>Displays the objectName property of QObject based items. Note that this can negatively impact debugger performance even if no QObjects are present. + + + + Sort members of classes and structs alphabetically + + + + <p>Selecting this causes the C++ Code Model being asked for variable scope information. This might result in slightly faster debugger operation but may fail for optimized code. + + + + <p>Displays names of QThread based threads. + + + + <p>Not all source code lines generate executable code. Putting a breakpoint on such a line acts as if the breakpoint was set on the next line that generated code. Selecting 'Adjust Breakpoint Locations' shifts the red breakpoint markers in such cases to the location of the true breakpoint. + + + + Load system GDB pretty printers + + + + Uses the default GDB pretty printers installed in your system or linked to the libraries your application uses. + + + + <html><head/><body>Adds common paths to locations of debug information such as <i>/usr/src/debug</i> when starting GDB.</body></html> + + + + Shows a warning when starting the debugger on a binary with insufficient debug information. + + + + <p>To execute simple Python commands, prefix them with "python".</p><p>To execute sequences of Python commands spanning multiple lines prepend the block with "python" on a separate line, and append "end" on a separate line.</p><p>To execute arbitrary Python scripts, use <i>python execfile('/path/to/script.py')</i>.</p> + + + + GDB commands entered here will be executed after GDB has been started, but before the debugged program is started or attached, and before the debugging helpers are initialized. + + + + GDB commands entered here will be executed after GDB has successfully attached to remote targets.</p><p>You can add commands to further set up the target here, such as "monitor reset" or "load". + + + + Python commands entered here will be executed after built-in debugging helpers have been loaded and fully initialized. You can load additional debugging helpers or modify existing ones here. + + + + Extra Debugging Helpers + + + + Path to a Python file containing additional data dumpers. + + + + Stopping and stepping in the debugger will automatically open views associated with the current location. + + + + Close temporary source views on debugger exit + + + + Closes automatically opened source views when the debugger exits. + + + + Close temporary memory views on debugger exit + + + + Closes automatically opened memory views when the debugger exits. + + + + Enables a full file path in breakpoints by default also for GDB. + + + + Set breakpoints using a full absolute path + + + + Bring %1 to foreground when application interrupts + + + + Debug all child processes + + + + <html><head/><body>Keeps debugging all children after a fork.</body></html> + + + + Use Intel style disassembly + + + + GDB shows by default AT&&T style disassembly. + + + + Use annotations in main editor when debugging + + + + <p>Shows simple variable values as annotations in the main editor during debugging. + + + + Use pseudo message tracepoints + + + + Uses Python to extend the ordinary GDB breakpoint class. + + + + Use automatic symbol cache + + + + It is possible for GDB to automatically save a copy of its symbol index in a cache on disk and retrieve it from there when loading the same binary in the future. + + + + <p>Enables tooltips for variable values during debugging. Since this can slow down debugging and does not provide reliable information as it does not use scope information, it is switched off by default. + + + + <p>Enables tooltips in the locals view during debugging. + + + + <p>Enables tooltips in the breakpoints view during debugging. + + + + Use Tooltips in Stack View when Debugging + + + + <p>Enables tooltips in the stack view during debugging. + + + + <html><head/><body><p>Enables stepping backwards.</p><p><b>Note:</b> This feature is very slow and unstable on the GDB side. It exhibits unpredictable behavior when going backwards over system calls and is very likely to destroy your debugging session.</p></body></html> + + + + Registers %1 for debugging crashed applications. + + + + Use %1 for post-mortem debugging + + + + Display string length: + + + + <p>The maximum length of string entries in the Locals and Expressions views. Longer than that are cut off and displayed with an ellipsis attached. + + + + Maximum string length: + + + + <p>The maximum length for strings in separated windows. Longer strings are cut off and displayed with an ellipsis attached. + + + + The number of seconds before a non-responsive GDB process is terminated. +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. + + + + Shows QML object tree in Locals and Expressions when connected and not stepping. + + + + Normally, the running server is identified by the IP of the device in the kit and the server port selected above. +You can choose another communication channel here, such as a serial line or custom ip:port. + + + + Override server channel: + + + + For example, %1 + "For example, /dev/ttyS0, COM1, 127.0.0.1:1234" + + + + Select SysRoot Directory + + + + This option can be used to override the kit's SysRoot setting. + + + + Override S&ysRoot: + + + + This option can be used to send the target init commands. + + + + &Init commands: + + + + This option can be used to send the target reset commands. + + + + &Reset commands: + + + + Use target extended-remote to connect: + + + + Attach to %1 + + + + <html><body><p>The remote CDB needs to load the matching %1 CDB extension (<code>%2</code> or <code>%3</code>, respectively).</p><p>Copy it onto the remote machine and set the environment variable <code>%4</code> to point to its folder.</p><p>Launch the remote CDB as <code>%5 &lt;executable&gt;</code> to use TCP/IP as communication protocol.</p><p>Enter the connection parameters as:</p><pre>%6</pre></body></html> + + + + Enter an address: + + + + Continue %1 + + + + Interrupt %1 + + + + Set or Remove Breakpoint + + + + Enable or Disable Breakpoint + + + + Restart Debugging + + + + Record Information to Allow Reversal of Direction + + + + Take Snapshot of Process State + + + + Launching Debugger + + + + Switches the debugger to instruction-wise operation mode. In this mode, stepping operates on single instructions and the source location view also shows the disassembled instructions. + + + + &Modules + + + + Reg&isters + + + + Peripheral Reg&isters + + + + &Stack + + + + &Threads + + + + &Expressions + + + + &Breakpoints + + + + Restarts the debugging session. + + + + Current debugger location of %1 + + + + Debugging has failed. + + + + Record information to enable stepping backwards. + + + + Note: + + + + This feature is very slow and unstable on the GDB side. It exhibits unpredictable behavior when going backwards over system calls and is very likely to destroy your debugging session. + + + + Operate in Reverse Direction + + + + The %1 process terminated. + + + + The %2 process terminated unexpectedly (exit code %1). + + + + Unexpected %1 Exit + + + + Reverse-execution history exhausted. Going forward again. + + + + Reverse-execution recording failed. + + + + %1 for "%2" + e.g. LLDB for "myproject", shows up i + + + + Stopped: "%1". + + + + <Unknown> + name + <未知> + + + <Unknown> + meaning + <未知> + + + <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> + + + + Signal Received + + + + Select a valid expression to evaluate. + + + + From + + + + To + + + + Flags + 标志 + + + Sections in "%1" + + + + The inferior is in the Portable Executable format. +Selecting %1 as debugger would improve the debugging experience for this binary format. + + + + The inferior is in the ELF format. +Selecting GDB or LLDB as debugger would improve the debugging experience for this binary format. + + + + Not found. + + + + Section %1: %2 + + + + The selected debugger may be inappropriate for the inferior. +Examining symbols and setting breakpoints by file name and line number may fail. + + + + + Not recognized + + + + Could not determine debugger type + + + + Type of Debugger Backend + + + + Unknown debugger version + + + + Unknown debugger ABI + + + + Path + + + + Type + 类型 + + + Type: + 类型: + + + ABIs: + + + + Version: + 版本: + + + Specify the path to the <a href="%1">Windows Console Debugger executable</a> (%2) here. + Label text for path configuration. %2 is "x-bit version". + + + + Clone + 克隆 + + + Clone of %1 + %1 的克隆 + + + New Debugger + + + + Restore + 还原 + + + Debuggers + + + + Auto-detected CDB at %1 + + + + Searching debuggers... + + + + System %1 at %2 + %1: Debugger engine type (GDB, LLDB, CDB...), %2: Path + + + + Detected %1 at %2 + + + + Found: "%1" + + + + Auto-detected uVision at %1 + + + + Removing debugger entries... + + + + Removed "%1" + + + + Debuggers: + + + + Debugger "%1" not found. + + + + Debugger "%1" not executable. + + + + The ABI of the selected debugger does not match the toolchain ABI. + + + + Name of Debugger + + + + Unknown debugger + + + + Unknown debugger type + + + + No Debugger + + + + %1 Engine + + + + &Views + 视图(&V) + + + Leave Debug Mode + + + + Toolbar + + + + Editor + 编辑器 + + + Next Item + 下一项 + + + Previous Item + 上一项 + + + Attach to Unstarted Application... + + + + Attach to Running Debug Server... + + + + Start and Break on Main + + + + Reload Debugging Helpers + + + + &Analyze + 分析(&A) + + + Debugger Runtime + + + + Breakpoint Preset + + + + Running Debuggers + + + + Debugger Perspectives + + + + Start Debugging or Continue + + + + Attach to Unstarted Application + + + + Restart the debugging session. + + + + Ctrl+F8 + Ctrl+F8 + + + Ctrl+F9 + Ctrl+F9 + + + Show Application on Top + + + + Option "%1" is missing the parameter. + + + + Only one executable allowed. + + + + The parameter "%1" of option "%2" does not match the pattern <handle>:<pid>. + + + + Start debugging of startup project + + + + Start Debugging of Startup Project + + + + Reload debugging helpers skipped as no engine is running. + + + + The process %1 is already under the control of a debugger. +%2 cannot attach to it. + + + + Not a Desktop Device Type + + + + It is only possible to attach to a locally running process. + + + + Cannot start %1 without a project. Please open the project and try again. + + + + Profile + + + + Release + + + + in Debug mode + + + + in Profile mode + + + + in Release mode + + + + with debug symbols (Debug or Profile mode) + + + + on optimized code (Profile or Release mode) + + + + Run %1 in %2 Mode? + 在%2 模式下运行%1吗? + + + <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 %3.</p><p>Run-time characteristics differ significantly between optimized and non-optimized binaries. Analytical findings for one mode may or may not be relevant for the other.</p><p>Running tools that need debug symbols on binaries that don't provide any may lead to missing function names or otherwise insufficient output.</p><p>Do you want to continue and run the tool in %2 mode?</p></body></html> + + + + <at least %n items> + + + + + + <optimized out> + + + + <null reference> + + + + <not callable> + + + + <out of scope> + + + + Debugger settings + 调试器的设置 + + + Additional startup commands: + + + + Unable to create a debugging engine. + + + + The kit does not have a debugger set. + + + + Unpacking core file to %1 + + + + Cannot debug: Local executable is not set. + + + + No executable specified. + + + + %1 is a 64 bit executable which can not be debugged by a 32 bit Debugger. +Please select a 64 bit Debugger in the kit settings for this kit. + + + + Debugged executable + + + + Unsupported CDB host system. + + + + Specify Debugger settings in Projects > Run. + + + + %1 - Snapshot %2 + + + + Some breakpoints cannot be handled by the debugger languages currently active, and will be ignored.<p>Affected are breakpoints %1 + + + + QML debugging needs to be enabled both in the Build and the Run settings. + + + + &Show this message again. + + + + Debugging %1 ... + + + + Debugging of %1 has finished with exit code %2. + + + + Debugging of %1 has finished. + + + + Not enough free ports for QML debugging. + + + + <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.</p><p>If source is specified as a regular expression by starting it with an open parenthesis, the paths in the ELF are matched with the regular expression to automatically determine the source path.</p><p>Example: <b>(/home/.*/Project)/KnownSubDir -> D:\Project</b> will substitute ELF built by any user to your local project directory.</p> + + + + <p>Add a mapping for Qt's source folders when using an unpatched version of Qt. + + + + <p>The source path contained in the debug information of the executable as reported by the debugger + + + + <p>The actual location of the source tree on the local machine + + + + Value + + + + Expression %1 in function %2 from line %3 to %4 + + + + No valid expression + + + + %1 (Previous) + + + + %1 (Restored) + + + + Expression too complex + + + + Perspective + + + + Debugged Application + + + + Debugger Preset + + + + Abort Debugger + + + + The gdb process failed to start. + + + + An exception was triggered: + + + + The gdb process has not responded to a command within %n seconds. This could mean it is stuck in an endless loop or taking longer than expected to perform the operation. +You can choose between waiting longer or aborting debugging. + + + + + + GDB Not Responding + + + + Give GDB More Time + + + + Stop Debugging + + + + Setting Breakpoints Failed + + + + Cannot jump. Stopped. + + + + Target line hit, and therefore stopped. + + + + Application exited normally. + + + + The selected build of GDB supports Python scripting, but the used version %1.%2 is not sufficient for %3. Supported versions are Python 2.7 and 3.x. + + + + Cannot continue debugged process: + + + + Failed to Shut Down Application + + + + There is no GDB binary available for binaries in format "%1". + + + + Retrieving data for stack view thread %1... + + + + Cannot create snapshot: + + + + Cannot Find Debugger Initialization Script + + + + 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. + + + + The working directory "%1" is not usable. + + + + Adapter Start Failed + + + + Failed to start application: + + + + Failed to Start Application + + + + Application started. + + + + Application running. + + + + Attached to stopped application. + + + + Attaching to process %1. + + + + Attached to running application. + + + + Failed to attach to application: %1 + + + + No symbols found in the core file "%1". + + + + Try to specify the binary in Debug > Start Debugging > Load Core File. + + + + Starting executable failed: + + + + No Remote Executable or Process ID Specified + + + + No remote executable could be determined from your build system files.<p>In case you use qmake, consider adding<p>&nbsp;&nbsp;&nbsp;&nbsp;target.path = /tmp/your_executable # path on device<br>&nbsp;&nbsp;&nbsp;&nbsp;INSTALLS += target</p>to your .pro file. + + + + Continue Debugging + + + + Attach to core "%1" failed: + + + + Continuing nevertheless. + + + + Additional Attach Commands + + + + GDB Extended + + + + The options below give access to advanced or experimental functions of GDB.<br>Enabling them may negatively impact your debugging experience. + + + + Extended + + + + Color at %1,%2: red: %3 green: %4 blue: %5 alpha: %6 + + + + <Click to display color> + + + + Copy Image + + + + Open Image Viewer + + + + Adapter start failed. + + + + Interrupt requested... + + + + Unable to start LLDB "%1": %2 + + + + LLDB I/O Error + + + + The LLDB process failed to start. Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. + + + + The LLDB process crashed some time after starting successfully. + + + + An error occurred when attempting to write to the LLDB process. For example, the process may not be running, or it may have closed its input channel. + + + + An error occurred when attempting to read from the Lldb process. For example, the process may not be running. + + + + An unknown error in the LLDB process occurred. + + + + Download of remote file failed: %1 + + + + Select Executable or Symbol File + + + + Select a file containing debug information corresponding to the core file. Typically, this is the executable or a *.debug file if the debug information is stored separately from the executable. + + + + This option can be used to override the kit's SysRoot setting + + + + &Executable or symbol file: + + + + Debugger &Log + + + + Repeat last command for debug reasons. + + + + Note: This log contains possibly confidential information about your machine, environment variables, in-memory data of the processes you are debugging, and more. It is never transferred over the internet by %1, and only stored to disk if you manually use the respective option from the context menu, or through mechanisms that are not under the control of %1's Debugger plugin, for instance in swap files, or other plugins you might use. +You may be asked to share the contents of this log when reporting bugs related to debugger operation. In this case, make sure your submission does not contain data you do not want to or you are not allowed to share. + + + + + + Global Debugger &Log + + + + Memory at Register "%1" (0x%2) + + + + Register "%1" + + + + This module contains debug information. +Stepping into the module or setting breakpoints by file and line is expected to work. + + + + Show Source Files for Module + + + + Show Sections in File "%1" + + + + Show Sections + + + + The Pdb process failed to start. Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. + + + + An unknown error in the Pdb process occurred. + + + + RO + + + + WO + + + + RW + + + + N/A + N/A + + + [%1..%2] + + + + Access + + + + View Groups + + + + Format + 格式 + + + Could not connect to the in-process QML debugger. %1 + + + + Starting %1 + 正在启动 %1 %2 + {1?} + + + Waiting for JavaScript engine to interrupt on next statement. + + + + Cannot evaluate %1 in current stack frame. + + + + Context: + + + + Global QML Context + + + + QML Debugger: Connection failed. + + + + Success: + + + + <anonymous> + + + + Content as ASCII Characters + + + + Content as %1-bit Signed Decimal Values + + + + Content as %1-bit Unsigned Decimal Values + + + + Content as %1-bit Hexadecimal Values + + + + Content as %1-bit Octal Values + + + + Content as %1-bit Binary Values + + + + Content as %1-bit Floating Point Values + + + + A group of registers. + + + + Edit bits %1...%2 of register %3 + + + + A file named "%1" already exists. + + + + The folder "%1" could not be created. + + + + Insert Symbol Server... + + + + Adds the Microsoft symbol server providing symbols for operating system libraries. Requires specifying a local cache directory. + + + + Insert Symbol Cache... + + + + Uses a directory to cache symbols used by the debugger. + + + + Set up Symbol Paths... + + + + Configure Symbol paths that are used to locate debug symbol files. + + + + Set up Symbol Paths + + + + <html><head/><body><p>The debugger is not configured to use the public Microsoft Symbol Server.<br/>This is recommended for retrieval of the symbols of the operating system libraries.</p><p><span style=" font-style:italic;">Note:</span> It is recommended, that if you use the Microsoft Symbol Server, to also use a local symbol cache.<br/>A fast internet connection is required for this to work smoothly,<br/>and a delay might occur when connecting for the first time and caching the symbols.</p><p>What would you like to set up?</p></body></html> + + + + Use Local Symbol Cache + + + + Use Microsoft Symbol Server + + + + Open File "%1" + + + + JS-Function: + + + + Receiver: + + + + Binary debug information is not accessible for this frame. This either means the core was not compiled with debug information, or the debug information is not accessible. + + + + Binary debug information is accessible for this frame. However, matching sources have not been found. + + + + Note that most distributions ship debug information in separate packages. + + + + Cannot open "%1": %2 + + + + Cannot Open Task File + + + + Copy Selection to Clipboard + + + + Save as Task File... + + + + Load QML Stack + + + + Terminal: Cannot open /dev/ptmx: %1 + + + + Terminal: ptsname failed: %1 + + + + Terminal: Error: %1 + + + + Terminal: Slave is no character device. + + + + Terminal: grantpt failed: %1 + + + + Terminal: unlock failed: %1 + + + + Terminal: Read failed: %1 + + + + Group&nbsp;id: + + + + Attach to Process Not Yet Started + + + + Reopen dialog when application finishes + + + + Reopens this dialog when application finishes. + + + + Continue on attach + + + + Debugger does not stop the application after attach. + + + + Start Watching + + + + Kit: + + + + Executable: + + + + Stop Watching + + + + Select valid executable. + + + + Not watching. + + + + Waiting for process to start... + + + + Attach + + + + %1.%2 + %1.%2 + + + Unknown error. + + + + Connection is not open. + + + + Internal error: Invalid TCP/IP port specified %1. + + + + Internal error: No uVision executable specified. + + + + Internal error: The specified uVision executable does not exist. + + + + Internal error: Cannot resolve the library: %1. + + + + UVSC Version: %1, UVSOCK Version: %2. + + + + Internal error: Cannot open the session: %1. + + + + Internal error: Failed to start the debugger: %1 + + + + UVSC: Starting execution failed. + + + + UVSC: Stopping execution failed. + + + + UVSC: Setting local value failed. + + + + UVSC: Setting watcher value failed. + + + + UVSC: Disassembling by address failed. + + + + UVSC: Changing memory at address 0x%1 failed. + + + + UVSC: Fetching memory at address 0x%1 failed. + + + + Internal error: The specified uVision project options file does not exist. + + + + Internal error: The specified uVision project file does not exist. + + + + Internal error: Unable to open the uVision project %1: %2. + + + + Internal error: Unable to set the uVision debug target: %1. + + + + Internal error: The specified output file does not exist. + + + + Internal error: Unable to set the uVision output file %1: %2. + + + + UVSC: Reading registers failed. + + + + UVSC: Fetching peripheral register failed. + + + + UVSC: Locals enumeration failed. + + + + UVSC: Watchers enumeration failed. + + + + UVSC: Inserting breakpoint failed. + + + + UVSC: Removing breakpoint failed. + + + + UVSC: Enabling breakpoint failed. + + + + UVSC: Disabling breakpoint failed. + + + + Failed to initialize the UVSC. + + + + Failed to de-initialize the UVSC. + + + + Failed to run the UVSC. + + + + Cannot stop debugged process: + + + + + ... <cut off> + + + + Pointer Address + + + + Array Index + + + + Creation Time in ms + + + + Source + + + + Debugger - %1 + + + + Time + + + + Press Ctrl to select widget at (%1, %2). Press any other keyboard modifier to stop selection. + + + + Selecting widget at (%1, %2). + + + + Selection aborted. + + + + Memory at Pointer's Address "%1" (0x%2) + + + + Memory at Object's Address "%1" (0x%2) + + + + Enter an expression to evaluate. + + + + Note: Evaluators will be re-evaluated after each step. For details, see the <a href="qthelp://org.qt-project.qtcreator/doc/creator-debug-mode.html#locals-and-expressions">documentation</a>. + + + + New Evaluated Expression + + + + Add New Expression Evaluator... + + + + Expand All Children + + + + Collapse All Children + + + + Copy View Contents to Clipboard + + + + Copy Current Value to Clipboard + + + + Open View Contents in Editor + + + + Stop the program when the data at the address is modified. + + + + Add Data Breakpoint at Pointer's Address (0x%1) + + + + Add Data Breakpoint at Pointer's Address + + + + Stop the program when the data at the address given by the expression is modified. + + + + Open Memory View at Pointer's Address (0x%1) + + + + Open Memory View at Pointer's Address + + + + Open Memory View Showing Stack Layout + + + + Open Memory Editor at Pointer's Address (0x%1) + + + + Open Memory Editor at Pointer's Address + + + + Change Value Display Format + + + + Reset All Individual Formats + + + + Reset All Formats for Types + + + + Change Display Format for Selected Values + + + + Change Display for Objects + + + + Array of %n items + + + + + + Raw Data + + + + Enhanced + + + + Separate Window + + + + Latin1 String + + + + Latin1 String in Separate Window + + + + UTF-8 String + + + + UTF-8 String in Separate Window + + + + Local 8-Bit String + + + + UTF-16 String + + + + UCS-4 String + + + + Plot in Separate Window + + + + Display Keys and Values Side by Side + + + + Force Display as Direct Storage Form + + + + Force Display as Indirect Storage Form + + + + Display Boolean Values as True or False + + + + Display Boolean Values as 1 or 0 + + + + Decimal Integer + + + + Hexadecimal Integer + + + + Binary Integer + + + + Octal Integer + + + + Char Code Integer + + + + Compact Float + + + + Scientific Float + + + + Hexadecimal Float + + + + Normalized, with Power-of-Two Exponent + + + + Size: %1x%2, %3 byte, format: %4, depth: %5 + + + + Are you sure you want to remove all expression evaluators? + + + + + DependenciesModel + + Unable to Add Dependency + 无法添加依赖关系 + + + This would create a circular dependency. + 这会创建一个循环依赖。 + + + + DependenciesPanelFactory + + Dependencies + 依赖关系 + + + + Designer + + Designer + 设计师 + + + Form Editor + 界面编辑器 + + + Qt Designer Form Class + Qt 设计器界面类 + + + Form Template + 界面模板 + + + Class Details + 类详情 + + + %1 - Error + %1 - 错误 + + + Class + + + + Choose a Class Name + 选择类名 + + + 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. + 创建一个Qt设计师窗体文件和相应的类(C++头文件和源文件)用于实现,您可以将此窗体文件和类加入到已经存在的Qt 控件项目中。 + + + Widget Box + 控件盒子 + + + Object Inspector + 对象查看器 + + + Property Editor + 属性编辑器 + + + Action Editor + Action编辑器 + + + F3 + F3 + + + F4 + F4 + + + Ctrl+H + Ctrl+H + + + Meta+Shift+H + Meta+Shift+H + + + Ctrl+L + Ctrl+L + + + Meta+L + Meta+L + + + Ctrl+G + Ctrl+G + + + Meta+Shift+G + Meta+Shift+G + + + Meta+J + Mega+J + + + Ctrl+J + Ctrl+J + + + Alt+Shift+R + Alt+Shift+R + + + Switch Source/Form + 切换源文件/窗体 + + + Shift+F4 + Shift+F4 + + + Signals && Slots Editor + 信号和槽编辑器 + + + Widget box + 控件盒子 + + + For&m Editor + 界面编辑器(&M) + + + Edit Widgets + 编辑控件 + + + Edit Signals/Slots + 编辑信号/槽 + + + Edit Buddies + 编辑伙伴(Buddy) + + + Edit Tab Order + 编辑 Tab 顺序 + + + Preview in + 预览于 + + + The image could not be created: %1 + 无法创建图片: %1 + + + Choose a Form Template + 选择界面模板 + + + Error finding/adding a slot. + 查找/添加槽错误。 + + + Unable to add the method definition. + 无法添加方法定义。 + + + This file can only be edited in <b>Design</b> mode. + 此文件仅可在<b>设计</b>模式中编辑。 + + + The generated header of the form "%1" could not be found. +Rebuilding the project might help. + + + + The generated header "%1" could not be found in the code model. +Rebuilding the project might help. + + + + &Class name: + 类名(&C): + + + &Header file: + 头文件(&H): + + + &Source file: + 源文件(&S): + + + &Form file: + 界面文件(&F): + + + &Path: + 路径(&P): + + + Invalid header file name: "%1" + + + + Invalid source file name: "%1" + + + + Invalid form file name: "%1" + + + + Signals and Slots Editor + + + + About Qt Designer Plugins... + + + + Switch Mode + + + + The class containing "%1" could not be found in %2. +Please verify the #include-directives. + + + + No documents matching "%1" could be found. +Rebuilding the project might help. + + + + + DesignerActionManager + + Document Has Errors + + + + The document which contains the list model contains errors. So we cannot edit it. + + + + Document Cannot Be Written + + + + An error occurred during a write attemp. + + + + + DevelopmentTeam + + %1 - Free Provisioning Team : %2 + + + + Yes + + + + No + + + + + Diff + + Delete + 删除 + + + Insert + + + + Equal + + + + + DiffEditor + + Diff Editor + + + + + DiffEditor::Internal::DiffCurrentFileController + + Saved + + + + Modified + 已更改 + + + + DiffEditor::Internal::DiffEditor + + Context lines: + + + + Ignore Whitespace + 忽略空白 + + + Reload Diff + + + + [%1] vs. [%2] %3 + + + + %1 vs. %2 + + + + [%1] %2 vs. [%3] %4 + + + + Hide Change Description + + + + Show Change Description + + + + + DiffEditor::Internal::DiffEditorDocument + + Could not parse patch file "%1". The content is not of unified diff format. + + + + + DiffEditor::Internal::DiffEditorPlugin + + &Diff + &Diff + + + Diff Current File + Diff 当前文件 + + + Meta+H + Meta+H + + + Ctrl+H + Ctrl+H + + + Diff Open Files + + + + Meta+Shift+H + Meta+Shift+H + + + Ctrl+Shift+H + + + + Diff External Files... + + + + Diff "%1" + Diff "%1" + + + Select First File for Diff + + + + Select Second File for Diff + + + + Diff "%1", "%2" + + + + + DiffEditor::Internal::DiffEditorServiceImpl + + Diff Files + + + + Diff Modified Files + + + + + DiffEditor::Internal::DiffEditorWidgetController + + Send Chunk to CodePaster... + + + + Apply Chunk... + 应用块... + + + Revert Chunk... + 恢复块... + + + <b>Error:</b> Could not decode "%1" with "%2"-encoding. + + + + Select Encoding + 选择编码 + + + + DiffEditor::Internal::DiffFilesController + + Calculating diff + + + + + DiffEditor::Internal::DiffModifiedFilesController + + Saved + + + + Modified + 已更改 + + + + DiffEditor::Internal::DiffOpenFilesController + + Saved + + + + Modified + 已更改 + + + + DiffEditor::Internal::SideBySideDiffEditorWidget + + Skipped %n lines... + + + + + + Binary files differ + + + + Skipped unknown number of lines... + + + + Waiting for data... + 等待数据... + + + No difference. + + + + Retrieving data failed. + + + + Rendering diff + + + + + DiffEditor::Internal::SideBySideView + + Synchronize Horizontal Scroll Bars + + + + Waiting for data... + 等待数据... + + + Retrieving data failed. + + + + + DiffEditor::Internal::SideDiffEditorWidget + + [%1] %2 + + + + + DiffEditor::Internal::UnifiedDiffEditorWidget + + No document + + + + Waiting for data... + 等待数据... + + + No difference. + + + + Retrieving data failed. + + + + Rendering diff + + + + + DiffEditor::Internal::UnifiedView + + Waiting for data... + 等待数据... + + + Retrieving data failed. + + + + + DiffEditor::SideBySideView + + Switch to Side By Side Diff Editor + + + + + DiffEditor::UnifiedView + + Switch to Unified Diff Editor + + + + + Docker + + Checking docker daemon + + + + Path "%1" is not a directory or does not exist. + + + + Docker + + + + Docker Image + + + + Docker Image "%1" (%2) + + + + Error starting remote shell. No container. + + + + Error starting remote shell: %1 + + + + Open Shell in Container + + + + Docker daemon appears to be not running. Verify daemon is up and running and reset the docker daemon on the docker device settings page or restart Qt Creator. + + + + Docker Image Selection + + + + Show Unnamed Images + + + + Loading ... + + + + Running "%1" + + + + + Unexpected result: %1 + + + + Done. + 完成。 + + + Error: %1 + 错误: %1 + {1?} + + + Docker Device + + + + Repository: + 代码仓库: + + + Tag: + + + + Image ID: + + + + Daemon state: + + + + Clears detected daemon state. It will be automatically re-evaluated next time access is needed. + + + + Do not modify entry point + + + + Prevents modifying the entry point of the image. Enable only if the image starts into a shell. + + + + Run as outside user + + + + Uses user ID and group ID of the user running Qt Creator in the docker container. + + + + Paths to mount: + + + + Source directory list should not be empty. + + + + Host directories to mount into the container + + + + Maps paths in this list one-to-one to the docker container. + + + + Auto-detect Kit Items + + + + Remove Auto-Detected Kit Items + + + + List Auto-Detected Kit Items + + + + Search in PATH + + + + Search in Selected Directories + + + + Search in PATH and Additional Directories + + + + Semicolon-separated list of directories + + + + Select the paths in the docker image that should be scanned for kit entries. + + + + Docker daemon appears to be not running. + + + + Docker daemon appears to be running. + + + + Search Locations: + + + + Detection log: + + + + Daemon state not evaluated. + + + + Docker daemon running. + + + + Docker daemon not running. + + + + Docker CLI + + + + Command: + 命令: + + + Configuration + 配置 + + + + DynamicPropertiesProxyModel + + Property Already Exists + + + + Property "%1" already exists. + + + + + EasingContextPane + + Dialog + 对话框 + + + Easing + 弹性弯曲 + + + Subtype + 子类型 + + + Duration + 持续时间 + + + INVALID + 无效 + + + ms + 毫秒 + + + Amplitude + 振幅 + + + Period + 周期 + + + Overshoot + 缓冲 + + + Play simulation. + + + + Type of easing curve. + + + + Acceleration or deceleration of easing curve. + + + + Duration of animation. + + + + Amplitude of elastic and bounce easing curves. + + + + Easing period of an elastic curve. + + + + Easing overshoot for a back curve. + + + + + EditLightToggleAction + + Toggle Edit Light On/Off + + + + + EditorSettingsPanelFactory + + Editor + 编辑器 + + + + EmacsKeys::Internal::EmacsKeysPlugin + + Delete Character + + + + Kill Word + + + + Kill Line + + + + Insert New Line and Indent + + + + Go to File Start + + + + Go to File End + + + + Go to Line Start + 移到行首 + + + Go to Line End + 移到行尾 + + + Go to Next Line + 移到下一行 + + + Go to Previous Line + 移到前一行 + + + Go to Next Character + 移到下一字符 + + + Go to Previous Character + 移到上一字符 + + + Go to Next Word + 移到下一单词 + + + Go to Previous Word + 移到上一单词 + + + Mark + + + + Exchange Cursor and Mark + + + + Copy + 复制 + + + Cut + 剪切 + + + Yank + + + + Scroll Half Screen Down + + + + Scroll Half Screen Up + + + + + EnterTabDesignerAction + + Step into: %1 + + + + + EnvironmentPanelFactory + + Environment + 环境 + + + + EnvironmentWidget + + Add... + 添加... + + + Remove + 删除 + + + Edit... + 编辑... + + + Choose Directory + 选择目录 + + + + ExtensionSystem::Internal::PluginDetailsView + + Name: + 名称: + + + Version: + 版本: + + + Vendor: + 销售商: + + + Location: + 位置: + + + Description: + 说明: + + + Copyright: + 版权: + + + License: + 许可: + + + Dependencies: + 依赖关系: + + + Group: + 组: + + + Compatibility version: + 兼容版本: + + + URL: + URL: + + + Platforms: + + + + + ExtensionSystem::Internal::PluginErrorOverview + + The following plugins have errors and cannot be loaded: + 以下插件有错误,无法被载入: + + + Details: + 详情: + + + Plugin Loader Messages + + + + + ExtensionSystem::Internal::PluginErrorView + + State: + 状态: + + + Error message: + 错误信息: + + + + ExtensionSystem::Internal::PluginManagerPrivate + + %1 > About Plugins + + + + Help > About Plugins + + + + If you temporarily disable %1, the following plugins that depend on it are also disabled: %2. + + + + + + Disable plugins permanently in %1. + + + + The last time you started %1, it seems to have closed because of a problem with the "%2" plugin. Temporarily disable the plugin? + + + + Disable Plugin + + + + Continue + 继续 + + + + ExtensionSystem::Internal::PluginSpecPrivate + + Plugin meta data not found + + + + Invalid platform specification "%1": %2 + + + + Dependency: %1 + + + + Dependency: "%1" must be "%2" or "%3" (is "%4"). + + + + Argument: %1 + + + + Argument: "%1" is empty + + + + + ExtensionSystem::PluginDetailsView + + None + + + + All + 所有 + + + %1 (current: "%2") + + + + + ExtensionSystem::PluginErrorOverview + + Continue + 继续 + + + + ExtensionSystem::PluginErrorView + + Invalid + 无效 + + + Read + 读入 + + + Resolved + 已解決 + + + Loaded + 已载入 + + + Initialized + 初始化 + + + Running + 执行中 + + + Stopped + 已停止 + + + Deleted + 删除 + + + Description file found, but error on read. + + + + Description successfully read. + + + + Dependencies are successfully resolved. + + + + Library is loaded. + + + + Plugin's initialization function succeeded. + + + + Plugin successfully loaded and running. + + + + Plugin was shut down. + + + + Plugin ended its life cycle and was deleted. + + + + + ExtensionSystem::PluginManager + + Cannot load plugin because dependency failed to load: %1(%2) +Reason: %3 + 因为无法载入依赖关系所以无法载入插件: %1(%2) +原因: %3 + + + Circular dependency detected: + + + + %1 (%2) depends on + + + + %1 (%2) + %1 (%2) + + + Cannot load plugin because dependency failed to load: %1 (%2) +Reason: %3 + + + + + ExtensionSystem::PluginView + + Load on Startup + 启动时载入 + + + Utilities + 实用工具 + + + %1 (experimental) + + + + Path: %1 +Plugin is not available on this platform. + + + + Path: %1 +Plugin is enabled as dependency of an enabled plugin. + + + + Path: %1 +Plugin is enabled by command line argument. + + + + Path: %1 +Plugin is disabled by command line argument. + + + + Path: %1 + + + + Plugin is not available on this platform. + + + + Plugin is required. + + + + Load on startup + + + + Name + + + + Load + 载入 + + + Version + 版本 + + + Vendor + 销售商 + + + Enabling Plugins + + + + Enabling +%1 +will also enable the following plugins: + +%2 + + + + Disabling Plugins + + + + Disabling +%1 +will also disable the following plugins: + +%2 + + + + + FakeVim + + Use FakeVim + 使用FakeVim + + + Read .vimrc from location: + + + + Show position of text marks + 显示文本标签的位置 + + + Pass control keys + + + + Pass keys in insert mode + + + + Start of line + 移到行首 + + + Tabulator size: + 制表符大小: + + + Smart tabulators + 智能制表符 + + + Highlight search results + 高亮搜索结果 + + + Shift width: + 缩进宽度: + + + Expand tabulators + 展开制表符 + + + Automatic indentation + 自动缩进 + + + Smart indentation + 智能缩进 + + + Incremental search + 递增式搜索 + + + Use search dialog + 使用搜索对话框 + + + Use smartcase + 使用智能大小写 + + + Use ignorecase + + + + Use wrapscan + + + + Use tildeop + + + + Show partial command + + + + Show line numbers relative to cursor + + + + Blinking cursor + + + + Scroll offset: + + + + Backspace: + 退格: + + + Keyword characters: + 关键词字符: + + + Use Vim-style Editing + 使用vim风格编辑 + + + Displays line numbers relative to the line containing text cursor. + + + + Does not interpret key sequences like Ctrl-S in FakeVim but handles them as regular shortcuts. This gives easier access to core functionality at the price of losing some features of FakeVim. + + + + Does not interpret some key presses in insert mode so that code can be properly completed and expanded. + + + + Vim tabstop option. + + + + Keep empty to use the default path, i.e. %USERPROFILE%\_vimrc on Windows, ~/.vimrc otherwise. + + + + Default: %1 + + + + Unknown option: %1 + 未知选项: %1 + + + Argument must be positive: %1=%2 + 参数必须是正值: %1=%2 + + + Mark "%1" not set. + + + + Recursive mapping + + + + %1%2% + %1%2% + + + %1All + %1所有 + + + Not implemented in FakeVim. + + + + Type Meta-Shift-Y, Meta-Shift-Y to quit FakeVim mode. + + + + Type Alt-Y, Alt-Y to quit FakeVim mode. + + + + Unknown option: + + + + Invalid argument: + + + + Trailing characters: + + + + Move lines into themselves. + + + + %n lines moved. + + + + + + File "%1" exists (add ! to override) + 文件 '%1' 存在 (添加 ! 覆盖) + + + Cannot open file "%1" for writing + 无法打开用于写入的文件 "%1" + + + "%1" %2 %3L, %4C written. + + + + [New] + [新建] + + + Cannot open file "%1" for reading + 无法打开用于读取的文件"%1" + + + "%1" %2L, %3C + "%1" %2L, %3C + + + %n lines filtered. + + + + + + Cannot open file %1 + 打开文件 %1 失败 + + + Not an editor command: %1 + 不是一个编辑器命令: %1 + + + Invalid regular expression: %1 + 无效的正则表达式: %1 + + + Pattern not found: %1 + 未找到模式:%1 + + + Search hit BOTTOM, continuing at TOP. + + + + Search hit TOP, continuing at BOTTOM. + + + + Search hit BOTTOM without match for: %1 + + + + Search hit TOP without match for: %1 + + + + %n lines indented. + + + + + + %n lines %1ed %2 time. + + + + + + %n lines yanked. + + + + + + Already at oldest change. + + + + Already at newest change. + + + + General + 概要 + + + FakeVim + FakeVim + + + Copy Text Editor Settings + 复制文本编辑器设置 + + + Set Qt Style + 设置为Qt风格 + + + Set Plain Style + + + + Vim Behavior + Vim 行为 + + + Plugin Emulation + + + + Ex Command Mapping + 额外命令映射 + + + Ex Trigger Expression + 额外触发表达式 + + + Ex Command + 额外命令 + + + Reset + 重置 + + + Reset to default. + 重置为默认。 + + + Regular expression: + 正则表达式: + + + Action + 动作 + + + Command + 命令 + + + User Command Mapping + 用户命令映射 + + + User command #%1 + 用户命令#%1 + + + Meta+Shift+Y,Meta+Shift+Y + + + + Alt+Y,Alt+Y + + + + Execute User Action #%1 + 执行用户操作 #%1 + + + Meta+Shift+Y,%1 + + + + Alt+Y,%1 + + + + "%1" %2 %3L, %4C written + "%1" %2 %3L, %4C 写入 + + + File not saved + 文件未保存 + + + Saving succeeded + 成功保存 + + + %n files not saved + + %n 个文件没有被保存 + + + + + FileExtractor + + Choose Directory + 选择目录 + + + + FileResourcesModel + + Open File + 打开文件 + + + + FitToViewAction + + Fit Selected Object to View + + + + + FontSettings_C_OCCURRENCES_UNUSED + + Unused variable + 未使用的变量 + + + + GLSLEditor + + GLSL + GLSL + + + + GenerateConstructorDialog + + Constructor + + + + Parameters without default value must come before parameters with default value. + + + + Initialize all members + + + + Access + + + + Select the members to be initialized in the constructor. +Use drag and drop to change the order of the parameters. + + + + + GenerateGettersSettersDialog + + Getters and Setters + + + + Member + + + + Getter + + + + Setter + + + + Signal + 信号 + + + Reset + 重置 + + + QProperty + + + + Constant QProperty + + + + Create getters for all members + + + + Create setters for all members + + + + Create signals for all members + + + + Create Q_PROPERTY for all members + + + + Select the getters and setters to be created. + + + + + GenericProjectManager::Internal::FilesSelectionWizardPage + + Files + 文件 + + + + GenericProjectManager::Internal::GenericBuildConfiguration + + Generic Manager + 标准管理器 + + + + GenericProjectManager::Internal::GenericProject + + Project files list update failed. + + + + Build %1 + + + + + GenericProjectManager::Internal::GenericProjectPlugin + + Edit Files... + 编辑文件... + + + Remove Directory + + + + + GenericProjectManager::Internal::GenericProjectWizard + + Import Existing Project + 导入现有项目 + + + Imports existing projects that do not use qmake, CMake, Qbs, Meson, or Autotools. This allows you to use %1 as a code editor. + + + + + GenericProjectManager::Internal::GenericProjectWizardDialog + + Import Existing Project + 导入现有项目 + + + Project Name and Location + 项目名称和位置 + + + Project name: + 项目名称: + + + Location: + 位置: + + + File Selection + 文件选择 + + + + Gerrit::Internal::GerritDialog + + Certificate Error + + + + Server certificate for %1 cannot be authenticated. +Do you want to disable SSL verification for this server? +Note: This can expose you to man-in-the-middle attack. + + + + + Gerrit::Internal::GerritPushDialog + + Push to Gerrit + + + + &Reviewers: + + + + Checked - Mark change as private. +Unchecked - Remove mark. +Partially checked - Do not change current state. + + + + &Draft/private + + + + &Work-in-progress + + + + Pushes the selected commit and all dependent commits. + + + + &Topic: + + + + Push: + + + + Commits: + + + + Local repository + + + + To: + 到: + + + Number of commits + + + + Comma-separated list of reviewers. + +Reviewers can be specified by nickname or email address. Spaces not allowed. + +Partial names can be used if they are unambiguous. + + Git + + Delete Branch + 删除分支 + + + Remote Branches + 远程 分支 + + + Re&fresh + 刷新(&F) + + + &Add... + 添加(&A)... + + + &Remove + 删除(&R) + + + &Diff + &Diff + + + &Log + &Log + + + &Checkout + 检出(&C) + + + Select a Git Commit + 选择一个 Git commit + + + Error + 错误 + + + Working directory: + 工作目录: + + + Change: + 更改: + + + Invalid revision + 无效修订版本 + + + Description: + 说明: + + + Stash Description + Stash 说明 + + + Changes + 修改 + + + Cannot determine the repository for "%1". + 无法确定 "%1"的代码仓库。 + + + Cannot parse the file output. + 无法解析文件输出。 + + + Git Diff "%1" + Git Diff "%1" + + + Git Diff Branch "%1" + Git Diff 分支 "%1" + + + Git Log "%1" + Git Log "%1" + + + Cannot describe "%1". + 无法描述 '%1'。 + + + Git Show "%1" + Git Show + + + Git Blame "%1" + Git Blame + + + Cannot obtain log of "%1": %2 + 无法获取"%1"的日志: %2 + + + Cannot checkout "%1" of %2 in "%3": %4 + Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message + 无法检出 "%3"中的 %2 的修订版本 "%1": %4 + + + Cannot find parent revisions of "%1" in "%2": %3 + Failed to find parent revisions of a SHA1 for "annotate previous" + 无法找到在 "%2"的"%1"的上一级修订: %3 + + + Cannot describe revision "%1" in "%2": %3 + 无法描述"%2"中的修订"%1": %3 + + + Cannot resolve stash message "%1" in "%2". + Look-up of a stash via its descriptive message failed. + 无法处理"%2"中的stash消息"%1"。 + + + There were warnings while applying "%1" to "%2": +%3 + 应用 %1 到 %2 时收到警告: +%3 + + + Cannot apply patch "%1" to "%2": %3 + 无法应用补丁"%1" 到"%2": %3 + + + Cannot obtain status: %1 + 无法获得状态: %1 + + + Cannot launch "%1". + 无法启动"%1". + + + The repository "%1" is not initialized. + 仓库 %1 未被初始化。 + + + Cannot retrieve last commit data of repository "%1". + 无法获取仓库最近一次提交的数据"%1"。 + + + Amended "%1". + 增订了"%1"。 + + + The file has been changed. Do you want to revert it? + 文件被改变,您想要还原它吗? + + + The file is not modified. + 文件没有被修改。 + + + Git SVN Log + Git SVN Log + + + There are no modified files. + 没有被修改的文件。 + + + &Git + &Git + + + Alt+G,Alt+D + Alt+G,Alt+D + + + Alt+G,Alt+L + Alt+G,Alt+L + + + Alt+G,Alt+B + Alt+G,Alt+B + + + Diff + Diff + + + Status + 状态 + + + Apply from Editor + 应用自编辑器 + + + Apply from File... + 应用自文件... + + + Take Snapshot... + 抓取快照... + + + Meta+G,Meta+C + Meta+G,Meta+C + + + Amend %1 + 增订 %1 + + + Repository Clean + 代码仓库清理 + + + Choose Patch + 选择补丁 + + + Alt+G,Alt+U + Alt+G,Alt+U + + + Stage File for Commit + Stage文件以备提交 + + + Meta+G,Meta+B + Meta+G,Meta+B + + + Meta+G,Meta+D + Meta+G,Meta+D + + + Meta+G,Meta+L + Meta+G,Meta+L + + + Stage "%1" for Commit + 提交的stage "%1" + + + Alt+G,Alt+A + Alt+G,Alt+A + + + Meta+G,Meta+A + Meta+G,Meta+A + + + Unstage File from Commit + 从提交unstage文件 + + + Unstage "%1" from Commit + 从提交unstage文件 "%1" + + + Undo Unstaged Changes + 撤销unstage的修改 + + + Undo Unstaged Changes for "%1" + 撤销unstage的对 "%1" 的修改 + + + Undo Uncommitted Changes + 撤销未提交的修改 + + + Undo Uncommitted Changes for "%1" + 撤销未提交的对 "%1" 的修改 + + + Meta+G,Meta+U + Meta+G,Meta+U + + + Meta+G,Meta+Shift+D + Meta+G,Meta+Shift+D + + + Alt+G,Alt+Shift+D + Alt+G,Alt+Shift+D + + + Meta+G,Meta+K + Meta+G,Meta+K + + + Apply "%1" + 应用 “%1” + + + Create Repository... + 创建仓库... + + + Saves the current state of your work and resets the repository. + 保存您的工作的当前状态并重置软件仓库。 + + + The repository is clean. + 代码仓库是clean状态。 + + + Patches (*.patch *.diff) + 补丁 (*.patch *.diff) + + + Patch %1 successfully applied to %2 + 补丁 %1 成功应用于 %2 + + + Alt+G,Alt+K + Alt+G,Alt+K + + + Stash + Stash + + + Saves the current state of your work. + 保存当前状态。 + + + Restores changes saved to the stash list using "Stash". + 使用 "Stash" 还原保存在stash列表中的更改。 + + + Alt+G,Alt+C + Alt+G,Alt+C + + + Branches... + 分支列表... + + + Commit + Commit + + + Revert + Revert + + + Another submit is currently being executed. + 另一个提交操作正在执行。 + + + Git Commit + Git Commit + + + General Information + 概要信息 + + + Repository: + 代码仓库: + + + repository + 代码仓库 + + + branch + 分支 + + + Commit Information + Commit 信息 + + + Author: + 作者: + + + Email: + Email: + + + By&pass hooks + 跳过hook(&P) + + + Note that huge amount of commits might take some time. + 注意:大量的提交可能需要花费一段时间。 + + + Git + Git + + + Git Settings + Git设置 + + + Miscellaneous + 其他 + + + Pull with rebase + pull同时rebase + + + Set "HOME" environment variable + 设置 "HOME" 环境变量 + + + Gitk + Gitk + + + Arguments: + 参数: + + + Configuration + 配置 + + + Prepend to PATH: + 附加在系统PATH之前: + + + Command: + 命令: + + + Stashes + Stash列表 + + + Name + 名称 + + + Branch + 分支 + + + Message + 消息 + + + Refresh + 刷新 + + + <No repository> + <无 仓库> + + + Repository: %1 + 代码仓库: %1 + + + Do you want to delete all stashes? + 您想删除所有 stash 吗? + + + Do you want to delete %n stash(es)? + + 您想删除 %n 个stash 吗? + + + + Delete Stashes + 删除 stash + + + Repository Modified + 仓库已变更 + + + %1 cannot be restored since the repository is modified. +You can choose between stashing the changes or discarding them. + %1 不能被还原,因为仓库已经变更。 +您可以选择 stash 修改的内容或者丢弃修改。 + + + Discard + 丢弃 + + + Restore Stash to Branch + 还原 stash 到分支 + + + Branch: + Branch: + + + Stash Restore + 还原 stash + + + Would you like to restore %1? + 您想还原 %1吗? + + + Error restoring %1 + 还原 %1 时出错 + + + not currently set + 当前未设置 + + + Git Repository Browser Command + Git代码仓库浏览器命令 + + + Use the patience algorithm for calculating the differences. + 使用耐心算法来计算差异。 + + + Patience + 耐心 + + + Ignore whitespace only changes. + 忽略仅为空白的修改。 + + + Ignore Whitespace + 忽略空白 + + + Hide the date of a change from the output. + 在输出隐藏更改的日期。 + + + Omit Date + 忽略日期 + + + Branch Name: + 分支名称: + + + Name: + 名称: + + + URL: + URL: + + + Remotes + 远程 + + + F&etch + F&etch + + + Delete Remote + 删除远程 + + + Would you like to delete the remote "%1"? + 您想要删除远程"%1"吗? + + + &Push + &Push + + + Local Branches + 本地分支 + untracked untracked @@ -45606,14 +21351,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. copied 已复制 - - updated - 已更新 - - - Gerrit %1@%2 - Gerrit %1@%2 - &Query: 查询(&Query): @@ -45626,22 +21363,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Details 详情 - - Diff... - Diff... - - - Apply... - Apply... - - - Checkout... - Checkout... - - - <html><head/><body><table><tr><td>Subject</td><td>%1</td></tr><tr><td>Number</td><td><a href="%11">%2</a></td></tr><tr><td>Owner</td><td>%3 <a href="mailto:%4">%4</a></td></tr><tr><td>Project</td><td>%5 (%6)</td></tr><tr><td>Status</td><td>%7, %8</td></tr><tr><td>Patch set</td><td>%9</td></tr>%10<tr><td>URL</td><td><a href="%11">%11</a></td></tr></table></body></html> - <html><head/><body><table><tr><td>标题</td><td>%1</td></tr><tr><td>数字</td><td><a href="%11">%2</a></td></tr><tr><td>所有者</td><td>%3 <a href="mailto:%4">%4</a></td></tr><tr><td>项目</td><td>%5 (%6)</td></tr><tr><td>状态</td><td>%7, %8</td></tr><tr><td>补丁集</td><td>%9</td></tr>%10<tr><td>URL</td><td><a href="%11">%11</a></td></tr></table></body></html> - Subject 标题 @@ -45662,18 +21383,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Approvals 审批 - - Parse error: '%1' -> %2 - 解析错误: '%1' -> %2 - - - Parse error: '%1' - 解析错误: '%1' - - - Parse error in line '%1' - 在行 '%1'发生解析错误 - Gerrit Gerrit @@ -45706,10 +21415,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. &ssh: &ssh: - - &Port: - 端口(&P): - P&rotocol: 协议(&R): @@ -45721,22 +21426,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. 当文件"gerrit.config"没有配置"canonicalWebUrl"时 从URL推测使用的协议。 - - Gerrit Fetch - Gerrit Fetch - - - Error writing to temporary file. - 写入临时文件发生错误。 - - - Writing %1... - 正在写入 %1... - - - Cherry-picking %1... - 正在cherry-pick %1... - Gerrit... Gerrit... @@ -45745,14 +21434,6 @@ Stepping into the module or setting breakpoints by file and is expected to work. Git is not available. Git不可用。 - - Enter Local Repository for '%1' (%2) - 输入 '%1' (%2) 的本地代码仓库 - - - Show Diff - 显示Diff - Show difference. 显示差异。 @@ -45773,217 +21454,7508 @@ Stepping into the module or setting breakpoints by file and is expected to work. Undo Changes to %1 撤销对%1的修改 - - - Locator::Internal::ExecuteFilter - Previous command is still running ('%1'). -Do you want to kill it? - 前一个命令仍在运行('%1')。 -您想要杀死它吗? + Checkout new branch + - Kill Previous Process? - 杀死前一个进程吗? + Add Branch + - finished - 已完成 + Rename Branch + - failed - 失败 + Add Tag + - Could not find executable for '%1' - 找不到 '%1'的执行档 + Tag name: + - Starting command '%1' - 正在启动命令'%1' + Rename Tag + - Execute Custom Commands - 执行自定义的命令 + Track remote branch "%1" + + + + Track local branch "%1" + + + + Checkout branch "%1" + + + + Local Changes Found. Choose Action: + + + + Move Local Changes to "%1" + + + + Discard Local Changes + + + + Pop Stash of "%1" + + + + Create Branch Stash for "%1" + + + + Create Branch Stash for Current Branch + + + + Tags + + + + Include Old Entries + + + + Include Tags + + + + Include branches and tags that have not been active for %n days. + + + + + + Create Git Repository... + + + + Add Branch... + + + + Filter + 过滤器 + + + &Fetch + + + + Remove &Stale Branches + + + + Manage &Remotes... + + + + Rem&ove... + + + + Re&name... + + + + Reflo&g + + + + Re&set + + + + &Hard + + + + &Mixed + + + + &Soft + + + + &Merge "%1" into "%2" (Fast-Forward) + + + + Merge "%1" into "%2" (No &Fast-Forward) + + + + &Merge "%1" into "%2" + + + + &Rebase "%1" on "%2" + + + + Cherry &Pick + + + + &Track + + + + Would you like to delete the tag "%1"? + + + + Would you like to delete the branch "%1"? + + + + Would you like to delete the <b>unmerged</b> branch "%1"? + + + + Delete Tag + + + + Git Reset + + + + Reset branch "%1" to "%2"? + + + + Git Branches + + + + HEAD + + + + Browse &History... + + + + &Close + + + + &Archive... + + + + Check&out + + + + &Revert + + + + &Show + + + + Select Git Directory + + + + Select Commit + + + + Error: Could not start Git. + + + + Error: Unknown reference + + + + Error: Bad working directory. + + + + Fetching commit data... + + + + typechange + + + + by both + + + + by us + + + + by them + + + + Authentication + 验证信息 + + + <html><head/><body><p>Gerrit server with HTTP was detected, but you need to set up credentials for it.</p><p>To get your password, <a href="LINK_PLACEHOLDER"><span style=" text-decoration: underline; color:#007af4;">click here</span></a> (sign in if needed). Click Generate Password if the password is blank, and copy the user name and password to this form.</p><p>Choose Anonymous if you do not want authentication for this server. In this case, changes that require authentication (like draft changes or private projects) will not be displayed.</p></body></html> + + + + Server: + 服务器: + + + &Password: + 密码(&P): + + + Anonymous + + + + C&heckout + + + + &Refresh + + + + Remote: + + + + Fetching "%1"... + + + + (Draft) + + + + Querying Gerrit + + + + Timeout + + + + The gerrit process has not responded within %1 s. +Most likely this is caused by problems with SSH authentication. +Would you like to terminate it? + + + + Terminate + + + + Keep Running + 保持运行 + + + Number + + + + Patch set + + + + URL + + + + Depends on + + + + Needed by + + + + Parse error: "%1" -> %2 + + + + Parse error: "%1" + + + + cur&l: + + + + SSH &Port: + + + + Fetching from Gerrit + + + + Push to Gerrit... + + + + Initialization Failed + + + + Invalid Gerrit configuration. Host, user and ssh binary are mandatory. + + + + Remote Not Verified + + + + Change host %1 +and project %2 + +were not verified among remotes in %3. Select different folder? + + + + Enter Local Repository for "%1" (%2) + + + + Cannot find a Gerrit remote. Add one and try again. + + + + Number of commits between %1 and %2: %3 + + + + Are you sure you selected the right target branch? + + + + Checked - Mark change as WIP. +Unchecked - Mark change as ready for review. +Partially checked - Do not change current state. + + + + Checked - Mark change as private. +Unchecked - Remove mark. +Partially checked - Do not change current state. + + + + Supported on Gerrit 2.15 and later. + + + + Checked - The change is a draft. +Unchecked - The change is not a draft. + + + + No remote branches found. This is probably the initial commit. + + + + Branch name + + + + ... Include older branches ... + + + + Refresh Remote Servers + + + + Fallback + + + + and %n more + Displayed after the untranslated message "Branches: branch1, branch2 'and %n more'" + + + + + + <None> + <无> + + + <resolving> + + + + No Move Detection + + + + Detect Moves Within File + + + + Detect Moves Between Files + + + + Detect Moves and Copies Between Files + + + + Move detection + + + + Filter commits by message or content. + + + + First Parent + + + + Follow only the first parent on merge commits. + + + + Graph + + + + Show textual graph log. + + + + Color + 颜色 + + + Use colors in log. + + + + Follow + + + + Show log also for previous names of the file. + + + + Show Date + + + + Show date instead of sequence. + + + + Cannot run "%1" in "%2": %3 + + + + Stage Chunk + + + + Stage Selection (%n Lines) + + + + + + Unstage Chunk + + + + Unstage Selection (%n Lines) + + + + + + Chunk successfully unstaged + + + + Chunk successfully staged + + + + Git Diff Files + + + + Git Diff Project + + + + Git Diff Repository + + + + Git Reflog "%1" + + + + Generate %1 archive + + + + Overwrite? + 覆盖? + + + An item named "%1" already exists at this location. Do you want to overwrite it? + + + + Create Local Branch + + + + Would you like to create a local branch? + + + + Reset + 重置 + + + All changes in working directory will be discarded. Are you sure? + + + + Nothing to recover + + + + Files recovered + + + + Cannot reset %n files in "%1": %2 + + + + + + Cannot retrieve submodule status of "%1": %2 + + + + Submodules Found + + + + Would you like to update submodules? + + + + REBASING + + + + REVERTING + + + + CHERRY-PICKING + + + + MERGING + + + + Continue Rebase + + + + Rebase is in progress. What do you want to do? + + + + Continue + 继续 + + + Continue Merge + + + + You need to commit changes to finish merge. +Commit now? + + + + Continue Revert + + + + You need to commit changes to finish revert. +Commit now? + + + + Continue Cherry-Picking + + + + You need to commit changes to finish cherry-picking. +Commit now? + + + + No changes found. + + + + Skip + 跳过 + + + <Detached HEAD> + + + + Committed %n files. + + + + + + Amended "%1" (%n files). + + + + + + Cannot commit %n files + + + + + + + Conflicts detected with commit %1. + + + + Conflicts detected with files: +%1 + + + + Conflicts detected. + + + + Conflicts Detected + + + + Run &Merge Tool + + + + Only graphical merge tools are supported. Please configure merge.tool. + + + + &Skip + + + + Force Push + + + + Push failed. Would you like to force-push <span style="color:#%1">(rewrites remote history)</span>? + + + + No Upstream Branch + + + + Push failed because the local branch "%1" does not have an upstream branch on the remote. + +Would you like to create the branch "%1" on the remote and set it as upstream? + + + + Rebase, merge or am is in progress. Finish or abort it and then try again. + + + + No commits were found + + + + No local commits were found + + + + Uncommitted Changes Found + + + + What would you like to do with local changes in: + + + + Stash && &Pop + + + + Stash local changes and pop when %1 finishes. + + + + &Stash + + + + Stash local changes and execute %1. + + + + &Discard + + + + Discard (reset) local changes and execute %1. + + + + Execute %1 with local changes in working directory. + + + + Cancel %1. + + + + Cherr&y-Pick %1 + + + + Re&vert %1 + + + + C&heckout %1 + + + + &Interactive Rebase from %1... + + + + &Log for %1 + + + + Sh&ow file "%1" on revision %2 + + + + Add &Tag for %1... + + + + &Reset to Change %1 + + + + Di&ff %1 + + + + Di&ff Against %1 + + + + Diff &Against Saved %1 + + + + &Save for Diff + + + + Git Show %1:%2 + + + + Filter by message + + + + Filter log entries by text in the commit message. + + + + Filter by content + + + + Filter log entries by added or removed string. + + + + Filter by author + + + + Filter log entries by author. + + + + Filter: + 过滤器: + + + Case Sensitive + 区分大小写 + + + &Blame %1 + + + + Blame &Parent Revision %1 + + + + Stage Chunk... + + + + Unstage Chunk... + + + + Tree (optional) + + + + Can be HEAD, tag, local or remote branch, or a commit hash. +Leave empty to search through the file system. + + + + Recurse submodules + + + + Git Grep + + + + Ref: %1 +%2 + + + + &Copy "%1" + + + + &Describe Change %1 + + + + Triggers a Git version control operation. + + + + Current &File + + + + Diff Current File + Avoid translating "Diff" + Diff 当前文件 + + + Diff of "%1" + Avoid translating "Diff" + "%1"的diff + + + Log Current File + Avoid translating "Log" + Log 当前文件 + + + Log of "%1" + Avoid translating "Log" + "%1" 的 log + + + Blame Current File + Avoid translating "Blame" + Blame 当前文件 + + + Blame for "%1" + Avoid translating "Blame" + "%1"的 blame + + + Current &Project + + + + Diff Current Project + Avoid translating "Diff" + Diff 当前项目 + + + Diff Project "%1" + Avoid translating "Diff" + Diff 项目 "%1" + + + Log Project + Avoid translating "Log" + Log 项目 + + + Log Project "%1" + Avoid translating "Log" + Log 项目 "%1" + + + Clean Project... + Avoid translating "Clean" + Clean 项目... + + + Clean Project "%1"... + Avoid translating "Clean" + Clean 项目 "%1"... + + + &Local Repository + + + + Amend Last Commit... + Avoid translating "Commit" + 增订最后一个 Commit... + + + Fixup Previous Commit... + Avoid translating "Commit" + + + + Recover Deleted Files + + + + Interactive Rebase... + Avoid translating "Rebase" + + + + Update Submodules + + + + Abort Merge + Avoid translating "Merge" + + + + Abort Rebase + Avoid translating "Rebase" + + + + Skip Rebase + + + + Abort Cherry Pick + Avoid translating "Cherry Pick" + + + + Continue Cherry Pick + + + + Abort Revert + Avoid translating "Revert" + + + + &Patch + + + + Stash Unstaged Files + Avoid translating "Stash" + + + + Saves the current state of your unstaged files and resets the repository to its staged state. + + + + Stash Pop + Avoid translating "Stash" + Stash Pop + + + &Remote Repository + + + + &Subversion + &Subversion + + + DCommit + + + + Manage Remotes... + + + + Archive... + + + + Git &Tools + + + + Gitk Current File + + + + Gitk of "%1" + + + + Gitk for folder of Current File + + + + Gitk for folder of "%1" + + + + Git Gui + + + + Repository Browser + + + + Merge Tool + + + + Git Bash + + + + Actions on Commits... + + + + Interactive Rebase + + + + Unsupported version of Git found. Git %1 or later required. + + + + Git Fixup Commit + + + + Unable to Retrieve File List + + + + Set the environment variable HOME to "%1" +(%2). +This causes Git to look for the SSH-keys in that location +instead of its installation directory when run outside git bash. + + + + currently set to "%1" + + + + The binary "%1" could not be located in the path "%2" + + + + Refreshing Commit Data + + + + <a href="head">Show HEAD</a> + + + + Sign off + + + + Provide a valid email to commit. + + + + Select Change + + + + &Commit only + + + + Commit and &Push + + + + Commit and Push to &Gerrit + + + + Invalid author + + + + Invalid email + + + + Unresolved merge conflicts + + + + &Commit and Push + + + + &Commit and Push to Gerrit + + + + &Commit + 提交(&C) + + + Select change: + + + + Reset type: + + + + Hard + + + + Mixed + 混合 + + + Soft + + + + Normal + 正常 + + + Submodule + + + + Deleted + 删除 + + + Symbolic link + + + + Modified + 已更改 + + + Created + + + + Submodule commit %1 + + + + Symbolic link -> %1 + + + + Merge Conflict + + + + %1 merge conflict for "%2" +Local: %3 +Remote: %4 + + + + &Local + + + + &Remote + + + + &Created + + + + &Modified + + + + &Deleted + + + + Unchanged File + + + + Was the merge successful? + + + + Continue Merging + + + + Continue merging other unresolved paths? + + + + Merge tool is not configured. + + + + Run git config --global merge.tool &lt;tool&gt; to configure it, then try again. + + + + A remote with the name "%1" already exists. + + + + The URL may not be valid. + + + + Delete &All... + + + + &Delete... + + + + R&estore... + + + + Restore to &Branch... + Restore a git stash to new branch to be created + - RemoteLinux + GitLab::GitLabCloneDialog - Error Creating Debian Project Templates - 创建Debian项目模板出错 + Clone Repository + - Failed to open debian changelog "%1" file for reading. - 打开并读取debian changelog "%1"文件失败。 + Specify repository URL, checkout path and directory. + - Debian changelog file '%1' has unexpected format. - Debian修改日志文件'%1'格式异常。 + Repository + - Refusing to update changelog file: Already contains version '%1'. - 拒绝更新changelog文件。已经存在版本'%1'。 + Path + - Cannot update changelog: Invalid format (no maintainer entry found). - 无法更新changelog文件。无效格式(没有找到维护者的条目)。 + Path "%1" already exists. + - Invalid icon data in Debian control file. - Debian 控制文件中的图标数据无效。 + Directory + 目录 - Could not read image file '%1'. - 无法读取镜像(image)文件'%1'。 + Recursive + - Could not export image file '%1'. - 无法导出镜像文件'%1'。 + Clone + 克隆 - Failed to create directory "%1". - 创建目录失败:'%1'。 + User canceled process. + - Unable to create Debian templates: No Qt version set. - 无法创建Debian模板:没有设置Qt版本。 + Cloning succeeded. + - Unable to create Debian templates: dh_make failed (%1). - 无法创建Debian模板:dh_make失败(%1)。 + Warning + 警告 - Unable to create debian templates: dh_make failed (%1). - 无法创建debian模板:dh_make失败(%1)。 + Cloned project does not have a project file that can be opened. Try importing the project as a generic project. + - Unable to move new debian directory to '%1'. - 无法将新Debian目录移动到'%1'。 + Open Project + 打开项目 + + + Choose the project file to be opened. + + + + Cloning failed. + - RemoteLinux + GitLab::GitLabDialog - Deploy Public Key... - 部署公钥... + GitLab + - Maemo5/Fremantle - Maemo5/Fremantle + Search + 查找 - MeeGo 1.2 Harmattan - MeeGo 1.2 Harmattan + ... + ... + + + 0 + 0 + + + Clone... + + + + Remote: + + + + Not logged in. + + + + Insufficient access token. + + + + Permission scope read_api or api needed. + + + + Check settings for misconfiguration. + + + + Projects (%1) + 项目(%1) + + + Using project access token. + + + + Logged in as %1 + + + + Id: %1 (%2) + + + + Certificate Error + + + + Server certificate for %1 cannot be authenticated. +Do you want to disable SSL verification for this server? +Note: This can expose you to man-in-the-middle attack. + - RemoteLinux + GitLab::GitLabOptionsPage - Checking whether to start Qemu... - 检查是否需要启动Qemu... + Host: + 主机: - Target device is not an emulator. Nothing to do. - 目标设备不是一个模拟器,没什么要做的。 + Description: + 说明: - Qemu is already running. Nothing to do. - Qemu已经在运行。没什么要做的。 + Access token: + - Cannot deploy: Qemu was not running. It has now been started up for you, but it will take a bit of time until it is ready. Please try again then. - 无法部署:Qemu不在运行。现在正在为您启动,但是完成启动需要花点时间。请稍后再试。 + Port: + 端口: - Cannot deploy: You want to deploy to Qemu, but it is not enabled for this Qt version. - 无法部署:您希望部署到Qemu,但是本版本Qt没有启用Qemu支持。 + HTTPS: + + + + GitLab + - RemoteLinux + GitLab::GitLabOptionsWidget - Start Qemu, if necessary - 必要时启动Qemu + Default: + 默认: + + + curl: + + + + Edit... + 编辑... + + + Edit current selected GitLab server configuration. + + + + Remove + 删除 + + + Remove current selected GitLab server configuration. + + + + Add... + 添加... + + + Add new GitLab server configuration. + + + + Edit Server... + + + + Modify + + + + Add Server... + + + + Add + 添加 - RemoteLinux + GitLab::GitLabPlugin - Add Packaging Files to Project - 添加包文件到项目中 + GitLab + - <html>Qt Creator has set up the following files to enable packaging: - %1 -Do you want to add them to the project?</html> - <html>Qt Creator 将以下文件设置为支持打包功能: - %1 -您想添加它们到项目中吗?</html> + GitLab... + + + + Error + 错误 + + + Invalid GitLab configuration. For a fully functional configuration, you need to set up host name or address and an access token. Providing the path to curl is mandatory. + - Perforce::Internal::PerforceVersionControl + GitLab::GitLabProjectSettingsWidget - &Edit (%1) - 编辑(%1)(&E) + Host: + 主机: + + + Linked GitLab Configuration: + + + + Link with GitLab + + + + Unlink from GitLab + + + + Test Connection + + + + Projects linked with GitLab receive event notifications in the Version Control output pane. + + + + Remote host does not match chosen GitLab configuration. + + + + Check settings for misconfiguration. + + + + Accessible (%1). + + + + Read only access. + + + + Not a git repository. + + + + Local git repository without remotes. + + + + + GlslEditor::Internal::GlslEditorPlugin + + GLSL + GLSL sub-menu in the Tools menu + GLSL + + + + HelloWorld::Internal::HelloMode + + Hello World PushButton! + + + + Hello world! + + + + + HelloWorld::Internal::HelloWorldPlugin + + Say "&Hello World!" + + + + &Hello World + + + + Hello World! + + + + Hello World! Beautiful day today, isn't it? + + + + + HelloWorld::Internal::HelloWorldWindow + + Focus me to activate my context! + + + + Hello, world! + + + + + Help + + Documentation + 文档 + + + Add Documentation + 添加文档 + + + Qt Help Files (*.qch) + Qt 帮助文件 (*.qch) + + + Invalid documentation file: + 无效的文档文件: + + + Namespace already registered: + 命名空间已经注册: + + + Unable to register documentation. + 无法注册文档。 + + + Add and remove compressed help files, .qch. + 添加和删除已压缩的帮助文件,.qch。 + + + Registered Documentation + 已注册的文档 + + + Add... + 添加... + + + Remove + 删除 + + + Filters + 过滤器 + + + Unfiltered + 未过滤 + + + Help Index + 帮助索引 + + + Help + 帮助 + + + Contents + 目录 + + + Index + 索引 + + + Search + 查找 + + + Bookmarks + 书签 + + + Home + 主页 + + + Meta+M + Meta+M + + + Ctrl+M + Ctrl+M + + + Report Bug... + 报告bug... + + + Meta+I + Meta+I + + + Ctrl+Shift+I + Ctrl+Shift+I + + + Meta+Shift+C + Meta+Shift+C + + + Ctrl+Shift+C + Ctrl+Shift+C + + + Meta+/ + Meta+/ + + + Ctrl+Shift+/ + Ctrl+Shift+/ + + + Ctrl+Shift+B + Ctrl+Shift+B + + + Meta+O + Meta+O + + + Ctrl+Shift+O + Ctrl+Shift+O + + + Add Bookmark + 添加书签 + + + Context Help + 上下文相关帮助 + + + Increase Font Size + 增大字号 + + + Decrease Font Size + 减小字号 + + + Reset Font Size + 重置字号 + + + Open Pages + 打开页面 + + + No Documentation + 没有文档 + + + No documentation available. + 没有可用文档。 + + + Open Link + 打开链接 + + + Open Link as New Page + 在新页面打开连接 + + + Copy Link + 复制链接 + + + Copy + 复制 + + + Reload + 重新载入 + + + General + 概要 + + + Import Bookmarks + 导入书签 + + + Files (*.xbel) + 文件 (*.xbel) + + + Cannot import bookmarks. + 无法导入书签。 + + + Save File + 保存文件 + + + Font + 字体 + + + Family: + 字型: + + + Style: + 风格: + + + Size: + 字号: + + + Startup + 启动 + + + On context help: + 上下文相关帮助: + + + Show Side-by-Side if Possible + 尽可能并排显示 + + + Always Show Side-by-Side + 总是并排显示 + + + On help start: + 帮助开始时: + + + Show My Home Page + 显示我的主页 + + + Show a Blank Page + 显示空白页 + + + Show My Tabs from Last Session + 显示上一次会话的打开页面 + + + Home page: + 主页: + + + Use &Current Page + 使用当前页(&C) + + + Use &Blank Page + 使用空白页(&B) + + + Reset + 重置 + + + Behaviour + 行为 + + + Return to editor on closing the last page + 关闭最后一页时返回编辑器 + + + The file is not an XBEL version 1.0 file. + 此文件不是XBEL 1.0文件。 + + + Unknown title + 未知标题 + + + Error loading: %1 + 载入 %1 除错 + + + (Untitled) + (未命名) + + + Close %1 + 关闭%1 + + + Close All Except %1 + 除了%1 以外全部关闭 + + + Copy Full Path to Clipboard + 复制完整路径到剪贴板 + + + %1 (auto-detected) + + + + Registration Failed + + + + Note: The above setting takes effect only if the HTML file does not use a style sheet. + + + + Zoom: + 缩放: + + + % + % + + + Always Show in Help Mode + + + + Always Show in External Window + + + + Reset to default. + 重置为默认。 + + + Enable scroll wheel zooming + + + + Switches to editor context after last help page is closed. + + + + Viewer backend: + + + + Change takes effect after reloading help pages. + + + + Import Bookmarks... + + + + Export Bookmarks... + + + + Default (%1) + Default viewer backend + + + + Open Link in Window + + + + Update Documentation + + + + Technical Support... + + + + System Information... + + + + System Information + + + + Use the following to provide more detailed information about your system to bug reports: + + + + Copy to Clipboard + + + + Zoom: %1% + + + + Show Context Help Side-by-Side if Possible + + + + Always Show Context Help Side-by-Side + + + + Always Show Context Help in Help Mode + + + + Always Show Context Help in External Window + + + + Open in Help Mode + + + + Back + + + + Forward + 按时间顺序 + + + Open Online Documentation... + + + + Open in Edit Mode + + + + Open in New Page + + + + Open in Window + + + + Activate Help Bookmarks View + + + + Alt+Meta+M + Alt+Meta+M + + + Activate Help Search View + + + + Activate Open Help Pages View + + + + Help - %1 + + + + Print Documentation + + + + litehtml + + + + QtWebEngine + + + + QTextBrowser + + + + WebKit + + + + Error loading page + + + + <p>Check that you have the corresponding documentation set installed.</p> + + + + The page could not be found + + + + Get Help Online + + + + Indexing Documentation + + + + Regenerate Index + + + + &Look for: + 查找(&L): + + + + HeobData + + Process %1 + 进程%1 + + + Process finished with exit code %1 (0x%2). + + + + Unknown argument: -%1 + + + + Cannot create target process. + + + + Wrong bitness. + + + + Process killed. + + + + Only works with dynamically linked CRT. + + + + Process stopped with unhandled exception code 0x%1. + + + + Not enough memory to keep track of allocations. + + + + Application stopped unexpectedly. + + + + Extra console. + + + + Unknown exit reason. + + + + Heob stopped unexpectedly. + + + + Heob: %1 + + + + Heob: Failure in process attach handshake (%1). + + + + + HeobDialog + + New + 新建 + + + Delete + 删除 + + + XML output file: + + + + Handle exceptions: + + + + Off + + + + On + + + + Only + + + + Page protection: + + + + After + + + + Before + + + + Freed memory protection + + + + Raise breakpoint exception on error + + + + Leak details: + + + + None + + + + Simple + + + + Detect Leak Types + + + + Detect Leak Types (Show Reachable) + + + + Fuzzy Detect Leak Types + + + + Fuzzy Detect Leak Types (Show Reachable) + + + + Minimum leak size: + + + + Control leak recording: + + + + On (Start Disabled) + + + + On (Start Enabled) + + + + Run with debugger + + + + Extra arguments: + + + + Heob path: + + + + The location of heob32.exe and heob64.exe. + + + + Save current settings as default. + + + + OK + OK + + + Default + 默认 + + + Heob + + + + New Heob Profile + + + + Heob profile name: + + + + %1 (copy) + %1 (复制) + + + Delete Heob Profile + + + + Are you sure you want to delete this profile permanently? + + + + + ImageViewer + + Image Viewer + 图像查看器 + + + Fit to Screen + 适应屏幕 + + + Ctrl+= + Ctrl+= + + + Switch Background + 切换背景 + + + Switch Outline + 显示轮廓线 + + + Toggle Animation + 切换动画 + + + Ctrl+[ + Ctrl+[ + + + Ctrl+] + Ctrl+] + + + Play Animation + 播放动画 + + + Pause Animation + 暂停动画 + + + File: + 文件: + + + x + Multiplication, as in 32x32 + x + + + Size: + + + + %1 already exists. +Would you like to overwrite it? + + + + Exported "%1", %2x%3, %4 bytes + + + + Could not write file "%1". + + + + Export Image + + + + Export %1 + + + + Export a Series of Images from %1 (%2x%3) + + + + Export + + + + Set as Default + 设置为默认 + + + on + + + + off + + + + Use the current settings for background, outline, and fitting to screen as the default for new image viewers. Current default: + + + + Background: %1 + + + + Outline: %1 + + + + Fit to Screen: %1 + + + + Image format not supported. + + + + Failed to read SVG image. + + + + Failed to read image. + + + + Export Multiple Images + + + + Copy as Data URL + + + + Enter a file name containing place holders %1 which will be replaced by the width and height of the image, respectively. + + + + Clear + + + + Set Standard Icon Sizes + + + + Generate Sizes + + + + A comma-separated list of size specifications of the form "<width>x<height>". + + + + Sizes: + + + + Please specify some sizes. + + + + Invalid size specification: %1 + + + + The file name must contain one of the placeholders %1, %2. + + + + The file %1 already exists. +Would you like to overwrite it? + + + + The files %1 already exist. +Would you like to overwrite them? + + + + + IncrediBuild::Internal::BuildConsoleBuildStep + + IncrediBuild for Windows + + + + Target and Configuration + + + + Enter the appropriate arguments to your build command. + + + + Make sure the build command's multi-job parameter value is large enough (such as -j200 for the JOM or Make build tools) + + + + Keep original jobs number: + + + + Forces IncrediBuild to not override the -j command line switch, that controls the number of parallel spawned tasks. The default IncrediBuild behavior is to set it to 200. + + + + IncrediBuild Distribution Control + + + + Profile.xml: + + + + Defines how Automatic Interception Interface should handle the various processes involved in a distributed job. It is not necessary for "Visual Studio" or "Make and Build tools" builds, but can be used to provide configuration options if those builds use additional processes that are not included in those packages. It is required to configure distributable processes in "Dev Tools" builds. + + + + Avoid local task execution: + + + + Overrides the Agent Settings dialog Avoid task execution on local machine when possible option. This allows to free more resources on the initiator machine and could be beneficial to distribution in scenarios where the initiating machine is bottlenecking the build with High CPU usage. + + + + Determines the maximum number of CPU cores that can be used in a build, regardless of the number of available Agents. It takes into account both local and remote cores, even if the Avoid Task Execution on Local Machine option is selected. + + + + Maximum CPUs to utilize in the build: + + + + Newest allowed helper machine OS: + + + + Specifies the newest operating system installed on a helper machine to be allowed to participate as helper in the build. + + + + Oldest allowed helper machine OS: + + + + Specifies the oldest operating system installed on a helper machine to be allowed to participate as helper in the build. + + + + Output and Logging + + + + Build title: + + + + Specifies a custom header line which will be displayed in the beginning of the build output text. This title will also be used for the Build History and Build Monitor displays. + + + + Save IncrediBuild monitor file: + + + + Writes a copy of the build progress file (.ib_mon) to the specified location. If only a folder name is given, a generated GUID will serve as the file name. The full path of the saved Build Monitor will be written to the end of the build output. + + + + Suppress STDOUT: + + + + Does not write anything to the standard output. + + + + Output Log file: + + + + Writes build output to a file. + + + + Show Commands in output: + + + + Shows, for each file built, the command-line used by IncrediBuild to build the file. + + + + Show Agents in output: + + + + Shows the Agent used to build each file. + + + + Show Time in output: + + + + Shows the Start and Finish time for each file built. + + + + Hide IncrediBuild Header in output: + + + + Suppresses IncrediBuild's header in the build output + + + + Internal IncrediBuild logging level: + + + + Overrides the internal Incredibuild logging level for this build. Does not affect output or any user accessible logging. Used mainly to troubleshoot issues with the help of IncrediBuild support + + + + Miscellaneous + 其他 + + + Set an Environment Variable: + + + + Sets or overrides environment variables for the context of the build. + + + + Stop on errors: + + + + When specified, the execution will stop as soon as an error is encountered. This is the default behavior in "Visual Studio" builds, but not the default for "Make and Build tools" or "Dev Tools" builds + + + + Additional Arguments: + + + + Add additional buildconsole arguments manually. The value of this field will be concatenated to the final buildconsole command line + + + + Open Build Monitor: + + + + Opens Build Monitor once the build starts. + + + + + IncrediBuild::Internal::CMakeCommandBuilder + + CMake + CMake + + + + IncrediBuild::Internal::CommandBuilder + + Custom Command + + + + + IncrediBuild::Internal::CommandBuilderAspect + + Command Helper: + + + + Select a helper to establish the build command. + + + + Make command: + + + + Make arguments: + Make 参数: + + + + IncrediBuild::Internal::IBConsoleBuildStep + + IncrediBuild for Linux + + + + Target and Configuration + + + + Enter the appropriate arguments to your build command. + + + + Make sure the build command's multi-job parameter value is large enough (such as -j200 for the JOM or Make build tools) + + + + Keep original jobs number: + + + + Forces IncrediBuild to not override the -j command line switch, that controls the number of parallel spawned tasks. The default IncrediBuild behavior is to set it to 200. + + + + IncrediBuild Distribution Control + + + + Specify nice value. Nice Value should be numeric and between -20 and 19 + + + + Nice value: + + + + Force remote: + + + + Alternate tasks preference: + + + + + IncrediBuild::Internal::MakeCommandBuilder + + Make + Make + + + + InvalidIdException + + Only alphanumeric characters and underscore allowed. +Ids must begin with a lowercase letter. + 仅允许字母数字和下划线。 +Id必须以小写字母开头。 + + + Ids have to be unique. + Id 必须唯一。 + + + Invalid Id: %1 +%2 + 无效 Id: %1 +%2 + + + + Ios::Internal + + Deploy on iOS + + + + + Ios::Internal::CreateSimulatorDialog + + Create Simulator + + + + Simulator name: + + + + Device type: + 设备类型: + + + OS version: + + + + None + + + + + Ios::Internal::IosBuildStep + + Base arguments: + + + + Reset Defaults + + + + Extra arguments: + + + + iOS build + iOS BuildStep display name. + + + + xcodebuild + + + + + Ios::Internal::IosConfigurations + + %1 Simulator + + + + + Ios::Internal::IosDebugSupport + + Application not running. + + + + Could not find device specific debug symbols at %1. Debugging initialization will be slow until you open the Organizer window of Xcode with the device connected to have the symbols generated. + + + + The dSYM %1 seems to be outdated, it might confuse the debugger. + + + + + Ios::Internal::IosDeployStep + + Deploy to %1 + + + + Error: no device available, deploy failed. + + + + Deployment failed. No iOS device found. + + + + Transferring application + + + + Deployment failed. The settings in the Devices window of Xcode might be incorrect. + + + + Deployment failed. + + + + The Info.plist might be incorrect. + + + + The provisioning profile "%1" (%2) used to sign the application does not cover the device %3 (%4). Deployment to it will fail. + + + + Deploy to iOS device + + + + + Ios::Internal::IosDevice + + iOS + + + + iOS Device + + + + Device name: + + + + Identifier: + + + + OS Version: + + + + CPU Architecture: + + + + + Ios::Internal::IosDeviceManager + + Device name + + + + Developer status + Whether the device is in developer mode. + + + + Connected + + + + yes + + + + no + + + + unknown + + + + OS version + + + + An iOS device in user mode has been detected. + + + + Do you want to see how to set it up for development? + + + + + Ios::Internal::IosDsymBuildStep + + Command: + 命令: + + + Arguments: + 参数: + + + Reset to Default + + + + + Ios::Internal::IosQmakeBuildConfiguration + + iOS Settings + + + + Reset + 重置 + + + Automatically manage signing + + + + Development team: + + + + Provisioning profile: + + + + Default + 默认 + + + None + + + + Development team is not selected. + + + + Provisioning profile is not selected. + + + + Using default development team and provisioning profile. + + + + Development team: %1 (%2) + + + + Settings defined here override the QMake environment. + + + + %1 not configured. Use Xcode and Apple developer account to configure the provisioning profiles and teams. + + + + Development teams + + + + Provisioning profiles + + + + No provisioning profile found for the selected team. + + + + Provisioning profile expired. Expiration date: %1 + + + + + Ios::Internal::IosQmlProfilerSupport + + Could not get necessary ports for the profiler connection. + + + + + Ios::Internal::IosQtVersion + + Failed to detect the ABIs used by the Qt version. + 检测Qt版本使用的ABI失败。 + + + iOS + Qt Version is meant for Ios + + + + + Ios::Internal::IosRunConfiguration + + Run on %1 + + + + Run %1 on %2 + + + + Kit has incorrect device type for running on iOS devices. + + + + No device chosen. Select %1. + + + + No device chosen. Enable developer mode on a device. + + + + No device available. + + + + To use this device you need to enable developer mode on it. + + + + %1 is not connected. Select %2? + + + + %1 is not connected. Enable developer mode on a device? + + + + %1 is not connected. + + + + Device type: + 设备类型: + + + + Ios::Internal::IosRunSupport + + Starting remote process. + 启动远端进程。 + + + + Ios::Internal::IosRunner + + Could not find %1. + + + + Could not get necessary ports for the debugger connection. + + + + Could not get inferior PID. + + + + Run failed. The settings in the Organizer window of Xcode might be incorrect. + + + + The device is locked, please unlock. + + + + Run ended. + + + + Run ended with error. + + + + + Ios::Internal::IosSettingsWidget + + iOS + + + + iOS Configuration + + + + Ask about devices not in developer mode + + + + Rename + 重命名 + + + Rename a simulator device. + + + + Delete + 删除 + + + Delete simulator devices. + + + + Reset + 重置 + + + Reset contents and settings of simulator devices. + + + + Create + + + + Create a new simulator device. + + + + Start + + + + Start simulator devices. + + + + Screenshot + + + + Devices + 设备 + + + Simulator + 模拟器 + + + Screenshot directory: + + + + You are trying to launch %n simulators simultaneously. This will take significant system resources. Do you really want to continue? + + + + + + Simulator Start + + + + Starting %n simulator device(s)... + + + + + + Cannot start simulator (%1, %2) in current state: %3 + + + + simulator start + + + + Creating simulator device... + + + + Simulator device (%1) created. +UDID: %2 + + + + Simulator device (%1) creation failed. +Error: %2 + + + + Do you really want to reset the contents and settings of the %n selected device(s)? + + + + + + Resetting contents and settings... + + + + simulator reset + + + + Rename %1 + + + + Enter new name: + + + + Renaming simulator device... + + + + simulator rename + + + + Delete Device + + + + Do you really want to delete the %n selected device(s)? + + + + + + Deleting %n simulator device(s)... + + + + + + simulator delete + + + + Capturing screenshots from %n device(s)... + + + + + + simulator screenshot + + + + + Ios::Internal::IosSimulator + + iOS Simulator + + + + + Ios::Internal::SimulatorInfoModel + + UDID: %1 + + + + Simulator Name + + + + Runtime + + + + Current State + + + + + Ios::Internal::SimulatorOperationDialog + + Simulator Operation Status + + + + %1, %2 +Operation %3 completed successfully. + + + + %1, %2 +Operation %3 failed. +UDID: %4 +Error: %5 + + + + Unknown + 未知 + + + Done. + 完成。 + + + + Ios::IosToolHandler + + iOS tool error %1 + + + + Application install on simulator failed. Simulator not running. + + + + Application launch on simulator failed. Invalid bundle path %1 + + + + Application launch on simulator failed. Simulator not running. + + + + Application install on simulator failed. %1 + + + + Cannot capture console output from %1. Error redirecting output to %2.* + + + + Cannot capture console output from %1. Install Xcode 8 or later. + + + + Application launch on simulator failed. %1 + + + + Invalid simulator response. Device Id mismatch. Device Id = %1 Response Id = %2 + + + + + Ios::Relayer + + iOS Debugging connection to creator failed with error %1 + + + + + JsonRpcMessage + + Could not parse JSON message "%1". + + + + Expected a JSON object, but got a JSON "%1" value. + + + + + JsonTreeModelItem + + Null + + + + Bool + + + + Double + + + + String + 字符串 + + + Array + + + + Object + 对象 + + + Undefined + 未定义 + + + %n Items + + + + + + + Language + + None + + + + + LanguageClient + + Language Client + + + + Symbols in Current Document + + + + Symbols in Workspace + + + + Classes and Structs in Workspace + + + + Functions and Methods in Workspace + + + + + LanguageClient::BaseClientInterface + + Cannot handle MIME type of message %1 + + + + + LanguageClient::BaseSettings + + Always On + + + + Requires an Open File + + + + Start Server per Project + + + + + LanguageClient::BaseSettingsWidget + + Name: + 名称: + + + Language: + 语言: + + + Set MIME Types... + + + + File pattern + + + + Startup behavior: + + + + Initialization options: + + + + Failed to parse JSON at %1: %2 + + + + Language server-specific JSON to pass via "initializationOptions" field of "initialize" request. + + + + + LanguageClient::Client + + %1 for %2 + + + + uninitialized + + + + initialize requested + + + + initialized + + + + shutdown requested + + + + shutdown + + + + error + + + + + LanguageClient::ClientPrivate + + Invalid parameter in "%1": +%2 + + + + Language Server "%1" Initialize Error + + + + Initialize error: + + + + Initialize result is invalid. + + + + Server Info is invalid. + + + + No initialize result. + + + + + LanguageClient::DiagnosticManager + + Copy to Clipboard + + + + + LanguageClient::DocumentLocatorFilter + + Matches all symbols from the current document, based on a language server. + + + + + LanguageClient::LanguageClientManager + + Unexpectedly finished. Restarting in %1 seconds. + + + + Unexpectedly finished. + + + + Show available quick fixes + + + + + LanguageClient::LanguageClientPlugin + + Generic StdIO Language Server + + + + Inspect Language Clients... + + + + + LanguageClient::LspInspector + + Expand All + 展开全部 + + + Client Message + + + + Messages + + + + Server Message + + + + Log File + + + + + LanguageClient::ReplaceWidget + + Search Again to update results and re-enable Replace + + + + Re&name %n files + + + + + + Files: +%1 + + + + + LanguageClient::ResponseError + + Error %1 + + + + + LanguageClient::StdIOClientInterface + + Cannot send data to unstarted server %1 + + + + + LanguageClient::StdIOSettingsWidget + + Executable: + 执行档: + + + Arguments: + 参数: + + + + LanguageClientSettingsPage + + &Add + 添加(&A) + + + &Delete + 删除(&D) + + + General + 概要 + + + + LanguageServerProtocol::Notification + + No parameters in "%1". + + + + + LanguageServerProtocol::Request + + No ID set in "%1". + + + + + Locator + + Locator + 定位器 + + + + LogFileReader + + File "%1" does not exist or is not readable. + + + + Error: Failed to parse YAML file "%1": %2. + + + + + LoggingViewManagerWidget + + Logging Category Viewer + + + + Save Log + + + + Clear + + + + Stop Logging + + + + Toggle Qt Internal Logging + + + + Auto Scroll + 自动滚动 + + + Timestamps + + + + Message Types + + + + Timestamp + + + + Category + + + + Type + 类型 + + + Message + 消息 + + + Start Logging + + + + Copy Selected Logs + + + + Copy All + + + + Save Enabled as Preset... + + + + Update from Preset... + + + + Uncheck All + 取消选中 + + + Save Logs As + + + + Error + 错误 + + + Failed to write logs to "%1". + + + + Failed to open file "%1" for writing logs. + + + + Save Enabled Categories As + + + + Failed to write preset file "%1". + + + + Load Enabled Categories From + + + + Failed to open preset file "%1" for reading + + + + Failed to read preset file "%1": %2 + + + + Unexpected preset file format. + + + + + LspCapabilitiesWidget + + Capabilities: + 能力: + + + Dynamic Capabilities: + + + + Method: + 方法: + + + Options: + + + + Server Capabilities + + + + + LspInspectorWidget + + Language Client Inspector + + + + Log + + + + Capabilities + + + + Clear + + + + + Macros + + Macros + + + + + Macros::Internal::MacroLocatorFilter + + Text Editing Macros + + + + Runs a text editing macro that was recorded with Tools > Text Editing Macros > Record Macro. + + + + + Macros::Internal::MacroManager + + Playing Macro + 播放宏 + + + An error occurred while replaying the macro, execution stopped. + 播放macro时发生错误, 执行停止。 + + + Macro mode. Type "%1" to stop recording and "%2" to play the macro. + + + + Stop Recording Macro + 停止录制宏 + + + + Macros::Internal::MacroOptionsWidget + + Preferences + 首选项 + + + Name + 名称 + + + Shortcut + 快捷键 + + + Remove + 删除 + + + Macro + + + + Description: + 说明: + + + Macros + + + + Description) + + + + + Macros::Internal::MacrosPlugin + + Record Macro + 录制宏 + + + Stop Recording Macro + 停止录制宏 + + + Play Last Macro + 播放最近的宏 + + + Alt+R + Alt+R + + + Meta+R + Meta+R + + + Save Last Macro + 保存最近的宏 + + + Text Editing &Macros + + + + Ctrl+[ + Ctrl+[ + + + Alt+[ + + + + Ctrl+] + Ctrl+] + + + Alt+] + + + + + Macros::Internal::SaveDialog + + Save Macro + 保存宏 + + + Name: + 名称: + + + Description: + 说明: + + + + MainWidget + + Crash Handler + + + + Qt Creator has crashed + + + + You can send us a crash report in order to help us diagnose and fix the problem. + + + + Email: + + + + Enter here your email (optional) + + + + Tell The Qt Company about this crash so they can fix it + + + + Details + 详情 + + + Please describe what you did before it crashed (comments are publicly visible) + + + + Your crash report will be submitted before you quit or restart. + + + + %v/%m Bytes + + + + Restart + + + + Quit + 退出 + + + %1 has crashed + + + + We specifically send the following information: + + + + + + Email: %1 + + + + + Comments: %1 + + + + + In addition, we send a Microsoft Minidump file, which contains information about this computer, such as the operating system and CPU, and most importantly, it contains the stacktrace, which is an internal structure that shows where the program crashed. This information will help us to identify the cause of the crash and to fix it. + + + + + MainWindow + + MainWindow + + + + + Marketplace::Internal::QtMarketplaceWelcomePage + + Marketplace + + + + Search in Marketplace... + + + + <p>Could not fetch data from Qt Marketplace.</p><p>Try with your browser instead: <a href='https://marketplace.qt.io'>https://marketplace.qt.io</a></p><br/><p><small><i>Error: %1</i></small></p> + + + + + McuSupport::Internal::FlashAndRunConfiguration + + Flash and run CMake parameters: + + + + + McuSupport::Internal::McuDependenciesKitAspect + + MCU Dependencies + + + + Paths to 3rd party dependencies + + + + The MCU dependencies setting value is invalid. + + + + CMake variable %1 not defined. + + + + CMake variable %1: path %2 does not exist. + + + + + McuSupport::Internal::McuPackage + + Path %1 exists, but does not contain %2. + + + + Path %1 does not exist. Add the path in Edit > Preferences > Devices > MCU. + + + + Missing %1. Add the path in Edit > Preferences > Devices > MCU. + + + + No CMake tool was detected. Add a CMake tool in Edit > Preferences > Kits > CMake. + + + + Path %1 exists. + + + + Path %1 exists. Version %2 was found. + + + + Path %1 is valid, %2 was found. + + + + but only version %1 is supported + + + + but only versions %1 are supported + + + + Path %1 is valid, %2 was found, %3. + + + + Path %1 does not exist. + + + + Path is empty. + + + + Path is empty, %1 not found. + + + + Download from "%1" + + + + Arm GDB at %1 + + + + MSVC Binary directory + + + + GCC Toolchain + + + + GNU Arm Embedded Toolchain + + + + STM32CubeProgrammer + + + + + McuSupport::Internal::McuSupportDevice + + MCU Device + + + + + McuSupport::Internal::McuSupportOptions + + Qt for MCUs Demos + + + + Qt for MCUs Examples + + + + Replace Existing Kits + + + + Create New Kits + + + + Qt for MCUs + + + + New version of Qt for MCUs detected. Upgrade existing kits? + + + + + McuSupport::Internal::McuSupportOptionsWidget + + Qt for MCUs SDK + + + + Targets supported by the %1 + + + + Requirements + + + + Automatically create kits for all available targets on start + + + + Create a Kit + + + + Create Kit + + + + Update Kit + + + + No valid kit descriptions found at %1. + + + + A kit for the selected target and SDK version already exists. + + + + Kits for a different SDK version exist. + + + + A kit for the selected target can be created. + + + + MCU + + + + + McuSupport::Internal::McuSupportPlugin + + Create Kits for Qt for MCUs? To do it later, select Edit > Preferences > Devices > MCU. + + + + Create Kits for Qt for MCUs + + + + New version of Qt for MCUs detected. Upgrade existing Kits? + + + + Create new kits + + + + Replace existing kits + + + + Proceed + 继续 + + + + McuSupport::Internal::McuTarget + + Warning for target %1: missing CMake toolchain file expected at %2. + + + + Warning for target %1: missing QulGenerators expected at %2. + + + + Qt for MCUs SDK version %1 detected, only supported by Qt Creator version %2. This version of Qt Creator requires Qt for MCUs %3 or greater. + + + + Skipped %1. Unsupported version "%2". + + + + Detected version "%1", only supported by Qt Creator %2. + + + + Unsupported version "%1". + + + + Skipped %1. %2 Qt for MCUs version >= %3 required. + + + + No valid kit descriptions found at %1. + + + + Kit for %1 created. + + + + Error creating kit for target %1, package %2: %3 + + + + Warning creating kit for target %1, package %2: %3 + + + + + Mercurial + + General Information + 概要信息 + + + Repository: + 代码仓库: + + + Branch: + 分支: + + + Commit Information + 提交信息 + + + Author: + 作者: + + + Email: + 电子邮件: + + + Configuration + 配置 + + + Command: + 命令: + + + User + 用户 + + + Username to use by default on commit. + 提交时默认使用的用户名。 + + + Default username: + 默认用户名: + + + Email to use by default on commit. + 提交时默认使用的 Email。 + + + Miscellaneous + 其他 + + + Mercurial + Mercurial + + + Default email: + 默认电子邮件: + + + Revert + 还原 + + + Specify a revision other than the default? + 指定一个修订版本而不用默认版本? + + + Revision: + 修订版本: + + + Local filesystem: + 本地文件系统: + + + Default Location + 默认位置 + + + Specify URL: + 指定URL: + + + Commit Editor + Commit编辑器 + + + Unable to find parent revisions of %1 in %2: %3 + 无法在 %2 找到 %1 的父修订版本: %3 + + + Cannot parse output: %1 + 无法解析输出: %1 + + + Hg incoming %1 + no idea what it is + Hg 正在传入 %1 + + + Hg outgoing %1 + Hg 正在传出 %1 + + + Annotate Current File + Annotate 当前文件 + + + Annotate "%1" + Annotate "%1" + + + Diff Current File + Diff 当前文件 + + + Diff "%1" + Diff "%1" + + + Meta+H,Meta+D + Meta+H,Meta+D + + + Log Current File + Log 当前文件 + + + Log "%1" + Log "%1" + + + Meta+H,Meta+L + Meta+H,Meta+L + + + Status Current File + Status 当前文件 + + + Status "%1" + Status "%1" + + + Meta+H,Meta+S + Meta+H,Meta+S + + + Add + 添加 + + + Add "%1" + 添加 "%1" + + + Delete... + 删除... + + + Delete "%1"... + 删除 "%1"... + + + Revert Current File... + 还原当前文件... + + + Revert "%1"... + 还原 "%1"... + + + Diff + Diff + + + Log + Log + + + Revert... + 还原... + + + Status + Status + + + Pull... + Pull... + + + Push... + Push... + + + Update... + 更新... + + + Import... + 导入... + + + Incoming... + 传入... + + + Outgoing... + 传出... + + + Commit... + 提交... + + + Meta+H,Meta+C + Meta+H,Meta+C + + + Create Repository... + 创建代码仓库... + + + Pull Source + Pull 源码 + + + Push Destination + Push 目标 + + + Update + 更新 + + + Incoming Source + 传入源 + + + There are no changes to commit. + 没有修改可提交。 + + + Unable to create an editor for the commit. + 无法为提交创建编辑器。 + + + Commit changes for "%1". + 为 "%1" 提交修改。 + + + Mercurial Command + Mercurial 命令 + + + Username: + 用户名: + + + Password: + 密码: + + + Mercurial Diff + + + + Mercurial Diff "%1" + + + + &Annotate %1 + + + + Annotate &parent revision %1 + + + + Triggers a Mercurial version control operation. + + + + Me&rcurial + + + + Alt+G,Alt+D + Alt+G,Alt+D + + + Alt+G,Alt+L + Alt+G,Alt+L + + + Alt+G,Alt+S + Alt+G,Alt+S + + + Alt+G,Alt+C + Alt+G,Alt+C + + + For example: 'https://[user[:pass]@]host[:port]/[path]'. + + + + Prompt for credentials + + + + + MesonProjectManager + + Key + 密钥 + + + Value + + + + Configure + 配置 + + + Build + 构建 + + + Build "%1" + 构建 "%1" + + + Meson + + + + Apply Configuration Changes + + + + Wipe Project + + + + Wipes build directory and reconfigures using previous command line options. +Useful if build directory is corrupted or when rebuilding with a newer version of Meson. + + + + Parameters + + + + Meson build: Parsing failed + + + + Configuring "%1". + + + + Running %1 in %2. + + + + Executable does not exist: %1 + + + + Command is not executable: %1 + + + + No Meson tool set. + + + + No Ninja tool set. + + + + No compilers set in kit. + + + + Meson Tool + + + + The Meson tool to use when building a project with Meson.<br>This setting is ignored when using other build systems. + + + + Cannot validate this meson executable. + + + + Unconfigured + 未配置 + + + Build + MesonProjectManager::MesonBuildStepConfigWidget display name. + 构建 + + + Tool arguments: + + + + Targets: + 目标: + + + Meson Build + + + + Ninja Tool + + + + The Ninja tool to use when building a project with Meson.<br>This setting is ignored when using other build systems. + + + + Cannot validate this Ninja executable. + + + + Ninja + + + + Autorun Meson + + + + Automatically run Meson when needed. + + + + Ninja verbose mode + + + + Enables verbose mode by default when invoking Ninja. + + + + General + 概要 + + + Name: + 名称: + + + Path: + 路径: + + + Name + + + + Location + + + + New Meson or Ninja tool + + + + Tools + + + + Add + 添加 + + + Clone + 克隆 + + + Remove + 删除 + + + Make Default + 设置为默认 + + + Set as the default Meson executable to use when creating a new kit or when no value is set. + + + + Version: %1 + 版本: %1 + + + Clone of %1 + %1 的克隆 + + + Meson executable path does not exist. + + + + Meson executable path is not a file. + + + + Meson executable path is not executable. + + + + Cannot get tool version. + + + + + MimeTypeDialog + + Select MIME Types + + + + Filter + 过滤器 + + + + ModelEditor + + Zoom: %1% + + + + + ModelEditor::Internal::ActionHandler + + &Remove + 删除(&R) + + + &Delete + 删除(&D) + + + Export Diagram... + + + + Export Selected Elements... + + + + Open Parent Diagram + + + + Add Package + + + + Add Component + + + + Add Class + + + + Add Canvas Diagram + + + + Synchronize Browser and Diagram + + + + Press && Hold for Options + + + + Edit Element Properties + + + + Shift+Return + Shift+Return + + + Edit Item on Diagram + + + + Return + + + + + ModelEditor::Internal::ElementTasks + + Update Include Dependencies + + + + + ModelEditor::Internal::ExtPropertiesMView + + Select Custom Configuration Folder + + + + Config path: + + + + <font color=red>Model file must be reloaded.</font> + + + + + ModelEditor::Internal::ModelDocument + + No model loaded. Cannot save. + + + + Could not open "%1" for reading: %2. + + + + + ModelEditor::Internal::ModelEditor + + <html><body style="color:#909090; font-size:14px"><div align='center'><div style="font-size:20px">Open a diagram</div><table><tr><td><hr/><div style="margin-top: 5px">&bull; Double-click on diagram in model tree</div><div style="margin-top: 5px">&bull; Select "Open Diagram" from package's context menu in model tree</div></td></tr></table></div></body></html> + + + + Synchronize Structure with Diagram + + + + Synchronize Diagram with Structure + + + + Keep Synchronized + + + + Images (*.png *.jpeg *.jpg *.tif *.tiff);;PDF (*.pdf) + + + + ;;SVG (*.svg) + + + + Export Selected Elements + + + + Export Diagram + + + + Exporting Selected Elements Failed + + + + Exporting the selected elements of the current diagram into file<br>"%1"<br>failed. + + + + Exporting Diagram Failed + + + + Exporting the diagram into file<br>"%1"<br>failed. + + + + New %1 + + + + Package + + + + New Package + + + + Component + + + + New Component + + + + Class + + + + New Class + + + + Item + + + + New Item + + + + Annotation + + + + Boundary + + + + Swimlane + + + + + ModelEditor::Internal::ModelsManager + + Open Diagram + + + + + ModelEditor::Internal::PxNodeController + + Add Component %1 + + + + Add Class %1 + + + + Add Package %1 + + + + Add Package and Diagram %1 + + + + Add Component Model + + + + Create Component Model + + + + Drop Node + + + + + ModelNodeOperations + + Go to Implementation + + + + Invalid component. + + + + Cannot find an implementation. + + + + Cannot Set Property %1 + + + + The property %1 is bound to an expression. + + + + Overwrite Existing File? + + + + File already exists. Overwrite? +"%1" + + + + Asset import data file "%1" is invalid. + + + + Unable to locate source scene "%1". + + + + Opening asset import data file "%1" failed. + + + + Unable to resolve asset import path. + + + + Import Update Failed + + + + Failed to update import. +Error: +%1 + + + + + Modeling + + Modeling + + + + + MoveToolAction + + Activate Move Tool + + + + + NavigatorTreeModel + + Warning + 警告 + + + Reparenting the component %1 here will cause the component %2 to be deleted. Do you want to proceed? + 在此重定义父级组件%1 将会导致组件%2被删除。您想要继续吗? + + + + Nim + + Nim + + + + Nim + SnippetProvider + + + + General + 概要 + + + Debug + + + + Release + + + + Nimble Build + + + + Nimble Test + + + + Nimble Task + + + + Task arguments: + + + + Tasks: + + + + Nimble task %1 not found. + + + + Nim build step + + + + None + + + + Target: + 目标: + + + Default arguments: + + + + Extra arguments: + + + + Command: + 命令: + + + Nim Compiler Build Step + + + + Working directory: + 工作目录: + + + Build directory "%1" does not exist. + + + + Failed to delete the cache directory. + + + + Failed to delete the out file. + + + + Clean step completed successfully. + + + + Nim Clean Step + + + + No Nim compiler set. + + + + Nim compiler does not exist. + + + + Current Build Target + + + + &Compiler path: + 编译器路径(&C): + + + &Compiler version: + + + + Code Style + 代码风格 + + + Path: + 路径: + + + Global + Settings + + + + Tools + + + + + OpenEditorsWidget + + Open Documents + + + + Meta+O + Meta+O + + + Alt+O + Alt+O + + + + OpenWith::Editors + + Plain Text Editor + 普通文本编辑器 + + + Binary Editor + 二进制编辑器 + + + C++ Editor + C++ 编辑器 + + + .pro File Editor + .pro 文件编辑器 + + + .files Editor + .files 编辑器 + + + QMLJS Editor + QMLJS 编辑器 + + + Qt Designer + Qt设计师 + + + Qt Linguist + Qt语言家 + + + Resource Editor + 资源编辑器 + + + GLSL Editor + GLSL 编辑器 + + + Java Editor + + + + CMake Editor + + + + Compilation Database + + + + Model Editor + + + + Nim Editor + + + + Python Editor + + + + Qt Quick Designer + Qt Quick 设计器 + + + SCXML Editor + + + + + OrientationToggleAction + + Toggle Global/Local Orientation + + + + + ParticleViewModeAction + + Toggle particle animation On/Off + + + + + ParticlesPlayAction + + Play Particles + + + + + ParticlesRestartAction + + Restart Particles + + + + + PathTool + + Path Tool + + + + + PathToolAction + + Edit Path + + + + + PerfProfiler + + Samples + + + + Function + 函数 + + + Source + + + + Binary + 二进制 + + + Allocations + + + + observed + + + + guessed + + + + Releases + + + + Peak Usage + + + + Various + + + + Event Type + + + + Counter + + + + Operation + + + + Result + 结果 + + + Use Trace Points + + + + Add Event + + + + Remove Event + + + + Reset + 重置 + + + Replace events with trace points read from the device? + + + + Cannot List Trace Points + + + + "perf probe -l" failed to start. Is perf installed? + + + + No Trace Points Found + + + + Trace points can be defined with "perf probe -a". + + + + Perf Data Parser Failed + + + + The Perf data parser failed to process all the samples. Your trace is incomplete. The exit code was %1. + + + + perfparser failed to start. + + + + Could not start the perfparser utility program. Make sure a working Perf parser is available at the location given by the PERFPROFILER_PARSER_FILEPATH environment variable. + + + + Perf Data Parser Crashed + + + + This is a bug. Please report it. + + + + Skipping Processing Delay + + + + Cancel this to ignore the processing delay and immediately start recording. + + + + Cancel this to ignore the processing delay and immediately stop recording. + + + + Cannot Send Data to Perf Data Parser + + + + The Perf data parser does not accept further input. Your trace is incomplete. + + + + Load Perf Trace + + + + &Trace file: + + + + &Browse... + 浏览(&B)... + + + Directory of &executable: + + + + B&rowse... + + + + Kit: + + + + Choose Perf Trace + + + + Perf traces (*%1) + + + + Choose Directory of Executable + + + + CPU Usage + + + + [unknown] + + + + Perf Process Failed to Start + + + + Make sure that you are running a recent Linux kernel and that the "perf" utility is available. + + + + Failed to transfer Perf data to perfparser. + + + + Address + 地址 + + + Source Location + + + + Binary Location + + + + Caller + 调用者 + + + Callee + 被调用者 + + + Occurrences + 出现位置 + + + Occurrences in Percent + + + + Recursion in Percent + + + + Samples in Percent + + + + Self Samples + + + + Self in Percent + + + + Performance Analyzer Options + + + + Load perf.data File + + + + Load Trace File + + + + Save Trace File + + + + Limit to Range Selected in Timeline + + + + Show Full Range + + + + Create Memory Trace Points + + + + Create trace points for memory profiling on the target device. + + + + Performance Analyzer + + + + Finds performance bottlenecks. + + + + Timeline + 时间轴 + + + Statistics + + + + Flame Graph + + + + Discard data. + + + + Limit to Selected Range + + + + Reset Zoom + 重置缩放 + + + Copy Table + 复制表格 + + + Copy Row + 复制行 + + + Reset Flame Graph + + + + No Data Loaded + + + + The profiler did not produce any samples. Make sure that you are running a recent Linux kernel and that the "perf" utility is available and generates useful call graphs. +You might find further explanations in the Application Output view. + + + + A performance analysis is still in progress. + + + + Start a performance analysis. + + + + Enable All + + + + Disable All + + + + Trace File (*.ptq) + + + + Show all addresses. + + + + Aggregate by functions. + + + + Stop collecting profile data. + + + + Collect profile data. + + + + Recorded: %1.%2s + + + + Processing delay: %1.%2s + + + + Invalid data format. The trace file's identification string is "%1". An acceptable trace file should have "%2". You cannot read trace files generated with older versions of %3. + + + + Invalid data format. The trace file was written with data stream version %1. We can read at most version %2. Please use a newer version of Qt. + + + + Failed to reset temporary trace file. + + + + Failed to flush temporary trace file. + + + + Cannot re-open temporary trace file. + + + + Read past end from temporary trace file. + + + + Thread started + + + + Thread ended + + + + Samples lost + + + + Context switch + + + + Invalid + 无效 + + + Failed to replay Perf events from stash file. + + + + Loading Trace Data + + + + Saving Trace Data + + + + Performance Analyzer Settings + + + + Sample period: + + + + Stack snapshot size (kB): + + + + Sample mode: + + + + frequency (Hz) + + + + event count + + + + Call graph mode: + + + + dwarf + + + + frame pointer + + + + last branch record + + + + Additional arguments: + 额外的参数: + + + sample collected + + + + Details + 详情 + + + Timestamp + + + + Guessed + + + + %n frames + + + + + + System + 系统 + + + Name + + + + Resource Usage + + + + Resource Change + + + + thread started + + + + thread ended + + + + lost sample + + + + context switch + + + + Duration + 持续时间 + + + (guessed from context) + + + + Total Samples + + + + Total Unique Samples + + + + Resource Peak + + + + Resource Guesses + + + + Run the following script as root to create trace points? + + + + Elevate privileges using: + + + + Error: No device available for active target. + + + + Error: Failed to load trace point script %1: %2. + + + + Executing script... + + + + Failed to run trace point script: %1 + + + + Failed to create trace points. + + + + Created trace points for: %1 + + + + + Perforce::Internal::ChangeNumberDialog + + Change Number + Change编号 + + + Change Number: + Change编号: + + + + Perforce::Internal::PendingChangesDialog + + P4 Pending Changes + P4未完成的Change + + + Submit + 提交 + + + Cancel + 取消 + + + Change %1: %2 + Change %1: %2 + + + + Perforce::Internal::PerforceChecker + + No executable specified + 未指定执行档 + + + Unable to launch "%1": %2 + 无法启动 "%1": %2 + + + "%1" crashed. + "%1" 崩溃。 + + + "%1" terminated with exit code %2: %3 + "%1" 中止,退出代码 %2: %3 + + + The client does not seem to contain any mapped files. + 客户端看上去不存在任何映射文件。 + + + Unable to determine the client root. + Unable to determine root of the p4 client installation + 无法决定客户端的根目录。 + + + The repository "%1" does not exist. + 源码仓库 "%1" 不存在。 + + + "%1" timed out after %2 ms. + + + + + Perforce::Internal::PerforceDiffConfig + + Ignore Whitespace + 忽略空白 + + + + Perforce::Internal::PerforceEditorWidget + + Annotate change list "%1" + 注释变更列表 "%1" + + + + Perforce::Internal::PerforcePlugin + + &Perforce + &Perforce + + + Edit + 编辑 + + + Edit "%1" + 编辑"%1" + + + Alt+P,Alt+E + Alt+P,Alt+E + + + Edit File + 编辑文件 + + + Add + 添加 + + + Add "%1" + 添加"%1" + + + Alt+P,Alt+A + Alt+P,Alt+A + + + Add File + 添加文件 + + + Delete File + 删除文件 + + + Revert + 还原 + + + Revert "%1" + 还原"%1" + + + Alt+P,Alt+R + Alt+P,Alt+R + + + Revert File + 还原文件 + + + Diff Current File + Diff 当前文件 + + + Diff "%1" + Diff "%1" + + + Diff Current Project/Session + Diff 当前文件项目/会话 + + + Diff Project "%1" + Diff 项目 "%1" + + + Alt+P,Alt+D + Alt+P,Alt+D + + + Diff Opened Files + Diff 打开的文件 + + + Opened + 已打开 + + + Alt+P,Alt+O + Alt+P,Alt+O + + + Submit Project + 提交项目 + + + Submit Project "%1" + 提交项目 "%1" + + + Alt+P,Alt+S + Alt+P,Alt+S + + + Pending Changes... + 未完成的Change... + + + Update Project "%1" + 更新项目 "%1" + + + Revert Project + 还原项目 + + + Revert Project "%1" + 还原项目 "%1" + + + Revert Unchanged + 还原未修改的内容 + + + Revert Unchanged Files of Project "%1" + 还原项目 %1 中所有未修改的内容 + + + Describe... + 说明... + + + Annotate Current File + 注释(Annotate) 当前文件 + + + Annotate "%1" + 注释 "%1" + + + Annotate... + 注释... + + + Filelog Current File + Filelog当前文件 + + + Filelog "%1" + Filelog "%1" + + + Alt+P,Alt+F + Alt+P,Alt+F + + + Filelog... + Filelog... + + + Update All + 更新所有 + + + Delete... + 删除... + + + Delete "%1"... + 删除 "%1"... + + + Log Project + Log 项目 + + + Log Project "%1" + Log 项目 "%1" + + + Repository Log + 仓库日志 + + + Submit + 提交 + + + p4 revert + p4 还原(revert) + + + The file has been changed. Do you want to revert it? + 文件被改变,您想还原它么? + + + Do you want to revert all changes to the project "%1"? + 您想还原项目 "%1"的所有修改吗? + + + Another submit is currently executed. + 另一个提交正在被执行。 + + + Project has no files + 项目中没有文件 + + + p4 annotate + p4 annotate + + + p4 annotate %1 + p4 annotate %1 + + + p4 filelog + p4 filelog + + + p4 filelog %1 + p4 filelog %1 + + + The process terminated with exit code %1. + 进程异常终止,退出码 %1 . + + + p4 submit failed: %1 + p4 submit 失败: %1 + + + Error running "where" on %1: %2 + Failed to run p4 "where" to resolve a Perforce file name to a local file system name. + 在 %1运行 "where" 发生错误: %2 + + + The file is not mapped + File is not managed by Perforce + 文件未映射 + + + Perforce repository: %1 + Perforce 仓库地址: %1 + + + Perforce: Unable to determine the repository: %1 + Perforce: 无法定位仓库地址:'%1' + + + The process terminated abnormally. + 进程异常终止。 + + + Meta+P,Meta+F + Meta+P,Meta+F + + + Meta+P,Meta+E + Meta+P,Meta+E + + + Meta+P,Meta+A + Meta+P,Meta+A + + + Meta+P,Meta+R + Meta+P,Meta+R + + + Meta+P,Meta+D + Meta+P,Meta+D + + + Meta+P,Meta+S + Meta+P,Meta+S + + + Update Current Project + 更新当前项目 + + + Meta+P,Meta+O + Meta+P,Meta+O + + + Perforce is not correctly configured. + Perforce未正确配置。 + + + p4 diff %1 + p4 diff %1 + + + p4 describe %1 + p4 describe %1 + + + Pending change + 未完成的修改 + + + Could not submit the change, because your workspace was out of date. Created a pending submit instead. + 无法提交修改,因为您的工作空间已经过时。创建了一个“未完成的提交”。 + + + Triggers a Perforce version control operation. + + + + p4 changelists %1 + + + + &Edit + 编辑(&E) &Hijack - &Hijack + &Hijack + + + Could not start perforce "%1". Please check your settings in the preferences. + + + + Perforce did not respond within timeout limit (%1 s). + + + + [Only %n MB of output shown] + + + + + + + Perforce::Internal::PerforceSubmitEditor + + Perforce Submit + Perforce提交 + + + + Perforce::Internal::SettingsPage + + Perforce + Perforce + + + Test + 测试 + + + Configuration + 配置 + + + Miscellaneous + 其他 + + + Prompt on submit + 提交时弹出提示 + + + Timeout: + 超时时间: + + + s + + + + Log count: + 日志数: + + + P4 command: + P4 命令: + + + P4 client: + P4 客户端: + + + P4 user: + P4 用户: + + + P4 port: + P4 端口: + + + Environment Variables + 环境变量 + + + Automatically open files when editing + 编辑时自动打开文件 + + + Perforce Command + Perforce 命令 + + + Test succeeded (%1). + 测试成功 (%1)。 + + + Testing... + 测试中... + + + + Perforce::Internal::SubmitPanel + + Submit + 提交 + + + Change: + 更改: + + + Client: + 客户端: + + + User: + 用户: + + + + PluginManager + + Unknown option %1 + 未知选项 %1 + + + The option %1 requires an argument. + 选项 %1 需要参数。 + + + Failed Plugins + 发生错误的插件 + + + The plugin "%1" is specified twice for testing. + + + + The plugin "%1" does not exist. + + + + The plugin "%1" is not tested. + + + + Cannot request scenario "%1" as it was already requested. + + + + + PluginSpec + + Resolving dependencies failed because state != Read + 解决依赖关系失败因为 state != Read + + + Could not resolve dependency '%1(%2)' + 无法解决依赖 '%1(%2)' + + + Loading the library failed because state != Resolved + 载入库文件失败因为 state != Resolved + + + Plugin is not valid (does not derive from IPlugin) + 不是有效插件 (未从IPlugin继承) + + + Initializing the plugin failed because state != Loaded + 初始化插件失败因为 state != Loaded + + + Internal error: have no plugin instance to initialize + 内部错误:没有插件实例要初始化 + + + Plugin initialization failed: %1 + 插件初始化失败: %1 + + + Cannot perform extensionsInitialized because state != Initialized + 无法进行扩展初始化因为 state != Initialized + + + Internal error: have no plugin instance to perform extensionsInitialized + 内部错误:没有可进行扩展初始化的插件实例 + + + Internal error: have no plugin instance to perform delayedInitialize + 内部错误: 没有可进行延迟初始化的插件实例 + + + "%1" is missing + + + + Value for key "%1" is not a string + + + + Value for key "%1" is not a bool + + + + Value for key "%1" is not an array of objects + + + + Value for key "%1" is not a string and not an array of strings + + + + Value "%2" for key "%1" has invalid format + + + + + ProMessageHandler + + [Inexact] + Prefix used for output from the cumulative evaluation of project files. + + + + + ProjectEnvironmentWidget + + Project Environment + + + + + ProjectExplorer + + Build & Run + 构建和运行 + + + Other Project + 其他项目 + + + Import Project + 导入项目 + + + Devices + 设备 + + + Start removing auto-detected items associated with this docker image. + + + + Removing kits... + + + + Removed "%1" + + + + Removing Qt version entries... + + + + Removing toolchain entries... + + + + Removal of previously auto-detected kit items finished. + + + + Start listing auto-detected items associated with this docker image. + + + + Kits: + + + + Qt versions: + + + + Toolchains: + + + + Listing of previously auto-detected kit items finished. + + + + Found "%1" + + + + Searching for qmake executables... + + + + Error: %1. + 错误: %1 + {1.?} + + + No Qt installation found. + + + + Searching toolchains... + + + + Searching toolchains of type %1 + + + + %1 new toolchains found. + + + + Starting auto-detection. This will take a while... + + + + Registered kit %1 + + + + Main file of current project + + + + Main file of the project + + + + Name of current project + + + + Name of the project + + + + Name of current build + + + + Name of the project's active build configuration + + + + Name of the project's active build system + + + + Type of current build + + + + Type of the project's active build configuration + + + + SSH + + + + Kits + 构建套件(Kit) + + + Auto-detected + 自动检测 + + + Automatically managed by %1 or the installer. + + + + Manual + 手动设置 + + + Application + 应用程序 + + + Library + + + + Kit is not valid. + + + + Debug + + + + Release + + + + + ProjectExplorer::AbiWidget + + <custom> + <自定义> + + + + ProjectExplorer::AbstractProcessStep + + Starting: "%1" %2 + 正在启动 "%1" %2 + + + + The process "%1" exited normally. + 进程"%1"正常退出。 + + + The process "%1" exited with code %2. + 进程"%1"退出,退出代码 %2 。 + + + The process "%1" crashed. + 进程"%1"崩溃。 + + + Configuration is faulty. Check the Issues view for details. + 配置错误,请检查"问题"视图获得详细信息。 + + + Could not create directory "%1" + + + + Could not start process "%1" %2. + 无法启动进程"%1" %2. {1"?} + + + + ProjectExplorer::ArgumentsAspect + + Arguments + 参数 + + + Command line arguments: + + + + Toggle multi-line mode. + + + + Reset to Default + + + + + ProjectExplorer::BaseProjectWizardDialog + + untitled + File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks and using only ascii chars. + untitled + + + + ProjectExplorer::BuildConfiguration + + Build + 构建 + + + System Environment + 系统环境变量 + + + Clean Environment + 清理时的环境变量 + + + Default + The name of the build configuration created by default for a autotools project. +---------- +The name of the build configuration created by default for a generic project. + 默认 + + + Debug + + + + Release + + + + Build Settings + 构建设置 + + + Build directory + + + + Name of current build + + + + Name of the build configuration + + + + Variables in the current build environment + + + + Variables in the build configuration's environment + + + + Tooltip in target selector: + + + + Appears as a tooltip when hovering the build configuration + + + + The project was not parsed successfully. + + + + Variables in the current build environment. + + + + Variables in the active build environment of the project containing the currently open document. + + + + Variables in the active build environment of the active project. + + + + + ProjectExplorer::BuildDeviceKitAspect + + Build device + + + + The device used to build applications on. + + + + No build device set. + + + + Unconfigured + 未配置 + + + Build host address + + + + Build SSH port + + + + Build user name + + + + Build private key file + + + + Build device name + + + + + ProjectExplorer::BuildDirectoryAspect + + Build directory: + 构建目录: + + + Shadow build: + Shadow build: + + + + ProjectExplorer::BuildManager + + Build + Displayed name for a normal build step + 构建 + + + Finished %1 of %n steps + + 完成了 %n 之中的 %1 个步骤 + + + + Compile + Category for compiler issues listed under 'Issues' + 编译 + + + Build System + Category for build system issues listed under 'Issues' + 构建系统 + + + Build/Deployment canceled + 构建/部署被取消 + + + Canceled build/deployment. + 取消了构建/部署。 + + + Running steps for project %1... + 为项目%1执行步骤 ... + + + Skipping disabled step %1. + 跳过被禁用的步骤 %1。 + + + Stop Applications + + + + Stop these applications before building? + + + + The project %1 is not configured, skipping it. + + + + The build device failed to prepare for the build of %1 (%2). + + + + Deployment + Category for deployment issues listed under 'Issues' + 部署 + + + Autotests + Category for autotest issues listed under 'Issues' + + + + Clean + Displayed name for a "cleaning" build step + + + + Deploy + Displayed name for a deploy step + 部署 + + + Error while building/deploying project %1 (kit: %2) + + + + The kit %1 has configuration issues which might be the root cause for this problem. + + + + When executing step "%1" + + + + + ProjectExplorer::BuildStepList + + Build + Display name of the build build step list. Used as part of the labels in the project window. + 构建 + + + Clean + Display name of the clean build step list. Used as part of the labels in the project window. + + + + Deploy + Display name of the deploy build step list. Used as part of the labels in the project window. + 部署 + + + + ProjectExplorer::BuildSystem + + The project is currently being parsed. + + + + The project could not be fully parsed. + + + + The project file "%1" does not exist. + + + + + ProjectExplorer::ClangToolChain + + Clang + Clang + + + + ProjectExplorer::ClangToolChainFactory + + Clang + Clang + + + + ProjectExplorer::CustomExecutableRunConfiguration + + Custom Executable + 自定义执行档 + + + Run %1 + 运行%1 + + + You need to set an executable in the custom run configuration. + + + + + ProjectExplorer::CustomParsersAspect + + Custom Output Parsers + + + + + ProjectExplorer::DeployConfiguration + + Deploy locally + Default DeployConfiguration display name + 在本地部署 + + + Deploy Configuration + Display name of the default deploy configuration + 部署设置 ProjectExplorer::DesktopDevice - - Run locally - 在本地运行 - Desktop 桌面 - - - ProjectExplorer::Internal::DesktopDeviceFactory - Desktop - 桌面 + Local PC + - ProjectExplorer::DeviceApplicationRunner + ProjectExplorer::DesktopProcessSignalOperation - User requested stop. Shutting down... - 用户请求停止。正在关闭... + Cannot kill process with pid %1: %2 + - Cannot run: No device. - 无法运行: 没有设备。 + Cannot interrupt process with pid %1: %2 + - Connecting to device... - 正在连接设备... + Cannot open process. + - SSH connection failed: %1 - SSH 连接失败: %1 + Invalid process id. + - Application did not finish in time, aborting. - 应用程序没有及时结束,退出。 + Cannot open process: %1 + - Remote application crashed: %1 - 远端进程崩溃:%1 + DebugBreakProcess failed: + - Remote application finished with exit code %1. - 远端进程完成,退出代码'%1'。 + %1 does not exist. If you built %2 yourself, check out https://code.qt.io/cgit/qt-creator/binary-artifacts.git/. + - Remote application finished with exit code 0. - 远端进程完成,退出代码为0。 + Cannot start %1. Check src\tools\win64interrupt\win64interrupt.c for more information. + + + + could not break the process. + + + + + ProjectExplorer::DeviceCheckBuildStep + + No device configured. + + + + Set Up Device + + + + There is no device set up for this kit. Do you want to add a device? + + + + Check for a configured device + + + + + ProjectExplorer::DeviceFileSystemModel + + File Type + 文件类型 + + + File Name + 文件名 + + + + ProjectExplorer::DeviceKitAspect + + Device + 设备 + + + The device to run the applications on. + 运行应用程序的设备。 + + + No device set. + + + + Device is incompatible with this kit. + + + + Unconfigured + 未配置 + + + Host address + + + + SSH port + + + + User name + + + + Private key file + + + + Device name + @@ -45993,6 +28965,21 @@ Do you want to add them to the project?</html> %1 (%2 类型的默认设备) + + ProjectExplorer::DeviceProcessList + + Process ID + 进程ID + + + Command Line + 命令行 + + + Fetching process list. This might take a while. + + + ProjectExplorer::DeviceProcessesDialog @@ -46019,30 +29006,24 @@ Do you want to add them to the project?</html> &Filter: 过滤器(&F): - - - ProjectExplorer::Internal::DeviceProcessesDialogPrivate - Remote Error - 远程错误 + &Attach to Process + &Attach到进程 - ProjectExplorer::DeviceProcessList + ProjectExplorer::DeviceTypeKitAspect - Process ID - 进程ID + Device type + 设备类型 - Command Line - 命令行 + The type of device to run applications on. + 运行应用程序的设备类型。 - - - ProjectExplorer::Internal::DeviceSettingsPage - Devices - 设备 + Unknown device type + 未知设备类型 @@ -46051,10 +29032,6 @@ Do you want to add them to the project?</html> Connection error: %1 连接错误:%1 - - Could not start remote process: %1 - 无法启动远程进程: %1 - Remote process crashed: %1 远端进程崩溃:%1 @@ -46064,10 +29041,219 @@ Do you want to add them to the project?</html> 远端进程失败, 退出代码'%1'. - -Remote error output was: %1 - -远程错误输出: %1 + Remote error output was: %1 + + + + + ProjectExplorer::EditorConfiguration + + Project + Settings + 项目 + + + Project %1 + Settings, %1 is a language (C++ or QML) + 项目%1 + + + + ProjectExplorer::EnvironmentAspect + + Environment + 环境 + + + + ProjectExplorer::EnvironmentAspectWidget + + Base environment for this run configuration: + 运行设置的基础环境: + + + + ProjectExplorer::EnvironmentKitAspect + + Change... + + + + No changes to apply. + + + + Force UTF-8 MSVC compiler output + + + + Either switches MSVC to English or keeps the language and just forces UTF-8 output (may vary depending on the used MSVC compiler). + + + + Environment + 环境 + + + Additional build environment settings when using this kit. + + + + The environment setting value is invalid. + + + + + ProjectExplorer::EnvironmentWidget + + &Add + 添加(&A) + + + &Reset + 重置(&R) + + + &Unset + 取消设置(&U) + + + &Batch Edit... + 批量编辑(&B)... + + + Unset <a href="%1"><b>%1</b></a> + 撤回设置 <a href="%1"><b>%1</b></a> + + + Set <a href="%1"><b>%1</b></a> to <b>%2</b> + 设置 <a href="%1"><b>%1</b></a> 到 <b>%2</b> + + + Use <b>%1</b> + %1 is "System Environment" or some such. + 使用 <b>%1</b> + + + Use <b>%1</b> and + Yup, word puzzle. The Set/Unset phrases above are appended to this. %1 is "System Environment" or some such. + 使用 <b>%1</b> 和 + + + Variable already exists. + + + + Ed&it + + + + Disable + 禁用 + + + Append Path... + + + + Prepend Path... + + + + Open &Terminal + + + + Open a terminal with this environment set up. + + + + Append <b>%2</b> to <a href="%1"><b>%1</b></a> + + + + Prepend <b>%2</b> to <a href="%1"><b>%1</b></a> + + + + Set <a href="%1"><b>%1</b></a> to <b>%2</b> [disabled] + + + + <b>No environment changes</b> + + + + Choose Directory + 选择目录 + + + Enable + + + + + ProjectExplorer::ExecutableAspect + + Executable + + + + <unknown> + <未知> + + + Executable: + 执行档: + + + Alternate executable on device: + 设备上的备用执行档: + + + Use this command instead + 用这个命令代替 + + + + ProjectExplorer::FileTransfer + + sftp + + + + rsync + + + + generic file copy + + + + + ProjectExplorer::FileTransferPrivate + + No device set for test transfer. + + + + No files to transfer. + + + + Missing transfer implementation. + + + + + ProjectExplorer::GccToolChain + + GCC + GCC + + + %1 (%2, %3 %4 at %5) + @@ -46078,196 +29264,981 @@ Remote error output was: %1 - ProjectExplorer::Internal::LocalProcessList + ProjectExplorer::Internal::AddRunConfigDialog - Cannot terminate process %1: %2 - 无法终止进程 %1: %2 + [none] + - Cannot open process %1: %2 - 无法打开进程 %1:%2 + Name + + + + Source + + + + Create Run Configuration + + + + Filter candidates by name + + + + Create + - ProjectExplorer::SshDeviceProcessList + ProjectExplorer::Internal::AllProjectsFilter - Connection failure: %1 - 连接失败: %1 + Files in Any Project + 任意项目中的文件 - Error: Process listing command failed to start: %1 - 错误: 进程列清单命令启动失败: %1 - - - Error: Process listing command crashed: %1 - 错误: 进程列清单命令崩溃: %1 - - - Process listing command failed with exit code %1. - 进程列清单命令失败,退出码 %1。 - - - Error: Kill process failed to start: %1 - 错误: kill进程启动失败: %1 - - - Error: Kill process crashed: %1 - 错误: kill进程崩溃了: %1 - - - Kill process failed with exit code %1. - kill进程失败,退出码 %1。 - - - -Remote stderr was: %1 - -远程的stderr 是: %1 + Matches all files of all open projects. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + - ProjectExplorer::EnvironmentItemsDialog + ProjectExplorer::Internal::AllProjectsFind - Edit Environment - 编辑时的环境变量 + All Projects + 所有项目 + + + All Projects: + 所有项目: + + + Filter: %1 +Excluding: %2 +%3 + - ProjectExplorer::Kit + ProjectExplorer::Internal::AppOutputPane - Unnamed - 未命名 + Attach debugger to this process + attach调试器到此进程 - Clone of %1 - %1 的克隆 + Attach debugger to %1 + 挂接调试器到%1 - Error: - 错误: + Stop + 停止 - Warning: - 警告: + Close Tab + 关闭标签 + + + Close All Tabs + 关闭所有标签 + + + Close Other Tabs + 关闭其他标签 + + + Application Output + 应用程序输出 + + + Application Output Window + 应用程序输出窗口 + + + Show &App Output + + + + Show the output that generated this issue in Application Output. + + + + A + + + + Re-run this run-configuration. + + + + Stop running program. + + + + Open Settings Page + - ProjectExplorer::SysRootKitInformation + ProjectExplorer::Internal::AppOutputSettingsPage - Sys Root "%1" is not a directory. - sysroot "%1"不是一个目录。 + Word-wrap output + - Sys Root - Sys Root + Clear old output on a new run + + + + Merge stderr and stdout + 整合stderr stdout + + + Always + 总是 + + + Never + 从不 + + + On First Output Only + + + + Limit output to %1 characters + + + + Open Application Output when running: + + + + Open Application Output when debugging: + + + + Application Output + 应用程序输出 - ProjectExplorer::ToolChainKitInformation + ProjectExplorer::Internal::BuildEnvironmentWidget - Compiler - 编译器 + Build Environment + - None - - - - No compiler set in kit. - 构建套件中未设置编译器。 + Clear system environment + 清除系统环境变量 - ProjectExplorer::DeviceTypeKitInformation + ProjectExplorer::Internal::BuildPropertiesSettings - Unknown device type - 未知设备类型 + Enable + - Device type - 设备类型 + Disable + 禁用 + + + Use Project Default + + + + Default build directory: + + + + Separate debug info: + + + + QML debugging: + + + + Use qmlcachegen: + + + + Default Build Properties + - ProjectExplorer::DeviceKitInformation + ProjectExplorer::Internal::BuildSettingsWidget - Device does not match device type. - 设备与设备的类型不匹配。 + No build settings available + 没有可用的构建设置 - No Device set. - 没有设置设备。 + Edit build configuration: + 编辑构建配置: - Device - 设备 + Add + 添加 - Unconfigured - 未配置 + Remove + 删除 + + + Rename... + 重命名... + + + New name for build configuration <b>%1</b>: + 构建配置的新名称 <b>%1</b>: + + + Clone Configuration + Title of a the cloned BuildConfiguration window, text of the window + 克隆配置 + + + New configuration name: + 新配置名称: + + + Cancel Build && Remove Build Configuration + 取消构建 && 移除构建配置 + + + Do Not Remove + 不要移除 + + + Remove Build Configuration %1? + 删除构建配置%1? + + + The build configuration <b>%1</b> is currently being built. + 构建配置<b>%1</b> 正在被构建。 + + + Do you want to cancel the build process and remove the Build Configuration anyway? + 您想要取消构建并移除构建配置吗? + + + Remove Build Configuration? + 删除构建配置? + + + Do you really want to delete build configuration <b>%1</b>? + 确定要删除构建配置<b>%1</b>吗? + + + Clone... + + + + New Configuration + - ProjectExplorer::Internal::SysRootInformationConfigWidget + ProjectExplorer::Internal::BuildStepListWidget - The root directory of the system image to use.<br>Leave empty when building for the desktop. - 系统image使用的根目录。<br>为桌面构建时此项不填。 + %1 Steps + %1 is the name returned by BuildStepList::displayName + %1 is a name instead of a number + %1的步骤 - Sysroot: - Sysroot: + No %1 Steps + 没有%1步骤 + + + Add %1 Step + 添加%1步骤 + + + Move Up + 上移 + + + Disable + 禁用 + + + Move Down + 下移 + + + Remove Item + 移除项 + + + Removing Step failed + 删除步骤失败 + + + Cannot remove build step while building + 无法在构建时移除构建步骤 + + + No Build Steps + 没有构建步骤 + + + Enable + - ProjectExplorer::Internal::ToolChainInformationConfigWidget + ProjectExplorer::Internal::ClangClToolChain - The compiler to use for building.<br>Make sure the compiler will produce binaries compatible with the target device, Qt version and other libraries used. - 构建使用的编译器。<br>请确保使用的编译器生成的二进制与目标设备、Qt版本和其他库兼容。 - - - Manage... - 管理... - - - Compiler: - 编译器: - - - <No compiler available> - <没有可用的编译器> + clang-cl + - ProjectExplorer::Internal::DeviceTypeInformationConfigWidget + ProjectExplorer::Internal::ClangClToolChainConfigWidget - The type of device to run applications on. - 运行应用程序的设备类型。 + Initialization: + 初始化: - Device type: - 设备类型: + &Compiler path: + 编译器路径(&C): - ProjectExplorer::Internal::DeviceInformationConfigWidget + ProjectExplorer::Internal::ClangToolChainConfigWidget - The device to run the applications on. - 运行应用程序的设备。 - - - Manage... - 管理... - - - Device: - 设备: + Parent toolchain: + - ProjectExplorer::KitManager + ProjectExplorer::Internal::CodeStyleSettingsWidget - Desktop - 桌面 + Language: + 语言: + + + + ProjectExplorer::Internal::CompileOutputSettingsPage + + Word-wrap output + + + + Open Compile Output when building + + + + Limit output to %1 characters + + + + Compile Output + 编译输出 + + + + ProjectExplorer::Internal::CompileOutputWindow + + Compile Output + 编译输出 + + + Open Settings Page + + + + Show Compile &Output + + + + Show the output that generated this issue in Compile Output. + + + + O + + + + + ProjectExplorer::Internal::CopyTaskHandler + + error: + Task is of type: error + + + + warning: + Task is of type: warning + + + + + ProjectExplorer::Internal::CurrentProjectFilter + + Files in Current Project + 当前项目中的文件 + + + Matches all files from the current document's project. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + + + + + ProjectExplorer::Internal::CurrentProjectFind + + Current Project + 当前项目 + + + Project "%1" + + + + Project "%1": + + + + + ProjectExplorer::Internal::CustomParserConfigDialog + + Custom Parser + + + + &Error message capture pattern: + + + + &File name: + 文件名(&F): + + + &Line number: + 行号(&L): + + + &Message: + 消息(&M): + + + Standard output + + + + Standard error + + + + E&rror message: + + + + Warning message: + + + + Warning message capture pattern: + + + + Capture Positions + + + + Capture Output Channels + + + + Test + 测试 + + + File name: + 文件名: + + + Line number: + 行号: + + + Message: + 消息: + + + Error + 错误 + + + Warning + 警告 + + + Not applicable: + + + + Pattern is empty. + + + + No message given. + + + + Pattern does not match the message. + + + + + ProjectExplorer::Internal::CustomParsersBuildWidget + + Custom Output Parsers + + + + Parse standard output during build + + + + Makes output parsers look for diagnostics on stdout rather than stderr. + + + + + ProjectExplorer::Internal::CustomParsersSelectionWidget + + There are no custom parsers active + + + + There are %n custom parsers active + + + + + + + ProjectExplorer::Internal::CustomParsersSettingsPage + + Custom output parsers defined here can be enabled individually in the project's build or run settings. + + + + Add... + 添加... + + + Remove + 删除 + + + New Parser + + + + Custom Output Parsers + + + + + ProjectExplorer::Internal::CustomToolChainConfigWidget + + MACRO[=VALUE] + + + + Each line defines a macro. Format is MACRO[=VALUE]. + + + + Each line adds a global header lookup path. + + + + Comma-separated list of flags that turn on C++11 support. + + + + Comma-separated list of mkspecs. + + + + &Compiler path: + 编译器路径(&C): + + + &Make path: + + + + &ABI: + &ABI: + + + &Predefined macros: + + + + &Header paths: + + + + C++11 &flags: + + + + &Qt mkspecs: + + + + &Error parser: + + + + + ProjectExplorer::Internal::CustomWizardPage + + Path: + 路径: + + + + ProjectExplorer::Internal::DependenciesModel + + <No other projects in this session> + <会话中没有其他项目> + + + + ProjectExplorer::Internal::DependenciesWidget + + Synchronize configuration + + + + Synchronize active kit, build, and deploy configuration between projects. + + + + + ProjectExplorer::Internal::DeploymentDataView + + Source File Path + + + + Target Directory + + + + Add + 添加 + + + Remove + 删除 + + + Files to deploy: + 部署文件: + + + Override deployment data from build system + + + + + ProjectExplorer::Internal::DesktopRunConfiguration + + Qt Run Configuration + + + + + ProjectExplorer::Internal::DeviceFactorySelectionDialog + + Available device types: + 可用的设备类型: + + + Start Wizard + 开启向导 + + + + ProjectExplorer::Internal::DeviceProcessesDialogPrivate + + Remote Error + 远程错误 + + + + ProjectExplorer::Internal::DeviceSettingsWidget + + &Device: + 设备(&D): + + + General + 概要 + + + &Name: + 名称(&N): + + + Type: + 类型: + + + Auto-detected: + 自动检测: + + + Current state: + 当前状态: + + + Type Specific + 类型特定 + + + &Add... + 添加(&A)... + + + &Remove + 删除(&R) + + + Set As Default + 设置为默认 + + + Yes (id is "%1") + 是的 (id为 "%1") + + + No + + + + Devices + 设备 + + + Test + 测试 + + + Show Running Processes... + + + + + ProjectExplorer::Internal::DeviceTestDialog + + Close + 关闭 + + + Device test finished successfully. + 设备测试成功完成。 + + + Device test failed. + 设备测试失败。 + + + + ProjectExplorer::Internal::EditorSettingsWidget + + Restore Global + 还原全局设置 + + + Display Settings + + + + Display right &margin at column: + 显示右边分界(&M)在列: + + + Use context-specific margin + + + + If available, use a different margin. For example, the ColumnLimit from the ClangFormat plugin. + + + + + ProjectExplorer::Internal::FilesInAllProjectsFind + + Files in All Project Directories + + + + Files in All Project Directories: + + + + + ProjectExplorer::Internal::FilesSelectionWizardPage + + Files + 文件 + + + + ProjectExplorer::Internal::FilterKitAspectsDialog + + Setting + + + + Visible + 可见 + + + + ProjectExplorer::Internal::FlatModel + + No kits are enabled for this project. Enable kits in the "Projects" mode. + + + + Rename More Files? + + + + Would you like to rename these files as well? + %1 + + + + Choose Drop Action + + + + You just dragged some files from one project node to another. +What should %1 do now? + + + + Copy Only File References + + + + Move Only File References + + + + Copy file references and files + + + + Move file references and files + + + + Target directory: + + + + Copy File References + + + + Move File References + + + + Not all operations finished successfully. + + + + The following files could not be copied or moved: + + + + The following files could not be removed from the project file: + + + + The following files could not be added to the project file: + + + + The following files could not be deleted: + + + + A version control operation failed for the following files. Please check your repository. + + + + Failure Updating Project + + + + + ProjectExplorer::Internal::GccToolChainConfigWidget + + &Compiler path: + 编译器路径(&C): + + + &ABI: + &ABI: + + + Platform codegen flags: + + + + Platform linker flags: + + + + Target triple: + + + + + ProjectExplorer::Internal::ImportWidget + + Import Build From... + + + + Import + 导入 + + + + ProjectExplorer::Internal::JsonWizard + + Key is not an object. + + + + Pattern "%1" is no valid regular expression. + + + + ScannerGenerator: Binary pattern "%1" not valid. + + + + + ProjectExplorer::Internal::JsonWizardFileGenerator + + No 'key' in options object. + @@ -46288,17 +30259,37 @@ Remote stderr was: %1 Images (*.png *.xpm *.jpg) 图片(*.png *.xpm *.jpg) + + <html><head/><body><p>The name of the kit suitable for generating directory names. This value is used for the variable <i>%1</i>, which for example determines the name of the shadow build directory.</p></body></html> + + + + File system name: + + + + Kit icon. + + + + Select Icon... + + + + Reset to Device Default Icon + + + + Display name is not unique. + + + + Default for %1 + + ProjectExplorer::Internal::KitModel - - Auto-detected - 自动检测 - - - Manual - 手动设置 - %1 (default) Mark up a kit as the default one. @@ -46308,16 +30299,802 @@ Remote stderr was: %1 Name 名称 + + + ProjectExplorer::Internal::MiniProjectTargetSelector - Clone of %1 - %1 的克隆 + Project + 项目 + + + Kit + 构建套件(Kit) + + + Build + 构建 + + + Deploy + 部署 + + + Run + 运行 + + + Unconfigured + 未配置 + + + <b>Project:</b> %1 + <b>项目:</b> %1 + + + <b>Build:</b> %1 + <b>构建:</b> %1 + + + <b>Deploy:</b> %1 + <b>部署:</b> %1 + + + <b>Run:</b> %1 + <b>运行:</b> %1 + + + %1 + %1 + + + Project: <b>%1</b><br/> + 项目: <b>%1</b><br/> + + + Kit: <b>%1</b><br/> + 构建套件: <b>%1</b><br/> + + + Build: <b>%1</b><br/> + 构建: <b>%1</b><br/> + + + Deploy: <b>%1</b><br/> + 部署: <b>%1</b><br/> + + + Run: <b>%1</b><br/> + 运行: <b>%1</b><br/> + + + <b>Path:</b> %1 + + + + <b>Kit:</b> %1 + + + + <style type=text/css>a:link {color: rgb(128, 128, 255);}</style>The project <b>%1</b> is not yet configured<br/><br/>You can configure it in the <a href="projectmode">Projects mode</a><br/> + <style type=text/css>a:link {color: rgb(128, 128, 255, 240);}</style>项目 <b>%1</b> 尚未配置<br/><br/>您可以在 <a href="projectmode">项目模式</a>中配置它<br/> {128, 128, 255)?} {1<?} - ProjectExplorer::KitOptionsPage + ProjectExplorer::Internal::MsvcBasedToolChainConfigWidget - Kits - 构建套件(Kit) + Initialization: + 初始化: + + + + ProjectExplorer::Internal::MsvcToolChain + + MSVC + MSVC + + + Failed to retrieve MSVC Environment from "%1": +%2 + + + + + ProjectExplorer::Internal::MsvcToolChainConfigWidget + + Initialization: + 初始化: + + + <empty> + <空> + + + Additional arguments for the vcvarsall.bat call + + + + &ABI: + &ABI: + + + + ProjectExplorer::Internal::ParseIssuesDialog + + Parse Build Output + + + + Output went to stderr + + + + Clear existing tasks + + + + Load from File... + + + + Choose File + 选择文件 + + + Could Not Open File + + + + Could not open file: "%1": %2 + + + + Build Output + + + + Parsing Options + + + + Use parsers from kit: + + + + Cannot Parse + + + + Cannot parse: The chosen kit does not provide an output parser. + + + + + ProjectExplorer::Internal::ProjectFileWizardExtension + + Open project anyway? + + + + Version Control Failure + + + + Failed to add subproject "%1" +to project "%2". + + + + Failed to add one or more files to project +"%1" (%2). + + + + + ProjectExplorer::Internal::ProjectTreeWidget + + Simplify Tree + 简化树形视图 + + + Hide Generated Files + 隐藏生成的文件 + + + Synchronize with Editor + 与编辑器同步 + + + Hide Disabled Files + + + + Focus Document in Project Tree + + + + Meta+Shift+L + + + + Alt+Shift+L + + + + Hide Empty Directories + + + + Hide Source and Header Groups + + + + Filter Tree + 过滤器树形视图 + + + + ProjectExplorer::Internal::ProjectTreeWidgetFactory + + Projects + 项目 + + + Meta+X + Meta+X + + + Alt+X + Alt+X + + + + ProjectExplorer::Internal::ProjectWelcomePage + + Open Session #%1 + + + + Ctrl+Meta+%1 + + + + Ctrl+Alt+%1 + + + + Open Recent Project #%1 + + + + Ctrl+Shift+%1 + + + + Open %1 "%2" + + + + Open %1 "%2" (%3) + + + + session + Appears in "Open session <name>" + + + + %1 (last session) + %1 (最后的会话) + + + %1 (current session) + %1 (当前会话) + + + Clone + 克隆 + + + Rename + 重命名 + + + Delete + 删除 + + + project + Appears in "Open project <name>" + + + + Remove Project from Recent Projects + + + + Clear Recent Project List + + + + Manage... + 管理... + + + Sessions + 会话 + + + Projects + 项目 + + + + ProjectExplorer::Internal::ProjectWindow + + Use Regular Expressions + 使用正则表达式 + + + Case Sensitive + 区分大小写 + + + Show Non-matching Lines + + + + Project Settings + + + + Build & Run + 构建和运行 + + + Projects + 项目 + + + Import Existing Build... + + + + Manage Kits... + 管理构建套件... + + + Project Selector + + + + Active Project + + + + Build System Output + + + + Import Directory + + + + + ProjectExplorer::Internal::ProjectWizardPage + + Summary + 汇总 + + + Add as a subproject to project: + 作为子项目添加到项目中: + + + Add to &project: + 添加到项目(&P): + + + Files to be added: + 要添加的文件: + + + Files to be added in + 要添加的文件 + + + Add to &version control: + 添加到版本控制系统(&V): + + + <None> + <无> + + + A version control system repository could not be created in "%1". + + + + Failed to add "%1" to the version control system. + + + + + ProjectExplorer::Internal::RemoveTaskHandler + + Remove + Name of the action triggering the removetaskhandler + 删除 + + + Remove task from the task list. + + + + + ProjectExplorer::Internal::RunSettingsWidget + + Add + 添加 + + + Remove + 删除 + + + Run configuration: + 运行配置: + + + Run Settings + 运行设置 + + + Deployment + 部署 + + + Method: + 方法: + + + Run + 运行 + + + Remove Run Configuration? + 删除运行配置? + + + Do you really want to delete the run configuration <b>%1</b>? + 确定要删除此运行配置<b>%1</b>吗? + + + Rename... + 重命名... + + + New name for run configuration <b>%1</b>: + 运行配置的新名称 <b>%1</b>: + + + Cancel Build && Remove Deploy Configuration + 取消构建 && 移除部署设置 + + + Do Not Remove + 不要移除 + + + Remove Deploy Configuration %1? + 删除部署(deploy)配置%1? + + + The deploy configuration <b>%1</b> is currently being built. + 部署设置<b>%1</b> 正在被构建。 + + + Do you want to cancel the build process and remove the Deploy Configuration anyway? + 您想要取消构建并移除部署设置吗? + + + Remove Deploy Configuration? + 删除部署(deploy)配置? + + + Do you really want to delete deploy configuration <b>%1</b>? + 确定要删除此部署配置<b>%1</b>吗? + + + New name for deploy configuration <b>%1</b>: + 部署配置的新名称 <b>%1</b>: + + + Add... + 添加... + + + Clone... + + + + Clone Configuration + Title of a the cloned RunConfiguration window, text of the window + 克隆配置 + + + New configuration name: + 新配置名称: + + + + ProjectExplorer::Internal::SelectionWidget + + Custom output parsers scan command line output for user-provided error patterns<br>to create entries in Issues.<br>The parsers can be configured <a href="dummy">here</a>. + + + + + ProjectExplorer::Internal::SessionDialog + + Session Manager + 会话管理器 + + + &New + 新建(&N) + + + &Rename + 重命名(&R) + + + C&lone + 克隆(&L) + + + &Delete + 删除(&D) + + + &Open + 打开(&S) + + + <a href="qthelp://org.qt-project.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> + <a href="qthelp://org.qt-project.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">什么是会话?</a> + + + Restore last session on startup + 启动时恢复上次会话 + + + + ProjectExplorer::Internal::SessionModel + + Session + 会话 + + + Last Modified + + + + New Session Name + + + + &Create + 创建(&C) + + + Create and &Open + + + + &Clone + + + + Clone and &Open + + + + Rename Session + + + + &Rename + 重命名(&R) + + + Rename and &Open + + + + + ProjectExplorer::Internal::SessionNameInputDialog + + Enter the name of the session: + 输入会话的名称: + + + + ProjectExplorer::Internal::ShowInEditorTaskHandler + + Show task location in an editor. + 在编辑器中显示任务位置。 + + + Show in Editor + + + + + ProjectExplorer::Internal::SimpleProjectWizard + + Import as qmake or CMake Project (Limited Functionality) + + + + Imports existing projects that do not use qmake, CMake, Qbs, Meson, or Autotools.<p>This creates a project file that allows you to use %1 as a code editor and as a launcher for debugging and analyzing tools. If you want to build the project, you might need to edit the generated project file. + + + + Unknown build system "%1" + + + + + ProjectExplorer::Internal::SimpleProjectWizardDialog + + Import Existing Project + 导入现有项目 + + + Project Name and Location + + + + Project name: + 项目名称: + + + Location: + + + + File Selection + 文件选择 + + + + ProjectExplorer::Internal::SimpleTargetRunnerPrivate + + Cannot retrieve debugging output. + 无法获取调试输出. + + + User requested stop. Shutting down... + 用户请求停止。正在关闭... + + + Cannot run: No command given. + + + + %1 exited with code %2 + %1 退出,退出代码: %2 + {1 ?} {2?} + + + %1 crashed. + %1 崩溃。 + + + The process was ended forcefully. + + + + + ProjectExplorer::Internal::SshSettingsWidget + + SSH + + + + Enable connection sharing: + + + + Connection sharing timeout: + + + + Path to ssh executable: + + + + Path to sftp executable: + + + + Path to ssh-askpass executable: + + + + Path to ssh-keygen executable: + + + + minutes + + + + + ProjectExplorer::Internal::TargetSetupWidget + + <b>Error:</b> + Severity is Task::Error + <b>错误:</b> + + + <b>Warning:</b> + Severity is Task::Warning + <b>警告:</b> + + + + ProjectExplorer::Internal::TargetTripleWidget + + Override for code model + + + + Enable in the rare case that the code model +fails because Clang does not understand the target architecture. + + + + + ProjectExplorer::Internal::TaskDelegate + + File not found: %1 + 未找到文件: %1 + + + + ProjectExplorer::Internal::TaskWindow + + Issues + 问题 + + + Filter by categories + 根据分类过滤 + + + Show Warnings + 显示警告 + + + + ProjectExplorer::Internal::TextEditDetailsWidget + + %n entries + + + + + + Empty + + + + + ProjectExplorer::Internal::ToolChainOptionsPage + + Compilers + 编译器 Add @@ -46332,69 +31109,8491 @@ Remote stderr was: %1 删除 - Make Default - 设置为默认 + <nobr><b>ABI:</b> %1 + <nobr><b>ABI:</b> %1 + + + not up-to-date + 不是最新 + + + This toolchain is invalid. + + + + Toolchain Auto-detection Settings + + + + Detect x86_64 GCC compilers as x86_64 and x86 + + + + If checked, %1 will set up two instances of each x86_64 compiler: +One for the native x86_64 target, and one for a plain x86 target. +Enable this if you plan to create 32-bit x86 binaries without using a dedicated cross compiler. + + + + Name + + + + Type + 类型 + + + Remove All + 全部删除 + + + Re-detect + + + + Auto-detection Settings... + + + + Duplicate Compilers Detected + 检测到重复的编译器 + + + The following compiler was already configured:<br>&nbsp;%1<br>It was not configured again. + 以下编译器已被设置:<br>&nbsp;%1<br>。没有再次设置。 + + + The following compilers were already configured:<br>&nbsp;%1<br>They were not configured again. + 以下工具链已被设置:<br>&nbsp;%1<br>。没有再次设置。 - ProjectExplorer::Internal::ProjectListWidget + ProjectExplorer::Internal::VcsAnnotateTaskHandler - %1 (%2) - %1 (%2) + &Annotate + 注释(&A) + + + Annotate using version control system. + - ProjectExplorer::Internal::SessionModel + ProjectExplorer::Internal::WaitForStopDialog - New session name - 新会话名称 + Waiting for Applications to Stop + + + + Cancel + 取消 + + + Waiting for applications to stop. + - ProjectExplorer::DebuggerRunConfigurationAspect + ProjectExplorer::InterpreterAspect - Debugger settings - 调试器的设置 + Manage... + 管理... + + + Interpreter + + + + + ProjectExplorer::JsonFieldPage + + Line Edit Validator Expander + + + + The text edit input to fix up. + + + + Field is not an object. + + + + Field has no name. + + + + Field "%1" has no type. + + + + Field "%1" has unsupported type "%2". + + + + When parsing Field "%1": %2 + + + + Label ("%1") data is not an object. + + + + Label ("%1") has no trText. + + + + Spacer ("%1") data is not an object. + + + + Spacer ("%1") property "factor" is no integer value. + + + + LineEdit ("%1") data is not an object. + + + + LineEdit ("%1") has an invalid regular expression "%2" in "validator". + + + + LineEdit ("%1") has an invalid value "%2" in "completion". + + + + TextEdit ("%1") data is not an object. + + + + PathChooser data is not an object. + + + + kind "%1" is not one of the supported "existingDirectory", "directory", "file", "saveFile", "existingCommand", "command", "any". + + + + CheckBox ("%1") data is not an object. + + + + CheckBox ("%1") values for checked and unchecked state are identical. + + + + No JSON lists allowed inside List items. + + + + No "key" found in List items. + + + + %1 ("%2") data is not an object. + + + + %1 ("%2") "index" is not an integer value. + + + + %1 ("%2") "disabledIndex" is not an integer value. + + + + %1 ("%2") "items" missing. + + + + %1 ("%2") "items" is not a JSON list. + + + + Files data list entry is not an object. + + + + Source and target are both empty. + + + + + ProjectExplorer::JsonKitsPage + + At least one required feature is not present. + + + + Platform is not supported. + + + + At least one preferred feature is not present. + + + + Feature list is set and not of type list. + + + + No "%1" key found in feature list object. + + + + Feature list element is not a string or object. + + + + + ProjectExplorer::JsonProjectPage + + untitled + File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks and using only ascii chars. + + + + + ProjectExplorer::JsonSummaryPage + + Failed to Commit to Version Control + + + + Error message from Version Control System: "%1". + + + + Failed to Add to Project + + + + Failed to add subproject "%1" +to project "%2". + + + + Failed to add one or more files to project +"%1" (%2). + + + + + ProjectExplorer::JsonWizard + + "data" for a "Form" page needs to be unset or an empty object. + + + + Project File + + + + Choose Project File + + + + The project contains more than one project file. Select the one you would like to use. + + + + Check whether a variable exists.<br>Returns "true" if it does and an empty string if not. + + + + Could not determine target path. "TargetPath" was not set on any page. + + + + File Generation Failed + + + + The wizard failed to generate files.<br>The error message was: "%1". + + + + Failed to Overwrite Files + + + + Failed to Format Files + + + + Failed to Write Files + + + + Failed to Post-Process Files + + + + Failed to Polish Files + + + + Failed to Open Files + + + + "%1" does not exist in the file system. + + + + Failed to open "%1" as a project. + + + + Failed to open an editor for "%1". + + + + No file to open found in "%1". + + + + Failed to open project. + + + + Failed to open project in "%1". + + + + Cannot Open Project + 无法打开项目 + + + When processing "%1":<br>%2 + + + + When parsing fields of page "%1": %2 + + + + "data" for a "File" page needs to be unset or an empty object. + + + + Error parsing "%1" in "Kits" page: %2 + + + + "data" must be a JSON object for "Kits" pages. + + + + "Kits" page requires a "%1" set. + + + + "data" must be empty or a JSON object for "Project" pages. + + + + Invalid regular expression "%1" in "%2". %3 + + + + "data" for a "Summary" page can be unset or needs to be an object. + + + + "data" must be a JSON object for "VcsConfiguration" pages. + Do not translate "VcsConfiguration", because it is the id of a page. + + + + "VcsConfiguration" page requires a "vcsId" set. + Do not translate "VcsConfiguration", because it is the id of a page. + + + + + ProjectExplorer::JsonWizardFactory + + Generator is not a object. + + + + Generator has no typeId set. + + + + TypeId "%1" of generator is unknown. Supported typeIds are: "%2". + + + + Path "%1" does not exist when checking Json wizard search paths. + + + + + Checking "%1" for %2. + + + + + * Failed to parse "%1":%2:%3: %4 + + + + + * Did not find a JSON object in "%1". + + + + + * Configuration found and parsed. + + + + + JsonWizard: "%1" not found + + + + + Page is not an object. + + + + Page has no typeId set. + + + + TypeId "%1" of page is unknown. Supported typeIds are: "%2". + + + + Page with typeId "%1" has invalid "index". + + + + * Version %1 not supported. + + + + + key not found. + + + + Expected an object or a list. + + + + The platform selected for the wizard. + + + + The features available to this wizard. + + + + The plugins loaded. + + + + "kind" value "%1" is not "class" (deprecated), "file" or "project". + + + + "kind" is "file" or "class" (deprecated) and "%1" is also set. + + + + No id set. + + + + No category is set. + + + + Icon file "%1" not found. + + + + Image file "%1" not found. + + + + No displayName set. + + + + No displayCategory set. + + + + No description set. + + + + When parsing "generators": %1 + + + + When parsing "pages": %1 + + + + + ProjectExplorer::JsonWizardGenerator + + %1 [folder] + + + + %1 [symbolic link] + + + + %1 [read only] + + + + The directory %1 contains files which cannot be overwritten: +%2. + + + + + ProjectExplorer::Kit + + Unnamed + 未命名 + + + Clone of %1 + %1 的克隆 + + + Error: + 错误: + + + Warning: + 警告: + + + Kit + 构建套件(Kit) + + + Kit ID + + + + Kit filesystem-friendly name + + + + The name of the currently active kit. + + + + The name of the kit. + + + + The name of the currently active kit in a filesystem-friendly version. + + + + The name of the kit in a filesystem-friendly version. + + + + The ID of the currently active kit. + + + + The ID of the kit. + + + + + ProjectExplorer::KitAspectWidget + + Mark as Mutable + + + + Manage... + 管理... + + + + ProjectExplorer::KitChooser + + Kit of Active Project: %1 + + + + + ProjectExplorer::KitManager + + Desktop + 桌面 + + + Desktop (%1) + + + + + ProjectExplorer::LinuxIccToolChain + + ICC + + + + + ProjectExplorer::LocalEnvironmentAspect + + Clean Environment + + + + System Environment + 系统环境变量 + + + Build Environment + + + + + ProjectExplorer::MakeStep + + Make arguments: + Make 参数: + + + Parallel jobs: + + + + Override MAKEFLAGS + + + + <code>MAKEFLAGS</code> specifies parallel jobs. Check "%1" to override. + + + + Disable in subdirectories: + + + + Runs this step only for a top-level build. + + + + Targets: + 目标: + + + Make: + Make: + + + Override %1: + 覆盖 %1: + + + Make + Make + + + Make command missing. Specify Make command in step configuration. + + + + <b>Make:</b> %1 + <b>Make:</b> %1 + + + <b>Make:</b> No build configuration. + + + + <b>Make:</b> %1 not found in the environment. + <b>Make:</b> 在环境中找不到%1 。 + + + + ProjectExplorer::MingwToolChain + + MinGW + MinGW + + + + ProjectExplorer::OsParser + + The process cannot access the file because it is being used by another process. +Please close all running instances of your application before starting a build. + + + + + ProjectExplorer::PortsGatherer + + Found %n free ports. + + + + + + Checking available ports... + + + + + ProjectExplorer::ProcessStep + + Command: + 命令: + + + Arguments: + 参数: + + + Working directory: + 工作目录: + + + Custom Process Step + Default ProcessStep display name + + + + + ProjectExplorer::Project + + Project + 项目 + + + Project Name + + + + Kit is not valid. + + + + Incompatible Kit + + + + Kit %1 is incompatible with kit %2. + + + + Build configurations: + + + + Deploy configurations: + + + + Run configurations: + + + + Partially Incompatible Kit + + + + Some configurations could not be copied. + + + + Select the Root Directory + + + + Replacement for + + + + Replacement for "%1" + + + + Project "%1" was configured for kit "%2" with id %3, which does not exist anymore. The new kit "%4" was created in its place, in an attempt not to lose custom project settings. + + + + Could not find any qml_*.qm file at "%1" + + + + + ProjectExplorer::ProjectExplorerPlugin + + &Build + 构建(&B) + + + &Debug + 调试(&D) + + + &Start Debugging + 开始调试 + + + Open With + 用...打开 + + + New Project... + 新建项目... + + + Load Project... + 载入项目... + + + Ctrl+Shift+O + Ctrl+Shift+O + + + Open File + 打开文件 + + + Recent P&rojects + 最近使用的项目(&R) + + + Close Project + 关闭项目 + + + Close Project "%1" + 关闭项目 "%1" + + + Ctrl+Shift+B + Ctrl+Shift+B + + + Build Project + 构建项目 + + + Build Project "%1" + 构建项目 "%1" + + + Ctrl+B + Ctrl+B + + + Rebuild Project + 重新构建项目 + + + Deploy Project + 部署项目 + + + Clean Project + 清理项目 + + + Build Without Dependencies + 忽略依赖关系来构建 + + + Rebuild Without Dependencies + 忽略依赖关系重新构建 + + + Deploy Without Dependencies + 忽略依赖关系部署 + + + Clean Without Dependencies + 忽略依赖关系来清除 + + + Run + 运行 + + + Close All Projects and Editors + 关闭所有项目和编辑器 + + + Ctrl+R + Ctrl+R + + + Run Without Deployment + 忽略部署直接运行 + + + Build + 构建 + + + Rebuild + 重新构建 + + + Clean + 清除 + + + Deploy + 部署 + + + Rename... + 重命名... + + + Set as Active Project + 设为活动项目 + + + Set "%1" as Active Project + 将"%1"设置为活动项目 + + + Collapse All + 折叠全部 + + + Open Build and Run Kit Selector... + 打开 构建/运行 构建套件选择器... + + + Cancel Build && Unload + 取消构建 && 卸载 + + + Do Not Unload + 不要卸载 + + + Unload Project %1? + 卸载项目 %1? + + + The project %1 is currently being built. + 项目 %1 正在被构建。 + + + Do you want to cancel the build process and unload the project anyway? + 您确定要取消构建并卸载项目吗? + + + Project Editing Failed + 编辑项目失败 + + + The file %1 was renamed to %2, but the project file %3 could not be automatically changed. + 文件 %1 更名为 %2,但项目文件 %3 无法自动更改。 + + + A build is still in progress. + 仍有一个构建在进行中。 + + + Cancel Build + 取消构建 + + + Add New... + 添加新文件... + + + Add Existing Files... + 添加现有文件... + + + New Subproject... + 新子项目... + + + Remove Project... + Remove project from parent profile (Project explorer view); will not physically delete any files. + 删除项目... + + + Delete File... + 删除文件... + + + Ctrl+T + Ctrl+T + + + Load Project + 载入项目 + + + New Project + Title of dialog + 新建项目 + + + Always save files before build + 构建之前总是先保存文件 + + + Failed to Open Project + 打开项目失败 + + + Found some build errors in current task. +Do you want to ignore them? + 在当前任务中发现一些构建错误。 +您想要忽略这些错误吗? + + + No project loaded. + 没有载入项目。 + + + Currently building the active project. + 目前正在构建活动项目。 + + + The project %1 is not configured. + 项目 %1 未配置。 + + + Project has no build settings. + 项目没有构建设置。 + + + Cancel Build && Close + 取消构建并关闭 + + + Do Not Close + 不要关闭 + + + A project is currently being built. + 有个项目现正在构建中。 + + + New File + Title of dialog + 新建文件 + + + New Subproject + Title of dialog + 新建子项目 + + + Add Existing Files + 添加现有文件 + + + Adding Files to Project Failed + 添加文件到项目失败 + + + Removing File Failed + 删除文件失败 + + + Deleting File Failed + 删除文件失败 + + + Delete File + 删除文件 + + + No active project. + 没有活动项目。 + + + Run %1 + 运行 %1 + + + Delete %1 from file system? + 从文件系统中删除 %1吗? + + + Could not delete file %1. + 无法删除文件 %1 。 + + + C + + + + C++ + C++ + + + Open... + + + + Build Environment + + + + Run Environment + + + + S&essions + + + + &Manage... + + + + Close Pro&ject "%1" + + + + Close All Files in Project + + + + Close All Files in Project "%1" + + + + Close Pro&ject + + + + Build All Projects + + + + Build All Projects for All Configurations + + + + Deploy All Projects + + + + Rebuild All Projects + + + + Rebuild All Projects for All Configurations + + + + Clean All Projects + + + + Clean All Projects for All Configurations + + + + Build Project for All Configurations + + + + Build Project "%1" for All Configurations + + + + Build for &Run Configuration + + + + Build for &Run Configuration "%1" + + + + Rebuild Project for All Configurations + + + + Clean Project for All Configurations + + + + Meta+Backspace + + + + Alt+Backspace + + + + Add Existing Projects... + + + + Add Existing Directory... + + + + Close All Files + + + + Close Other Projects + + + + Close All Projects Except "%1" + + + + Properties... + + + + Remove... + + + + Duplicate File... + + + + Expand + 展开 + + + Expand All + 展开全部 + + + Quick Switch Kit Selector + + + + Current project's main file. + + + + Main file of the project the current document belongs to. + + + + The name of the current project. + + + + The name of the project the current document belongs to. + + + + Current Build Environment + + + + Current Run Environment + + + + The name of the active project. + + + + Active project's main file. + + + + The type of the active project's active build configuration. + + + + Full build path of the active project's active build configuration. + + + + Active build environment of the active project. + + + + Name of the active project's active run configuration. + + + + The executable of the active project's active run configuration. + + + + Active run environment of the active project. + + + + Variables in the environment of the active project's active run configuration. + + + + The working directory of the active project's active run configuration. + + + + File where current session is saved. + + + + Name of current session. + + + + All Projects + 所有项目 + + + Sanitizer + Category for sanitizer issues listed under 'Issues' + + + + Parse Build Output... + + + + <h3>Project already open</h3> + + + + Failed opening project "%1": Project is not a file. + + + + Failed opening project "%1": No plugin can open project type "%2". + + + + Ignore All Errors? + + + + Run Configuration Removed + + + + The configuration that was supposed to run is no longer available. + + + + Open Project in "%1" + + + + Open Project "%1" + + + + The file "%1" was renamed to "%2", but the following projects could not be automatically changed: %3 + + + + The following projects failed to automatically remove the file: %1 + + + + A build is in progress. + + + + Close %1? + 关闭%1? + + + Do you want to cancel the build process and close %1 anyway? + + + + The project "%1" is not configured. + + + + The project "%1" has no active kit. + + + + The kit "%1" for the project "%2" has no active run configuration. + + + + Cannot run "%1". + + + + A run action is already scheduled for the active project. + + + + %1 in %2 + 在 %2中的%1 + + + Choose Project File + + + + The following subprojects could not be added to project "%1": + + + + Adding Subproject Failed + + + + Could not add following files to project %1: + + + + Remove More Files? + + + + Remove these files as well? + %1 + + + + File "%1" was not removed, because the project has changed in the meantime. +Please try again. + + + + Could not remove file "%1" from project "%2". + + + + _copy + + + + Choose File Name + + + + New file name: + + + + Duplicating File Failed + + + + Failed to copy file "%1" to "%2": %3. + + + + Failed to add new file "%1" to the project. + + + + The project file %1 cannot be automatically changed. + +Rename %2 to %3 anyway? + + + + The file %1 could not be renamed %2. + + + + Cannot Rename File + + + + Matches all files from all project directories. Append "+<number>" or ":<number>" to jump to the given line number. Append another "+<number>" or ":<number>" to jump to the column number as well. + + + + Run run configuration + + + + Run a run configuration of the current active project + + + + Switch run configuration + + + + Switch active run configuration + + + + Switched run configuration to +%1 + + + + + ProjectExplorer::ProjectImporter + + No Build Found + 未找到构建 + + + No build found in %1 matching project %2. + 在%1中没有找到符合项目%2的构建。 + + + Import Warning + + + + Import Build + + + + %1 - temporary + %1 - 临时 + + + Imported Kit + + + + + ProjectExplorer::ProjectTree + + <b>Warning:</b> This file is generated. + + + + <b>Warning:</b> This file is outside the project directory. + + + + + ProjectExplorer::ProjectsMode + + Projects + 项目 + + + + ProjectExplorer::RunAsRootAspect + + Run as root user + ProjectExplorer::RunConfiguration - Unknown error. - 未知错误。 + Run Settings + 运行设置 + + + Variables in the run environment. + + + + The run configuration's working directory. + + + + The run configuration's name. + + + + The run configuration's executable. + + + + No build system active + + + + Run on %{Device:Name} + Shown in Run configuration if no executable is given, %1 is device name + + + + %1 (on %{Device:Name}) + Shown in Run configuration, Add menu: "name of runnable (on device name)" + + + + + ProjectExplorer::RunControl + + Application Still Running + 应用仍然在运行 + + + PID %1 + PID %1 + + + Invalid + 无效 + + + <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> 仍然在运行。<center/><center>强制关闭吗?</center></body></html> + + + Unexpected run control state %1 when worker %2 started. + + + + Force &Quit + + + + &Keep Running + + + + Starting %1... + + + + No executable specified. + + + + + ProjectExplorer::RunWorker + + Worker start timed out. + + + + Worker stop timed out. + + + + The process failed to start. + + + + An unknown error in the process occurred. + + + + Either the invoked program "%1" is missing, or you may have insufficient permissions to invoke the program. + + + + The process crashed. + 进程崩溃了。 + + + An error occurred when attempting to write to the process. For example, the process may not be running, or it may have closed its input channel. + + + + An error occurred when attempting to read from the process. For example, the process may not be running. + + + + + ProjectExplorer::SelectableFilesDialogAddDirectory + + Add Existing Directory + + + + + ProjectExplorer::SelectableFilesDialogEditFiles + + Edit Files + 编辑文件 + + + + ProjectExplorer::SelectableFilesWidget + + Source directory: + + + + Start Parsing + + + + Select files matching: + + + + Hide files matching: + 隐藏符合条件的文件: + + + Apply Filters + + + + Generating file list... + +%1 + 生成文件列表... + +%1 + + + Not showing %n files that are outside of the base directory. +These files are preserved. + + 未显示基础目录外部的 %n个文件。 +这些文件受到保护。 + + + + + ProjectExplorer::SeparateDebugInfoAspect + + Separate debug info: + + + + + ProjectExplorer::SessionManager + + Error while restoring session + 恢复会话时发生错误 + + + Could not restore session %1 + 无法恢复会话 %1 + + + Failed to restore project files + 还原项目文件失败 + + + Could not restore the following project files:<br><b>%1</b> + 无法还原以下项目文件:<br><b>%1</b> + + + Keep projects in Session + 在会话中保留项目 + + + Remove projects from Session + 从会话中移除项目 + + + Error while saving session + 保存会话时发生错误 + + + Could not save session to file %1 + 无法将会话保存到文件 %1 + + + Untitled + 未命名 + + + Could not save session %1 + + + + Delete Session + 删除会话 + + + Delete Sessions + + + + Delete session %1? + + + + Delete these sessions? + %1 + + + + Loading Session + + + + + ProjectExplorer::SshDeviceProcessList + + Process listing command failed with exit code %1. + 进程列清单命令失败,退出码 %1。 + + + Remote stderr was: %1 + + + + Error: Kill process failed: %1 + + + + + ProjectExplorer::SysRootKitAspect + + Sysroot + + + + The root directory of the system image to use.<br>Leave empty when building for the desktop. + 系统image使用的根目录。<br>为桌面构建时此项不填。 + + + Sys Root "%1" does not exist in the file system. + + + + Sys Root "%1" is not a directory. + sysroot "%1"不是一个目录。 + + + Sys Root "%1" is empty. + + + + Sys Root + Sys Root ProjectExplorer::Target - Default build - 默认构建 + Target Settings + + + + Source directory + + + + Build system + + + + The currently active run configuration's name. + + + + The currently active run configuration's executable (if applicable). + + + + Variables in the current run environment. + + + + The currently active run configuration's working directory. + - ProjectExplorer::Internal::WinCEToolChainFactory + ProjectExplorer::TargetSetupPage - WinCE - WinCE + No suitable kits found. + + + + Add a kit in the <a href="buildandrun">options</a> or via the maintenance tool of the SDK. + + + + Select all kits + + + + Type to filter kits by name... + + + + Select Kits for Your Project + 为您的项目选择构建套件 + + + Kit Selection + 选择构建套件 + + + Kits + 构建套件(Kit) + + + The following kits can be used for project <b>%1</b>: + %1: Project name + - ProjectExplorer::Internal::WinCEToolChainConfigWidget + ProjectExplorer::Task - SDK: - SDK: + You asked to build the current Run Configuration's build target only, but it is not associated with a build target. Update the Make Step in your build settings. + - WinCE Version: - WinCE 版本: + %1 needs a compiler set up to build. Configure a compiler in the kit options. + + + + + ProjectExplorer::TerminalAspect + + Terminal + - ABI: - ABI: + Run in terminal + 在终端中运行 + + + + ProjectExplorer::ToolChain + + Clone of %1 + %1 的克隆 + + + + ProjectExplorer::ToolChainConfigWidget + + Name: + 名称: + + + + ProjectExplorer::ToolChainKitAspect + + <No compiler> + + + + Compiler + 编译器 + + + The compiler to use for building.<br>Make sure the compiler will produce binaries compatible with the target device, Qt version and other libraries used. + 构建使用的编译器。<br>请确保使用的编译器生成的二进制与目标设备、Qt版本和其他库兼容。 + + + Compilers produce code for different ABIs: %1 + + + + None + + + + Path to the compiler executable + + + + Compiler for different languages + + + + Compiler executable for different languages + + + + No compiler set in kit. + 构建套件中未设置编译器。 + + + + ProjectExplorer::ToolChainManager + + ABI + + + + None + + + + Tool Chains + 工具链 + + + + ProjectExplorer::UseDyldSuffixAspect + + Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) + 使用开发框架的调试版 (DYLD_IMAGE_SUFFIX=_debug) + + + + ProjectExplorer::UseLibraryPathsAspect + + Add build library search path to DYLD_LIBRARY_PATH and DYLD_FRAMEWORK_PATH + + + + Add build library search path to PATH + + + + Add build library search path to LD_LIBRARY_PATH + + + + + ProjectExplorer::WorkingDirectoryAspect + + Working Directory + + + + Select Working Directory + 选择工作目录 + + + Reset to Default + + + + Working directory: + 工作目录: + + + + ProjectExplorer::XcodebuildParser + + Replacing signature + + + + Xcodebuild failed. + + + + + ProjectExplorerPluginPrivate + + Building "%1" is disabled: %2<br> + + + + + ProjectWizard + + The files are implicitly added to the projects: + + + + <None> + <无> + + + <Implicitly Add> + <隐式添加> + + + + ProjextExplorer::Internal::KitOptionsPageWidget + + Add + 添加 + + + Clone + 克隆 + + + Remove + 删除 + + + Make Default + 设置为默认 + + + Settings Filter... + + + + Choose which settings to display for this kit. + + + + Default Settings Filter... + + + + Choose which kit settings to display by default. + + + + Kits + 构建套件(Kit) + + + + ProjextExplorer::Internal::ProjectExplorerSettings + + Current directory + 当前目录 + + + Directory + 目录 + + + Close source files along with project + + + + Save all files before build + 在构建前保存所有文件 + + + Always deploy project before running it + 在运行项目前总是先部署 + + + Add linker library search paths to run environment + + + + Always ask before stopping applications + 总是在停止应用前询问 + + + Create suitable run configurations automatically + + + + Clear issues list on new build + + + + Abort on error when building all projects + + + + Start build processes with low priority + + + + Do Not Build Anything + + + + Build the Whole Project + + + + Build Only the Application to Be Run + + + + None + + + + All + 所有 + + + Same Project + + + + Same Build Directory + + + + Same Application + + + + Enabled + 启用 + + + Disabled + 禁用 + + + Deduced from Project + + + + Use jom instead of nmake + 使用jom代替nmake + + + Projects Directory + 项目目录 + + + Closing Projects + + + + Build and Run + 构建和运行 + + + Build before deploying: + + + + Stop applications before building: + + + + Default for "Run in terminal": + + + + General + 概要 + + + + ProvisioningProfile + + Team: %1 +App ID: %2 +Expiration date: %3 + + + + + PuppetCreator + + Puppet is starting... + + + + You can now attach your debugger to the %1 puppet with process id: %2. + + + + QML Emulation Layer (QML Puppet) Building was Unsuccessful + + + + The QML emulation layer (QML Puppet) cannot be built. The fallback emulation layer, which does not support all features, will be used. + + + + Qt Version is not supported + + + + The QML emulation layer (QML Puppet) cannot be built because the Qt version is too old or it cannot run natively on your computer. The fallback emulation layer, which does not support all features, will be used. + + + + Kit is invalid + + + + The QML emulation layer (QML Puppet) cannot be built because the kit is not configured correctly. For example the compiler can be misconfigured. Fix the kit configuration and restart %1. Otherwise, the fallback emulation layer, which does not support all features, will be used. + + + + + Python + + Install %1 + + + + Running "%1" to install %2. + + + + The %1 installation was canceled by %2. + + + + user + + + + time out + + + + Installing the %1 failed with exit code %2 + + + + %1 installation missing for %2 (%3) + + + + Install %1 for %2 using pip package installer. + + + + Install + + + + Switch the Python interpreter for %1 + + + + Run PySide6 project tool + + + + PySide project tool: + + + + Enter location of PySide project tool. + + + + General + 概要 + + + REPL + + + + Open interactive Python. + + + + REPL Import File + + + + Open interactive Python and import file. + + + + REPL Import * + + + + Open interactive Python and import * from file. + + + + Open interactive Python. Either importing nothing, importing the current file, or importing everything (*) from the current file. + + + + Python Language Server (%1) + + + + Install Python language server (PyLS) for %1 (%2). The language server provides Python specific completion and annotation. + + + + Unable to open "%1" for reading: %2 + + + + Unable to read "%1": The file is empty. + + + + Unable to parse "%1":%2: %3 + + + + Buffered output + + + + Enabling improves output performance, but results in delayed output. + + + + Script: + + + + Run %1 + + + + Name: + 名称: + + + Executable + + + + Executable is empty. + + + + %1 does not exist. + + + + %1 is not an executable file. + + + + &Add + 添加(&A) + + + &Delete + 删除(&D) + + + &Make Default + + + + &Clean Up + + + + Remove all Python interpreters without a valid executable. + + + + Interpreters + + + + Python + + + + Plugins: + + + + Use Python Language Server + + + + For a complete list of available options, consult the <a href="https://github.com/python-lsp/python-lsp-server/blob/develop/CONFIGURATION.md">Python LSP Server configuration documentation</a>. + + + + Advanced + 高级 + + + Language Server Configuration + + + + (Windowed) + + + + Removing Python + + + + Python: + + + + + Python::Internal::PythonSettings + + Searching Python binaries... + + + + Found "%1" (%2) + + + + + QAbstractFileIconProvider + + File Folder + Match Windows Explorer + + + + Folder + All other platforms + + + + + QCoreApplication + + unnamed + 未命名 + + + + QDockWidget + + Float + + + + Undocks and re-attaches the dock widget + + + + Close + 关闭 + + + Closes the dock widget + + + + + QObject + + All syntax definitions are up-to-date. + + + + Downloading new syntax definition for '%1'... + + + + Updating syntax definition for '%1' to version %2... + + + + List All Tabs + + + + Detach Group + + + + Close Active Tab + + + + Close Group + + + + Close Tab + 关闭标签 + + + Bytes + + + + KB + + + + MB + MB + + + GB + + + + TB + + + + Cppcheck + + + + <Filter> + Library search input hint text + <过滤器> + + + Show Event List + + + + Assign Events to Actions + + + + Connect Signal to Event + + + + Connected Events + + + + Connected Signals + + + + Exposed Custom Properties + + + + ID cannot start with an uppercase character (%1). + + + + ID cannot start with a number (%1). + + + + ID cannot include whitespace (%1). + + + + %1 is a reserved QML keyword. + + + + %1 is a reserved property keyword. + + + + ID includes invalid characters (%1). + + + + Empty document + + + + Start Nanotrace + + + + Shut Down Nanotrace + + + + Unknown + 未知 + + + Qt 6 + + + + Qt 5 + + + + Project File Generated + + + + File created: + +%1 + + + + Select File Location + + + + Qt Design Studio Project Files (*.qmlproject) + + + + Invalid Directory + + + + Project file must be placed in a parent directory of the QML files. + + + + Problem + + + + Selected directory is far away from the QML file. This can cause unexpected results. + +Are you sure? + + + + Failed to start Qt Design Studio. + + + + None + + + + LF + + + + CR + + + + CRLF + + + + UntitledProject + File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks and using only ascii chars. + + + + + QWidget + + Images (*.png *.jpg *.jpeg) + + + + + QbsProjectManager + + Custom Properties + + + + Key + 密钥 + + + Value + + + + &Remove + 删除(&R) + + + &Add + 添加(&A) + + + C and C++ compiler paths differ. C compiler may not work. + + + + Configuration name: + 配置名称: + + + The qbs project build root + + + + Debug + Shadow build directory suffix + Non-ASCII characters in directory suffix may cause build issues. + + + + Release + Shadow build directory suffix + Non-ASCII characters in directory suffix may cause build issues. + + + + Qbs Build + + + + <b>Qbs:</b> %1 + + + + Build variant: + + + + ABIs: + + + + Keep going when errors occur (if at all possible). + + + + Keep going + + + + Parallel jobs: + + + + Number of concurrent build jobs. + + + + Show command lines + + + + Install + + + + Clean install root + + + + Force probes + + + + Equivalent command line: + + + + No qbs session exists for this target. + + + + Build canceled: Qbs session failed. + + + + Properties: + + + + Flags: + + + + Installation flags: + + + + Installation directory: + + + + Properties to pass to the project. + + + + Use default location + + + + Could not split properties. + + + + Property "%1" cannot be set here. Please use the dedicated UI element. + + + + No ":" found in property definition. + + + + Qbs Clean + + + + Dry run: + + + + Keep going: + + + + Cleaning canceled: Qbs session failed. + + + + Qbs Install + + + + Dry run + + + + Remove first + + + + Installing canceled: Qbs session failed. + + + + Install root: + + + + Change... + + + + Additional Qbs Profile Settings + + + + Generated files + + + + Qbs files + + + + Failed to run qbs config: %1 + + + + Profiles + + + + Kit: + + + + Associated profile: + + + + Profile properties: + + + + E&xpand All + + + + &Collapse All + + + + Fatal qbs error: %1 + + + + Failed + + + + Could not write project file %1. + 无法写入项目文件 %1。 + + + Reading Project "%1" + + + + Error retrieving run environment: %1 + + + + Qbs + + + + Reparse Qbs + + + + Build File + 构建文件 + + + Build File "%1" + 构建文件"%1" + + + Ctrl+Alt+B + Ctrl+Alt+B + + + Build + 构建 + + + Build Product + + + + Build Product "%1" + + + + Ctrl+Alt+Shift+B + + + + Clean + + + + Clean Product + + + + Rebuild + 重新构建 + + + Rebuild Product + + + + Received invalid input. + + + + No qbs executable was found, please set the path in the settings. + + + + The qbs executable was not found at the specified path, or it is not executable ("%1"). + + + + The qbs process quit unexpectedly. + + + + The qbs process failed to start. + + + + The qbs process sent unexpected data. + + + + The qbs API level is not compatible with what %1 expects. + + + + Request timed out. + + + + Failed to load qbs build graph. + + + + The qbs session is not in a valid state. + + + + Failed to update files in Qbs project: %1. +The affected files are: + %2 + + + + Use %1 settings directory for Qbs + + + + Path to qbs executable: + + + + Default installation directory: + + + + Qbs version: + + + + Failed to retrieve version. + + + + General + 概要 + + + + Qdb + + Flash wizard "%1" failed to start. + + + + Flash wizard executable "%1" not found. + + + + Flash Boot to Qt Device + + + + + Qdb::Internal::DeviceDetector + + Device "%1" %2 + + + + Qt Debug Bridge device %1 + + + + Device detection error: %1 + + + + + Qdb::Internal::QdbDeployConfiguration + + Deploy to Boot2Qt target + + + + + Qdb::Internal::QdbDevice + + Starting command "%1" on device "%2". + + + + Command failed on device "%1": %2 + + + + Command failed on device "%1". + + + + stdout was: "%1" + + + + stderr was: "%1" + + + + Commands on device "%1" finished successfully. + + + + Boot2Qt Device + + + + Reboot Device + + + + Restore Default App + + + + WizardPage + 向导页面 + + + Device Settings + + + + A short, free-text description + + + + Host name or IP address + + + + Device name: + + + + Device address: + + + + Boot2Qt Network Device Setup + + + + + Qdb::Internal::QdbDeviceTracker + + Shutting down device discovery due to unexpected response: %1 + + + + + Qdb::Internal::QdbMakeDefaultAppService + + Remote process failed: %1 + 远端进程失败:%1 + + + Application set as the default one. + + + + Reset the default application. + + + + + Qdb::Internal::QdbMakeDefaultAppStep + + Set this application to start by default + + + + Reset default application + + + + Change default application + + + + + Qdb::Internal::QdbMessageTracker + + Shutting down message reception due to unexpected response: %1 + + + + QDB message: %1 + + + + + Qdb::Internal::QdbRunConfiguration + + Full command line: + + + + Executable on device: + 设备上的执行档: + + + Remote path not set + + + + Executable on host: + 主机上的执行档: + + + Run on Boot2Qt Device + + + + The remote executable must be set in order to run on a Boot2Qt device. + + + + + Qdb::Internal::QdbStopApplicationService + + Could not check and possibly stop running application. + + + + Checked that there is no running application. + + + + Stopped the running application. + + + + + Qdb::Internal::QdbStopApplicationStep + + Stop already running application + + + + + Qdb::Internal::QdbWatcher + + Unexpected QLocalSocket error: %1 + + + + Could not connect to QDB host server even after trying to start it. + + + + Invalid JSON response received from QDB server: %1 + + + + Could not find QDB host server executable. You can set the location with environment variable %1. + + + + QDB host server started. + + + + Could not start QDB host server in %1 + + + + Starting QDB host server. + + + + + QmakeProjectManager + + Qt Designer is not responding (%1). + Qt设计师无响应 (%1)。 + + + Unable to create server socket: %1 + 无法创建服务器套接字: %1 + + + Unable to start "%1" + 无法启动"%1" + + + The application "%1" could not be found. + 找不到应用 "%1"。 + + + Details + 详情 + + + Type + 类型 + + + General + 概要 + + + Error: + 错误: + + + Warning: + 警告: + + + Run qmake + 执行qmake + + + Build + 构建 + + + Build "%1" + 构建 "%1" + + + Rebuild + 重新构建 + + + Clean + 清除 + + + Rebuild Subproject + 重新构建子项目 + + + Clean Subproject + 清理子项目 + + + Build File + 构建文件 + + + Build File "%1" + 构建文件"%1" + + + Ctrl+Alt+B + Ctrl+Alt+B + + + Add Library... + 添加库... + + + Cannot find Makefile. Check your build settings. + 无法找到 Makefile. 检查您的构建设置。 + + + qmake + QMakeStep default display name + qmake + + + Configuration unchanged, skipping qmake step. + 配置没有改变, 跳过 qmake 步骤。 + + + QML Debugging + QML 调试 + + + The option will only take effect if the project is recompiled. Do you want to recompile now? + 需要重新编译项目才能使选项生效。您想现在就重新编译吗? + + + <b>qmake:</b> No Qt version set. Cannot run qmake. + <b>qmake:</b> 没有设置Qt版本,无法运行qmake。 + + + <b>qmake:</b> %1 %2 + <b>qmake:</b> %1 %2 + + + QMake + QMake + + + &Sources + 源文件(&S) + + + Widget librar&y: + 控件库(&Y): + + + Widget project &file: + 控件项目文件(&F): + + + Widget h&eader file: + 控件头文件(&E): + + + Widge&t source file: + 控件源文件(&T): + + + Widget &base class: + 控件的基类(&B): + + + Plugin class &name: + 插件类名(&N): + + + Plugin &header file: + 插件头文件(&H): + + + Plugin sou&rce file: + 插件源文件(&R): + + + Icon file: + 图标文件: + + + &Link library + 链接库(&L) + + + Create s&keleton + 创建代码框架(&K) + + + Include pro&ject + 包含项目(&J) + + + &Description + 说明(&D) + + + G&roup: + 组(&R): + + + &Tooltip: + 工具提示(&T): + + + W&hat's this: + 这是什么(&H): + + + The widget is a &container + 控件是个容器(&C) + + + Property defa&ults + 默认属性(&U) + + + dom&XML: + dom &XML: + + + Select Icon + 选择图标 + + + Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) + 图标文件 (*.png *.ico *.jpg *.xpm *.tif *.svg) + + + Specify the properties of the plugin library and the collection class. + 指定插件库和集合类的属性。 + + + Collection class: + 集合类: + + + Collection header file: + 集合类头文件: + + + Collection source file: + 集合类源文件: + + + Plugin name: + 插件名称: + + + Resource file: + 资源文件: + + + icons.qrc + icons.qrc + + + Widget &Classes: + 控件类(&C): + + + Specify the list of custom widgets and their properties. + 指定自定义控件列表及其属性. + + + <New class> + <新类> + + + Confirm Delete + 确认删除 + + + Delete class %1 from list? + 从列表中删除类 %1 吗? + + + Qt Custom Designer Widget + Qt4 设计师自定义控件 + + + Creates a Qt Custom Designer Widget or a Custom Widget Collection. + 创建一个Qt设计师自定义控件或者一个自定义控件集合。 + + + Custom Widgets + 自定义控件 + + + Plugin Details + 插件详细信息 + + + Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. + 不支持在一个项目中(%3)创建多个控件库 (%1, %2). + + + Debug + better to leave it as it is + Debug + + + Release + Release + + + No Qt version set in kit. + 构建套件中未设置Qt版本。 + + + Library: + 库: + + + Library file: + 库文件: + + + Include path: + 包含路径: + + + Linux + Linux + + + Mac + Mac + + + Windows + Windows + + + Linkage: + 链接: + + + Dynamic + 动态 + + + Static + 静态 + + + Mac: + Mac: + + + Library + + + + Framework + 框架 + + + Windows: + Windows: + + + Library inside "debug" or "release" subfolder + debug或release子目录下的库 + + + Add "d" suffix for debug version + 为debug版本添加'd'作为后缀 + + + Remove "d" suffix for release version + 移除release版本中的'd'后缀 + + + Package: + 包: + + + Add Library + 添加库 + + + Summary + 汇总 + + + Library Type + 库类型 + + + Choose the type of the library to link to + 选择链接到的库类型 + + + System library + 系统库 + + + Links to a system library. +Neither the path to the library nor the path to its includes is added to the .pro file. + 链接到系统库。 +无论是库的路径还是库的 includes都没被添加到 .pro 文件中。 + + + System package + 系统包 + + + Links to a system library using pkg-config. + 使用pkg-config.连接到系统库。 + + + External library + 外部库 + + + Links to a library that is not located in your build tree. +Adds the library and include paths to the .pro file. + 链接到不在您的构建树中的库。 +请将库和它的include 路径添加到.pro文件中。 + + + Internal library + 内部库 + + + Links to a library that is located in your build tree. +Adds the library and include paths to the .pro file. + 链接到在您的构建树中的库。 +请将库和它的include 路径添加到.pro文件中。 + + + System Library + 系统库 + + + Specify the library to link to + 指定链接到的库 + + + System Package + 系统包 + + + Specify the package to link to + 指定链接到的包 + + + External Library + 外部库 + + + Specify the library to link to and the includes path + 指定链接库和包含路径 + + + Internal Library + 内部库 + + + Choose the project file of the library to link to + 选择要链接的库的项目文件 + + + The following snippet will be added to the<br><b>%1</b> file: + 下列代码段将被添加到文件<br><b>%1</b> 中: + + + %1 Dynamic + %1 动态 + + + %1 Static + %1 静态 + + + %1 Framework + %1 框架 + + + %1 Library + %1 库 + + + Subdirs Project + 子目录项目 + + + Creates a qmake-based subdirs project. This allows you to group your projects in a tree structure. + 创建一个基于qmake 的子目录项目。这可以让您将项目组织成树形结构。 + + + Done && Add Subproject + 完成&& 添加子项目 + + + Finish && Add Subproject + 完成&& 添加子项目 + + + New Subproject + Title of dialog + 新建子项目 + + + Error while parsing file %1. Giving up. + 分析文件%1时发生错误,放弃中。 + + + Headers + 头文件 + + + Sources + 源文件 + + + Forms + 界面文件 + + + Resources + 资源 + + + QML + QML + + + Other files + 其他文件 + + + Could not write project file %1. + 无法写入项目文件 %1。 + + + File Error + 文件错误 + + + qmake build configuration: + qmake 构建配置: + + + Additional arguments: + 额外的参数: + + + Effective qmake call: + 有效的qmake调用: + + + The mkspec to use when building the project with qmake.<br>This setting is ignored when using other build systems. + 用qmake构建项目时使用的mkspec。<br>当使用其他构建系统时该设置被忽略。 + + + No Qt version set, so mkspec is ignored. + 未设置Qt版本,所以mkspec被忽略。 + + + Mkspec not found for Qt version. + 未找到Q版本的mkspec。 + + + mkspec + mkspec + + + Platform: + + + + Library type: + + + + This wizard generates a Qt Designer Custom Widget or a Qt Designer Custom Widget Collection project. + + + + Run + 运行 + + + Ignore + 忽略 + + + Use global setting + + + + qmake system() behavior when parsing: + + + + This kit cannot build this project since it does not define a Qt version. + + + + The build directory contains a build for a different project, which will be overwritten. + + + + %1 The build will be overwritten. + %1 error message + + + + The build directory should be at the same level as the source directory. + + + + Could not parse Makefile. + + + + The Makefile is for a different project. + + + + The build type has changed. + + + + The qmake arguments have changed. + + + + The mkspec has changed. + + + + Release + Shadow build directory suffix + Non-ASCII characters in directory suffix may cause build issues. + + + + Debug + Shadow build directory suffix + Non-ASCII characters in directory suffix may cause build issues. + + + + Profile + Shadow build directory suffix + Non-ASCII characters in directory suffix may cause build issues. + + + + Qt mkspec + + + + Mkspec configured for qmake by the kit. + + + + The build directory is not at the same level as the source directory, which could be the reason for the build failure. + + + + State charts + + + + Generated Files + + + + Failed + + + + Could not find .pro file for subdirectory "%1" in "%2". + + + + Reading Project "%1" + + + + Cannot parse project "%1": The currently selected kit "%2" does not have a valid Qt. + + + + Cannot parse project "%1": No kit selected. + + + + Qt version is invalid. + + + + No C++ compiler set in kit. + + + + Project is part of Qt sources that do not match the Qt defined in the kit. + + + + "%1" is used by qmake, but "%2" is configured in the kit. +Please update your kit (%3) or choose a mkspec for qmake that matches your target environment better. + + + + Build &Subproject + + + + Build &Subproject "%1" + + + + Warn if a project's source and build directories are not at the same level + + + + Qmake has subtle bugs that can be triggered if source and build directory are not at the same level. + + + + Run qmake on every build + + + + This option can help to prevent failures on incremental builds, but might slow them down unnecessarily in the general case. + + + + Ignore qmake's system() function when parsing a project + + + + Checking this option avoids unwanted side effects, but may result in inexact parsing results. + + + + Qmake + + + + No Qt version configured. + + + + Could not determine which "make" command to run. Check the "make" step in the build configuration. + + + + <no Qt version> + + + + <no Make step found> + + + + ABIs: + + + + Qt Quick Compiler + + + + Separate Debug Information + + + + Required Qt features not present. + + + + Qt version does not target the expected platform. + + + + Qt version does not provide all features. + + + + This wizard generates a Qt Subdirs project. Add subprojects to it later on by using the other wizards. + + + + + QmlDebug::QmlDebugConnection + + Socket state changed to %1 + + + + Error: %1 + 错误: %1 + {1?} + + + + QmlDebug::QmlDebugConnectionManager + + Debug connection opened. + + + + Debug connection closed. + + + + Debug connection failed. + + + + + QmlDebug::QmlOutputParser + + The port seems to be in use. + Error message shown after 'Could not connect ... debugger:" + 端口可能被占用。 + + + The application is not set up for QML/JS debugging. + Error message shown after 'Could not connect ... debugger:" + 应用没有被设置为支持QML/JS 调试。 + + + + QmlDesigner + + Error + 错误 + + + + QmlDesigner::AbstractEditorDialog + + Untitled Editor + + + + + QmlDesigner::ActionEditorDialog + + Connection Editor + + + + + QmlDesigner::AddNewBackendDialog + + Add New C++ Backend + + + + Type + 类型 + + + Define object locally + + + + Required import + + + + Choose a type that is registered using qmlRegisterType or qmlRegisterSingletonType. The type will be available as a property in the current .qml file. + + + + + QmlDesigner::AddTabDesignerAction + + Naming Error + + + + Component already exists. + + + + + QmlDesigner::AddTabToTabViewDialog + + Dialog + 对话框 + + + Add tab: + + + + + QmlDesigner::AlignDistribute + + Cannot Distribute Perfectly + + + + These objects cannot be distributed to equal pixel values. Do you want to distribute to the nearest possible values? + + + + + QmlDesigner::AnnotationCommentTab + + Title + 标题 + + + Text + 文本 + + + Author + + + + + QmlDesigner::AnnotationEditor + + Annotation + + + + Delete this annotation? + + + + + QmlDesigner::AnnotationEditorDialog + + Annotation Editor + + + + + QmlDesigner::AnnotationEditorWidget + + Add Status + + + + In Progress + + + + In Review + + + + Done + + + + Tab view + + + + Table view + + + + Selected component + + + + Name + + + + Tab 1 + + + + Tab 2 + + + + + QmlDesigner::AnnotationTabWidget + + Add Comment + + + + Remove Comment + + + + Delete this comment? + + + + Annotation + + + + + QmlDesigner::AnnotationTableView + + Title + 标题 + + + Author + + + + Value + + + + + QmlDesigner::AssetExportDialog + + Export Components + + + + Export path: + + + + Choose Export File + + + + Metadata file (*.metadata) + + + + Open + 打开 + + + Advanced Options + + + + Export assets + + + + Export components separately + + + + Export + + + + + QmlDesigner::AssetExporter + + Export root directory: %1. +Exporting assets: %2 + + + + Yes + + + + No + + + + Each component is exported separately. + + + + Canceling export. + + + + Unknown error. + + + + Loading file is taking too long. + + + + Cannot parse. The file contains coding errors. + + + + Loading components failed. %1 + + + + Cannot export component. Document "%1" has parsing errors. + + + + Error saving component file. %1 + + + + Unknown + 未知 + + + Cannot preprocess file: %1. Error %2 + + + + Cannot preprocess file: %1 + + + + Cannot update %1. +%2 + + + + Exporting file %1. + + + + Export canceled. + + + + Writing metadata failed. Cannot create file %1 + + + + Writing metadata to file %1. + + + + Empty JSON document. + + + + Writing metadata failed. %1 + + + + Export finished. + + + + Error creating asset directory. %1 + + + + Error saving asset. %1 + + + + + QmlDesigner::AssetExporterPlugin + + Asset Export + + + + Export Components + + + + Export components in the current project. + + + + + QmlDesigner::AssetsLibraryModel + + Confirm Delete File + + + + File%1 might be in use. Delete anyway? + +%2 + + + + Do not ask this again + + + + Failed to Locate File + + + + Could not find "%1". + + + + Failed to Delete File + + + + Could not delete "%1". + + + + + QmlDesigner::AssetsLibraryView + + Assets + + + + + QmlDesigner::AssetsLibraryWidget + + Assets Library + Title of assets library widget + + + + Failed to Add Files + + + + Could not add %1 to project. + + + + All Files (%1) + + + + Add Assets + + + + Could not add %1 to project. Unsupported file format. + + + + + QmlDesigner::AssignEventDialog + + Nonexistent events discovered + + + + The Node references the following nonexistent events: + + + + + + QmlDesigner::BackgroundAction + + Set the color of the canvas. + + + + + QmlDesigner::BindingEditorDialog + + Binding Editor + + + + NOT + + + + Invert the boolean expression. + + + + + QmlDesigner::BindingEditorWidget + + Trigger Completion + + + + Meta+Space + Meta+Space + + + Ctrl+Space + Ctrl+Space + + + + QmlDesigner::CapturingConnectionManager + + QML Emulation Layer (QML Puppet - %1) Crashed + + + + You are recording a puppet stream and the emulations layer crashed. It is recommended to reopen the Qt Quick Designer and start again. + + + + + QmlDesigner::ChooseFromPropertyListDialog + + Select Property + + + + Bind to property: + + + + Binds this component to the parent's selected property. + + + + + QmlDesigner::CmakeProjectConverter + + Export as Latest Project Format + + + + Creating Project + + + + Creating project failed. +%1 + + + + Creating project succeeded. + + + + Unable to write to directory +%1. + + + + + QmlDesigner::CmakeProjectConverterDialog + + This process creates a copy of the existing project. The new project's folder structure is adjusted for CMake build process and necessary related new files are generated. + +The new project can be opened in Qt Creator using the main CMakeLists.txt file. + + + + Name: + 名称: + + + Create in: + 创建路径: + + + Name is empty. + 名称为空。 + + + Name must not start with "%1". + + + + Name must begin with a capital letter + + + + Name must contain only letters, numbers or characters - _. + + + + Target is not a directory. + + + + Cannot write to target directory. + + + + Project directory already exists. + + + + + QmlDesigner::ColorTool + + Color Tool + + + + + QmlDesigner::ComponentAction + + Edit sub components defined in this file. + + + + + QmlDesigner::ConnectionViewWidget + + Connections + + + + + QmlDesigner::CrumbleBar + + Save the changes to preview them correctly. + + + + Always save when leaving subcomponent + + + + + QmlDesigner::CurveEditor + + This file does not contain a timeline. <br><br>To create an animation, add a timeline by clicking the + button in the "Timeline" view. + + + + + QmlDesigner::CurveEditorToolBar + + Unify + + + + Start Frame + + + + End Frame + + + + Current Frame + + + + + QmlDesigner::CurveEditorView + + Curves + + + + + QmlDesigner::DebugViewWidget + + Debug + + + + Model Log + + + + Clear + + + + Instance Notifications + + + + Instance Errors + + + + Enabled + 启用 + + + + QmlDesigner::DesignDocument + + Locked items: + + + + Delete/Cut Item + + + + Deleting or cutting this item will modify locked items. + + + + Do you want to continue by removing the item (Delete) or removing it and copying it to the clipboard (Cut)? + + + + + QmlDesigner::DocumentMessage + + Error parsing + 解析错误 + + + Internal error + 内部错误 + + + line %1 + + 行 %1 + + + + column %1 + + 列 %1 + + + + + QmlDesigner::DocumentWarningWidget + + Always ignore these warnings about features not supported by Qt Quick Designer. + + + + Cannot open this QML document because of an error in the QML file: + + + + OK + OK + + + This QML file contains features which are not supported by Qt Quick Designer at: + + + + Ignore + 忽略 + + + Previous + 上一个 + + + Next + 下一个 + + + Go to error + + + + Go to warning + + + + + QmlDesigner::Edit3DView + + 3D + 3D + + + Cameras + + + + Lights + + + + Primitives + + + + Imported Models + + + + Failed to Add Import + + + + Could not add QtQuick3D import to project. + + + + + QmlDesigner::Edit3DWidget + + Your file does not import Qt Quick 3D.<br><br>To create a 3D view, add the <b>QtQuick3D</b> module in the <b>Components</b> view or click <a href="#add_import"><span style="text-decoration:none;color:%1">here</span></a>.<br><br>To import 3D assets, select <b>+</b> in the <b>Assets</b> view. + + + + Edit Material + + + + Delete + 删除 + + + Create + + + + + QmlDesigner::EventListDelegate + + Release + + + + Connect + + + + + QmlDesigner::EventListDialog + + Add Event + + + + Remove Selected Events + + + + + QmlDesigner::EventListModel + + Event ID + + + + Shortcut + 快捷键 + + + Description + 说明 + + + + QmlDesigner::EventListPluginView + + Event List + + + + + QmlDesigner::Experimental::StatesEditorModel + + base state + Implicit default state + + + + Invalid state name + 无效状态名称 + + + The empty string as a name is reserved for the base state. + + + + Name already used in another state + 名称已经被其他状态使用 + + + Root + + + + Invalid ID + + + + %1 already exists. + + + + + QmlDesigner::Experimental::StatesEditorView + + States + 状态 + + + Remove State + + + + This state is not empty. Are you sure you want to remove it? + + + + Locked components: + + + + Removing this state will modify locked components. + + + + Continue by removing the state? + + + + base state + + + + + QmlDesigner::Experimental::StatesEditorWidget + + States New + Title of Editor widget + + + + Cannot Create QtQuick View + + + + StatesEditorWidget: %1 cannot be created.%2 + + + + + QmlDesigner::FilePathModel + + Canceling file preparation. + + + + + QmlDesigner::FormEditorAnnotationIcon + + Annotation + + + + Edit Annotation + + + + Remove Annotation + + + + By: + + + + Edited: + + + + Delete this annotation? + + + + + QmlDesigner::FormEditorView + + 2D + 2D + + + %1 is not supported as the root element by Form Editor. + + + + + QmlDesigner::FormEditorWidget + + No snapping. + + + + Snap to parent or sibling components and generate anchors. + + + + Snap to parent or sibling components but do not generate anchors. + + + + Show bounding rectangles and stripes for empty components. + + + + Override Width + + + + Override width of root component. + + + + Override Height + + + + Override height of root component. + + + + Zoom In + 放大 + + + Zoom Out + 缩小 + + + Zoom screen to fit all content. + + + + Ctrl+Alt+0 + + + + Zoom screen to fit current selection. + + + + Ctrl+Alt+i + + + + Reset View + + + + Export Current QML File as Image + + + + PNG (*.png);;JPG (*.jpg) + + + + + QmlDesigner::GenerateCmake + + Select Files to Generate + + + + Start CMakeFiles.txt generation + + + + Advanced Options + + + + File %1 will be created. + + + + + File %1 will be overwritten. + + + + + This file already exists and will be overwritten. + + + + This file or folder will be created. + + + + Generate CMake Build Files + + + + The project is not properly structured for automatically generating CMake files. + +Aborting process. + +The following files or directories are missing: + +%1 + + + + Cannot Generate CMake Files + + + + + QmlDesigner::GenerateResource + + Generate QRC Resource File + + + + Save Project as QRC File + + + + QML Resource File (*.qrc) + + + + Unable to generate resource file: %1 + + + + A timeout occurred running "%1" + + + + "%1" crashed. + + + + "%1" failed (exit code %2). + + + + Generate Deployable Package + + + + Save Project as Resource + + + + QML Resource File (*.qmlrc);;Resource File (*.rcc) + + + + Generate a resource file out of project %1 to %2 + + + + + QmlDesigner::GlobalAnnotationDialog + + Global Annotation Editor + + + + Global Annotation + + + + All Annotations + + + + + QmlDesigner::GlobalAnnotationEditor + + Global Annotation + + + + Delete this annotation? + + + + + QmlDesigner::GraphicsView + + Open Style Editor + + + + Insert Keyframe + + + + Delete Selected Keyframes + + + + + QmlDesigner::HyperlinkDialog + + Link + 链接 + + + Anchor + + + + + QmlDesigner::InteractiveConnectionManager + + Cannot Connect to QML Emulation Layer (QML Puppet) + + + + The executable of the QML emulation layer (QML Puppet) may not be responding. Switching to another kit might help. + + + + + QmlDesigner::Internal::AssetImportUpdateDialog + + Select Files to Update + + + + Expand All + 展开全部 + + + Collapse All + 折叠全部 + + + + QmlDesigner::Internal::BackendModel + + Type + 类型 + + + Name + + + + Singleton + + + + Local + + + + + QmlDesigner::Internal::BindingModel + + Item + + + + Property + 属性 + + + Source Item + + + + Source Property + + + + Error + 错误 + + + + QmlDesigner::Internal::ConnectionDelegate + + Change to default state + + + + Change state to %1 + + + + Activate FlowAction %1 + + + + + QmlDesigner::Internal::ConnectionModel + + Target + 目标 + + + Signal Handler + 信号处理 + + + Action + 动作 + + + Error + 错误 + + + + QmlDesigner::Internal::ConnectionView + + Connections + + + + + QmlDesigner::Internal::ConnectionViewWidget + + Connections + Title of connections window + + + + Connections + Title of connection tab + + + + Bindings + Title of connection tab + + + + Properties + Title of dynamic properties tab + 属性 + + + Backends + Title of dynamic properties view + + + + Open Connection Editor + + + + Open Binding Editor + + + + Reset Property + + + + Add binding or connection. + + + + Remove selected binding or connection. + + + + + QmlDesigner::Internal::DebugView + + Debug view is enabled + + + + ::nodeReparented: + + + + ::nodeIdChanged: + + + + Debug View + + + + + QmlDesigner::Internal::DesignModeWidget + + &Workspaces + + + + Output + 输出 + + + Switch the active workspace. + + + + Edit global annotation for current file. + + + + Manage... + 管理... + + + Reset Active + + + + + QmlDesigner::Internal::DynamicPropertiesModel + + Item + + + + Property + 属性 + + + Property Type + + + + Property Value + + + + Error + 错误 + + + + QmlDesigner::Internal::MetaInfoPrivate + + Invalid meta info + + + + + QmlDesigner::Internal::MetaInfoReader + + Illegal state while parsing. + + + + No property definition allowed. + + + + Invalid type %1 + + + + Unknown property for Imports %1 + + + + Unknown property for Type %1 + + + + Unknown property for ItemLibraryEntry %1 + + + + Unknown property for Property %1 + + + + Unknown property for QmlSource %1 + + + + Unknown property for ExtraFile %1 + + + + Invalid or duplicate library entry %1 + + + + + QmlDesigner::Internal::ModelPrivate + + Exception thrown by view %1. + + + + + QmlDesigner::Internal::SettingsPage + + Snapping + hard to translate + Snapping + + + Qt Quick Designer + Qt Quick 设计器 + + + Canvas + 画布 + + + Parent component padding: + + + + Sibling component spacing: + + + + Width: + + + + Height: + + + + Enable Smooth Rendering in Form Editor + + + + Smooth Rendering: + + + + Root Component Init Size + + + + Styling + + + + Controls style: + + + + Default style + + + + Reset Style + + + + Controls 2 style: + + + + Default + 默认 + + + Material + + + + Universal + + + + QML Emulation Layer + + + + If you select this radio button, Qt Quick Designer always uses the QML emulation layer (QML Puppet) located at the following path. + + + + Use fallback QML emulation layer + + + + Path: + 路径: + + + Path to the QML emulation layer executable (qmlpuppet). + + + + Resets the path to the built-in QML emulation layer. + + + + Reset Path + + + + Use QML emulation layer that is built with the selected Qt + + + + Top level build path: + + + + Subcomponents + + + + Always save when leaving subcomponent in bread crumb + + + + Warnings + + + + Also warns in the code editor about QML features that are not properly supported by the Qt Quick Designer. + + + + Warn about unsupported features of .ui.qml files in code editor + + + + Warns about QML features that are not properly supported by the Qt Quick Designer. + + + + Warn about unsupported features in .ui.qml files + + + + Qt Quick Designer will propose to open .ui.qml files instead of opening a .qml file. + + + + Warn about using .qml files instead of .ui.qml files + + + + Internationalization + + + + qsTr() + + + + qsTrId() + + + + qsTranslate() + + + + Features + + + + Enable Timeline editor + + + + Always open ui.qml files in Design mode + + + + Ask for confirmation before deleting asset + + + + Debugging + 调试 + + + Show the debugging view + + + + Show property editor warnings + + + + Forward QML emulation layer output: + + + + Enable the debugging view + + + + Show warn exceptions + + + + Debug QML emulation layer: + + + + Restart Required + + + + The made changes will take effect after a restart of the QML Emulation layer or %1. + + + + + QmlDesigner::InvalidArgumentException + + Failed to create item of type %1 + 无法创建类型为 %1的项目 + + + + QmlDesigner::ItemLibraryAssetImportDialog + + Asset Import + + + + Import Options + + + + Show All Options + + + + Import + 导入 + + + Select import options and press "Import" to import the following files: + + + + Locate 3D Asset "%1" + + + + %1 options + + + + No options available for this type. + + + + No simple options available for this type. + + + + Cancel + 取消 + + + Close + 关闭 + + + Import interrupted. + + + + Import done. + + + + Canceling import. + + + + Hide Advanced Options + + + + + QmlDesigner::ItemLibraryAssetImporter + + Could not create a temporary directory for import. + + + + Importing 3D assets. + + + + Import process crashed. + + + + Import failed for unknown reason. + + + + Asset import process failed: "%1". + + + + Parsing files. + + + + Skipped import of duplicate asset: "%1". + + + + Skipped import of existing asset: "%1". + + + + No files selected for overwrite, skipping import: "%1". + + + + Could not access temporary asset directory: "%1". + + + + Failed to create qmldir file for asset: "%1". + + + + Removing old overwritten assets. + + + + Copying asset files. + + + + Overwrite Existing Asset? + + + + Asset already exists. Overwrite existing or skip? +"%1" + + + + Overwrite Selected Files + + + + Overwrite All Files + + + + Skip + 跳过 + + + Failed to start import 3D asset process. + + + + Failed to start icon generation process. + + + + Generating icons. + + + + Updating data model. + + + + Failed to insert import statement into qml document. + + + + Failed to update imports: %1 + + + + + QmlDesigner::ItemLibraryImport + + Default Components + + + + My Components + + + + My 3D Components + + + + All Other Components + + + + + QmlDesigner::ItemLibraryView + + Components + + + + + QmlDesigner::ItemLibraryWidget + + Components Library + Title of library view + + + + + QmlDesigner::ListModelEditorDialog + + Add Row + + + + Remove Columns + + + + Add Column + + + + Move Down (Ctrl + Down) + + + + Move Up (Ctrl + Up) + + + + Add Property + + + + Property name: + 属性名称: + + + Change Property + + + + Column name: + + + + + QmlDesigner::MaterialBrowserView + + Material Browser + + + + + QmlDesigner::MaterialBrowserWidget + + Material Browser + Title of material browser widget + + + + + QmlDesigner::MaterialEditorContextObject + + <b>Incompatible properties:</b><br> + + + + Change Type + + + + Changing the type from %1 to %2 can't be done without removing incompatible properties.<br><br>%3 + + + + Do you want to continue by removing incompatible properties? + + + + + QmlDesigner::MaterialEditorView + + Cannot Export Property as Alias + + + + Property %1 does already exist for root component. + + + + Material Editor + + + + + QmlDesigner::NavigatorSearchWidget + + Search + 查找 + + + + QmlDesigner::NavigatorTreeModel + + Unknown component: %1 + + + + Toggles whether this component is exported as an alias property of the root component. + + + + Toggles the visibility of this component in the form editor. +This is independent of the visibility property. + + + + Toggles whether this component is locked. +Locked components cannot be modified or selected. + + + + + QmlDesigner::NavigatorTreeView + + Invalid Id + 无效标识符 + + + %1 is an invalid id. + + + + %1 already exists. + + + + + QmlDesigner::NavigatorView + + Navigator + 导航 + + + + QmlDesigner::NavigatorWidget + + Navigator + Title of navigator view + 导航 + + + Become last sibling of parent (CTRL + Left). + + + + Become child of last sibling (CTRL + Right). + + + + Move down (CTRL + Down). + + + + Move up (CTRL + Up). + + + + Filter Tree + 过滤器树形视图 + + + Show Only Visible Components + + + + Reverse Component Order + + + + + QmlDesigner::NodeInstanceView + + Qt Quick emulation layer crashed. + + + + Source item: %1 + + + + B + + + + KB + + + + MB + MB + + + GB + + + + Failed to generate QSB file for: %1 + + + + + QmlDesigner::NodeListModel + + ID + ID + + + Type + 类型 + + + From + + + + To + + + + + QmlDesigner::OpenUiQmlFileDialog + + Open ui.qml file + + + + Do not show this dialog again + + + + Cancel + 取消 + + + You are opening a .qml file in the designer. Do you want to open a .ui.qml file instead? + + + + + QmlDesigner::PathItem + + Closed Path + + + + Split Segment + + + + Make Curve Segment Straight + + + + Remove Edit Point + + + + + QmlDesigner::PresetEditor + + Save Preset + + + + Name + + + + + QmlDesigner::PresetList + + Add Preset + + + + Delete Selected Preset + + + + + QmlDesigner::PropertyEditorContextObject + + Invalid Type + + + + %1 is an invalid type. + + + + + QmlDesigner::PropertyEditorView + + Properties + 属性 + + + Invalid ID + + + + %1 already exists. + + + + Cannot Export Property as Alias + + + + Property %1 does already exist for root component. + + + + + QmlDesigner::PuppetBuildProgressDialog + + Build Progress + + + + Building Adapter for the current Qt. Happens only once for every Qt installation. + + + + Open error output file + + + + Use Fallback QML Emulation Layer + + + + OK + OK + + + + QmlDesigner::PuppetDialog + + Dialog + 对话框 + + + + QmlDesigner::QmlDesignerPlugin + + Cannot Open Design Mode + + + + The QML file is not currently opened in a QML Editor. + + + + License: Enterprise + + + + License: Professional + + + + Licensee: %1 + + + + + QmlDesigner::QmlModelNodeProxy + + multiselection + + + + + QmlDesigner::QmlPreviewWidgetPlugin + + Show Live Preview + + + + + QmlDesigner::RichTextEditor + + &Undo + 撤销(&U) + + + &Redo + + + + &Bold + + + + &Italic + + + + &Underline + + + + Select Image + + + + Image files (*.png *.jpg) + + + + Insert &Image + + + + Hyperlink Settings + + + + &Left + + + + C&enter + + + + &Right + + + + &Justify + + + + Bullet List + + + + Numbered List + + + + &Color... + + + + &Table Settings + + + + Create Table + + + + Remove Table + + + + Add Row + + + + Add Column + + + + Remove Row + + + + Remove Column + + + + Merge Cells + + + + Split Row + + + + Split Column + + + + + QmlDesigner::SetFrameValueDialog + + Edit Keyframe + + + + Frame + + + + + QmlDesigner::ShortCutManager + + Export as &Image... + + + + &Undo + 撤销(&U) + + + &Redo + + + + Delete + 删除 + + + Cu&t + + + + &Copy + 复制(&C) + + + &Paste + 粘贴(&P) + + + Select &All + + + + Save %1 As... + + + + &Save %1 + 保存%1(&S) + + + Revert %1 to Saved + 恢复%1 到已保存的状态 + + + Close %1 + + + + Close All Except %1 + + + + Close Others + 关闭其他 + + + + QmlDesigner::SignalList + + Signal List for %1 + + + + + QmlDesigner::SignalListDelegate + + Release + + + + Connect + + + + + QmlDesigner::SignalListModel + + Item ID + + + + Signal + 信号 + + + + QmlDesigner::SourceTool + + Open File + 打开文件 + + + Source Tool + + + + + QmlDesigner::SplineEditor + + Delete Point + + + + Smooth Point + + + + Corner Point + + + + Add Point + + + + Reset Zoom + 重置缩放 + + + + QmlDesigner::StatesEditorModel + + base state + Implicit default state + 基线状态 + + + The empty string as a name is reserved for the base state. + 空字符串是为基线状态保留的名称。 + + + Name already used in another state. + 名称已经被另一个状态使用。 + + + Invalid State Name + + + + + QmlDesigner::StatesEditorView + + base state + 基线状态 + + + States + 状态 + + + Remove State + + + + This state is not empty. Are you sure you want to remove it? + + + + Locked components: + + + + Removing this state will modify locked components. + + + + Continue by removing the state? + + + + + QmlDesigner::StatesEditorWidget + + States + Title of Editor widget + 状态 + + + Cannot Create QtQuick View + + + + StatesEditorWidget: %1 cannot be created.%2 + + + + + QmlDesigner::SubComponentManager + + My 3D Components + + + + + QmlDesigner::SwitchLanguageComboboxAction + + Switch the language used by preview. + + + + Default + 默认 + + + + QmlDesigner::TextEditorView + + Trigger Completion + + + + Meta+Space + Meta+Space + + + Ctrl+Space + Ctrl+Space + + + Code + 代码 + + + + QmlDesigner::TextToModelMerger + + No import statements found. + + + + Qt Quick 6 is not supported with a Qt 5 kit. + + + + The Design Mode requires a valid Qt kit. + + + + Unsupported Qt Quick version. + + + + No import for Qt Quick found. + + + + + QmlDesigner::TimelineAnimationForm + + Number of times the animation runs before it stops. + + + + Loops: + + + + Sets the animation to loop indefinitely. + + + + Continuous + + + + none + + + + Animation Settings + + + + Name for the animation. + + + + Animation ID: + + + + State to activate when the animation finishes. + + + + Finished: + + + + Runs the animation backwards to the beginning when it reaches the end. + + + + Ping pong + + + + Transition to state: + + + + animation02 + + + + Runs the animation automatically when the base state is active. + + + + Running in base state + + + + First frame of the animation. + + + + Start frame: + + + + Length of the animation in milliseconds. If you set a shorter duration than the number of frames, frames are left out from the end of the animation. + + + + Duration: + 持续时间: + + + Last frame of the animation. + + + + End frame: + + + + Invalid Id + 无效标识符 + + + %1 is an invalid id. + + + + %1 already exists. + + + + Base State + + + + + QmlDesigner::TimelineForm + + Last frame of the timeline. + + + + End frame: + + + + First frame of the timeline. Negative numbers are allowed. + + + + Start frame: + + + + To create an expression binding animation, delete all animations from this timeline. + + + + Expression binding + + + + Name for the timeline. + + + + Timeline ID: + + + + Timeline Settings + + + + Animation + 动画 + + + Sets the expression to bind the current keyframe to. + + + + Expression binding: + + + + Invalid Id + 无效标识符 + + + %1 is an invalid id. + + + + %1 already exists. + + + + + QmlDesigner::TimelinePropertyItem + + Previous Frame + + + + Next Frame + + + + Auto Record + + + + Insert Keyframe + + + + Delete Keyframe + + + + Edit Easing Curve... + + + + Edit Keyframe... + + + + Remove Property + + + + + QmlDesigner::TimelineSettingsDialog + + Timeline Settings + + + + Add Timeline + + + + Remove Timeline + + + + Add Animation + + + + Remove Animation + + + + No Timeline + + + + No Animation + + + + + QmlDesigner::TimelineSettingsModel + + None + + + + State + 状态 + + + Timeline + 时间轴 + + + Animation + 动画 + + + Fixed Frame + + + + Base State + + + + Error + 错误 + + + + QmlDesigner::TimelineToolBar + + Base State + + + + Timeline Settings + + + + To Start + + + + Previous + 上一个 + + + Play + + + + Next + 下一个 + + + To End + + + + Loop Playback + + + + Playback Speed + + + + Auto Key + + + + Easing Curve Editor + + + + Curve Editor + + + + Zoom Out + 缩小 + + + Zoom In + 放大 + + + + QmlDesigner::TimelineView + + Timeline + 时间轴 + + + + QmlDesigner::TimelineWidget + + Timeline + Title of timeline view + 时间轴 + + + Add Timeline + + + + This file does not contain a timeline. <br><br>To create an animation, add a timeline by clicking the + button. + + + + To edit the timeline settings, click + + + + + QmlDesigner::TransitionEditorSettingsDialog + + Transition Settings + + + + Add Transition + + + + Remove Transition + + + + No Transition + + + + + QmlDesigner::TransitionEditorToolBar + + Transition Settings + + + + Easing Curve Editor + + + + Curve Editor + + + + Zoom Out + 缩小 + + + Zoom In + 放大 + + + + QmlDesigner::TransitionEditorView + + No States Defined + + + + There are no states defined in this component. + + + + No Property Changes to Animate + + + + To add transitions, first change the properties that you want to animate in states (%1). + + + + Transitions + + + + + QmlDesigner::TransitionEditorWidget + + Transition + Title of transition view + + + + Add Transition + + + + This file does not contain transitions. <br><br> To create an animation, add a transition by clicking the + button. + + + + To edit the transition settings, click + + + + + QmlDesigner::TransitionForm + + Timeline Settings + + + + Transition ID: + + + + From + + + + To + + + + Invalid ID + + + + %1 is an invalid ID. + + + + %1 already exists. + + + + + QmlDesigner::TransitionTool + + Add Transition + + + + Remove Transitions + + + + Remove All Transitions + + + + Do you really want to remove all transitions? + + + + Remove Dangling Transitions + + + + Transition Tool + + + + + QmlDesignerAddResources + + Image Files + + + + Font Files + + + + Sound Files + + + + Video Files + + + + Shader Files + + + + 3D Assets + + + + Qt 3D Studio Presentations + + + + Add Custom Effect + + + + + QmlDesignerContextMenu + + Selection + 选择 + + + Connections + + + + Connect + + + + Select Effect + + + + Arrange + + + + Edit + 编辑 + + + Anchors + 锚点 + + + Position + 位置 + + + Group + + + + Layout + + + + Flow + 流程 + + + Flow Effects + + + + Stacked Container + + + + Cut + 剪切 + + + Copy + 复制 + + + Paste + 粘贴 + + + Delete Selection + + + + Bring to Front + + + + Send to Back + + + + Bring Forward + + + + Send Backward + + + + Undo + 撤销 + + + Redo + 重做 + + + Visibility + 可见性 + + + Reset Size + 重置尺寸 + + + Reset Position + 重置位置 + + + Copy Formatting + + + + Apply Formatting + + + + Go into Component + 进入组件 + + + Merge File With Template + + + + Go to Implementation + + + + Add New Signal Handler + + + + Move Component into Separate File + 将组件移到独立文件中 + + + Edit Material + + + + Edit Annotation + + + + Add Mouse Area + + + + Open Signal Dialog + + + + Update 3D Asset + + + + Set Id + + + + Reset z Property + + + + Reverse + + + + Fill + 填充 + + + Reset + 重置 + + + Position in Column + + + + Position in Row + + + + Position in Grid + + + + Position in Flow + + + + Remove Positioner + + + + Create Flow Action + + + + Set Flow Start + + + + Remove Layout + + + + Group in GroupItem + + + + Remove GroupItem + + + + Add Component + + + + Add Tab Bar + + + + Increase Index + + + + Decrease Index + + + + Layout in Column Layout + + + + Layout in Row Layout + + + + Layout in Grid Layout + + + + Fill Width + + + + Fill Height + + + + Raise selected component. + + + + Lower selected component. + + + + Reset size and use implicit size. + + + + Reset position and use implicit position. + + + + Copy formatting. + + + + Apply formatting. + + + + Fill selected component to parent. + + + + Reset anchors for selected component. + + + + Layout selected components in column layout. + + + + Layout selected components in row layout. + + + + Layout selected components in grid layout. + + + + Increase index of stacked container. + + + + Decrease index of stacked container. + + + + Add component to stacked container. + + + + Add flow action. + + + + Edit List Model... + + + + Select parent: %1 + 选择父节点: %1 + + + Select: %1 + 选择: %1 + + + Open Connections Editor + + + + Remove This Handler + + + + Add Signal Handler + + + + Connect: %1 + + + + Timeline + 时间轴 + + + Copy All Keyframes + + + + Paste Keyframes + + + + Add Keyframes at Current Frame + + + + Delete All Keyframes + + + + + QmlDesignerTimeline + + Playhead frame %1 + + + + Keyframe %1 + + + + + QmlEditorWidgets::ContextPaneWidget + + Hides this toolbar. + 隐藏这个工具条. + + + Pin Toolbar + 钉住工具栏 + + + Show Always + 总是显示 + + + Unpins the toolbar and moves it to the default position. + 解除工具栏停靠并移动到默认位置。 + + + Hides this toolbar. This toolbar can be permanently disabled in the options page or in the context menu. + 隐藏这个工具栏。该工具栏可在选项页或上下文菜单中永久禁用。 + + + + QmlEditorWidgets::ContextPaneWidgetImage + + Double click for preview. + + + + + QmlEditorWidgets::FileWidget + + Open File + 打开文件 + + + + QmlEngine + + JS Source for %1 + %1的JS源码 + + + Anonymous Function + 匿名函数 + + + + QmlJS::Bind + + package import requires a version number + 导入包需要版本号 + + + Hit maximal recursion depth in AST visit. + + + + Nested inline components are not supported + + + + + QmlJS::Check + + 'int' or 'real' + '整数' 或 '实数' + + + + QmlJS::Link + + File or directory not found. + + + + QML module not found (%1). + +Import paths: +%2 + +For qmake projects, use the QML_IMPORT_PATH variable to add import paths. +For Qbs projects, declare and set a qmlImportPaths property in your product to add import paths. +For qmlproject projects, use the importPaths property to add import paths. +For CMake projects, make sure QML_IMPORT_PATH variable is in CMakeCache.txt. +For qmlRegister... calls, make sure that you define the Module URI as a string literal. + + + + + Implicit import '%1' of QML module '%2' not found. + +Import paths: +%3 + +For qmake projects, use the QML_IMPORT_PATH variable to add import paths. +For Qbs projects, declare and set a qmlImportPaths property in your product to add import paths. +For qmlproject projects, use the importPaths property to add import paths. +For CMake projects, make sure QML_IMPORT_PATH variable is in CMakeCache.txt. + + + + + QML module contains C++ plugins, currently reading type information... %1 + + + + + QmlJS::ModelManagerInterface + + Parsing QML Files + + + + Scanning QML Imports + + + + + QmlJS::PluginDumper + + QML module does not contain information about components contained in plugins. + +Module path: %1 +See "Using QML Modules with Plugins" in the documentation. + + + + Automatic type dump of QML module failed. +Errors: +%1 + 自动 类型转储 QML 模块失败。 +错误: +%1 + {1?} + + + Automatic type dump of QML module failed. +First 10 lines or errors: + +%1 +Check General Messages for details. + + + + Warnings while parsing QML type information of %1: +%2 + + + + "%1" failed to start: %2 + + + + "%1" crashed. + + + + "%1" timed out. + + + + I/O error running "%1". + + + + "%1" returned exit code %2. + + + + Arguments: %1 + + + + Failed to parse "%1". +Error: %2 + + + + Errors while reading typeinfo files: + 读取typeinfo文件发生错误: + + + Could not locate the helper application for dumping type information from C++ plugins. +Please build the qmldump application on the Qt version options page. + 无法定位助手应用来从C++插件转储类型信息。 +请在Qt 版本选项页面构建 qmldump应用。 + + + + QmlJS::QrcParser + + XML error on line %1, col %2: %3 + XML 错误 在第 %1行, %2列: %3 + + + The <RCC> root element is missing. + + + + + QmlJS::SimpleAbstractStreamReader + + Cannot find file %1. + + + + Could not parse document. + + + + Expected document to contain a single object definition. + + + + Expected expression statement after colon. + + + + + QmlJS::SimpleReader + + Property is defined twice, previous definition at %1:%2 + + + + + QmlJS::StaticAnalysisMessages + + Do not use "%1" as a constructor. + +For more information, see the "Checking Code Syntax" documentation. + + + + Invalid value for enum. + + + + Enum value must be a string or a number. + + + + Number value expected. + + + + Boolean value expected. + + + + String value expected. + + + + Invalid URL. + + + + File or directory does not exist. + + + + Invalid color. + + + + Anchor line expected. + + + + Duplicate property binding. + + + + Id expected. + + + + Invalid id. + + + + Duplicate id. + + + + Invalid property name "%1". + + + + "%1" does not have members. + + + + "%1" is not a member of "%2". + + + + Assignment in condition. + + + + Unterminated non-empty case block. + + + + Do not use 'eval'. + + + + Unreachable. + + + + Do not use 'with'. + + + + Do not use comma expressions. + + + + "%1" already is a formal parameter. + + + + Unnecessary message suppression. + + + + "%1" already is a function. + + + + var "%1" is used before its declaration. + + + + "%1" already is a var. + + + + "%1" is declared more than once. + + + + Function "%1" is used before its declaration. + + + + The 'function' keyword and the opening parenthesis should be separated by a single space. + + + + Do not use stand-alone blocks. + + + + Do not use void expressions. + + + + Confusing pluses. + + + + Confusing minuses. + + + + Declare all function vars on a single line. + + + + Unnecessary parentheses. + + + + == and != may perform type coercion, use === or !== to avoid it. + + + + Expression statements should be assignments, calls or delete expressions only. + + + + Place var declarations at the start of a function. + + + + Use only one statement per line. + + + + Unknown component. + + + + Could not resolve the prototype "%1" of "%2". + + + + Could not resolve the prototype "%1". + + + + Prototype cycle, the last non-repeated component is "%1". + + + + Invalid property type "%1". + + + + == and != perform type coercion, use === or !== to avoid it. + + + + Calls of functions that start with an uppercase letter should use 'new'. + + + + Use 'new' only with functions that start with an uppercase letter. + + + + Use spaces around binary operators. + + + + Unintentional empty block, use ({}) for empty object literal. + + + + Use %1 instead of 'var' or 'variant' to improve performance. + + + + Missing property "%1". + + + + Object value expected. + + + + Array value expected. + + + + %1 value expected. + + + + Maximum number value is %1. + + + + Minimum number value is %1. + + + + Maximum number value is exclusive. + + + + Minimum number value is exclusive. + + + + String value does not match required pattern. + + + + Minimum string value length is %1. + + + + Maximum string value length is %1. + + + + %1 elements expected in array value. + + + + Imperative code is not supported in Qt Design Studio. + + + + This type (%1) is not supported in Qt Design Studio. + + + + Reference to parent item cannot be resolved correctly by Qt Design Studio. + + + + This visual property binding cannot be evaluated in the local context and might not show up in Qt Design Studio as expected. + + + + Qt Design Studio only supports states in the root item. + + + + This id might be ambiguous and is not supported in Qt Design Studio. + + + + This type (%1) is not supported as a root element by Qt Design Studio. + + + + This type (%1) is not supported as a root element of a UI file (.ui.qml). + + + + This type (%1) is not supported in a UI file (.ui.qml). + + + + Functions are not supported in a UI file (.ui.qml). + + + + JavaScript blocks are not supported in a UI file (.ui.qml). + + + + Behavior type is not supported in a UI file (.ui.qml). + + + + States are only supported in the root item in a UI file (.ui.qml). + + + + Referencing the parent of the root item is not supported in a UI file (.ui.qml). + + + + Do not mix translation functions in a UI file (.ui.qml). + + + + A State cannot have a child item (%1). + + + + Duplicate import (%1). + + + + Hit maximum recursion limit when visiting AST. + + + + Type cannot be instantiated recursively (%1). + + + + Logical value does not depend on actual values. + + + + Components are only allowed to have a single child element. + + + + Components require a child element. + + + + Do not reference the root item as alias. + + + + Avoid referencing the root item in a hierarchy. + + + + + QmlJS::TypeDescriptionReader + + Errors while loading qmltypes from %1: +%2 + %1导入qmltypes时发生错误: +%2 + + + Warnings while loading qmltypes from %1: +%2 + %1导入qmltypes时发生警告: +%2 + + + Could not parse document. + + + + Expected a single import. + + + + Expected import of QtQuick.tooling. + + + + Major version different from 1 not supported. + + + + Expected document to contain a single object definition. + + + + Expected document to contain a Module {} member. + + + + Expected dependency definitions + + + + Component definition is missing a name binding. + + + + ModuleApi definition has no or invalid version binding. + + + + Method or signal is missing a name script binding. + + + + Expected script binding. + + + + Property object is missing a name or type script binding. + + + + Expected string after colon. + + + + Expected boolean after colon. + + + + Expected true or false after colon. + + + + Expected numeric literal after colon. + + + + Expected integer after colon. + + + + Expected array of strings after colon. + + + + Expected array literal with only string literal members. + + + + Expected string literal to contain 'Package/Name major.minor' or 'Name major.minor'. + + + + Expected array of numbers after colon. + + + + Expected array literal with only number literal members. + + + + Meta object revision without matching export. + + + + Expected integer. + + + + Expected object literal after colon. + + + + Expected expression after colon. + + + + Expected strings as enum keys. + + + + Expected either array or object literal as enum definition. + QmlJSEditor + + Run Checks + 运行检查 + + + Ctrl+Shift+C + Ctrl+Shift+C + + + Reformat File + 重新格式化文件 + + + QML + QML + + + QML Analysis + QML 分析 + + + Show Qt Quick Toolbar + 显示Qt Quick工具栏 + + + Library at %1 + %1 is library path + %1中的库 + + + Dumped plugins successfully. + 成功读取插件。 + + + Read typeinfo files successfully. + 读取typeinfo文件成功。 + + + Qt Quick Toolbars + Qt Quick工具栏 + + + Always show Qt Quick Toolbar + 总是显示Qt Quick工具栏 + + + Pin Qt Quick Toolbar + 钉住Qt Quick工具栏 + + + Move Component into Separate File + 将组件移到独立文件中 + + + Path: + 路径: + + + Component name: + 组件名: + + + QML/JS Usages: + QML/JS 使用: + + + Show All Bindings + 显示所有绑定 + + + Split Initializer + 分离初始化 + + + Show Qt Quick ToolBar + 显示Qt Quick工具栏 + + + Refactoring + 重构 + + + Expand All + 展开全部 + + + Collapse All + 折叠全部 + Add a Comment to Suppress This Message 添加一个说明掩盖此消息 @@ -46403,69 +39602,366 @@ Remote stderr was: %1 Wrap Component in Loader 在加载器中包含组件 + + Component Name + + + + ui.qml file + + + + Property assignments for %1: + + + + Invalid component name. + + + + Invalid path. + + + + Component already exists. + + + + Enable auto format on file save + + + + Restrict to files contained in the current project + + + + Auto-fold auxiliary data + + + + Always Ask + 总是询问 + + + Qt Design Studio + + + + Qt Creator + Qt Creator + + + Automatic Formatting on File Save + + + + Features + + + + Open .ui.qml files with: + + + + QML/JS Editing + + + + Code Model Not Available + + + + Code model not available. + + + + Code Model of %1 + + + + This file should only be edited in <b>Design</b> mode. + + + + Switch Mode + + + + QML + SnippetProvider + QML + + + Inspect API for Element Under Cursor + + + + Searching for Usages + + + + Code Model Warning + + + + Code Model Error + + // TODO: Move position bindings from the component to the Loader. -// Check all uses of 'parent' inside the root element of the component. - - // 待完成: 将位置绑定从组件移动到装载器。 -// 检查所有在组件的根元素中使用的'parent'。 - +// Check all uses of 'parent' inside the root element of the component. + - // Rename all outer uses of the id '%1' to '%2.item'. - - // 将所有id '%1"的外部应用重命名为'%2.item'。 - + // Rename all outer uses of the id "%1" to "%2.item". + - // Rename all outer uses of the id '%1' to '%2.item.%1'. + // Rename all outer uses of the id "%1" to "%2.item.%1". - // 将所有id '%1"的外部应用重命名为'%2.item.%1'。 - + QmlJSTools - Cu&t - 剪切 + Code Style + 代码风格 - Select &All - 全选 + Qt Quick + Qt Quick - Console - 控制台 + &QML/JS + &QML/JS - &Show in Editor - 在编辑器中显示(&S) + Reset Code Model + 重置代码模型 - The type will only be available in Qt Creator's QML editors when the type name is a string literal - 仅在类型名称为字符串时该类型才能在Qt Creator 中的 QML编辑器中使用 + Qt + Qt - The module URI cannot be determined by static analysis. The type will be available + Old Creator + 旧的 Creator + + + Qml JS Code Style + + + + &Line length: + + + + QML Functions + + + + + QmlJSTools::FindExportedCppTypes + + The type will only be available in the QML editors when the type name is a string literal. + + + + The module URI cannot be determined by static analysis. The type will not be available globally in the QML editor. You can add a "// @uri My.Module.Uri" annotation to let -Qt Creator know about a likely URI. - 模块的URI 无法通过静态分析来决定。类型将在QML编辑器中全局可用。 -您可以添加 "// @uri My.Module.Uri" 注释来让 -Qt Creator 知道一个相似的URI。 +the QML editor know about a likely URI. + must be a string literal to be available in the QML editor - 必须是一个在 QML 编辑器中可用的字符串文字 + + + + + QmlJSTools::QmlJSToolsSettings + + Global + Settings + + + + + QmlManager + + <Current File> + <当前文件> + + + + QmlParser + + Unclosed string at end of line + 在行尾有未关闭的字符串 + + + Illegal unicode escape sequence + 非法的unicode转义序列 + + + Illegal syntax for exponential number + 指数语法无效 + + + Unterminated regular expression literal + 正则表达式未结束 + + + Invalid regular expression flag '%0' + 无效的正则表达式标志 '%0' + + + Unterminated regular expression backslash sequence + 正则表达式反斜杠序列未结束 + + + Unterminated regular expression class + 正则表达式类未结束 + + + Unexpected token `%1' + 未预料到的符号 `%1' + + + Expected token `%1' + 预计符号 `%1' + + + Syntax error + 语法错误 + + + Unexpected token '.' + + + + Stray newline in string literal + + + + End of file reached at escape sequence + + + + Illegal hexadecimal escape sequence + + + + Octal escape sequences are not allowed + + + + At least one hexadecimal digit is required after '0%1' + + + + At least one octal digit is required after '0%1' + + + + At least one binary digit is required after '0%1' + + + + Decimal numbers can't start with '0' + + + + Imported file must be a script + + + + Invalid module URI + + + + Incomplete version number (dot but no minor) + + + + File import requires a qualifier + + + + Module import requires a qualifier + + + + Invalid import qualifier + + + + + QmlPreview::QmlPreviewPlugin + + QML Preview + + + + Preview File + QmlProfiler - Could not connect to the in-process QML profiler. -Do you want to retry? - 无法连接到进程内的QML分析器。 -您想重试吗? + QML Profiler + QML 分析器(Profiler) + + + &Port: + 端口(&P): + + + QML Profiler Options + QML 分析器选项 + + + The QML Profiler can be used to find performance bottlenecks in applications using QML. + QML分析器可被用于找到使用QML的应用程序的性能瓶颈。 + + + %1 s + %1秒 + + + Elapsed: %1 + 逝去: %1 + + + Application finished before loading profiled data. +Please use the stop button instead. + 应用程序在载入分析数据之前已经结束。 +请使用“停止”按钮。 + + + Load QML Trace + 载入QML 追踪文件 + + + Save QML Trace + 保存 QML 追踪文件 + + + Discard data + 丢弃数据 + + + Painting + 绘制中 + + + Compiling + 编译中 + + + Creating + 创建中 Source code not available @@ -46475,50 +39971,10 @@ Do you want to retry? <bytecode> <字节码> - - Animation Timer Update - 动画定时器更新 - - - <Animation Update> - <动画更新> - - - <program> - <程序> - Main Program 主程序 - - %1 animations at %2 FPS - %1 以 %2 FPS的速度动画 - - - No data to save - 没有数据需要保存 - - - Could not open %1 for writing - 无法打开%1来写入 - - - Could not open %1 for reading - 无法打开%1来读取 - - - Error while parsing %1 - 解析 %1 发生错误 - - - Invalid version of QML Trace file. - QML追踪文件的版本无效。 - - - Trace information from the v8 JavaScript engine. Available only in Qt5 based applications. - 从v8 JavaScript引擎中追踪信息。仅在基于Qt5的应用程序中可用。 - Copy Row 复制行 @@ -46531,14 +39987,6 @@ Do you want to retry? Extended Event Statistics 扩展的事件统计数据 - - Limit Events Pane to Current Range - 限制事件窗口为当前的范围 - - - Reset Events Pane - 重置事件窗口 - Location 路径 @@ -46587,40 +40035,6 @@ Do you want to retry? Details 详情 - - (Opt) - (优化的) - - - Binding is evaluated by the optimized engine. - 绑定由优化的引擎求值。 - - - Binding not optimized (e.g. has side effects or assignments, -references to elements in other files, loops, etc.) - 绑定未优化(例如有副作用或者是在其他文件、循环中 -对元素的赋值、引用,等等) - - - Binding loop detected. - 检测到循环绑定。 - - - µs - 微秒 - - - ms - 毫秒 - - - s - - - - Paint - 绘制 - Compile 编译 @@ -46637,10 +40051,6 @@ references to elements in other files, loops, etc.) Signal 信号 - - Part of binding loop. - 循环绑定的一部分。 - Callee 被调用者 @@ -46657,10 +40067,6 @@ references to elements in other files, loops, etc.) Caller Description 调用者的说明 - - Loading data - 正在载入数据 - Profiling application 正在分析应用程序 @@ -46669,38 +40075,10 @@ references to elements in other files, loops, etc.) No QML events recorded 没有QML事件被记录 - - Application stopped before loading all data - 在载入数据之前应用程序停止 - - - Jump to previous event - 跳到上一个事件 - - - Jump to next event - 跳到下一个事件 - - - Show zoom slider - 显示缩放滑动条 - - - Select range - 选择范围 - - - View event information on mouseover - 在鼠标悬停时查看事件信息 - Reset Zoom 重置缩放 - - Events - 事件 - Timeline 时间轴 @@ -46709,228 +40087,784 @@ references to elements in other files, loops, etc.) JavaScript JavaScript - - - Qnx - Starting: "%1" %2 - 正在启动 "%1" %2 - + Allocations + + + + Memory + + + + Various Events + + + + others + + + + Debug Message + + + + Warning Message + + + + Critical Message + + + + Fatal Message + + + + Info Message + + + + Unknown Message %1 + + + + Timestamp + + + + Message + 消息 + + + Could not re-read events from temporary trace file: %1 + + + + Flame Graph + + + + Show Full Range + + + + Reset Flame Graph + + + + Mouse Events + + + + Keyboard Events + + + + Key Press + + + + Key Release + + + + Key + 密钥 + + + Modifiers + + + + Double Click + + + + Mouse Press + + + + Mouse Release + + + + Button + + + + Result + 结果 + + + Mouse Move + + + + X + + + + Y + + + + Mouse Wheel + + + + Angle X + + + + Angle Y + + + + Keyboard Event + + + + Mouse Event + + + + Unknown + 未知 + + + Memory Allocation + + + + Memory Usage + + + + Memory Allocated + + + + Memory Freed + + + + Total + + + + %n byte(s) + + + + + + Allocated + + + + Deallocated + + + + Deallocations + + + + Heap Allocation + + + + Large Item Allocation + + + + Heap Usage + + + + Cache Size + + + + Image Cached + + + + Image Loaded + + + + Load Error + + + + Duration + 持续时间 + + + File + 文件 + + + Width + 宽度 + + + Height + 高度 + + + QML Profiler (Attach to Waiting Application) + + + + Animations + + + + GUI Thread + + + + Render Thread + + + + Framerate + + + + Context + + + + Start QML Profiler + + + + Select an externally started QML-debug enabled application.<p>Commonly used command-line arguments are: + + + + Kit: + + + + Pixmap Cache + + + + Scene Graph + + + + Handling Signal + + + + Input Events + + + + Debug Messages + + + + Quick3D + + + + Failed to replay QML events from stash file. + + + + anonymous function + + + + Cannot open temporary trace file to store events. + + + + Failed to reset temporary trace file. + + + + Failed to flush temporary trace file. + + + + Could not re-open temporary trace file. + + + + Read past end in temporary trace file. + + + + QML Profiler Settings + + + + Flush data while profiling: + + + + Periodically flush pending data to the profiler. This reduces the delay when loading the +data and the memory usage in the application. It distorts the profile as the flushing +itself takes time. + + + + Flush interval (ms): + + + + Process data only when process ends: + + + + Only process data when the process being profiled ends, not when the current recording +session ends. This way multiple recording sessions can be aggregated in a single trace, +for example if multiple QML engines start and stop sequentially during a single run of +the program. + + + + Analyzer + 分析器 + + + Profiling application: %n events + + + + + + Loading buffered data: %n events + + + + + + Loading offline data: %n events + + + + + + Waiting for data + + + + Main program + + + + +%1 in recursive calls + + + + called recursively + + + + Statistics + + + + Search timeline event notes. + + + + Hide or show event categories. + + + + Disable Profiling + + + + Enable Profiling + + + + A QML Profiler analysis is still in progress. + + + + Start QML Profiler analysis. + + + + The application finished before a connection could be established. No data was loaded. + + + + Could not connect to the in-process QML profiler within %1 s. +Do you want to retry and wait %2 s? + + + + Failed to connect. + + + + QML traces (*%1 *%2) + + + + Saving Trace Data + + + + Loading Trace Data + + + + You are about to discard the profiling data, including unsaved notes. Do you want to continue? + + + + Starting a new profiling session will discard the previous data, including unsaved notes. +Do you want to save the data first? + + + + Error while parsing trace data file: %1 + + + + Invalid magic: %1 + + + + Unknown data stream version: %1 + + + + Excessive number of event types: %1 + + + + Invalid type index %1 + + + + Corrupt data before position %1. + + + + Error writing trace file. + + + + Could not re-read events from temporary trace file: %1 +Saving failed. + + + + Analyze Current Range + + + + Analyze Full Range + + + + Render Frame + + + + Synchronize Frame + + + + Prepare Frame + + + + Mesh Load + + + + Custom Mesh Load + + + + Texture Load + + + + Generate Shader + + + + Load Shader + + + + Particle Update + + + + Mesh Memory consumption + + + + Texture Memory consumption + + + + Mesh Unload + + + + Custom Mesh Unload + + + + Texture Unload + + + + Unknown Unload Message %1 + + + + Description + 说明 + + + Count + + + + Draw Calls + + + + Render Passes + + + + Total Memory Usage + + + + Render Thread Details + + + + Polish + + + + Wait + + + + GUI Thread Sync + + + + Render Thread Sync + + + + Render + + + + Swap + + + + Render Preprocess + + + + Render Update + + + + Render Bind + + + + Render Render + + + + Material Compile + + + + Glyph Render + + + + Glyph Upload + + + + Texture Bind + + + + Texture Convert + + + + Texture Swizzle + + + + Texture Upload + + + + Texture Mipmap + + + + Texture Delete + + + + Stage + + + + Glyphs + - Qnx + QmlProjectManager::Internal::QmlProjectPlugin - Launching application failed - 程序启动失败 + Qt Design Studio + - Cannot show debug output. Error: %1 - 无法显示调试输出。错误: %1 + No project file (*.qmlproject) found for Qt Design Studio. +Qt Design Studio requires a .qmlproject based project to open the .ui.qml file. + + + + Set as Main .qml File + + + + Set as Main .ui.qml File + - Qnx + QmlProjectManager::QmlBuildSystem - Create BAR packages - 创建BAR包 + Error while loading project file %1. + 载入项目文件%1时发生错误。 - Could not find packager command '%1' in the build environment - 在构建环境中找不到打包命令'%1' - - - No packages enabled for deployment - 没有设置为可供部署的包 - - - Application descriptor file not specified, please check deployment settings - 没有指定应用程序的描述符文件。请检查您的部署设定 - - - No package specified, please check deployment settings - 未指定包,请检查部署设定 - - - Could not create build directory '%1' - 无法创建构建目录'%1' - - - Error preparing application descriptor file - 准备程序描述符文件时发生错误 - - - Could not open '%1' for reading - 无法打开'%1'来读取 - - - Could not create prepared application descriptor file in '%1' - 无法在 '%1'中创建准备好的应用程序描述符文件 + Warning while loading project file %1. + 载入项目文件 %1时收到警告信息。 - Qnx + QmlProjectManager::QmlMainFileAspect - <b>Create packages</b> - <b>创建包</b> - - - Enabled - 启用 - - - Application descriptor file - 应用程序描述符文件 - - - Package - + Main QML file: + - Qnx + QmlProjectManager::QmlMultiLanguageAspect - Deploy packages - 部署包 + Use MultiLanguage in Form Editor. + - Could not find deploy command '%1' in the build environment - 在构建环境中找不到部署命令 '%1' - - - No hostname specified for device - 未指定设备的主机名 - - - Package '%1' does not exist. Create the package first. - 包 '%1'不存在。请先创建包。 + Reads translations from MultiLanguage plugin. + - Qnx + QmlProjectManager::QmlProject - <b>Deploy packages</b> - <b>部署包</b> + No Qt version set in kit. + 构建套件中未设置Qt版本。 + + + Kit has no device. + + + + Qt version is too old. + + + + Qt version has no QML utility. + + + + Non-desktop Qt is used with a desktop device. + - Qnx + QmlProjectManager::QmlProjectFileFormat - Deploy Package - 部署包 + Invalid root element: %1 + - Qnx + QmlProjectManager::QmlProjectRunConfiguration - BlackBerry - 黑莓 - - - - Qnx - - BlackBerry Device - 黑莓设备 - - - - Qnx - - New BlackBerry Device Configuration Setup - 新黑莓设备配置设置 + QML Runtime + QML运行环境 - Failure to Save Key File - 保存密钥文件失败 + QML Viewer: + - Failed to create directory: '%1'. - 创建目录失败:'%1'。 + System Environment + 系统环境变量 - Private key file already exists: '%1' - 私钥文件已经存在: '%1' + Clean Environment + - Public key file already exists: '%1' - 公钥文件已经存在: '%1' - - - - Qnx - - Setup Finished - 设置完成 + QML Utility + QMLRunConfiguration display name. + - The new device configuration will now be created. - 新设备配置将会被创建。 - - - - Qnx - - BlackBerry %1 - Qt Version is meant for BlackBerry - 黑莓 %1 + No script file to execute. + - BlackBerry Native SDK: - 黑莓的原生SDK: - - - - Qnx - - %1 on BlackBerry device - 黑莓设备上的 %1 + No QML utility found. + - Run on BlackBerry device - 在黑莓设备上运行 - - - - Qnx - - %1 on BlackBerry Device - 黑莓设备上的 %1 - - - - Qnx - - No active deploy configuration - 没有激活的部署设置 + No QML utility specified for target device. + - Run on BlackBerry Device - 在黑莓设备上运行 - - - - Qnx - - No SDK path set - 未设置SDK的路径 - - - - Qnx - - Preparing remote side... - - 正在准备远端... - + Qt Version: + Qt 版本: - The %1 process closed unexpectedly. - %1进程意外关闭。 + Qt 6 + - Initial setup failed: %1 - 初始设置失败:%1 + Qt 5 + @@ -46957,156 +40891,384 @@ references to elements in other files, loops, etc.) QNX - QNX Software Development Platform: - QNX 软件开发平台: + Preparing remote side... + - Path to Qt libraries on device: - 设备上的Qt库的路径: + The following errors occurred while activating the QNX configuration: + + + + Cannot Set Up QNX Configuration + + + + Debugger for %1 (%2) + + + + QCC for %1 (%2) + + + + Kit for %1 (%2) + + + + - No GCC compiler found. + + + + - No targets found. + + + + Project source directory: + + + + Local executable: + 本地执行档: + + + Remote QNX process %1 + + + + Deploy Qt to QNX Device + + + + Deploy + 部署 + + + Close + 关闭 + + + Qt library to deploy: + + + + Remote directory: + + + + Closing the dialog will stop the deployment. Are you sure you want to do this? + + + + Please input a remote directory to deploy to. + + + + Checking existence of "%1" + + + + Removing "%1" + + + + The remote directory "%1" already exists. +Deploying to that directory will remove any files already present. + +Are you sure you want to continue? + + + + Connection failed: %1 + 连接失败:%1 + + + Deploy Qt libraries... + + + + Checking that files can be created in /var/run... + + + + Files can be created in /var/run. + + + + An error occurred while checking that files can be created in /var/run. + + + + Files cannot be created in /var/run. + + + + %1 found. + + + + An error occurred while checking for %1. + + + + %1 not found. + + + + Checking for %1... + + + + Attach to remote QNX application... + + + + No SDP path was set up. + + + + Executable on device: + 设备上的执行档: + + + Remote path not set + + + + Executable on host: + 主机上的执行档: + + + Path to Qt libraries on device + + + + Generate kits + + + + Add... + 添加... + + + Remove + 删除 + + + Configuration Information: + + + + Name: + 名称: + + + Version: + 版本: + + + Host: + 主机: + + + Target: + 目标: + + + Select QNX Environment File + + + + Warning + 警告 + + + Configuration already exists or is invalid. + + + + Remove QNX Configuration + + + + Are you sure you want to remove: + %1? + + + + QCC + + + + &Compiler path: + 编译器路径(&C): + + + SDP path: + SDP refers to 'Software Development Platform'. + + + + &ABI: + &ABI: + + + Warning: "slog2info" is not found on the device, debug output not available. + + + + Cannot show slog2info output. Error: %1 + - Qnx + QtDumperHelper - %1 on QNX Device - QNX 设备上的 %1 + ptrace: Operation not permitted. + +Could not attach to the process. Make sure no other debugger traces this process. +Check the settings of +/proc/sys/kernel/yama/ptrace_scope +For more details, see /etc/sysctl.d/10-ptrace.conf + + ptrace: 操作不允许。 + +无法attach到进程。请确认其他调试器没有追踪该进程。 +检查/proc/sys/kernel/yama/ptrace_scope +的设置 +详情参考 /etc/sysctl.d/10-ptrace.conf + + + + ptrace: Operation not permitted. + +Could not attach to the process. Make sure no other debugger traces this process. +If your uid matches the uid +of the target process, check the settings of +/proc/sys/kernel/yama/ptrace_scope +For more details, see /etc/sysctl.d/10-ptrace.conf + + ptrace: 操作不允许。 + +无法attach到进程。请确认其他调试器没有追踪该进程。 +如果您的uid和目标进程的uid +相符,检查 +/proc/sys/kernel/yama/ptrace_scope的设置 +详情参考 /etc/sysctl.d/10-ptrace.conf + - Qnx + QtForMCUs - Run on remote QNX device - 在远程QNX设备上运行 - - - - QmakeProjectManager - - The mkspec to use when building the project with qmake.<br>This setting is ignored when using other build systems. - 用qmake构建项目时使用的mkspec。<br>当使用其他构建系统时该设置被忽略。 - - - Qt mkspec: - Qt mkspec: - - - No Qt version set, so mkspec is ignored. - 未设置Qt版本,所以mkspec被忽略。 - - - Mkspec not found for Qt version. - 未找到Q版本的mkspec。 - - - mkspec - mkspec - - - Manage... - 管理... - - - <b>Error:</b> - Severity is Task::Error - <b>错误:</b> - - - <b>Warning:</b> - Severity is Task::Warning - <b>警告:</b> - - - Configure Project - 配置项目 - - - The project <b>%1</b> is not yet configured.<br/>Qt Creator cannot parse the project, because no kit has been set up. - 项目 <b>%1</b>尚未配置。<br/>Qt Creator无法解析项目,因为还没有设置构建套件。 - - - The project <b>%1</b> is not yet configured.<br/>Qt Creator uses the kit <b>%2</b> to parse the project. - 项目 <b>%1</b>尚未配置。<br/>Qt Creator使用构建套件<b>%2</b> 来解析项目。 - - - The project <b>%1</b> is not yet configured.<br/>Qt Creator uses the <b>invalid</b> kit <b>%2</b> to parse the project. - 项目 <b>%1</b>尚未配置。<br/>Qt Creator使用<b>无效的</b>构建套件<b>%2</b> 来解析项目。 - - - Import Build from... - 导入构建,从... - - - Import - 导入 + Qt for MCUs: %1 + QtSupport - Command: - 命令: + No qmake path set + 没有设置qmake路径 - Arguments: - 参数: + qmake does not exist or is not executable + qmake不存在或者不可执行 - Working directory: - 工作目录: + Qt version has no name + 没有设置Qt版本名称 - Run in &terminal - 在终端中运行(&T) + <unknown> + <未知> - Run Environment - 运行时的环境变量 + System + 系统 - Base environment for this run configuration: - 运行设置的基础环境: + Qt version is not properly installed, please run make install + Qt没有被正确安装,请运行make install - Clean Environment - 清理时的环境变量 - - - - CustomExecutableDialog - - Could not find the executable, please specify one. - 无法找到执行档,请指定一个。 - - - - QtSupport - - No executable. - 无执行档。 + Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong? + 无法确定Qt安装的二进制所在的路径,或许qmake的路径设置出现了错误? - The executable -%1 -cannot be found in the path. - 执行档 -%1 -在搜索路径中找不到。 + The default mkspec symlink is broken. + 默认的mkspec 符号链接错误。 - System Environment - 系统环境变量 + ABI detection failed: Make sure to use a matching compiler when building. + ABI 检测失败: 确保构建时使用一个匹配的编译器。 - Build Environment - 构建时的环境变量 + Non-installed -prefix build - for internal development only. + -prefix构建未安装 - 仅供内部使用。 - Run %1 - 运行%1 + Desktop + Qt Version is meant for the desktop + 桌面 - Custom Executable - 自定义执行档 + Embedded Linux + Qt Version is used for embedded Linux development + 嵌入式 Linux + + + The Qt version is invalid: %1 + %1: Reason for being invalid + Qt版本无效: %1 + + + The qmake command "%1" was not found or is not executable. + %1: Path to qmake executable + qmake命令 "%1" 没有找到或不可执行。 + + + Edit + 编辑 + + + Name + 名称 + + + Remove + 删除 + + + Add... + 添加... + + + <specify a name> + <指定一个名字> + + + Do you want to remove all invalid Qt Versions?<br><ul><li>%1</li></ul><br>will be removed. + 您想删除所有无效的Qt版本吗?<br><ul><li>%1</li></ul><br>将会被删除。 + + + Qt version %1 for %2 + %2的Qt 版本%1 + + + Remove Invalid Qt Versions + 删除无效的Qt版本 + + + Not all possible target environments can be supported due to missing compilers. + 由于编译器不全,不是所有的目标环境都能被支持。 + + + This Qt version was already registered as "%1". + 该Qt版本已经注册为 "%1"。 + + + Incompatible Qt Versions + 不兼容的Qt版本 Examples @@ -47148,28 +41310,10 @@ cannot be found in the path. Cannot Copy Project 无法复制项目 - - Failed to Open Project - 打开项目失败 - - - - QtSupport The Qt library to use for all projects using this kit.<br>A Qt version is required for qmake-based projects and optional when using other build systems. 所有使用该构建套件的项目使用的Qt库。<br> 基于qmake的项目必需一个Qt版本,而使用其他构建系统的项目则为可选。 - - Manage... - 管理... - - - Qt version: - Qt 版本: - - - - QtSupport Qt version Qt 版本 @@ -47178,98 +41322,1332 @@ cannot be found in the path. None + + Qt %{Qt:Version} in PATH (%2) + + + + Qt %{Qt:Version} (%2) + + + + Device type is not supported by Qt version. + + + + The compiler "%1" (%2) cannot produce code for the Qt version "%3" (%4). + + + + The compiler "%1" (%2) may not produce code compatible with the Qt version "%3" (%4). + + + + The kit has a Qt version, but no C++ compiler. + + + + Name: + 名称: + + + Invalid Qt version + + + + ABI: + ABI: + + + Source: + 源: + + + mkspec: + mkspec: + + + qmake: + qmake: + + + Default: + 默认: + + + Version: + 版本: + + + The version string of the current Qt version. + + + + The type of the current Qt version. + + + + The mkspec of the current Qt version. + + + + The installation prefix of the current Qt version. + + + + The installation location of the current Qt version's data. + + + + The host location of the current Qt version. + + + + The installation location of the current Qt version's internal host executable files. + + + + The installation location of the current Qt version's header files. + + + + The installation location of the current Qt version's library files. + + + + The installation location of the current Qt version's documentation files. + + + + The installation location of the current Qt version's executable files. + + + + The installation location of the current Qt version's internal executable files. + + + + The installation location of the current Qt version's plugins. + + + + The installation location of the current Qt version's QML files. + + + + The installation location of the current Qt version's imports. + + + + The installation location of the current Qt version's translation files. + + + + The installation location of the current Qt version's examples. + + + + The installation location of the current Qt version's demos. + + + + The current Qt version's default mkspecs (Qt 4). + + + + The current Qt version's default mkspec (Qt 5; host system). + + + + The current Qt version's default mkspec (Qt 5; target system). + + + + The current Qt's qmake version. + + + + Timeout running "%1". + + + + "%1" crashed. + + + + "%1" produced no output: %2. + + + + qmake "%1" is not an executable. + + + + No Qt version. + 没有设置Qt 版本。 + + + Invalid Qt version. + 无效的 Qt 版本。 + + + Requires Qt 5.0.0 or newer. + 需要Qt 4.7.1 或更新的版本。 {5.0.0 ?} + + + Requires Qt 5.3.0 or newer. + 需要Qt 4.7.1 或更新的版本。 {5.3.0 ?} + + + This Qt Version does not contain Qt Quick Compiler. + + + + No factory found for qmake: "%1" + + + + Aggregation as a pointer member + 以指针成员方式集成 + + + Aggregation + 集成 + + + Multiple inheritance + 多重继承 + + + Support for changing languages at runtime + 对运行时更改语言的支持 + + + Use Qt module name in #include-directive + 在#include指令中使用Qt模块名 + + + Add Qt version #ifdef for module names + 为模块名添加表示Qt版本的#ifdef + + + Embedding of the UI Class + UI类嵌入方式 + + + Code Generation + 生成代码 + + + Qt Class Generation + + + + Search in Examples... + + + + Search in Tutorials... + + + + QML debugging and profiling: + + + + Might make your application vulnerable.<br/>Only use in a safe environment. + + + + Qt Quick Compiler: + + + + Disables QML debugging. QML profiling will still work. + + + + %1 (invalid) + + + + Name of Qt Version + + + + unknown + + + + Path to the qmake executable + + + + Qt Version + Qt版本 + + + Location of qmake + + + + Link with Qt... + + + + Clean Up + + + + qmake path: + + + + Register documentation: + + + + qmake Path + + + + Highest Version Only + + + + All + 所有 + + + Display Name is not unique. + + + + No compiler can produce code for this Qt version. Please define one or more compilers for: %1 + + + + The following ABIs are currently not supported: %1 + + + + Select a qmake Executable + + + + Qt Version Already Known + + + + Qmake Not Executable + + + + The qmake executable %1 could not be added: %2 + + + + The Qt version selected must match the device type. + + + + Linking with a Qt installation automatically registers Qt versions and kits, and other tools that were installed with that Qt installer, in this Qt Creator installation. Other Qt Creator installations are not affected. + + + + %1's resource directory is not writable. + + + + %1 is part of a Qt installation. + + + + %1 is currently linked to "%2". + + + + Qt installation information was not found in "%1". Choose a directory that contains one of the files %2 + + + + Choose Qt Installation + + + + The change will take effect after restart. + + + + Qt installation path: + + + + Choose the Qt installation directory, or a directory that contains "%1". + + + + Link with Qt + + + + Cancel + 取消 + + + Remove Link + + + + Qt Versions + Qt 版本 + + + Link with a Qt installation to automatically register Qt versions and kits? To do this later, select Edit > Preferences > Kits > Qt Versions > Link with Qt. + + + + Full path to the host bin directory of the Qt version in the active kit of the project containing the current document. + + + + Full path to the target bin directory of the Qt version in the active kit of the project containing the current document.<br>You probably want %1 instead. + + + + Full path to the host libexec directory of the Qt version in the active kit of the project containing the current document. + + + + Full path to the host bin directory of the Qt version in the active kit of the active project. + + + + Full path to the target bin directory of the Qt version in the active kit of the active project.<br>You probably want %1 instead. + + + + Full path to the libexec bin directory of the Qt version in the active kit of the active project. + + + + No QML utility installed. + + + + If you plan to provide translations for your project's user interface via the Qt Linguist tool, please select a language here. A corresponding translation (.ts) file will be generated for you. + + + + <none> + <无> + + + Language: + 语言: + + + Translation file: + + - QtSupport + QtVersion - MeeGo/Harmattan - MeeGo/Harmattan + Boot2Qt + Qt version is used for Boot2Qt development + + + + + QuickFix::ExtractFunction + + Extract Function + 解压缩函数 - Maemo/Fremantle - Maemo/Fremantle + Extract Function Refactoring + 解压缩函数的重构 - Desktop - 桌面 + Function name + 函数名 - Embedded Linux - 嵌入式 Linux + Access + + + + + RadioButtonSpecifics + + Radio Button + - Windows CE - Windows CE + Text + 文本 - Android - Android + Text label for the radio button. + + + + Checked + + + + Determines whether the radio button is checked or not. + + + + Focus on press + + + + Determines whether the radio button gets focus if pressed. + + + + + RefactoringFile::apply + + Refactoring cannot be applied. + RemoteLinux - Remote process crashed. - 远端进程崩溃。 + Default + 默认 - Unexpected output from remote process: '%1'. - 来自远程进程的异常输出: '%1'。 + Deploy Public Key + 部署公钥 + + + The new device configuration will now be created. +In addition, device connectivity will be tested. + 新设备的设置将被创建。 +另外,设备的连接性将被测试。 + + + All specified ports are available. + 所有指定的端口都可用。 + + + Close + 关闭 + + + Key Deployment + 公钥部署 + + + All files successfully deployed. + 所有文件部署成功. + + + Upload files via SFTP + 通过SFTP上传文件 + + + Installing package failed. + 安装package失败. + + + Choose Public Key File + 选择公钥文件 + + + Public Key Files (*.pub);;All Files (*) + 选择公钥文件(*.pub);;所有文件 (*) + + + Deploying... + 部署中... + + + Deployment finished successfully. + 部署成功完成。 + + + Fetch Device Environment + 获取设备环境 + + + Executable on host: + 主机上的执行档: + + + Executable on device: + 设备上的执行档: + + + Clean Environment + 清理时的环境变量 + + + System Environment + 系统环境变量 + + + Cancel Fetch Operation + 取消获取操作 + + + Device Error + 设备错误 + + + Fetching environment failed: %1 + 获取环境失败:%1 + + + Tarball creation not possible. + 不可能创建tarball。 + + + Create tarball: + 创建tarball: + + + No deployment action necessary. Skipping. + 不必要执行部署,跳过。 + + + No device configuration set. + 没有设备设置。 + + + Cannot deploy: %1 + 无法部署:%1 + + + User requests deployment to stop; cleaning up. + 用户要求停止部署; 清理中。 + + + Deploy step failed. + 部署步骤失败。 + + + Deploy step finished. + 部署步骤完成。 + + + Successfully uploaded package file. + 上传包文件成功。 + + + Installing package to device... + 正在将包安装到设备... + + + Package installed. + 包已安装。 + + + Incremental deployment + 增量部署 + + + Command line: + 命令行: + + + Checking if specified ports are available... + 检查指定端口是否可用... + + + Run custom remote command + 执行自定义的远程命令 + + + No command line given. + 没有给定命令行。 + + + Remote process finished with exit code %1. + 远端进程完成,退出代码'%1'。 + + + Remote command finished successfully. + 远端命令成功完成。 + + + Deploy to Remote Linux Host + 部署到远程Linux主机 + + + Public key error: %1 + 公钥错误: %1 + + + Packaging finished successfully. + 打包顺利完成。 + + + Packaging failed. + 打包失败。 + + + Creating tarball... + 创建tarball... + + + Tarball up to date, skipping packaging. + 归档文件已经是最新, 跳过打包。 + + + Error: tar file %1 cannot be opened (%2). + 错误: tar 文件%1 无法被打开(%2)。 + + + Create tarball + 创建tarball + + + No tarball creation step found. + 没有找到生成tarball所需的步骤。 + + + Deploy tarball via SFTP upload + 通过SFTP上传来部署tarball + + + Authentication type: + 验证类型: + + + &Host name: + 主机名称(&H): + + + IP or host name of the device + 设备的IP或者主机名称 + + + &SSH port: + SSH端口(&S): + + + Free ports: + 空闲端口: + + + Timeout: + 超时时间: + + + s + + + + &Username: + 用户名(&U): + + + Private key file: + 私钥文件: + + + Create New... + 创建新密钥... + + + Machine type: + 机器类型: + + + Physical Device + 物理设备 + + + Emulator + 模拟器 + + + You will need at least one port. + 您需要至少一个端口。 + + + WizardPage + 向导页面 + + + The name to identify this configuration: + 标识配置的名称: + + + The device's host name or IP address: + 设备的域名或者IP地址: + + + Deploy Public Key... + 部署公钥... + + + Remote process failed: %1 + 远端进程失败:%1 + + + Starting remote command "%1"... + + + + Failed to start "stat": %1 + + + + "stat" crashed. + + + + "stat" failed with exit code %1: %2 + + + + Failed to retrieve remote timestamp for file "%1". Incremental deployment will not work. Error message was: %2 + + + + Unexpected stat output for remote file "%1": %2 + + + + No files need to be uploaded. + - The remote file system has only %n megabytes of free space, but %1 megabytes are required. - - 远程文件系统仅有 %n 兆字节的剩余空间,但需要 %1兆字节。 - - - - The remote file system has %n megabytes of free space, going ahead. - - 远程文件系统有 %n 兆字节的剩余空间,正在继续。 + %n file(s) need to be uploaded. + + - Cannot check for free disk space: '%1' is not an absolute path. - 无法检查剩余磁盘空间: '%1'不是一个绝对路径。 + Local file "%1" does not exist. + - - - RemoteLinux - MB - MB + Remote chmod failed for file "%1": %2 + - - - RemoteLinux - Check for free disk space - 检测剩余的磁盘空间 + Ignore missing files + - - - RemoteLinux - Checking available ports... + Specific &key + + + + &Check host key + + + + You can enter lists and ranges like this: '1024,1026-1028,1030'. + + + + Leave empty to look up executable in $PATH + + + + GDB server executable: + + + + New Remote Linux Device Configuration Setup + + + + Connection + + + + The device's SSH port number: + + + + The username to log into the device: + + + + Summary + 汇总 + + + We recommend that you log into your device using public key authentication. +If your device is already set up for this, you do not have to do anything here. +Otherwise, please deploy the public key for the private key with which to connect in the future. +If you do not have a private key yet, you can also create one here. + + + + Choose a Private Key File + + + + Create New Key Pair + + + + Trying to kill "%1" on remote device... + + + + Remote application killed. + + + + Failed to kill remote application. Assuming it was not running. + + + + Kill current application instance + + + + Cannot establish SSH connection: ssh binary "%1" does not exist. + + + + Cannot establish SSH connection: Failed to create temporary directory for control socket: %1 + + + + Cannot establish SSH connection. +Control process failed to start. + + + + SSH connection failure. + + + + SSH connection failure: + + + + Remote Linux + + + + Remote Linux Device + + + + Error starting remote shell. + + + + Error running remote shell. + + + + Error running remote shell: %1 + + + + Open Remote Shell + + + + "%1" failed to start: %2 + + + + "%1" crashed. + + + + "sftp" binary "%1" does not exist. + + + + Failed to create local directory "%1". + + + + Sending echo to device... + + + + echo failed: %1 + + + + echo failed. + + + + Device replied to echo with unexpected contents. + + + + Device replied to echo with expected contents. + + + + Checking kernel version... + + + + uname failed: %1 + uname失败%1 + {1?} + + + uname failed. + + + + Error gathering ports: %1 + 搜集端口错误: %1 + {1?} + + + The following specified ports are currently in use: %1 + 以下指定端口现正被使用: %1 + {1?} + + + Checking whether "%1" works... + + + + Failed to start "%1": %2 - 正在检查可用的端口... - + - Debugging failed. - 调试失败。 + "%1" crashed. + + - Initial setup failed: %1 - 初始设置失败:%1 + "%1" failed with exit code %2: %3 + + - Not enough free ports on device for debugging. - 设备上可用于调试的空闲端口不够。 + "%1" is functional. + + + + + SFTP will be used for deployment, because rsync is not available. + + + + + Deployment to this device will not work out of the box. + + + + + Checking if required commands are available... + + + + %1... + + + + %1 found. + + + + An error occurred while checking for %1. + + + + %1 not found. + + + + Command: + 命令: + + + Install root: + + + + Clean install root first: + + + + Full command line: + + + + Custom command line: + + + + Use custom command line instead: + + + + Install into temporary host directory + + + + You must provide an install root. + + + + The install root "%1" could not be cleaned. + + + + The install root "%1" could not be created. + + + + The "make install" step should probably not be last in the list of deploy steps. Consider moving it up. + + + + You need to add an install statement to your CMakeLists.txt file for deployment to work. + + + + Key deployment failed. + + + + Remote executable: + + + + Local executable: + 本地执行档: + + + Custom Executable + 自定义执行档 + + + Run "%1" + + + + The remote executable must be set in order to run a custom remote run configuration. + + + + Cannot Open Terminal + + + + Cannot open remote terminal: Current kit has no device. + + + + Error: No device + + + + Error: %1 + 错误: %1 + {1?} + + + Process exited with code %1. + + + + Error running 'env': %1 + + + + Remote stderr was: "%1" + + + + Remote path not set + + + + Exit code is %1. stderr: + + + + Deploy via rsync: failed to create remote directories: + + + + rsync failed to start: %1 + + + + rsync crashed. + + + + rsync failed with exit code %1. + + + + Flags: + + + + Ignore missing files: + + + + rsync is only supported for transfers between different devices. + + + + Deploy files via rsync + + + + SSH Key Configuration + SSH密钥配置 + + + &RSA + &RSA + + + ECDSA + + + + &Generate And Save Key Pair + 创建并保存密钥文件对(&G) + + + Options + 选项 + + + Key algorithm: + 密钥算法: + + + Key &size: + 密钥长度(&S): + + + Public key file: + 公钥文件: + + + The ssh-keygen tool was not found. + + + + Refusing to overwrite existing private key file "%1". + + + + The ssh-keygen tool at "%1" failed: %2 + + + + Choose Private Key File Name + 选择私钥文件名 + + + Key Generation Failed + 密钥创建失败 + + + Package modified files only + + + + No remote path specified for file "%1", skipping. + + + + Error writing tar file "%1": %2. + + + + Cannot add file "%1" to tar-archive: path too long. + + + + Error writing tar file "%1": %2 + + + + Error reading file "%1": %2. + + + + Adding file "%1" to tarball... + + + + X11 Forwarding: + + + + Forward to local display + + + + + RemoteLinux::GenericTransferImpl + + Creating directory: %1 + + + + Failed. + 失败. + + + Copying %1/%2: %3 -> %4 + + + + + ResetEdit3DColorsAction + + Reset Colors + + + + Reset the background color and the color of the grid lines of the 3D Editor to the default valus. + + + + + ResetView + + Reset View + ResourceEditor + + &Undo + 撤销(&U) + + + &Redo + 重做(&R) + + + Rename File... + 重命名文件... + + + Copy Resource Path to Clipboard + 复制资源路径到剪贴板 + Add Files 添加文件 @@ -47318,9 +42696,6 @@ cannot be found in the path. Could not copy the file to %1. 无法复制文件到 %1 。 - - - ResourceEditor The file name is empty. 文件名为空。 @@ -47333,13 +42708,6 @@ cannot be found in the path. The <RCC> root element is missing. <RCC> 根元素缺失。 - - Cannot write file. Disk full? - 无法写入文件,磁盘已满? - - - - ResourceEditor Open File 打开文件 @@ -47348,12 +42716,3538 @@ cannot be found in the path. All files (*) 所有文件 (*) + + Remove + 删除 + + + Remove Missing Files + + + + Alias: + 别名: + + + Prefix: + + + + Language: + 语言: + + + Properties + 属性 + + + Cannot save file. + + + + Recheck Existence of Referenced Files + + + + Add Prefix... + 添加前缀... + + + Change Prefix... + 改变前缀... + + + Remove Prefix... + + + + Rename... + 重命名... + + + Remove File... + 删除文件... + + + Open in Editor + + + + Open With + 用...打开 + + + Copy Path + + + + Copy Path "%1" + + + + Copy URL + + + + Copy URL "%1" + + + + Remove Prefix + + + + Remove prefix %1 and all its files? + + + + File Removal Failed + + + + Removing file %1 from the project failed. + + + + Rename Prefix + + + + Sort Alphabetically + 按字母排序 + - TextEditor::Internal::CountingLabel + ResourceTopLevelNode - %1 found - 找到了 %1 个 + %1 Prefix: %2 + + + + + RotateToolAction + + Activate Rotate Tool + + + + + RunConfigSelector + + Run Without Deployment + 忽略部署直接运行 + + + + ScaleToolAction + + Activate Scale Tool + + + + + ScxmlEditor + + Basic Colors + + + + Last used colors + + + + Create New Color Theme + + + + Theme ID + + + + Cannot Create Theme + + + + Theme %1 is already available. + + + + Remove Color Theme + + + + Are you sure you want to delete color theme %1? + + + + Modify Color Themes... + + + + Modify Color Theme + + + + Select Color Theme + + + + Factory Default + + + + Colors from SCXML Document + + + + Pick Color + + + + Automatic Color + + + + More Colors... + + + + SCXML Generation Failed + + + + Loading document... + + + + State Color + + + + Font Color + + + + Align Left + + + + Adjust Width + + + + Alignment + 对齐方式 + + + Adjustment + + + + Images (%1) + + + + Untitled + 未命名 + + + Export Canvas to Image + + + + Export Failed + + + + Could not export to image. + + + + Save Screenshot + + + + Saving Failed + + + + Could not save the screenshot. + + + + Navigator + 导航 + + + Search + 查找 + + + Type + 类型 + + + Name + + + + Attributes + 属性 + + + Content + 内容 + + + Tag + + + + Count + + + + yyyy/MM/dd hh:mm:ss + + + + File + 文件 + + + Time + + + + Max. levels + + + + Document Statistics + + + + Common states + + + + Metadata + + + + Other tags + + + + Unknown tags + + + + Remove items + + + + Structure + + + + Expand All + 展开全部 + + + Collapse All + 折叠全部 + + + Add child + + + + Change parent + + + + Errors(%1) / Warnings(%2) / Info(%3) + + + + Export to File + + + + CSV files (*.csv) + + + + Cannot open file %1. + 打开文件 %1. 失败 + + + Severity + + + + Reason + + + + Description + 说明 + + + Error + 错误 + + + Warning + 警告 + + + Info + 信息 + + + Unknown + 未知 + + + Severity: %1 +Type: %2 +Reason: %3 +Description: %4 + + + + Zoom In + 放大 + + + Zoom In (Ctrl + + / Ctrl + Wheel) + + + + Zoom Out + 缩小 + + + Zoom Out (Ctrl + - / Ctrl + Wheel) + + + + Fit to View + + + + Fit to View (F11) + + + + Panning + + + + Panning (Shift) + + + + Magnifier + + + + Magnifier Tool + + + + Navigator (Ctrl+E) + + + + Copy + 复制 + + + Copy (Ctrl + C) + + + + Cut + 剪切 + + + Cut (Ctrl + X) + + + + Paste + 粘贴 + + + Paste (Ctrl + V) + + + + Screenshot + + + + Screenshot (Ctrl + Shift + C) + + + + Export to Image + + + + Toggle Full Namespace + + + + Align Left (Ctrl+L,1) + + + + Align Right + + + + Align Right (Ctrl+L,2) + + + + Align Top + + + + Align Top (Ctrl+L,3) + + + + Align Bottom + + + + Align Bottom (Ctrl+L,4) + + + + Align Horizontal + + + + Align Horizontal (Ctrl+L,5) + + + + Align Vertical + + + + Align Vertical (Ctrl+L,6) + + + + Adjust Width (Ctrl+L,7) + + + + Adjust Height + + + + Adjust Height (Ctrl+L,8) + + + + Adjust Size + + + + Adjust Size (Ctrl+L,9) + + + + Show Statistics... + + + + Show Statistics + + + + Add new state + + + + Move State + + + + Align states + + + + Adjust states + + + + Re-layout + + + + State + 状态 + + + Each state must have a unique ID. + + + + Missing ID. + + + + Duplicate ID (%1). + + + + Initial + + + + One level can contain only one initial state. + + + + Too many initial states at the same level. + + + + H + + + + Value + + + + - name - + + + + - value - + + + + Common States + + + + Final + + + + Parallel + + + + History + + + + Unexpected element. + + + + Not well formed. + + + + Premature end of document. + + + + Custom error. + + + + Error in reading XML. +Type: %1 (%2) +Description: %3 + +Row: %4, Column: %5 +%6 + + + + Current tag is not selected. + + + + Pasted data is empty. + + + + Paste items + + + + Cannot save XML to the file %1. + + + + Add Tag + + + + Remove Tag + + + + Error in reading XML + + + + New Tag + + + + Item + + + + Remove + 删除 + + + Created editor-instance. + + + + Editor-instance is not of the type ISCEditor. + + + + Set as Initial + + + + Zoom to State + + + + Re-Layout + + + + Change initial state + + + + Draw some transitions to state. + + + + No input connection. + + + + No input or output connections (%1). + + + + Draw some transitions to or from state. + + + + No output connections (%1). + + + + Draw some transitions from state. + + + + No input connections (%1). + + + + Remove Point + + + + Transition + + + + Transitions should be connected. + + + + Not connected (%1). + + + + Undo (Ctrl + Z) + + + + Redo (Ctrl + Y) + + + + This file can only be edited in <b>Design</b> mode. + 此文件仅可在<b>设计</b>模式中编辑。 + + + Switch Mode + + + + + SelectBackgroundColorAction + + Select Background Color + + + + Select a color for the background of the 3D Editor. + + + + + SelectGridColorAction + + Select Grid Color + + + + Select a color for the grid lines of the 3D Editor. + + + + + SelectionModeToggleAction + + Toggle Group/Single Selection Mode + + + + + SerialTerminal::Internal::SerialControl + + Unable to open port %1: %2. + + + + Session resumed. + + + + Starting new session on %1... + + + + Session finished on %1. + + + + Session paused... + + + + No Port + + + + Serial port error: %1 (%2) + + + + + SerialTerminal::Internal::SerialOutputPane + + Close Tab + 关闭标签 + + + Close All Tabs + 关闭所有标签 + + + Close Other Tabs + 关闭其他标签 + + + Type text and hit Enter to send. + + + + Serial Terminal Window + + + + Connect + + + + Disconnect + + + + Reset Board + + + + Add New Terminal + + + + + SerialTerminal::Internal::SerialTerminalOutputPane + + Serial Terminal + + + + + ShowCameraFrustumAction + + Always Show Camera Frustums + + + + Toggle between always showing the camera frustum visualization and only showing it when the camera is selected. + + + + + ShowGridAction + + Show Grid + + + + Toggle the visibility of the helper grid. + + + + + ShowIconGizmoAction + + Show Icon Gizmos + + + + Toggle the visibility of icon gizmos, such as light and camera icons. + + + + + ShowParticleEmitterAction + + Always Show Particle Emitters And Attractors + + + + Toggle between always showing the particle emitter and attractor visualizations and only showing them when the emitter or attractor is selected. + + + + + ShowSelectionBoxAction + + Show Selection Boxes + + + + Toggle the visibility of selection boxes. + + + + + SilverSearcher::FindInFilesSilverSearcher + + Search Options (optional) + + + + Silver Searcher is not available on the system. + + + + + SliderSpecifics + + Value + + + + Current value of the Slider. The default value is 0.0. + + + + Maximum value + + + + Maximum value of the slider. The default value is 1.0. + + + + Minimum value + + + + Minimum value of the slider. The default value is 0.0. + + + + Orientation + 方向 + + + Layout orientation of the slider. + + + + Step size + + + + Indicates the slider step size. + + + + Active focus on press + 点击后设置焦点 + + + Indicates whether the slider should receive active focus when pressed. + + + + Tick marks enabled + + + + Indicates whether the slider should display tick marks at step intervals. + + + + Update value while dragging + + + + Determines whether the current value should be updated while the user is moving the slider handle, or only when the button has been released. + + + + + Snippet + + Expected delimiter after mangler ID. + + + + Expected mangler ID "l" (lowercase), "u" (uppercase), or "c" (titlecase) after colon. + + + + Missing closing variable delimiter for: + + + + + SourceToolAction + + Change Source URL... + + + + + SplitViewSpecifics + + Split View + + + + Orientation + 方向 + + + Orientation of the split view. + + + + + Squish + + Details + 详情 + + + Adjust references to the removed symbolic name to point to: + + + + Remove the symbolic name (invalidates names referencing it) + + + + Remove the symbolic name and all names referencing it + + + + Failed to write "%1" + + + + Incomplete Squish settings. Missing Squish installation path. + + + + objectmaptool not found. + + + + Failure while parsing objects.map content. + + + + Squish Object Map Editor + + + + New + 新建 + + + Remove + 删除 + + + Jump to Symbolic Name + + + + Symbolic Names + + + + Cut + 剪切 + + + Copy + 复制 + + + Paste + 粘贴 + + + Delete + 删除 + + + Copy Real Name + + + + Properties: + + + + The properties of the Multi Property Name associated with the selected Symbolic Name. (use \\ for a literal \ in the value) + + + + The Hierarchical Name associated with the selected Symbolic Name. + + + + Remove Symbolic Name + + + + Do you really want to remove "%1"? + + + + Ambiguous Property Name + + + + Ambiguous Symbolic Name + + + + %1 "%2" already exists. Specify a unique name. + + + + Property + 属性 + + + Symbolic Name + + + + CopyOf + + + + Open Squish Test Suites + + + + Select All + 全选 + + + Deselect All + + + + Base directory: + + + + Test suites: + + + + Name + + + + Operator + 运算符 + + + Value + + + + Application: + + + + <No Application> + + + + Arguments: + 参数: + + + Recording Settings + + + + Suite Already Open + + + + A test suite with the name "%1" is already open. +Close the opened test suite and replace it with the new one? + + + + Test Suite Path Not Accessible + + + + The path "%1" does not exist or is not accessible. +Refusing to run test case "%2". + + + + The path "%1" does not exist or is not accessible. +Refusing to run test cases. + + + + No Test Cases Defined + + + + Test suite "%1" does not contain any test cases. + + + + The path "%1" does not exist or is not accessible. +Refusing to record test case "%2". + + + + Select Global Script Folder + + + + Error + 错误 + + + Failed to open objects.map file at "%1". + + + + Squish + + + + Run This Test Case + + + + Delete Test Case + + + + Run This Test Suite + + + + Add New Test Case... + + + + Close Test Suite + + + + Delete Test Suite + + + + Delete Shared File + + + + Add Shared File + + + + Remove Shared Folder + + + + Open Squish Suites... + + + + Create New Test Suite... + + + + Close All Test Suites + + + + Close all test suites? + + + + Add Shared Folder... + + + + Remove All Shared Folders + + + + Test Suites + + + + Remove "%1" from the list of shared folders? + + + + Remove all shared folders? + + + + Record Test Case + + + + Do you want to record over the test case "%1"? The existing content will be overwritten by the recorded script. + + + + Set up a valid Squish path to be able to create a new test case. +(Edit > Preferences > Squish) + + + + Test Results + 测试结果 + + + Runner/Server Log + + + + <b>Test summary:</b>&nbsp;&nbsp; %1 passes, %2 fails, %3 fatals, %4 errors, %5 warnings. + + + + Expand All + 展开全部 + + + Collapse All + 折叠全部 + + + Filter Test Results + + + + Pass + 通过 + + + Fail + + + + Expected Fail + + + + Unexpected Pass + + + + Warning Messages + + + + Log Messages + + + + Check All Filters + + + + Control Bar + + + + Stop Recording + + + + Ends the recording session, saving all commands to the script file. + + + + Interrupt + 中断 + + + Step Into + 单步进入 + + + Step Over + 单步跳过 + + + Step Out + 单步跳出 + + + Type + 类型 + + + Squish Locals + + + + Continue + 继续 + + + &Squish + + + + &Server Settings... + + + + Result + 结果 + + + Message + 消息 + + + Time + + + + Squish path: + + + + Path to Squish installation + + + + Path does not contain server executable at its default location. + + + + License path: + + + + Local Server + + + + Server host: + + + + Server Port + + + + Verbose log + + + + Minimize IDE + + + + Minimize IDE automatically while running or recording test cases. + + + + General + 概要 + + + Maximum startup time: + + + + Specifies how many seconds Squish should wait for a reply from the AUT directly after starting it. + + + + Maximum response time: + + + + Specifies how many seconds Squish should wait for a reply from the hooked up AUT before raising a timeout error. + + + + Maximum post-mortem wait time: + + + + Specifies how many seconds Squish should wait after the the first AUT process has exited. + + + + Animate mouse cursor: + + + + Name: + 名称: + + + Host: + 主机: + + + Port: + 端口: + + + Add Attachable AUT + + + + Add + 添加 + + + Edit + 编辑 + + + Mapped AUTs + + + + AUT Paths + + + + Attachable AUTs + + + + Select Application to test + + + + Select Application Path + + + + Squish Server Settings + + + + Failed to write configuration changes. +Squish server finished with process error %1. + + + + Run Test Suite + + + + Object Map + + + + Run Test Case + + + + Shared Folders + + + + %1 (none) + + + + Squish Tools in unexpected state (%1). +Refusing to run a test case. + + + + Could not create test results folder. Canceling test run. + + + + Squish Tools in unexpected state (%1). +Refusing to execute server query. + + + + Squish Tools in unexpected state (%1). +Refusing to record a test case. + + + + Squish Tools in unexpected state (%1). +Refusing to write configuration changes. + + + + Squish Server Error + + + + "%1" could not be found or is not executable. +Check the settings. + + + + Recording test case + + + + Could not get Squish license from server. + + + + Test run finished. + + + + Test record finished. + + + + Squish could not find the AUT "%1" to start. Make sure it has been added as a Mapped AUT in the squishserver settings. +(Tools > Squish > Server Settings...) + + + + User stop initiated. + + + + Squish Server Already Running + + + + There is still an old Squish server instance running. +This will cause problems later on. + +If you continue, the old instance will be terminated. +Do you want to continue? + + + + Unexpected state or request while starting Squish server. (state: %1, request: %2) + + + + No Squish Server + + + + Squish server does not seem to be running. +(state: %1, request: %2) +Try again. + + + + No Squish Server Port + + + + Failed to get the server port. +(state: %1, request: %2) +Try again. + + + + Squish Runner Running + + + + Squish runner seems to be running already. +(state: %1, request: %2) +Wait until it has finished and try again. + + + + Squish Runner Error + + + + Squish runner failed to start within given timeframe. + + + + Create New Squish Test Suite + + + + Available GUI toolkits: + + + + Invalid Squish settings. Configure Squish installation path inside Preferences... > Squish > General to use this wizard. + + + + Available languages: + + + + <None> + <无> + + + Key is not an object. + + + + Key 'mode' is not set. + + + + Unsupported mode: + + + + Could not merge results into single results.xml. +Destination file "%1" already exists. + + + + Could not merge results into single results.xml. +Failed to open file "%1" + + + + Error while parsing first test result. + + + + + Squish::Internal::DeleteSymbolicNameDialog + + The Symbolic Name <span style='white-space: nowrap'>"%1"</span> you want to remove is used in Multi Property Names. Select the action to apply to references in these Multi Property Names. + + + + + StandardTextGroupBox + + + <上下文注释> + + + + StringUtils + + Elapsed time: %1. + + + + + StudioWelcome::Internal::ProjectModel + + Created with Qt Design Studio version: %1 + + + + Resolution: %1x%2 + + + + Created: %1 + + + + Last Edited: %1 + + + + + StudioWelcome::Internal::StudioSettingsPage + + Build + 构建 + + + Debug + + + + Analyze + 分析 + + + Hide top-level menus with advanced functionality to simplify the UI. <b>Build</b> is generally not required in the context of Qt Design Studio. <b>Debug</b> and <b>Analyze</b> are only required for debugging and profiling. + + + + Hide Menu + + + + Examples + 示例 + + + Examples path: + + + + Reset Path + + + + The menu visibility change will take effect after restart. + + + + + StudioWelcome::Internal::StudioWelcomeSettingsPage + + Qt Design Studio Configuration + + + + + StudioWelcome::Internal::UsageStatisticPluginModel + + The change will take effect after restart. + + + + + StudioWelcome::Internal::WelcomeMode + + Welcome + 欢迎 + + + + StudioWelcome::PresetModel + + Recents + + + + Custom + + + + + StudioWelcome::QdsNewDialog + + New Project + + + + Failed to initialize data. + + + + Choose Directory + 选择目录 + + + Save Preset + + + + A preset with this name already exists. + + + + + SubComponentManager::parseDirectory + + Invalid meta info + + + + + Subversion::Internal::SubversionEditorWidget + + Annotate revision "%1" + 注释修订版本 "%1" + + + + Subversion::Internal::SubversionLogConfig + + Verbose + 详细 + + + Show files changed in each revision + 显示每个修订版本改变的文件 + + + + Subversion::Internal::SubversionPlugin + + &Subversion + &Subversion + + + Add + 添加 + + + Add "%1" + 添加"%1" + + + Alt+S,Alt+A + Alt+S,Alt+A + + + Diff Project + Diff 项目 + + + Diff Project "%1" + Diff 项目 "%1" + + + Diff Current File + Diff 当前文件 + + + Diff "%1" + Diff "%1" + + + Alt+S,Alt+D + Alt+S,Alt+D + + + Commit All Files + 提交所有文件 + + + Commit Current File + 提交当前文件 + + + Commit "%1" + 提交 "%1" + + + Alt+S,Alt+C + Alt+S,Alt+C + + + Filelog Current File + Filelog当前文件 + + + Filelog "%1" + Filelog "%1" + + + Annotate Current File + Annotate 当前文件 + + + Annotate "%1" + Annotate "%1" + + + Describe... + 说明... + + + Project Status + 项目状态 + + + Meta+S,Meta+D + Meta+S,Meta+D + + + Meta+S,Meta+A + Meta+S,Meta+A + + + Meta+S,Meta+C + Meta+S,Meta+C + + + Delete... + 删除... + + + Delete "%1"... + 删除 "%1"... + + + Revert... + 还原... + + + Revert "%1"... + 还原 "%1"... + + + Status of Project "%1" + 项目 "%1" 的状态 + + + Log Project + Log 项目 + + + Log Project "%1" + Log 项目 "%1" + + + Update Project + 更新项目 + + + Update Project "%1" + 更新项目 "%1" + + + Revert Repository... + 还原代码仓库... + + + Revert repository + 还原代码仓库 + + + Revert failed: %1 + 还原失败: %1 + + + The file has been changed. Do you want to revert it? + 文件被改变,您想还原它吗? + + + Another commit is currently being executed. + 另一个提交正在被执行。 + + + Commit Project + 提交项目 + + + Commit Project "%1" + 提交项目 "%1" + + + Diff Repository + Diff 代码仓库 + + + Repository Status + 仓库状态 + + + Log Repository + Log 代码仓库 + + + Update Repository + 更新代码仓库 + + + Revert all pending changes to the repository? + 还原所有未完成的更改到仓库? + + + There are no modified files. + 没有被更改的文件。 + + + Describe + 说明 + + + Revision number: + 修订版本编号: + + + Triggers a Subversion version control operation. + + + + No subversion executable specified. + + + + + Subversion::Internal::SubversionSettings + + Subversion Command + Subversion 命令 + + + Subversion command: + Subversion 命令: + + + Username: + 用户名: + + + Password: + 密码: + + + Ignore whitespace changes in annotation + 忽略注释中的空格变化 + + + Log count: + + + + Timeout: + 超时时间: + + + s + + + + Prompt on submit + 提交时弹出提示 + + + Subversion + Subversion + + + Configuration + 配置 + + + Authentication + 验证信息 + + + Miscellaneous + 其他 + + + + Subversion::Internal::SubversionSubmitEditor + + Subversion Submit + Subversion提交 + + + + SymbolSupport + + Find References with %1 for: + + + + Renaming is not supported with %1 + + + + + SyncEdit3DColorAction + + Use Scene Environment Color + + + + Sets the 3D Editor to use the Scene Environment color as background color. + + + + + SyntaxHighlightingCLI + + Command line syntax highlighter using Kate syntax definitions. + + + + source + + + + The source file to highlight. + + + + List all available syntax definitions. + + + + List all available themes. + + + + Download new/updated syntax definitions. + + + + File to write HTML output to (default: stdout). + + + + output + + + + Highlight using this syntax definition (default: auto-detect based on input file). + + + + syntax + + + + Color theme to use for highlighting. + + + + theme + + + + Use the specified format instead of html. Must be html, ansi or ansi256Colors. + + + + format + + + + Add information to debug a syntax file. Only works with --output-format=ansi or ansi256Colors. Possible values are format, region, context and stackSize. + + + + type + + + + Disable ANSI background for the default color. + + + + Set HTML page's title +(default: the filename or "Kate Syntax Highlighter" if reading from stdin). + + + + title + + + + Read file from stdin. The -s option must also be used. + + + + + TabViewSpecifics + + Tab View + + + + Current index + + + + Frame visible + + + + Determines the visibility of the tab frame around contents. + + + + Tabs visible + + + + Determines the visibility of the tab bar. + + + + Tab position + + + + Determines the position of the tabs. + + + + + TabViewToolAction + + Add Tab... + + + + Step into Tab + + + + + TargetSettingsPanelItem + + No kit defined in this project. + 项目中未定义构建套件(Kit)。 + + + Configure Project + 配置项目 + + + + TargetSettingsPanelWidget + + &Configure Project + + + + Kit is unsuited for project + + + + Click to activate + + + + Enable Kit for Project "%1" + + + + Enable Kit for All Projects + + + + Disable Kit for Project "%1" + + + + Cancel Build and Disable Kit in This Project + + + + Do Not Remove + 不要移除 + + + Disable Kit "%1" in This Project? + + + + The kit <b>%1</b> is currently being built. + 构建套件<b>%1</b>正在被构建。 + + + Do you want to cancel the build process and remove the kit anyway? + + + + Disable Kit for All Projects + + + + Copy Steps From Another Kit... + + + + Build + 构建 + + + Run + 运行 + + + Enable Kit + + + + + TaskHub + + Error + 错误 + + + Warning + 警告 + + + Build Issue + + + + + TaskList::Internal::StopMonitoringHandler + + Stop Monitoring + 停止监视 + + + Stop monitoring task files. + 停止监视任务文件。 + + + + TaskList::Internal::TaskListPlugin + + My Tasks + 我的任务 + + + Cannot open task file %1: %2 + 文法打开任务文件%1:%2 + + + File Error + 文件错误 + + + + TemplateMerge + + Merge With Template + + + + &Browse... + 浏览(&B)... + + + Template: + + + + Browse Template + + + + + TextAreaSpecifics + + Color + 颜色 + + + Text Area + + + + Text + 文本 + + + Text shown on the text area. + + + + Read only + 只读 + + + Determines whether the text area is read only. + + + + Document margins + + + + Margins of the text area. + + + + Frame width + + + + Width of the frame. + + + + Contents frame + + + + Determines whether the frame around contents is shown. + + + + Focus Handling + + + + Highlight on focus + + + + Determines whether the text area is highlighted on focus. + + + + Tab changes focus + + + + Determines whether tab changes the focus of the text area. + + + + Focus on press + + + + Determines whether the text area gets focus if pressed. + + + + + TextEditor + + Text Editor + 文本编辑器 + + + Cannot create temporary file "%1": %2. + + + + Failed to format: %1. + + + + Cannot read file "%1": %2. + + + + Cannot call %1 or some other error occurred. Timeout reached while formatting file %2. + + + + Error in text formatting: %1 + + + + Could not format file %1. + + + + File %1 was closed. + + + + File was modified. + + + + + TextEditor::BaseFileFind + + Searching + 搜索中 + + + %n found. + + + + + + %n occurrences replaced. + + + + + + Aborting replace. + + + + + TextEditor::BaseTextEditor + + A highlight definition was not found for this file. Would you like to download additional highlight definition files? + + + + Download Definitions + 下载定义 + + + More than one highlight definition was found for this file. Which one should be used to highlight this file? + + + + Remember My Choice + + + + + TextEditor::BehaviorSettingsPage + + Global + Settings + 全局 + + + Behavior + 行为 + + + + TextEditor::BehaviorSettingsWidget + + Typing + 打字 + + + Enable automatic &indentation + 开启自动缩进(&) + + + Backspace indentation: + 退格缩进: + + + <html><head/><body> +Specifies how backspace interacts with indentation. + +<ul> +<li>None: No interaction at all. Regular plain backspace behavior. +</li> + +<li>Follows Previous Indents: In leading white space it will take the cursor back to the nearest indentation level used in previous lines. +</li> + +<li>Unindents: If the character behind the cursor is a space it behaves as a backtab. +</li> +</ul></body></html> + + <html><head/><body> +指定退格键如何与缩进互动。 + +<ul> +<li>无: 没有任何互动,正常的退格键行为。 +</li> + +<li>跟随上次的缩进: 在行首的空白处,依据之前行的缩进将光标移回最近一个缩进层次。 +</li> + +<li>反缩进: 如果光标之后的字符是空格,则表现为 backtab。 +</li> +</ul></body></html> + + + + None + + + + Follows Previous Indents + 跟随之前的缩进 + + + Unindents + 反缩进 + + + Tab key performs auto-indent: + 制表符(Tab键)提供自动缩进: + + + Never + 从不 + + + Always + 总是 + + + In Leading White Space + 用于行首空白 + + + Cleanup actions which are automatically performed right before the file is saved to disk. + 文件保存到磁盘上之后会自动执行的清理动作。 + + + Cleanups Upon Saving + 保存时清理 + + + Removes trailing whitespace upon saving. + 保存时去除尾部空白。 + + + &Clean whitespace + 清除空白(&C) + + + In entire &document + 用于整个文档(&D) + + + Clean indentation + 清除缩进 + + + &Ensure newline at end of file + 确保文件结尾有新的一行(&E) + + + File Encodings + 文件编码 + + + Default encoding: + 默认编码: + + + Add If Encoding Is UTF-8 + 如果编码是UTF-8则添加 + + + Keep If Already Present + 目前存在了则保留 + + + Always Delete + 总是删除 + + + UTF-8 BOM: + UTF-8 BOM: + + + Mouse and Keyboard + 鼠标和键盘 + + + Enable &mouse navigation + 开启鼠标导航(&M) + + + Enable scroll &wheel zooming + 开启鼠标滚轮缩放(&W) + + + Enable built-in camel case &navigation + 开启内建的驼峰大小写导航(&N) + + + On Mouseover + 在鼠标悬停时 + + + On Shift+Mouseover + 在Shift+鼠标悬停时 + + + Prefer single line comments + + + + Skip clean whitespace for file types: + + + + For the file patterns listed, do not trim trailing whitespace. + + + + List of wildcard-aware file patterns, separated by commas or semicolons. + + + + Always writes a newline character at the end of the file. + + + + Corrects leading whitespace according to tab settings. + + + + Cleans whitespace in entire document instead of only for changed parts. + + + + <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 the text editor 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> + + + + Hide mouse cursor while typing + + + + Enable smart selection changing + + + + Using Select Block Up / Down actions will now provide smarter selections. + + + + Show help tooltips using keyboard shortcut (Alt) + + + + Pressing Alt displays context-sensitive help or type information as tooltips. + + + + Default line endings: + + + + Show help tooltips using the mouse: + + + + Displays context-sensitive help or type information on mouseover. + + + + Displays context-sensitive help or type information on Shift+Mouseover. + + + + Unix (LF) + + + + Windows (CRLF) + + + + + TextEditor::CodeStyleEditor + + Edit preview contents to see how the current settings are applied to custom code snippets. Changes in the preview do not affect the current settings. + 编辑预览内容来查看当前设置如何应用到自定义代码段。在预览中修改并不影响当前设置。 + + + + TextEditor::CodeStyleSelectorWidget + + Copy... + 复制... + + + Remove + 删除 + + + Import... + 导入... + + + Export... + 输出... + + + Current settings: + 当前设置: + + + Copy Code Style + 复制代码风格 + + + Code style name: + 代码风格名称: + + + %1 (Copy) + %1 (复制) + + + Delete Code Style + 删除代码风格 + + + Are you sure you want to delete this code style permanently? + 您确定想永久删除这项代码风格方案吗? + + + Delete + 删除 + + + Import Code Style + 导入代码风格 + + + Code styles (*.xml);;All files (*) + 代码风格(*.xml);;所有文件(*) + + + Cannot import code style from %1 + 无法从%1导入代码风格 + + + Export Code Style + 导出代码风格 + + + %1 [proxy: %2] + %1 [代理: %2] + + + %1 [built-in] + %1 [内置] + + + + TextEditor::DisplaySettingsPage + + Display + 显示 + + + Display line &numbers + 显示行号(&N) + + + Display &folding markers + 显示折叠标记(&F) + + + &Visualize whitespace + 标示空白 + + + Highlight current &line + 高亮显示当前行(&L) + + + Enable text &wrapping + 开启文字折行 + + + Display right &margin at column: + 显示右边分界(&M)在列: + + + Highlight &blocks + 高亮显示段落(&B) + + + Mark &text changes + 标记文本改变(&T) + + + &Animate matching parentheses + 动画显示对应的括号(&A) + + + Auto-fold first &comment + 自动折叠开头的注释(&C) + + + Center &cursor on scroll + 滚动时居中光标(&C) + + + <i>Set <a href="font zoom">font line spacing</a> to 100% to enable text wrapping option.</i> + + + + Tint whole margin area + + + + Use context-specific margin + + + + If available, use a different margin. For example, the ColumnLimit from the ClangFormat plugin. + + + + Highlight search results on the scrollbar + + + + Animate navigation within file + + + + Visualize indent + + + + Display file line ending + + + + Display file encoding + + + + Always open links in another split + + + + &Highlight matching parentheses + + + + Shows tabs and spaces. + + + + Next to editor content + + + + Next to right margin + + + + Aligned at right side + + + + Between lines + + + + Line annotations + + + + Margin + 页面空白 + + + Wrapping + + + + + TextEditor::FindInFiles + + Director&y: + 目录(&Y): + + + Files in File System + 文件系统中的文件 + + + %1 "%2": + + + + Path: %1 +Filter: %2 +Excluding: %3 +%4 + the last arg is filled by BaseFileFind::runNewSearch + + + + Search engine: + + + + Directory to Search + + + + + TextEditor::FontSettingsPageWidget + + Family: + 字型: + + + Size: + 字号: + + + Font + 字体 + + + Antialias + 抗锯齿 + + + Copy... + 复制... + + + Delete + 删除 + + + % + % + + + Zoom: + 缩放: + + + A line spacing value other than 100% disables text wrapping. +A value less than 100% can result in overlapping and misaligned graphics. + + + + Import + 导入 + + + Export + + + + Line spacing: + + + + Color Scheme for Theme "%1" + + + + Copy Color Scheme + 复制配色方案 + + + Color scheme name: + 配色方案名称: + + + %1 (copy) + %1 (复制) + + + Delete Color Scheme + 删除配色方案 + + + Are you sure you want to delete this color scheme permanently? + 您确定想永久删除这项配色方案吗? + + + Import Color Scheme + + + + Color scheme (*.xml);;All files (*) + + + + Export Color Scheme + + + + Color Scheme Changed + 配色方案改变 + + + The color scheme "%1" was modified, do you want to save the changes? + 配色方案 "%1" 被改变,您想保存改变么? + + + Discard + 丢弃 + + + Font && Colors + 字体和颜色 + + + + TextEditor::FunctionHintProposalWidget + + %1 of %2 + %1/%2 + + + + TextEditor::Highlighter + + Highlighter updates: done + + + + Highlighter updates: + + + + Highlighter updates: starting + + + + + TextEditor::Internal::ColorScheme + + Not a color scheme file. + 不是一个配色方案文件. + + + + TextEditor::Internal::ColorSchemeEdit + + Bold + 粗体 + + + Italic + 斜体 + + + Background: + 背景颜色: + + + Foreground: + 前景颜色: + + + Unset + + + + <p align='center'><b>Builtin color schemes need to be <a href="copy">copied</a><br/> before they can be changed</b></p> + + + + Unset foreground. + + + + Unset background. + + + + Relative Foreground + + + + Saturation: + + + + Lightness: + + + + Relative Background + + + + Font + 字体 + + + Underline + + + + Color: + 颜色: + + + No Underline + + + + Single Underline + + + + Wave Underline + + + + Dot Underline + + + + Dash Underline + + + + Dash-Dot Underline + + + + Dash-Dot-Dot Underline + + + + + TextEditor::Internal::CompletionSettingsPage + + Full + 全部 + + + None + + + + First Letter + 仅首字母 + + + &Case-sensitivity: + 大小写敏感(&C): + + + Manually + 手动设置 + + + When Triggered + 当触发时 + + + Always + 总是 + + + Activate completion: + 激活补全: + + + Timeout in ms: + + + + Character threshold: + + + + Autocomplete common &prefix + 自动补全共同前缀(&P) + + + Inserts the common prefix of available completion items. + + + + Automatically split strings + + + + Splits a string into two lines by adding an end quote at the cursor position when you press Enter and a start quote to the next line, before the rest of the string. + +In addition, Shift+Enter inserts an escape character at the cursor position and moves the rest of the string to the next line. + + + + Insert opening or closing brackets + + + + Insert closing quote + + + + Surround text selection with brackets + + + + When typing a matching bracket and there is a text selection, instead of removing the selection, surrounds it with the corresponding characters. + + + + Insert &space after function name + 在函数名后插入空格(&S) + + + Surround text selection with quotes + + + + When typing a matching quote and there is a text selection, instead of removing the selection, surrounds it with the corresponding characters. + + + + Animate automatically inserted text + + + + Show a visual hint when for example a brace or a quote is automatically inserted by the editor. + + + + Highlight automatically inserted text + + + + Skip automatically inserted character when typing + + + + Skip automatically inserted character if re-typed manually after completion or by pressing tab. + + + + Remove automatically inserted text on backspace + + + + Remove the automatically inserted character if the trigger is deleted by backspace after the completion. + + + + Overwrite closing punctuation + + + + Automatically overwrite closing parentheses and quotes. + + + + Enable Doxygen blocks + 打开Doxgen注释块功能 + + + Automatically creates a Doxygen comment upon pressing enter after a '/**', '/*!', '//!' or '///'. + + + + Generate brief description + 生成简略描述 + + + Generates a <i>brief</i> command with an initial description for the corresponding declaration. + + + + Add leading asterisks + 行首添加星号 + + + Adds leading asterisks when continuing C/C++ "/*", Qt "/*!" and Java "/**" style comments on new lines. + + + + Behavior + 行为 + + + &Automatically insert matching characters + + + + Documentation Comments + 文档注释 + + + Completion + 补全 + + + + TextEditor::Internal::FindInCurrentFile + + Current File + 当前文件 + + + File path: %1 +%2 + 文件路径: '%1' +%2 + + + File "%1": + @@ -47373,8 +46267,1825 @@ cannot be found in the path. %1 + + TextEditor::Internal::HighlighterSettingsPage + + Syntax Highlight Definition Files + 语法高亮定义文件 + + + Ignored file patterns: + 被忽略的文件模式: + + + <html><head/><body><p>Highlight definitions are provided by the <a href="https://api.kde.org/frameworks/syntax-highlighting/html/index.html">KSyntaxHighlighting</a> engine.</p></body></html> + + + + Download Definitions + 下载定义 + + + Download missing and update existing syntax definition files. + + + + Reload Definitions + + + + Reload externally modified definition files. + + + + Reset Remembered Definitions + + + + Reset definitions remembered for files that can be associated with more than one highlighter definition. + + + + User Highlight Definition Files + + + + Download finished + + + + Generic Highlighter + 通用高亮器 + + + + TextEditor::Internal::LineNumberFilter + + Line %1 + 行%1 + + + Line in Current Document + 当前文档内的行 + + + Jumps to the given line in the current document. + + + + <line>:<column> + + + + Line %1, Column %2 + + + + Column %1 + + + + + TextEditor::Internal::OutlineFactory + + Outline + 大纲 + + + + TextEditor::Internal::OutlineWidgetStack + + No outline available + 没有可用大纲 + + + Synchronize with Editor + 与编辑器同步 + + + Filter tree + 过滤视图 + + + Sort Alphabetically + 按字母排序 + + + + TextEditor::Internal::Snippets + + + Snippets are text fragments that can be inserted into an editor via the usual completion mechanics using a trigger text. The translated text (trigger variant) is used to disambiguate between snippets with the same trigger. + + + + + TextEditor::Internal::SnippetsCollection + + Cannot create user snippet directory %1 + 无法创建用户片断目录%1 + + + + TextEditor::Internal::SnippetsSettingsPage + + Add + 添加 + + + Remove + 删除 + + + Revert Built-in + 还原到内置(Built-in) + + + Restore Removed Built-ins + 恢复被删除的内置 + + + Reset All + 重置所有 + + + Group: + 组: + + + Error While Saving Snippet Collection + 保存片断集时发生错误 + + + Error + 错误 + + + No snippet selected. + 没有选择的片段。 + + + Snippets + 片段 + + + + TextEditor::Internal::SnippetsTableModel + + Error + 错误 + + + Trigger + 触发 + + + Trigger Variant + 触发种类 + + + Error reverting snippet. + 恢复碎片发生错误。 + + + Not a valid trigger. A valid trigger can only contain letters, numbers, or underscores, where the first character is limited to letter or underscore. + + + + + TextEditor::Internal::TextEditorActionHandler + + &Undo + 撤销(&U) + + + &Redo + + + + Delete &Line + 删除行(&L) + + + Delete Line from Cursor On + + + + Delete Word from Cursor On + 从光标处删除文字 + + + Delete Word Camel Case from Cursor On + 从光标处删除驼峰式文字 + + + Delete Line up to Cursor + + + + Ctrl+Backspace + + + + Delete Word up to Cursor + 从光标上方处删除文字 + + + Delete Word Camel Case up to Cursor + 从光标上方处删除驼峰式文字 + + + Go to Block Start with Selection + 选中到段落开头 + + + Ctrl+{ + Ctrl+{ + + + Go to Block End with Selection + 选中到段落末尾 + + + Ctrl+} + Ctrl+} + + + Move Line Up + 上移一行 + + + Ctrl+Shift+Up + Ctrl+Shift+Up + + + Move Line Down + 下移一行 + + + Ctrl+Shift+Down + Ctrl+Shift+Down + + + Copy Line Up + 向上复制本行 + + + Ctrl+Alt+Up + Ctrl+Alt+Up + + + Copy Line Down + 向下复制本行 + + + Ctrl+Alt+Down + Ctrl+Alt+Down + + + Join Lines + 合并行 + + + Ctrl+J + Ctrl+J + + + Insert Line Above Current Line + 在当前行之前插入行 + + + Ctrl+Shift+Return + Ctrl+Shift+Return + + + Insert Line Below Current Line + 在当前行之后插入行 + + + Ctrl+Return + Ctrl+Return + + + Toggle UTF-8 BOM + + + + Indent + 缩进 + + + Unindent + 不缩进 + + + Follow Symbol Under Cursor + 跟踪光标位置的符号 + + + Follow Symbol Under Cursor in Next Split + + + + Meta+E, F2 + + + + Ctrl+E, F2 + + + + Find References to Symbol Under Cursor + + + + Ctrl+Shift+U + Ctrl+Shift+U + + + Rename Symbol Under Cursor + 重命名光标所在符号 + + + Ctrl+Shift+R + Ctrl+Shift+R + + + Jump to File Under Cursor + 跳转到光标下的文件 + + + Jump to File Under Cursor in Next Split + + + + Move the View a Page Up and Keep the Cursor Position + + + + Ctrl+PgUp + + + + Move the View a Page Down and Keep the Cursor Position + + + + Ctrl+PgDown + + + + Move the View a Line Up and Keep the Cursor Position + + + + Ctrl+Up + + + + Move the View a Line Down and Keep the Cursor Position + + + + Ctrl+Down + + + + Select Encoding... + 选择编码... + + + Paste from Clipboard History + 从剪贴板历史中粘贴 + + + Ctrl+Shift+V + Ctrl+Shift+V + + + Paste Without Formatting + + + + Ctrl+Alt+Shift+V + + + + Auto-&indent Selection + 选中的文字自动缩进(&i) + + + Ctrl+I + Ctrl+I + + + Auto-&format Selection + + + + Ctrl+; + + + + &Rewrap Paragraph + 段落重新折行(&R) + + + Meta+E, R + Meta+E, R + + + Ctrl+E, R + Ctrl+E, R + + + &Visualize Whitespace + 标示空白(&V) + + + Meta+E, Meta+V + Meta+E, Meta+V + + + Ctrl+E, Ctrl+V + Ctrl+E, Ctrl+V + + + Clean Whitespace + 清除空白 + + + Enable Text &Wrapping + 开启文字折行(&W) + + + Meta+E, Meta+W + Meta+E, Meta+W + + + Ctrl+E, Ctrl+W + Ctrl+E, Ctrl+W + + + Toggle Comment &Selection + 选中区域注释/反注释(&S) + + + Ctrl+/ + Ctrl+/ + + + Cut &Line + 剪切行(&L) + + + Shift+Del + Shift+Del + + + Copy &Line + 复制行(&L) + + + Ctrl+Ins + Ctrl+Ins + + + Copy With Highlighting + + + + Create Cursors at Selected Line Ends + + + + Alt+Shift+I + + + + Add Next Occurrence to Selection + + + + Ctrl+D + + + + &Duplicate Selection + + + + &Duplicate Selection and Comment + + + + Uppercase Selection + 大写选择 + + + Meta+Shift+U + Meta+Shift+U + + + Alt+Shift+U + Alt+Shift+U + + + Lowercase Selection + 小写选择 + + + Meta+U + Meta+U + + + Alt+U + Alt+U + + + &Sort Selected Lines + + + + Meta+Shift+S + + + + Alt+Shift+S + + + + Fold + 折叠 + + + Ctrl+< + Ctrl+< + + + Unfold + 展开 + + + Ctrl+> + Ctrl+> + + + Toggle &Fold All + 选择 折叠/展开所有(&F) + + + Increase Font Size + 增大字号 + + + Ctrl++ + Ctrl++ + + + Decrease Font Size + 减小字号 + + + Ctrl+- + Ctrl+- + + + Reset Font Size + 重置字号 + + + Meta+0 + Meta+0 + + + Ctrl+0 + Ctrl+0 + + + Go to Block Start + 移到段落开头 + + + Ctrl+[ + Ctrl+[ + + + Go to Block End + 移到段落结尾 + + + Ctrl+] + Ctrl+] + + + Select Block Up + 选择段落上移 + + + Ctrl+U + Ctrl+U + + + Select Block Down + 选择的段落下移 + + + Ctrl+Shift+Alt+U + + + + Select Word Under Cursor + + + + Go to Document Start + + + + Go to Document End + + + + Go to Line Start + 移到行首 + + + Go to Line End + 移到行尾 + + + Go to Next Line + 移到下一行 + + + Go to Previous Line + 移到前一行 + + + Go to Previous Character + 移到上一字符 + + + Go to Next Character + 移到下一字符 + + + Go to Previous Word + 移到上一单词 + + + Go to Next Word + 移到下一单词 + + + Go to Previous Word Camel Case + 移到上一个使用骆驼命名法的单词 + + + Go to Next Word Camel Case + 移到下一个使用骆驼命名法的单词 + + + Go to Line Start with Selection + 选中到行首 + + + Go to Line End with Selection + 选中到行尾 + + + Go to Next Line with Selection + 选中到下一行 + + + Go to Previous Line with Selection + 选中到上一行 + + + Go to Previous Character with Selection + 选中到上一字符 + + + Go to Next Character with Selection + 选中到下一字符 + + + Go to Previous Word with Selection + 选中到上一单词 + + + Go to Next Word with Selection + 选中到下一单词 + + + Go to Previous Word Camel Case with Selection + 选中到上一个使用骆驼命名法的单词 + + + Go to Next Word Camel Case with Selection + 选中到下一个使用骆驼命名法的单词 + + + + TextEditor::Internal::TextEditorPlugin + + Ctrl+Space + Ctrl+Space + + + Meta+Space + Meta+Space + + + Alt+Return + Alt+Return + + + Selected text within the current document. + 当前文档中选中的文本。 + + + Line number of the text cursor position in current document (starts with 1). + 当前文档光标所在位置的行号(以1开始). + + + Column number of the text cursor position in current document (starts with 0). + 当前文档光标所在位置的列号(以0开始). + + + Number of lines visible in current document. + 当前文档的可见行数。 + + + Number of columns visible in current document. + 当前文档的可见列数。 + + + Current document's font size in points. + 当前文档的字体大小(以点为单位)。 + + + Trigger Completion + + + + Display Function Hint + + + + Meta+Shift+D + + + + Ctrl+Shift+D + + + + Trigger Refactoring Action + + + + Show Context Menu + + + + Text + SnippetProvider + 文本 + + + Word under the current document's text cursor. + + + + + TextEditor::SearchEngine + + Internal + + + + + TextEditor::TabSettingsWidget + + Tabs And Indentation + 制表符和缩进 + + + Ta&b size: + 制表符尺寸(&B): + + + &Indent size: + 缩进尺寸(&i): + + + Align continuation lines: + 对齐连续行: + + + <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> +改变连续行的缩进 + +<ul> +<li>不对齐: 不进行对齐。代码行只根据当前逻辑缩进深度进行缩进。 +<pre> +(tab)int i = foo(a, b +(tab)c, d); +</pre> +</li> + +<li>伴随空格: 允许使用空格进行对齐,忽略其他缩进设置。 +<pre> +(tab)int i = foo(a, b +(tab) c, d); +</pre> +</li> + +<li>伴随规则缩进: 在原设置上使用 tab 或 空格进行对齐。 +<pre> +(tab)int i = foo(a, b +(tab)(tab)(tab) c, d); +</pre> +</li> +</ul></body></html> + + + Not At All + 不对齐 + + + With Spaces + 伴随空格 + + + With Regular Indent + 伴随规则缩进 + + + Tab policy: + 缩进策略: + + + Spaces Only + 仅空格 + + + Tabs Only + 仅缩进 + + + Mixed + 混合 + + + <i>Code indentation is configured in <a href="C++">C++</a> and <a href="QtQuick">Qt Quick</a> settings.</i> + + + + The text editor indentation setting is used for non-code files only. See the C++ and Qt Quick coding style settings to configure indentation for code files. + + + + + TextEditor::TextDocument + + Diff Against Current File + + + + Opening File + 打开文件 + + + + TextEditor::TextEditorSettings + + Text + 文本 + + + Link + 链接 + + + Links that follow symbol under cursor. + 跟随光标所在符号的链接。 + + + Selection + 选择 + + + Selected text. + 选中的文本。 + + + Line Number + 行号 + + + Line numbers located on the left side of the editor. + 位于编辑器左侧的行号。 + + + Search Result + 搜索结果 + + + Highlighted search results inside the editor. + 在编辑器中高亮搜索结果。 + + + Search Scope + 搜索范围 + + + Section where the pattern is searched in. + 搜索模式所在的搜索段落范围。 + + + Parentheses + 括号 + + + Displayed when matching parentheses, square brackets or curly brackets are found. + 当匹配到括号、方括号和大括号时显示。 + + + Current Line + 当前行 + + + Line where the cursor is placed in. + 光标所在的行号。 + + + Current Line Number + 当前行号 + + + Line number located on the left side of the editor where the cursor is placed in. + 当前光标所在位置、位于编辑器左侧的行号。 + + + Occurrences + 出现位置 + + + Occurrences of the symbol under the cursor. +(Only the background will be applied.) + 光标处的符号出现的位置。 +(仅应用背景颜色。) + + + Unused Occurrence + 未使用的出现位置 + + + Occurrences of unused variables. + 未用到的变量出现的位置。 + + + Renaming Occurrence + 重命名出现位置 + + + Occurrences of a symbol that will be renamed. + 将要被更名的符号出现的位置。 + + + Number + 数字 + + + Number literal. + 数字。 + + + String + 字符串 + + + Character and string literals. + 字符和字符串。 + + + Type + 类型 + + + Name of a type. + 类型名称。 + + + Local + 局部 + + + Local variables. + 局部变量。 + + + Field + 字段 + + + Class' data members. + 类的数据成员。 + + + Enumeration + 枚举量 + + + Function + 函数 + + + Name of a function. + 函数名。 + + + QML item id within a QML file. + QML文件中的QML项的id。 + + + QML property of a parent item. + 父项的QML属性。 + + + Property of the same QML item. + 同一个QML项的属性。 + + + Location in the files where the difference is (in diff editor). + diff编辑器中显示文件差别所在的位置。 + + + QML Binding + QML 绑定 + + + QML item property, that allows a binding to another property. + 允许绑定到另一个属性的QML项属性。 + + + QML Local Id + QML 局部 ID + + + QML Root Object Property + QML 根对象属性 + + + QML Scope Object Property + QML 范围对象的属性 + + + QML State Name + QML 状态名 + + + Name of a QML state. + QML状态的名称。 + + + QML Type Name + QML类型名 + + + Name of a QML type. + QML类型名。 + + + QML External Id + QML 外部 ID + + + QML id defined in another QML file. + 在另一个QML文件中定义的QML id。 + + + QML External Object Property + QML 外部对象属性 + + + QML property defined in another QML file. + 在另一个QML文件中定义的QML属性。 + + + JavaScript Scope Var + JavaScript 范围变量 + + + Variables defined inside the JavaScript file. + JavaScript文件内定义的变量。 + + + JavaScript Import + JavaScript 导入 + + + Name of a JavaScript import inside a QML file. + QML文件内的JavaScript导入的名称。 + + + JavaScript Global Variable + JavaScript 全局变量 + + + Variables defined outside the script. + 脚本内定义的变量。 + + + Keyword + 关键字 + + + Operator + 运算符 + + + Preprocessor + 预处理器 + + + Preprocessor directives. + 预处理指令。 + + + Label + 标签 + + + Labels for goto statements. + goto语句的标签。 + + + Comment + 注释 + + + All style of comments except Doxygen comments. + 除Doxygen注释之外的所有风格的注释。 + + + Doxygen Comment + Doxgen注释 + + + Doxygen comments. + Doxgen注释。 + + + Doxygen Tag + Doxgen标签 + + + Visual Whitespace + 标示空白 + + + Disabled Code + 禁用的代码 + + + Code disabled by preprocessor directives. + 被预处理指令禁用的代码。 + + + Added Line + 添加的行 + + + Applied to added lines in differences (in diff editor). + 应用于(diff编辑器的)差异中增加的行。 + + + Removed Line + 删除的行 + + + Applied to removed lines in differences (in diff editor). + 应用于(diff编辑器的)差异中删除的行。 + + + Diff File + Diff文件 + + + Compared files (in diff editor). + (diff编辑中)比较的文件。 + + + Diff Location + Diff路径 + + + Generic text and punctuation tokens. +Applied to text that matched no other rule. + + + + Search Result (Alternative 1) + + + + Highlighted search results inside the editor. +Used to mark read accesses to C++ symbols. + + + + Search Result (Alternative 2) + + + + Highlighted search results inside the editor. +Used to mark write accesses to C++ symbols. + + + + Search Result Containing function + + + + Highlighted search results inside the editor. +Used to mark containing function of the symbol usage. + + + + Mismatched Parentheses + + + + Displayed when mismatched parentheses, square brackets, or curly brackets are found. + + + + Auto Complete + + + + Displayed when a character is automatically inserted like brackets or quotes. + + + + Primitive Type + + + + Name of a primitive data type. + + + + Namespace + + + + Name of a namespace. + + + + Parameter + + + + Function or method parameters. + + + + Global + + + + Global variables. + + + + Applied to enumeration items. + + + + Declaration + + + + Style adjustments to declarations. + + + + Function Definition + + + + Name of function at its definition. + + + + Virtual Function + + + + Name of function declared as virtual. + + + + Reserved keywords of the programming language except keywords denoting primitive types. + + + + Punctuation + + + + Punctuation excluding operators. + + + + Non user-defined language operators. +To style user-defined operators, use Overloaded Operator. + + + + Overloaded Operators + + + + Calls and declarations of overloaded (user-defined) operators. + + + + Macro + + + + Macros. + + + + Doxygen tags. + + + + Whitespace. +Will not be applied to whitespace in comments and strings. + + + + Diff File Line + + + + Applied to lines with file information in differences (in side-by-side diff editor). + + + + Diff Context Line + + + + Applied to lines describing hidden context in differences (in side-by-side diff editor). + + + + Diff Source Line + + + + Applied to source lines with changes in differences (in side-by-side diff editor). + + + + Diff Source Character + + + + Applied to removed characters in differences (in side-by-side diff editor). + + + + Diff Destination Line + + + + Applied to destination lines with changes in differences (in side-by-side diff editor). + + + + Diff Destination Character + + + + Applied to added characters in differences (in side-by-side diff editor). + + + + Log Change Line + + + + Applied to lines describing changes in VCS log. + + + + Log Author Name + + + + Applied to author names in VCS log. + + + + Log Commit Date + + + + Applied to commit dates in VCS log. + + + + Log Commit Hash + + + + Applied to commit hashes in VCS log. + + + + Log Decoration + + + + Applied to commit decorations in VCS log. + + + + Log Commit Subject + + + + Applied to commit subjects in VCS log. + + + + Error + 错误 + + + Underline color of error diagnostics. + + + + Error Context + + + + Underline color of the contexts of error diagnostics. + + + + Warning + 警告 + + + Underline color of warning diagnostics. + + + + Warning Context + + + + Underline color of the contexts of warning diagnostics. + + + + Output Argument + + + + Writable arguments of a function call. + + + + Static Member + + + + Names of static fields or member functions. + + + + Code Coverage Added Code + + + + New code that was not checked for tests. + + + + Partially Covered Code + + + + Partial branch/condition coverage. + + + + Uncovered Code + + + + Not covered at all. + + + + Fully Covered Code + + + + Fully covered code. + + + + Manually Validated Code + + + + User added validation. + + + + Code Coverage Dead Code + + + + Unreachable code. + + + + Code Coverage Execution Count Too Low + + + + Minimum count not reached. + + + + Implicitly Not Covered Code + + + + PLACEHOLDER + + + + Implicitly Covered Code + + + + Implicit Manual Coverage Validation + + + + + TextEditor::TextEditorWidget + + Line: 9999, Col: 999 + 行号: %1, 列号: 999 + + + Line: %1, Col: %2 + 行号: %1, 列号: %2 + + + Cursor position: %1 + + + + Other annotations + + + + Print Document + 打印文档 + + + File Error + 文件错误 + + + The text is too large to be displayed (%1 MB). + 文本过大,无法显示(%1 MB)。 + + + <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. + + + + Select Encoding + 选择编码 + + + Snippet Parse Error + + + + Zoom: %1% + + + + Delete UTF-8 BOM on Save + 保存时删除UTF-8 BOM + + + Add UTF-8 BOM on Save + 保存时添加UTF-8 BOM + + + + TextEditor::TextMark + + Show Diagnostic Settings + + + + + TextFieldSpecifics + + Text Field + + + + Text + 文本 + + + Text shown on the text field. + + + + Placeholder text + + + + Placeholder text. + + + + Read only + 只读 + + + Determines whether the text field is read only. + + + + Input mask + 输入掩码 + + + Restricts the valid text in the text field. + + + + Echo mode + 回显模式 + + + Specifies how the text is displayed in the text field. + + + + + TextMark + + Copy to Clipboard + + + + + TextTool + + Text Tool + + + + + TextToolAction + + Edit Text + + + + + TimelineBarItem + + Range from %1 to %2 + + + + Override Color + + + + Reset Color + + + + + TimelineKeyframeItem + + Delete Keyframe + + + + Edit Easing Curve... + + + + Edit Keyframe... + + + Todo + + Keyword + 关键字 + + + Icon + 图标 + + + Color + 颜色 + + + errorLabel + dont need to translate + errorLabel + + + Keyword cannot be empty, contain spaces, colons, slashes or asterisks. + 关键字不能为空,包含空格、冒号、斜杠或者星号。 + + + There is already a keyword with this name. + 已经有一个同名关键字。 + + + Keywords + 关键字 + + + Add + 添加 + + + Edit + 编辑 + + + Remove + 删除 + + + Reset + 重置 + + + Scanning scope + 扫描范围 + Description 说明 @@ -47387,9 +48098,6 @@ cannot be found in the path. Line 行号 - - - Todo To-Do Entries To-Do事项 @@ -47398,16 +48106,2447 @@ cannot be found in the path. To-Do To-Do - - - VcsBase::Internal::UrlTextCursorHandler - Open URL in Browser... - 在浏览器中打开URL... + Scan the whole active project + - Copy URL Location - 复制URL位置 + Scan only the currently edited document + + + + Scan the current subproject + + + + Current Document + 当前文档 + + + Scan only the currently edited document. + + + + Active Project + + + + Scan the whole active project. + + + + Subproject + + + + Scan the current subproject. + + + + Show "%1" entries + + + + <Enter regular expression to exclude> + + + + Regular expressions for file paths to be excluded from scanning. + + + + Excluded Files + + + + + TopicChooser + + Choose a topic for <b>%1</b>: + 为<b>%1</b>选择一个标题: + + + Choose Topic + 选择标题 + + + + Tracing + + Duration + 持续时间 + + + Selection + 选择 + + + Start + 启动 + + + Jump to previous event. + + + + Jump to next event. + + + + Show zoom slider. + + + + Select range. + + + + View event information on mouseover. + + + + Collapse category + + + + Expand category + + + + others + + + + unknown + + + + No data available + + + + Edit note + + + + Close + 关闭 + + + [unknown] + + + + End + + + + Could not open %1 for writing. + + + + Could not open %1 for reading. + + + + Could not re-read events from temporary trace file: %1 +The trace data is lost. + + + + + UpdateInfo + + Qt Maintenance Tool + + + + Start Maintenance Tool + + + + + UpdateInfo::Internal::UpdateInfoPlugin + + Could not determine location of maintenance tool. Please check your installation if you did not enable this plugin manually. + 无法确定维护工具所在位置,请检查安装(有可能没有手动开启插件支持)。 + + + Checking for Updates + + + + New updates are available. Start the update? + + + + Start Update + + + + %1 (%2) + Package name and version + %1 (%2) + + + Available updates: + + + + %1 is available. Check the <a %2>Qt blog</a> for details. + + + + Start Package Manager + + + + Open Settings + + + + No updates found. + + + + The maintenance tool at "%1" is not an executable. Check your installation. + + + + Check for Updates + + + + + UpdateInfo::Internal::UpdateInfoSettingsPage + + Configure Filters + 配置过滤器 + + + Automatic Check for Updates + + + + Automatically runs a scheduled check for updates on a time interval basis. The automatic check for updates will be performed at the scheduled date, or the next startup following it. + + + + Check for new Qt versions + + + + Check interval basis: + + + + Next check date: + + + + Check Now + + + + Last check date: + + + + Not checked yet + + + + Daily + + + + Weekly + + + + Monthly + + + + New updates are available. + + + + No new updates are available. + + + + Checking for updates... + + + + Update + Update + 更新 + + + + Utils::Archive + + File format not supported. + + + + Could not find any unarchiving executable in PATH (%1). + + + + Command failed. + + + + Running %1 +in "%2". + + + Running <cmd> in <workingdirectory> + + + + + Utils::BaseTreeView + + Show %1 Column + + + + + Utils::CheckableMessageBox + + Do not ask again + 下次不再询问 + + + Show Details... + + + + Hide Details... + + + + Do not &ask again + + + + Do not &show again + + + + + Utils::ClassNameValidatingLineEdit + + The class name must not contain namespace delimiters. + 类名不能包含命名空间分隔符。 + + + Please enter a class name. + 请输入类名。 + + + The class name contains invalid characters. + 类名含有无效字符。 + + + + Utils::DebuggerMainWindow + + Start + + + + Stop + 停止 + + + + Utils::DetailsButton + + Details + 详情 + + + + Utils::ElfReader + + odd cpu architecture + 异常的cpu体系架构 + + + unexpected e_shsize + 未预料到的e_shsize + + + unexpected e_shentsize + 未预料到的 e_shentsize + + + announced %n sections, each %1 bytes, exceed file size + + 公布了 %n个部分,每部分%1个字节,超出了文件的大小 + + + + string table seems to be at 0x%1 + 字符串表可能在0x%1 + + + section name %1 of %2 behind end of file + %2的段名 %1在文件末尾之后 + + + "%1" is an invalid ELF object (%2) + + + + "%1" is not an ELF object (file too small) + + + + "%1" is not an ELF object + + + + odd endianness + + + + + Utils::EnvironmentDialog + + Edit Environment + 编辑时的环境变量 + + + Enter one environment variable per line. +To set or change a variable, use VARIABLE=VALUE. +To append to a variable, use VARIABLE+=VALUE. +To prepend to a variable, use VARIABLE=+VALUE. +Existing variables can be referenced in a VALUE with ${OTHER}. +To clear a variable, put its name on a line with nothing else on it. +To disable a variable, prefix the line with "#". + + + + + Utils::EnvironmentIdAccessor + + Settings File for "%1" from a Different Environment? + + + + <p>No settings file created by this instance of %1 was found.</p><p>Did you work with this project on another machine or using a different settings path before?</p><p>Do you still want to load the settings file "%2"?</p> + + + + + Utils::EnvironmentModel + + <VARIABLE> + <变量> + + + + Utils::FancyLineEdit + + Filter + 过滤器 + + + Clear text + 清除文字 + + + + Utils::FancyMainWindow + + Reset to Default Layout + 重置为默认布局 + + + Central Widget + + + + Automatically Hide View Title Bars + + + + + Utils::FileNameValidatingLineEdit + + Name is empty. + 名称为空。 + + + Name contains white space. + 名称包含空白。 + + + File extension %1 is required: + 需要文件扩展 %1 : + + + File extensions %1 are required: + 需要文件扩展 %1 : + + + Invalid character "%1". + + + + Invalid characters "%1". + + + + Name matches MS Windows device (CON, AUX, PRN, NUL, COM1, COM2, ..., COM9, LPT1, LPT2, ..., LPT9) + + + + + Utils::FileSaverBase + + File Error + 文件错误 + + + + Utils::FileSearch + + %1: canceled. %n occurrences found in %2 files. + + %1: 被取消。在 %2 个文件找到了%n 次。 + + + + %1: %n occurrences found in %2 files. + + %1: 在 %2 个文件找到了%n 次。 + + + + Fi&le pattern: + 文件模式(&L): + + + Excl&usion pattern: + + + + List of comma separated wildcard filters. Files with file name or full file path matching any filter are included. + + + + + Utils::FileSystemModel + + My Computer + + + + Computer + + + + Name + + + + Size + + + + Kind + Match OS X Finder + 类型 + + + Type + All other platforms + 类型 + + + Date Modified + + + + + Utils::FileUtils + + Refusing to remove root directory. + 拒绝移除根目录(root)。 + + + Refusing to remove your home directory. + 拒绝移除您的家目录(home)。 + + + Cannot open %1 for reading: %2 + 无法打开%1 来读取: %2 + + + Cannot read %1: %2 + 无法读取%1: %2 + + + File Error + 文件错误 + + + Cannot write file %1. Disk full? + 无法写入文件%1。磁盘已满? + + + Cannot overwrite file %1: %2 + 无法覆盖文件 %1 : %2 + + + Cannot create file %1: %2 + 无法创建文件%1: %2 + + + Cannot create temporary file in %1: %2 + 无法在%1创建临时文件 : %2 + + + Failed to remove directory "%1". + + + + Failed to remove file "%1". + + + + %1 on %2 + File on device + + + + %1 %2 on %3 + File and args on device + + + + Cannot read %1 + + + + Cannot write file %1: %2 + + + + %1: Is a reserved filename on Windows. Cannot save. + + + + Overwrite File? + + + + Overwrite existing file "%1"? + + + + Could not copy file "%1" to "%2". + + + + Failed to create directory "%1". + 创建目录失败:'%1'。 + + + + Utils::FileWizardPage + + Choose the Location + 选择位置 + + + File name: + 文件名: + + + Path: + 路径: + + + Location + + + + The default suffix if you do not explicitly specify a file extension is ".%1". + + + + + Utils::HostOsInfo + + Cannot create OpenGL context. + + + + + Utils::InfoBarDisplay + + &Show Details + + + + Do Not Show Again + + + + Close + 关闭 + + + + Utils::LauncherHandle + + Process launcher socket error. + + + + + Utils::LauncherSocket + + Failed to start process launcher at "%1": %2 + + + + Process launcher closed unexpectedly: %1 + + + + Socket error: %1 + + + + Internal protocol error: invalid packet size %1. + + + + Internal protocol error: invalid packet type %1. + + + + Launcher socket closed unexpectedly. + + + + + Utils::LinearProgressWidget + + ... + ... + + + + Utils::MacroExpander + + Infinite recursion error + + + + %1: Full path including file name. + + + + %1: Full path excluding file name. + + + + %1: Full path including file name, with native path separator (backslash on Windows). + + + + %1: Full path excluding file name, with native path separator (backslash on Windows). + + + + %1: File name without path. + + + + %1: File base name without path and suffix. + + + + Global variables + + + + Access environment variables. + + + + + Utils::MinimizableInfoBars + + Minimize + 最小化 + + + + Utils::NameValueModel + + <UNSET> + <未设定> + + + Variable + 变量 + + + Value + + + + <VARIABLE> + Name when inserting a new variable + <变量> + + + <VALUE> + Value when inserting a new variable + <值> + + + + Utils::NameValuesDialog + + &OK + + + + &Cancel + 取消(&C) + + + + Utils::PathChooser + + Choose... + 选择... + + + Browse... + 浏览... + + + Choose Directory + 选择目录 + + + Choose Executable + 选择执行档 + + + Choose File + 选择文件 + + + The path must not be empty. + 路径不能为空。 + + + Path: + 路径: + + + The path "%1" expanded to an empty string. + + + + The path "%1" does not exist. + + + + The path "%1" is not a directory. + + + + The path "%1" is not a file. + + + + The directory "%1" does not exist. + + + + The path "%1" is not an executable file. + + + + Invalid path "%1". + + + + Cannot execute "%1". + + + + Full path: "%1" + + + + + Utils::PathListEditor + + Insert... + 插入... + + + Delete Line + 删除行 + + + Clear + 清除 + + + + Utils::ProjectIntroPage + + The project already exists. + 项目已经存在。 + + + A file with that name already exists. + 存在同名文件。 + + + Name: + 名称: + + + Create in: + 创建路径: + + + Use as default project location + 设为默认的项目路径 + + + Introduction and Project Location + 项目介绍和位置 + + + Enter project name + + + + Location + + + + Name is empty. + 名称为空。 + + + Project name is invalid. + + + + Invalid character ".". + + + + Invalid character "%1" found. + + + + + Utils::ProxyCredentialsDialog + + Proxy Credentials + + + + The proxy %1 requires a username and password. + + + + Username: + 用户名: + + + Username + + + + Password: + 密码: + + + Password + 密码 + + + + Utils::QtcProcess + + Error in command line. + 命令行发生错误。 + + + Internal socket error: %1 + + + + The program "%1" does not exist or is not executable. + + + + Process Not Responding + + + + The process is not responding. + 进程未响应。 + + + The process "%1" is not responding. + + + + Terminate the process? + + + + The command "%1" finished successfully. + + + + The command "%1" terminated with exit code %2. + + + + The command "%1" terminated abnormally. + + + + The command "%1" could not be started. + + + + The command "%1" did not respond within the timeout limit (%2 s). + + + + Cannot set up communication channel: %1 + 无法建立通信通道: %1 + + + Press <RETURN> to close this window... + 按 <RETURN> 来关闭窗口... + + + Cannot create temporary file: %1 + 无法创建临时文件: %1 + + + Cannot write temporary file. Disk full? + 无法创建临时文件。磁盘已满? + + + Cannot create temporary directory "%1": %2 + + + + Unexpected output from helper program (%1). + 意料外的输出,来自帮助程序 (%1)。 + + + Cannot change to working directory "%1": %2 + + + + Cannot execute "%1": %2 + + + + The process "%1" could not be started: %2 + + + + Quoting error in command. + 命令发生引用(quoting) 错误。 + + + Debugging complex shell commands in a terminal is currently not supported. + 目前不支持在终端中调试复杂的命令。 + + + Quoting error in terminal command. + 终端命令发生引用(quoting)错误。 + + + Terminal command may not be a shell command. + 终端命令可能不是一个shell命令。 + + + Cannot start the terminal emulator "%1", change the setting in the Environment preferences. (%2) + + + + Cannot create socket "%1": %2 + + + + Cannot obtain a handle to the inferior: %1 + 无法获得inferior的句柄: %1 + + + Cannot obtain exit status from inferior: %1 + 无法获得inferior的退出状态: %1 + + + Invalid command + + + + + Utils::RemoveFileDialog + + Remove File + 删除文件 + + + Remove Folder + + + + &Delete file permanently + 彻底删除文件(&D) + + + &Remove from version control + + + + File to remove: + + + + Folder to remove: + + + + + Utils::SettingsAccessor + + Failed to Read File + + + + Could not open "%1". + + + + Failed to Write File + + + + There was nothing to write. + + + + No Valid Settings Found + + + + <p>No valid settings file could be found.</p><p>All settings files found in directory "%1" were unsuitable for the current version of %2, for instance because they were written by an incompatible version of %2, or because a different settings path was used.</p> + + + + <p>No valid settings file could be found.</p><p>All settings files found in directory "%1" were either too new or too old to be read.</p> + + + + Using Old Settings + + + + <p>The versioned backup "%1" of the settings file is used, because the non-versioned file was created by an incompatible version of %2.</p><p>Settings changes made since the last time this version of %2 was used are ignored, and changes made now will <b>not</b> be propagated to the newer version.</p> + + + + Unsupported Merge Settings File + + + + "%1" is not supported by %2. Do you want to try loading it anyway? + + + + + Utils::SettingsSelector + + Add + 添加 + + + Remove + 删除 + + + Rename + 重命名 + + + Do you really want to delete the configuration <b>%1</b>? + 确定要删除此配置<b>%1</b>吗? + + + New name for configuration <b>%1</b>: + 配置的新名称 <b>%1</b>: + + + Rename... + 重命名... + + + + Utils::StringAspect + + Reset + 重置 + + + + Utils::TextFileFormat + + Out of memory. + 内存不足。 + + + An encoding error was encountered. + 发生了一个编码错误。 + + + + Utils::TriStateAspect + + Enable + + + + Disable + 禁用 + + + Leave at Default + + + + + Utils::UnixTools + + <table border=1 cellspacing=0 cellpadding=3><tr><th>Variable</th><th>Expands to</th></tr><tr><td>%d</td><td>directory of current file</td></tr><tr><td>%f</td><td>file name (with full path)</td></tr><tr><td>%n</td><td>file name (without path)</td></tr><tr><td>%%</td><td>%</td></tr></table> + <table border=1 cellspacing=0 cellpadding=3><tr><th>变量</th><th>扩展为</th></tr><tr><td>%d</td><td>当前文件所在目录</td></tr><tr><td>%f</td><td>文件名 (带完整路径)</td></tr><tr><td>%n</td><td>文件名 (不带路径)</td></tr><tr><td>%%</td><td>%</td></tr></table> + + + + Utils::VariableChooser + + Insert Variable + + + + Current Value: %1 + + + + Insert Unexpanded Value + + + + Insert "%1" + + + + Insert Expanded Value + + + + Select a variable to insert. + 选择一个变量来插入。 + + + Variables + 变量 + + + + Utils::fileDeletedPrompt + + &Close + 关闭(&C) + + + Save &as... + 另存为(&A)... + + + &Save + 保存(&S) + + + File Has Been Removed + + + + The file %1 has been removed from disk. Do you want to save it under a different name, or close the editor? + + + + C&lose All + + + + + Utils::reloadPrompt + + File Changed + 文件已改变 + + + The unsaved file <i>%1</i> has been changed on disk. Do you want to reload it and discard your changes? + + + + The file <i>%1</i> has been changed on disk. Do you want to reload it? + + + + The default behavior can be set in %1 > Preferences > Environment > System. + macOS + + + + The default behavior can be set in Edit > Preferences > Environment > System. + + + + &Close + + + + No to All && &Diff + + + + + VCS + + CVS Commit Editor + CVS提交编辑器 + + + CVS Command Log Editor + CVS命令行日志编辑器 + + + CVS File Log Editor + CVS文件日志编辑器 + + + CVS Annotation Editor + CVS注释编辑器 + + + CVS Diff Editor + CVS Diff编辑器 + + + Git Annotation Editor + Git注释编辑器 + + + Git Submit Editor + Git 提交编辑器 + + + Mercurial File Log Editor + Mercurial文件日志编辑器 + + + Mercurial Annotation Editor + Mercurial注释编辑器 + + + Mercurial Diff Editor + Mercurial Diff编辑器 + + + Mercurial Commit Log Editor + Mercurial 提交日志编辑器 + + + Perforce.SubmitEditor + Perforce提交编辑器 + + + Perforce Log Editor + Perforce日志编辑器 + + + Perforce Diff Editor + Perforce Diff 编辑器 + + + Perforce Annotation Editor + Perforce注释编辑器 + + + Subversion Commit Editor + Subversion提交编辑器 + + + Subversion File Log Editor + Subversion文件日志编辑器 + + + Subversion Annotation Editor + Subversion注释编辑器 + + + Bazaar File Log Editor + Bazaar 文件日志编辑器 + + + Bazaar Annotation Editor + Bazaar注释编辑器 + + + Bazaar Diff Editor + Bazaar Diff编辑器 + + + Bazaar Commit Log Editor + Bazaar 提交日志编辑器 + + + ClearCase Check In Editor + ClearCase Check In 编辑器 + + + ClearCase File Log Editor + ClearCase 文件日志编辑器 + + + ClearCase Annotation Editor + ClearCase 注释编辑器 + + + ClearCase Diff Editor + ClearCase Diff 编辑器 + + + Git SVN Log Editor + + + + Git Log Editor + + + + Git Reflog Editor + + + + Git Commit Editor + + + + Git Rebase Editor + + + + + Valgrind + + Function: + 函数: + + + Location: + 位置: + + + Instruction pointer: + 指令指针: + + + Object: + 对象: + + + Could not parse hex number from "%1" (%2) + 无法从"%1" (%2) 解析出十六进制数字 + + + trying to read element text although current position is not start of element + 尝试着读取元素的文本尽管当前的位置不是元素的开头 + + + Unexpected child element while reading element text + 读取文本元素时遇到非预期的子元素 + + + Unexpected token type %1 + 非预期的符号类型 %1 + + + Could not parse protocol version from "%1" + 无法从"%1" 解析协议版本 + + + XmlProtocol version %1 not supported (supported version: 4) + XmlProtocol 版本%1 不被支持(支持版本: 4) + + + Valgrind tool "%1" not supported + Valgrind 工具"%1" 不被支持 + + + Unknown memcheck error kind "%1" + 未知的 memcheck 错误"%1" + + + Unknown helgrind error kind "%1" + 未知的helgrind错误类型"%1" + + + Unknown ptrcheck error kind "%1" + 未知的 ptrcheck 错误类型"%1" + + + Could not parse error kind, tool not yet set. + 无法解析错误类型,工具还未被设置。 + + + Unknown state "%1" + 未知状态"%1" + + + Unexpected exception caught during parsing. + 解析时遇到未知异常。 + + + Description + 说明 + + + Instruction Pointer + 指令指针 + + + Object + 对象 + + + Directory + 目录 + + + File + 文件 + + + Line + 行号 + + + Suppression File: + Suppression 文件: + + + Suppression: + Suppression: + + + Select Suppression File + 选择Suppression 文件 + + + Save Suppression + 保存Suppression + + + Valgrind executable: + Valgrind 执行档: + + + Valgrind Command + Valgrind 命令 + + + Valgrind Suppression Files + Valgrind Suppression 文件 + + + Valgrind Suppression File (*.supp);;All Files (*) + Valgrind Suppression文件 (*.supp);;所有文件 (*) + + + Backtrace frame count: + 回溯(backtrace)帧数: + + + Suppression files: + Suppression 文件: + + + Add... + 添加... + + + Remove + 删除 + + + Track origins of uninitialized memory + 跟踪未初始化的内存的出处 + + + Limits the amount of results the profiler gives you. A lower limit will likely increase performance. + 限制分析器输出结果的数量。较低的限制有可能提高性能。 + + + Result view: Minimum event cost: + 结果视图: 最小事件花费: + + + % + % + + + Show additional information for events in tooltips + 在工具提示中显示事件的额外信息 + + + Enable cache simulation + 开启缓存模拟 + + + Enable branch prediction simulation + 开启分支预测模拟 + + + Collect system call time + 搜集系统调用时间 + + + Collect the number of global bus events that are executed. The event type "Ge" is used for these events. + 搜集执行的全局总线事件的数量.事件类型"Ge"被用于此类事件。 + + + Collect global bus events + 搜集全局总线事件 + + + Visualization: Minimum event cost: + 可视化: 最小事件花费: + + + Profiling + 正在分析 + + + Valgrind Function Profiler + Valgrind 功能分析器 + + + Callers + 调用者 + + + Functions + 函数 + + + Callees + 被调用者 + + + Visualization + 可视化 + + + Reset all event counters. + 重置所有的事件计数器。 + + + Pause event logging. No events are counted which will speed up program execution during profiling. + 暂停事件记录日志。不对事件计数,这将加快程序在分析时的执行速度。 + + + Go back one step in history. This will select the previously selected item. + 在历史中返回一步。这将选中之前选过的项。 + + + Go forward one step in history. + 在历史中向前一步。 + + + Selects which events from the profiling data are shown and visualized. + 选择分析数据时显示哪些事件并且图形化。 + + + Absolute Costs + 绝对花费 + + + Show costs as absolute numbers. + 显示花费的确切数字。 + + + Relative Costs + 相对花费 + + + Show costs relative to total inclusive cost. + 显示相对于总花费的花费。 + + + Relative Costs to Parent + 相对于父级的花费 + + + Cost Format + 花费格式 + + + Enable cycle detection to properly handle recursive or circular function calls. + 启用循环检测来正确处理递归或循环的函数调用。 + + + Show Project Costs Only + 仅显示项目花费 + + + Show only profiling info that originated from this project source. + 仅显示源于本项目代码的分析信息。 + + + Filter... + 过滤器... + + + Profiling aborted. + 分析中断。 + + + Parsing finished, no data. + 分析完成,无数据。 + + + Parsing finished, total cost of %1 reported. + 分析完成,报告总花费%1 。 + + + Parsing failed. + 分析失败。 + + + Populating... + 正在填充... + + + All functions with an inclusive cost ratio higher than %1 (%2 are hidden) + 包含成本比%1高的所有函数 (%2 被隐藏) + + + Analyzing Memory + 内存分析中 + + + %1 in %2 + %1 function, %2 path + 在 %2中的%1 + + + in %1 + 在 %1中 + + + Suppress Error + 防止错误 + + + External Errors + 外部错误 + + + Show issues originating outside currently opened projects. + 显示源于当前打开的项目之外的问题。 + + + Suppressions + Suppressions + + + These suppression files were used in the last memory analyzer run. + 这些suppression 文件被上一次内存分析所使用。 + + + Definite Memory Leaks + 确定的内存泄露 + + + Possible Memory Leaks + 可能的内存泄露 + + + Use of Uninitialized Memory + 使用了未初始化的内存 + + + Invalid Calls to "free()" + 无效调用"free()" + + + Valgrind Memory Analyzer + Valgrind 内存分析器 + + + Memory Issues + 内存问题 + + + Go to previous leak. + 移到上一个泄漏。 + + + Go to next leak. + 移到下一个泄漏。 + + + Error Filter + 错误过滤器 + + + Callee + 被调用者 + + + Caller + 调用者 + + + Cost + 花费 + + + Calls + 调用 + + + Previous command has not yet finished. + 之前的命令还没有完成。 + + + Dumping profile data... + dump分析数据... + + + Resetting event counters... + 重置事件计数器... + + + Pausing instrumentation... + 暂停分析... + + + Unpausing instrumentation... + 继续仪器... + + + Callgrind dumped profiling info + Callgrind dump分析信息 + + + Callgrind unpaused. + Callgrind 已继续。 + + + File: + 文件: + + + Called: + 被调用: + + + %n time(s) + + %n 次 + + + + Events + 事件 + + + Self costs + 自身花费 + + + (%) + (%) + + + Incl. costs + 包括杂项的花费 + + + (%1%) + (%1%) + + + %1 cost spent in a given function excluding costs from called functions. + 给定的函数的花费为 %1,不包括调用其他函数的花费。 + + + %1 cost spent in a given function including costs from called functions. + 给定的函数的花费为 %1,包括调用其他函数的花费。 + + + Function + 函数 + + + Location + 位置 + + + Called + 被调用 + + + Self Cost: %1 + 自身花费: %1 + + + Incl. Cost: %1 + 包括杂项的花费: %1 + + + %1:%2 in %3 + %1: 在 %3 中的%2 + + + Last-level + 最后一级 + + + Instruction + 指令 + + + Cache + 缓存 + + + Conditional branches + 条件分支 + + + Indirect branches + 间接分支 + + + level %1 + 级别%1 + + + read + 读取 + + + write + 写入 + + + mispredicted + 错误预计 + + + executed + 执行 + + + miss + 未命中 + + + access + 访问 + + + Line: + 行号: + + + Position: + 位置: + + + Parsing Profile Data... + 解析分析数据... + + + Valgrind options: %1 + Valgrind 选项: %1 + + + Working directory: %1 + 工作目录: %1 + + + Analyzer + 分析器 + + + Valgrind + Valgrind + + + Profiling %1 + 正在分析%1 + {1?} + + + An error occurred while trying to run %1: %2 + + + + Failed opening temp file... + + + + %1 (Called: %2; Incl. Cost: %3) + + + + Callgrind + + + + Valgrind Function Profiler uses the Callgrind tool to record function calls when a program runs. + + + + Valgrind Function Profiler (External Application) + + + + Profile Costs of This Function and Its Callees + + + + Load External Log File + + + + Open results in KCachegrind. + + + + Request the dumping of profile information. This will update the Callgrind visualization. + + + + Discard Data + + + + Show costs relative to parent function's inclusive cost. + + + + A Valgrind Callgrind analysis is still in progress. + + + + Start a Valgrind Callgrind analysis. + + + + Select This Function in the Analyzer Output + + + + Open Callgrind Log File + + + + Callgrind Output (callgrind.out*);;All Files (*) + + + + Callgrind: Failed to open file for reading: %1 + + + + Memcheck + + + + Load External XML Log File + + + + Valgrind Analyze Memory uses the Memcheck tool to find memory leaks. + + + + Valgrind Memory Analyzer with GDB + + + + Valgrind Analyze Memory with GDB uses the Memcheck tool to find memory leaks. +When a problem is detected, the application is interrupted and can be debugged. + + + + Heob + + + + Ctrl+Alt+H + + + + Valgrind Memory Analyzer (External Application) + + + + Heob: No local run configuration available. + + + + Heob: No toolchain available. + + + + Heob: No executable set. + + + + Heob: Cannot find %1. + + + + The %1 executables must be in the appropriate location. + + + + Heob used with MinGW projects needs the %1 DLLs for proper stacktrace resolution. + + + + Heob: Cannot create %1 process (%2). + + + + A Valgrind Memcheck analysis is still in progress. + + + + Start a Valgrind Memcheck analysis. + + + + Start a Valgrind Memcheck with GDB analysis. + + + + Open Memcheck XML Log File + + + + XML Files (*.xml);;All Files (*) + + + + Memcheck: Failed to open file for reading: %1 + + + + Memcheck: Error occurred parsing Valgrind output: %1 + + + + Memory Analyzer Tool finished. %n issues were found. + + + + + + Log file processed. %n issues were found. + + + + + + Valgrind Generic Settings + + + + MemCheck Memory Analysis Options + + + + CallGrind Profiling Options + + + + Command line arguments: %1 + + + + Analyzing finished. + + + + Error: "%1" could not be started: %2 + + + + Error: no Valgrind executable set. + + + + Process terminated. + + + + Process exited with return value %1 + + + + + Valgrind Settings + + + + XmlServer on %1: + + + + LogServer on %1: + + + + Valgrind arguments: + + + + Detect self-modifying code: + + + + Extra MemCheck arguments: + + + + Show reachable and indirectly lost blocks + + + + No + + + + Summary Only + + + + Full + 全部 + + + Check for leaks on finish: + + + + KCachegrind executable: + + + + KCachegrind Command + + + + Extra CallGrind arguments: + + + + <p>Does full cache simulation.</p> +<p>By default, only instruction read accesses will be counted ("Ir").</p> +<p> +With cache simulation, further event counters are enabled: +<ul><li>Cache misses on instruction reads ("I1mr"/"I2mr").</li> +<li>Data read accesses ("Dr") and related cache misses ("D1mr"/"D2mr").</li> +<li>Data write accesses ("Dw") and related cache misses ("D1mw"/"D2mw").</li></ul> +</p> + + + + <p>Does branch prediction simulation.</p> +<p>Further event counters are enabled: </p> +<ul><li>Number of executed conditional branches and related predictor misses ( +"Bc"/"Bcm").</li> +<li>Executed indirect jumps and related misses of the jump address predictor ( +"Bi"/"Bim").)</li></ul> + + + + Collects information for system call times. + + + + Remove template parameter lists when displaying function names. + + + + Issue + + + + %1%2 + %1%2 + + + %1 in function %2 + + + + + VcsBase + + Version Control + 版本控制 + + + General + 概要 + + + + VcsBase::CleanDialog + + The directory %1 could not be deleted. + 目录 %1 无法被删除。 + + + The file %1 could not be deleted. + 文件 '%1' 无法被删除。 + + + There were errors when cleaning the repository %1: + 清理代码仓库%1时发生错误: + + + Delete... + 删除... + + + Name + 名称 + + + Repository: %1 + 仓库: %1 + + + Delete + 删除 + + + Do you want to delete %n files? + + 您想删除 %n 个文件吗? + + + + Clean Repository + 清空代码库 + + + Select All + 全选 + + + %n bytes, last modified %1. + + %n 个字节, 最后修改时间 %1. + + + + Cleaning "%1" + + + + + VcsBase::Internal::CommonVcsSettings + + User/&alias configuration file: + 用户/别名配置文件(&A): + + + A file listing nicknames in a 4-column mailmap format: +'name <email> alias <email>'. + + + + User &fields configuration file: + 用户字段配置文件(&F): + + + A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. + 一个包含了如 ”Reviewed-By:" 等字段名的简单文件,其内容会被添加在提交编辑器的下面。 + + + Submit message &check script: + 提交信息检查脚本(&C): + + + An executable which is called with the submit message in a temporary file as first argument. It should return with an exit != 0 and a message on standard error to indicate failure. + + + + &SSH prompt command: + SSH 提示命令(&S): + + + 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). + + + + Wrap submit message at: + 提交信息折行在: + + + characters + 字符 + + + Reset VCS Cache + + + + Reset information about which version control system handles which directory. + @@ -47422,76 +50561,1520 @@ cannot be found in the path. - CppTools::CppClassesFilter + VcsBase::Internal::NickNameDialog + + Name + 姓名 + + + Alias + 别名 + + + Email + + + + Alias email + + + + + VcsBase::Internal::UrlTextCursorHandler + + Open URL in Browser... + 在浏览器中打开URL... + + + Copy URL Location + 复制URL位置 + + + + VcsBase::Internal::VcsCommandPage + + "data" is no JSON object in "VcsCommand" page. + + + + "%1" not set in "data" section of "VcsCommand" page. + + + + "%1" in "data" section of "VcsCommand" page has unexpected type (unset, String or List). + + + + "%1" in "data" section of "VcsCommand" page has unexpected type (unset or List). + + + + Job in "VcsCommand" page is empty. + + + + Job in "VcsCommand" page is not an object. + + + + Job in "VcsCommand" page has no "%1" set. + + + + Command started... + + + + Checkout + Checkout + + + No job running, please abort. + 没有运行中的任务,请退出。 + + + Succeeded. + 成功. + + + Failed. + 失败. + + + + VcsBase::Internal::VcsPlugin + + Name of the version control system in use by the current project. + + + + The current version control topic (branch or tag) identification of the current project. + + + + The top level path to the repository the current project is in. + + + + + VcsBase::SubmitEditorWidget + + Subversion Submit + Subversion提交 + + + Descriptio&n + 说明(&N) + + + F&iles + 文件(&i) + + + Select a&ll + + + + %1 %2/%n File(s) + + %1 %2/%n 文件 + + + + Warning: The commit subject is very short. + + + + Warning: The commit subject is too long. + + + + Hint: Aim for a shorter commit subject. + + + + Hint: The second line of a commit message should be empty. + + + + <p>Writing good commit messages</p><ul><li>Avoid very short commit messages.</li><li>Consider the first line as subject (like in email) and keep it shorter than %n characters.</li><li>After an empty second line, a longer description can be added.</li><li>Describe why the change was done, not how it was done.</li></ul> + + + + + + Update in progress + + + + Description is empty + + + + No files checked + + + + &Commit + 提交(&C) + + + Select All + Check all for submit + 全选 + + + Unselect All + Uncheck all for submit + + + + + VcsBase::SubmitFileModel + + State + 状态 + + + File + 文件 + + + + VcsBase::VcsBaseClientImpl + + Failed to retrieve data. + + + + Working... + 工作中... + + + + VcsBase::VcsBaseDiffEditorController + + Processing diff + + + + + VcsBase::VcsBaseEditorConfig + + Reload + 重新载入 + + + + VcsBase::VcsBaseEditorWidget + + Annotate "%1" + Annotate "%1" + + + Copy "%1" + 复制 "%1" + + + Send to CodePaster... + 发送到CodePaster... + + + Apply Chunk... + 应用块... + + + Revert Chunk... + 恢复块... + + + &Describe Change %1 + + + + + VcsBase::VcsBasePluginPrivate + + Commit + name of "commit" action of the VCS. + + + + Save before %1? + + + + Version Control + 版本控制 + + + The file "%1" could not be deleted. + + + + Choose Repository Directory + 选择代码仓库目录 + + + The directory "%1" is already managed by a version control system (%2). Would you like to specify another directory? + + + + Repository already under version control + 代码仓库已经处于版本控制下 + + + Repository Created + 仓库创建成功 + + + A version control repository has been created in %1. + 在%1处创建版本控制仓库。 + + + Repository Creation Failed + 仓库创建失败 + + + A version control repository could not be created in %1. + 在%1处版本控制仓库无法被创建。 + + + + VcsBase::VcsBaseSettings + + Log count: + + + + Prompt on submit + 提交时弹出提示 + + + Timeout: + 超时时间: + + + s + + + + + VcsBase::VcsBaseSubmitEditor + + Check Message + 检查消息 + + + Insert Name... + 插入姓名... + + + Submit Message Check Failed + 提交信息检查失败 + + + Executing %1 + 正在执行 %1 + + + + Executing [%1] %2 + 正在执行 [%1] %2 + + + Close %1 %2 Editor + + + + What do you want to do with these changes? + + + + Cannot %1%2. +What do you want to do? + %2 is an optional error message with ': ' prefix. Don't add space in front. + + + + Prompt to %1 + + + + &Close + + + + &Keep Editing + + + + + VcsBase::VcsCommand + + UNKNOWN + + + + + VcsBase::VcsCommandPage + + "%1" (%2) not found. + + + + Version control "%1" is not configured. + + + + Version control "%1" does not support initial checkouts. + + + + "%1" is empty when trying to run checkout. + + + + "%1" (%2) does not exist. + + + + + VcsBase::VcsConfigurationPage + + Configuration + 配置 + + + Please configure <b>%1</b> now. + 请现在设置<b>%1</b> 。 + + + No version control set on "VcsConfiguration" page. + Do not translate "VcsConfiguration", because it is the id of a page. + + + + "vcsId" ("%1") is invalid for "VcsConfiguration" page. Possible values are: %2. + Do not translate "VcsConfiguration", because it is the id of a page. + + + + No known version control selected. + + + + + VcsBase::VcsOutputLineParser + + &Open "%1" + + + + &Copy to clipboard: "%1" + + + + + VcsBase::VcsOutputWindow + + Open "%1" + 打开 "%1" + + + Clear + + + + Version Control + 版本控制 + + + Running: %1 + + + + Running in %1: %2 + + + + + VcsBase::VcsSubmitEditorFactory + + &Undo + 撤销(&U) + + + &Redo + + + + Diff &Selected Files + Diff 选中的文件(&S) + + + + VirtualFunctionsAssistProcessor + + collecting overrides ... + + + + + VisibilityTogglesAction + + Visibility Toggles + + + + + WebAssembly + + Web Browser + + + + WebAssembly Runtime + + + + Emscripten SDK path: + + + + Select the root directory of an installed %1. Ensure that the activated SDK version is compatible with the %2 or %3 version that you plan to develop against. + + + + Emscripten SDK environment: + + + + Note: %1 supports Qt %2 for WebAssembly and higher. Your installed lower Qt version(s) are not supported. + + + + Adding directories to PATH: + + + + Setting environment variables: + + + + The activated version %1 is not supported by %2. Activate version %3 or higher. + + + + Activated version: %1 + + + + WebAssembly + + + + Setup Emscripten SDK for WebAssembly? To do it later, select Edit > Preferences > Devices > WebAssembly. + + + + Setup Emscripten SDK + + + + WebAssembly + Qt Version is meant for WebAssembly + + + + %1 does not support Qt for WebAssembly below version %2. + + + + Effective emrun call: + + + + Default Browser + + + + Web browser: + + + + Emscripten Compiler + + + + Emscripten Compiler %1 for %2 + + + + Emscripten + + + + + Welcome + + Create Project... + 创建项目... + + + Open Project... + 打开项目... + + + Welcome + 欢迎 + + + Would you like to take a quick UI tour? This tour highlights important user interface elements and shows how they are used. To take the tour later, select Help > UI Tour. + + + + Take UI Tour + + + + Mode Selector + + + + Select different modes depending on the task at hand. + + + + <p style="margin-top: 30px"><table><tr><td style="padding-right: 20px">Welcome:</td><td>Open examples, tutorials, and recent sessions and projects.</td></tr><tr><td>Edit:</td><td>Work with code and navigate your project.</td></tr><tr><td>Design:</td><td>Visually edit Widget-based user interfaces, state charts and UML models.</td></tr><tr><td>Debug:</td><td>Analyze your application with a debugger or other analyzers.</td></tr><tr><td>Projects:</td><td>Manage project settings.</td></tr><tr><td>Help:</td><td>Browse the help database.</td></tr></table></p> + + + + Kit Selector + + + + Select the active project or project configuration. + + + + Run Button + + + + Run the active project. By default this builds the project first. + + + + Debug Button + + + + Run the active project in a debugger. + + + + Build Button + + + + Build the active project. + + + + Locator + 定位器 + + + Type here to open a file from any open project. + + + + Or:<ul><li>type <code>c&lt;space&gt;&lt;pattern&gt;</code> to jump to a class definition</li><li>type <code>f&lt;space&gt;&lt;pattern&gt;</code> to open a file from the file system</li><li>click on the magnifier icon for a complete list of possible options</li></ul> + + + + Output + 输出 + + + Find compile and application output here, as well as a list of configuration and build issues, and the panel for global searches. + + + + Progress Indicator + + + + Progress information about running tasks is shown here. + + + + Escape to Editor + + + + Pressing the Escape key brings you back to the editor. Press it multiple times to also hide context help and output, giving the editor more space. + + + + The End + + + + You have now completed the UI tour. To learn more about the highlighted controls, see <a style="color: #41CD52" href="qthelp://org.qt-project.qtcreator/doc/creator-quick-tour.html">User Interface</a>. + + + + UI Introduction %1/%2 > + + + + UI Tour + + + + New to Qt? + + + + Get Started + + + + Get Qt + + + + Qt Account + + + + Online Community + + + + Blogs + + + + User Guide + + + + + Welcome_splash + + Community Edition + + + + Enterprise Edition + + + + Professional Edition + + + + Before we let you move on to your wonderful designs, help us make Qt Design Studio even better by letting us know how you're using it. To do this, we would like to turn on automatic collection of pseudonymized Analytics and Crash Report Data. + + + + Turn Off + + + + Turn On + + + + Learn More + + + + Qt Design Studio + + + + + WidgetPluginManager + + Failed to create instance of file "%1": %2 + + + + Failed to create instance of file "%1". + + + + File "%1" is not a Qt Quick Designer plugin. + + + + + main + + Continue + 继续 + + + Start Download + + + + Browse + 浏览 + + + Folder + + + + Cancel + 取消 + + + Open + 打开 + + + Details + 详情 + + + Finish + + + + Download failed + + + + Recent Projects + 最近使用的项目 + + + Examples + 示例 + + + Tutorials + 教程 + + + Welcome to + + + + Qt Design Studio + + + + Create New + + + + Open Project + 打开项目 + + + Help + 帮助 + + + Community + 社区 + + + Blog + + + + Community Edition + + + + + qmt::ClassItem + + Show Definition + + + + Inheritance + + + + Association + + + + + qmt::DiagramController + + Change + + + + Add Object + + + + Remove Object + + + + Cut + 剪切 + + + Paste + 粘贴 + + + Delete + 删除 + + + + qmt::DiagramSceneController + + Create Dependency + + + + Create Inheritance + + + + Create Association + + + + Create Connection + + + + Drop Element + + + + Add Related Element + + + + Add Element + + + + Relocate Relation + + + + + qmt::DocumentController + + New Package + + + + New Class + + + + New Component + + + + New Diagram + + + + + qmt::Exception + + Unacceptable null object. + + + + File not found. + + + + Unable to create file. + + + + Writing to file failed. + + + + Reading from file failed. + + + + Illegal XML file. + + + + Unable to handle file version %1. + + + + + qmt::ModelController + + Change Object + + + + Change Relation + + + + Move Object + + + + Move Relation + + + + Add Object + + + + Delete Object + + + + Add Relation + + + + Delete Relation + + + + Cut + 剪切 + + + Paste + 粘贴 + + + Delete + 删除 + + + + qmt::ModelTreeView + + Show Definition + + + + Open Diagram + + + + Delete + 删除 + + + + qmt::ObjectItem + + Dependency + + + + Open Diagram + + + + Create Diagram + + + + Remove + 删除 + + + Delete + 删除 + + + Align Objects + + + + Align Left + + + + Center Vertically + + + + Align Right + + + + Align Top + + + + Center Horizontally + + + + Align Bottom + + + + Same Width + + + + Same Height + + + + Same Size + + + + Layout Objects + + + + Equal Horizontal Distance + + + + Equal Vertical Distance + + + + Equal Horizontal Space + + + + Equal Vertical Space + + + + Add Related Elements + + + + + qmt::ProjectController + + Missing file name. + + + + Project is modified. + + + + Model + + + + + qmt::PropertiesView::MView + + Stereotypes: + + + + Reverse engineered: + + + + Yes + + + + No + + + + Name: + 名称: + + + Children: + + + + Relations: + + + + Model + + + + Models + + + + Package + + + + Packages + + + + Class + + Classes - + + + + Namespace: + + + + Template: + + + + Clean Up + + + + Members: + + + + Component + + + + Components + + + + Diagram + + + + Diagrams + + + + Elements: + + + + Canvas Diagram + + + + Canvas Diagrams + + + + Item + + + + Items + + + + Variety: + + + + End A: %1 + + + + End B: %1 + + + + Dependency + + + + Dependencies + 依赖关系 + + + Direction: + + + + Inheritance + + + + Inheritances + + + + Derived class: %1 + + + + Base class: %1 + + + + Association + + + + Associations + + + + Role: + + + + Cardinality: + + + + Navigable + + + + Aggregation + 集成 + + + Composition + + + + Relationship: + + + + Connection + + + + Connections + + + + Position and size: + + + + Auto sized + + + + Color: + 颜色: + + + Normal + 正常 + + + Lighter + + + + Darker + + + + Soften + + + + Outline + 大纲 + + + Flat + + + + Emphasized + + + + Smart + + + + None + + + + Label + 标签 + + + Decoration + + + + Icon + 图标 + + + Stereotype display: + + + + Depth: + + + + Box + + + + Angle Brackets + + + + Template display: + + + + Show members + + + + Plain shape + + + + Shape: + + + + Intermediate points: + + + + none + + + + Annotation + + + + Annotations + + + + Auto width + + + + Title + 标题 + + + Subtitle + + + + Footnote + + + + Boundary + + + + Boundaries + + + + Swimlane + + + + Swimlanes + + + + Invalid syntax. + + + + Multi-Selection + - Debugger + qmt::TreeModel - Cu&t - 剪切(&T) - - - &Copy - 复制(&C) - - - &Paste - 粘贴(&P) - - - Select &All - 全选(&A) - - - &Show in Editor - 在编辑器中显示(&S) - - - C&lear - hard to tell if it is lowercase L or capital i - 清空(&L) + [unnamed] + - Debugger + qtc-askpass - Log - 日志 - - - Show debug, log, and info messages. - 显示调试、日志和信息消息。 - - - Warning - 警告 - - - Show warning messages. - 显示警告消息。 - - - Error - 错误 - - - Show error and fatal messages. - 显示错误和致命错误消息。 - - - Clear Console - 清空控制台 + Password required. + - RemoteLinux + text - Double-click to edit the project file - 双击编辑项目文件 + Text + 文本 + + + + textedit + + Text Edit + 编辑文本 + + + + texteditv2 + + Text Edit + 编辑文本 + + + + textinput + + Text + 文本 + + + + textinputv2 + + Text + 文本 + + + + textv2 + + Text + 文本 diff --git a/src/app/main.cpp b/src/app/main.cpp index 48cdc283cf2..e197f17393a 100644 --- a/src/app/main.cpp +++ b/src/app/main.cpp @@ -67,18 +67,20 @@ using namespace ExtensionSystem; enum { OptionIndent = 4, DescriptionIndent = 34 }; const char corePluginNameC[] = "Core"; -const char fixedOptionsC[] = -" [OPTION]... [FILE]...\n" -"Options:\n" -" -help Display this help\n" -" -version Display program version\n" -" -client Attempt to connect to already running first instance\n" -" -settingspath Override the default path where user settings are stored\n" -" -installsettingspath Override the default path from where user-independent settings are read\n" -" -temporarycleansettings, -tcs Use clean settings for debug or testing reasons\n" -" -pid Attempt to connect to instance given by pid\n" -" -block Block until editor is closed\n" -" -pluginpath Add a custom search path for plugins\n"; +const char fixedOptionsC[] + = " [OPTION]... [FILE]...\n" + "Options:\n" + " -help Display this help\n" + " -version Display program version\n" + " -client Attempt to connect to already running first instance\n" + " -settingspath Override the default path where user settings are stored\n" + " -installsettingspath Override the default path from where user-independent " + "settings are read\n" + " -temporarycleansettings, -tcs Use clean settings for debug or testing reasons\n" + " -pid Attempt to connect to instance given by pid\n" + " -block Block until editor is closed\n" + " -pluginpath Add a custom search path for plugins\n" + " -language Set the UI language\n"; const char HELP_OPTION1[] = "-h"; const char HELP_OPTION2[] = "-help"; @@ -95,6 +97,7 @@ const char TEMPORARY_CLEAN_SETTINGS2[] = "-tcs"; const char PID_OPTION[] = "-pid"; const char BLOCK_OPTION[] = "-block"; const char PLUGINPATH_OPTION[] = "-pluginpath"; +const char LANGUAGE_OPTION[] = "-language"; const char USER_LIBRARY_PATH_OPTION[] = "-user-library-path"; // hidden option for qtcreator.sh using PluginSpecSet = QVector; @@ -305,6 +308,7 @@ struct Options QString settingsPath; QString installSettingsPath; QStringList customPluginPaths; + QString uiLanguage; // list of arguments that were handled and not passed to the application or plugin manager QStringList preAppArguments; // list of arguments to be passed to the application or plugin manager @@ -336,6 +340,10 @@ Options parseCommandLine(int argc, char *argv[]) ++it; options.customPluginPaths += QDir::fromNativeSeparators(nextArg); options.preAppArguments << arg << nextArg; + } else if (arg == LANGUAGE_OPTION && hasNext) { + ++it; + options.uiLanguage = nextArg; + options.preAppArguments << arg << nextArg; } else if (arg == USER_LIBRARY_PATH_OPTION && hasNext) { ++it; options.userLibraryPath = nextArg; @@ -597,6 +605,8 @@ int main(int argc, char **argv) QString overrideLanguage = settings->value(QLatin1String("General/OverrideLanguage")).toString(); if (!overrideLanguage.isEmpty()) uiLanguages.prepend(overrideLanguage); + if (!options.uiLanguage.isEmpty()) + uiLanguages.prepend(options.uiLanguage); const QString &creatorTrPath = resourcePath() + "/translations"; for (QString locale : std::as_const(uiLanguages)) { locale = QLocale(locale).name(); diff --git a/src/libs/qmljs/qmljsmodelmanagerinterface.cpp b/src/libs/qmljs/qmljsmodelmanagerinterface.cpp index 8826da30c7d..70eebf6faf6 100644 --- a/src/libs/qmljs/qmljsmodelmanagerinterface.cpp +++ b/src/libs/qmljs/qmljsmodelmanagerinterface.cpp @@ -449,15 +449,13 @@ bool pInfoLessThanImports(const ModelManagerInterface::ProjectInfo &p1, } -static QList generatedQrc(QList applicationDirectories) +static QSet generatedQrc( + const QList &projectInfos) { - QList res; - for (const Utils::FilePath &path : applicationDirectories) { - Utils::FilePath generatedQrcDir = path.pathAppended(".rcc"); - if (generatedQrcDir.isReadableDir()) { - for (const Utils::FilePath & qrcPath: generatedQrcDir.dirEntries(FileFilter(QStringList({QStringLiteral(u"*.qrc")}), QDir::Files))) - res.append(qrcPath.canonicalPath()); - } + QSet res; + for (const auto &pInfo : projectInfos) { + for (const auto &generatedQrcFile: pInfo.generatedQrcFiles) + res.insert(generatedQrcFile); } return res; } @@ -484,7 +482,7 @@ void ModelManagerInterface::iterateQrcFiles( qrcFilePaths = pInfo.activeResourceFiles; else qrcFilePaths = pInfo.allResourceFiles; - for (const Utils::FilePath &p : generatedQrc(pInfo.applicationDirectories)) + for (const Utils::FilePath &p : generatedQrc({pInfo})) qrcFilePaths.append(p); for (const Utils::FilePath &qrcFilePath : std::as_const(qrcFilePaths)) { if (pathsChecked.contains(qrcFilePath)) @@ -607,7 +605,7 @@ void ModelManagerInterface::updateProjectInfo(const ProjectInfo &pinfo, ProjectE m_qrcContents = pinfo.resourceFileContents; for (const Utils::FilePath &newQrc : std::as_const(pinfo.allResourceFiles)) m_qrcCache.addPath(newQrc.toString(), m_qrcContents.value(newQrc)); - for (const Utils::FilePath &newQrc : generatedQrc(pinfo.applicationDirectories)) + for (const Utils::FilePath &newQrc : pinfo.generatedQrcFiles) m_qrcCache.addPath(newQrc.toString(), m_qrcContents.value(newQrc)); for (const Utils::FilePath &oldQrc : std::as_const(oldInfo.allResourceFiles)) m_qrcCache.removePath(oldQrc.toString()); @@ -1312,7 +1310,7 @@ void ModelManagerInterface::updateImportPaths() allImportPaths.maybeInsert(path, Dialect::Qml); findNewQmlApplicationInPath(path, snapshot, this, &newLibraries); } - for (const Utils::FilePath &qrcPath : generatedQrc(allApplicationDirectories)) + for (const Utils::FilePath &qrcPath : generatedQrc(m_projects.values())) updateQrcFile(qrcPath); updateSourceFiles(importedFiles, true); @@ -1644,8 +1642,10 @@ ModelManagerInterface::ProjectInfo ModelManagerInterface::defaultProjectInfo() c } ModelManagerInterface::ProjectInfo ModelManagerInterface::defaultProjectInfoForProject( - ProjectExplorer::Project *) const + ProjectExplorer::Project *project, const FilePaths &hiddenRccFolders) const { + Q_UNUSED(project); + Q_UNUSED(hiddenRccFolders); return ModelManagerInterface::ProjectInfo(); } diff --git a/src/libs/qmljs/qmljsmodelmanagerinterface.h b/src/libs/qmljs/qmljsmodelmanagerinterface.h index b8a733e6810..52af12d6c0e 100644 --- a/src/libs/qmljs/qmljsmodelmanagerinterface.h +++ b/src/libs/qmljs/qmljsmodelmanagerinterface.h @@ -52,6 +52,7 @@ public: PathsAndLanguages importPaths; QList activeResourceFiles; QList allResourceFiles; + QList generatedQrcFiles; QHash resourceFileContents; QList applicationDirectories; QHash moduleMappings; // E.g.: QtQuick.Controls -> MyProject.MyControls @@ -167,8 +168,8 @@ public: void setDefaultVContext(const ViewerContext &vContext); virtual ProjectInfo defaultProjectInfo() const; - virtual ProjectInfo defaultProjectInfoForProject(ProjectExplorer::Project *project) const; - + virtual ProjectInfo defaultProjectInfoForProject(ProjectExplorer::Project *project, + const Utils::FilePaths &hiddenRccFolders) const; // Blocks until all parsing threads are done. Use for testing only! void test_joinAllThreads(); diff --git a/src/libs/utils/id.cpp b/src/libs/utils/id.cpp index 2ee90212fbf..3222efa9b6a 100644 --- a/src/libs/utils/id.cpp +++ b/src/libs/utils/id.cpp @@ -10,6 +10,7 @@ #include #include #include +#include #include namespace Utils { @@ -76,21 +77,31 @@ struct IdCache : public QHash #endif }; - static QHash stringFromId; static IdCache idFromString; +static QReadWriteLock s_cacheMutex; static quintptr theId(const char *str, int n = 0) { - static quintptr firstUnusedId = 10 * 1000 * 1000; QTC_ASSERT(str && *str, return 0); StringHolder sh(str, n); - int res = idFromString.value(sh, 0); + int res = 0; + { + QReadLocker lock(&s_cacheMutex); // Try quick read locker first + res = idFromString.value(sh, 0); + } if (res == 0) { - res = firstUnusedId++; - sh.str = qstrdup(sh.str); - idFromString[sh] = res; - stringFromId[res] = sh; + QWriteLocker lock(&s_cacheMutex); + res = idFromString.value(sh, 0); // Some other thread could have added it to the cache + // in meantime, after read lock was released and before + // write lock was acquired. Re-read it again. + if (res == 0) { + static quintptr firstUnusedId = 10 * 1000 * 1000; + res = firstUnusedId++; + sh.str = qstrdup(sh.str); + idFromString[sh] = res; + stringFromId[res] = sh; + } } return res; } @@ -127,6 +138,7 @@ Id::Id(const char *name) QByteArray Id::name() const { + QReadLocker lock(&s_cacheMutex); return stringFromId.value(m_id).str; } @@ -142,6 +154,7 @@ QByteArray Id::name() const QString Id::toString() const { + QReadLocker lock(&s_cacheMutex); return QString::fromUtf8(stringFromId.value(m_id).str); } @@ -188,6 +201,7 @@ Id Id::fromName(const QByteArray &name) QVariant Id::toSetting() const { + QReadLocker lock(&s_cacheMutex); return QVariant(QString::fromUtf8(stringFromId.value(m_id).str)); } @@ -278,6 +292,7 @@ Id Id::withPrefix(const char *prefix) const bool Id::operator==(const char *name) const { + QReadLocker lock(&s_cacheMutex); const char *string = stringFromId.value(m_id).str; if (string && name) return strcmp(string, name) == 0; @@ -288,6 +303,7 @@ bool Id::operator==(const char *name) const // For debugging purposes QTCREATOR_UTILS_EXPORT const char *nameForId(quintptr id) { + QReadLocker lock(&s_cacheMutex); return stringFromId.value(id).str; } diff --git a/src/libs/utils/mimetypes2/mimeutils.cpp b/src/libs/utils/mimetypes2/mimeutils.cpp index 96ebeec3946..7daafcd8675 100644 --- a/src/libs/utils/mimetypes2/mimeutils.cpp +++ b/src/libs/utils/mimetypes2/mimeutils.cpp @@ -28,9 +28,12 @@ MimeType mimeTypeForFile(const QString &fileName, MimeMatchMode mode) MimeType mimeTypeForFile(const FilePath &filePath, MimeMatchMode mode) { MimeDatabase mdb; - if (filePath.needsDevice()) + if (filePath.needsDevice() && mode != MimeMatchMode::MatchDefaultAndRemote) return mdb.mimeTypeForUrl(filePath.toUrl()); - return mdb.mimeTypeForFile(filePath.toString(), MimeDatabase::MatchMode(mode)); + if (mode == MimeMatchMode::MatchDefaultAndRemote) { + mode = MimeMatchMode::MatchDefault; + } + return mdb.mimeTypeForFile(filePath.toFSPathString(), MimeDatabase::MatchMode(mode)); } QList mimeTypesForFileName(const QString &fileName) diff --git a/src/libs/utils/mimeutils.h b/src/libs/utils/mimeutils.h index 6e01b863467..15ce77d398c 100644 --- a/src/libs/utils/mimeutils.h +++ b/src/libs/utils/mimeutils.h @@ -15,7 +15,12 @@ class FilePath; // Wrapped QMimeDataBase functions QTCREATOR_UTILS_EXPORT MimeType mimeTypeForName(const QString &nameOrAlias); -enum class MimeMatchMode { MatchDefault = 0x0, MatchExtension = 0x1, MatchContent = 0x2 }; +enum class MimeMatchMode { + MatchDefault = 0x0, + MatchExtension = 0x1, + MatchContent = 0x2, + MatchDefaultAndRemote = 0x3 +}; QTCREATOR_UTILS_EXPORT MimeType mimeTypeForFile(const QString &fileName, MimeMatchMode mode = MimeMatchMode::MatchDefault); diff --git a/src/plugins/android/androiddeployqtstep.cpp b/src/plugins/android/androiddeployqtstep.cpp index d3fedd7b055..0d33bce4c0f 100644 --- a/src/plugins/android/androiddeployqtstep.cpp +++ b/src/plugins/android/androiddeployqtstep.cpp @@ -488,7 +488,7 @@ void AndroidDeployQtStep::gatherFilesToPull() void AndroidDeployQtStep::doRun() { - runInThread([this] { return runImpl(); }); + m_synchronizer.addFuture(runInThread([this] { return runImpl(); })); } void AndroidDeployQtStep::runCommand(const CommandLine &command) diff --git a/src/plugins/android/androiddeployqtstep.h b/src/plugins/android/androiddeployqtstep.h index f11276657b2..2f172615951 100644 --- a/src/plugins/android/androiddeployqtstep.h +++ b/src/plugins/android/androiddeployqtstep.h @@ -12,6 +12,7 @@ #include #include +#include namespace Utils { class QtcProcess; } @@ -91,6 +92,8 @@ private: Utils::FilePath m_workingDirectory; Utils::Environment m_environment; AndroidDeviceInfo m_deviceInfo; + + Utils::FutureSynchronizer m_synchronizer; }; } diff --git a/src/plugins/android/androiddevice.cpp b/src/plugins/android/androiddevice.cpp index c65db2ec181..0526c8e691f 100644 --- a/src/plugins/android/androiddevice.cpp +++ b/src/plugins/android/androiddevice.cpp @@ -512,7 +512,7 @@ void AndroidDeviceManager::setupWifiForDevice(const IDevice::Ptr &device, QWidge return; } - QTimer::singleShot(2000, parent, [adbSelector, &parent]() { + QTimer::singleShot(2000, parent, [adbSelector, parent]() { // Get device IP address QStringList args = adbSelector; args.append({"shell", "ip", "route"}); diff --git a/src/plugins/autotest/catch/catchoutputreader.cpp b/src/plugins/autotest/catch/catchoutputreader.cpp index 9ec3006ab73..22918e75cba 100644 --- a/src/plugins/autotest/catch/catchoutputreader.cpp +++ b/src/plugins/autotest/catch/catchoutputreader.cpp @@ -18,6 +18,9 @@ namespace CatchXml { const char TestCaseElement[] = "TestCase"; const char SectionElement[] = "Section"; const char ExceptionElement[] = "Exception"; + const char InfoElement[] = "Info"; + const char WarningElement[] = "Warning"; + const char FailureElement[] = "Failure"; const char ExpressionElement[] = "Expression"; const char ExpandedElement[] = "Expanded"; const char BenchmarkResults[] = "BenchmarkResults"; @@ -102,6 +105,13 @@ void CatchOutputReader::processOutputLine(const QByteArray &outputLineWithNewLin m_currentResult = m_shouldFail ? ResultType::UnexpectedPass : ResultType::Pass; else m_currentResult = m_mayFail || m_shouldFail ? ResultType::ExpectedFail : ResultType::Fail; + } else if (m_currentTagName == CatchXml::WarningElement) { + m_currentResult = ResultType::MessageWarn; + } else if (m_currentTagName == CatchXml::InfoElement) { + m_currentResult = ResultType::MessageInfo; + } else if (m_currentTagName == CatchXml::FailureElement) { + m_currentResult = ResultType::Fail; + recordTestInformation(m_xmlReader.attributes()); } else if (m_currentTagName == CatchXml::BenchmarkResults) { recordBenchmarkInformation(m_xmlReader.attributes()); m_currentResult = ResultType::Benchmark; @@ -121,7 +131,10 @@ void CatchOutputReader::processOutputLine(const QByteArray &outputLineWithNewLin const auto text = m_xmlReader.text(); if (m_currentTagName == CatchXml::ExpandedElement) { m_currentExpression.append(text); - } else if (m_currentTagName == CatchXml::ExceptionElement) { + } else if (m_currentTagName == CatchXml::ExceptionElement + || m_currentTagName == CatchXml::InfoElement + || m_currentTagName == CatchXml::WarningElement + || m_currentTagName == CatchXml::FailureElement) { m_currentExpression.append('\n').append(text.trimmed()); } break; @@ -138,10 +151,15 @@ void CatchOutputReader::processOutputLine(const QByteArray &outputLineWithNewLin } else if (currentTag == QLatin1String(CatchXml::GroupElement)) { testOutputNodeFinished(GroupNode); } else if (currentTag == QLatin1String(CatchXml::ExpressionElement) + || currentTag == QLatin1String(CatchXml::FailureElement) || currentTag == QLatin1String(CatchXml::BenchmarkResults)) { sendResult(m_currentResult); m_currentExpression.clear(); m_testCaseInfo.pop(); + } else if (currentTag == QLatin1String(CatchXml::WarningElement) + || currentTag == QLatin1String(CatchXml::InfoElement)) { + sendResult(m_currentResult); + m_currentExpression.clear(); } break; } @@ -255,6 +273,8 @@ void CatchOutputReader::sendResult(const ResultType result) .arg(catchResult->description())); } else if (result == ResultType::Benchmark || result == ResultType::MessageFatal) { catchResult->setDescription(m_currentExpression); + } else if (result == ResultType::MessageWarn || result == ResultType::MessageInfo) { + catchResult->setDescription(m_currentExpression.trimmed()); } reportResult(catchResult); diff --git a/src/plugins/clangcodemodel/clangdcompletion.cpp b/src/plugins/clangcodemodel/clangdcompletion.cpp index 0263380ab87..921b3aa19e8 100644 --- a/src/plugins/clangcodemodel/clangdcompletion.cpp +++ b/src/plugins/clangcodemodel/clangdcompletion.cpp @@ -417,6 +417,7 @@ IAssistProposal *CustomAssistProcessor::perform(const AssistInterface *interface break; } } + delete interface; GenericProposalModelPtr model(new GenericProposalModel); model->loadContent(completions); const auto proposal = new GenericProposal(m_position, model); diff --git a/src/plugins/clangcodemodel/clangdfollowsymbol.cpp b/src/plugins/clangcodemodel/clangdfollowsymbol.cpp index 8c249d30727..7765dee2336 100644 --- a/src/plugins/clangcodemodel/clangdfollowsymbol.cpp +++ b/src/plugins/clangcodemodel/clangdfollowsymbol.cpp @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include @@ -41,8 +42,9 @@ public: void resetData(bool resetFollowSymbolData); private: - IAssistProposal *perform(const AssistInterface *) override + IAssistProposal *perform(const AssistInterface *interface) override { + delete interface; return nullptr; } diff --git a/src/plugins/clangcodemodel/clangdsemantichighlighting.cpp b/src/plugins/clangcodemodel/clangdsemantichighlighting.cpp index fbddb0b605a..322a21058ff 100644 --- a/src/plugins/clangcodemodel/clangdsemantichighlighting.cpp +++ b/src/plugins/clangcodemodel/clangdsemantichighlighting.cpp @@ -164,9 +164,15 @@ void doSemanticHighlighting( const Position endPos = startPos.withOffset(token.length, &doc); return Range(startPos, endPos); }; - const auto isOutputParameter = [&ast, &tokenRange](const ExpandedSemanticToken &token) { + const int clangdMajorVersion = clangdVersion.majorVersion(); + const auto isOutputParameter = [&ast, &tokenRange, clangdMajorVersion] + (const ExpandedSemanticToken &token) { if (token.modifiers.contains(QLatin1String("usedAsMutableReference"))) return true; + if (token.modifiers.contains(QLatin1String("usedAsMutablePointer"))) + return true; + if (clangdMajorVersion >= 16) + return false; if (token.type != "variable" && token.type != "property" && token.type != "parameter") return false; const Range range = tokenRange(token); @@ -260,7 +266,7 @@ void doSemanticHighlighting( }; const std::function toResult - = [&ast, &isOutputParameter, &tokenRange, ver = clangdVersion.majorVersion()] + = [&ast, &isOutputParameter, &tokenRange, clangdMajorVersion] (const ExpandedSemanticToken &token) { TextStyles styles; if (token.type == "variable") { @@ -277,7 +283,7 @@ void doSemanticHighlighting( ? C_VIRTUAL_METHOD : C_FUNCTION; if (token.modifiers.contains("definition")) { styles.mixinStyles.push_back(C_FUNCTION_DEFINITION); - } else if (ver < 16 && ast.isValid()) { + } else if (clangdMajorVersion < 16 && ast.isValid()) { const ClangdAstPath path = getAstPath(ast, tokenRange(token)); if (path.length() > 1) { const ClangdAstNode declNode = path.at(path.length() - 2); @@ -291,7 +297,7 @@ void doSemanticHighlighting( styles.mainStyle = C_TYPE; if (token.modifiers.contains("constructorOrDestructor")) { styles.mainStyle = C_FUNCTION; - } else if (ver < 16 && ast.isValid()) { + } else if (clangdMajorVersion < 16 && ast.isValid()) { const ClangdAstPath path = getAstPath(ast, tokenRange(token)); if (!path.isEmpty()) { if (path.last().kind() == "CXXConstructor") { diff --git a/src/plugins/clangcodemodel/clangdswitchdecldef.cpp b/src/plugins/clangcodemodel/clangdswitchdecldef.cpp index 7733516655f..a60395292c1 100644 --- a/src/plugins/clangcodemodel/clangdswitchdecldef.cpp +++ b/src/plugins/clangcodemodel/clangdswitchdecldef.cpp @@ -13,6 +13,7 @@ #include #include +#include #include #include @@ -68,6 +69,7 @@ ClangdSwitchDeclDef::ClangdSwitchDeclDef(ClangdClient *client, TextDocument *doc [this](const DocumentUri &uri, const DocumentSymbolsResult &symbols) { if (uri != d->uri) return; + d->client->documentSymbolCache()->disconnect(this); d->docSymbols = symbols; if (d->ast) d->handleDeclDefSwitchReplies(); @@ -108,7 +110,7 @@ void ClangdSwitchDeclDef::emitDone() return; d->done = true; - emit done(); + QMetaObject::invokeMethod(this, &ClangdSwitchDeclDef::done, Qt::QueuedConnection); } std::optional ClangdSwitchDeclDef::Private::getFunctionNode() const diff --git a/src/plugins/clangcodemodel/test/clangdtests.cpp b/src/plugins/clangcodemodel/test/clangdtests.cpp index f00e675651b..96a6383abad 100644 --- a/src/plugins/clangcodemodel/test/clangdtests.cpp +++ b/src/plugins/clangcodemodel/test/clangdtests.cpp @@ -1012,12 +1012,6 @@ void ClangdTestHighlighting::test_data() << QList{C_LOCAL} << 0; QTest::newRow("const pointer argument") << 491 << 26 << 491 << 27 << QList{C_LOCAL, C_OUTPUT_ARGUMENT} << 0; - QTest::newRow("non-const reference via member function call as output argument (object)") - << 580 << 29 << 580 << 30 - << QList{C_LOCAL, C_OUTPUT_ARGUMENT} << 0; - QTest::newRow("non-const reference via member function call as output argument (function)") - << 580 << 31 << 580 << 37 - << QList{C_FUNCTION, C_OUTPUT_ARGUMENT} << 0; QTest::newRow("value argument") << 501 << 57 << 501 << 58 << QList{C_LOCAL} << 0; QTest::newRow("non-const ref argument as second arg") << 501 << 61 << 501 << 62 @@ -1026,8 +1020,6 @@ void ClangdTestHighlighting::test_data() << QList{C_PARAMETER, C_OUTPUT_ARGUMENT} << 0; QTest::newRow("non-const pointer argument expression") << 513 << 30 << 513 << 31 << QList{C_LOCAL, C_OUTPUT_ARGUMENT} << 0; - QTest::newRow("non-const ref argument from qualified member (object)") << 525 << 31 << 525 << 39 - << QList{C_LOCAL, C_OUTPUT_ARGUMENT} << 0; QTest::newRow("non-const ref argument from qualified member (member)") << 525 << 40 << 525 << 46 << QList{C_FIELD, C_OUTPUT_ARGUMENT} << 0; QTest::newRow("non-const ref argument to constructor") << 540 << 47 << 540 << 55 @@ -1394,14 +1386,6 @@ void ClangdTestHighlighting::test() actualStyles << s; } - QEXPECT_FAIL("non-const reference via member function call as output argument (object)", - "See below", Continue); - QEXPECT_FAIL("non-const reference via member function call as output argument (function)", - "Without punctuation and comment tokens from clangd, it's not possible " - "to highlight entire expressions. But do we really want this? What about nested " - "calls where the inner arguments are const?", - Continue); - QCOMPARE(actualStyles, expectedStyles); QCOMPARE(result.kind, expectedKind); } diff --git a/src/plugins/clangformat/clangformatbaseindenter.cpp b/src/plugins/clangformat/clangformatbaseindenter.cpp index 7c83c8e43b2..6072082c8c7 100644 --- a/src/plugins/clangformat/clangformatbaseindenter.cpp +++ b/src/plugins/clangformat/clangformatbaseindenter.cpp @@ -39,7 +39,11 @@ void adjustFormatStyleForLineBreak(clang::format::FormatStyle &style, // This is a separate pass, don't do it unless it's the full formatting. style.FixNamespaceComments = false; +#if LLVM_VERSION_MAJOR >= 16 + style.AlignTrailingComments = {clang::format::FormatStyle::TCAS_Never, 0}; +#else style.AlignTrailingComments = false; +#endif if (replacementsToKeep == ReplacementsToKeep::IndentAndBefore) return; diff --git a/src/plugins/clangformat/clangformatutils.cpp b/src/plugins/clangformat/clangformatutils.cpp index dbc4a6a347e..3b2901bcc8b 100644 --- a/src/plugins/clangformat/clangformatutils.cpp +++ b/src/plugins/clangformat/clangformatutils.cpp @@ -49,7 +49,11 @@ clang::format::FormatStyle qtcStyle() #else style.AlignOperands = true; #endif +#if LLVM_VERSION_MAJOR >= 16 + style.AlignTrailingComments = {FormatStyle::TCAS_Always, 0}; +#else style.AlignTrailingComments = true; +#endif style.AllowAllParametersOfDeclarationOnNextLine = true; #if LLVM_VERSION_MAJOR >= 10 style.AllowShortBlocksOnASingleLine = FormatStyle::SBS_Never; diff --git a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp index b6b0947dd59..cfc10a31ac4 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp +++ b/src/plugins/cmakeprojectmanager/cmakebuildconfiguration.cpp @@ -88,6 +88,7 @@ const char DEVELOPMENT_TEAM_FLAG[] = "Ios:DevelopmentTeam:Flag"; const char PROVISIONING_PROFILE_FLAG[] = "Ios:ProvisioningProfile:Flag"; const char CMAKE_OSX_ARCHITECTURES_FLAG[] = "CMAKE_OSX_ARCHITECTURES:DefaultFlag"; const char QT_QML_DEBUG_FLAG[] = "Qt:QML_DEBUG_FLAG"; +const char QT_QML_DEBUG_PARAM[] = "-DQT_QML_DEBUG"; const char CMAKE_QT6_TOOLCHAIN_FILE_ARG[] = "-DCMAKE_TOOLCHAIN_FILE:FILEPATH=%{Qt:QT_INSTALL_PREFIX}/lib/cmake/Qt6/qt.toolchain.cmake"; const char CMAKE_BUILD_TYPE[] = "CMake.Build.Type"; @@ -876,7 +877,7 @@ CMakeConfig CMakeBuildSettingsWidget::getQmlDebugCxxFlags() "CMAKE_CXX_FLAGS_RELWITHDEBINFO", "CMAKE_CXX_FLAGS_INIT"}; const QByteArrayList cxxFlags{"CMAKE_CXX_FLAGS_INIT", "CMAKE_CXX_FLAGS"}; - const QByteArray qmlDebug("-DQT_QML_DEBUG"); + const QByteArray qmlDebug(QT_QML_DEBUG_PARAM); CMakeConfig changedConfig; @@ -1446,8 +1447,7 @@ CMakeBuildConfiguration::CMakeBuildConfiguration(Target *target, Id id) [this] { if (aspect()->value() == TriState::Enabled) { - return QLatin1String( - "-DQT_QML_DEBUG"); + return QLatin1String(QT_QML_DEBUG_PARAM); } return QLatin1String(); }); @@ -1665,7 +1665,7 @@ bool CMakeBuildConfiguration::hasQmlDebugging(const CMakeConfig &config) // such that in doubt we leave the QML Debugging setting at "Leave at default" const QString cxxFlagsInit = config.stringValueOf("CMAKE_CXX_FLAGS_INIT"); const QString cxxFlags = config.stringValueOf("CMAKE_CXX_FLAGS"); - return cxxFlagsInit.contains("-DQT_QML_DEBUG") && cxxFlags.contains("-DQT_QML_DEBUG"); + return cxxFlagsInit.contains(QT_QML_DEBUG_PARAM) && cxxFlags.contains(QT_QML_DEBUG_PARAM); } void CMakeBuildConfiguration::buildTarget(const QString &buildTarget) diff --git a/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp b/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp index 0cf89fd241a..8e1f3b6e65e 100644 --- a/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp +++ b/src/plugins/cmakeprojectmanager/cmakebuildsystem.cpp @@ -1186,8 +1186,8 @@ void CMakeBuildSystem::updateQmlJSCodeModel(const QStringList &extraHeaderPaths, return; Project *p = project(); - QmlJS::ModelManagerInterface::ProjectInfo projectInfo = modelManager - ->defaultProjectInfoForProject(p); + QmlJS::ModelManagerInterface::ProjectInfo projectInfo + = modelManager->defaultProjectInfoForProject(p, p->files(Project::HiddenRccFolders)); projectInfo.importPaths.clear(); diff --git a/src/plugins/coreplugin/editormanager/editormanager.cpp b/src/plugins/coreplugin/editormanager/editormanager.cpp index c2988de4aab..e0652b30d6c 100644 --- a/src/plugins/coreplugin/editormanager/editormanager.cpp +++ b/src/plugins/coreplugin/editormanager/editormanager.cpp @@ -739,7 +739,8 @@ bool EditorManagerPrivate::skipOpeningBigTextFile(const FilePath &filePath) if (!filePath.exists()) return false; - const MimeType mimeType = Utils::mimeTypeForFile(filePath); + const MimeType mimeType = Utils::mimeTypeForFile(filePath, + MimeMatchMode::MatchDefaultAndRemote); if (!mimeType.inherits("text/plain")) return false; diff --git a/src/plugins/coreplugin/editormanager/ieditorfactory.cpp b/src/plugins/coreplugin/editormanager/ieditorfactory.cpp index 22fcc9eb95d..46820d7939d 100644 --- a/src/plugins/coreplugin/editormanager/ieditorfactory.cpp +++ b/src/plugins/coreplugin/editormanager/ieditorfactory.cpp @@ -166,7 +166,8 @@ const EditorTypeList EditorType::defaultEditorTypes(const MimeType &mimeType) const EditorTypeList EditorType::preferredEditorTypes(const FilePath &filePath) { // default factories by mime type - const Utils::MimeType mimeType = Utils::mimeTypeForFile(filePath); + const Utils::MimeType mimeType = Utils::mimeTypeForFile(filePath, + MimeMatchMode::MatchDefaultAndRemote); EditorTypeList factories = defaultEditorTypes(mimeType); // user preferred factory to front EditorType *userPreferred = Internal::userPreferredEditorTypes().value(mimeType); diff --git a/src/plugins/coreplugin/iwizardfactory.cpp b/src/plugins/coreplugin/iwizardfactory.cpp index 47db80bc7f8..8a98593f803 100644 --- a/src/plugins/coreplugin/iwizardfactory.cpp +++ b/src/plugins/coreplugin/iwizardfactory.cpp @@ -175,7 +175,9 @@ QList IWizardFactory::allWizardFactories() QHash sanityCheck; for (const FactoryCreator &fc : std::as_const(s_factoryCreators)) { IWizardFactory *newFactory = fc(); - QTC_ASSERT(newFactory, continue); + // skip factories referencing wizard page generators provided by plugins not loaded + if (!newFactory) + continue; IWizardFactory *existingFactory = sanityCheck.value(newFactory->id()); QTC_ASSERT(existingFactory != newFactory, continue); diff --git a/src/plugins/coreplugin/mainwindow.cpp b/src/plugins/coreplugin/mainwindow.cpp index e71b0b1fc2f..9c63e36e708 100644 --- a/src/plugins/coreplugin/mainwindow.cpp +++ b/src/plugins/coreplugin/mainwindow.cpp @@ -949,7 +949,8 @@ void MainWindow::openFile() static IDocumentFactory *findDocumentFactory(const QList &fileFactories, const FilePath &filePath) { - const QString typeName = Utils::mimeTypeForFile(filePath).name(); + const QString typeName = Utils::mimeTypeForFile(filePath, MimeMatchMode::MatchDefaultAndRemote) + .name(); return Utils::findOrDefault(fileFactories, [typeName](IDocumentFactory *f) { return f->mimeTypes().contains(typeName); }); diff --git a/src/plugins/debugger/debuggerprotocol.cpp b/src/plugins/debugger/debuggerprotocol.cpp index 09bd76073c1..9aebe53f343 100644 --- a/src/plugins/debugger/debuggerprotocol.cpp +++ b/src/plugins/debugger/debuggerprotocol.cpp @@ -112,7 +112,7 @@ void GdbMi::parseResultOrValue(DebuggerOutputParser &parser) } // Reads one \ooo entity. -static bool parseOctalEscapedHelper(DebuggerOutputParser &parser, QByteArray &buffer) +static bool parseOctalEscapedHelper(DebuggerOutputParser &parser, QString &buffer) { if (parser.remainingChars() < 4) return false; @@ -130,7 +130,7 @@ static bool parseOctalEscapedHelper(DebuggerOutputParser &parser, QByteArray &bu return true; } -static bool parseHexEscapedHelper(DebuggerOutputParser &parser, QByteArray &buffer) +static bool parseHexEscapedHelper(DebuggerOutputParser &parser, QString &buffer) { if (parser.remainingChars() < 4) return false; @@ -178,15 +178,16 @@ static void parseSimpleEscape(DebuggerOutputParser &parser, QString &result) // *or* one escaped char, *or* one unescaped char. static void parseCharOrEscape(DebuggerOutputParser &parser, QString &result) { - QByteArray buffer; - while (parseOctalEscapedHelper(parser, buffer)) + const int oldSize = result.size(); + while (parseOctalEscapedHelper(parser, result)) ; - while (parseHexEscapedHelper(parser, buffer)) + while (parseHexEscapedHelper(parser, result)) ; - if (!buffer.isEmpty()) { - result.append(QString::fromUtf8(buffer)); - } else if (parser.isCurrent('\\')) { + if (result.size() != oldSize) + return; + + if (parser.isCurrent('\\')) { parser.advance(); parseSimpleEscape(parser, result); } else { @@ -254,7 +255,6 @@ void GdbMi::parseTuple_helper(DebuggerOutputParser &parser) { parser.skipCommas(); //qDebug() << "parseTuple_helper: " << parser.buffer(); - QString buf = parser.buffer(); m_type = Tuple; while (!parser.isAtEnd()) { if (parser.isCurrent('}')) { diff --git a/src/plugins/help/litehtmlhelpviewer.cpp b/src/plugins/help/litehtmlhelpviewer.cpp index f966c018f92..a9fca1a92b0 100644 --- a/src/plugins/help/litehtmlhelpviewer.cpp +++ b/src/plugins/help/litehtmlhelpviewer.cpp @@ -16,6 +16,7 @@ #include #include #include +#include #include #include @@ -100,6 +101,11 @@ LiteHtmlHelpViewer::LiteHtmlHelpViewer(QWidget *parent) &QLiteHtmlWidget::contextMenuRequested, this, &LiteHtmlHelpViewer::showContextMenu); + connect(m_viewer, &QLiteHtmlWidget::linkHighlighted, this, [this](const QUrl &url) { + m_highlightedLink = url; + if (!url.isValid()) + QToolTip::hideText(); + }); auto layout = new QVBoxLayout; setLayout(layout); layout->setContentsMargins(0, 0, 0, 0); @@ -284,6 +290,12 @@ bool LiteHtmlHelpViewer::eventFilter(QObject *src, QEvent *e) goForward(1); return true; } + } else if (e->type() == QEvent::ToolTip) { + auto he = static_cast(e); + if (m_highlightedLink.isValid()) + QToolTip::showText(he->globalPos(), + m_highlightedLink.toDisplayString(), + m_viewer->viewport()); } return HelpViewer::eventFilter(src, e); } diff --git a/src/plugins/help/litehtmlhelpviewer.h b/src/plugins/help/litehtmlhelpviewer.h index 5067f0a4327..efd8245a013 100644 --- a/src/plugins/help/litehtmlhelpviewer.h +++ b/src/plugins/help/litehtmlhelpviewer.h @@ -4,11 +4,11 @@ #pragma once #include "helpviewer.h" -#include "openpagesmanager.h" #include #include +#include #include @@ -68,6 +68,7 @@ private: QLiteHtmlWidget *m_viewer; std::vector m_backItems; std::vector m_forwardItems; + QUrl m_highlightedLink; }; } // namespace Internal diff --git a/src/plugins/languageclient/languageclientcompletionassist.cpp b/src/plugins/languageclient/languageclientcompletionassist.cpp index fd8346962a5..2c757d7808f 100644 --- a/src/plugins/languageclient/languageclientcompletionassist.cpp +++ b/src/plugins/languageclient/languageclientcompletionassist.cpp @@ -293,7 +293,8 @@ LanguageClientCompletionAssistProcessor::~LanguageClientCompletionAssistProcesso QTextDocument *LanguageClientCompletionAssistProcessor::document() const { - return m_document; + QTC_ASSERT(m_assistInterface, return nullptr); + return m_assistInterface->textDocument(); } QList LanguageClientCompletionAssistProcessor::generateCompletionItems( @@ -315,6 +316,7 @@ static QString assistReasonString(AssistReason reason) IAssistProposal *LanguageClientCompletionAssistProcessor::perform(const AssistInterface *interface) { + m_assistInterface.reset(interface); QTC_ASSERT(m_client, return nullptr); m_pos = interface->position(); m_basePos = m_pos; @@ -366,7 +368,6 @@ IAssistProposal *LanguageClientCompletionAssistProcessor::perform(const AssistIn m_client->sendMessage(completionRequest); m_client->addAssistProcessor(this); m_currentRequest = completionRequest.id(); - m_document = interface->textDocument(); m_filePath = interface->filePath(); qCDebug(LOGLSPCOMPLETION) << QTime::currentTime() << " : request completions at " << m_pos @@ -425,7 +426,7 @@ void LanguageClientCompletionAssistProcessor::handleCompletionResponse( model->loadContent(proposalItems); LanguageClientCompletionProposal *proposal = new LanguageClientCompletionProposal(m_basePos, model); - proposal->m_document = m_document; + proposal->m_document = m_assistInterface->textDocument(); proposal->m_pos = m_pos; proposal->setSupportsPrefix(false); setAsyncProposalAvailable(proposal); diff --git a/src/plugins/languageclient/languageclientcompletionassist.h b/src/plugins/languageclient/languageclientcompletionassist.h index e78d1b795e9..2e46df1f092 100644 --- a/src/plugins/languageclient/languageclientcompletionassist.h +++ b/src/plugins/languageclient/languageclientcompletionassist.h @@ -11,6 +11,7 @@ #include #include +#include #include #include @@ -74,7 +75,7 @@ protected: private: void handleCompletionResponse(const LanguageServerProtocol::CompletionRequest::Response &response); - QPointer m_document; + QScopedPointer m_assistInterface; Utils::FilePath m_filePath; QPointer m_client; std::optional m_currentRequest; diff --git a/src/plugins/languageclient/languageclientfunctionhint.cpp b/src/plugins/languageclient/languageclientfunctionhint.cpp index 2b5b46cdfac..c6ac1e190af 100644 --- a/src/plugins/languageclient/languageclientfunctionhint.cpp +++ b/src/plugins/languageclient/languageclientfunctionhint.cpp @@ -10,6 +10,8 @@ #include #include +#include + using namespace TextEditor; using namespace LanguageServerProtocol; @@ -66,6 +68,7 @@ FunctionHintProcessor::FunctionHintProcessor(Client *client) IAssistProposal *FunctionHintProcessor::perform(const AssistInterface *interface) { + const QScopedPointer deleter(interface); QTC_ASSERT(m_client, return nullptr); m_pos = interface->position(); QTextCursor cursor(interface->textDocument()); diff --git a/src/plugins/mcusupport/mcukitmanager.cpp b/src/plugins/mcusupport/mcukitmanager.cpp index 84299939e1d..ae5c5f4b153 100644 --- a/src/plugins/mcusupport/mcukitmanager.cpp +++ b/src/plugins/mcusupport/mcukitmanager.cpp @@ -196,12 +196,22 @@ public: EnvironmentItems changes; QStringList pathAdditions; // clazy:exclude=inefficient-qlist-soft - // The Desktop version depends on the Qt shared libs in Qul_DIR/bin. - // If CMake's fileApi is avaialble, we can rely on the "Add library search path to PATH" - // feature of the run configuration. Otherwise, we just prepend the path, here. - if (mcuTarget->toolChainPackage()->isDesktopToolchain() - && !CMakeProjectManager::CMakeToolManager::defaultCMakeTool()->hasFileApi()) - pathAdditions.append((qtForMCUsSdkPackage->path() / "bin").toUserOutput()); + // The Desktop version depends on the Qt shared libs. + // As CMake's fileApi is available, we can rely on the "Add library search path to PATH" + // feature of the run configuration. + // + // Since MinGW support is added from Qul 2.3.0, + // the Qt shared libs for Windows desktop platform have been moved + // from Qul_DIR/bin to Qul_DIR/lib/(msvc|gnu) + // and the QPA plugin has been moved to the same location. + // So Windows host requires to add the path in this case. + if (mcuTarget->toolChainPackage()->isDesktopToolchain() && HostOsInfo::isWindowsHost() + && !McuSupportOptions::isLegacyVersion(mcuTarget->qulVersion())) { + const FilePath libPath = (qtForMCUsSdkPackage->path() / "lib" + / mcuTarget->desktopCompilerId()); + pathAdditions.append(libPath.toUserOutput()); + changes.append({"QT_QPA_PLATFORM_PLUGIN_PATH", libPath.toUserOutput()}); + } auto processPackage = [&pathAdditions](const McuPackagePtr &package) { if (package->isAddToSystemPath()) @@ -261,6 +271,12 @@ public: true); } + if (!McuSupportOptions::isLegacyVersion(mcuTarget->qulVersion()) + && HostOsInfo::isWindowsHost()) { + // From 2.3.0, QUL_COMPILER_NAME needs to be set on Windows + // to select proper cmake files depending on the toolchain for Windows. + configMap.insert("QUL_COMPILER_NAME", mcuTarget->desktopCompilerId().toLatin1()); + } } else { const FilePath cMakeToolchainFile = mcuTarget->toolChainFilePackage()->path(); @@ -287,7 +303,7 @@ public: false); } - configMap.insert("QUL_PLATFORM", mcuTarget->platform().name.toUtf8()); + configMap.insert("QUL_PLATFORM", mcuTarget->platform().name.toLower().toUtf8()); if (mcuTarget->colorDepth() != McuTarget::UnspecifiedColorDepth) configMap.insert("QUL_COLOR_DEPTH", QString::number(mcuTarget->colorDepth()).toLatin1()); @@ -593,6 +609,11 @@ void updatePathsInExistingKits(const SettingsHandler::Ptr &settingsHandler) for (const auto &target : std::as_const(repo.mcuTargets)) { if (target->isValid()) { for (auto *kit : kitsWithMismatchedDependencies(target.get())) { + if (kitQulVersion(kit) != target->qulVersion()) { + //Do not update kits made for other Qt for MCUs SDK versions + continue; + } + auto changes = cMakeConfigToMap(CMakeConfigurationKitAspect::configuration(kit)); const auto updateForPackage = [&changes](const McuPackagePtr &package) { diff --git a/src/plugins/mcusupport/mcusupportoptions.cpp b/src/plugins/mcusupport/mcusupportoptions.cpp index cd87896803a..1c7a170f8a9 100644 --- a/src/plugins/mcusupport/mcusupportoptions.cpp +++ b/src/plugins/mcusupport/mcusupportoptions.cpp @@ -30,23 +30,45 @@ using namespace Utils; namespace McuSupport::Internal { -static const Utils::FilePath expandWildcards(const Utils::FilePath& path) +// Utils::FileFilter do not support globbing with "*" placed in the middle of the path, +// since it is required for paths such as "Microsoft Visual Studio/2019/*/VC/Tools/MSVC/*/bin/Hostx64/x64" +// The filter is applied for each time a wildcard character is found in a path component. +// Returns a pair of the longest path if multiple ones exists and the number of components that were not found. +static const std::pair expandWildcards( + const FilePath path, const QList patternComponents) { - if (!path.fileName().contains("*") && !path.fileName().contains("?")) - return path; + // Only absolute paths are currently supported + // Call FilePath::cleanPath on the path before calling this function + if (!path.exists() || path.isRelativePath()) + return {path, patternComponents.size()}; - const FilePath p = path.parentDir(); + // All components are found + if (patternComponents.empty()) + return {path, patternComponents.size()}; - auto entries = p.dirEntries( - Utils::FileFilter({path.fileName()}, QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot)); + const QString currentComponent = patternComponents.front().toString(); + FilePath currentPath = path / currentComponent; - if (entries.isEmpty()) - return path; + if (!currentComponent.contains("*") && !currentComponent.contains("?") && currentPath.exists()) + return expandWildcards(path / currentComponent, + {patternComponents.constBegin() + 1, patternComponents.constEnd()}); + + auto entries = path.dirEntries( + Utils::FileFilter({currentComponent}, QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot)); + + std::pair retPair = {path, patternComponents.size()}; - // Return the last match (can correspond to the latest version) sort(entries, [](const FilePath &a, const FilePath &b) { return a.fileName() < b.fileName(); }); + for (const auto &entry : entries) { + auto [entry_path, remaining_components] = expandWildcards(entry, + {patternComponents.constBegin() + + 1, + patternComponents.constEnd()}); + if (remaining_components <= retPair.second) + retPair = {entry_path, remaining_components}; + } - return entries.last(); + return retPair; } Macros *McuSdkRepository::globalMacros() @@ -60,7 +82,32 @@ void McuSdkRepository::expandVariablesAndWildcards() for (const auto &target : std::as_const(mcuTargets)) { auto macroExpander = getMacroExpander(*target); for (const auto &package : target->packages()) { - package->setPath(expandWildcards(macroExpander->expand(package->path()))); + // Expand variables + const auto path = macroExpander->expand(package->path()); + + //expand wildcards + // Ignore expanding if no wildcards are found + if (!path.path().contains("*") && !path.path().contains("?")) { + package->setPath(path); + continue; + } + + QStringList pathComponents = path.cleanPath().path().split("/"); + + // Path components example on linux: {"", "home", "username"} + // Path components example on windows: {"C:", "Users", "username"} + // 2 for empty_split_entry(linux)|root(windows) + at least one component + if (pathComponents.size() < 2) { + package->setPath(path); + continue; + } + // drop empty_split_entry(linux)|root(windows) + pathComponents.pop_front(); + + package->setPath( + expandWildcards(FilePath::fromString(QDir::rootPath()), + {pathComponents.constBegin(), pathComponents.constEnd()}) + .first); } } } diff --git a/src/plugins/mcusupport/mcusupportsdk.cpp b/src/plugins/mcusupport/mcusupportsdk.cpp index baaa2b1e4a8..7bea26937c0 100644 --- a/src/plugins/mcusupport/mcusupportsdk.cpp +++ b/src/plugins/mcusupport/mcusupportsdk.cpp @@ -362,15 +362,15 @@ McuPackagePtr createStm32CubeProgrammerPackage(const SettingsHandler::Ptr &setti FilePath defaultPath; const QString cubePath = "STMicroelectronics/STM32Cube/STM32CubeProgrammer"; if (HostOsInfo::isWindowsHost()) - defaultPath = findInProgramFiles(cubePath) / "bin"; + defaultPath = findInProgramFiles(cubePath); else - defaultPath = FileUtils::homePath() / cubePath / "bin"; + defaultPath = FileUtils::homePath() / cubePath; if (!defaultPath.exists()) FilePath defaultPath = {}; const FilePath detectionPath = FilePath::fromUserInput( - QLatin1String(Utils::HostOsInfo::isWindowsHost() ? "STM32_Programmer_CLI.exe" - : "STM32_Programmer.sh")); + QLatin1String(Utils::HostOsInfo::isWindowsHost() ? "bin/STM32_Programmer_CLI.exe" + : "bin/STM32_Programmer.sh")); return McuPackagePtr{ new McuPackage(settingsHandler, diff --git a/src/plugins/mcusupport/mcutarget.cpp b/src/plugins/mcusupport/mcutarget.cpp index 4314bdb72ad..2ca6e2596a1 100644 --- a/src/plugins/mcusupport/mcutarget.cpp +++ b/src/plugins/mcusupport/mcutarget.cpp @@ -61,6 +61,26 @@ bool McuTarget::isValid() const }); } +QString McuTarget::desktopCompilerId() const +{ + // MinGW shares CMake configuration with GCC + // and it is distinguished from MSVC by CMake compiler ID. + // This provides the compiler ID to set up a different Qul configuration + // for MSVC and MinGW. + if (m_toolChainPackage) { + switch (m_toolChainPackage->toolchainType()) { + case McuToolChainPackage::ToolChainType::MSVC: + return QLatin1String("msvc"); + case McuToolChainPackage::ToolChainType::GCC: + case McuToolChainPackage::ToolChainType::MinGW: + return QLatin1String("gnu"); + default: + return QLatin1String("unsupported"); + } + } + return QLatin1String("invalid"); +} + void McuTarget::printPackageProblems() const { for (auto package : packages()) { diff --git a/src/plugins/mcusupport/mcutarget.h b/src/plugins/mcusupport/mcutarget.h index d42cf015d73..6dd1cd5fe35 100644 --- a/src/plugins/mcusupport/mcutarget.h +++ b/src/plugins/mcusupport/mcutarget.h @@ -53,6 +53,7 @@ public: OS os() const; int colorDepth() const; bool isValid() const; + QString desktopCompilerId() const; void printPackageProblems() const; private: diff --git a/src/plugins/mcusupport/test/armgcc_stm32f469i_discovery_baremetal_json.h b/src/plugins/mcusupport/test/armgcc_stm32f469i_discovery_baremetal_json.h index 5a4f2cf0617..3b1ef8172f7 100644 --- a/src/plugins/mcusupport/test/armgcc_stm32f469i_discovery_baremetal_json.h +++ b/src/plugins/mcusupport/test/armgcc_stm32f469i_discovery_baremetal_json.h @@ -20,12 +20,12 @@ constexpr auto armgcc_stm32f469i_discovery_baremetal_json = R"( "type": "path", "setting": "Stm32CubeProgrammer", "defaultValue": { - "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin", - "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin" + "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/", + "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/" }, "detectionPath": { - "windows": "STM32_Programmer_CLI.exe", - "linux": "STM32_Programmer.sh" + "windows": "bin/STM32_Programmer_CLI.exe", + "linux": "bin/STM32_Programmer.sh" }, "optional": false, "addToSystemPath": true diff --git a/src/plugins/mcusupport/test/armgcc_stm32f769i_discovery_baremetal_json.h b/src/plugins/mcusupport/test/armgcc_stm32f769i_discovery_baremetal_json.h index 40a075e92a9..62171d73334 100644 --- a/src/plugins/mcusupport/test/armgcc_stm32f769i_discovery_baremetal_json.h +++ b/src/plugins/mcusupport/test/armgcc_stm32f769i_discovery_baremetal_json.h @@ -20,12 +20,12 @@ constexpr auto armgcc_stm32f769i_discovery_baremetal_json = R"( "type": "path", "setting": "Stm32CubeProgrammer", "defaultValue": { - "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin", - "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin" + "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/", + "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/" }, "detectionPath": { - "windows": "STM32_Programmer_CLI.exe", - "linux": "STM32_Programmer.sh" + "windows": "bin/STM32_Programmer_CLI.exe", + "linux": "bin/STM32_Programmer.sh" }, "optional": false, "addToSystemPath": true diff --git a/src/plugins/mcusupport/test/armgcc_stm32f769i_discovery_freertos_json.h b/src/plugins/mcusupport/test/armgcc_stm32f769i_discovery_freertos_json.h index 783561df426..d6e28c6c429 100644 --- a/src/plugins/mcusupport/test/armgcc_stm32f769i_discovery_freertos_json.h +++ b/src/plugins/mcusupport/test/armgcc_stm32f769i_discovery_freertos_json.h @@ -20,12 +20,12 @@ constexpr auto armgcc_stm32f769i_discovery_freertos_json = R"( "type": "path", "setting": "Stm32CubeProgrammer", "defaultValue": { - "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin", - "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin" + "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/", + "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/" }, "detectionPath": { - "windows": "STM32_Programmer_CLI.exe", - "linux": "STM32_Programmer.sh" + "windows": "bin/STM32_Programmer_CLI.exe", + "linux": "bin/STM32_Programmer.sh" }, "optional": false, "addToSystemPath": true diff --git a/src/plugins/mcusupport/test/armgcc_stm32h750b_discovery_baremetal_json.h b/src/plugins/mcusupport/test/armgcc_stm32h750b_discovery_baremetal_json.h index b8ae6d3c9ae..a2819c8cf8a 100644 --- a/src/plugins/mcusupport/test/armgcc_stm32h750b_discovery_baremetal_json.h +++ b/src/plugins/mcusupport/test/armgcc_stm32h750b_discovery_baremetal_json.h @@ -20,12 +20,12 @@ constexpr auto armgcc_stm32h750b_discovery_baremetal_json = R"( "type": "path", "setting": "Stm32CubeProgrammer", "defaultValue": { - "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin", - "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin" + "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/", + "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/" }, "detectionPath": { - "windows": "STM32_Programmer_CLI.exe", - "linux": "STM32_Programmer.sh" + "windows": "bin/STM32_Programmer_CLI.exe", + "linux": "bin/STM32_Programmer.sh" }, "optional": false, "addToSystemPath": true diff --git a/src/plugins/mcusupport/test/iar_stm32f469i_discovery_baremetal_json.h b/src/plugins/mcusupport/test/iar_stm32f469i_discovery_baremetal_json.h index 0b1741cf63c..af961af20d6 100644 --- a/src/plugins/mcusupport/test/iar_stm32f469i_discovery_baremetal_json.h +++ b/src/plugins/mcusupport/test/iar_stm32f469i_discovery_baremetal_json.h @@ -20,12 +20,12 @@ constexpr auto iar_stm32f469i_discovery_baremetal_json = R"( "type": "path", "setting": "Stm32CubeProgrammer", "defaultValue": { - "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin", - "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin" + "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/", + "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/" }, "detectionPath": { - "windows": "STM32_Programmer_CLI.exe", - "linux": "STM32_Programmer.sh" + "windows": "bin/STM32_Programmer_CLI.exe", + "linux": "bin/STM32_Programmer.sh" }, "optional": false, "addToSystemPath": true diff --git a/src/plugins/mcusupport/test/iar_stm32f769i_discovery_baremetal_json.h b/src/plugins/mcusupport/test/iar_stm32f769i_discovery_baremetal_json.h index b4ea6ca8fd9..4b7c3fb8223 100644 --- a/src/plugins/mcusupport/test/iar_stm32f769i_discovery_baremetal_json.h +++ b/src/plugins/mcusupport/test/iar_stm32f769i_discovery_baremetal_json.h @@ -20,12 +20,12 @@ constexpr auto iar_stm32f769i_discovery_baremetal_json = R"( "type": "path", "setting": "Stm32CubeProgrammer", "defaultValue": { - "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin", - "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin" + "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/", + "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/" }, "detectionPath": { - "windows": "STM32_Programmer_CLI.exe", - "linux": "STM32_Programmer.sh" + "windows": "bin/STM32_Programmer_CLI.exe", + "linux": "bin/STM32_Programmer.sh" }, "optional": false, "addToSystemPath": true diff --git a/src/plugins/mcusupport/test/iar_stm32f769i_discovery_freertos_json.h b/src/plugins/mcusupport/test/iar_stm32f769i_discovery_freertos_json.h index d378be51564..198d008be81 100644 --- a/src/plugins/mcusupport/test/iar_stm32f769i_discovery_freertos_json.h +++ b/src/plugins/mcusupport/test/iar_stm32f769i_discovery_freertos_json.h @@ -20,12 +20,12 @@ constexpr auto iar_stm32f769i_discovery_freertos_json = R"( "type": "path", "setting": "Stm32CubeProgrammer", "defaultValue": { - "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin", - "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin" + "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/", + "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/" }, "detectionPath": { - "windows": "STM32_Programmer_CLI.exe", - "linux": "STM32_Programmer.sh" + "windows": "bin/STM32_Programmer_CLI.exe", + "linux": "bin/STM32_Programmer.sh" }, "optional": false, "addToSystemPath": true diff --git a/src/plugins/mcusupport/test/iar_stm32h750b_discovery_baremetal_json.h b/src/plugins/mcusupport/test/iar_stm32h750b_discovery_baremetal_json.h index 0e3faaf1884..cec5412f71e 100644 --- a/src/plugins/mcusupport/test/iar_stm32h750b_discovery_baremetal_json.h +++ b/src/plugins/mcusupport/test/iar_stm32h750b_discovery_baremetal_json.h @@ -20,12 +20,12 @@ constexpr auto iar_stm32h750b_discovery_baremetal_json = R"( "type": "path", "setting": "Stm32CubeProgrammer", "defaultValue": { - "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin", - "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/bin" + "windows": "%{Env:PROGRAMFILES}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/", + "linux": "%{Env:HOME}/STMicroelectronics/STM32Cube/STM32CubeProgrammer/" }, "detectionPath": { - "windows": "STM32_Programmer_CLI.exe", - "linux": "STM32_Programmer.sh" + "windows": "bin/STM32_Programmer_CLI.exe", + "linux": "bin/STM32_Programmer.sh" }, "optional": false, "addToSystemPath": true diff --git a/src/plugins/mcusupport/test/unittest.cpp b/src/plugins/mcusupport/test/unittest.cpp index b6fe45d2aeb..d1749bf3066 100644 --- a/src/plugins/mcusupport/test/unittest.cpp +++ b/src/plugins/mcusupport/test/unittest.cpp @@ -141,10 +141,10 @@ const QString xpressoIdeDetectionPath{ const char stmCubeProgrammerSetting[]{"Stm32CubeProgrammer"}; const char stmCubeProgrammerLabel[]{"STM32CubeProgrammer"}; -const QString stmCubeProgrammerPath{QString{defaultToolPath} + "/bin"}; +const QString stmCubeProgrammerPath{defaultToolPath}; const QString stmCubeProgrammerDetectionPath{HostOsInfo::isWindowsHost() - ? QString("STM32_Programmer_CLI.exe") - : QString("STM32_Programmer.sh")}; + ? QString("bin/STM32_Programmer_CLI.exe") + : QString("bin/STM32_Programmer.sh")}; const char renesasProgrammerSetting[]{"RenesasFlashProgrammer"}; const char renesasProgrammerCmakeVar[]{"RENESAS_FLASH_PROGRAMMER_PATH"}; @@ -1703,31 +1703,43 @@ void McuSupportTest::test_addToSystemPathFlag() void McuSupportTest::test_processWildcards_data() { QTest::addColumn("package_label"); - QTest::addColumn("path"); - QTest::addColumn("isFile"); + QTest::addColumn("expected_path"); + QTest::addColumn("paths"); - QTest::newRow("\"*\" at the end") << "FAKE_WILDCARD_TEST_1" - << "folder-123" << false; - QTest::newRow("\"*\" in the middle") << "FAKE_WILDCARD_TEST_2" - << "file-123.exe" << true; - QTest::newRow("\"*\" at the start") << "FAKE_WILDCARD_TEST_3" - << "123-file.exe" << true; + QTest::newRow("wildcard_at_the_end") << "FAKE_WILDCARD_TEST_1" << "folder-123" << QStringList {"folder-123/" }; + QTest::newRow("wildcard_in_th_middle") << "FAKE_WILDCARD_TEST_2" << "file-123.exe" << QStringList {"file-123.exe"}; + QTest::newRow("wildcard_at_the_end") << "FAKE_WILDCARD_TEST_3" << "123-file.exe" << QStringList( "123-file.exe"); + QTest::newRow("multi_wildcards") + << "FAKE_WILDCARD_TEST_MULTI" + << "2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64" + << QStringList{ + "2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/x64/", + "2019/Alpha/Beta/Gamma/", + "2019/Community/VC/Tools/MSVC/", + "2019/Community/VC/Tools/MSVC/14.29.30133/bin/", + "2019/Community/VC/Tools/MSVC/14.29.30133/bin/Hostx64/", + "2019/Enterprise/VC/Tools/MSVC/", + }; } void McuSupportTest::test_processWildcards() { QFETCH(QString, package_label); - QFETCH(QString, path); - QFETCH(bool, isFile); + QFETCH(QString, expected_path); + QFETCH(QStringList, paths); - QVERIFY(createFakePath(testing_output_dir / "wildcards" / path, isFile)); + for (const auto &path : paths) + QVERIFY(createFakePath(testing_output_dir / "wildcards" / path, !path.endsWith("/"))); auto [targets, packages] = createTestingKitTargetsAndPackages(wildcards_test_kit); auto testWildcardsPackage = findOrDefault(packages, [&](const McuPackagePtr &pkg) { return (pkg->label() == package_label); }); QVERIFY(testWildcardsPackage != nullptr); - QCOMPARE(testWildcardsPackage->path().toString(), FilePath(testing_output_dir / "wildcards" / path).toString()); + QVERIFY(paths.size() > 0); + // FilePaths with "/" at the end and without it evaluate to different paths. + QCOMPARE(testWildcardsPackage->path(), + FilePath(testing_output_dir / "wildcards" / expected_path)); } void McuSupportTest::test_nonemptyVersionDetector() diff --git a/src/plugins/mcusupport/test/wildcards_test_kit_json.h b/src/plugins/mcusupport/test/wildcards_test_kit_json.h index 6737c39f56c..4efda64e42f 100644 --- a/src/plugins/mcusupport/test/wildcards_test_kit_json.h +++ b/src/plugins/mcusupport/test/wildcards_test_kit_json.h @@ -34,6 +34,13 @@ constexpr auto wildcards_test_kit = R"( "defaultValue": "%{MCU_TESTING_FOLDER}/wildcards/*-file.exe", "envVar": "", "type": "path" + }, + { + "label": "FAKE_WILDCARD_TEST_MULTI", + "description": "Assert '*' is replaced by possible values", + "defaultValue": "%{MCU_TESTING_FOLDER}/wildcards/2019/*/VC/Tools/MSVC/*/bin/Hostx64/x64", + "envVar": "", + "type": "path" } ] }, diff --git a/src/plugins/mesonprojectmanager/toolkitaspectwidget.cpp b/src/plugins/mesonprojectmanager/toolkitaspectwidget.cpp index 95637f15ed0..2c3de58c70e 100644 --- a/src/plugins/mesonprojectmanager/toolkitaspectwidget.cpp +++ b/src/plugins/mesonprojectmanager/toolkitaspectwidget.cpp @@ -61,6 +61,8 @@ void ToolKitAspectWidget::removeTool(const MesonTools::Tool_t &tool) void ToolKitAspectWidget::setCurrentToolIndex(int index) { + if (m_toolsComboBox->count() == 0) + return; const Utils::Id id = Utils::Id::fromSetting(m_toolsComboBox->itemData(index)); if (m_type == ToolType::Meson) MesonToolKitAspect::setMesonTool(m_kit, id); diff --git a/src/plugins/projectexplorer/buildstep.cpp b/src/plugins/projectexplorer/buildstep.cpp index 070e8f3b545..4088ce3d0b4 100644 --- a/src/plugins/projectexplorer/buildstep.cpp +++ b/src/plugins/projectexplorer/buildstep.cpp @@ -295,7 +295,7 @@ QVariant BuildStep::data(Id id) const immutable steps are run. The default implementation returns \c false. */ -void BuildStep::runInThread(const std::function &syncImpl) +QFuture BuildStep::runInThread(const std::function &syncImpl) { m_runInGuiThread = false; m_cancelFlag = false; @@ -304,7 +304,9 @@ void BuildStep::runInThread(const std::function &syncImpl) emit finished(watcher->result()); watcher->deleteLater(); }); - watcher->setFuture(Utils::runAsync(syncImpl)); + auto future = Utils::runAsync(syncImpl); + watcher->setFuture(future); + return future; } std::function BuildStep::cancelChecker() const diff --git a/src/plugins/projectexplorer/buildstep.h b/src/plugins/projectexplorer/buildstep.h index 79ae4a60bce..0f5def37bd4 100644 --- a/src/plugins/projectexplorer/buildstep.h +++ b/src/plugins/projectexplorer/buildstep.h @@ -10,6 +10,7 @@ #include +#include #include #include @@ -117,7 +118,7 @@ signals: protected: virtual QWidget *createConfigWidget(); - void runInThread(const std::function &syncImpl); + QFuture runInThread(const std::function &syncImpl); std::function cancelChecker() const; bool isCanceled() const; diff --git a/src/plugins/projectexplorer/jsonwizard/jsonwizard.cpp b/src/plugins/projectexplorer/jsonwizard/jsonwizard.cpp index 6ec0b1b5440..a635a45c05f 100644 --- a/src/plugins/projectexplorer/jsonwizard/jsonwizard.cpp +++ b/src/plugins/projectexplorer/jsonwizard/jsonwizard.cpp @@ -423,7 +423,7 @@ QString JsonWizard::evaluate(const QVariant &v) const void JsonWizard::openFiles(const JsonWizard::GeneratorFiles &files) { QString errorMessage; - bool openedSomething = false; + bool openedSomething = stringValue("DoNotOpenFile") == "true"; for (const JsonWizard::GeneratorFile &f : files) { const Core::GeneratedFile &file = f.file; if (!file.filePath().exists()) { diff --git a/src/plugins/projectexplorer/project.cpp b/src/plugins/projectexplorer/project.cpp index de503fff874..afb7eca08c0 100644 --- a/src/plugins/projectexplorer/project.cpp +++ b/src/plugins/projectexplorer/project.cpp @@ -109,6 +109,10 @@ const Project::NodeMatcher Project::GeneratedFiles = [](const Node *node) { return isListedFileNode(node) && node->isGenerated(); }; +const Project::NodeMatcher Project::HiddenRccFolders = [](const Node *node) { + return node->isFolderNodeType() && node->filePath().fileName() == ".rcc"; +}; + // -------------------------------------------------------------------- // ProjectDocument: // -------------------------------------------------------------------- diff --git a/src/plugins/projectexplorer/project.h b/src/plugins/projectexplorer/project.h index 2a966f01bc9..1868ea50256 100644 --- a/src/plugins/projectexplorer/project.h +++ b/src/plugins/projectexplorer/project.h @@ -101,6 +101,7 @@ public: static const NodeMatcher AllFiles; static const NodeMatcher SourceFiles; static const NodeMatcher GeneratedFiles; + static const NodeMatcher HiddenRccFolders; Utils::FilePaths files(const NodeMatcher &matcher) const; bool isKnownFile(const Utils::FilePath &filename) const; diff --git a/src/plugins/python/pythonproject.cpp b/src/plugins/python/pythonproject.cpp index a255c5ab5c2..b06b822efa1 100644 --- a/src/plugins/python/pythonproject.cpp +++ b/src/plugins/python/pythonproject.cpp @@ -250,7 +250,8 @@ void PythonBuildSystem::triggerParsing() auto modelManager = QmlJS::ModelManagerInterface::instance(); if (modelManager) { - auto projectInfo = modelManager->defaultProjectInfoForProject(project()); + const auto hiddenRccFolders = project()->files(Project::HiddenRccFolders); + auto projectInfo = modelManager->defaultProjectInfoForProject(project(), hiddenRccFolders); for (const QString &importPath : std::as_const(m_qmlImportPaths)) { const FilePath filePath = FilePath::fromString(importPath); diff --git a/src/plugins/qbsprojectmanager/qbsproject.cpp b/src/plugins/qbsprojectmanager/qbsproject.cpp index 1249025387a..c9e69b5fdcb 100644 --- a/src/plugins/qbsprojectmanager/qbsproject.cpp +++ b/src/plugins/qbsprojectmanager/qbsproject.cpp @@ -1052,8 +1052,9 @@ void QbsBuildSystem::updateQmlJsCodeModel() QmlJS::ModelManagerInterface *modelManager = QmlJS::ModelManagerInterface::instance(); if (!modelManager) return; - QmlJS::ModelManagerInterface::ProjectInfo projectInfo = - modelManager->defaultProjectInfoForProject(project()); + QmlJS::ModelManagerInterface::ProjectInfo projectInfo + = modelManager->defaultProjectInfoForProject(project(), + project()->files(Project::HiddenRccFolders)); const QJsonObject projectData = session()->projectData(); if (projectData.isEmpty()) @@ -1068,7 +1069,7 @@ void QbsBuildSystem::updateQmlJsCodeModel() }); project()->setProjectLanguage(ProjectExplorer::Constants::QMLJS_LANGUAGE_ID, - !projectInfo.sourceFiles.isEmpty()); + !projectInfo.sourceFiles.isEmpty()); modelManager->updateProjectInfo(projectInfo, project()); } diff --git a/src/plugins/qmakeprojectmanager/qmakeproject.cpp b/src/plugins/qmakeprojectmanager/qmakeproject.cpp index 47adf657e9a..12176bb6194 100644 --- a/src/plugins/qmakeprojectmanager/qmakeproject.cpp +++ b/src/plugins/qmakeprojectmanager/qmakeproject.cpp @@ -410,8 +410,9 @@ void QmakeBuildSystem::updateQmlJSCodeModel() if (!modelManager) return; - QmlJS::ModelManagerInterface::ProjectInfo projectInfo = - modelManager->defaultProjectInfoForProject(project()); + QmlJS::ModelManagerInterface::ProjectInfo projectInfo + = modelManager->defaultProjectInfoForProject(project(), + project()->files(Project::HiddenRccFolders)); const QList proFiles = rootProFile()->allProFiles(); diff --git a/src/plugins/qmldesigner/components/assetslibrary/assetslibrarymodel.cpp b/src/plugins/qmldesigner/components/assetslibrary/assetslibrarymodel.cpp index e0ebc81b377..e18ce4352f0 100644 --- a/src/plugins/qmldesigner/components/assetslibrary/assetslibrarymodel.cpp +++ b/src/plugins/qmldesigner/components/assetslibrary/assetslibrarymodel.cpp @@ -11,6 +11,7 @@ #include #include #include +#include #include @@ -64,6 +65,13 @@ bool AssetsLibraryModel::loadExpandedState(const QString &assetPath) return m_expandedStateHash.value(assetPath, true); } +bool AssetsLibraryModel::isEffectQmlExist(const QString &effectName) +{ + Utils::FilePath effectsResDir = ModelNodeOperations::getEffectsDirectory(); + Utils::FilePath qmlPath = effectsResDir.resolvePath(effectName + "/" + effectName + ".qml"); + return qmlPath.exists(); +} + AssetsLibraryModel::DirExpandState AssetsLibraryModel::getAllExpandedState() const { const auto keys = m_expandedStateHash.keys(); diff --git a/src/plugins/qmldesigner/components/assetslibrary/assetslibrarymodel.h b/src/plugins/qmldesigner/components/assetslibrary/assetslibrarymodel.h index 82dd1568d57..c7d3ee493b4 100644 --- a/src/plugins/qmldesigner/components/assetslibrary/assetslibrarymodel.h +++ b/src/plugins/qmldesigner/components/assetslibrary/assetslibrarymodel.h @@ -52,6 +52,8 @@ public: static void saveExpandedState(bool expanded, const QString &assetPath); static bool loadExpandedState(const QString &assetPath); + static bool isEffectQmlExist(const QString &effectName); + enum class DirExpandState { SomeExpanded, AllExpanded, diff --git a/src/plugins/qmldesigner/components/assetslibrary/assetslibrarywidget.cpp b/src/plugins/qmldesigner/components/assetslibrary/assetslibrarywidget.cpp index c7493a64bb6..a335227e47d 100644 --- a/src/plugins/qmldesigner/components/assetslibrary/assetslibrarywidget.cpp +++ b/src/plugins/qmldesigner/components/assetslibrary/assetslibrarywidget.cpp @@ -24,7 +24,6 @@ #include #include "utils/environment.h" #include "utils/filepath.h" -#include "utils/qtcprocess.h" #include #include @@ -50,9 +49,6 @@ #include #include -#include -#include - namespace QmlDesigner { static QString propertyEditorResourcesPath() @@ -242,44 +238,7 @@ QSet AssetsLibraryWidget::supportedAssetSuffixes(bool complex) void AssetsLibraryWidget::openEffectMaker(const QString &filePath) { - const ProjectExplorer::Target *target = ProjectExplorer::ProjectTree::currentTarget(); - if (!target) { - qWarning() << __FUNCTION__ << "No project open"; - return; - } - - Utils::FilePath projectPath = target->project()->projectDirectory(); - QString effectName = QFileInfo(filePath).baseName(); - QString effectResDir = "asset_imports/Effects/" + effectName; - Utils::FilePath effectResPath = projectPath.resolvePath(effectResDir); - if (!effectResPath.exists()) - QDir(projectPath.toString()).mkpath(effectResDir); - - const QtSupport::QtVersion *baseQtVersion = QtSupport::QtKitAspect::qtVersion(target->kit()); - if (baseQtVersion) { - auto effectMakerPath = baseQtVersion->binPath().pathAppended("QQEffectMaker").withExecutableSuffix(); - if (!effectMakerPath.exists()) { - qWarning() << __FUNCTION__ << "Cannot find EffectMaker app"; - return; - } - - Utils::FilePath effectPath = Utils::FilePath::fromString(filePath); - QString effectContents = QString::fromUtf8(effectPath.fileContents().value_or(QByteArray())); - QStringList arguments; - arguments << filePath; - if (effectContents.isEmpty()) - arguments << "--create"; - arguments << "--exportpath" << effectResPath.toString(); - - Utils::Environment env = Utils::Environment::systemEnvironment(); - if (env.osType() == Utils::OsTypeMac) - env.appendOrSet("QSG_RHI_BACKEND", "metal"); - - m_qqemProcess.reset(new Utils::QtcProcess); - m_qqemProcess->setEnvironment(env); - m_qqemProcess->setCommand({ effectMakerPath, arguments }); - m_qqemProcess->start(); - } + ModelNodeOperations::openEffectMaker(filePath); } void AssetsLibraryWidget::setModel(Model *model) diff --git a/src/plugins/qmldesigner/components/assetslibrary/assetslibrarywidget.h b/src/plugins/qmldesigner/components/assetslibrary/assetslibrarywidget.h index dad53e4e731..8ac41a44a36 100644 --- a/src/plugins/qmldesigner/components/assetslibrary/assetslibrarywidget.h +++ b/src/plugins/qmldesigner/components/assetslibrary/assetslibrarywidget.h @@ -22,7 +22,6 @@ QT_END_NAMESPACE namespace Utils { class FileSystemWatcher; - class QtcProcess; } namespace QmlDesigner { @@ -96,8 +95,6 @@ private: bool m_updateRetry = false; QString m_filterText; QPoint m_dragStartPoint; - - std::unique_ptr m_qqemProcess; }; } // namespace QmlDesigner diff --git a/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.cpp b/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.cpp index 78118e8f8bb..27a18a09b56 100644 --- a/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.cpp +++ b/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.cpp @@ -47,11 +47,15 @@ #include #include #include -#include "projectexplorer/session.h" +#include "projectexplorer/target.h" + +#include +#include #include #include #include +#include "utils/qtcprocess.h" #include #include @@ -1621,6 +1625,51 @@ void updateImported3DAsset(const SelectionContext &selectionContext) } } +void openEffectMaker(const QString &filePath) +{ + const ProjectExplorer::Target *target = ProjectExplorer::ProjectTree::currentTarget(); + if (!target) { + qWarning() << __FUNCTION__ << "No project open"; + return; + } + + Utils::FilePath projectPath = target->project()->projectDirectory(); + QString effectName = QFileInfo(filePath).baseName(); + QString effectResDir = "asset_imports/Effects/" + effectName; + Utils::FilePath effectResPath = projectPath.resolvePath(effectResDir); + if (!effectResPath.exists()) + QDir(projectPath.toString()).mkpath(effectResDir); + + const QtSupport::QtVersion *baseQtVersion = QtSupport::QtKitAspect::qtVersion(target->kit()); + if (baseQtVersion) { + auto effectMakerPath = baseQtVersion->binPath().pathAppended("QQEffectMaker").withExecutableSuffix(); + if (!effectMakerPath.exists()) { + qWarning() << __FUNCTION__ << "Cannot find EffectMaker app"; + return; + } + + Utils::FilePath effectPath = Utils::FilePath::fromString(filePath); + QStringList arguments; + arguments << filePath; + if (effectPath.fileContents()) + arguments << "--create"; + arguments << "--exportpath" << effectResPath.toString(); + + Utils::Environment env = Utils::Environment::systemEnvironment(); + if (env.osType() == Utils::OsTypeMac) + env.appendOrSet("QSG_RHI_BACKEND", "metal"); + + Utils::QtcProcess *qqemProcess = new Utils::QtcProcess(); + qqemProcess->setEnvironment(env); + qqemProcess->setCommand({ effectMakerPath, arguments }); + qqemProcess->start(); + + QObject::connect(qqemProcess, &Utils::QtcProcess::done, [qqemProcess]() { + qqemProcess->deleteLater(); + }); + } +} + Utils::FilePath getEffectsDirectory() { QString defaultDir = "asset_imports/Effects"; diff --git a/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.h b/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.h index 6ea503bc846..c883edc8f03 100644 --- a/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.h +++ b/src/plugins/qmldesigner/components/componentcore/modelnodeoperations.h @@ -79,10 +79,11 @@ void openSignalDialog(const SelectionContext &selectionContext); void updateImported3DAsset(const SelectionContext &selectionContext); QMLDESIGNERCORE_EXPORT Utils::FilePath getEffectsDirectory(); +void openEffectMaker(const QString &filePath); // ModelNodePreviewImageOperations QVariant previewImageDataForGenericNode(const ModelNode &modelNode); QVariant previewImageDataForImageNode(const ModelNode &modelNode); -} // namespace ModelNodeOperationso +} // namespace ModelNodeOperations } //QmlDesigner diff --git a/src/plugins/qmldesigner/components/formeditor/dragtool.cpp b/src/plugins/qmldesigner/components/formeditor/dragtool.cpp index 735a88f7d7d..1ab170fc1c3 100644 --- a/src/plugins/qmldesigner/components/formeditor/dragtool.cpp +++ b/src/plugins/qmldesigner/components/formeditor/dragtool.cpp @@ -6,7 +6,9 @@ #include "formeditorscene.h" #include "formeditorview.h" #include "assetslibrarywidget.h" +#include "assetslibrarymodel.h" #include +#include #include #include #include "qmldesignerconstants.h" @@ -19,6 +21,7 @@ #include #include #include +#include static Q_LOGGING_CATEGORY(dragToolInfo, "qtc.qmldesigner.formeditor", QtWarningMsg); @@ -242,9 +245,31 @@ void DragTool::dropEvent(const QList &itemList, QGraphicsSceneD if (targetContainerFormEditorItem) { QmlItemNode parentQmlItemNode = targetContainerFormEditorItem->qmlItemNode(); QString effectName = QFileInfo(effectPath).baseName(); - QmlItemNode effectNode = QmlItemNode::createQmlItemNodeForEffect(view(), parentQmlItemNode, effectName); - view()->setSelectedModelNodes({effectNode}); + if (!AssetsLibraryModel::isEffectQmlExist(effectName)) { + QMessageBox msgBox; + msgBox.setText("Effect " + effectName + " is empty"); + msgBox.setInformativeText("Do you want to edit " + effectName + "?"); + msgBox.setStandardButtons(QMessageBox::No |QMessageBox::Yes); + msgBox.setDefaultButton(QMessageBox::Yes); + msgBox.setIcon(QMessageBox::Question); + int ret = msgBox.exec(); + switch (ret) { + case QMessageBox::Yes: + ModelNodeOperations::openEffectMaker(effectPath); + break; + default: + break; + } + + event->ignore(); + return; + } + + QmlItemNode effectNode = QmlItemNode:: + createQmlItemNodeForEffect(view(), parentQmlItemNode, effectName); + + view()->setSelectedModelNodes({parentQmlItemNode}); view()->resetPuppet(); commitTransaction(); diff --git a/src/plugins/qmldesigner/designercore/model/qmlitemnode.cpp b/src/plugins/qmldesigner/designercore/model/qmlitemnode.cpp index 09e4c4ab0f3..7a818808158 100644 --- a/src/plugins/qmldesigner/designercore/model/qmlitemnode.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmlitemnode.cpp @@ -13,6 +13,8 @@ #include #include +#include + #include #include #include @@ -151,12 +153,22 @@ QmlItemNode QmlItemNode::createQmlItemNodeFromFont(AbstractView *view, return newQmlItemNode; } +static bool useLayerEffect() +{ + QSettings *settings = Core::ICore::settings(); + const QString layerEffectEntry = "QML/Designer/UseLayerEffect"; + + return settings->value(layerEffectEntry, true).toBool(); +} + QmlItemNode QmlItemNode::createQmlItemNodeForEffect(AbstractView *view, const QmlItemNode &parentNode, const QString &effectName) { QmlItemNode newQmlItemNode; + const bool layerEffect = useLayerEffect(); + QmlDesigner::Import import = Import::createLibraryImport("Effects." + effectName, "1.0"); try { if (!view->model()->hasImport(import, true, true)) @@ -167,11 +179,17 @@ QmlItemNode QmlItemNode::createQmlItemNodeForEffect(AbstractView *view, TypeName type(effectName.toUtf8()); newQmlItemNode = QmlItemNode(view->createModelNode(type, 1, 0)); - NodeAbstractProperty parentProperty = parentNode.defaultNodeAbstractProperty(); + NodeAbstractProperty parentProperty = layerEffect + ? parentNode.nodeAbstractProperty("layer.effect") + : parentNode.defaultNodeAbstractProperty(); parentProperty.reparentHere(newQmlItemNode); - newQmlItemNode.modelNode().bindingProperty("source").setExpression("parent"); - newQmlItemNode.modelNode().bindingProperty("anchors.fill").setExpression("parent"); + if (!layerEffect) { + newQmlItemNode.modelNode().bindingProperty("source").setExpression("parent"); + newQmlItemNode.modelNode().bindingProperty("anchors.fill").setExpression("parent"); + } else { + parentNode.modelNode().variantProperty("layer.enabled").setValue(true); + } QTC_ASSERT(newQmlItemNode.isValid(), return QmlItemNode()); diff --git a/src/plugins/qmldesigner/qmldesignerplugin.cpp b/src/plugins/qmldesigner/qmldesignerplugin.cpp index f4620afc398..f5a6cfa2dec 100644 --- a/src/plugins/qmldesigner/qmldesignerplugin.cpp +++ b/src/plugins/qmldesigner/qmldesignerplugin.cpp @@ -2,6 +2,7 @@ // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0 #include "qmldesignerplugin.h" +#include "coreplugin/iwizardfactory.h" #include "designmodecontext.h" #include "designmodewidget.h" #include "dynamiclicensecheck.h" @@ -41,8 +42,10 @@ #include #include #include +#include #include #include +#include #include #include #include @@ -54,19 +57,19 @@ #include #include +#include #include #include -#include #include -#include +#include #include -#include #include #include #include +#include #include -#include +#include #include "nanotrace/nanotrace.h" #include @@ -79,6 +82,17 @@ namespace QmlDesigner { namespace Internal { +class EnterpriseFeatureProvider : public Core::IFeatureProvider +{ +public: + QSet availableFeatures(Utils::Id id) const override + { + return {"QmlDesigner.Wizards.Enterprise"}; + } + QSet availablePlatforms() const override { return {}; } + QString displayNameForPlatform(Utils::Id id) const override { return {}; } +}; + QString normalizeIdentifier(const QString &string) { if (string.isEmpty()) @@ -232,6 +246,8 @@ bool QmlDesignerPlugin::initialize(const QStringList & /*arguments*/, QString *e //TODO Move registering those types out of the property editor, since they are used also in the states editor Quick2PropertyEditorView::registerQmlTypes(); + if (QmlDesigner::checkLicense() == QmlDesigner::FoundLicense::enterprise) + Core::IWizardFactory::registerFeatureProvider(new EnterpriseFeatureProvider); Exception::setWarnAboutException(!QmlDesignerPlugin::instance() ->settings() .value(DesignerSettingsKey::ENABLE_MODEL_EXCEPTION_OUTPUT) diff --git a/src/plugins/qmljseditor/qmljseditorplugin.cpp b/src/plugins/qmljseditor/qmljseditorplugin.cpp index b8be01aee27..109b45a45a9 100644 --- a/src/plugins/qmljseditor/qmljseditorplugin.cpp +++ b/src/plugins/qmljseditor/qmljseditorplugin.cpp @@ -20,22 +20,23 @@ #include #include -#include -#include -#include #include +#include #include +#include #include -#include +#include #include -#include #include +#include +#include +#include #include -#include #include +#include #include -#include #include +#include #include #include @@ -260,24 +261,14 @@ void QmlJSEditorPluginPrivate::reformatFile() tabSettings.m_tabSize, QmlJSTools::QmlJSToolsSettings::globalCodeStyle()->currentCodeStyleSettings().lineLength); - // QTextDocument::setPlainText cannot be used, as it would reset undo/redo history - const auto setNewText = [this, &newText]() { + auto ed = qobject_cast(EditorManager::currentEditor()); + if (ed) { + TextEditor::updateEditorText(ed->editorWidget(), newText); + } else { QTextCursor tc(m_currentDocument->document()); tc.movePosition(QTextCursor::Start); tc.movePosition(QTextCursor::End, QTextCursor::KeepAnchor); tc.insertText(newText); - }; - - IEditor *ed = EditorManager::currentEditor(); - if (ed) { - QByteArray state = ed->saveState(); - int line = ed->currentLine(); - int column = ed->currentColumn(); - setNewText(); - ed->gotoLine(line, column - 1); - ed->restoreState(state); - } else { - setNewText(); } } } diff --git a/src/plugins/qmljstools/qmljsmodelmanager.cpp b/src/plugins/qmljstools/qmljsmodelmanager.cpp index 2970be9f0d2..66b92ebabe0 100644 --- a/src/plugins/qmljstools/qmljsmodelmanager.cpp +++ b/src/plugins/qmljstools/qmljsmodelmanager.cpp @@ -81,8 +81,36 @@ static void setupProjectInfoQmlBundles(ModelManagerInterface::ProjectInfo &proje } } +static void findAllQrcFiles(const FilePath &filePath, FilePaths &out) +{ + filePath.iterateDirectory( + [&out](const FilePath &path) { + out.append(path.canonicalPath()); + return true; + }, + {{"*.qrc"}, QDir::Files}); +} + +static FilePaths findGeneratedQrcFiles(const ModelManagerInterface::ProjectInfo &pInfo, + const FilePaths &hiddenRccFolders) +{ + FilePaths result; + // Search in Application Directories for directories named ".rcc" + // and add all .qrc files in there to the resource file list. + for (const Utils::FilePath &path : pInfo.applicationDirectories) { + Utils::FilePath generatedQrcDir = path.pathAppended(".rcc"); + findAllQrcFiles(generatedQrcDir, result); + } + + for (const Utils::FilePath &hiddenRccFolder : hiddenRccFolders) { + findAllQrcFiles(hiddenRccFolder, result); + } + + return result; +} + ModelManagerInterface::ProjectInfo ModelManager::defaultProjectInfoForProject( - Project *project) const + Project *project, const FilePaths &hiddenRccFolders) const { ModelManagerInterface::ProjectInfo projectInfo; projectInfo.project = project; @@ -187,6 +215,7 @@ ModelManagerInterface::ProjectInfo ModelManager::defaultProjectInfoForProject( } setupProjectInfoQmlBundles(projectInfo); + projectInfo.generatedQrcFiles = findGeneratedQrcFiles(projectInfo, hiddenRccFolders); return projectInfo; } @@ -298,7 +327,7 @@ void ModelManager::updateDefaultProjectInfo() Project *currentProject = SessionManager::startupProject(); setDefaultProject(containsProject(currentProject) ? projectInfo(currentProject) - : defaultProjectInfoForProject(currentProject), + : defaultProjectInfoForProject(currentProject, {}), currentProject); } diff --git a/src/plugins/qmljstools/qmljsmodelmanager.h b/src/plugins/qmljstools/qmljsmodelmanager.h index c8e9d62058b..085d77b95e5 100644 --- a/src/plugins/qmljstools/qmljsmodelmanager.h +++ b/src/plugins/qmljstools/qmljsmodelmanager.h @@ -32,7 +32,8 @@ protected: WorkingCopy workingCopyInternal() const override; void addTaskInternal(const QFuture &result, const QString &msg, const char *taskId) const override; - ProjectInfo defaultProjectInfoForProject(ProjectExplorer::Project *project) const override; + ProjectInfo defaultProjectInfoForProject( + ProjectExplorer::Project *project, const Utils::FilePaths &hiddenRccFolders) const override; private: void updateDefaultProjectInfo(); void loadDefaultQmlTypeDescriptions(); diff --git a/src/plugins/qmlprojectmanager/qmlproject.cpp b/src/plugins/qmlprojectmanager/qmlproject.cpp index 545c5fc36e4..208d2482fc0 100644 --- a/src/plugins/qmlprojectmanager/qmlproject.cpp +++ b/src/plugins/qmlprojectmanager/qmlproject.cpp @@ -311,8 +311,9 @@ void QmlBuildSystem::refresh(RefreshOptions options) if (!modelManager) return; - QmlJS::ModelManagerInterface::ProjectInfo projectInfo = - modelManager->defaultProjectInfoForProject(project()); + QmlJS::ModelManagerInterface::ProjectInfo projectInfo + = modelManager->defaultProjectInfoForProject(project(), + project()->files(Project::HiddenRccFolders)); const QStringList searchPaths = makeAbsolute(canonicalProjectDir(), customImportPaths()); for (const QString &searchPath : searchPaths) projectInfo.importPaths.maybeInsert(Utils::FilePath::fromString(searchPath), diff --git a/src/plugins/remotelinux/tarpackagecreationstep.cpp b/src/plugins/remotelinux/tarpackagecreationstep.cpp index 9255c2e2287..6f33f70e665 100644 --- a/src/plugins/remotelinux/tarpackagecreationstep.cpp +++ b/src/plugins/remotelinux/tarpackagecreationstep.cpp @@ -13,6 +13,8 @@ #include #include +#include + #include #include #include @@ -80,6 +82,8 @@ private: BoolAspect *m_ignoreMissingFilesAspect = nullptr; bool m_packagingNeeded = false; QList m_files; + + FutureSynchronizer m_synchronizer; }; TarPackageCreationStep::TarPackageCreationStep(BuildStepList *bsl, Id id) @@ -126,7 +130,7 @@ bool TarPackageCreationStep::init() void TarPackageCreationStep::doRun() { - runInThread([this] { return runImpl(); }); + m_synchronizer.addFuture(runInThread([this] { return runImpl(); })); } bool TarPackageCreationStep::fromMap(const QVariantMap &map) diff --git a/src/plugins/texteditor/codeassist/iassistprocessor.h b/src/plugins/texteditor/codeassist/iassistprocessor.h index 1835b906516..583f3ae973a 100644 --- a/src/plugins/texteditor/codeassist/iassistprocessor.h +++ b/src/plugins/texteditor/codeassist/iassistprocessor.h @@ -19,7 +19,7 @@ public: virtual ~IAssistProcessor(); virtual IAssistProposal *immediateProposal(const AssistInterface *) { return nullptr; } - virtual IAssistProposal *perform(const AssistInterface *interface) = 0; + virtual IAssistProposal *perform(const AssistInterface *interface) = 0; // takes ownership void setAsyncProposalAvailable(IAssistProposal *proposal); diff --git a/src/plugins/texteditor/formattexteditor.cpp b/src/plugins/texteditor/formattexteditor.cpp index d602ff3d652..0753cf6f201 100644 --- a/src/plugins/texteditor/formattexteditor.cpp +++ b/src/plugins/texteditor/formattexteditor.cpp @@ -132,7 +132,7 @@ static FormatTask format(FormatTask task) * actually changed parts are updated while preserving the cursor position, the folded * blocks, and the scroll bar position. */ -static void updateEditorText(QPlainTextEdit *editor, const QString &text) +void updateEditorText(QPlainTextEdit *editor, const QString &text) { const QString editorText = editor->toPlainText(); if (editorText == text) diff --git a/src/plugins/texteditor/formattexteditor.h b/src/plugins/texteditor/formattexteditor.h index fc974ee9dba..5e4a98d6731 100644 --- a/src/plugins/texteditor/formattexteditor.h +++ b/src/plugins/texteditor/formattexteditor.h @@ -44,5 +44,6 @@ TEXTEDITOR_EXPORT void formatEditor(TextEditorWidget *editor, const TextEditor:: int startPos = -1, int endPos = 0); TEXTEDITOR_EXPORT void formatEditorAsync(TextEditorWidget *editor, const TextEditor::Command &command, int startPos = -1, int endPos = 0); +TEXTEDITOR_EXPORT void updateEditorText(QPlainTextEdit *editor, const QString &text); } // namespace TextEditor diff --git a/src/plugins/texteditor/textdocument.cpp b/src/plugins/texteditor/textdocument.cpp index ed7662cb66b..b6f29946a7b 100644 --- a/src/plugins/texteditor/textdocument.cpp +++ b/src/plugins/texteditor/textdocument.cpp @@ -732,7 +732,7 @@ Core::IDocument::OpenResult TextDocument::open(QString *errorString, emit aboutToOpen(filePath, realFilePath); OpenResult success = openImpl(errorString, filePath, realFilePath, /*reload =*/ false); if (success == OpenResult::Success) { - setMimeType(Utils::mimeTypeForFile(filePath).name()); + setMimeType(Utils::mimeTypeForFile(filePath, MimeMatchMode::MatchDefaultAndRemote).name()); emit openFinishedSuccessfully(); } return success; diff --git a/src/plugins/texteditor/texteditor.cpp b/src/plugins/texteditor/texteditor.cpp index 043405b4df9..f523d4900ef 100644 --- a/src/plugins/texteditor/texteditor.cpp +++ b/src/plugins/texteditor/texteditor.cpp @@ -3343,7 +3343,9 @@ void TextEditorWidgetPrivate::updateFileLineEndingVisible() void TextEditorWidgetPrivate::reconfigure() { - m_document->setMimeType(Utils::mimeTypeForFile(m_document->filePath()).name()); + m_document->setMimeType( + Utils::mimeTypeForFile(m_document->filePath(), + MimeMatchMode::MatchDefaultAndRemote).name()); q->configureGenericHighlighter(); } diff --git a/src/shared/qbs b/src/shared/qbs index 8cfaf76b174..3cc4f248c04 160000 --- a/src/shared/qbs +++ b/src/shared/qbs @@ -1 +1 @@ -Subproject commit 8cfaf76b174a47827eb32255cd1fd1d836a3dd65 +Subproject commit 3cc4f248c048feeea5912360b655ec2b0acea17a diff --git a/tests/system/objects.map b/tests/system/objects.map index ab349732385..e8b28bea061 100644 --- a/tests/system/objects.map +++ b/tests/system/objects.map @@ -14,6 +14,7 @@ :*Qt Creator_Utils::FilterLineEdit {type='Utils::FancyLineEdit' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'} :*Qt Creator_Utils::IconButton {occurrence='4' type='Utils::IconButton' unnamed='1' visible='1' window=':Qt Creator_Core::Internal::MainWindow'} :About Qt Creator_Core::Internal::VersionDialog {type='Core::Internal::VersionDialog' unnamed='1' visible='1' windowTitle='About Qt Creator'} +:Activate completion:_QComboBox {buddy=':Behavior.Activate completion:_QLabel' type='QComboBox' unnamed='1' visible='1'} :Add Bookmark.ExpandBookmarksList_QToolButton {text='+' type='QToolButton' unnamed='1' visible='1' window=':Add Bookmark_BookmarkDialog'} :Add Bookmark.New Folder_QPushButton {text='New Folder' type='QPushButton' unnamed='1' visible='1' window=':Add Bookmark_BookmarkDialog'} :Add Bookmark.OK_QPushButton {text='OK' type='QPushButton' unnamed='1' visible='1' window=':Add Bookmark_BookmarkDialog'} @@ -26,8 +27,8 @@ :Analyzer Toolbar.Clear_QToolButton {container=':DebugModeWidget.Toolbar_QDockWidget' toolTip='Discard data' type='QToolButton' unnamed='1' visible='1'} :Analyzer Toolbar.Elapsed:_QLabel {container=':DebugModeWidget.Toolbar_QDockWidget' text~='Elapsed: \\\\d+.\\\\d s' type='QLabel' unnamed='1' visible='1'} :Analyzer Toolbar.Start_QToolButton {container=':DebugModeWidget.Toolbar_QDockWidget' text='Start' type='QToolButton' unnamed='1' visible='1'} -:Behavior.Autocomplete common prefix_QCheckBox {container=':CppTools__Internal__CompletionSettingsPage.Behavior_QGroupBox' name='partiallyComplete' text='Autocomplete common prefix' type='QCheckBox' visible='1'} -:Behavior.completionTrigger_QComboBox {container=':CppTools__Internal__CompletionSettingsPage.Behavior_QGroupBox' name='completionTrigger' type='QComboBox' visible='1'} +:Behavior.Activate completion:_QLabel {container=':CppTools__Internal__CompletionSettingsPage.Behavior_QGroupBox' text='Activate completion:' type='QLabel' unnamed='1' visible='1'} +:Behavior.Autocomplete common prefix_QCheckBox {container=':CppTools__Internal__CompletionSettingsPage.Behavior_QGroupBox' text='Autocomplete common prefix' type='QCheckBox' unnamed='1' visible='1'} :Breakpoints_Debugger::Internal::BreakTreeView {container=':Debugger.Docks.BreakDockWidget.Debugger.Docks.Break_QFrame' type='Utils::BaseTreeView' unnamed='1' visible='1'} :Build and Run.Save all files before build_QCheckBox {container=':Build and Run_QGroupBox' text='Save all files before build' type='QCheckBox' unnamed='1' visible='1'} :Build and Run_QGroupBox {container=':qt_tabwidget_stackedwidget_QScrollArea' name='Build and Run' type='QGroupBox' visible='1'} @@ -43,7 +44,7 @@ :Core__Internal__GeneralSettings.User Interface_QGroupBox {container=':qt_tabwidget_stackedwidget.Core__Internal__GeneralSettings_QWidget' name='interfaceBox' title='User Interface' type='QGroupBox' visible='1'} :CppCompiler:_QComboBox {container=':qt_tabwidget_stackedwidget_QWidget' leftWidget=':CppCompiler:_QLabel' type='QComboBox' unnamed='1' visible='1'} :CppCompiler:_QLabel {container=':qt_tabwidget_stackedwidget_QWidget' text='C++:' type='QLabel' unnamed='1' visible='1'} -:CppTools__Internal__CompletionSettingsPage.Behavior_QGroupBox {container=':qt_tabwidget_stackedwidget_QScrollArea' name='groupBox' title='Behavior' type='QGroupBox' visible='1'} +:CppTools__Internal__CompletionSettingsPage.Behavior_QGroupBox {container=':qt_tabwidget_stackedwidget_QScrollArea' name='Behavior' type='QGroupBox' visible='1'} :DebugModeWidget.Debugger Log_QDockWidget {container=':Qt Creator.DebugModeWidget_QSplitter' name='GlobalLogDockWidget' type='QDockWidget' visible='1'} :DebugModeWidget.Debugger.Docks.BreakDockWidget_QDockWidget {container=':Qt Creator.DebugModeWidget_QSplitter' name='Debugger.Docks.BreakpointManagerDockWidget' type='QDockWidget' visible='1'} :DebugModeWidget.Debugger.Docks.LocalsAndInspectorDockWidget_QDockWidget {container=':Qt Creator.DebugModeWidget_QSplitter' name~='Debugger\\\\.Dock\\\\.LocalsAndInspector\\\\.\\\\d+DockWidget' type='QDockWidget' visible='1'} diff --git a/tests/system/shared/suites_qtta.py b/tests/system/shared/suites_qtta.py index c9b9cd2dd7f..9bd38c6e7c9 100644 --- a/tests/system/shared/suites_qtta.py +++ b/tests/system/shared/suites_qtta.py @@ -44,7 +44,7 @@ def changeAutocompleteToManual(toManual=True): activateCompletion = "Always" if toManual: activateCompletion = "Manually" - selectFromCombo(":Behavior.completionTrigger_QComboBox", activateCompletion) + selectFromCombo(":Activate completion:_QComboBox", activateCompletion) verifyEnabled(":Options.OK_QPushButton") clickButton(waitForObject(":Options.OK_QPushButton")) diff --git a/tests/system/suite_CSUP/tst_CSUP04/test.py b/tests/system/suite_CSUP/tst_CSUP04/test.py index 19113be7af3..a60dac705f0 100644 --- a/tests/system/suite_CSUP/tst_CSUP04/test.py +++ b/tests/system/suite_CSUP/tst_CSUP04/test.py @@ -53,6 +53,6 @@ def main(): type(editorWidget, "") # wait until search finished and verify search results waitForSearchResults() - validateSearchResult(5 if JIRA.isBugStillOpen(2863) else 3) + validateSearchResult(3 if useClang else 5) invokeMenuItem("File", "Exit") waitForCleanShutdown()