From 472e25025f7afa222ed0d99378741abe513f1334 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Wed, 8 Apr 2009 16:35:56 +0200 Subject: [PATCH] Start on the German (prototypical) translation. --- src/libs/utils/newclasswidget.cpp | 6 +- src/plugins/coreplugin/basefilewizard.cpp | 2 +- .../genericprojectmanager/genericproject.cpp | 3 +- .../projectexplorer/dependenciespanel.cpp | 5 +- src/shared/qrceditor/test/mainwindow.cpp | 26 +- src/tools/qtcreatorwidgets/customwidgets.cpp | 20 +- translations/qtcreator_de.ts | 10892 ++++++++++++++++ 7 files changed, 10924 insertions(+), 30 deletions(-) create mode 100644 translations/qtcreator_de.ts diff --git a/src/libs/utils/newclasswidget.cpp b/src/libs/utils/newclasswidget.cpp index 5e3f2d93d96..9e16d1fd644 100644 --- a/src/libs/utils/newclasswidget.cpp +++ b/src/libs/utils/newclasswidget.cpp @@ -397,20 +397,20 @@ bool NewClassWidget::isValid(QString *error) const if (!m_d->m_ui.headerFileLineEdit->isValid()) { if (error) - *error = tr("Invalid header file name: %1").arg(m_d->m_ui.headerFileLineEdit->errorMessage()); + *error = tr("Invalid header file name: '%1'").arg(m_d->m_ui.headerFileLineEdit->errorMessage()); return false; } if (!m_d->m_ui.sourceFileLineEdit->isValid()) { if (error) - *error = tr("Invalid source file name: %1").arg(m_d->m_ui.sourceFileLineEdit->errorMessage()); + *error = tr("Invalid source file name: '%1'").arg(m_d->m_ui.sourceFileLineEdit->errorMessage()); return false; } if (isFormInputVisible()) { if (!m_d->m_ui.formFileLineEdit->isValid()) { if (error) - *error = tr("Invalid form file name: %1").arg(m_d->m_ui.formFileLineEdit->errorMessage()); + *error = tr("Invalid form file name: '%1'").arg(m_d->m_ui.formFileLineEdit->errorMessage()); return false; } } diff --git a/src/plugins/coreplugin/basefilewizard.cpp b/src/plugins/coreplugin/basefilewizard.cpp index cc8cd27e348..7fb0295bb62 100644 --- a/src/plugins/coreplugin/basefilewizard.cpp +++ b/src/plugins/coreplugin/basefilewizard.cpp @@ -509,7 +509,7 @@ bool BaseFileWizard::postGenerateFiles(const GeneratedFiles &l, QString *errorMe Core::EditorManager *em = Core::EditorManager::instance(); for (Core::GeneratedFiles::const_iterator it = l.constBegin(); it != cend; ++it) { if (!em->openEditor(it->path(), it->editorKind())) { - *errorMessage = tr("Failed to open an editor for %1").arg(it->path()); + *errorMessage = tr("Failed to open an editor for '%1'.").arg(it->path()); return false; } } diff --git a/src/plugins/genericprojectmanager/genericproject.cpp b/src/plugins/genericprojectmanager/genericproject.cpp index 0825fb80e6d..ccd001ab189 100644 --- a/src/plugins/genericprojectmanager/genericproject.cpp +++ b/src/plugins/genericprojectmanager/genericproject.cpp @@ -43,6 +43,7 @@ #include #include #include +#include #include #include @@ -86,7 +87,7 @@ public: { if (role == Qt::DisplayRole || role == Qt::EditRole) { if (index.row() == stringList().size()) - return tr(""); + return QCoreApplication::translate("GenericProject", ""); } return QStringListModel::data(index, role); diff --git a/src/plugins/projectexplorer/dependenciespanel.cpp b/src/plugins/projectexplorer/dependenciespanel.cpp index d3eb7d810c5..78598c4f3a0 100644 --- a/src/plugins/projectexplorer/dependenciespanel.cpp +++ b/src/plugins/projectexplorer/dependenciespanel.cpp @@ -39,6 +39,7 @@ #include #include #include +#include namespace ProjectExplorer { namespace Internal { @@ -115,8 +116,8 @@ bool DependenciesModel::setData(const QModelIndex &index, const QVariant &value, emit dataChanged(index, index); return true; } else { - QMessageBox::warning(0, tr("Unable to add dependency"), - tr("This would create a circular dependency.")); + QMessageBox::warning(0, QCoreApplication::translate("DependenciesModel", "Unable to add dependency"), + QCoreApplication::translate("DependenciesModel", "This would create a circular dependency.")); } } else if (c == Qt::Unchecked) { if (m_session->hasDependency(m_project, p)) { diff --git a/src/shared/qrceditor/test/mainwindow.cpp b/src/shared/qrceditor/test/mainwindow.cpp index dea3cd7834b..a486aa80f7c 100644 --- a/src/shared/qrceditor/test/mainwindow.cpp +++ b/src/shared/qrceditor/test/mainwindow.cpp @@ -41,16 +41,16 @@ MainWindow::MainWindow() : m_qrcEditor(new SharedTools::QrcEditor()) { m_qrcEditor->setResourceDragEnabled(true); - setWindowTitle(tr("Test resource editor")); - QMenu* fMenu = menuBar()->addMenu(tr("File")); + setWindowTitle(QLatin1String("Test resource editor")); + QMenu* fMenu = menuBar()->addMenu(QLatin1String("File")); - QAction* oa = fMenu->addAction(tr("Open...")); + QAction* oa = fMenu->addAction(QLatin1String("Open...")); connect(oa, SIGNAL(triggered()), this, SLOT(slotOpen())); - QAction* sa = fMenu->addAction(tr("Save")); + QAction* sa = fMenu->addAction(QLatin1String("Save")); connect(sa, SIGNAL(triggered()), this, SLOT(slotSave())); - QAction* xa = fMenu->addAction(tr("Exit!")); + QAction* xa = fMenu->addAction(QLatin1String("Exit!")); connect(xa, SIGNAL(triggered()), this, SLOT(close())); @@ -63,16 +63,16 @@ MainWindow::MainWindow() : void MainWindow::slotOpen() { - const QString fileName = QFileDialog::getOpenFileName(this, tr("Choose resource file"), + const QString fileName = QFileDialog::getOpenFileName(this, QLatin1String("Choose resource file"), QString(), - tr("Resource files (*.qrc)")); + QLatin1String("Resource files (*.qrc)")); if (fileName.isEmpty()) return; if (m_qrcEditor->load(fileName)) - statusBar()->showMessage(tr("%1 opened").arg(fileName)); + statusBar()->showMessage(QString::fromLatin1("%1 opened").arg(fileName)); else - statusBar()->showMessage(tr("Unable to open %1!").arg(fileName)); + statusBar()->showMessage(QString::fromLatin1("Unable to open %1!").arg(fileName)); } void MainWindow::slotSave() @@ -81,18 +81,18 @@ void MainWindow::slotSave() QString fileName = oldFileName; if (fileName.isEmpty()) { - fileName = QFileDialog::getSaveFileName(this, tr("Save resource file"), + fileName = QFileDialog::getSaveFileName(this, QLatin1String("Save resource file"), QString(), - tr("Resource files (*.qrc)")); + QLatin1String("Resource files (*.qrc)")); if (fileName.isEmpty()) return; } m_qrcEditor->setFileName(fileName); if (m_qrcEditor->save()) - statusBar()->showMessage(tr("%1 written").arg(fileName)); + statusBar()->showMessage(QString::fromLatin1("%1 written").arg(fileName)); else { - statusBar()->showMessage(tr("Unable to write %1!").arg(fileName)); + statusBar()->showMessage(QString::fromLatin1("Unable to write %1!").arg(fileName)); m_qrcEditor->setFileName(oldFileName); } } diff --git a/src/tools/qtcreatorwidgets/customwidgets.cpp b/src/tools/qtcreatorwidgets/customwidgets.cpp index 758fcb1ed28..ce78a732999 100644 --- a/src/tools/qtcreatorwidgets/customwidgets.cpp +++ b/src/tools/qtcreatorwidgets/customwidgets.cpp @@ -41,7 +41,7 @@ NewClassCustomWidget::NewClassCustomWidget(QObject *parent) : false, QLatin1String(groupC), QIcon(), - tr("Widget to enter classes and source files")) + QLatin1String("Widget to enter classes and source files")) { } @@ -52,7 +52,7 @@ ClassNameValidatingLineEdit_CW::ClassNameValidatingLineEdit_CW(QObject *parent) false, QLatin1String(groupC), QIcon(), - tr("Line Edit that validates a class name")) + QLatin1String("Line Edit that validates a class name")) { } @@ -63,7 +63,7 @@ FileNameValidatingLineEdit_CW::FileNameValidatingLineEdit_CW(QObject *parent) : false, QLatin1String(groupC), QIcon(), - tr("Line Edit that validates a file name")) + QLatin1String("Line Edit that validates a file name")) { } @@ -74,7 +74,7 @@ ProjectNameValidatingLineEdit_CW::ProjectNameValidatingLineEdit_CW(QObject *pare false, QLatin1String(groupC), QIcon(), - tr("Line Edit that validates a project name")) + QLatin1String("Line Edit that validates a project name")) { } @@ -85,7 +85,7 @@ LineColumnLabel_CW::LineColumnLabel_CW(QObject *parent) : false, QLatin1String(groupC), QIcon(), - tr("Label suited for displaying line numbers with a fixed with depending on the font size"), + QLatin1String("Label suited for displaying line numbers with a fixed with depending on the font size"), QSize(100, 20)) { } @@ -97,7 +97,7 @@ PathChooser_CW::PathChooser_CW(QObject *parent) : false, QLatin1String(groupC), QIcon(), - tr("Input widget for paths with a browse button")) + QLatin1String("Input widget for paths with a browse button")) { } @@ -108,7 +108,7 @@ FancyLineEdit_CW::FancyLineEdit_CW(QObject *parent) : false, QLatin1String(groupC), QIcon(), - tr("A Line edit with a clickable menu pixmap")) + QLatin1String("A Line edit with a clickable menu pixmap")) { } @@ -119,7 +119,7 @@ QtColorButton_CW::QtColorButton_CW(QObject *parent) : false, QLatin1String(groupC), QIcon(), - tr("A color button that spawns a QColorDialog on click")) + QLatin1String("A color button that spawns a QColorDialog on click")) { } @@ -139,7 +139,7 @@ SubmitEditorWidget_CW::SubmitEditorWidget_CW(QObject *parent) : false, QLatin1String(groupC), QIcon(), - tr("Submit editor showing message and file list")) + QLatin1String("Submit editor showing message and file list")) { } @@ -150,7 +150,7 @@ SubmitFieldWidget_CW::SubmitFieldWidget_CW(QObject *parent) : false, QLatin1String(groupC), QIcon(), - tr("Show predefined fields of a submit message in a control based on mail address controls")) + QLatin1String("Show predefined fields of a submit message in a control based on mail address controls")) { } diff --git a/translations/qtcreator_de.ts b/translations/qtcreator_de.ts new file mode 100644 index 00000000000..004d54e1315 --- /dev/null +++ b/translations/qtcreator_de.ts @@ -0,0 +1,10892 @@ + + + + + %CLASS% + + + %CLASS% + + + + + AbstractProcessStep + + + <font color="#0000ff">Starting: %1 %2</font> + + + + + + <font color="#0000ff">Exited with code %1.</font> + + + + + <font color="#ff0000"><b>Exited with code %1.</b></font> + + + + + <font color="#ff0000">Could not start process %1 </b></font> + + + + + AllProjectsFind + + + All Projects + + + + + File &pattern: + + + + + Application + + + Failed to load core: %1 + + + + + Unable to send command line arguments to the already running instance. It appears to be not responding. + + + + + Couldn't find 'Core.pluginspec' in %1 + + + + + ApplicationLauncher + + + Failed to start program. Path or permissions wrong? + + + + + The program has unexpectedly finished. + + + + + Some error has occurred while running the program. + + + + + ApplicationRunConfigurationRunner + + + Run + + + + + ApplicationRunControl + + + Starting %1... + + + + + %1 exited with code %2 + + + + + AttachCoreDialog + + + Start Debugger + + + + + Executable: + + + + + Core File: + + + + + AttachExternalDialog + + + Start Debugger + + + + + Attach to Process ID: + + + + + Filter: + + + + + Clear + + + + + Process ID + + + + + Name + + + + + State + + + + + AttachRemoteDialog + + + Start Debugger + + + + + Attach to Process ID: + + + + + Filter: + + + + + ... + + + + + BaseFileFind + + + + %1 found + + + + + List of comma separated wildcard filters + + + + + Use Regular E&xpressions + + + + + BaseFileWizard + + + Unable to create the directory %1. + + + + + Unable to open %1 for writing: %2 + + + + + Error while writing to %1: %2 + + + + + BaseTextDocument + + + untitled + + + + + <em>Binary data</em> + + + + + BaseTextEditor + + + Print Document + + + + + <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. + + + + + Select Encoding + + + + + BinEditorPlugin + + + &Undo + &Rückgangig + + + + &Redo + &Wiederholen + + + + BookmarkDialog + + + Add Bookmark + + + + + Bookmark: + + + + + Add in Folder: + + + + + + + + + + + New Folder + + + + + + + + + Bookmarks + + + + + Delete Folder + + + + + Rename Folder + + + + + BookmarkManager + + + + Bookmark + + + + + Bookmarks + + + + + Remove + + + + + You are going to delete a Folder, this will also<br>remove it's content. Are you sure to continue? + + + + + + New Folder + + + + + BookmarkView + + + Bookmarks + + + + + BookmarkWidget + + + Delete Folder + + + + + Rename Folder + + + + + Show Bookmark + + + + + Show Bookmark in New Tab + + + + + Delete Bookmark + + + + + Rename Bookmark + + + + + Filter: + + + + + Add + + + + + Remove + + + + + BookmarksPlugin + + + &Bookmarks + + + + + Toggle Bookmark + + + + + Ctrl+M + + + + + Meta+M + + + + + Move Up + + + + + Move Down + + + + + Previous Bookmark + + + + + Ctrl+, + + + + + Meta+, + + + + + Next Bookmark + + + + + Ctrl+. + + + + + Meta+. + + + + + Previous Bookmark In Document + + + + + Next Bookmark In Document + + + + + BreakByFunctionDialog + + + Set Breakpoint at Function + + + + + Function to break on: + + + + + BreakCondition + + + Dialog + + + + + Condition: + + + + + Ignore count: + + + + + BreakHandler + + + Number + + + + + Function + + + + + File + + + + + Line + + + + + Condition + + + + + Ignore + + + + + Breakpoint will only be hit if this condition is met. + + + + + Breakpoint will only be hit after being ignored so many times. + + + + + BreakWindow + + + Breakpoints + + + + + Conditions on Breakpoint %1 + + + + + BuildManager + + + <font color="#ff0000">Canceled build.</font> + + + + + Build + + + + + + Finished %1 of %2 build steps + + + + + + <font color="#ff0000">Error while building project %1</font> + + + + + + <font color="#ff0000">When executing build step '%1'</font> + + + + + Error while building project %1 + + + + + <b>Running build steps for project %2...</b> + + + + + BuildSettingsPanel + + + Build Settings + + + + + BuildSettingsWidget + + + Create &New + + + + + &Clone Selected + + + + + + %1 - %2 + + + + + General + + + + + Build Steps + + + + + Set as Active + + + + + Clone + + + + + Delete + + + + + New configuration + + + + + + New Configuration Name: + + + + + Clone configuration + + + + + BuildStepsPage + + + Build Steps + + + + + CMakeRunConfiguration + + + Arguments: + + + + + CMakeRunPage + + + Run 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. + + + + + 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 in the below. Note, that cmake remembers command line arguments from the former runs. + + + + + The directory %1 specified in a buildconfiguration, 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 former runs. + + + + + CMakeSettingsPage + + + + CMake + + + + + CdbDebugEngine + + + Unable to load the debugger engine library '%1': %2 + + + + + Unable to resolve '%1' in the debugger engine library '%2' + + + + + CentralWidget + + + Add new page + + + + + Print Document + + + + + + unknown + + + + + Add New Page + + + + + Close This Page + + + + + Close Other Pages + + + + + Add Bookmark for this Page... + + + + + ChangeSelectionDialog + + + Select a Git commit + + + + + Dialog + + + + + Repository Location: + + + + + Select + + + + + Change: + + + + + ClassNamePage + + + Enter class name + + + + + The header and source file names will be derived from the class name + + + + + Configure... + + + + + CodePaster::PasteSelectDialog + + + Dialog + + + + + Paste: + + + + + CodePaster::SettingsPage + + + Form + + + + + CodePaster Server: + + + + + Username: + + + + + Copy Paste URL to clipboard + + + + + Display Output Pane after sending a post + + + + + CodecSelector + + + Text Encoding + + + + + +The following encodings are likely to fit: + + + + + Select encoding for "%1".%2 + + + + + Reload with Encoding + + + + + Save with Encoding + + + + + CodepasterPlugin + + + &CodePaster + + + + + Paste Snippet... + + + + + Alt+C,Alt+P + + + + + Fetch Snippet... + + + + + Alt+C,Alt+F + + + + + ComboBox + + + Activate %1 + + + + + CommandPrivate + + + Other + + + + + CompileOutputWindow + + + Compile Output + + + + + CompletionSettingsPage + + + Completion + + + + + Text Editor + + + + + Form + + + + + Code Completion + + + + + Do a case-sensitive match for completion items. + + + + + &Case-sensitive completion + + + + + Automatically insert (, ) and ; when appropriate. + + + + + &Automatically insert braces + + + + + Insert the common prefix of available completion items. + + + + + Autocomplete common &prefix + + + + + ConsoleProcess + + + + Cannot set up comm channel: %1 + + + + + + Press <RETURN> to close this window... + + + + + Cannot start console emulator xterm. + + + + + Cannot create temporary file: %2 + + + + + Cannot create temporary directory %1: %2 + + + + + Cannot create socket %1: %2 + + + + + + Cannot change to working directory %1: %2 + + + + + + Cannot execute %1: %2 + + + + + + Unexpected output from helper program. + + + + + Cannot create temp file: %1 + + + + + The process '%1' could not be started: %2 + + + + + Cannot obtain a handle to the inferior: %1 + + + + + Cannot obtain exit status from inferior: %1 + + + + + ContentWindow + + + Open Link + + + + + Open Link in New Tab + + + + + ContentsToolWidget + + + Contents + + + + + Core::BaseFileWizard + + + + + + File Generation Failure + Fehler bei Dateierzeugung + + + + + Existing files + Bereits existierende Dateien + + + Failed to open an editor for '%1' + Es konnte kein Editor für die Datei '%1' geöffnet werden + + + + Failed to open an editor for '%1'. + Es konnte kein Editor für die Datei '%1' geöffnet werden. + + + + [read only] + [schreibgeschützt] + + + + [directory] + [Verzeichnis] + + + + [symbolic link] + [symbolischer Link] + + + + The project directory %1 contains files which cannot be overwritten: +%2. + Das Projektverzeichnis %1 enthält Dateien, die nicht überschrieben werden können: +%2. + + + + The following files already exist in the directory %1: +%2. +Would you like to overwrite them? + Die folgenden Dateien existieren bereits im Verzeichnis %1: +%2. +Sollen sie überschrieben werden? + + + + Core::Internal::NewDialog + + + New Project + Neues Projekt + + + + 1 + 1 + + + + TextLabel + + + + + Core::Internal::WelcomeMode + + + (last session) + (letzte Sitzung) + + + + Core::StandardFileWizard + + + New %1 + TODO: Grammatical case problem + Neue %1 + + + + Core::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. + + + + Core::Utils::FileNameValidatingLineEdit + + + The name must not be empty + Der Name darf nicht leer sein + + + + The name must not contain any of the characters '%1'. + Der Name darf keines der Zeichen '%1' enthalten. + + + + The name must not contain '%1'. + Der Name darf nicht '%1' enthalten. + + + + The name must not match that of a MS Windows device. (%1). + Namen von Windows-Geräten dürfen nicht verwendet werden (%1). + + + + Core::Utils::NewClassWidget + + + Invalid base class name + Der Name der Basisklasse ist ungültig + + + + 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' + + + + Dialog + + + + + Class name: + Klassenname: + + + + Base class: + Basisklasse: + + + + Header file: + Header-Datei: + + + + Source file: + Quelldatei: + + + + Generate form: + Form-Datei generieren: + + + + Form file: + Form-Datei: + + + + Path: + Pfad: + + + + Core::Utils::PathChooser + + + Choose a directory + Wählen Sie ein Verzeichnis + + + + Choose a file + Wählen Sie eine Datei + + + + The path must not be empty. + Der Pfad darf nicht leer sein. + + + + The path '%1' does not exist. + Der Pfad '%1' existiert nicht. + + + + The path '%1' is not a directory. + Der Pfad '%1' zeigt nicht zu einem Verzeichnis. + + + + The path '%1' is not a file. + Der Pfad '%1' zeigt nicht zu einer Datei. + + + + Path: + Pfad: + + + + Core::Utils::ProjectIntroPage + + + <Enter_Name> + <Name> + + + + The project already exists. + Das Projekt existiert bereits. + + + + A file with that name already exists. + Eine Datei dieses Namens existiert bereits. + + + + WizardPage + + + + + Introduction and project location + Einführung und Projektverzeichnis + + + + TextLabel + + + + + Name: + Name: + + + + Create in: + Erzeugen in: + + + + Core::Utils::ProjectNameValidatingLineEdit + + + The name must not contain the '.'-character. + Der Name darf das Zeichen '.' nicht enthalten. + + + + Core::Utils::SubmitEditorWidget + + + Subversion Submit + Subversion Submit + + + + Des&cription + &Beschreibung + + + + F&iles + &Dateien + + + + Core::Utils::WizardPage + + + WizardPage + + + + + Choose the location + Verzeichnis auswählen + + + + Name: + Name: + + + + Path: + Pfad: + + + + CoreListenerCheckingForRunningBuild + + + Cancel Build && Close + + + + + Don't Close + + + + + Close QtCreator? + + + + + A project is currently being built. + + + + + Do you want to cancel the build process and close QtCreator anyway? + + + + + CppClassWizard + + + Error while generating file contents. + + + + + CppClassWizardDialog + + + C++ Class Wizard + + + + + CppFileSettingsPage + + + Form + + + + + Header suffix: + + + + + This determines how the file names of the class wizards are generated ("MyClass.h" versus "myclass.h"). + + + + + Lower case file names: + + + + + Source suffix: + + + + + CppHoverHandler + + + Unfiltered + + + + + CppModelManager + + + Indexing + + + + + CppPlugin + + + C++ + + + + + Creates a new C++ header file. + + + + + C++ Header File + + + + + Creates a new C++ source file. + + + + + C++ Source File + + + + + C++ Class + + + + + Creates a header and a source file for a new class. + + + + + Follow Symbol under Cursor + + + + + Switch between Method Declaration/Definition + + + + + CppTools + + + File naming conventions + + + + + C++ + + + + + CppTools::Internal::CppClassesFilter + + + Classes + + + + + CppTools::Internal::CppFunctionsFilter + + + Methods + + + + + CppTools::Internal::CppQuickOpenFilter + + + Classes and Methods + + + + + CppToolsPlugin + + + &C++ + + + + + Switch Header/Source + + + + + CurrentProjectFind + + + Current Project + + + + + File &pattern: + + + + + CustomExecutableConfigurationWidget + + + Run in &Terminal + + + + + CustomExecutableRunConfiguration + + + + Run %1 + + + + + Debugger::Internal::AttachCoreDialog + + + + Select Executable + + + + + Debugger::Internal::AttachExternalDialog + + + Refresh + + + + + Debugger::Internal::AttachRemoteDialog + + + Refresh + + + + + Debugger::Internal::CdbDebugEngine + + + The console stub process was unable to start '%1'. + + + + + CdbDebugEngine: Attach to core not supported! + + + + + Debugger Running + + + + + AttachProcess failed for pid %1: %2 + + + + + CreateProcess2Wide failed for '%1': %2 + + + + + Unable to assign the value '%1' to '%2': %3 + + + + + + Debugger Error + + + + + Debugger::Internal::DebugMode + + + Debug + + + + + Debugger::Internal::DebuggingHelperOptionPage + + + Debugging Helper + + + + + Debugger + + + + + Choose DebuggingHelper Location + + + + + Ctrl+Shift+F11 + + + + + Debugger::Internal::GdbOptionPage + + + General + + + + + Debugger + + + + + Choose Gdb Location + + + + + Choose Location of Startup Script File + + + + + Choose Location of Terminal Application + + + + + Debugger::Internal::OutputCollector + + + Cannot create temporary file: %2 + + + + + Cannot create FiFo %1: %2 + + + + + Cannot open FiFo %1: %2 + + + + + Debugger::Internal::StartExternalDialog + + + Select Executable + + + + + Executable: + + + + + Arguments: + + + + + DebuggerManager + + + Start and Debug External Application... + + + + + Attach to Running External Application... + + + + + Attach to Core... + + + + + Continue + + + + + + Interrupt + + + + + Reset Debugger + + + + + Step Over + + + + + Step Into + + + + + Step Over Instruction + + + + + Step One Instruction + + + + + Step Out + + + + + Run to Line + + + + + Run to Outermost Function + + + + + Jump to Line + + + + + Toggle Breakpoint + + + + + Set Breakpoint at Function... + + + + + Set Breakpoint at Function "main" + + + + + Add to Watch Window + + + + + Stop requested... + + + + + + Stopped. + + + + + Running requested... + + + + + Running... + + + + + Changing breakpoint state requires either a fully running or fully stopped application. + + + + + Debugging VS executables is not supported. + + + + + + Warning + + + + + Cannot attach to PID 0 + + + + + Cannot debug '%1': %2 + + + + + Save Debugger Log + + + + + Stop Debugger + + + + + DebuggerOutputWindow + + + Gdb + + + + + DebuggerPlugin + + + Stop Debugger/Interrupt Debugger + + + + + Reset Debugger + + + + + &Views + + + + + Locked + + + + + Reset to default layout + + + + + Threads: + + + + + DebuggerRunner + + + Debug + + + + + DebuggingHelperOptionPage + + + Form + + + + + This will enable nice display of Qt and Standard Library objects in the Locals&Watchers view + + + + + Use debugging helper + + + + + This will load a dumper library + + + + + Use debugging helper from custom location + + + + + Location: + + + + + Debug debugging helper + + + + + DependenciesModel + + + Unable to add dependency + + + + + This would create a circular dependency. + + + + + Designer + + + + file name is empty + + + + + XML error on line %1, col %2: %3 + + + + + no <RCC> root element + + + + + Designer::Internal::EditorWidget + + + Action editor + + + + + Signals and slots editor + + + + + Designer::Internal::FormClassWizardDialog + + + Qt Designer Form Class + + + + + Designer::Internal::FormClassWizardPage + + + %1 - Error + + + + + Choose a class name + + + + + Class + + + + + Configure... + + + + + More + + + + + Embedding of the UI class + + + + + Aggregation as a pointer member + + + + + buttonGroup + + + + + Aggregation + + + + + Multiple Inheritance + + + + + Support for changing languages at runtime + + + + + Designer::Internal::FormTemplateWizardPage + + + Choose a form template + + + + + %1 - Error + + + + + Designer::Internal::FormWizardDialog + + + Qt Designer Form + + + + + DetailedModel + + + %1 of project %2 + + + + + Could not rename file + + + + + Renaming file %1 to %2 failed. + + + + + Dialog + + + + + Dialog + + + + + DirectoryFilter + + + Generic Directory Filter + + + + + Filter Configuration + + + + + + , + + + + + + Choose a directory to add + + + + + %1 filter update: 0 files + + + + + %1 filter update: %2 files + + + + + %1 filter update: canceled + + + + + DisassemblerModel + + + Address + + + + + Symbol + + + + + Mnemonic + + + + + DisassemblerWindow + + + Disassembler + + + + + DocSettingsPage + + + + Documentation + + + + + Help + + + + + + Add Documentation + + + + + Qt Help Files (*.qch) + + + + + The file %1 is not a valid Qt Help file! + + + + + Cannot unregister documentation file %1! + + + + + Form + + + + + Registered Documentation: + + + + + Add... + + + + + Remove + + + + + EditorManager + + + + Revert to Saved + + + + + Close + + + + + Close All + + + + + Next Document in History + + + + + Previous Document in History + + + + + Go back + + + + + Go forward + + + + + Open in External Editor + + + + + Revert File to Saved + + + + + Ctrl+W + + + + + Ctrl+Shift+W + + + + + Alt+Tab + + + + + Ctrl+Tab + + + + + Alt+Shift+Tab + + + + + Ctrl+Shift+Tab + + + + + Ctrl+Alt+Left + + + + + Alt+Left + + + + + Ctrl+Alt+Right + + + + + Alt+Right + + + + + Split + + + + + Ctrl+E,2 + + + + + Split Side by Side + + + + + Ctrl+E,3 + + + + + Remove Current Split + + + + + Ctrl+E,0 + + + + + Remove All Splits + + + + + Ctrl+E,1 + + + + + Goto Other Split + + + + + Ctrl+E,o + + + + + &Advanced + + + + + Alt+V,Alt+I + + + + + Opening File + + + + + Cannot open file %1! + + + + + Open File + + + + + + Failed! + + + + + Could not open the file for edit with SCC. + + + + + Could not set permissions to writable. + + + + + <b>Warning:</b> You are changing a read-only file. + + + + + Make writable + + + + + Save %1 As... + + + + + &Save %1 + + + + + Revert %1 to Saved + + + + + Close %1 + + + + + You will lose your current changes if you proceed reverting %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> + + + + + EditorSettingsPanel + + + Editor Settings + + + + + EditorSplitter + + + Split Left/Right + + + + + Split Top/Bottom + + + + + Unsplit + + + + + Default Splitter Layout + + + + + Save Current as Default + + + + + Restore Default Layout + + + + + Previous Document + + + + + Alt+Left + + + + + Next Document + + + + + Alt+Right + + + + + Previous Group + + + + + Next Group + + + + + Move Document to Previous Group + + + + + Move Document to Next Group + + + + + EditorView + + + + Placeholder + + + + + Close + + + + + Make writable + + + + + File is writable + + + + + EmbeddedPropertiesPage + + + Form + + + + + 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. + + + + + Skin: + + + + + EmbeddedPropertiesPanel + + + Embedded Linux + + + + + EnvironmentModel + + + Variable + + + + + Value + + + + + ExtensionSystem::Internal::PluginDetailsView + + + Form + + + + + Name: + Name: + + + + TextLabel + + + + + Version: + + + + + Compatibility Version: + + + + + Vendor: + + + + + Url: + + + + + Location: + + + + + Description: + + + + + Copyright: + + + + + License: + + + + + Dependencies: + + + + + ExtensionSystem::Internal::PluginErrorView + + + Form + + + + + State: + + + + + TextLabel + + + + + Error Message: + + + + + ExtensionSystem::Internal::PluginView + + + Form + + + + + State + + + + + Name + + + + + Version + + + + + Vendor + + + + + Location + + + + + FakeVim::Internal::FakeVimHandler::Private + + + %1,%2 + + + + + + %1 + + + + + + + E20: Mark '%1' not set + + + + + File '%1' exists (add ! to override) + + + + + Cannot open file '%1' for writing + + + + + "%1" %2 %3L, %4C written + + + + + Cannot open file '%1' for reading + + + + + "%1" %2L, %3C + + + + + %1 lines filtered + + + + + %1 lines >ed %2 time + + + + + E512: Unknown option: + + + + + E492: Not an editor command: + + + + + Already at oldest change + + + + + Already at newest change + + + + + FakeVim::Internal::FakeVimOptionPage + + + General + + + + + FakeVim + + + + + FakeVimOptionPage + + + Form + + + + + Use FakeVim + + + + + Vim style settings + + + + + vim's "expandtab" option + + + + + Expand tabulators: + + + + + Highlight search results: + + + + + Shift width: + + + + + Smart tabulators: + + + + + Start of line: + + + + + vim's "tabstop" option + + + + + Tabulator size: + + + + + Backspace: + + + + + VIM's "autoindent" option + + + + + Automatic indentation: + + + + + Copy text editor settings + + + + + Set Qt style + + + + + Set plain style + + + + + FakeVimPluginPrivate + + + + Quit FakeVim + + + + + FakeVim Information + + + + + FileManager + + + Can't save file + + + + + Can't save changes to '%1'. Do you want to continue and loose your changes? + + + + + Overwrite? + + + + + An item named '%1' already exists at this location. Do you want to overwrite it? + + + + + Save File As + + + + + FileSearch + + + + %1: canceled. %2 occurrences found in %3 files. + + + + + + %1: %2 occurrences found in %3 of %4 files. + + + + + + %1: %2 occurrences found in %3 files. + + + + + FilterNameDialogClass + + + Add Filter Name + + + + + Filter Name: + + + + + FilterSettingsPage + + + Filters + + + + + Help + + + + + Form + + + + + Filter: + + + + + Attributes: + + + + + 1 + 1 + + + + Add + + + + + Remove + + + + + Find::Internal::FindDialog + + + Search for... + + + + + Sc&ope: + + + + + &Search + + + + + Search &for: + + + + + Close + + + + + &Case sensitive + + + + + &Whole words only + + + + + Find::Internal::FindWidget + + + Find + + + + + Find: + + + + + Replace with: + + + + + All + + + + + Find::SearchResultWindow + + + Search Results + + + + + FindInFiles + + + Files on Disk + + + + + &Directory: + + + + + &Browse + + + + + File &pattern: + + + + + Directory to search + + + + + FindPlugin + + + &Find/Replace + + + + + Find Dialog + + + + + Ctrl+Shift+F + + + + + FindToolBar + + + Current Document + + + + + Enter Find String + + + + + Find.EnterFindString + + + + + Ctrl+E + + + + + Find Next + + + + + Find Previous + + + + + Replace && Find Next + + + + + Ctrl+= + + + + + Replace && Find Previous + + + + + Replace All + + + + + Case Sensitive + + + + + Whole Words Only + + + + + FolderNavigationWidgetFactory + + + File System + + + + + Synchronize with Editor + + + + + FontSettingsPage + + + Font & Colors + + + + + + This is only an example. + + + + + Form + + + Form + + + + + FormClassWizard + + + Internal error: FormClassWizard::generateFiles: empty template contents + + + + + FormEditorPlugin + + + Qt + + + + + Qt Designer Form + + + + + This creates a new Qt Designer form file. + + + + + Qt Designer Form Class + + + + + This creates a new Qt Designer form class. + + + + + FormEditorW + + + Designer widgetbox + + + + + Object inspector + + + + + Property editor + + + + + Signals and slots editor + + + + + Action editor + + + + + For&m editor + + + + + F3 + + + + + F4 + + + + + Meta+H + + + + + Ctrl+H + + + + + Meta+L + + + + + Ctrl+L + + + + + Meta+G + + + + + Ctrl+G + + + + + Meta+J + + + + + Ctrl+J + + + + + Ctrl+Alt+R + + + + + About Qt Designer plugins.... + + + + + Preview in + + + + + Designer + + + + + The image could not be create: %1 + + + + + FormWindowEditor + + + untitled + + + + + FormWindowFile + + + Error saving %1 + + + + + Unable to open %1: %2 + + + + + Unable to write to %1: %2 + + + + + FunctionArgumentWidget + + + %1 of %2 + + + + + GdbEngine + + + The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. + + + + + The Gdb 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. + + + + + 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. + + + + + An error occurred when attempting to read from the Gdb process. For example, the process may not be running. + + + + + An unknown error in the Gdb process occurred. This is the default return value of error(). + + + + + + + Error + + + + + Reading + + + + + Debugger Error + + + + + Stopping temporarily. + + + + + Continuing after temporary stop. + + + + + Core file loaded. + + + + + Jumped. Stopped. + + + + + + Run to Function finished. Stopped. + + + + + Temporarily stopped. + + + + + Handling queued commands. + + + + + Loading %1... + + + + + Stopped at breakpoint. + + + + + Stopped: "%1" + + + + + 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. + + + + + + Starting executable failed: + + + + + + Running... + + + + + + Debugger Startup Failure + + + + + Cannot set up communication with child process: %1 + + + + + Starting Debugger: + + + + + Cannot start debugger: %1 + + + + + Gdb Running... + + + + + 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. + + + + + Attached to running process. Stopped. + + + + + <could not retreive module information> + + + + + + Retrieving data for stack view... + + + + + + Retrieving data for watch view (%1 requests pending)... + + + + + Finished retrieving data. + + + + + Cannot find special data dumpers + + + + + The debugged binary does not contain information needed for nice display of Qt data types. + +You might want to try including the file + +.../share/qtcreator/gdbmacros/gdbmacros.cpp + +into your project directly. + + + + + %1 custom dumpers found. + + + + + Custom dumper setup: %1 + + + + + <%1 items> + + + + + Retrieving data for tooltip... + + + + + GdbOptionPage + + + Form + + + + + Gdb interaction + + + + + This is either a full abolute path leading to the gdb binary you intend to use or the name of a gdb binary that will be searched in your PATH. + + + + + Gdb location: + + + + + This is either a full abolute path leading to the terminal +you indent to use or the name of a terminal that will be searched in your PATH. + + + + + Terminal: + + + + + Environment: + + + + + This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. + + + + + Gdb startup script: + + + + + 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 + + + + + User interface + + + + + Checking this will populate the source file view automatically but might slow down debugger startup considerably. + + + + + Populate source file view automatically + + + + + 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. + + + + + Skip known frames when stepping + + + + + Checking this will make 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 while debugging + + + + + Maximal stack depth: + + + + + <unlimited> + + + + + GeneralSettings + + + General + + + + + Environment + + + + + Variables + + + + + Form + + + + + General settings + + + + + User &interface color: + + + + + Reset to default + + + + + R + + + + + External editor: + + + + + ? + + + + + GenericBuildSettingsWidget + + + Build directory: + + + + + Tool chain: + + + + + Generic Manager + + + + + GenericMakeStep + + + Form + + + + + Override %1: + + + + + Make arguments: + + + + + Targets: + + + + + GenericMakeStepConfigWidget + + + Override %1: + + + + + GenericProject + + + <new> + + + + + GenericProjectWizard + + + Existing Project + + + + + Import Existing Project + + + + + Projects + + + + + The project %1 could not be opened. + + + + + GenericProjectWizardDialog + + + Import Existing Project + + + + + Import Project + + + + + Project name: + + + + + Location: + + + + + Second Page Title + + + + + Git::Internal::BranchDialog + + + Checkout + + + + + Delete + + + + + Unable to find the repository directory for '%1'. + + + + + Delete Branch + + + + + Would you like to delete the branch '%1'? + + + + + Failed to delete branch + + + + + Failed to create branch + + + + + Failed to stash + + + + + Would you like to create a local branch '%1' tracking the remote branch '%2'? + + + + + Create branch + + + + + Failed to create a tracking branch + + + + + Branches + + + + + General information + + + + + Repository: + + + + + TextLabel + + + + + Remote branches + + + + + Git::Internal::GitSubmitEditor + + + Git Commit + + + + + Git::Internal::GitSubmitPanel + + + General Information + + + + + Repository: + + + + + repository + + + + + Branch: + + + + + branch + + + + + Commit Information + + + + + Author: + + + + + Email: + + + + + Git::Internal::LocalBranchModel + + + <New branch> + + + + + Type to create a new branch + + + + + Git::Internal::SettingsPage + + + Git + + + + + Git Settings + + + + + Form + + + + + Environment variables + + + + + PATH: + + + + + From system + + + + + <b>Note:</b> + + + + + Git needs to find Perl in the environment as well. + + + + + Log commit display count: + + + + + Note that huge amount of commits might take some time. + + + + + Timeout (seconds): + + + + + GitClient + + + 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. + + + + + Unable to determine the repository for %1. + + + + + Unable to parse the file output. + + + + + %1 Executing: %2 %3 + + + + + + Waiting for data... + + + + + Git Diff + + + + + Git Diff %1 + + + + + Git Log %1 + + + + + Git Show %1 + + + + + Git Blame %1 + + + + + Unable to add %n file(s) to %1: %2 + + + + + + + + Unable to reset %n file(s) in %1: %2 + + + + + + + + Unable to checkout %n file(s) in %1: %2 + + + + + + + + Unable stash in %1: %2 + + + + + Unable to run branch command: %1: %2 + + + + + Unable to run show: %1: %2 + + + + + Changes + + + + + You have modified files. Would you like to stash your changes? + + + + + Unable to obtain the status: %1 + + + + + The repository %1 is not initialized yet. + + + + + Committed %n file(s). + + + + + + + + + Unable to commit %n file(s): %1 + + + + + + + + + Revert + + + + + The file has been changed. Do you want to revert it? + + + + + The file is not modified. + + + + + There are no modified files. + + + + + GitOutputWindow + + + Git Output + + + + + Git + + + + + GitPlugin + + + &Git + + + + + Diff Current File + + + + + Alt+G,Alt+D + + + + + File Status + + + + + Alt+G,Alt+S + + + + + Log File + + + + + Alt+G,Alt+L + + + + + Blame + + + + + Alt+G,Alt+B + + + + + Undo Changes + + + + + Alt+G,Alt+U + + + + + Stage File for Commit + + + + + Alt+G,Alt+A + + + + + Unstage File from Commit + + + + + Revert... + + + + + Diff Current Project + + + + + Project Status + + + + + + Log Project + + + + + Alt+G,Alt+K + + + + + Undo Project Changes + + + + + Stash + + + + + Pull + + + + + Stash Pop + + + + + Commit... + + + + + Alt+G,Alt+C + + + + + Push + + + + + Branches... + + + + + List Stashes + + + + + Show Commit... + + + + + Commit + + + + + Diff Selected Files + + + + + &Undo + &Rückgangig + + + + &Redo + &Wiederholen + + + + Could not find working directory + + + + + Another submit is currently beeing executed. + + + + + Cannot create temporary file: %1 + + + + + Closing git editor + + + + + Do you want to commit the change? + + + + + The commit message check failed. Do you want to commit the change? + + + + + Diff %1 + + + + + Status Related to %1 + + + + + Log of %1 + + + + + Blame for %1 + + + + + Undo Changes for %1 + + + + + Stage %1 for Commit + + + + + Unstage %1 from Commit + + + + + Revert %1... + + + + + Diff Project + + + + + Status Project + + + + + Diff Project %1 + + + + + Status Project %1 + + + + + Log Project %1 + + + + + GitSettings + + + The binary '%1' could not be located in the path '%2' + + + + + HelloWorldPlugin + + + &Hello World + + + + + Hello world! + + + + + Hello World PushButton! + + + + + HelloWorldWindow + + + Hello, world! + + + + + HelpIndexFilter + + + Help index + + + + + HelpMode + + + Help + + + + + HelpPlugin + + + + Contents + + + + + + Index + + + + + + Search + + + + + Bookmarks + + + + + Home + + + + + + Previous + + + + + + Next + + + + + Add Bookmark + + + + + Context Help + + + + + Activate Index in Help mode + + + + + Activate Contents in Help mode + + + + + Activate Search in Help mode + + + + + + + Unfiltered + + + + + <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> + + + + + Filtered by: + + + + + HelpViewer + + + Open Link in New Tab + + + + + <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> + + + + + Help + + + + + Unable to launch external application. + + + + + + OK + + + + + Copy &Link Location + + + + + Open Link in New Tab Ctrl+LMB + + + + + IQuickOpenFilter + + + Filter Configuration + + + + + Limit to prefix + + + + + Prefix: + + + + + InSourceBuildPage + + + Qt Creator has detected an in source build. This prevents shadow builds, Qt Creator won't allow you to change the build directory. If you want a shadow build, clean your source directory and open the project again. + + + + + IndexThread + + + Failed to load keyword index file! + + + + + Cannot open the index file %1 + + + + + Documentation file %1 does not exist! +Skipping file. + + + + + IndexToolWidget + + + Look for: + + + + + Index + + + + + IndexWindow + + + &Look for: + + + + + Open Link + + + + + Open Link in New Tab + + + + + LibraryWizardDialog + + + Shared library + + + + + Statically linked library + + + + + Qt 4 plugin + + + + + Type + + + + + Locator + + + Filters + + + + + Locator + + + + + MainWindow + + + MainWindow + + + + + Qt Creator + + + + + Output + Ausgaben + + + + &File + &Datei + + + + &Edit + &Bearbeiten + + + + &Tools + &Werkzeuge + + + + &Window + &Fenster + + + + &Help + &Hilfe + + + + &New... + &Neu + + + + &Open... + &Öffnen + + + + &Open With... + Öffnen &mit... + + + + Recent Files + Zuletzt bearbeitet + + + + + &Save + &Speichern + + + + + Save &As... + Speichern &unter... + + + + + Ctrl+Shift+S + + + + + Save A&ll + &Alles speichern + + + + &Print... + &Drucken... + + + + E&xit + B&eenden + + + + + Ctrl+Q + + + + + + &Undo + &Rückgangig + + + + + &Redo + &Wiederholen + + + + Cu&t + &Ausschneiden + + + + &Copy + &Kopieren + + + + &Paste + &Einfügen + + + + &Select All + Alles Aus&wählen + + + + &Go To Line... + &Gehe zu Zeile... + + + + Ctrl+L + + + + + &Options... + &Einstellungen + + + + Minimize + Minimieren + + + + Zoom + Vergrößern + + + + Show Sidebar + Seitenleiste anzeigen + + + + Full Screen + Vollbild + + + + About &Qt Creator + Über &Qt Creator + + + + About &Qt Creator... + Über &Qt Creator... + + + + About &Plugins... + Plugins... + + + + New + Title of dialog + Neu + + + + + File + Datei + + + + Open file + + + + + Ctrl+O + + + + + Quit + + + + + Run to main() + + + + + Ctrl+F5 + + + + + F5 + + + + + Shift+F5 + + + + + F6 + + + + + F7 + + + + + Shift+F6 + + + + + Shift+F9 + + + + + Shift+F7 + + + + + Shift+F8 + + + + + F8 + + + + + ALT+D,ALT+W + + + + + Files + + + + + Debug + + + + + Not a runnable project + + + + + The current startup project can not be run. + + + + + Open File + + + + + Cannot find special data 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/gdbmacros/gdbmacros.cpp + +in your .pro file. + + + + + Open Executable File + + + + + MakeStep + + + <font color="#ff0000">Could not find make command: %1 in the build environment</font> + + + + + <font color="#0000ff"><b>No Makefile found, assuming project is clean.</b></font> + + + + + Form + + + + + Override %1: + + + + + Make arguments: + + + + + MakeStepConfigWidget + + + Override %1: + + + + + MessageOutputWindow + + + General + + + + + MimeDatabase + + + Not a number '%1'. + + + + + Empty match value detected. + + + + + Missing 'type'-attribute + + + + + Unexpected element <%1> + + + + + An error has been encountered at line %1 of %2: %3: + + + + + Cannot open %1: %2 + + + + + ModeManager + + + Switch to %1 mode + + + + + ModulesModel + + + Module name + + + + + Symbols read + + + + + Start address + + + + + End addAress + + + + + ModulesPage + + + Select required modules + + + + + Select the modules you want to include in your project. The recommended modules for this project are selected by default. + + + + + ModulesWindow + + + Modules + + + + + Update module list + + + + + Adjust column widths to contents + + + + + Always adjust column widths to contents + + + + + Show source files for module "%1" + + + + + Load symbols for all modules + + + + + Load symbols for module + + + + + Edit file + + + + + Show symbols + + + + + Load symbols for module "%1" + + + + + Edit file "%1" + + + + + Show symbols in file "%1" + + + + + Address + + + + + Code + + + + + Symbol + + + + + Symbols in "%1" + + + + + MyMain + + + + + N/A + + + + + NavComboBox + + + Activate %1 + + + + + NavigationSubWidget + + + Split + + + + + Close + + + + + NavigationWidget + + + Activate %1 Pane + + + + + NickNameDialog + + + Nick Names + + + + + Filter: + + + + + Clear + + + + + OpenEditorsView + + + Form + + + + + OpenEditorsWidget + + + Open Documents + + + + + OpenEditorsWindow + + + * + + + + + OpenWithDialog + + + Open file '%1' with: + + + + + Open File With... + + + + + Open file extension with: + + + + + OutputPane + + + Rerun this runconfiguration + + + + + + Stop + + + + + Ctrl+Shift+R + + + + + Application Output + + + + + The application is still running. Close it first. + + + + + Unable to close + + + + + OutputPaneManager + + + Output + Ausgaben + + + + Clear + + + + + Output &Panes + + + + + OutputWindow + + + + Application Output Window + + + + + OverviewModel + + + <Select Symbol> + + + + + <No Symbols> + + + + + PendingChangesDialog + + + Change %1: %2 + + + + + Perforce::Internal::ChangeNumberDialog + + + Change Number + + + + + Change Number: + + + + + Perforce::Internal::PendingChangesDialog + + + P4 Pending Changes + + + + + Submit + + + + + Cancel + + + + + Perforce::Internal::PerforceSubmitEditor + + + Perforce Submit + + + + + Perforce::Internal::PromptDialog + + + Perforce Prompt + + + + + OK + + + + + Perforce::Internal::SettingsPage + + + Form + + + + + P4 Command: + + + + + Use default P4 environment variables + + + + + Environment variables + + + + + P4 Client: + + + + + P4 User: + + + + + P4 Port: + + + + + Perforce::Internal::SubmitPanel + + + Submit + + + + + Change: + + + + + Client: + + + + + User: + + + + + PerforceOutputWindow + + + Perforce Output + + + + + Diff + + + + + Perforce + + + + + PerforcePlugin + + + &Perforce + + + + + + Edit + + + + + Alt+P,Alt+E + + + + + Edit File + + + + + + Add + + + + + Alt+P,Alt+A + + + + + Add File + + + + + + Delete + + + + + Delete File + + + + + + Revert + + + + + Alt+P,Alt+R + + + + + Revert File + + + + + + Diff Current File + + + + + + Diff Current Project/Session + + + + + Alt+P,Alt+D + + + + + Diff Opened Files + + + + + Opened + + + + + Alt+P,Alt+O + + + + + Resolve + + + + + Submit Project + + + + + Alt+P,Alt+S + + + + + Pending Changes... + + + + + Describe... + + + + + + + Annotate Current File + + + + + Annotate... + + + + + + + Filelog Current File + + + + + Alt+P,Alt+F + + + + + Filelog... + + + + + Submit + + + + + Diff Selected Files + + + + + &Undo + &Rückgangig + + + + &Redo + &Wiederholen + + + + p4 revert + + + + + The file has been changed. Do you want to revert it? + + + + + + + No p4 executable specified! + + + + + Another submit is currently executed. + + + + + Cannot create temporary file. + + + + + Project has no files + + + + + p4 annotate + + + + + p4 annotate %1 + + + + + p4 filelog + + + + + p4 filelog %1 + + + + + Edit %1 + + + + + Add %1 + + + + + Delete %1 + + + + + Revert %1 + + + + + Diff %1 + + + + + Annotate %1 + + + + + Filelog %1 + + + + + Diff + + + + + Diff Project %1 + + + + + Diff Current Project/Soluion + + + + + %1 Executing: %2 + + + + + + The process terminated with exit code %1. + + + + + The process terminated abnormally. + + + + + Could not start perforce '%1'. Please check your settings in the preferences. + + + + + Perforce did not respond within timeout limit (%1 ms). + + + + + p4 diff %1 + + + + + p4 describe %1 + + + + + Closing p4 Editor + + + + + Do you want to submit this change list? + + + + + The commit message check failed. Do you want to submit this change list + + + + + + Cannot execute p4 submit. + + + + + Pending change + + + + + Could not submit the change, because your workspace was out of date. Created a pending submit instead. + + + + + Timeout waiting for "where" (%1). + + + + + Error running "where" on %1: The file is not mapped + + + + + PluginDialog + + + + Details + + + + + + Error Details + + + + + + Installed Plugins + + + + + + Plugin Details of %1 + + + + + + Plugin Errors of %1 + + + + + Close + + + + + 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 it's life cycle and was deleted + + + + + PluginManager + + + + The plugin '%1' does not exist. + + + + + Unknown option %1 + + + + + The option %1 requires an argument. + + + + + Circular dependency detected: + + + + + + %1(%2) depends on + + + + + + %1(%2) + + + + + Cannot load plugin because dependencies are not resolved + + + + + + Cannot load plugin because dependency failed to load: %1(%2) +Reason: %3 + + + + + PluginSpec + + + '%1' misses attribute '%2' + + + + + '%1' has invalid format + + + + + Invalid element '%1' + + + + + Unexpected closing element '%1' + + + + + Unexpected token + + + + + Expected element '%1' as top level element + + + + + Resolving dependencies failed because state != Read + + + + + Could not resolve dependency '%1(%2)' + + + + + Loading the library failed because state != Resolved + + + + + +Library base name: %1 + + + + + Plugin is not valid (doesn't derive from IPlugin) + + + + + Initializing the plugin failed because state != Loaded + + + + + Internal error: have no plugin instance to initialize + + + + + Plugin initialization failed: %1 + + + + + Cannot perform extensionsInitialized because state != Initialized + + + + + Internal error: have no plugin instance to perform extensionsInitialized + + + + + PluginSpecPrivate + + + File does not exist: %1 + + + + + Could not open file for read: %1 + + + + + Error parsing file %1: %2, at line %3, column %4 + + + + + ProEditor + + + Cut + + + + + Copy + + + + + Paste + + + + + Ctrl+X + + + + + Ctrl+C + + + + + Ctrl+V + + + + + Add Variable + + + + + Add Scope + + + + + Add Block + + + + + ProEditorContainer + + + Form + + + + + Advanced Mode + + + + + ProEditorModel + + + <Global Scope> + + + + + Change Item + + + + + Change Variable Assignment + + + + + Change Variable Type + + + + + Change Scope Condition + + + + + Change Expression + + + + + Move Item + + + + + Remove Item + + + + + Insert Item + + + + + ProcessStep + + + Custom Process Step + + + + + ProgressView + + + Processes + + + + + ProjectExplorer::Internal::AllProjectsFilter + + + Files in any project + + + + + ProjectExplorer::Internal::BuildSettingsPropertiesPage + + + Form + + + + + Configurations + + + + + + + + + + + - + + + + + TextLabel + + + + + ProjectExplorer::Internal::BuildStepsPage + + + Form + + + + + 1 + 1 + + + + + + + + + + - + + + + + ^ + + + + + v + + + + + ProjectExplorer::Internal::CompileOutputWindow + + + Compile Output + + + + + ProjectExplorer::Internal::CurrentProjectFilter + + + Files in current project + + + + + ProjectExplorer::Internal::DependenciesPanel + + + Dependencies + + + + + ProjectExplorer::Internal::DependenciesWidget + + + Project Dependencies + + + + + Project Dependencies: + + + + + ProjectExplorer::Internal::EditorSettingsPropertiesPage + + + Form + + + + + Default File Encoding: + + + + + ProjectExplorer::Internal::ProcessStepWidget + + + Form + + + + + Enable custom process step + + + + + Name: + Name: + + + + Command: + + + + + Working Directory: + + + + + Command Arguments: + + + + + ProjectExplorer::Internal::ProjectFileWizardExtension + + + Failed to add one or more files to project +'%1' (%2). + + + + + Failed to add '%1' to the version control system. + + + + + ProjectExplorer::Internal::RemoveFileDialog + + + Remove File + + + + + File to delete: + + + + + &Delete file permanently + + + + + &Remove from Version Control + + + + + ProjectExplorer::Internal::RunSettingsPropertiesPage + + + Form + + + + + Run &configuration: + + + + + + + + + + + - + + + + + Settings + + + + + ProjectExplorer::Internal::SessionDialog + + + Session Manager + + + + + Choose your session + + + + + Create New Session + + + + + Clone Session + + + + + Delete Session + + + + + ProjectExplorer::Internal::TaskWindow + + + Build Issues + + + + + ProjectExplorer::Internal::WizardPage + + + WizardPage + + + + + Project management + + + + + &Add to Project + + + + + &Project + + + + + Add to &version control + + + + + The following files will be added: + + + + + + + + + ProjectExplorerPlugin + + + Projects + + + + + Open With + + + + + Session Manager... + + + + + New Project... + + + + + Ctrl+Shift+N + + + + + Load Project... + + + + + Ctrl+Shift+O + + + + + Open File + + + + + Show in Finder... + + + + + + Unload Project + + + + + Unload All Projects + + + + + Session + + + + + Set Build Configuration + + + + + Build All + + + + + Ctrl+Shift+B + + + + + Rebuild All + + + + + Clean All + + + + + + Build Project + + + + + Ctrl+B + + + + + Rebuild Project + + + + + Clean Project + + + + + + Run + + + + + Ctrl+R + + + + + Set Run Configuration + + + + + Go to Task Window + + + + + Cancel Build + + + + + + Start Debugging + + + + + F5 + + + + + Add New... + + + + + Add Existing Files... + + + + + Remove File... + + + + + Rename + + + + + Load Project + + + + + New Project + Title of dialog + Neues Projekt + + + + Unload Project "%1" + + + + + Build Project "%1" + + + + + New File + Title of dialog + + + + + Add Existing Files + + + + + Could not add following files to project %1: + + + + + + Add files to project failed + + + + + Add to Version Control + + + + + Add files +%1 +to version control (%2)? + + + + + Could not add following files to version control (%1) + + + + + + Add files to version control failed + + + + + Remove file failed + + + + + Could not remove file %1 from project %2. + + + + + Delete file failed + + + + + Could not delete file %1. + + + + + ProjectFileFactory + + + Could not open the following project: '%1' + + + + + ProjectLoadWizard + + + 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> + + + + + ProjectTreeWidget + + + Simplify tree + + + + + Hide generated files + + + + + Synchronize with Editor + + + + + ProjectTreeWidgetFactory + + + Projects + + + + + Filter tree + + + + + ProjectWindow + + + Project Explorer + + + + + Projects + + + + + Startup + + + + + Path + + + + + ProjectWizardPage + + + Add to &VCS (%1) + + + + + QHelpProjectManager + + + Qt Help Project File (*.qthp) + + + + + QLibrary + + + Could not mmap '%1': %2 + + + + + Plugin verification data mismatch in '%1' + + + + + Could not unmap '%1': %2 + + + + + + The shared library was not found. + + + + + The file '%1' is not a valid Qt plugin. + + + + + The plugin '%1' uses incompatible Qt library. (%2.%3.%4) [%5] + + + + + The plugin '%1' uses incompatible Qt library. Expected build key "%2", got "%3" + + + + + The plugin '%1' uses incompatible Qt library. (Cannot mix debug and release libraries.) + + + + + The plugin was not loaded. + + + + + Unknown error + + + + + + Cannot load library %1: %2 + + + + + + Cannot unload library %1: %2 + + + + + + Cannot resolve symbol "%1" in %2: %3 + + + + + QMakeStep + + + +<font color="#ff0000"><b>No valid Qt version set. Set one in Preferences </b></font> + + + + + + +<font color="#ff0000"><b>No valid Qt version set. Set one in Tools/Options </b></font> + + + + + + QMAKESPEC set to + + + + + overrides mkspec of selected qt + + + + + <font color="#0000ff">Configuration unchanged, skipping QMake step.</font> + + + + + Form + + + + + QMake Build Configuration: + + + + + debug + + + + + release + + + + + Additional arguments: + + + + + Effective qmake call: + + + + + QObject + + + File Changed + + + + + The file %1 has changed outside Qt Creator. Do you want to reload it? + + + + + File is Read Only + + + + + The file %1 is read only. + + + + + Open with VCS (%1) + + + + + Make writable + + + + + Save as ... + + + + + Debugger properties... + + + + + Adjust column widths to contents + + + + + Always adjust column widths to contents + + + + + Watch expression "%1" + + + + + Remove watch expression "%1" + + + + + Watch expression "%1" in separate window + + + + + Expand item + + + + + Collapse item + + + + + Use Debugging Helper + + + + + Debug debugging helper + + + + + Recheck debugging helper availability + + + + + Syncronize breakpoints + + + + + Hexadecimal + + + + + Decimal + + + + + Octal + + + + + Binary + + + + + Raw + + + + + Natural + + + + + Automatically quit debugger + + + + + Use tooltips when debugging + + + + + List source files + + + + + Skip known frames + + + + + Reload full stack + + + + + Execute line + + + + + Toggle vim-style editing + + + + + FakeVim properties... + + + + + Files + + + + + Pass + + + + + Expected Failure + + + + + Failure + + + + + Expected Pass + + + + + Warning + + + + + Qt Warning + + + + + Qt Debug + + + + + Critical + + + + + Fatal + + + + + Skipped + + + + + Info + + + + + QTestOutputPane + + + Test Results + + + + + Result + + + + + Message + + + + + QTestOutputWidget + + + All Incidents + + + + + Show Only: + + + + + QrcEditor + + + Add Files + + + + + Add Prefix + + + + + Invalid file + + + + + Copy + + + + + Don't add + + + + + Abort + + + + + The file %1 is not in a subdirectory of the resource file. Continuing will result in an invalid resource file. + + + + + Choose copy location + + + + + Overwrite failed + + + + + Could not overwrite file %1. + + + + + Copying failed + + + + + Could not copy the file to %1. + + + + + + Form + + + + + + Add + + + + + + Remove + + + + + + Properties + + + + + + Prefix: + + + + + + Language: + + + + + + Alias: + + + + + Qt4BuildConfigWidget + + + Shadow Build Directory + + + + + General + + + + + Default Qt Version + + + + + Qt4BuildEnvironmentWidget + + + Build Environment + + + + + Reset + + + + + Remove + + + + + Qt4Manager + + + Loading project %1 ... + + + + + Failed opening project '%1': Project file does not exist + + + + + + Failed opening project + + + + + Failed opening project '%1': Project already open + + + + + Opening %1 ... + + + + + Done opening project + + + + + Qt4PriFileNode + + + + Failed! + + + + + Could not open the file for edit with SCC. + + + + + Could not set permissions to writable. + + + + + There are unsaved changes for project file %1. + + + + + Error while parsing file %1. Giving up. + + + + + Error while changing pro file %1. + + + + + Qt4ProFileNode + + + Error while parsing file %1. Giving up. + + + + + Could not find .pro file for sub dir '%1' in '%2' + + + + + Qt4ProjectManager::Internal::ConsoleAppWizard + + + Qt4 Console Application + + + + + Creates a Qt4 console application. + + + + + Qt4ProjectManager::Internal::ConsoleAppWizardDialog + + + This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not present a GUI. You can press 'Finish' at any point in time. + + + + + Qt4ProjectManager::Internal::EnvEditDialog + + + Build Environment + + + + + Make Command: + + + + + Build Environment: + + + + + mkspec: + + + + + 0 + + + + + 1 + 1 + + + + Values: + + + + + Variable: + + + + + Import + + + + + OK + + + + + Cancel + + + + + Qt4ProjectManager::Internal::EnvVariablesPage + + + Form + + + + + Build Environments + + + + + Add... + + + + + Edit... + + + + + Delete + + + + + Default mkspec: + + + + + Default make command: + + + + + Qt4ProjectManager::Internal::FilesPage + + + Class Information + + + + + Specify basic information about the classes for which you want to generate skeleton source code files. + + + + + Qt4ProjectManager::Internal::GuiAppWizard + + + Qt4 Gui Application + + + + + Creates a Qt4 Gui Application with one form. + + + + + The template file '%1' could not be opened for reading: %2 + + + + + Qt4ProjectManager::Internal::GuiAppWizardDialog + + + This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. + + + + + Qt4ProjectManager::Internal::LibraryWizard + + + C++ Library + + + + + Creates a C++ Library. + + + + + Qt4ProjectManager::Internal::LibraryWizardDialog + + + This wizard generates a C++ library project. + + + + + Qt4ProjectManager::Internal::ProEditor + + + New + Neu + + + + Remove + + + + + Up + + + + + Down + + + + + Qt4ProjectManager::Internal::Qt4BuildConfigWidget + + + Form + + + + + Configuration Name: + + + + + Qt Version: + + + + + Manage Qt Versions + + + + + This Qt-Version is invalid. + + + + + Shadow Build: + + + + + Build Directory: + + + + + <a href="import">Import existing build</a> + + + + + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget + + + Form + + + + + Clear system environment + + + + + &Edit + &Bearbeiten + + + + &Add + + + + + &Reset + + + + + &Unset + + + + + Qt4ProjectManager::Internal::QtVersionManager + + + Form + + + + + Qt versions + + + + + + + + + + + - + + + + + Name + + + + + Path + + + + + Debugging Helper + + + + + Version Name: + + + + + Path: + Pfad: + + + + MinGw Directory: + + + + + Debugging Helper: + + + + + Show &Log + + + + + &Rebuild + + + + + Default Qt Version: + + + + + Qt4ProjectManager::Internal::ValueEditor + + + Edit Variable + + + + + Variable Name: + + + + + Assignment Operator: + + + + + Variable: + + + + + Append (+=) + + + + + Remove (-=) + + + + + Replace (~=) + + + + + Set (=) + + + + + Unique (*=) + + + + + Select Item + + + + + Edit Item + + + + + Select Items + + + + + Edit Items + + + + + New + Neu + + + + Remove + + + + + Qt4ProjectManagerPlugin + + + + Run qmake + + + + + Qt4RunConfiguration + + + + Qt4RunConfiguration + + + + + Qt4RunConfigurationWidget + + + Name: + Name: + + + + Executable: + + + + + Working Directory: + + + + + &Arguments: + + + + + Run in &Terminal + + + + + Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) + + + + + QtDirWidget + + + <specify a name> + + + + + <specify a path> + + + + + Select QTDIR + + + + + Select the Qt Directory + + + + + The Qt Version is not installed. Run make install + + + + + %1 is not a valid qt directory + + + + + QtScriptEditor::Internal::QtScriptEditorActionHandler + + + Qt Script Error + + + + + QtScriptEditor::Internal::ScriptEditor + + + <Select Symbol> + + + + + QtScriptEditorPlugin + + + + Qt Script file + + + + + Qt + + + + + Run + + + + + Ctrl+R + + + + + QtVersionManager + + + + Auto-detected Qt + + + + + <not found> + + + + + QtWizard + + + The project %1 could not be opened. + + + + + QuickOpen::Internal::DirectoryFilterOptions + + + Dialog + + + + + Name: + Name: + + + + File Types: + + + + + Specify file name filters, separated by comma. Filters may contain wildcards. + + + + + Prefix: + + + + + 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 QuickOpen entry field, and then the word to search for. + + + + + Limit to prefix + + + + + Add... + + + + + Edit... + + + + + Remove + + + + + Directories: + + + + + QuickOpen::Internal::FileSystemFilter + + + Files in file system + + + + + QuickOpen::Internal::FileSystemFilterOptions + + + Filter configuration + + + + + Prefix: + + + + + Limit to prefix + + + + + Include hidden files + + + + + Filter: + + + + + QuickOpen::Internal::OpenDocumentsFilter + + + Open documents + + + + + QuickOpen::Internal::SettingsDialog + + + Configure Filters + + + + + Add + + + + + Remove + + + + + Edit + + + + + Refresh Intervall: + + + + + min + + + + + Refresh now! + + + + + QuickOpen::Internal::SettingsWidget + + + Configure Filters + + + + + Add + + + + + Remove + + + + + Edit + + + + + Refresh Interval: + + + + + min + + + + + QuickOpenFiltersFilter + + + Available filters + + + + + QuickOpenPlugin + + + Indexing + + + + + QuickOpenToolWindow + + + Refresh + + + + + Configure... + + + + + Type to locate + + + + + RegExpWindow + + + &Pattern: + + + + + &Escaped Pattern: + + + + + &Pattern Syntax: + + + + + &Text: + + + + + Case &Sensitive + + + + + &Minimal + + + + + Index of Match: + + + + + Matched Length: + + + + + Regular expression v1 + + + + + Regular expression v2 + + + + + Wildcard + + + + + Fixed string + + + + + Capture %1: + + + + + Match: + + + + + Regular Expression + + + + + Enter pattern from code... + + + + + Clear patterns + + + + + Clear texts + + + + + Enter pattern from code + + + + + Pattern + + + + + RegisterHandler + + + Name + + + + + Value + + + + + RegisterWindow + + + Registers + + + + + ResourceEditor::Internal::ResourceEditorW + + + untitled + + + + + ResourceEditorPlugin + + + + Resource file + + + + + Qt + + + + + &Undo + &Rückgangig + + + + &Redo + &Wiederholen + + + + RunSettingsPanel + + + Run Settings + + + + + SaveItemsDialog + + + Don't Save + + + + + Save All + + + + + Save + + + + + Save Selected + + + + + Save Changes + + + + + The following files have unsaved changes: + + + + + ScriptEngine + + + Stopped. + + + + + ScriptManager + + + Exception at line %1: %2 +%3 + + + + + Unknown error + + + + + SearchResultWindow + + + No matches found! + + + + + Expand All + + + + + SearchWidget + + + &Copy + &Kopieren + + + + Copy &Link Location + + + + + + Open Link in New Tab + + + + + Select All + + + + + Open Link + + + + + SessionFile + + + Session + + + + + Untitled + default file name to display + + + + + SessionManager + + + Error while loading session + + + + + Could not load session %1 + + + + + Error while saving session + + + + + Could not save session to file %1 + + + + + Qt Creator + + + + + + Untitled + + + + + Session ('%1') + + + + + SettingsDialog + + + Options + + + + + 0 + + + + + SettingsPage + + + General + + + + + CodePaster + + + + + Designer + + + + + Perforce + + + + + %1 (Prefix: %2) + + + + + Subversion + + + + + SettingsPageWidget + + + Perforce Command + + + + + Subversion Command + + + + + ShadowBuildPage + + + 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. + + + + + SharedTools::ResourceView + + + Add Files... + + + + + Change Alias... + + + + + Add Prefix... + + + + + Change Prefix... + + + + + Change Language... + + + + + Remove Item + + + + + Open file + + + + + All files (*) + + + + + Change Prefix + + + + + Input Prefix: + + + + + Change Language + + + + + Language: + + + + + Change File Alias + + + + + Alias: + + + + + ShortcutSettings + + + Keyboard + + + + + Environment + + + + + Import Keyboard Mapping Scheme + + + + + + Keyboard Mapping Scheme (*.kms) + + + + + Export Keyboard Mapping Scheme + + + + + Form + + + + + Keyboard Shortcuts + + + + + Filter: + + + + + Command + + + + + Label + + + + + Shortcut + + + + + Defaults + + + + + Import... + + + + + Export... + + + + + Key Sequence + + + + + Shortcut: + + + + + Reset + + + + + Remove + + + + + ShowBuildLog + + + Dialog + + + + + SideBarWidget + + + Split + + + + + Close + + + + + SimpleProEditor + + + Debug and Release + + + + + Debug specific + + + + + Release specific + + + + + All platforms + + + + + MS Windows specific + + + + + Linux/Unix specific + + + + + Mac OSX specific + + + + + Target Options + + + + + Type and name of the target. + + + + + Preprocessor Definitions + + + + + Setting of the preprocessor definitions. + + + + + Include path + + + + + Setting of the pathes where the header files are located. + + + + + Libraries + + + + + Defining the libraries to link the target against and the pathes where these are located. + + + + + Source Files + + + + + Header Files + + + + + Forms + + + + + Qt Modules + + + + + Setting up which of the Qt modules will be used in the target application. + + + + + Resource files + + + + + Target name + + + + + The name of the resulting target. + + + + + Configuration + + + + + Configuration. + + + + + Destination directory + + + + + Where the resulting target will be created. + + + + + QtCore Module + + + + + Core non-GUI classes used by other modules + + + + + QtGui Module + + + + + Graphical user interface components + + + + + QtNetwork Module + + + + + Classes for network programming + + + + + QtOpenGL Module + + + + + OpenGL support classes + + + + + QtSql Module + + + + + Classes for database integration using SQL + + + + + QtScript Module + + + + + Classes for evaluating Qt Scripts + + + + + QtSvg Module + + + + + Classes for displaying the contents of SVG files + + + + + QtWebKit Module + + + + + Classes for displaying and editing Web content + + + + + QtXml Module + + + + + Classes for handling XML + + + + + QtXmlPatterns Module + + + + + An XQuery/XPath engine for XML and custom data models + + + + + Phonon Module + + + + + Multimedia framework classes + + + + + Qt3Support Module + + + + + Classes that ease porting from Qt 3 to Qt 4 + + + + + QtTest Module + + + + + Tool classes for unit testing + + + + + QtDBus module + + + + + Classes for Inter-Process Communication using the D-Bus + + + + + Application + + + + + Create a standalone application + + + + + Dynamic Library + + + + + Create a dynamic library for usage in other applications + + + + + Static Library + + + + + Create a static library for usage in other applications + + + + + Add Operator + + + + + Remove Operator + + + + + Replace Operator + + + + + Set Operator + + + + + Unique Add Operator + + + + + SnippetsPlugin + + + Snippets + + + + + SnippetsWindow + + + Snippets + + + + + SourceFilesModel + + + Internal name + + + + + Full name + + + + + SourceFilesWindow + + + Source Files + + + + + Reload data + + + + + Open file + + + + + Open file "%1"' + + + + + StackHandler + + + Level + + + + + Function + + + + + File + + + + + Line + + + + + Address + + + + + StackWindow + + + Stack + + + + + Copy contents to clipboard + + + + + Adjust column widths to contents + + + + + Always adjust column widths to contents + + + + + StartExternalDialog + + + Start Debugger + + + + + Executable: + + + + + Arguments: + + + + + Subversion::Internal::SettingsPage + + + Form + + + + + Subversion Command: + + + + + Authentication + + + + + User name: + + + + + Password: + + + + + SubversionOutputWindow + + + Subversion Output + + + + + Subversion + + + + + SubversionPlugin + + + &Subversion + + + + + Add + + + + + Alt+S,Alt+A + + + + + Delete + + + + + Revert + + + + + Diff Project + + + + + Diff Current File + + + + + Alt+S,Alt+D + + + + + Commit All Files + + + + + Commit Current File + + + + + Alt+S,Alt+C + + + + + Filelog Current File + + + + + Annotate Current File + + + + + Describe... + + + + + Project Status + + + + + Update Project + + + + + Commit + + + + + Diff Selected Files + + + + + &Undo + &Rückgangig + + + + &Redo + &Wiederholen + + + + Closing Subversion Editor + + + + + Do you want to commit the change? + + + + + The commit message check failed. Do you want to commit the change? + + + + + svn diff %1 + + + + + Add %1 + + + + + Delete %1 + + + + + Revert %1 + + + + + Diff %1 + + + + + Commit %1 + + + + + Filelog %1 + + + + + Annotate %1 + + + + + svn revert + + + + + The file has been changed. Do you want to revert it? + + + + + The commit list spans several respositories (%1). Please commit them one by one. + + + + + svn commit + + + + + Another commit is currently being executed. + + + + + There are no modified files. + + + + + Cannot create temporary file: %1 + + + + + svn log %1 + + + + + svn annotate %1 + + + + + svn describe %1#%2 + + + + + Describe + + + + + Revision number: + + + + + No subversion executable specified! + + + + + %1 Executing: %2 %3 + + + + + + The process terminated with exit code %1. + + + + + The process terminated abnormally. + + + + + Could not start subversion '%1'. Please check your settings in the preferences. + + + + + Subversion did not respond within timeout limit (%1 ms). + + + + + SubversionSubmitEditor + + + Subversion Submit + Subversion Submit + + + + TaskDelegate + + + File not found: %1 + + + + + TaskWindow + + + Build Issues + + + + + &Copy + &Kopieren + + + + TextEditor::BehaviorSettingsPage + + + Form + + + + + Storage + + + + + Removes trailing whitespace on saving. + + + + + &Clean whitespace + + + + + Clean whitespace in entire document instead of only for changed parts. + + + + + In entire &document + + + + + Correct leading whitespace according to tab settings. + + + + + Clean indentation + + + + + &Ensure newline at end of file + + + + + Tabs and Indentation + + + + + Ta&b size: + + + + + &Indent size: + + + + + Backspace will go back one indentation level instead of one space. + + + + + &Backspace follows indentation + + + + + Insert &spaces instead of tabs + + + + + Enable automatic &indentation + + + + + TextEditor::DisplaySettingsPage + + + Form + + + + + Display + + + + + Display line &numbers + + + + + Display &folding markers + + + + + Show tabs and spaces. + + + + + &Visualize whitespace + + + + + Highlight current &line + + + + + Text Wrapping + + + + + Enable text &wrapping + + + + + Display right &margin at column: + + + + + TextEditor::Internal::FontSettingsPage + + + Form + + + + + Font + + + + + Family: + + + + + Size: + + + + + Color Scheme + + + + + Bold + + + + + Italic + + + + + Background: + + + + + Foreground: + + + + + Erase background + + + + + x + + + + + Preview: + + + + + TextEditor::Internal::LineNumberFilter + + + Line in current document + + + + + TextEditorActionHandler + + + &Undo + &Rückgangig + + + + &Redo + &Wiederholen + + + + Select Encoding... + + + + + Auto-&indent Selection + + + + + Ctrl+I + + + + + &Visualize Whitespace + + + + + Ctrl+E, Ctrl+V + + + + + Clean Whitespace + + + + + Enable Text &Wrapping + + + + + Ctrl+E, Ctrl+W + + + + + (Un)Comment &Selection + + + + + Ctrl+/ + + + + + Delete &Line + + + + + Shift+Del + + + + + Collapse + + + + + Ctrl+< + + + + + Expand + + + + + Ctrl+> + + + + + (Un)&Collapse All + + + + + Increase Font Size + + + + + Ctrl++ + + + + + Decrease Font Size + + + + + Ctrl+- + + + + + Goto Block Start + + + + + Ctrl+[ + + + + + Goto Block End + + + + + Ctrl+] + + + + + Goto Block Start With Selection + + + + + Ctrl+{ + + + + + Goto Block End With Selection + + + + + Ctrl+} + + + + + Select Block Up + + + + + Ctrl+U + + + + + Select Block Down + + + + + Ctrl+Shift+U + + + + + Move Line Up + + + + + Ctrl+Shift+Up + + + + + Move Line Down + + + + + Ctrl+Shift+Down + + + + + TextEditorPlugin + + + This creates a new text file (.txt) + + + + + Text File + + + + + General + + + + + Triggers a completion in this scope + + + + + Ctrl+Space + + + + + Meta+Space + + + + + TextEditorSettings + + + Text + + + + + Link + + + + + Selection + + + + + Line Number + + + + + Search Result + + + + + Search Scope + + + + + Parentheses + + + + + Current Line + + + + + Number + + + + + String + + + + + Type + + + + + Keyword + + + + + Operator + + + + + Preprocessor + + + + + Label + + + + + Comment + + + + + Doxygen Comment + + + + + Doxygen Tag + + + + + Disabled Code + + + + + Added Line + + + + + Removed Line + + + + + Diff File + + + + + Diff Location + + + + + + + Text Editor + + + + + Behavior + + + + + Display + + + + + ThreadsHandler + + + Thread ID + + + + + ThreadsWindow + + + Thread + + + + + Adjust column widths to contents + + + + + Always adjust column widths to contents + + + + + TitleMapThread + + + Documentation file %1 does not exist! +Skipping file. + + + + + Documentation file %1 is not compatible! +Skipping file. + + + + + TopicChooser + + + Choose a topic for <b>%1</b>: + + + + + Choose Topic + + + + + &Topics + + + + + &Display + + + + + &Close + + + + + VCSBase + + + Version Control + + + + + Common + + + + + VCSBase::Internal::NickNameDialog + + + Name + + + + + E-mail + + + + + Alias + + + + + Alias e-mail + + + + + Cannot open '%1': %2 + + + + + VCSBase::SubmitFileModel + + + State + + + + + File + + + + + VCSBase::VCSBaseEditor + + + Describe change %1 + + + + + VCSBase::VCSBaseSubmitEditor + + + Check message + + + + + Insert name... + + + + + Submit Message Check failed + + + + + Unable to open '%1': %2 + + + + + The check script '%1' could not be started: %2 + + + + + The check script '%1' could not be run: %2 + + + + + The check script returned exit code %1. + + + + + VCSBaseSettingsPage + + + Form + + + + + Prompt to submit + + + + + Wrap submit message at: + + + + + 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> + + + + + User/alias configuration file: + + + + + A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. + + + + + User fields configuration file: + + + + + VCSManager + + + Version Control + + + + + Would you like to remove this file from the version control system (%1)? +Note: This might remove the local file. + + + + + ValueEditor + + + Edit Values + + + + + Edit %1 + + + + + Edit Scope + + + + + Edit Advanced Expression + + + + + VersionDialog + + + About Qt Creator + + + + + <h3>Qt Creator %1</h3>Based on Qt %2<br/><br/>Built on + + + + + ViewDialog + + + Send to Codepaster + + + + + &Username: + + + + + <Username> + + + + + &Description: + + + + + <Description> + + + + + <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> + + + + + Parts to send to codepaster + + + + + Patch 1 + + + + + Patch 2 + + + + + WatchHandler + + + Name + + + + + Value + + + + + Type + + + + + WatchWindow + + + Locals and Watchers + + + + + Insert new watch item + + + + + WinGuiProcess + + + The process could not be started! + + + + + Cannot retrieve debugging output! + + + + + WorkbenchClientUser + + + + Perforce Error + + + + + Closing p4 Editor + + + + + Do you want to submit this change list? + + + + + WorkbenchIntegration + + + The class definition of '%1' could not be found in %2. + + + + + Error finding/adding a slot. + + + + + No documents matching '%1' could be found. +Rebuilding the project might help. + + + + + Unable to add the method definition. + + + + + XmlFileUpToDatePage + + + Qt Creator has found a recent cbp file, which Qt Creator will parse to gather information about the project. You can change the command line arguments used to create this file in the project mode. Click finish to load the project + + + + + mainClass + + + main + + + + + Text1: + + + + + N/A + + + + + Text2: + + + + + Text3: + + + +