From b23e6b47d7638a92d77ba7a71d4892a3863d58a6 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Wed, 7 Jul 2010 14:01:17 +0200 Subject: Re-enable the qml-runtime wizard. (cherry picked from commit 758bcff85e2af16f836d251a55228e5236eced71) --- .../templates/wizards/qml-runtime/wizard.xml | 60 ++++++++++++++++++++++ .../wizards/qml-runtime/wizard_disabled.xml | 60 ---------------------- 2 files changed, 60 insertions(+), 60 deletions(-) create mode 100644 share/qtcreator/templates/wizards/qml-runtime/wizard.xml delete mode 100644 share/qtcreator/templates/wizards/qml-runtime/wizard_disabled.xml diff --git a/share/qtcreator/templates/wizards/qml-runtime/wizard.xml b/share/qtcreator/templates/wizards/qml-runtime/wizard.xml new file mode 100644 index 0000000000..5800b8ef5d --- /dev/null +++ b/share/qtcreator/templates/wizards/qml-runtime/wizard.xml @@ -0,0 +1,60 @@ + + + + lib.png + Creates a C++ plugin to extend the funtionality of the QML runtime. + QML Runtime Plug-in + QML Runtime Plug-in + + + + + + + + + + QML Runtime Plug-in Parameters + + + + Example Object Class-name: + + + diff --git a/share/qtcreator/templates/wizards/qml-runtime/wizard_disabled.xml b/share/qtcreator/templates/wizards/qml-runtime/wizard_disabled.xml deleted file mode 100644 index 5800b8ef5d..0000000000 --- a/share/qtcreator/templates/wizards/qml-runtime/wizard_disabled.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - lib.png - Creates a C++ plugin to extend the funtionality of the QML runtime. - QML Runtime Plug-in - QML Runtime Plug-in - - - - - - - - - - QML Runtime Plug-in Parameters - - - - Example Object Class-name: - - - -- cgit v1.2.1 From a3cd6e7923deee74745b790c66e687d79668e5c6 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 16 Jul 2010 15:08:46 +0200 Subject: clean up string extraction from xml files --- .gitignore | 2 -- share/qtcreator/translations/extract-customwizards.xq | 6 ++++++ share/qtcreator/translations/extract-customwizards.xq.in | 9 --------- share/qtcreator/translations/extract-mimetypes.xq | 5 +++++ share/qtcreator/translations/extract-mimetypes.xq.in | 6 ------ share/qtcreator/translations/translations.pro | 10 ++++------ 6 files changed, 15 insertions(+), 23 deletions(-) create mode 100644 share/qtcreator/translations/extract-customwizards.xq delete mode 100644 share/qtcreator/translations/extract-customwizards.xq.in create mode 100644 share/qtcreator/translations/extract-mimetypes.xq delete mode 100644 share/qtcreator/translations/extract-mimetypes.xq.in diff --git a/.gitignore b/.gitignore index 4e24482f81..b171475b04 100644 --- a/.gitignore +++ b/.gitignore @@ -53,8 +53,6 @@ Thumbs.db *.Release # translation related: -share/qtcreator/translations/extract-mimetypes.xq -share/qtcreator/translations/extract-customwizards.xq # Directories to ignore # --------------------- diff --git a/share/qtcreator/translations/extract-customwizards.xq b/share/qtcreator/translations/extract-customwizards.xq new file mode 100644 index 0000000000..63e9887c48 --- /dev/null +++ b/share/qtcreator/translations/extract-customwizards.xq @@ -0,0 +1,6 @@ +let $prefix := string("QT_TRANSLATE_NOOP("ProjectExplorer::CustomWizard", "") +let $suffix := concat("")", codepoints-to-string(10)) +for $file in tokenize($files, string("\|")) + let $doc := doc($file) + for $text in ($doc/*:wizard/*:description, $doc/*:wizard/*:displayname, $doc/*:wizard/*:displaycategory, $doc/*:wizard/*:fieldpagetitle, $doc/*:wizard/*:fields/*:field/*:fielddescription) + return fn:concat($prefix, data($text), $suffix) diff --git a/share/qtcreator/translations/extract-customwizards.xq.in b/share/qtcreator/translations/extract-customwizards.xq.in deleted file mode 100644 index 2112c4be83..0000000000 --- a/share/qtcreator/translations/extract-customwizards.xq.in +++ /dev/null @@ -1,9 +0,0 @@ -let $files := ( $$CUSTOMWIZARD_FILES ) -let $prefix := string(\"QT_TRANSLATE_NOOP("ProjectExplorer::CustomWizard", "\") -let $suffix := concat(\"")\", codepoints-to-string(10)) -where empty($files) -return -for $file in $files - let $doc := doc($file) - for $text in ($doc/*:wizard/*:description, $doc/*:wizard/*:displayname, $doc/*:wizard/*:displaycategory, $doc/*:wizard/*:fieldpagetitle, $doc/*:wizard/*:fields/*:field/*:fielddescription) - return fn:concat($prefix, data($text), $suffix) diff --git a/share/qtcreator/translations/extract-mimetypes.xq b/share/qtcreator/translations/extract-mimetypes.xq new file mode 100644 index 0000000000..181d99d499 --- /dev/null +++ b/share/qtcreator/translations/extract-mimetypes.xq @@ -0,0 +1,5 @@ +let $prefix := string("QT_TRANSLATE_NOOP("MimeType", "") +let $suffix := concat("")", codepoints-to-string(10)) +for $file in tokenize($files, string("\|")) + for $comment in doc($file)/*:mime-info/*:mime-type/*:comment + return fn:concat($prefix, data($comment), $suffix) diff --git a/share/qtcreator/translations/extract-mimetypes.xq.in b/share/qtcreator/translations/extract-mimetypes.xq.in deleted file mode 100644 index 8a4bb835f7..0000000000 --- a/share/qtcreator/translations/extract-mimetypes.xq.in +++ /dev/null @@ -1,6 +0,0 @@ -let $files := ( $$MIMETYPES_FILES ) -let $prefix := string(\"QT_TRANSLATE_NOOP("MimeType", "\") -let $suffix := concat(\"")\", codepoints-to-string(10)) -for $file in $files - for $comment in doc($file)/*:mime-info/*:mime-type/*:comment - return fn:concat($prefix, data($comment), $suffix) diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro index 831a851170..8e1b9f7290 100644 --- a/share/qtcreator/translations/translations.pro +++ b/share/qtcreator/translations/translations.pro @@ -19,16 +19,14 @@ MIME_TR_H = $$OUT_PWD/mime_tr.h CUSTOMWIZARD_TR_H = $$OUT_PWD/customwizard_tr.h for(dir, $$list($$files($$IDE_SOURCE_TREE/src/plugins/*))):MIMETYPES_FILES += $$files($$dir/*.mimetypes.xml) -MIMETYPES_FILES = \"$$join(MIMETYPES_FILES, \", \")\" +MIMETYPES_FILES = \"$$join(MIMETYPES_FILES, |)\" for(dir, $$list($$files($$IDE_SOURCE_TREE/share/qtcreator/templates/wizards/*))):CUSTOMWIZARD_FILES += $$files($$dir/wizard.xml) -CUSTOMWIZARD_FILES = \"$$join(CUSTOMWIZARD_FILES, \", \")\" +CUSTOMWIZARD_FILES = \"$$join(CUSTOMWIZARD_FILES, |)\" -QMAKE_SUBSTITUTES += extract-mimetypes.xq.in -QMAKE_SUBSTITUTES += extract-customwizards.xq.in ts.commands += \ - $$XMLPATTERNS -output $$MIME_TR_H $$PWD/extract-mimetypes.xq && \ - $$XMLPATTERNS -output $$CUSTOMWIZARD_TR_H $$PWD/extract-customwizards.xq && \ + $$XMLPATTERNS -output $$MIME_TR_H -param files=$$MIMETYPES_FILES $$PWD/extract-mimetypes.xq $$escape_expand(\\n\\t) \ + $$XMLPATTERNS -output $$CUSTOMWIZARD_TR_H -param files=$$CUSTOMWIZARD_FILES $$PWD/extract-customwizards.xq $$escape_expand(\\n\\t) \ (cd $$IDE_SOURCE_TREE && $$LUPDATE src share/qtcreator/qmldesigner $$MIME_TR_H $$CUSTOMWIZARD_TR_H -ts $$TRANSLATIONS) && \ $$QMAKE_DEL_FILE $$MIME_TR_H QMAKE_EXTRA_TARGETS += ts -- cgit v1.2.1 From abf94a6cddc502e14a8760cb12bc542315683a24 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 16 Jul 2010 14:51:37 +0200 Subject: add fine-grained ts- targets the old ts target is now named ts-all, and it will update even the files which are disabled from compilation/release. --- .gitignore | 1 + share/qtcreator/translations/translations.pro | 24 ++++++++++++++++++++---- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index b171475b04..376aadb40a 100644 --- a/.gitignore +++ b/.gitignore @@ -53,6 +53,7 @@ Thumbs.db *.Release # translation related: +share/qtcreator/translations/*_tr.h # Directories to ignore # --------------------- diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro index 8e1b9f7290..9e3389bf1d 100644 --- a/share/qtcreator/translations/translations.pro +++ b/share/qtcreator/translations/translations.pro @@ -24,11 +24,27 @@ MIMETYPES_FILES = \"$$join(MIMETYPES_FILES, |)\" for(dir, $$list($$files($$IDE_SOURCE_TREE/share/qtcreator/templates/wizards/*))):CUSTOMWIZARD_FILES += $$files($$dir/wizard.xml) CUSTOMWIZARD_FILES = \"$$join(CUSTOMWIZARD_FILES, |)\" -ts.commands += \ +extract.commands += \ $$XMLPATTERNS -output $$MIME_TR_H -param files=$$MIMETYPES_FILES $$PWD/extract-mimetypes.xq $$escape_expand(\\n\\t) \ - $$XMLPATTERNS -output $$CUSTOMWIZARD_TR_H -param files=$$CUSTOMWIZARD_FILES $$PWD/extract-customwizards.xq $$escape_expand(\\n\\t) \ - (cd $$IDE_SOURCE_TREE && $$LUPDATE src share/qtcreator/qmldesigner $$MIME_TR_H $$CUSTOMWIZARD_TR_H -ts $$TRANSLATIONS) && \ - $$QMAKE_DEL_FILE $$MIME_TR_H + $$XMLPATTERNS -output $$CUSTOMWIZARD_TR_H -param files=$$CUSTOMWIZARD_FILES $$PWD/extract-customwizards.xq +QMAKE_EXTRA_TARGETS += extract + +files = $$files($$PWD/*_??.ts) +for(file, files) { + lang = $$replace(file, .*_(.*)\\.ts, \\1) + v = ts-$${lang}.commands + $$v = cd $$IDE_SOURCE_TREE && $$LUPDATE src share/qtcreator/qmldesigner $$MIME_TR_H $$CUSTOMWIZARD_TR_H -ts $$file + v = ts-$${lang}.depends + $$v = extract + QMAKE_EXTRA_TARGETS += ts-$$lang +} +ts-all.commands = cd $$IDE_SOURCE_TREE && $$LUPDATE src share/qtcreator/qmldesigner $$MIME_TR_H $$CUSTOMWIZARD_TR_H -ts $$files +ts-all.depends = extract +QMAKE_EXTRA_TARGETS += ts-all + +ts.commands = \ + @echo \"The \'ts\' target has been removed in favor of more fine-grained targets.\" && \ + echo \"Use \'ts-\' instead.\" QMAKE_EXTRA_TARGETS += ts TEMPLATE = app -- cgit v1.2.1 From c7bd870ef14b68a349254a85cdaefedb4bbc660b Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 16 Jul 2010 15:11:51 +0200 Subject: add ts-untranslated target the generated file is not meant for committing --- .gitignore | 1 + share/qtcreator/translations/translations.pro | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 376aadb40a..99fd5fb227 100644 --- a/.gitignore +++ b/.gitignore @@ -54,6 +54,7 @@ Thumbs.db # translation related: share/qtcreator/translations/*_tr.h +share/qtcreator/translations/qtcreator_untranslated.ts # Directories to ignore # --------------------- diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro index 9e3389bf1d..42b889009f 100644 --- a/share/qtcreator/translations/translations.pro +++ b/share/qtcreator/translations/translations.pro @@ -29,7 +29,7 @@ extract.commands += \ $$XMLPATTERNS -output $$CUSTOMWIZARD_TR_H -param files=$$CUSTOMWIZARD_FILES $$PWD/extract-customwizards.xq QMAKE_EXTRA_TARGETS += extract -files = $$files($$PWD/*_??.ts) +files = $$files($$PWD/*_??.ts) $$PWD/qtcreator_untranslated.ts for(file, files) { lang = $$replace(file, .*_(.*)\\.ts, \\1) v = ts-$${lang}.commands @@ -44,7 +44,8 @@ QMAKE_EXTRA_TARGETS += ts-all ts.commands = \ @echo \"The \'ts\' target has been removed in favor of more fine-grained targets.\" && \ - echo \"Use \'ts-\' instead.\" + echo \"Use \'ts-\' instead. To add a language, use \'ts-untranslated\',\" && \ + echo \"rename the file and re-run \'qmake\'.\" QMAKE_EXTRA_TARGETS += ts TEMPLATE = app -- cgit v1.2.1 From 2d9c9cc86b5fde5b90eb4d9f63be8988c7599b08 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 16 Jul 2010 15:48:44 +0200 Subject: add commit-ts target to commit ts files without line number info it is pretty pointless to commit the extracted line number information, as it needs to be refreshed after pulling source code changes anyway. on top of it, it bloats the repository. --- share/qtcreator/translations/translations.pro | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro index 42b889009f..ec37eb6585 100644 --- a/share/qtcreator/translations/translations.pro +++ b/share/qtcreator/translations/translations.pro @@ -12,6 +12,7 @@ defineReplace(prependAll) { XMLPATTERNS = $$targetPath($$[QT_INSTALL_BINS]/xmlpatterns) LUPDATE = $$targetPath($$[QT_INSTALL_BINS]/lupdate) -locations relative -no-ui-lines -no-sort LRELEASE = $$targetPath($$[QT_INSTALL_BINS]/lrelease) +LCONVERT = $$targetPath($$[QT_INSTALL_BINS]/lconvert) TRANSLATIONS = $$prependAll(LANGUAGES, $$PWD/qtcreator_,.ts) @@ -42,6 +43,23 @@ ts-all.commands = cd $$IDE_SOURCE_TREE && $$LUPDATE src share/qtcreator/qmldesig ts-all.depends = extract QMAKE_EXTRA_TARGETS += ts-all +isEqual(QMAKE_DIR_SEP, /) { + commit-ts.commands = \ + cd $$IDE_SOURCE_TREE; \ + for f in `git diff-files --name-only share/qtcreator/translations/*_??.ts`; do \ + $$LCONVERT -locations none -i \$\$f -o \$\$f; \ + done; \ + git add share/qtcreator/translations/*_??.ts && git commit +} else { + wd = $$replace(IDE_SOURCE_TREE, /, \\) + commit-ts.commands = \ + cd $$wd && \ + for /f usebackq %%f in (`git diff-files --name-only share/qtcreator/translations/*_??.ts`) do \ + $$LCONVERT -locations none -i %%f -o %%f $$escape_expand(\\n\\t) \ + cd $$wd && git add share/qtcreator/translations/*_??.ts && git commit +} +QMAKE_EXTRA_TARGETS += commit-ts + ts.commands = \ @echo \"The \'ts\' target has been removed in favor of more fine-grained targets.\" && \ echo \"Use \'ts-\' instead. To add a language, use \'ts-untranslated\',\" && \ -- cgit v1.2.1 From 21ac8dcc0a3486de7fc82b3070dce0d6766143a5 Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 16 Jul 2010 16:10:14 +0200 Subject: add check-ts target to assess completeness of translations --- share/qtcreator/translations/check-ts.pl | 87 +++++++++++++++++++++++++++ share/qtcreator/translations/check-ts.xq | 3 + share/qtcreator/translations/translations.pro | 4 ++ 3 files changed, 94 insertions(+) create mode 100755 share/qtcreator/translations/check-ts.pl create mode 100644 share/qtcreator/translations/check-ts.xq diff --git a/share/qtcreator/translations/check-ts.pl b/share/qtcreator/translations/check-ts.pl new file mode 100755 index 0000000000..02909f2512 --- /dev/null +++ b/share/qtcreator/translations/check-ts.pl @@ -0,0 +1,87 @@ +#! /usr/bin/perl -w +############################################################################# +## +## Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +## All rights reserved. +## Contact: Nokia Corporation (qt-info@nokia.com) +## +## This file is part of the translations module of the Qt Toolkit. +## +## $QT_BEGIN_LICENSE:LGPL$ +## No Commercial Usage +## This file contains pre-release code and may not be distributed. +## You may use this file in accordance with the terms and conditions +## contained in the Technology Preview License Agreement accompanying +## this package. +## +## GNU Lesser General Public License Usage +## Alternatively, this file may be used under the terms of the GNU Lesser +## General Public License version 2.1 as published by the Free Software +## Foundation and appearing in the file LICENSE.LGPL included in the +## packaging of this file. Please review the following information to +## ensure the GNU Lesser General Public License version 2.1 requirements +## will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +## +## In addition, as a special exception, Nokia gives you certain additional +## rights. These rights are described in the Nokia Qt LGPL Exception +## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +## +## If you have questions regarding the use of this file, please contact +## Nokia at qt-info@nokia.com. +## +## +## +## +## +## +## +## +## $QT_END_LICENSE$ +## +############################################################################# + + +use strict; + +my %scores = (); + +my $files = join("\n", <*_??.ts>); +my $res = `xmlpatterns -param files=\"$files\" check-ts.xq`; +for my $i (split(/ /, $res)) { + $i =~ /^(?:[^\/]+\/)*qtcreator_(..)\.ts:(.*)$/; + my ($lang, $pc) = ($1, $2); + $scores{$lang} = $pc; +} + +my $code = ""; + +for my $lang (sort(keys(%scores))) { + my $pc = $scores{$lang}; + my $fail = ""; + if (int($pc) < 98) { + $fail = " (excluded)"; + } else { + $code .= " ".$lang; + } + printf "%-5s %3d%s\n", $lang, $pc, $fail; +} + +my $fn = "translations.pro"; +my $nfn = $fn."new"; +open IN, $fn or die; +open OUT, ">".$nfn or die; +while (1) { + $_ = ; + last if (/^LANGUAGES /); + print OUT $_; +} +while ($_ =~ /\\\n$/) { + $_ = ; +} +print OUT "LANGUAGES =".$code."\n"; +while () { + print OUT $_; +} +close OUT; +close IN; +rename $nfn, $fn; diff --git a/share/qtcreator/translations/check-ts.xq b/share/qtcreator/translations/check-ts.xq new file mode 100644 index 0000000000..2d6404cefc --- /dev/null +++ b/share/qtcreator/translations/check-ts.xq @@ -0,0 +1,3 @@ +for $file in tokenize($files, codepoints-to-string(10)) + let $fresh := doc($file)/TS/context/message[not (translation/@type = 'obsolete')] + return concat($file, ":", count($fresh/translation[not (@type = 'unfinished')]) * 100 idiv count($fresh)) diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro index ec37eb6585..ae4bd5c1bd 100644 --- a/share/qtcreator/translations/translations.pro +++ b/share/qtcreator/translations/translations.pro @@ -43,6 +43,10 @@ ts-all.commands = cd $$IDE_SOURCE_TREE && $$LUPDATE src share/qtcreator/qmldesig ts-all.depends = extract QMAKE_EXTRA_TARGETS += ts-all +check-ts.commands = (cd $$PWD && perl check-ts.pl) +check-ts.depends = ts-all +QMAKE_EXTRA_TARGETS += check-ts + isEqual(QMAKE_DIR_SEP, /) { commit-ts.commands = \ cd $$IDE_SOURCE_TREE; \ -- cgit v1.2.1 From 9f967960c11e8f77ce868f541510bdc209115d08 Mon Sep 17 00:00:00 2001 From: Erik Verbruggen Date: Mon, 19 Jul 2010 13:58:43 +0200 Subject: Fixed crash while renaming symbol when a symbol is being renamed. Task-number: QTCREATORBUG-1770 (cherry picked from commit 4dffc2aabc3b08d183a5ad2ebf0776861d33b41c) --- src/plugins/cppeditor/cppeditor.cpp | 19 ++++++++++--------- src/plugins/cppeditor/cppeditor.h | 1 + 2 files changed, 11 insertions(+), 9 deletions(-) diff --git a/src/plugins/cppeditor/cppeditor.cpp b/src/plugins/cppeditor/cppeditor.cpp index 6d0a06bf61..e18887104b 100644 --- a/src/plugins/cppeditor/cppeditor.cpp +++ b/src/plugins/cppeditor/cppeditor.cpp @@ -605,7 +605,7 @@ CPPEditorEditable::CPPEditorEditable(CPPEditor *editor) CPPEditor::CPPEditor(QWidget *parent) : TextEditor::BaseTextEditor(parent) - , m_currentRenameSelection(-1) + , m_currentRenameSelection(NoCurrentRenameSelection) , m_inRename(false) , m_inRenameChanged(false) , m_firstRenameChange(false) @@ -712,7 +712,7 @@ void CPPEditor::createToolBar(CPPEditorEditable *editable) void CPPEditor::paste() { - if (m_currentRenameSelection == -1) { + if (m_currentRenameSelection == NoCurrentRenameSelection) { BaseTextEditor::paste(); return; } @@ -724,7 +724,7 @@ void CPPEditor::paste() void CPPEditor::cut() { - if (m_currentRenameSelection == -1) { + if (m_currentRenameSelection == NoCurrentRenameSelection) { BaseTextEditor::cut(); return; } @@ -772,10 +772,10 @@ void CPPEditor::finishRename() void CPPEditor::abortRename() { - if (m_currentRenameSelection < 0) + if (m_currentRenameSelection <= NoCurrentRenameSelection) return; m_renameSelections[m_currentRenameSelection].format = m_occurrencesFormat; - m_currentRenameSelection = -1; + m_currentRenameSelection = NoCurrentRenameSelection; m_currentRenameSelectionBegin = QTextCursor(); m_currentRenameSelectionEnd = QTextCursor(); setExtraSelections(CodeSemanticsSelection, m_renameSelections); @@ -986,7 +986,7 @@ void CPPEditor::onContentsChanged(int position, int charsRemoved, int charsAdded { Q_UNUSED(position) - if (m_currentRenameSelection == -1 || m_inRename) + if (m_currentRenameSelection == NoCurrentRenameSelection || m_inRename) return; if (position + charsAdded == m_currentRenameSelectionBegin.position()) { @@ -1125,7 +1125,7 @@ void CPPEditor::updateUses() void CPPEditor::updateUsesNow() { - if (m_currentRenameSelection != -1) + if (m_currentRenameSelection != NoCurrentRenameSelection) return; semanticRehighlight(); @@ -1735,7 +1735,7 @@ bool CPPEditor::event(QEvent *e) { switch (e->type()) { case QEvent::ShortcutOverride: - if (static_cast(e)->key() == Qt::Key_Escape && m_currentRenameSelection != -1) { + if (static_cast(e)->key() == Qt::Key_Escape && m_currentRenameSelection != NoCurrentRenameSelection) { e->accept(); return true; } @@ -1801,7 +1801,7 @@ void CPPEditor::contextMenuEvent(QContextMenuEvent *e) void CPPEditor::keyPressEvent(QKeyEvent *e) { - if (m_currentRenameSelection == -1) { + if (m_currentRenameSelection == NoCurrentRenameSelection) { TextEditor::BaseTextEditor::keyPressEvent(e); return; } @@ -2006,6 +2006,7 @@ void CPPEditor::updateSemanticInfo(const SemanticInfo &semanticInfo) QList unusedSelections; m_renameSelections.clear(); + m_currentRenameSelection = NoCurrentRenameSelection; SemanticInfo::LocalUseIterator it(semanticInfo.localUses); while (it.hasNext()) { diff --git a/src/plugins/cppeditor/cppeditor.h b/src/plugins/cppeditor/cppeditor.h index fb5758c584..76adbf6cf8 100644 --- a/src/plugins/cppeditor/cppeditor.h +++ b/src/plugins/cppeditor/cppeditor.h @@ -292,6 +292,7 @@ private: QList m_renameSelections; int m_currentRenameSelection; + static const int NoCurrentRenameSelection = -1; bool m_inRename, m_inRenameChanged, m_firstRenameChange; QTextCursor m_currentRenameSelectionBegin; QTextCursor m_currentRenameSelectionEnd; -- cgit v1.2.1 From 595ee9ff3e0831e0a1a32f19a885f334b624e107 Mon Sep 17 00:00:00 2001 From: ck Date: Mon, 19 Jul 2010 17:24:59 +0200 Subject: Maemo: Only save a remote file path if it has been set by the user. QTCREATORBUG-1661 --- src/plugins/qt4projectmanager/qt-maemo/maemopackagecontents.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemopackagecontents.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemopackagecontents.cpp index a62c40609b..80774d0e50 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemopackagecontents.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemopackagecontents.cpp @@ -175,11 +175,9 @@ void MaemoPackageContents::fromMap(const QVariantMap &map) QString MaemoPackageContents::remoteExecutableFilePath() const { - if (m_remoteExecutableFilePath.isEmpty()) { - m_remoteExecutableFilePath = QLatin1String("/usr/local/bin/") - + m_packageStep->executableFileName(); - } - return m_remoteExecutableFilePath; + return m_remoteExecutableFilePath.isEmpty() + ? QLatin1String("/usr/local/bin/") + m_packageStep->executableFileName() + : m_remoteExecutableFilePath; } } // namespace Qt4ProjectManager -- cgit v1.2.1 From 163d727c590561e0092c8a693ae12ba384d78a1f Mon Sep 17 00:00:00 2001 From: Thomas Hartmann Date: Tue, 20 Jul 2010 11:10:07 +0200 Subject: QmlDesigner: removing options for context pane Reviewed-by: Kai Koehne --- src/plugins/qmldesigner/settingspage.cpp | 3 +-- src/plugins/qmldesigner/settingspage.ui | 16 ---------------- 2 files changed, 1 insertion(+), 18 deletions(-) diff --git a/src/plugins/qmldesigner/settingspage.cpp b/src/plugins/qmldesigner/settingspage.cpp index 88ba6dfefa..2ea508a353 100644 --- a/src/plugins/qmldesigner/settingspage.cpp +++ b/src/plugins/qmldesigner/settingspage.cpp @@ -49,7 +49,7 @@ DesignerSettings SettingsPageWidget::settings() const DesignerSettings ds; ds.itemSpacing = m_ui.spinItemSpacing->value(); ds.snapMargin = m_ui.spinSnapMargin->value(); - ds.enableContextPane = m_ui.textEditHelperCheckBox->isChecked(); + ds.enableContextPane = false; return ds; } @@ -57,7 +57,6 @@ void SettingsPageWidget::setSettings(const DesignerSettings &s) { m_ui.spinItemSpacing->setValue(s.itemSpacing); m_ui.spinSnapMargin->setValue(s.snapMargin); - m_ui.textEditHelperCheckBox->setChecked(s.enableContextPane); } QString SettingsPageWidget::searchKeywords() const diff --git a/src/plugins/qmldesigner/settingspage.ui b/src/plugins/qmldesigner/settingspage.ui index 48b3f50b83..9a56b1cc31 100644 --- a/src/plugins/qmldesigner/settingspage.ui +++ b/src/plugins/qmldesigner/settingspage.ui @@ -99,22 +99,6 @@ - - - Text Editor Helper - - - - - - enable - - - - - - - Qt::Vertical -- cgit v1.2.1 From b1c9784e741ff20fe9c326a854009cb080e33aae Mon Sep 17 00:00:00 2001 From: ck Date: Wed, 21 Jul 2010 17:00:40 +0200 Subject: Maemo: Qemu: Bugfix + MADDE workaround. Reviewed-by: kh1 --- .../qt-maemo/qemuruntimemanager.cpp | 32 +++++++++++++++------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp b/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp index b08172cac6..5ad000b2a0 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp @@ -359,13 +359,19 @@ void QemuRuntimeManager::startRuntime() m_qemuProcess->setProcessEnvironment(env); m_qemuProcess->setWorkingDirectory(rt.m_root); - const QString app = root + (QFileInfo(rt.m_bin).isRelative() + // This is complex because of extreme MADDE weirdness. + const bool pathIsRelative = QFileInfo(rt.m_bin).isRelative(); + const QString app = +#ifdef Q_OS_WIN + root % (pathIsRelative ? QLatin1String("madlib/") % rt.m_bin // Fremantle. : rt.m_bin) // Haramattan. -#ifdef Q_OS_WIN - % QLatin1String(".exe") + % QLatin1String(".exe"); +#else + pathIsRelative + ? root % QLatin1String("madlib/") % rt.m_bin // Fremantle. + : rt.m_bin; // Haramattan. #endif - ; // keep m_qemuProcess->start(app % QLatin1Char(' ') % rt.m_args, QIODevice::ReadWrite); @@ -512,12 +518,18 @@ bool QemuRuntimeManager::targetUsesRuntimeConfig(Target *target) MaemoRunConfiguration *mrc = qobject_cast (target->activeRunConfiguration()); - if (mrc) { - const MaemoDeviceConfig &config = mrc->deviceConfig(); - if (config.isValid() && config.type == MaemoDeviceConfig::Simulator) - return true; - } - return false; + if (!mrc) + return false; + Qt4BuildConfiguration *bc + = qobject_cast(target->activeBuildConfiguration()); + if (!bc) + return false; + QtVersion *version = bc->qtVersion(); + if (!version || !m_runtimes.contains(version->uniqueId())) + return false; + + const MaemoDeviceConfig &config = mrc->deviceConfig(); + return config.isValid() && config.type == MaemoDeviceConfig::Simulator; } QString QemuRuntimeManager::maddeRoot(const QString &qmake) const -- cgit v1.2.1 From c95d83d6fc195ea6cb81957e752197bf9556cd0a Mon Sep 17 00:00:00 2001 From: ck Date: Thu, 22 Jul 2010 11:09:34 +0200 Subject: Maemo: Make device configuration id type consistent. Task-number: QTCREATORBUG-1460 --- src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp | 4 ++-- src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.h | 2 +- src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp index 7ff2747ddf..7d800e2e5c 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.cpp @@ -116,7 +116,7 @@ MaemoDeviceConfig::MaemoDeviceConfig(const QSettings &settings, : name(settings.value(NameKey).toString()), type(static_cast(settings.value(TypeKey, DefaultDeviceType).toInt())), gdbServerPort(settings.value(GdbServerPortKey, defaultGdbServerPort(type)).toInt()), - internalId(settings.value(InternalIdKey, nextId).toInt()) + internalId(settings.value(InternalIdKey, nextId).toULongLong()) { if (internalId == nextId) ++nextId; @@ -227,7 +227,7 @@ MaemoDeviceConfig MaemoDeviceConfigurations::find(const QString &name) const return resultIt == m_devConfigs.constEnd() ? MaemoDeviceConfig() : *resultIt; } -MaemoDeviceConfig MaemoDeviceConfigurations::find(int id) const +MaemoDeviceConfig MaemoDeviceConfigurations::find(quint64 id) const { QList::ConstIterator resultIt = std::find_if(m_devConfigs.constBegin(), m_devConfigs.constEnd(), diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.h b/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.h index 7ffa28251e..0c07d3eb95 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.h +++ b/src/plugins/qt4projectmanager/qt-maemo/maemodeviceconfigurations.h @@ -97,7 +97,7 @@ public: QList devConfigs() const { return m_devConfigs; } void setDevConfigs(const QList &devConfigs); MaemoDeviceConfig find(const QString &name) const; - MaemoDeviceConfig find(int id) const; + MaemoDeviceConfig find(quint64 id) const; signals: void updated(); diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp index db90c406dd..579bf4e491 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemorunconfiguration.cpp @@ -155,7 +155,7 @@ bool MaemoRunConfiguration::fromMap(const QVariantMap &map) return false; setDeviceConfig(MaemoDeviceConfigurations::instance(). - find(map.value(DeviceIdKey, 0).toInt())); + find(map.value(DeviceIdKey, 0).toULongLong())); m_arguments = map.value(ArgumentsKey).toStringList(); getDeployTimesFromMap(map); const QDir dir = QDir(target()->project()->projectDirectory()); -- cgit v1.2.1 From 9927249665aaf6164352705ac7ef80fa88e60426 Mon Sep 17 00:00:00 2001 From: ck Date: Thu, 22 Jul 2010 12:10:44 +0200 Subject: Maemo: Qemu improvements. Get rid of redundancy, add sanity check, better status reporting. --- .../qt-maemo/qemuruntimemanager.cpp | 94 +++++++++++++--------- .../qt-maemo/qemuruntimemanager.h | 4 +- 2 files changed, 57 insertions(+), 41 deletions(-) diff --git a/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp b/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp index 5ad000b2a0..b089007312 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp @@ -110,6 +110,10 @@ QemuRuntimeManager::QemuRuntimeManager(QObject *parent) SLOT(qemuProcessError(QProcess::ProcessError))); connect(m_qemuProcess, SIGNAL(finished(int, QProcess::ExitStatus)), this, SLOT(qemuProcessFinished())); + connect(m_qemuProcess, SIGNAL(readyReadStandardOutput()), this, + SLOT(qemuOutput())); + connect(m_qemuProcess, SIGNAL(readyReadStandardError()), this, + SLOT(qemuOutput())); connect(this, SIGNAL(qemuProcessStatus(QemuStatus, QString)), this, SLOT(qemuStatusChanged(QemuStatus, QString))); } @@ -285,7 +289,7 @@ void QemuRuntimeManager::runConfigurationRemoved(ProjectExplorer::RunConfigurati void QemuRuntimeManager::runConfigurationChanged(ProjectExplorer::RunConfiguration *rc) { if (rc) - m_qemuAction->setEnabled(targetUsesRuntimeConfig(rc->target())); + m_qemuAction->setEnabled(targetUsesMatchingRuntimeConfig(rc->target())); } void QemuRuntimeManager::buildConfigurationAdded(ProjectExplorer::BuildConfiguration *bc) @@ -321,7 +325,7 @@ void QemuRuntimeManager::environmentChanged() void QemuRuntimeManager::deviceConfigurationChanged(ProjectExplorer::Target *target) { - m_qemuAction->setEnabled(targetUsesRuntimeConfig(target)); + m_qemuAction->setEnabled(targetUsesMatchingRuntimeConfig(target)); } void QemuRuntimeManager::startRuntime() @@ -330,38 +334,33 @@ void QemuRuntimeManager::startRuntime() Project *p = ProjectExplorerPlugin::instance()->session()->startupProject(); if (!p) return; - - Qt4Target *qt4Target = qobject_cast (p->activeTarget()); - if (!qt4Target) - return; - - Qt4BuildConfiguration *bc = qt4Target->activeBuildConfiguration(); - if (!bc) + QtVersion *version; + if (!targetUsesMatchingRuntimeConfig(p->activeTarget(), &version)) { + qWarning("Strange: Qemu button was enabled, but target does not match."); return; + } - QtVersion *version = bc->qtVersion(); - if (version && m_runtimes.contains(version->uniqueId())) { - m_runningQtId = version->uniqueId(); - const QString root = - QDir::toNativeSeparators(maddeRoot(version->qmakeCommand()) + m_runningQtId = version->uniqueId(); + const QString root + = QDir::toNativeSeparators(maddeRoot(version->qmakeCommand()) + QLatin1Char('/')); - const Runtime rt = m_runtimes.value(version->uniqueId()); - QProcessEnvironment env = QProcessEnvironment::systemEnvironment(); + const Runtime rt = m_runtimes.value(version->uniqueId()); + QProcessEnvironment env = QProcessEnvironment::systemEnvironment(); #ifdef Q_OS_WIN - const QLatin1Char colon(';'); - const QLatin1String key("PATH"); - env.insert(key, env.value(key) % colon % root % QLatin1String("bin")); - env.insert(key, env.value(key) % colon % root % QLatin1String("madlib")); + const QLatin1Char colon(';'); + const QLatin1String key("PATH"); + env.insert(key, env.value(key) % colon % root % QLatin1String("bin")); + env.insert(key, env.value(key) % colon % root % QLatin1String("madlib")); #elif defined(Q_OS_UNIX) - const QLatin1String key("LD_LIBRARY_PATH"); - env.insert(key, env.value(key) % QLatin1Char(':') % rt.m_libPath); + const QLatin1String key("LD_LIBRARY_PATH"); + env.insert(key, env.value(key) % QLatin1Char(':') % rt.m_libPath); #endif - m_qemuProcess->setProcessEnvironment(env); - m_qemuProcess->setWorkingDirectory(rt.m_root); + m_qemuProcess->setProcessEnvironment(env); + m_qemuProcess->setWorkingDirectory(rt.m_root); - // This is complex because of extreme MADDE weirdness. - const bool pathIsRelative = QFileInfo(rt.m_bin).isRelative(); - const QString app = + // This is complex because of extreme MADDE weirdness. + const bool pathIsRelative = QFileInfo(rt.m_bin).isRelative(); + const QString app = #ifdef Q_OS_WIN root % (pathIsRelative ? QLatin1String("madlib/") % rt.m_bin // Fremantle. @@ -373,15 +372,14 @@ void QemuRuntimeManager::startRuntime() : rt.m_bin; // Haramattan. #endif - m_qemuProcess->start(app % QLatin1Char(' ') % rt.m_args, - QIODevice::ReadWrite); - if (!m_qemuProcess->waitForStarted()) - return; + m_qemuProcess->start(app % QLatin1Char(' ') % rt.m_args, + QIODevice::ReadWrite); + if (!m_qemuProcess->waitForStarted()) + return; - emit qemuProcessStatus(QemuStarting); - connect(m_qemuAction, SIGNAL(triggered()), this, SLOT(terminateRuntime())); - disconnect(m_qemuAction, SIGNAL(triggered()), this, SLOT(startRuntime())); - } + emit qemuProcessStatus(QemuStarting); + connect(m_qemuAction, SIGNAL(triggered()), this, SLOT(terminateRuntime())); + disconnect(m_qemuAction, SIGNAL(triggered()), this, SLOT(startRuntime())); } void QemuRuntimeManager::terminateRuntime() @@ -401,14 +399,20 @@ void QemuRuntimeManager::qemuProcessFinished() { m_runningQtId = -1; QemuStatus status = QemuFinished; + QString error; if (!m_userTerminated) { - status = m_qemuProcess->exitStatus() == QProcess::CrashExit - ? QemuCrashed : QemuFinished; + if (m_qemuProcess->exitStatus() == QProcess::CrashExit) { + status = QemuCrashed; + error = m_qemuProcess->errorString(); + } else if (m_qemuProcess->exitCode() != 0) { + error = tr("Qemu finished with error: Exit code was %1.") + .arg(m_qemuProcess->exitCode()); + } } m_userTerminated = false; - emit qemuProcessStatus(status); + emit qemuProcessStatus(status, error); } void QemuRuntimeManager::qemuProcessError(QProcess::ProcessError error) @@ -433,6 +437,7 @@ void QemuRuntimeManager::qemuStatusChanged(QemuStatus status, const QString &err message = tr("Qemu crashed"); break; case QemuFinished: + message = error; break; case QemuUserReason: message = error; @@ -446,6 +451,12 @@ void QemuRuntimeManager::qemuStatusChanged(QemuStatus status, const QString &err updateStarterIcon(running); } +void QemuRuntimeManager::qemuOutput() +{ + qDebug("%s", m_qemuProcess->readAllStandardOutput().data()); + qDebug("%s", m_qemuProcess->readAllStandardError().data()); +} + // -- private void QemuRuntimeManager::setupRuntimes() @@ -498,7 +509,7 @@ void QemuRuntimeManager::toggleStarterButton(Target *target) isRunning = false; m_qemuAction->setEnabled(m_runtimes.contains(uniqueId) - && targetUsesRuntimeConfig(target) && !isRunning); + && targetUsesMatchingRuntimeConfig(target) && !isRunning); } bool QemuRuntimeManager::sessionHasMaemoTarget() const @@ -511,7 +522,8 @@ bool QemuRuntimeManager::sessionHasMaemoTarget() const return result; } -bool QemuRuntimeManager::targetUsesRuntimeConfig(Target *target) +bool QemuRuntimeManager::targetUsesMatchingRuntimeConfig(Target *target, + QtVersion **qtVersion) { if (!target) return false; @@ -528,6 +540,8 @@ bool QemuRuntimeManager::targetUsesRuntimeConfig(Target *target) if (!version || !m_runtimes.contains(version->uniqueId())) return false; + if (qtVersion) + *qtVersion = version; const MaemoDeviceConfig &config = mrc->deviceConfig(); return config.isValid() && config.type == MaemoDeviceConfig::Simulator; } diff --git a/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.h b/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.h index 3af6d60e25..f395a867a5 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.h +++ b/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.h @@ -110,6 +110,7 @@ private slots: void qemuProcessFinished(); void qemuProcessError(QProcess::ProcessError error); void qemuStatusChanged(QemuStatus status, const QString &error); + void qemuOutput(); private: void setupRuntimes(); @@ -117,7 +118,8 @@ private: void updateStarterIcon(bool running); void toggleStarterButton(ProjectExplorer::Target *target); - bool targetUsesRuntimeConfig(ProjectExplorer::Target *target); + bool targetUsesMatchingRuntimeConfig(ProjectExplorer::Target *target, + QtVersion **qtVersion = 0); QString maddeRoot(const QString &qmake) const; QString targetRoot(const QString &qmake) const; -- cgit v1.2.1 From 1a985148340ff3b29c752036857446452cf0907f Mon Sep 17 00:00:00 2001 From: ck Date: Thu, 22 Jul 2010 16:37:43 +0200 Subject: BinEditor: Fix file name not being displayed. --- src/plugins/bineditor/bineditorplugin.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/plugins/bineditor/bineditorplugin.cpp b/src/plugins/bineditor/bineditorplugin.cpp index cca1c9c1e4..277a5041fd 100644 --- a/src/plugins/bineditor/bineditorplugin.cpp +++ b/src/plugins/bineditor/bineditorplugin.cpp @@ -210,13 +210,12 @@ public: && file.open(QIODevice::ReadOnly)) { m_fileName = fileName; qint64 maxRange = 64 * 1024 * 1024; - if (file.size() <= maxRange) { + if (file.size() <= maxRange) m_editor->setData(file.readAll()); - } else { + else m_editor->setLazyData(offset, maxRange); - m_editor->editorInterface()-> - setDisplayName(QFileInfo(fileName).fileName()); - } + m_editor->editorInterface()-> + setDisplayName(QFileInfo(fileName).fileName()); file.close(); return true; } -- cgit v1.2.1 From 6bd790bd0fa85ddebc680ca4af4878e17e82879b Mon Sep 17 00:00:00 2001 From: con Date: Thu, 22 Jul 2010 18:05:53 +0200 Subject: Version bump --- README | 2 +- doc/qt-html-templates.qdocconf | 2 +- doc/qtcreator.qdocconf | 8 ++++---- src/app/Info.plist | 4 ++-- src/plugins/bineditor/BinEditor.pluginspec | 6 +++--- src/plugins/bookmarks/Bookmarks.pluginspec | 8 ++++---- .../cmakeprojectmanager/CMakeProjectManager.pluginspec | 10 +++++----- src/plugins/coreplugin/Core.pluginspec | 2 +- src/plugins/coreplugin/coreconstants.h | 4 ++-- src/plugins/cpaster/CodePaster.pluginspec | 8 ++++---- src/plugins/cppeditor/CppEditor.pluginspec | 8 ++++---- src/plugins/cpptools/CppTools.pluginspec | 8 ++++---- src/plugins/cvs/CVS.pluginspec | 10 +++++----- src/plugins/debugger/Debugger.pluginspec | 10 +++++----- src/plugins/designer/Designer.pluginspec | 6 +++--- src/plugins/fakevim/FakeVim.pluginspec | 10 +++++----- src/plugins/find/Find.pluginspec | 4 ++-- .../genericprojectmanager/GenericProjectManager.pluginspec | 10 +++++----- src/plugins/git/ScmGit.pluginspec | 10 +++++----- src/plugins/helloworld/HelloWorld.pluginspec | 4 ++-- src/plugins/help/Help.pluginspec | 8 ++++---- src/plugins/locator/Locator.pluginspec | 4 ++-- src/plugins/mercurial/Mercurial.pluginspec | 10 +++++----- src/plugins/perforce/Perforce.pluginspec | 10 +++++----- src/plugins/projectexplorer/ProjectExplorer.pluginspec | 10 +++++----- src/plugins/qmldesigner/QmlDesigner.pluginspec | 8 ++++---- src/plugins/qmlinspector/QmlInspector.pluginspec | 14 +++++++------- src/plugins/qmljseditor/QmlJSEditor.pluginspec | 8 ++++---- src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec | 10 +++++----- src/plugins/qt4projectmanager/Qt4ProjectManager.pluginspec | 14 +++++++------- src/plugins/regexp/RegExp.pluginspec | 4 ++-- src/plugins/resourceeditor/ResourceEditor.pluginspec | 4 ++-- src/plugins/snippets/Snippets.pluginspec | 8 ++++---- src/plugins/subversion/Subversion.pluginspec | 10 +++++----- src/plugins/texteditor/TextEditor.pluginspec | 8 ++++---- src/plugins/vcsbase/VCSBase.pluginspec | 8 ++++---- src/plugins/welcome/Welcome.pluginspec | 4 ++-- 37 files changed, 138 insertions(+), 138 deletions(-) diff --git a/README b/README index 6045191429..e63e034dbf 100644 --- a/README +++ b/README @@ -1,4 +1,4 @@ -Qt Creator 2.0.80 +Qt Creator 2.1.0 =============== Qt Creator is a crossplatform C++ IDE for development with the Qt framework. diff --git a/doc/qt-html-templates.qdocconf b/doc/qt-html-templates.qdocconf index 6780d3e095..e0284ebe9a 100644 --- a/doc/qt-html-templates.qdocconf +++ b/doc/qt-html-templates.qdocconf @@ -27,7 +27,7 @@ HTML.postheader = "
\n" \ "
\n" \ "
\n" \ " \n" \ diff --git a/doc/qtcreator.qdocconf b/doc/qtcreator.qdocconf index d1565c7ed1..ec2747c944 100644 --- a/doc/qtcreator.qdocconf +++ b/doc/qtcreator.qdocconf @@ -19,12 +19,12 @@ sources.fileextensions = "qtcreator.qdoc addressbook-sdk.qdoc" qhp.projects = QtCreator qhp.QtCreator.file = qtcreator.qhp -qhp.QtCreator.namespace = com.nokia.qtcreator.2080 +qhp.QtCreator.namespace = com.nokia.qtcreator.210 qhp.QtCreator.virtualFolder = doc qhp.QtCreator.indexTitle = Qt Creator -qhp.QtCreator.filterAttributes = qtcreator 2.0.80 -qhp.QtCreator.customFilters.QtCreator.name = Qt Creator 2.0.80 -qhp.QtCreator.customFilters.QtCreator.filterAttributes = qtcreator 2.0.80 +qhp.QtCreator.filterAttributes = qtcreator 2.1.0 +qhp.QtCreator.customFilters.QtCreator.name = Qt Creator 2.1.0 +qhp.QtCreator.customFilters.QtCreator.filterAttributes = qtcreator 2.1.0 qhp.QtCreator.indexRoot = qhp.QtCreator.extraFiles = \ style/style.css \ diff --git a/src/app/Info.plist b/src/app/Info.plist index 36af61b2b5..8f80b242ba 100644 --- a/src/app/Info.plist +++ b/src/app/Info.plist @@ -219,8 +219,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General CFBundleIdentifier com.nokia.qtcreator CFBundleVersion - 2.0.80 + 2.1.0 CFBundleShortVersionString - 2.0.80 + 2.1.0 diff --git a/src/plugins/bineditor/BinEditor.pluginspec b/src/plugins/bineditor/BinEditor.pluginspec index 46026e0ec2..cf8343269f 100644 --- a/src/plugins/bineditor/BinEditor.pluginspec +++ b/src/plugins/bineditor/BinEditor.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,7 +14,7 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Binary editor component. http://qt.nokia.com - - + + diff --git a/src/plugins/bookmarks/Bookmarks.pluginspec b/src/plugins/bookmarks/Bookmarks.pluginspec index fa3c0942fa..e9c950e158 100644 --- a/src/plugins/bookmarks/Bookmarks.pluginspec +++ b/src/plugins/bookmarks/Bookmarks.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,8 +14,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Bookmarks in text editors. http://qt.nokia.com - - - + + + diff --git a/src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec b/src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec index 6e1222c2d7..c91166d3b9 100644 --- a/src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec +++ b/src/plugins/cmakeprojectmanager/CMakeProjectManager.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,9 +14,9 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General CMake support http://qt.nokia.com - - - - + + + + diff --git a/src/plugins/coreplugin/Core.pluginspec b/src/plugins/coreplugin/Core.pluginspec index ae65cb2cee..29e67c523a 100644 --- a/src/plugins/coreplugin/Core.pluginspec +++ b/src/plugins/coreplugin/Core.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation diff --git a/src/plugins/coreplugin/coreconstants.h b/src/plugins/coreplugin/coreconstants.h index 9bce32adc1..99b7e50c37 100644 --- a/src/plugins/coreplugin/coreconstants.h +++ b/src/plugins/coreplugin/coreconstants.h @@ -36,8 +36,8 @@ namespace Core { namespace Constants { #define IDE_VERSION_MAJOR 2 -#define IDE_VERSION_MINOR 0 -#define IDE_VERSION_RELEASE 80 +#define IDE_VERSION_MINOR 1 +#define IDE_VERSION_RELEASE 0 #define STRINGIFY_INTERNAL(x) #x #define STRINGIFY(x) STRINGIFY_INTERNAL(x) diff --git a/src/plugins/cpaster/CodePaster.pluginspec b/src/plugins/cpaster/CodePaster.pluginspec index cff88e5ab6..2e3d4af1ba 100644 --- a/src/plugins/cpaster/CodePaster.pluginspec +++ b/src/plugins/cpaster/CodePaster.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -13,8 +13,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Codepaster plugin for pushing/fetching diff from server http://qt.nokia.com - - - + + + diff --git a/src/plugins/cppeditor/CppEditor.pluginspec b/src/plugins/cppeditor/CppEditor.pluginspec index ab6a8a4235..c777b2531e 100644 --- a/src/plugins/cppeditor/CppEditor.pluginspec +++ b/src/plugins/cppeditor/CppEditor.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,8 +14,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General C/C++ editor component. http://qt.nokia.com - - - + + + diff --git a/src/plugins/cpptools/CppTools.pluginspec b/src/plugins/cpptools/CppTools.pluginspec index d43d7b9a8c..e3dbb78bd1 100644 --- a/src/plugins/cpptools/CppTools.pluginspec +++ b/src/plugins/cpptools/CppTools.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,8 +14,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Tools for analyzing C/C++ code. http://qt.nokia.com - - - + + + diff --git a/src/plugins/cvs/CVS.pluginspec b/src/plugins/cvs/CVS.pluginspec index 5a72984811..7bf2753fb7 100644 --- a/src/plugins/cvs/CVS.pluginspec +++ b/src/plugins/cvs/CVS.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,9 +14,9 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General CVS integration. http://qt.nokia.com - - - - + + + + diff --git a/src/plugins/debugger/Debugger.pluginspec b/src/plugins/debugger/Debugger.pluginspec index 18f56e3a38..95813fd485 100644 --- a/src/plugins/debugger/Debugger.pluginspec +++ b/src/plugins/debugger/Debugger.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,10 +14,10 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Debugger integration. http://qt.nokia.com - - - - + + + + Disable Cdb debugger engine diff --git a/src/plugins/designer/Designer.pluginspec b/src/plugins/designer/Designer.pluginspec index aa0244fe61..77cdea1708 100644 --- a/src/plugins/designer/Designer.pluginspec +++ b/src/plugins/designer/Designer.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,8 +14,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Qt Designer integration. http://qt.nokia.com - + - + diff --git a/src/plugins/fakevim/FakeVim.pluginspec b/src/plugins/fakevim/FakeVim.pluginspec index 30b87245c8..619009dc98 100644 --- a/src/plugins/fakevim/FakeVim.pluginspec +++ b/src/plugins/fakevim/FakeVim.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -13,9 +13,9 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General VI-style keyboard navigation. http://qt.nokia.com - - - - + + + + diff --git a/src/plugins/find/Find.pluginspec b/src/plugins/find/Find.pluginspec index bcf92e73fa..7ac09f506e 100644 --- a/src/plugins/find/Find.pluginspec +++ b/src/plugins/find/Find.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,6 +14,6 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Provides the find widget and the hooks for find implementations. http://qt.nokia.com - + diff --git a/src/plugins/genericprojectmanager/GenericProjectManager.pluginspec b/src/plugins/genericprojectmanager/GenericProjectManager.pluginspec index 3667a23b94..dc8c715eac 100644 --- a/src/plugins/genericprojectmanager/GenericProjectManager.pluginspec +++ b/src/plugins/genericprojectmanager/GenericProjectManager.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,9 +14,9 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Generic support http://qt.nokia.com - - - - + + + + diff --git a/src/plugins/git/ScmGit.pluginspec b/src/plugins/git/ScmGit.pluginspec index 0d6b2f19a7..de2d6c6aee 100644 --- a/src/plugins/git/ScmGit.pluginspec +++ b/src/plugins/git/ScmGit.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,9 +14,9 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Git integration. http://qt.nokia.com - - - - + + + + diff --git a/src/plugins/helloworld/HelloWorld.pluginspec b/src/plugins/helloworld/HelloWorld.pluginspec index 7b435e7f68..0de6cd5d95 100644 --- a/src/plugins/helloworld/HelloWorld.pluginspec +++ b/src/plugins/helloworld/HelloWorld.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -13,6 +13,6 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Hello World sample plugin. http://qt.nokia.com - + diff --git a/src/plugins/help/Help.pluginspec b/src/plugins/help/Help.pluginspec index f2058be13a..519447820c 100644 --- a/src/plugins/help/Help.pluginspec +++ b/src/plugins/help/Help.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,8 +14,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Help system. http://qt.nokia.com - - - + + + diff --git a/src/plugins/locator/Locator.pluginspec b/src/plugins/locator/Locator.pluginspec index 47c683e1bc..13e69ca128 100644 --- a/src/plugins/locator/Locator.pluginspec +++ b/src/plugins/locator/Locator.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,6 +14,6 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Provides the Locator widget and the hooks for Locator filter implementations. http://qt.nokia.com - + diff --git a/src/plugins/mercurial/Mercurial.pluginspec b/src/plugins/mercurial/Mercurial.pluginspec index b3c1968f63..047759284f 100644 --- a/src/plugins/mercurial/Mercurial.pluginspec +++ b/src/plugins/mercurial/Mercurial.pluginspec @@ -1,4 +1,4 @@ - + Brian McGillion (C) 2008-2009 Brian McGillion @@ -14,9 +14,9 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Mercurial integration. http://qt.nokia.com - - - - + + + + diff --git a/src/plugins/perforce/Perforce.pluginspec b/src/plugins/perforce/Perforce.pluginspec index 90956c438e..f6402217df 100644 --- a/src/plugins/perforce/Perforce.pluginspec +++ b/src/plugins/perforce/Perforce.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,9 +14,9 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Perforce integration. http://qt.nokia.com - - - - + + + + diff --git a/src/plugins/projectexplorer/ProjectExplorer.pluginspec b/src/plugins/projectexplorer/ProjectExplorer.pluginspec index ed71982e3a..ebc90164eb 100644 --- a/src/plugins/projectexplorer/ProjectExplorer.pluginspec +++ b/src/plugins/projectexplorer/ProjectExplorer.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,10 +14,10 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General ProjectExplorer framework that can be extended with different kind of project types. http://qt.nokia.com - - - - + + + + Verbose loading of custom wizards diff --git a/src/plugins/qmldesigner/QmlDesigner.pluginspec b/src/plugins/qmldesigner/QmlDesigner.pluginspec index 2f59fbd374..5660deede3 100644 --- a/src/plugins/qmldesigner/QmlDesigner.pluginspec +++ b/src/plugins/qmldesigner/QmlDesigner.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -20,8 +20,8 @@ will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. Visual Designer for QML files. http://qt.nokia.com - - - + + + diff --git a/src/plugins/qmlinspector/QmlInspector.pluginspec b/src/plugins/qmlinspector/QmlInspector.pluginspec index ebe1be3f0d..94a73b3ee9 100644 --- a/src/plugins/qmlinspector/QmlInspector.pluginspec +++ b/src/plugins/qmlinspector/QmlInspector.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -20,11 +20,11 @@ will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. Debugger for QML files http://qt.nokia.com - - - - - - + + + + + + diff --git a/src/plugins/qmljseditor/QmlJSEditor.pluginspec b/src/plugins/qmljseditor/QmlJSEditor.pluginspec index 8ab4e7282f..2b1b318ce3 100644 --- a/src/plugins/qmljseditor/QmlJSEditor.pluginspec +++ b/src/plugins/qmljseditor/QmlJSEditor.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,8 +14,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Editor for QML and JavaScript. http://qt.nokia.com - - - + + + diff --git a/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec b/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec index c6481beacf..eca6196a3e 100644 --- a/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec +++ b/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,9 +14,9 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Qt Quick support http://qt.nokia.com - - - - + + + + diff --git a/src/plugins/qt4projectmanager/Qt4ProjectManager.pluginspec b/src/plugins/qt4projectmanager/Qt4ProjectManager.pluginspec index b5aec34cd0..1ef60653d7 100644 --- a/src/plugins/qt4projectmanager/Qt4ProjectManager.pluginspec +++ b/src/plugins/qt4projectmanager/Qt4ProjectManager.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,11 +14,11 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Provides project type for Qt 4 pro files and tools. http://qt.nokia.com - - - - - - + + + + + + diff --git a/src/plugins/regexp/RegExp.pluginspec b/src/plugins/regexp/RegExp.pluginspec index 00486fe352..bdd6b12655 100644 --- a/src/plugins/regexp/RegExp.pluginspec +++ b/src/plugins/regexp/RegExp.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -13,6 +13,6 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Regular Expression test widget. http://qt.nokia.com - + diff --git a/src/plugins/resourceeditor/ResourceEditor.pluginspec b/src/plugins/resourceeditor/ResourceEditor.pluginspec index b0fe4bf5bb..09c5c9fd39 100644 --- a/src/plugins/resourceeditor/ResourceEditor.pluginspec +++ b/src/plugins/resourceeditor/ResourceEditor.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,6 +14,6 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Editor for qrc files. http://qt.nokia.com - + diff --git a/src/plugins/snippets/Snippets.pluginspec b/src/plugins/snippets/Snippets.pluginspec index cf910ce9d0..af6c6440d4 100644 --- a/src/plugins/snippets/Snippets.pluginspec +++ b/src/plugins/snippets/Snippets.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -13,8 +13,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Code snippet plugin. http://qt.nokia.com - - - + + + diff --git a/src/plugins/subversion/Subversion.pluginspec b/src/plugins/subversion/Subversion.pluginspec index 60025cd9bd..141b0ff58e 100644 --- a/src/plugins/subversion/Subversion.pluginspec +++ b/src/plugins/subversion/Subversion.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,9 +14,9 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Subversion integration. http://qt.nokia.com - - - - + + + + diff --git a/src/plugins/texteditor/TextEditor.pluginspec b/src/plugins/texteditor/TextEditor.pluginspec index 5086f05338..5ffa77efbb 100644 --- a/src/plugins/texteditor/TextEditor.pluginspec +++ b/src/plugins/texteditor/TextEditor.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,8 +14,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Text editor framework and the implementation of the basic text editor. http://qt.nokia.com - - - + + + diff --git a/src/plugins/vcsbase/VCSBase.pluginspec b/src/plugins/vcsbase/VCSBase.pluginspec index 5ac48dedea..cc6b6a274f 100644 --- a/src/plugins/vcsbase/VCSBase.pluginspec +++ b/src/plugins/vcsbase/VCSBase.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,8 +14,8 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Version Control System Base Plugin http://qt.nokia.com - - - + + + diff --git a/src/plugins/welcome/Welcome.pluginspec b/src/plugins/welcome/Welcome.pluginspec index 14ecc57862..2c51d8af2f 100644 --- a/src/plugins/welcome/Welcome.pluginspec +++ b/src/plugins/welcome/Welcome.pluginspec @@ -1,4 +1,4 @@ - + Nokia Corporation (C) 2010 Nokia Corporation @@ -14,6 +14,6 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General Default Welcome Screen Plugin http://qt.nokia.com - + -- cgit v1.2.1 From 695ff52e3b02cab15f23694743377dc0bb455b3c Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 22 Jul 2010 19:05:22 +0200 Subject: debugger: handle gdb 7.1.50's thread-group-started 'pid' field --- src/plugins/debugger/gdb/gdbengine.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 48cd51a46c..3f6e16b378 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -442,10 +442,15 @@ void GdbEngine::handleResponse(const QByteArray &buff) // 7.0.x, there was a *-created instead. int progress = m_progress->progressValue(); m_progress->setProgressValue(qMin(70, progress + 1)); + // 7.1.50 has thread-group-started,id="i1",pid="3529" QByteArray id = result.findChild("id").data(); - showStatusMessage(tr("Thread group %1 created.").arg(_(id)), 1000); + showStatusMessage(tr("Thread group %1 created").arg(_(id)), 1000); int pid = id.toInt(); - if (pid != inferiorPid()) + if (!pid) { + id = result.findChild("pid").data(); + pid = id.toInt(); + } + if (pid) handleInferiorPidChanged(pid); } else if (asyncClass == "thread-created") { //"{id="1",group-id="28902"}" -- cgit v1.2.1 From 1730141fe65ec64dddd747cb3cad032087397b7e Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 22 Jul 2010 19:49:15 +0200 Subject: debugger: fix python dumper for std::vector --- share/qtcreator/gdbmacros/gdbmacros.py | 34 +++++++++++++++++++++++++-------- tests/manual/gdbdebugger/simple/app.cpp | 3 +++ 2 files changed, 29 insertions(+), 8 deletions(-) diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index c1f74a77c3..cfb71cd2eb 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -1857,10 +1857,21 @@ def qdump__std__string(d, item): def qdump__std__vector(d, item): impl = item.value["_M_impl"] - start = impl["_M_start"] - finish = impl["_M_finish"] + type = item.value.type.template_argument(0) alloc = impl["_M_end_of_storage"] - size = finish - start + isBool = str(type) == 'bool' + if isBool: + start = impl["_M_start"]["_M_p"] + finish = impl["_M_finish"]["_M_p"] + # FIXME: 32 is sizeof(unsigned long) * CHAR_BIT + storagesize = 32 + size = (finish - start) * storagesize + size += impl["_M_finish"]["_M_offset"] + size -= impl["_M_start"]["_M_offset"] + else: + start = impl["_M_start"] + finish = impl["_M_finish"] + size = finish - start check(0 <= size and size <= 1000 * 1000 * 1000) check(finish <= alloc) @@ -1871,11 +1882,18 @@ def qdump__std__vector(d, item): d.putItemCount(size) d.putNumChild(size) if d.isExpanded(item): - with Children(d, [size, 10000], item.value.type.template_argument(0)): - p = start - for i in d.childRange(): - d.putItem(Item(p.dereference(), item.iname, i)) - p += 1 + if isBool: + with Children(d, [size, 10000], type): + for i in d.childRange(): + q = start + i / storagesize + data = (q.dereference() >> (i % storagesize)) & 1 + d.putBoolItem(str(i), select(data, "true", "false")) + else: + with Children(d, [size, 10000], type): + p = start + for i in d.childRange(): + d.putItem(Item(p.dereference(), item.iname, i)) + p += 1 def qdump__string(d, item): diff --git a/tests/manual/gdbdebugger/simple/app.cpp b/tests/manual/gdbdebugger/simple/app.cpp index 464e18b736..a165442671 100644 --- a/tests/manual/gdbdebugger/simple/app.cpp +++ b/tests/manual/gdbdebugger/simple/app.cpp @@ -1119,6 +1119,9 @@ void testStdVector() std::vector vec; vec.push_back(true); vec.push_back(false); + vec.push_back(false); + vec.push_back(true); + vec.push_back(false); } void testQStandardItemModel() -- cgit v1.2.1 From 8858e47de71cf48df36bee550c15a2d2944356f4 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Wed, 21 Jul 2010 11:02:04 +0200 Subject: speed up of cdb debugging helper initialization The symbols in gdbhelpers.dll are never namespaced. Thus we don't have to resolve the symbols - we already know their names. The resolution took 5 seconds per symbol on my machine. --- src/plugins/debugger/cdb/cdbdumperhelper.cpp | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/plugins/debugger/cdb/cdbdumperhelper.cpp b/src/plugins/debugger/cdb/cdbdumperhelper.cpp index 624a776bec..0a0a2f4b94 100644 --- a/src/plugins/debugger/cdb/cdbdumperhelper.cpp +++ b/src/plugins/debugger/cdb/cdbdumperhelper.cpp @@ -435,10 +435,19 @@ static inline bool getSymbolAddress(CIDebugSymbols *sg, bool CdbDumperHelper::initResolveSymbols(QString *errorMessage) { - // Resolve the symbols we need (potentially namespaced). + // Resolve the symbols we need. // There is a 'qDumpInBuffer' in QtCore as well. if (loadDebug) qDebug() << Q_FUNC_INFO; +#if 1 + // Symbols in the debugging helpers are never namespaced. + // Keeping the old code for now. ### maybe use as fallback? + const QString dumperModuleName = QLatin1String(dumperModuleNameC); + m_dumpObjectSymbol = dumperModuleName + QLatin1String("!qDumpObjectData440"); + QString inBufferSymbol = dumperModuleName + QLatin1String("!qDumpInBuffer"); + QString outBufferSymbol = dumperModuleName + QLatin1String("!qDumpOutBuffer"); + bool rc; +#else m_dumpObjectSymbol = QLatin1String("*qDumpObjectData440"); QString inBufferSymbol = QLatin1String("*qDumpInBuffer"); QString outBufferSymbol = QLatin1String("*qDumpOutBuffer"); @@ -448,6 +457,7 @@ bool CdbDumperHelper::initResolveSymbols(QString *errorMessage) && resolveSymbol(m_coreEngine->interfaces().debugSymbols, dumperModuleName, &outBufferSymbol, errorMessage) == ResolveSymbolOk; if (!rc) return false; +#endif // Determine buffer addresses, sizes and alloc buffer rc = getSymbolAddress(m_coreEngine->interfaces().debugSymbols, inBufferSymbol, &m_inBufferAddress, &m_inBufferSize, errorMessage) && getSymbolAddress(m_coreEngine->interfaces().debugSymbols, outBufferSymbol, &m_outBufferAddress, &m_outBufferSize, errorMessage); -- cgit v1.2.1 From 66d75056aefaffe908b50461bf549111af0466d5 Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Fri, 23 Jul 2010 15:50:37 +0200 Subject: cdb plugin: make the fast dumper initialization an option Fast dumper init is now on by default. Reviewed-by: Robert Loehning --- src/plugins/debugger/cdb/cdbdebugengine.cpp | 1 + src/plugins/debugger/cdb/cdbdumperhelper.cpp | 37 ++++++++++++------------ src/plugins/debugger/cdb/cdbdumperhelper.h | 3 ++ src/plugins/debugger/cdb/cdboptions.cpp | 9 +++++- src/plugins/debugger/cdb/cdboptions.h | 4 ++- src/plugins/debugger/cdb/cdboptionspage.cpp | 6 ++-- src/plugins/debugger/cdb/cdboptionspagewidget.ui | 10 +++++++ 7 files changed, 48 insertions(+), 22 deletions(-) diff --git a/src/plugins/debugger/cdb/cdbdebugengine.cpp b/src/plugins/debugger/cdb/cdbdebugengine.cpp index 30b8514a13..5051885346 100644 --- a/src/plugins/debugger/cdb/cdbdebugengine.cpp +++ b/src/plugins/debugger/cdb/cdbdebugengine.cpp @@ -391,6 +391,7 @@ void CdbDebugEngine::startDebugger(const QSharedPointer dumperEnabled = false; } } + m_d->m_dumper->setFastSymbolResolution(m_d->m_options->fastLoadDebuggingHelpers); m_d->m_dumper->reset(dumperLibName, dumperEnabled); setState(InferiorStarting, Q_FUNC_INFO, __LINE__); diff --git a/src/plugins/debugger/cdb/cdbdumperhelper.cpp b/src/plugins/debugger/cdb/cdbdumperhelper.cpp index 0a0a2f4b94..46429bab5d 100644 --- a/src/plugins/debugger/cdb/cdbdumperhelper.cpp +++ b/src/plugins/debugger/cdb/cdbdumperhelper.cpp @@ -307,7 +307,8 @@ CdbDumperHelper::CdbDumperHelper(DebuggerManager *manager, m_outBufferSize(0), m_buffer(0), m_dumperCallThread(0), - m_goCommand(goCommand(m_dumperCallThread)) + m_goCommand(goCommand(m_dumperCallThread)), + m_fastSymbolResolution(true) { } @@ -439,25 +440,25 @@ bool CdbDumperHelper::initResolveSymbols(QString *errorMessage) // There is a 'qDumpInBuffer' in QtCore as well. if (loadDebug) qDebug() << Q_FUNC_INFO; -#if 1 - // Symbols in the debugging helpers are never namespaced. - // Keeping the old code for now. ### maybe use as fallback? - const QString dumperModuleName = QLatin1String(dumperModuleNameC); - m_dumpObjectSymbol = dumperModuleName + QLatin1String("!qDumpObjectData440"); - QString inBufferSymbol = dumperModuleName + QLatin1String("!qDumpInBuffer"); - QString outBufferSymbol = dumperModuleName + QLatin1String("!qDumpOutBuffer"); bool rc; -#else - m_dumpObjectSymbol = QLatin1String("*qDumpObjectData440"); - QString inBufferSymbol = QLatin1String("*qDumpInBuffer"); - QString outBufferSymbol = QLatin1String("*qDumpOutBuffer"); const QString dumperModuleName = QLatin1String(dumperModuleNameC); - bool rc = resolveSymbol(m_coreEngine->interfaces().debugSymbols, &m_dumpObjectSymbol, errorMessage) == ResolveSymbolOk - && resolveSymbol(m_coreEngine->interfaces().debugSymbols, dumperModuleName, &inBufferSymbol, errorMessage) == ResolveSymbolOk - && resolveSymbol(m_coreEngine->interfaces().debugSymbols, dumperModuleName, &outBufferSymbol, errorMessage) == ResolveSymbolOk; - if (!rc) - return false; -#endif + QString inBufferSymbol, outBufferSymbol; + if (m_fastSymbolResolution) { + // Symbols in the debugging helpers are never namespaced. + m_dumpObjectSymbol = dumperModuleName + QLatin1String("!qDumpObjectData440"); + inBufferSymbol = dumperModuleName + QLatin1String("!qDumpInBuffer"); + outBufferSymbol = dumperModuleName + QLatin1String("!qDumpOutBuffer"); + } else { + // Classical approach of loading the dumper symbols. Takes some time though. + m_dumpObjectSymbol = QLatin1String("*qDumpObjectData440"); + inBufferSymbol = QLatin1String("*qDumpInBuffer"); + outBufferSymbol = QLatin1String("*qDumpOutBuffer"); + bool rc = resolveSymbol(m_coreEngine->interfaces().debugSymbols, &m_dumpObjectSymbol, errorMessage) == ResolveSymbolOk + && resolveSymbol(m_coreEngine->interfaces().debugSymbols, dumperModuleName, &inBufferSymbol, errorMessage) == ResolveSymbolOk + && resolveSymbol(m_coreEngine->interfaces().debugSymbols, dumperModuleName, &outBufferSymbol, errorMessage) == ResolveSymbolOk; + if (!rc) + return false; + } // Determine buffer addresses, sizes and alloc buffer rc = getSymbolAddress(m_coreEngine->interfaces().debugSymbols, inBufferSymbol, &m_inBufferAddress, &m_inBufferSize, errorMessage) && getSymbolAddress(m_coreEngine->interfaces().debugSymbols, outBufferSymbol, &m_outBufferAddress, &m_outBufferSize, errorMessage); diff --git a/src/plugins/debugger/cdb/cdbdumperhelper.h b/src/plugins/debugger/cdb/cdbdumperhelper.h index a7742685e8..04eca802bf 100644 --- a/src/plugins/debugger/cdb/cdbdumperhelper.h +++ b/src/plugins/debugger/cdb/cdbdumperhelper.h @@ -92,6 +92,8 @@ public: State state() const { return m_state; } bool isEnabled() const { return m_state != Disabled; } + void setFastSymbolResolution(bool b) { m_fastSymbolResolution = b; } + // Disable in case of a debuggee crash. void disable(); @@ -156,6 +158,7 @@ private: QtDumperHelper m_helper; unsigned long m_dumperCallThread; QString m_goCommand; + bool m_fastSymbolResolution; }; } // namespace Internal diff --git a/src/plugins/debugger/cdb/cdboptions.cpp b/src/plugins/debugger/cdb/cdboptions.cpp index fda335be03..5be73f90d7 100644 --- a/src/plugins/debugger/cdb/cdboptions.cpp +++ b/src/plugins/debugger/cdb/cdboptions.cpp @@ -40,13 +40,15 @@ static const char *pathKeyC = "Path"; static const char *symbolPathsKeyC = "SymbolPaths"; static const char *sourcePathsKeyC = "SourcePaths"; static const char *verboseSymbolLoadingKeyC = "VerboseSymbolLoading"; +static const char *fastLoadDebuggingHelpersKeyC = "FastLoadDebuggingHelpers"; namespace Debugger { namespace Internal { CdbOptions::CdbOptions() : enabled(false), - verboseSymbolLoading(false) + verboseSymbolLoading(false), + fastLoadDebuggingHelpers(true) { } @@ -54,6 +56,7 @@ void CdbOptions::clear() { enabled = false; verboseSymbolLoading = false; + fastLoadDebuggingHelpers = true; path.clear(); } @@ -74,6 +77,7 @@ void CdbOptions::fromSettings(const QSettings *s) symbolPaths = s->value(keyRoot + QLatin1String(symbolPathsKeyC), QStringList()).toStringList(); sourcePaths = s->value(keyRoot + QLatin1String(sourcePathsKeyC), QStringList()).toStringList(); verboseSymbolLoading = s->value(keyRoot + QLatin1String(verboseSymbolLoadingKeyC), false).toBool(); + fastLoadDebuggingHelpers = s->value(keyRoot + QLatin1String(fastLoadDebuggingHelpersKeyC), true).toBool(); } void CdbOptions::toSettings(QSettings *s) const @@ -84,6 +88,7 @@ void CdbOptions::toSettings(QSettings *s) const s->setValue(QLatin1String(symbolPathsKeyC), symbolPaths); s->setValue(QLatin1String(sourcePathsKeyC), sourcePaths); s->setValue(QLatin1String(verboseSymbolLoadingKeyC), verboseSymbolLoading); + s->setValue(QLatin1String(fastLoadDebuggingHelpersKeyC), fastLoadDebuggingHelpers); s->endGroup(); } @@ -96,6 +101,8 @@ unsigned CdbOptions::compare(const CdbOptions &rhs) const rc |= DebuggerPathsChanged; if (verboseSymbolLoading != rhs.verboseSymbolLoading) rc |= SymbolOptionsChanged; + if (fastLoadDebuggingHelpers != rhs.fastLoadDebuggingHelpers) + rc |= FastLoadDebuggingHelpersChanged; return rc; } diff --git a/src/plugins/debugger/cdb/cdboptions.h b/src/plugins/debugger/cdb/cdboptions.h index cb7bd07ef2..0428341dcc 100644 --- a/src/plugins/debugger/cdb/cdboptions.h +++ b/src/plugins/debugger/cdb/cdboptions.h @@ -51,7 +51,8 @@ public: // A set of flags for comparison function. enum ChangeFlags { InitializationOptionsChanged = 0x1, DebuggerPathsChanged = 0x2, - SymbolOptionsChanged = 0x4 }; + SymbolOptionsChanged = 0x4, + FastLoadDebuggingHelpersChanged = 0x8 }; unsigned compare(const CdbOptions &s) const; bool enabled; @@ -59,6 +60,7 @@ public: QStringList symbolPaths; QStringList sourcePaths; bool verboseSymbolLoading; + bool fastLoadDebuggingHelpers; }; inline bool operator==(const CdbOptions &s1, const CdbOptions &s2) diff --git a/src/plugins/debugger/cdb/cdboptionspage.cpp b/src/plugins/debugger/cdb/cdboptionspage.cpp index 4804a242ae..efae5a75f6 100644 --- a/src/plugins/debugger/cdb/cdboptionspage.cpp +++ b/src/plugins/debugger/cdb/cdboptionspage.cpp @@ -85,7 +85,7 @@ void CdbOptionsPageWidget::setOptions(CdbOptions &o) m_ui.symbolPathListEditor->setPathList(o.symbolPaths); m_ui.sourcePathListEditor->setPathList(o.sourcePaths); m_ui.verboseSymbolLoadingCheckBox->setChecked(o.verboseSymbolLoading); - + m_ui.fastLoadDebuggingHelpersCheckBox->setChecked(o.fastLoadDebuggingHelpers); } CdbOptions CdbOptionsPageWidget::options() const @@ -96,6 +96,7 @@ CdbOptions CdbOptionsPageWidget::options() const rc.symbolPaths = m_ui.symbolPathListEditor->pathList(); rc.sourcePaths = m_ui.sourcePathListEditor->pathList(); rc.verboseSymbolLoading = m_ui.verboseSymbolLoadingCheckBox->isChecked(); + rc.fastLoadDebuggingHelpers = m_ui.fastLoadDebuggingHelpersCheckBox->isChecked(); return rc; } @@ -132,7 +133,8 @@ QString CdbOptionsPageWidget::searchKeywords() const QString rc; QTextStream(&rc) << m_ui.pathLabel->text() << ' ' << m_ui.symbolPathLabel->text() << ' ' << m_ui.sourcePathLabel->text() - << ' ' << m_ui.verboseSymbolLoadingCheckBox->text(); + << ' ' << m_ui.verboseSymbolLoadingCheckBox->text() + << ' ' << m_ui.fastLoadDebuggingHelpersCheckBox->text(); rc.remove(QLatin1Char('&')); return rc; } diff --git a/src/plugins/debugger/cdb/cdboptionspagewidget.ui b/src/plugins/debugger/cdb/cdboptionspagewidget.ui index c84109e3a7..505f7c8bf4 100644 --- a/src/plugins/debugger/cdb/cdboptionspagewidget.ui +++ b/src/plugins/debugger/cdb/cdboptionspagewidget.ui @@ -85,6 +85,9 @@ Other Options + + QFormLayout::AllNonFixedFieldsGrow + @@ -92,6 +95,13 @@ + + + + fast loading of debugging helpers + + + -- cgit v1.2.1 From ed0394d452892abf89e93963d4fa22caa5793d55 Mon Sep 17 00:00:00 2001 From: con Date: Mon, 26 Jul 2010 11:46:26 +0200 Subject: Fixes: New Project action didn't respect the default project location. It had old, interfering logic of its own. Reviewed-by: Tobias Hunger --- src/plugins/projectexplorer/projectexplorer.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/plugins/projectexplorer/projectexplorer.cpp b/src/plugins/projectexplorer/projectexplorer.cpp index fb4d5579c1..c87981803e 100644 --- a/src/plugins/projectexplorer/projectexplorer.cpp +++ b/src/plugins/projectexplorer/projectexplorer.cpp @@ -909,16 +909,8 @@ void ProjectExplorerPlugin::newProject() if (debug) qDebug() << "ProjectExplorerPlugin::newProject"; - QString defaultLocation; - if (currentProject()) { - QDir dir(currentProject()->projectDirectory()); - dir.cdUp(); - defaultLocation = dir.absolutePath(); - } - Core::ICore::instance()->showNewItemDialog(tr("New Project", "Title of dialog"), - Core::IWizard::wizardsOfKind(Core::IWizard::ProjectWizard), - defaultLocation); + Core::IWizard::wizardsOfKind(Core::IWizard::ProjectWizard)); updateActions(); } -- cgit v1.2.1 From 01f90a972330f60877e27f00008ee7991ad5b751 Mon Sep 17 00:00:00 2001 From: ck Date: Wed, 28 Jul 2010 11:53:12 +0200 Subject: Maemo: Don't use dpkg-buildpackage. Reverts the core changes of 5b47f47dc9d944da973d747a56dd327d893ea212, which was a horrible mistake and could not possibly have worked with this branch. --- .../qt-maemo/maemopackagecreationstep.cpp | 57 +++++++++++++--------- 1 file changed, 33 insertions(+), 24 deletions(-) diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationstep.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationstep.cpp index a4456c3e2b..aab42f7c2f 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationstep.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemopackagecreationstep.cpp @@ -195,10 +195,6 @@ bool MaemoPackageCreationStep::createPackage() QByteArray rulesContents = rulesFile.readAll(); rulesContents.replace("DESTDIR", "INSTALL_ROOT"); - // Would be the right solution, but does not work (on Windows), - // because dpkg-genchanges doesn't know about it (and can't be told). - // rulesContents.replace("dh_builddeb", "dh_builddeb --destdir=."); - rulesFile.resize(0); rulesFile.write(rulesContents); if (rulesFile.error() != QFile::NoError) { @@ -220,30 +216,43 @@ bool MaemoPackageCreationStep::createPackage() } } - if (!runCommand(QLatin1String("dpkg-buildpackage -nc -uc -us"))) + if (!runCommand(QLatin1String("dh_installdirs"))) return false; - // Workaround for non-working dh_builddeb --destdir=. - if (!QDir(buildDir).isRoot()) { - const QString packageFileName = QFileInfo(packageFilePath()).fileName(); - const QString changesFileName = QFileInfo(packageFileName) - .completeBaseName() + QLatin1String(".changes"); - const QString packageSourceDir = buildDir + QLatin1String("/../"); - const QString packageSourceFilePath - = packageSourceDir + packageFileName; - const QString changesSourceFilePath - = packageSourceDir + changesFileName; - const QString changesTargetFilePath - = buildDir + QLatin1Char('/') + changesFileName; - QFile::remove(packageFilePath()); - QFile::remove(changesTargetFilePath); - if (!QFile::rename(packageSourceFilePath, packageFilePath()) - || !QFile::rename(changesSourceFilePath, changesTargetFilePath)) { - raiseError(tr("Packaging failed."), - tr("Could not move package files from %1 to %2.") - .arg(packageSourceDir, buildDir)); + const QDir debianRoot = QDir(buildDir % QLatin1String("/debian/") + % executableFileName().toLower()); + for (int i = 0; i < m_packageContents->rowCount(); ++i) { + const MaemoDeployable &d = m_packageContents->deployableAt(i); + const QString targetFile = debianRoot.path() + '/' + d.remoteFilePath; + const QString absTargetDir = QFileInfo(targetFile).dir().path(); + const QString relTargetDir = debianRoot.relativeFilePath(absTargetDir); + if (!debianRoot.exists(relTargetDir) + && !debianRoot.mkpath(relTargetDir)) { + raiseError(tr("Packaging Error: Could not create directory '%1'.") + .arg(QDir::toNativeSeparators(absTargetDir))); + return false; + } + if (QFile::exists(targetFile) && !QFile::remove(targetFile)) { + raiseError(tr("Packaging Error: Could not replace file '%1'.") + .arg(QDir::toNativeSeparators(targetFile))); return false; } + + if (!QFile::copy(d.localFilePath, targetFile)) { + raiseError(tr("Packaging Error: Could not copy '%1' to '%2'.") + .arg(QDir::toNativeSeparators(d.localFilePath)) + .arg(QDir::toNativeSeparators(targetFile))); + return false; + } + } + + const QStringList commands = QStringList() << QLatin1String("dh_link") + << QLatin1String("dh_fixperms") << QLatin1String("dh_installdeb") + << QLatin1String("dh_gencontrol") << QLatin1String("dh_md5sums") + << QLatin1String("dh_builddeb --destdir=."); + foreach (const QString &command, commands) { + if (!runCommand(command)) + return false; } emit addOutput(tr("Package created."), textCharFormat); -- cgit v1.2.1 From 14686acb54f1ee44ec946d728c7729ba068b4bd7 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Wed, 28 Jul 2010 13:20:56 +0200 Subject: QmlJS: Update builtin type information. For Qt 4.7 rev 953e91c582cd396082250748e4c4d8424292c1de --- .../qml-type-descriptions/qml-builtin-types.xml | 189 ++++++++++++++------- 1 file changed, 131 insertions(+), 58 deletions(-) diff --git a/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml b/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml index 3f917c5479..d6e5469873 100644 --- a/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml +++ b/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml @@ -277,7 +277,7 @@ - + @@ -976,6 +976,8 @@ + + @@ -1110,8 +1112,11 @@ - - + + + + + @@ -1376,6 +1381,7 @@ + @@ -1452,6 +1458,13 @@ + + + + + + + @@ -1582,6 +1595,7 @@ + @@ -1589,6 +1603,7 @@ + @@ -1659,9 +1674,9 @@ + - @@ -1671,7 +1686,6 @@ - @@ -1698,7 +1712,6 @@ - @@ -1832,6 +1845,8 @@ + + @@ -1848,6 +1863,8 @@ + + @@ -1870,11 +1887,9 @@ - - @@ -1912,11 +1927,11 @@ - + + - @@ -1929,7 +1944,7 @@ - + @@ -1954,7 +1969,11 @@ - + + + + + @@ -2529,36 +2548,19 @@ - - - - - - - - - - - - - - - - - - - + + - - - - + + + + @@ -2730,8 +2732,7 @@ - - + @@ -2774,8 +2775,8 @@ - - + + @@ -2786,12 +2787,27 @@ - - - + + + + + + + + + + + + + + + + + + @@ -2814,7 +2830,7 @@ - + @@ -2825,8 +2841,7 @@ - - + @@ -2871,11 +2886,9 @@ - - - - - + + + @@ -2883,13 +2896,21 @@ - - - - + + + + + + + + + + + + @@ -3035,8 +3056,62 @@ + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3092,7 +3167,7 @@ - + @@ -3101,7 +3176,6 @@ - @@ -3135,7 +3209,6 @@ - -- cgit v1.2.1 From 34f241c051d796600807c5ea473d943ddb2bb99a Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Wed, 28 Jul 2010 11:56:47 +0100 Subject: Working around bug in Qt to show tooltips correctly. Task-number: QTBUG-12057 Reviewed-by: Alessandro Portale --- src/plugins/debugger/stackhandler.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/plugins/debugger/stackhandler.cpp b/src/plugins/debugger/stackhandler.cpp index 5913d0c30d..e8a4959ebc 100644 --- a/src/plugins/debugger/stackhandler.cpp +++ b/src/plugins/debugger/stackhandler.cpp @@ -39,6 +39,9 @@ #include #include +#include +#include + namespace Debugger { namespace Internal { @@ -76,12 +79,14 @@ QString StackFrame::toString() const QString StackFrame::toToolTip() const { + const QString filePath = QDir::toNativeSeparators(file); QString res; QTextStream str(&res); str << "" << "" << "" - << "" + << "" << "" << "" << "" -- cgit v1.2.1 From 24a736b602878c9f89b5d1a7cf0fda278f8f1da5 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Tue, 1 Jun 2010 12:03:17 +0200 Subject: QmlJS: Make the qmldump tool treat extended types correctly. (cherry picked from commit 619d50f080793e1eae789642c3cce449669dc41e) --- src/tools/qml/qmldump/main.cpp | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/src/tools/qml/qmldump/main.cpp b/src/tools/qml/qmldump/main.cpp index adf3bf5395..525ccd8335 100644 --- a/src/tools/qml/qmldump/main.cpp +++ b/src/tools/qml/qmldump/main.cpp @@ -275,17 +275,35 @@ int main(int argc, char *argv[]) metas.insert(FriendlyQObject::qtMeta()); - // ### TODO: We don't treat extended types correctly. Currently only hits the - // QDeclarativeGraphicsWidget extension to QGraphicsWidget + QMultiHash extensions; foreach (const QDeclarativeType *ty, QDeclarativeMetaType::qmlTypes()) { - if (ty->isExtendedType()) - continue; - - cppToQml.insert(ty->metaObject()->className(), ty->qmlTypeName()); qmlTypeByCppName.insert(ty->metaObject()->className(), ty); + if (ty->isExtendedType()) { + extensions.insert(ty->typeName(), ty->metaObject()->className()); + } else { + cppToQml.insert(ty->metaObject()->className(), ty->qmlTypeName()); + } processDeclarativeType(ty, &metas); } + // Adjust qml names of extended objects. + // The chain ends up being: + // __extended__.originalname - the base object + // __extension_0_.originalname - first extension + // .. + // __extension_n-2_.originalname - second to last extension + // originalname - last extension + foreach (const QByteArray &extendedCpp, extensions.keys()) { + const QByteArray extendedQml = cppToQml.value(extendedCpp); + cppToQml.insert(extendedCpp, "__extended__." + extendedQml); + QList extensionCppNames = extensions.values(extendedCpp); + for (int i = 0; i < extensionCppNames.size() - 1; ++i) { + QByteArray adjustedName = QString("__extension__%1.%2").arg(QString::number(i), QString(extendedQml)).toAscii(); + cppToQml.insert(extensionCppNames.value(i), adjustedName); + } + cppToQml.insert(extensionCppNames.last(), extendedQml); + } + foreach (const QDeclarativeType *ty, QDeclarativeMetaType::qmlTypes()) { if (ty->isExtendedType()) continue; -- cgit v1.2.1 From 033def369cb0bda5ce134b7dabe97465596ed3e1 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Wed, 9 Jun 2010 14:24:23 +0200 Subject: QmlJS: Make qmldump not dump open/dynamic meta objects. They would need special treatment, like the Qml extended objects. The issue is they lead to two meta objects with the same classname and the dumper can't handle that. (cherry picked from commit 206c190e7ff3e7dfd59341fa99207c0d1bff0dd7) --- src/tools/qml/qmldump/main.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/tools/qml/qmldump/main.cpp b/src/tools/qml/qmldump/main.cpp index 525ccd8335..4dcdb0156c 100644 --- a/src/tools/qml/qmldump/main.cpp +++ b/src/tools/qml/qmldump/main.cpp @@ -9,7 +9,10 @@ #include #include #include +#include +#include #include +#include #include static QHash qmlTypeByCppName; @@ -46,7 +49,11 @@ void processMetaObject(const QMetaObject *meta, QSet *metas if (! meta || metas->contains(meta)) return; - metas->insert(meta); + // dynamic meta objects break things badly + const QMetaObjectPrivate *mop = reinterpret_cast(meta->d.data); + if (!(mop->flags & DynamicMetaObject)) + metas->insert(meta); + processMetaObject(meta->superClass(), metas); } -- cgit v1.2.1 From df87d970bc9ada725a4f7e03dd7c9065cdb1fd35 Mon Sep 17 00:00:00 2001 From: Christian Kamm Date: Wed, 28 Jul 2010 13:51:47 +0200 Subject: QmlJS: Update builtin type information. Fix for 14686acb54f1ee44ec946d728c7729ba068b4bd7 with corrected qmldump. --- .../qml-type-descriptions/qml-builtin-types.xml | 56 +++++++++++----------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml b/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml index d6e5469873..bba94ab56f 100644 --- a/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml +++ b/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml @@ -217,15 +217,6 @@ - - - - - - - - - @@ -277,7 +268,7 @@ - + @@ -2455,24 +2446,14 @@ - - - - - - - - - - - - - - - - - - + + + + + + + + @@ -3240,6 +3221,25 @@ + + + + + + + + + + + + + + + + + + + -- cgit v1.2.1 From 9f76d93e1958039665d4b7c9609eb3c3eb3da1ab Mon Sep 17 00:00:00 2001 From: Sergey Belyashov Date: Thu, 29 Jul 2010 11:48:11 +0200 Subject: Updated Russian translation Merge-request: 157 Reviewed-by: Oswald Buddenhagen --- share/qtcreator/translations/qtcreator_ru.ts | 4565 ++------------------------ 1 file changed, 213 insertions(+), 4352 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_ru.ts b/share/qtcreator/translations/qtcreator_ru.ts index 762aa60690..6f8eaa975e 100644 --- a/share/qtcreator/translations/qtcreator_ru.ts +++ b/share/qtcreator/translations/qtcreator_ru.ts @@ -4,7 +4,6 @@ AboutDialog - About Bauhaus AboutDialog О Баухаусе @@ -13,22 +12,18 @@ Application - Failed to load core: %1 Невозможно загрузить ядро: %1 - Unable to send command line arguments to the already running instance. It appears to be not responding. Невозможно отправить параметры командной строки запущенному процессу. Похоже, процесс не отвечает. - Could not find 'Core.pluginspec' in %1 Не удалось найти "Core.pluginspec" в %1 - Qt Creator - Plugin loader messages Qt Creator - Сообщения загрузчика надстроек @@ -36,17 +31,14 @@ AttachCoreDialog - Start Debugger Запуск отладчика - Executable: Программа: - Core File: Файл ядра: @@ -54,12 +46,10 @@ AttachExternalDialog - Start Debugger Запуск отладчика - Attach to process ID: Поключиться к процессу с ID: @@ -67,42 +57,44 @@ 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 + + Copying Failed Ошибка копирования - You cannot copy more than 4 MB of binary data. Невозможно копировать более 4 МБ двоичных данных. - Copy Selection as ASCII Characters Скопировать как ASCII символы - Copy Selection as Hex Values Скопировать как шестнадцатиричные значения - 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 в новом окне @@ -110,12 +102,10 @@ BINEditor::Internal::BinEditorPlugin - &Undo От&менить - &Redo &Повторить @@ -123,7 +113,6 @@ BINEditor::Internal::ImageViewerFactory - Image Viewer Просмотр изображений @@ -131,72 +120,58 @@ BehaviorDialog - Dialog Диалог - Type: Тип: - Id: Идентификатор: - Property Name: Имя свойства: - Animation Анимация - SpringFollow Упругое изменение - Settings - Настройки + Настройки - Duration: Длительность: - Curve: - Кривая: + Кривая: - easeNone - Source: Источник: - Velocity: Скорость: - Spring: Упругость: - Damping: Затухание: @@ -204,46 +179,34 @@ BookmarkDialog - Add Bookmark Добавить закладку - Bookmark: Закладка: - Add in Folder: Добавить в папку: - + - New Folder Новая папка - - - - - Bookmarks Закладки - Delete Folder Удалить папку - Rename Folder Переименовать папку @@ -251,23 +214,18 @@ BookmarkManager - Bookmarks Закладки - Remove Удалить - You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue? Вы собираетесь удалить папку, что повлечёт<br>удаление её содержимого. Вы уверены, что желаете продолжить? - - New Folder Новая папка @@ -275,42 +233,34 @@ BookmarkWidget - Delete Folder Удалить папку - Rename Folder Переименовать папку - Show Bookmark Показать закладку - Show Bookmark in New Tab Показать закладку в новой вкладке - Delete Bookmark Удалить закладку - Rename Bookmark Переименовать закладку - Add Добавить - Remove Удалить @@ -318,28 +268,22 @@ Bookmarks::Internal::BookmarkView - - Bookmarks Закладки - Move Up Поднять - Move Down Опустить - &Remove &Удалить - Remove All Удалить всё @@ -347,63 +291,50 @@ Bookmarks::Internal::BookmarksPlugin - &Bookmarks &Закладки - - 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 Следующая закладка в документе @@ -411,37 +342,30 @@ BorderImageSpecifics - Image Изображение - Source Источник - Source Size Размер источника - Left Левый - Right Правый - Top Верхний - Bottom Нижний @@ -449,12 +373,10 @@ BreakByFunctionDialog - Set Breakpoint at Function Установка точки останова в функции - Function to break on: Остановиться на функции: @@ -462,12 +384,10 @@ BreakCondition - Condition: Условие: - Ignore count: Число пропусков: @@ -475,7 +395,6 @@ BuildSettingsPanel - Build Settings Настройки сборки @@ -483,7 +402,6 @@ BuildSettingsPanelFactory - Build Settings Настройки сборки @@ -491,17 +409,14 @@ CMakeProjectManager::Internal::CMakeBuildConfigurationFactory - Build Сборка - New configuration Новая конфигурация - New Configuration Name: Название новой конфигурации: @@ -509,7 +424,6 @@ CMakeProjectManager::Internal::CMakeBuildSettingsWidget - &Change &Изменить @@ -517,7 +431,6 @@ CMakeProjectManager::Internal::CMakeOpenProjectWizard - CMake Wizard Мастер CMake @@ -525,22 +438,18 @@ CMakeProjectManager::Internal::CMakeRunConfiguration - Clean Environment Чистая среда - System Environment Системная среда - Build Environment Среда сборки - (disabled) (отключено) @@ -548,47 +457,38 @@ CMakeProjectManager::Internal::CMakeRunConfigurationWidget - Arguments: Параметры: - Select Working Directory Выбор рабочего каталога - Reset to default Сбросить к исходному состоянию - Working Directory: Рабочий каталог: - Run Environment Среда выполнения - Clean Environment Чистая среда - System Environment Системная среда - Build Environment Среда сборки - Base environment for this runconfiguration: Базовая среда данной конфигурации выполнения: @@ -596,78 +496,62 @@ CMakeProjectManager::Internal::CMakeRunPage - Please specify the path to the cmake executable. No cmake executable was found in the path. Укажите размещение программы cmake, так как она не была найдена автоматически. - The cmake executable (%1) does not exist. Программа cmake (%1) отсутствует. - The path %1 is not a executable. Путь %1 не является путём к исполняемой программе. - The path %1 is not a valid cmake. Путь %1 не является корректным путём к программе cmake. - - Run CMake Выполнить CMake - Arguments Параметры - The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly Каталог %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. - NMake Generator Генератор NMake - NMake Generator (%1) Генератор NMake (%1) - MinGW Generator Генератор MinGW - No valid cmake executable specified. Не указана корректная программа cmake. @@ -675,12 +559,10 @@ CMakeProjectManager::Internal::CMakeSettingsPage - CMake CMake - Executable: Программа: @@ -688,8 +570,6 @@ CMakeProjectManager::Internal::CMakeTarget - - Desktop CMake Default target display name Настольный компьютер @@ -698,12 +578,10 @@ CMakeProjectManager::Internal::InSourceBuildPage - 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>, что препятствует теневой сборке. Qt Creator не позволит изменить каталог сборки. Если требуется теневая сборка, необходимо очистить каталог исходников и открыть проект снова. - Build Location Каталог сборки @@ -711,7 +589,6 @@ CMakeProjectManager::Internal::MakeStep - Make CMakeProjectManager::MakeStep display name. Сборка @@ -720,28 +597,23 @@ CMakeProjectManager::Internal::MakeStepConfigWidget - Additional arguments: Дополнительные параметры: - Targets: Цели: - Make CMakeProjectManager::MakeStepConfigWidget display name. Сборка - <b>Make:</b> %1 %2 <b>Make:</b> %1 %2 - <b>Unknown Toolchain</b> <b>Неизвестный инструментарий</b> @@ -749,7 +621,6 @@ CMakeProjectManager::Internal::MakeStepFactory - Make Display name for CMakeProjectManager::MakeStep id. Сборка @@ -758,22 +629,18 @@ CMakeProjectManager::Internal::ShadowBuildPage - 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 рекомендует не использовать каталог с исходниками для сборки. Это позволит поддерживать каталог с исходниками в чистоте, а также даст возможность делать несколько сборок с различными настройками. - Build directory: Каталог сборки: - Build Location Каталог сборки @@ -781,12 +648,10 @@ CPlusPlus::OverviewModel - <Select Symbol> <Выберите символ> - <No Symbols> <Нет символов> @@ -794,7 +659,6 @@ CVS::Internal::CVSEditor - Annotate revision "%1" Аннотация ревизии "%1" @@ -802,281 +666,226 @@ CVS::Internal::CVSPlugin - Parsing of the log output failed Не удалось разобрать историю - &CVS &CVS - Add Добавить - Add "%1" Добавить "%1" - Alt+C,Alt+A Alt+C,Alt+A - Diff Project Сравнить проект - Diff Current File Сравнить текущий файл - Diff "%1" Сравнить "%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 "%1" История '%1' - Annotate Current File Аннотация текущего файла (annotate) - Annotate "%1" Аннотация "%1" (annotate) - Delete... Удалить... - Delete "%1"... Удалить "%1"... - Revert... Откатить... - Revert "%1"... Откатить "%1"... - Diff Project "%1" Сравнить проект "%1" - Project Status Состояние проекта - Status of Project "%1" Состояние проекта "%1" - Log Project История проекта - Log Project "%1" История проекта "%1" - Update Project Обновить проект - Update Project "%1" Обновить проект "%1" - Repository Log История хранилища - Revert Repository... Откатить все изменения... - Commit Фиксировать - Diff Selected Files Сравнить выделенные файлы - &Undo &Отменить - &Redo &Повторить - Closing CVS Editor Закрытие редактора CVS - Do you want to commit the change? Желаете зафиксировать изменения? - The commit message check failed. Do you want to commit the change? Сообщение о фиксации содержит ошибки. Желаете зафиксировать изменения? - The files do not differ. Файлы не имеют различий. - Revert repository Откатить все изменения - Would you like to revert all 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. Нет изменённых файлов. - Cannot create temporary file: %1 Не удалось создать временный файл: %1 - Project status Состояние проекта - The initial revision %1 cannot be described. Невозможно описать начальную ревизию %1. - Could not find commits of id '%1' on %2. Не удалось найти фиксацию с идентификатором '%1' на %2. - 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 мс). @@ -1084,17 +893,14 @@ CVS::Internal::CVSSubmitEditor - Added Добавлен - Removed Удалён - Modified Изменён @@ -1102,12 +908,10 @@ CVS::Internal::CheckoutWizard - Checks out a CVS repository and tries to load the contained project. Извлечение хранилища CVS с последующей попыткой загрузки содержащегося там проекта. - CVS Checkout Извлечь из CVS @@ -1115,17 +919,14 @@ CVS::Internal::CheckoutWizardPage - Location Размещение - Specify repository and path. Выбор хранилища и пути. - Repository: Хранилище: @@ -1133,57 +934,46 @@ CVS::Internal::SettingsPage - CVS CVS - Configuration Настройка - Miscellaneous Разное - Prompt on submit Спрашивать при фиксации - Describe all files matching commit id Описывать все файлы, соответствующие фиксации - Timeout: Время ожидания: - s сек - CVS command: Команда CVS: - CVS root: Корень CVS: - Diff options: Опции сравнения: - 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. Если включено, по щелчку на номере равизии при просмотре аннотации (полученной по идентификатору фиксации) будут отображаться все зафиксированные файлы. В противном случае, только соответствующий файл. @@ -1191,7 +981,6 @@ CVS::Internal::SettingsPageWidget - CVS Command Команда CVS @@ -1199,7 +988,6 @@ CVSPlugin - Cannot find repository for '%1' Не удалось найти хранилище для "%1" @@ -1207,17 +995,14 @@ CdbCore::CoreEngine - Unable to set the image path to %1: %2 Не удалось установить путь к образу "%1": %2 - Unable to create a process '%1': %2 Не удалось создать процесс "%1": %2 - Attaching to a process failed for process id %1: %2 Не удалось поключиться к процессу с ID %1: %2 @@ -1225,77 +1010,67 @@ CdbOptionsPageWidget - These options take effect at the next start of Qt Creator. Данные настройки вступят в силу после перезапуска Qt Creator. - Path: Путь: - 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">Debugging Tools for Windows</a> (%2).</p><p><b>Замечание:</b> Для вступления изменений в силу необходим перезапуск Qt Creator.</p></p></body></html> - 64-bit version 64-х битная версия - 32-bit version 32-х битная версия - CDB Placeholder - Other Options Другие параметры - Verbose symbol loading Наглядная загрузка символов + + fast loading of debugging helpers + быстрая загрузка помощников отладчика + CdbStackFrameContext - <Unknown Type> <Неизвестный тип> - <Unknown Value> <Неизвестное значение> - <Unknown> <Неизвестный> @@ -1303,17 +1078,14 @@ CdbSymbolGroupContext - <Unknown Type> <Неизвестный тип> - <Unknown Value> <Неизвестное значение> - <Unknown> <Неизвестный> @@ -1321,17 +1093,14 @@ ChangeSelectionDialog - Select Выбрать - Change: Фиксация: - Repository location: Хранилище: @@ -1339,7 +1108,6 @@ CodePaster - Code Pasting Вставка кода @@ -1347,17 +1115,14 @@ CodePaster::CodePasterProtocol - No Server defined in the CodePaster preferences. Не указан сервер в настройках CodePaster. - No Server defined in the CodePaster options. Не указан сервер в настройках CodePaster. - No such paste Нет такой вставки @@ -1365,17 +1130,14 @@ CodePaster::CodePasterSettingsPage - CodePaster CodePaster - Server: Сервер: - Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). Обратите внимание, что узел сервиса CodePaster нужно задавать без указания протокола (например: codepaster.mycompany.com). @@ -1383,37 +1145,30 @@ CodePaster::CodepasterPlugin - &Code Pasting Вставка &Кода - Paste Snippet... Вставить фрагмент... - Alt+C,Alt+P - Paste Clipboard... Вставить из буфера обмена... - Fetch Snippet... Получить фрагмент... - Alt+C,Alt+F - Empty snippet received for "%1". Для "%1" получен пустой фрагмент. @@ -1421,32 +1176,26 @@ CodePaster::FileShareProtocol - 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 @@ -1454,7 +1203,6 @@ CodePaster::FileShareProtocolSettingsPage - Fileshare Общие файлы @@ -1462,27 +1210,22 @@ CodePaster::FileShareProtocolSettingsWidget - Form Форма - &Path: &Путь: - &Display: &Отображать: - entries записей - The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. Протокол на базе общей папки позволяет публиковать фрагменты кода просто используя сетевой диск для хранения файлов. Файлы никогда не удаляются. @@ -1490,7 +1233,6 @@ CodePaster::PasteBinDotComSettings - Pastebin.com @@ -1498,27 +1240,22 @@ CodePaster::PasteSelectDialog - Paste: Вставить: - Protocol: Протокол: - Refresh Обновить - Waiting for items Ожидание элементов - This protocol does not support listing Данный протокол не поддерживает получение списка @@ -1526,12 +1263,10 @@ CodePaster::PasteView - Paste Вставить - <Comment> <Комментарий> @@ -1539,12 +1274,10 @@ CodePaster::Protocol - %1 - Configuration Error %1 - ошибка конфигурации - Settings... Настройки... @@ -1552,27 +1285,22 @@ CodePaster::SettingsPage - General Основное - Username: Имя пользователя: - Default protocol: Протокол по умолчанию: - Display Output pane after sending a post Отправив данные, показать окно вывода - Copy-paste URL to clipboard Скопировать ссылку в буфер обмена @@ -1580,52 +1308,42 @@ CommandMappings - Command Mappings Связывание команд - Command Команда - Label Название - Target Цель - Defaults По умолчанию - Import... Импорт... - Export... Экспорт... - Target Identifier Обозначение цели - Target: Цель: - Reset Сбросить @@ -1633,62 +1351,50 @@ CommonOptionsPage - Checking this will populate the source file view automatically but might slow down debugger startup considerably. Включение приведёт к автоматическому заполнению просмотра файла исходных текстов, но может замедлить процесс запуска отладчика. - Populate source file view automatically Автоматически заполнять представление исходных текстов - Use alternating row colors in debug views Чередование цвета строк в представлении отладчика - Maximal stack depth: Максимальная глубина стека: - <unlimited> <бесконечна> - Use tooltips in main editor while debugging Использовать подсказки в основном редакторе при отладке - Language Язык - Changes the debugger language according to the currently opened file. Язык отладчика будет меняться в зависимости от открытого в данный момент файла. - Change debugger language automatically Автоматически менять язык отладчика - Register Qt Creator for debugging crashed applications. Зарегистрировать Qt Creator для отладки приложений, завершённых аварийно. - GUI Behavior Особенности интерфейса пользователя - Use Qt Creator for post-mortem debugging Назначить Qt Creator системным отладчиком @@ -1696,44 +1402,36 @@ 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 в 4-х столбцовом формате mailmap: имя <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: Файл настройки полей: @@ -1741,52 +1439,42 @@ name <email> alias <email> CompletionSettingsPage - Automatically insert (, ) and ; when appropriate. Автоматически вставлять '(, )' и ';', когда потребуется. - &Automatically insert brackets &Автоматически вставлять скобки - Insert the common prefix of available completion items. Вставлять общий префикс для всех доступных вариантов дополнения. - Autocomplete common &prefix Общий &префикс для автодополнения - Behavior Поведение - &Case-sensitivity: &Учитывать регистр: - Full Всегда - None Никогда - Insert &space after function name &Вставлять пробел после имени функции - First Letter Первой буквы @@ -1794,25 +1482,52 @@ name <email> alias <email> ContentWindow - Open Link Открыть ссылку - Open Link as New Page Открыть ссылку на новой странице + + ContextPaneTextWidget + + Text + Текст + + + Style + Начертание + + + Normal + Обычное + + + Outline + Контур + + + Raised + Выпуклое + + + Sunken + Впалое + + + ... + + + Core - Qt - Environment Среда @@ -1820,63 +1535,48 @@ name <email> alias <email> 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] [только для чтения] - [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? @@ -1888,12 +1588,10 @@ Would you like to overwrite them? Core::CommandMappings - Command Команда - Label Название @@ -1901,7 +1599,6 @@ Would you like to overwrite them? Core::DesignMode - Design Дизайн @@ -1909,291 +1606,226 @@ Would you like to overwrite them? Core::EditorManager - - Revert to Saved Вернуть к сохранённому - - - Close Закрыть - Close All Закрыть всё - - Close Others Закрыть другие - Next Open Document in History Следующий открытый документ в истории - Previous Open Document in History Предыдущий открытый документ в истории - - Go Back Перейти назад - - Go Forward Перейти вперёд - Open in External Editor Открыть во внешнем редакторе - Revert File to Saved Вернуть файл к сохранённому состоянию - 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 - Meta+E Meta+E - Ctrl+E Ctrl+E - Split Разделить - Split Side by Side Разделить вертикально - Remove Current Split Удалить текущее разделение - Remove All Splits Удалить все разделения - Save %1 &As... Сохранить %1 &как... - %1,2 %1,2 - Ctrl+F4 Ctrl+F4 - %1,3 %1,3 - %1,0 %1,0 - %1,1 %1,1 - Go to Next Split Перейти к следующему разделению - %1,o %1,o - &Advanced &Дополнительно - Alt+V,Alt+I Alt+V,Alt+I - All Files (*) Все Файлы (*) - - Opening File Открытие файла - Cannot open file %1! Не удалось открыть файл %1! - File is Read Only Файл только для чтения - The file %1 is read only. Файл '%1' только для чтения. - Open with VCS (%1) Открыть с помощью VCS (%1) - - Make writable Сделать записываемым - Save as ... Сохранить как... - - Failed! Не удалось! - Could not open the file for editing with SCC. Не удалось открыть файл для правки с помощью SCC. - Could not set permissions to writable. Не удалось разрешить запись. - <b>Warning:</b> You are changing a read-only file. <b>Внимание:</b> Вы изменяете файл, доступный только для чтения. - &Save %1 &Сохранить %1 - 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>положение редактора по горизонтали</td></tr><tr><td>%y</td><td>положение редактора по вертикали</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> @@ -2201,17 +1833,14 @@ Would you like to overwrite them? Core::EditorToolBar - - Copy full path to clipboard + Copy Full Path to Clipboard Скопировать полный путь в буфер обмена - Make writable Сделать записываемым - File is writable Файл записываемый @@ -2219,40 +1848,40 @@ Would you like to overwrite them? Core::FileManager - Cannot save file Не удалось сохранить файл - Cannot save changes to '%1'. Do you want to continue and lose your changes? Не удалось сохранить изменения в '%1'. Продолжить с потерей изменений? - Overwrite? Перезаписать? - An item named '%1' already exists at this location. Do you want to overwrite it? Элемент с названием '%1' уже существует в указанном месте. Желаете его перезаписать? - Save File As Сохранить файл как - Open File Открыть файл + + Core::HelpManager + + Unfiltered + Вся + + Core::InteractiveSshConnection - Error sending input Ошибка отправки ввода @@ -2260,7 +1889,6 @@ Would you like to overwrite them? Core::Internal::ComboBox - Activate %1 Включить %1 @@ -2268,7 +1896,6 @@ Would you like to overwrite them? Core::Internal::EditMode - Edit Редактор @@ -2276,72 +1903,58 @@ Would you like to overwrite them? 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 Следующая группа - Move Document to Previous Group Переместить документ в предыдущую группу - Move Document to Next Group Переместить документ в следующую группу @@ -2349,13 +1962,10 @@ Would you like to overwrite them? Core::Internal::EditorView - - Placeholder Заполнитель - Close Закрыть @@ -2363,102 +1973,82 @@ Would you like to overwrite them? Core::Internal::GeneralSettings - Reset to default Сбросить к исходному состоянию - R С - Terminal: Терминал: - External editor: Внешний редактор: - ? ? - General Основные - <System Language> <Системный> - Restart required Требуется перезапуск - The language change will take effect after a restart of Qt Creator. Изменение языка вступит в силу после перезапуска Qt Creator. - Variables Переменные - When files are externally modified: Когда файлы изменены извне: - External file browser: Обозреватель файлов: - User Interface Интерфейс пользователя - Color: Цвет: - Language: Язык: - System Система - Default file encoding: Кодировка файла по умолчанию: - Always Ask Всегда спрашивать - Reload All Unchanged Editors Перезагружать неизменённые - Ignore Modifications Игнорировать изменения @@ -2466,193 +2056,147 @@ Would you like to overwrite them? Core::Internal::MainWindow - Qt Creator Qt Creator - &File &Файл - &Edit &Правка - &Tools &Инструменты - &Window &Окно - &Help Справ&ка - &New File or Project... &Новый файл или проект... - &Open File or Project... &Открыть файл или проект... - Open File &With... Открыть файл с по&мощью... - Recent &Files Недавние фа&йлы - - &Save &Сохранить - - Save &As... Сохранить &как... - - Ctrl+Shift+S Ctrl+Shift+S - Save A&ll Сохранить &всё - &Print... Пе&чать... - E&xit В&ыход - Ctrl+Q Ctrl+Q - - &Undo &Отменить - - &Redo &Повторить - Cu&t Выре&зать - &Copy &Копировать - &Paste В&ставить - &Select All Вы&делить всё - &Go To Line... Пере&йти к строке... - Ctrl+L Ctrl+L - &Options... П&араметры... - Minimize Свернуть - Zoom Развернуть - Show Sidebar Показать боковую панель - Full Screen Полный экран - &Views &Обзоры - About &Qt Creator О программе &Qt Creator - About &Qt Creator... О программе &Qt Creator... - About &Plugins... О &надстройках... - New Title of dialog Новый - - Open Project - Открытие проекта - - - Settings... Настройки... @@ -2660,7 +2204,6 @@ Would you like to overwrite them? Core::Internal::MessageOutputWindow - General Messages Основные сообщения @@ -2668,7 +2211,6 @@ Would you like to overwrite them? Core::Internal::NavComboBox - Activate %1 Включить %1 @@ -2676,12 +2218,10 @@ Would you like to overwrite them? Core::Internal::NavigationSubWidget - Split Разделить - Close Закрыть @@ -2689,17 +2229,14 @@ Would you like to overwrite them? Core::Internal::NavigationWidget - Hide Sidebar Скрыть боковую панель - Show Sidebar Показать боковую панель - Activate %1 Pane Активировать панель %1 @@ -2707,27 +2244,22 @@ Would you like to overwrite them? Core::Internal::NewDialog - New Project Новый проект - Choose a template: Выберите шаблон: - &Choose... &Выбрать... - Projects Проекты - Files and Classes Файлы и классы @@ -2735,33 +2267,26 @@ Would you like to overwrite them? Core::Internal::OpenEditorsWidget - - Open Documents Открытые документы - Close %1 Закрыть %1 - Close Editor Закрыть документ - Close All Except %1 Закрыть все, кроме %1 - Close Other Editors Закрыть остальные документы - Close All Editors Закрыть все документы @@ -2769,8 +2294,6 @@ Would you like to overwrite them? Core::Internal::OpenEditorsWindow - - * * @@ -2778,7 +2301,6 @@ Would you like to overwrite them? Core::Internal::OpenWithDialog - Open file '%1' with: Открыть файл '%1' с помощью: @@ -2786,38 +2308,30 @@ Would you like to overwrite them? Core::Internal::OutputPaneManager - Output Вывод - Clear Очистить - Next Item Следующий - Previous Item Предыдущий - - Maximize Output Pane Развернуть панель вывода - Output &Panes Панели в&ывода - Minimize Output Pane Свернуть панель вывода @@ -2825,37 +2339,30 @@ Would you like to overwrite them? Core::Internal::PluginDialog - Details Подробнее - Error Details Подробнее об ошибке - Close Закрыть - Restart required. Требуется перезапуск. - Installed Plugins Установленные надстройки - Plugin Details of %1 Подробнее о надстройке %1 - Plugin Errors of %1 Ошибки надстройки %1 @@ -2863,7 +2370,6 @@ Would you like to overwrite them? Core::Internal::ProgressView - Processes Процессы @@ -2871,22 +2377,18 @@ Would you like to overwrite them? Core::Internal::SaveItemsDialog - Do not Save Не сохранять - Save All Сохранить все - Save Сохранить - Save Selected Сохранить выбранные @@ -2894,12 +2396,10 @@ Would you like to overwrite them? Core::Internal::SettingsDialog - Preferences Настройки - Options Параметры @@ -2907,38 +2407,30 @@ Would you like to overwrite them? Core::Internal::ShortcutSettings - Keyboard Клавиатура - Keyboard Shortcuts Клавиатурные сокращения - Key sequence: Сочетание клавиш: - Shortcut Сокращение - Import Keyboard Mapping Scheme Импорт схемы разметки клавиатуры - - Keyboard Mapping Scheme (*.kms) Схемы разметки клавиатуры (*.kms) - Export Keyboard Mapping Scheme Экспорт схемы разметки клавиатуры @@ -2946,12 +2438,10 @@ Would you like to overwrite them? Core::Internal::SideBarWidget - Split Разделить - Close Закрыть @@ -2959,7 +2449,6 @@ Would you like to overwrite them? Core::Internal::SystemEditor - Could not open url %1. Не удалось открыть ссылку %1. @@ -2967,23 +2456,19 @@ Would you like to overwrite them? Core::Internal::VersionDialog - About Qt Creator О Qt Creator - (%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-х битной)<br/><br/>Собран %4 в %5<br /><br/>%9<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/> @@ -2991,7 +2476,6 @@ Would you like to overwrite them? Core::ModeManager - Switch to <b>%1</b> mode Переключить в режим <b>%1</b> @@ -2999,14 +2483,12 @@ Would you like to overwrite them? Core::ScriptManager - Exception at line %1: %2 %3 Исключение в строке %1: %2 %3 - Unknown error Неизвестная ошибка @@ -3014,48 +2496,38 @@ Would you like to overwrite them? 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 Не удалось сменить удалённый рабочий каталог @@ -3063,7 +2535,6 @@ Would you like to overwrite them? Core::StandardFileWizard - New %1 Новый %1 @@ -3071,7 +2542,6 @@ Would you like to overwrite them? CppEditor - C++ @@ -3079,22 +2549,18 @@ Would you like to overwrite them? CppEditor::Internal::CPPEditor - - Sort alphabetically + Sort Alphabetically Сортировать по алфавиту - This change cannot be undone. Данное изменение невозможно отменить. - Yes, I know what I am doing. Да, я знаю что делаю. - Unused variable Неиспользуемая переменная @@ -3102,17 +2568,14 @@ Would you like to overwrite them? CppEditor::Internal::ClassNamePage - Enter Class Name Введите имя класса - The header and source file names will be derived from the class name Названия файла исходных текстов и заголовочного файла будут получены из имени класса - Configure... Настроить... @@ -3120,7 +2583,6 @@ Would you like to overwrite them? CppEditor::Internal::CppClassWizard - Error while generating file contents. Ошибка формирования содержимого файла. @@ -3128,84 +2590,61 @@ Would you like to overwrite them? CppEditor::Internal::CppClassWizardDialog - C++ Class Wizard Мастер классов C++ - Details Подробнее - - CppEditor::Internal::CppHoverHandler - - - Unfiltered - пустой фильтр документации - Вся - - CppEditor::Internal::CppPlugin - Creates a C++ header and a source file for a new class that you can add to a C++ project. Создание новых заголовочного и исходного файлов C++ под новый класс для добавления в проект C++. - Creates a C++ source file that you can add to a C++ project. Создание нового исходного файла C++ для добавления в проект C++. - Creates a C++ header file that you can add to a C++ project. Создание нового заголовочного файл C++ для добавления в проект C++. - C++ Header File Заголовочный файл C++ - Follow Symbol Under Cursor Перейти к символу под курсором - Switch Between Method Declaration/Definition Переключить объявление/определение метода - Rename Symbol Under Cursor Переименовать символ под курсором - Update Code Model Обновить модель кода - C++ Source File Файл исходных текстов C++ - C++ Class Класс C++ - Find Usages Найти использование - Ctrl+Shift+U Ctrl+Shift+U @@ -3213,22 +2652,18 @@ Would you like to overwrite them? CppFileSettingsPage - Header suffix: Заголовочный: - Lower case file names Имена файлов в нижнем регистре - Source suffix: Исходные тексты: - License template: Шаблон лицензии: @@ -3236,7 +2671,6 @@ Would you like to overwrite them? CppPreprocessor - %1: No such file or directory %1: Нет такого файла или каталога @@ -3244,12 +2678,10 @@ Would you like to overwrite them? CppTools - File Naming Именование файлов - C++ C++ @@ -3257,7 +2689,6 @@ Would you like to overwrite them? CppTools::Internal::CompletionSettingsPage - Completion Дополнение @@ -3265,7 +2696,6 @@ Would you like to overwrite them? CppTools::Internal::CppClassesFilter - Classes Классы @@ -3273,7 +2703,6 @@ Would you like to overwrite them? CppTools::Internal::CppCurrentDocumentFilter - Methods in current Document Методы текущего документа @@ -3281,7 +2710,6 @@ Would you like to overwrite them? CppTools::Internal::CppFileSettingsWidget - /************************************************************************** ** Qt Creator license header template ** Special keywords: %USER% %DATE% %YEAR% @@ -3298,22 +2726,18 @@ Would you like to overwrite them? - Edit... Изменить... - Choose Location for New License Template File Выбор размещения нового файла шаблона лицензии - Template write error Ошибка записи шаблона - Cannot write to %1: %2 Не удалось записать в %1: %2 @@ -3321,8 +2745,6 @@ Would you like to overwrite them? CppTools::Internal::CppFindReferences - - Searching Идёт поиск @@ -3330,7 +2752,6 @@ Would you like to overwrite them? CppTools::Internal::CppFunctionsFilter - Methods Методы @@ -3338,7 +2759,6 @@ Would you like to overwrite them? CppTools::Internal::CppLocatorFilter - Classes and Methods Классы и методы @@ -3346,13 +2766,11 @@ Would you like to overwrite them? CppTools::Internal::CppModelManager - Scanning Слово "сканирование" слишком длинное Анализ - Parsing Разбор @@ -3360,12 +2778,10 @@ Would you like to overwrite them? CppTools::Internal::CppToolsPlugin - &C++ &C++ - Switch Header/Source Переключить заголовочный/исходный @@ -3373,7 +2789,6 @@ Would you like to overwrite them? CppTools::Internal::FunctionArgumentWidget - %1 of %2 %1 из %2 @@ -3381,54 +2796,42 @@ Would you like to overwrite them? 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 QLatin1String(...) Обернуть в QLatin1String(...) - Convert to Objective-C String Literal Преобразовать в строковый литерал Objective-C - Use Fast String Concatenation with % Использовать быстрое объединение строк с помощью % @@ -3436,17 +2839,14 @@ Would you like to overwrite them? Debugger - General Основное - Debugger Отладчик - <Encoding error> <Ошибка кодировки> @@ -3454,12 +2854,10 @@ Would you like to overwrite them? Debugger::Cdb - Unable to load the debugger engine library '%1': %2 Не удалось загрузить библиотеку отладчика "%1": %2 - Unable to resolve '%1' in the debugger engine library '%2' Отсутствует символ "%1" в библиотеке отладчика "%2" @@ -3467,166 +2865,130 @@ Would you like to overwrite them? Debugger::DebuggerManager - Continue Продолжить - - Interrupt Прервать - Step Over Перейти через - Step Into Войти в - Step Out Выйти из функции - - Run to Line Выполнить до строки - Run to Outermost Function Выполнить до внешней функции - Immediately Return From Inner Function Немедленно выйти из функции - - Jump to Line Перейти на строку - Toggle Breakpoint Поставить/снять точку останова - - Add to Watch Window Добавить в окно наблюдения - Snapshot Сделать снимок - Reverse Direction Обратное направление - Running... Выполнение... - Changing breakpoint state requires either a fully running or fully stopped application. Изменение состояние точки останова требует или полностью остановленную программу, или полностью запущенную. - The application requires the debugger engine '%1', which is disabled. Приложению требуется движок отладчика '%1', который выключен. - Starting debugger for tool chain '%1'... Запускается отладчик из инструментария '%1'... - Warning Предупреждение - Cannot debug '%1' (tool chain: '%2'): %3 Не удалось отладить '%1' (инструментарий: '%2'): %3 - Abort Debugging Прервать отладку - Aborts debugging and resets the debugger to the initial state. Прервать отладку и сбросить отладчик в исходное состояние. - Stopped Остановлен - Exited Завершён - Save Debugger Log Сохранить журнал отладчика - Turn off helper usage Не использовать помощника - 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. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. Помощник отладчика используется для преобразования значений некоторых типов данных Qt и стандартной библиотеки к наглядному виду. Он должен быть собран отдельно для каждой версии Qt. Это можно сделать в параметрах Qt, выбрав профиль Qt и нажав на 'Пересобрать' в строке 'Помощник отладчика'. - Stop Debugger Остановить отладчик - %1 (explicitly set in the Debugger Options) %1 (установлено в параметрах отладчика) - Open Qt preferences Открыть параметры Qt - Continue anyway Всё-равно продолжить - Debugging helper missing Отсутствует помощник отладчика @@ -3634,17 +2996,14 @@ Would you like to overwrite them? Debugger::DebuggerUISwitcher - &Languages &Языки - Alt+L - Language Язык @@ -3652,36 +3011,30 @@ Would you like to overwrite them? Debugger::Internal::AbstractGdbAdapter - 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 Не удалось подключиться к удалённому серверу: @@ -3691,12 +3044,10 @@ Would you like to overwrite them? Debugger::Internal::AddressDialog - Select start address Выбор начального адреса - Enter an address: Введите адрес: @@ -3704,12 +3055,10 @@ Would you like to overwrite them? Debugger::Internal::AttachCoreDialog - Select Executable Выбор программы - Select Core File Выбор файла ядра @@ -3717,22 +3066,18 @@ Would you like to overwrite them? Debugger::Internal::AttachExternalDialog - Process ID ID процесса - Name Название - State Состояние - Refresh Обновить @@ -3740,17 +3085,14 @@ Would you like to overwrite them? Debugger::Internal::BinaryToolChainDialog - Select binary and toolchains Выбор программы и инструментария - Gdb binary Программа gdb - Path: Путь: @@ -3758,126 +3100,94 @@ Would you like to overwrite them? Debugger::Internal::BreakHandler - - Marker File: Отмеченный файл: - - Marker Line: Отмеченная строка: - - Breakpoint Number: Номер точки останова: - - Breakpoint Address: Адрес точки останова: - Property Свойство - Requested Требуемое - Obtained Полученное - Internal Number: Внутренний номер: - - File Name: Имя файла: - - Function Name: Название функции: - - Line Number: Номер строки: - Corrected Line Number: Исправленный номер строки: - - Condition: Условие: - - Ignore Count: Количество пропусков: - Number Номер - Function Функция - File Файл - Line Строка - Condition Условие - Ignore Пропуски - Address Адрес - Breakpoint will only be hit if this condition is met. Точка останова сработает только при выполнении условия. - Breakpoint will only be hit after being ignored so many times. Точка останова сработает только через указанное количество пропусков. @@ -3885,102 +3195,82 @@ Would you like to overwrite them? Debugger::Internal::BreakWindow - Breakpoints Точки останова - Delete Breakpoint Удалить точку останова - Delete All Breakpoints Удалить все точки останова - Delete Breakpoints of "%1" Удалить точки останова в файле "%1" - Delete Breakpoints of File Удалить точки останова в файле - Adjust Column Widths to Contents Выравнить ширину столбцов по содержимому - Always Adjust Column Widths to Contents Всегда выравнивать ширину столбцов по содержимому - Edit Condition... Изменить условие... - Synchronize Breakpoints Согласовать точки останова - Disable Selected Breakpoints Выключить выбранную точку останова - Enable Selected Breakpoints Включить выбранную точку останова - Disable Breakpoint Отключить точку останова - Enable Breakpoint Включить точку останова - Use Short Path Использовать короткий путь - Use Full Path Использовать полный путь - Set Breakpoint at Function... Установить точку останова на функцию... - Set Breakpoint at Function "main" Установить точку останова на функцию "main" - Set Breakpoint at "throw" Установить точку останова на "throw" - Set Breakpoint at "catch" Установить точку останова на "catch" - Conditions on Breakpoint %1 Условия точки останова %1 @@ -3988,154 +3278,123 @@ Would you like to overwrite them? Debugger::Internal::CdbDebugEngine - The function "%1()" failed: %2 Function call failed Сбой функции "%1()": %2 - Version: %1 Версия: %1 - <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> <html>Установлена слишком старая версия <i>Debugging Tools for Windows</i> (%1). Рекомендуется обновить до версии %2 для корректного отображения типов данных Qt.</html> - Debugger Отладчик - The dumper library was not found at %1. Библиотека дампера не найдена в %1. - The console stub process was unable to start '%1'. Не удалось запустить процесс консоли '%1'. - Attaching to core files is not supported! Подключение к файлам ядра не поддерживается! - 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 - Running requested... Затребовано выполнение... - Running up to %1:%2... Выполнение до строки %1:%2... - Running up to function '%1()'... Выполнение до функции '%1()'... - Jump to line is not implemented Переход на строку не реализован - Unable to assign the value '%1' to '%2': %3 Невозможно присвоить '%2' значение '%1': %3 - Unable to retrieve %1 bytes of memory at 0x%2: %3 Не удалось получить %1 байт памяти начиная с 0x%2: %3 - Cannot retrieve symbols while the debuggee is running. Не удалось получить символы во время работы отлаживаемой программы. - - Debugger Error Ошибка отладчика - 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. Остановлено на %1:%2 в потоке %3. - Stopped at %1 in thread %2 (missing debug information). Остановлено на %1 в потоке %2 (нет отладочной информации). - Stopped at %1 (%2) in thread %3 (missing debug information). Остановлено на %1 (%2) в потоке %3 (нет отладочной информации). - Stopped in thread %1 (missing debug information). Остановлено в потоке %1 (нет отладочной информации). - Breakpoint: %1 Точка остановка: %1 @@ -4143,57 +3402,46 @@ Would you like to overwrite them? Debugger::Internal::CdbDumperHelper - injection внедрение - debugger call вызов отладчика - Loading the custom dumper library '%1' (%2) ... Загружается особая библиотека дампера '%1' (%2)... - Loading of the custom dumper library '%1' (%2) failed: %3 Загрузка особой библиотеки дампера '%1' (%2) не удалась: %3 - Loaded the custom dumper library '%1' (%2). Загружена особая библиотека дампера '%1' (%2). - Stopped / Custom dumper library initialized. Остановлено / инициализирована библиотека особого дампера. - Disabling dumpers due to debuggee crash... Отключение дамперов из-за сбоя отлаживаемой программы... - The debuggee does not appear to be Qt application. Отлаживаемая программа не является приложением Qt. - Initializing dumpers... Инициализация дамперов... - The custom dumper library could not be initialized: %1 Не удалось инициализировать библиотеку дампера: %1 - Querying dumpers for '%1'/'%2' (%3) Запрос дамперов для '%1'/'%2' (%3) @@ -4201,7 +3449,6 @@ Would you like to overwrite them? Debugger::Internal::CdbOptionsPage - Cdb Cdb @@ -4209,24 +3456,20 @@ Would you like to overwrite them? Debugger::Internal::CdbOptionsPageWidget - Autodetect Автоопределение - "Debugging Tools for Windows" could not be found. Не удалось обнаружить "Debugging Tools for Windows". - Checked: %1 Проверено: %1 - Autodetection Автоопределение @@ -4234,17 +3477,14 @@ Would you like to overwrite them? Debugger::Internal::CdbSymbolPathListEditor - Symbol Server... Сервер символов... - Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. Добавляет сервер символов Microsoft, который предоставляет символы для файлов операционной системы. Требует указания каталога локального кэша. - Pick a local cache directory Выберите каталог для локального кэша @@ -4252,46 +3492,36 @@ Would you like to overwrite them? Debugger::Internal::CoreGdbAdapter - Attached to core. Подключено к дампу. - Symbols found. Символы найдены. - - - Error Loading Symbols Ошибка загрузки символов - No executable to load symbols from specified. Не указана программа, из которой нужно загрузить символы. - Loading symbols from "%1" failed: Не удалось загрузить символы из "%1": - Attached to core temporarily. Временно подключено к дампу. - Unable to determine executable from core file. Невозможно определить программу из файла дампа. - Attach to core "%1" failed: Не удалось подключение к дампу "%1": @@ -4301,7 +3531,6 @@ Would you like to overwrite them? Debugger::Internal::DebugMode - Debug Отладка @@ -4309,19 +3538,16 @@ Would you like to overwrite them? Debugger::Internal::DebuggerListener - Close Debugging Session Закрытие сессии отладки - A debugging session is still in progress. Would you like to terminate it? Всё ещё идёт отладка. Желаете завершить её? - A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? Идёт отладка. Её завершение в текущем режиме (%1) может оставить исполнитель в неизвестном состоянии. Завершить отладку? @@ -4329,7 +3555,6 @@ Would you like to terminate it? Debugger::Internal::DebuggerOutputWindow - Debugger Отладчик @@ -4337,102 +3562,82 @@ Would you like to terminate it? Debugger::Internal::DebuggerPlugin - Option '%1' is missing the parameter. У настройки '%1' пропущен параметр. - The parameter '%1' of option '%2' is not a number. Параметр '%1' настройки '%2' не является числом. - Invalid debugger option: %1 Некорректный параметр отладчика: %1 - Error evaluating command line arguments: %1 Ошибка определения параметров командной строки: %1 - Start and Debug External Application... Запустить внешнее приложение для отладки... - Attach to Running External Application... Подключить к запущенному внешнему приложению... - Attach to Core... Подключить к дампу... - Start and Attach to Remote Application... Запустить и подключить к удалённому приложению... - Detach Debugger Отцепить отладчик - Stop Debugger/Interrupt Debugger Остановить/прервать отладчик - Reset Debugger Сбросить отладчик - Threads: Потоки: - Attaching to PID %1. Подключение к PID %1. - Remove Breakpoint Удалить точки останова - Disable Breakpoint Отключить точку останова - Enable Breakpoint Включить точку останова - Set Breakpoint Установить точку останова - Warning Предупреждение - Cannot attach to PID 0 Невозможно подключиться к PID 0 - Attaching to core %1. Подключение к дампу %1. @@ -4440,7 +3645,6 @@ Would you like to terminate it? Debugger::Internal::DebuggerRunControl - Debugger Отладчик @@ -4448,7 +3652,6 @@ Would you like to terminate it? Debugger::Internal::DebuggerRunControlFactory - Debug Отладка @@ -4456,19 +3659,16 @@ Would you like to terminate it? Debugger::Internal::DebuggerSettings - Verbose Log Расширенное журналирование - 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. Переключает отладчик для работы на уровне инструкций процессора. В этом режиме шаги происходят в пределах одной инструкции, а в окне исходных текстов так же отображается дизассемблированный код. - 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. Переключает обзор переменных в режим автоматического разыменования указателей. Позволяет сохранить уровень @@ -4476,228 +3676,184 @@ Would you like to terminate it? промежуточного уровня, который пока что отсутствует. - Debugger Properties... Параметры отладчика... - Adjust Column Widths to Contents Выравнить ширину столбцов по содержимому - Always Adjust Column Widths to Contents Всегда выравнивать ширину столбцов по содержимому - Use Alternating Row Colors Использовать чередующиеся цвета строк - Show a Message Box When Receiving a Signal Показывать сообщение при получении сигнала - Log Time Stamps Ставить метки времени - Operate by Instruction Уровень инструкций - Dereference Pointers Automatically Автоматически разыменовывать указатели - Watch Expression "%1" Наблюдать выражение "%1" - Remove Watch Expression "%1" Удалить наблюдаемое выражение "%1" - 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 Перепроверить наличие помощника отладчика - Synchronize Breakpoints Согласовывать точки останова - 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. Включение приведёт к согласованию точек останова после каждого шага. В результате могут активироваться точки останова после загрузки динамических библиотек, но это замедлит пошаговую отладку. - Break on "throw" Остановиться на "throw" - Break on "catch" Остановиться на "catch" - Automatically Quit Debugger Автоматически закрывать отладчик - 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 Зарегистрировать системным отладчиком - Reload Full Stack Перезагрузить весь стек - Create Full Backtrace Вывести полный стек вызовов - Execute Line Выполнить строку - Change debugger language automatically Автоматически менять язык отладчика - Changes the debugger language according to the currently opened file. Язык отладчика будет меняться в зависимости от открытого в данный момент файла. - 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. Включает всплывающие подсказки для значений переменных во время отладки. Это может её замедлить, при этом не предоставляя достоверной информации, так как не учитывается область видимости. Данный параметр отключён по умолчанию. - Checking this will enable tooltips in the locals view during debugging. Включает всплывающие подсказки в обзоре локальных переменных во время отладки. - Checking this will enable tooltips in the breakpoints view during debugging. Включает подсказки в обзоре точек останова во время отладки. - Checking this will show a column with address information in the breakpoint view during debugging. Включает отображение столбца с информацией об адресе в обзоре точек останова во время отладки. - Checking this will show a column with address information in the stack view during debugging. Включает столбец с информацией об адресе с обзоре стека во время отладки. @@ -4705,17 +3861,14 @@ Would you like to terminate it? Debugger::Internal::DebuggingHelperOptionPage - Debugging Helper Помощник отладчика - Choose DebuggingHelper Location Выберите размещение помощника - Ctrl+Shift+F11 Ctrl+Shift+F11 @@ -4723,22 +3876,18 @@ Would you like to terminate it? Debugger::Internal::GdbChooserWidget - Binary Программа - Toolchains Инструментарий - Duplicate binary Идентичная программа - The binary '%1' already exists. Программа "%1" уже присутствует. @@ -4746,226 +3895,176 @@ Would you like to terminate it? Debugger::Internal::GdbEngine - 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 вылетел через некоторое время после успешного запуска. - 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 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. Например, процесс может уже не работать. - - Thread group %1 created. - Группа потоков %1 создана. + Thread group %1 created + Группа потоков %1 создана - Reading %1... Чтение %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 секунд(ы). Это может означать, что он попал в бесконечный цикл, или исполнение операции занимает больше времени, чем предполагается. Вы можете продолжить ожидание или прервать отладку. - Process failed to start. Не удалось запустить процесс. - - Jumped. Stopped. - Переход сделан. Остановлено. - - - Processing queued commands. Обработка очереди команд. - Library %1 loaded Библиотека %1 загружена - Library %1 unloaded Библиотека %1 выгружена - Thread %1 created Поток %1 создан - Thread group %1 exited Группа потоков %1 завершена - Thread %1 in group %2 exited Завершился поток %1 из группы %2 - Thread %1 selected Выбран поток %1 - Application exited with exit code %1 Приложение завершилось с кодом %1 - Application exited after receiving signal %1 Приложение завершилось после получения сигнала %1 - Application exited normally Приложение нормально завершилось - Loading %1... Загружается %1... - <p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table> <p>Приложение остановлено, так как оно получило сигнал от операционной системы.<p><table><tr><td>Сигнал: </td><td>%1</td></tr><tr><td>Назначение: </td><td>%2</td></tr></table> - Signal received Получен сигнал - Stopped: %1 by signal %2 Остановлено по причине %1 (сигнал %2) - - Stopped. Остановлено. - Stopped: "%1" Остановлено: "%1" - Continuing after temporary stop... Продолжение после временного останова... - The debugging helper library was not found at %1. Библиотека помощника отладчика не обнаружена в %1. - Unable to start gdb '%1': %2 Не удалось запустить gdb '%1': %2 - Adapter start failed Не удалось запустить адаптер - - Snapshot Creation Error Ошибка создания снимка - Cannot create snapshot file. Не удалось создать файл снимка. - Cannot create snapshot: Не удалось создать снимок: - Snapshot Reloading Перезагрузка снимка - In order to load snapshots the debugged process needs to be stopped. Continuation will not be possible afterwards. Do you want to stop the debugged process and load the selected snapshot? Для загрузки снимка требуется остановить отлаживаемую программу. Продолжение её работы будет невозможно. Желаете остановить отлаживаемую программу и загрузить выбранный снимок? - Finished retrieving data Закончено получение данных - There is no gdb binary available for '%1' Отсутствует программа gdb для "%1" - 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... Получение данных о стеке... - Dumper version %1, %n custom dumpers found. Дампер версии %1, обнаружен %n пользовательский дампер. @@ -4974,160 +4073,132 @@ Do you want to stop the debugged process and load the selected snapshot? - An unknown error in the Gdb process occurred. Неизвестная ошибка возникла у процесса Gdb. - Stop requested... Потребована остановка... - - - Executable failed Программа завершилась с ошибкой - Running... Выполнение... - Gdb not responding Gdb не отвечает - Give gdb more time Дать gdb ещё время - Stop debugging Прервать отладку - - Executable failed: %1 Программа завершилась с ошибкой: %1 - <unknown> - <неизвестно> + <неизвестно> + + + Jumped. Stopped + Переход сделан. Остановлено + + + Target line hit. Stopped + Строка достигнута. Остановлено - Stopped at breakpoint %1 in thread %2. - Остановлено на точке останова %1 потока %2. + Поток %2 остановлен на точке останова %1. - <Unknown> name <Неизвестный> - <Unknown> meaning <Неизвестно> - - - Execution Error Ошибка выполнения - - - Cannot continue debugged process: Невозможно продолжить отлаживаемый процесс: - Failed to shut down application Не удалось закрыть приложение - Launching Запуск - Running requested... Потребован запуск... - 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... Потребован немедленный выход из функции... - ATTEMPT BREAKPOINT SYNC ПОПЫТКА СОГЛАСОВАНИЯ ТОЧЕК ОСТАНОВА - <unknown> address End address of loaded module <неизвестно> - Jumping out of bogus frame... Выход из подложного кадра... - Retrieving data for watch view (%n requests pending)... Получение наблюдаемых данных (%n запрос ожидается)... @@ -5136,22 +4207,18 @@ Do you want to stop the debugged process and load the selected snapshot? - Debugging helpers not found. Помощники отладчика не найдены. - Custom dumper setup: %1 Настройка пользовательского дампера: %1 - <0 items> <0 элементов> - <%n items> In string list @@ -5161,82 +4228,63 @@ Do you want to stop the debugged process and load the selected snapshot? - <shadowed> <затенено> - <n/a> <н/д> - <anonymous union> <безымянное объединение> - <no information> About variable's value <нет информации> - - - - Disassembler failed: %1 Не удалось дизассемблировать: %1 - Gdb I/O Error Ошибка вводы/вывода gdb - Unexpected Gdb Exit Неожиданный выход gdb - The gdb process exited unexpectedly (%1). Процесс gdb неожиданно завершился (%1). - crashed аварийный выход - code %1 код %1 - - Setting breakpoints... Установка точек останова... - Starting inferior... Запуск подчинённого... - Failed to start application: Не удалось запустить приложение: - Failed to start application Не удалось запустить приложение - Adapter crashed Адаптер аварийно завершился @@ -5244,12 +4292,10 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::GdbOptionsPage - Gdb Gdb - Choose Location of Startup Script File Выбор размещения скрипта начальных действий @@ -5257,17 +4303,14 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::MemoryViewAgent - Memory $ Память $ - No memory viewer available Не доступна программа просмотра памяти - The memory contents cannot be shown as no viewer plugin for binary data has been loaded. Невозможно отобразить содержимое памяти, так как надстройка просмотра двоичных данных не загружена. @@ -5275,32 +4318,26 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ModulesModel - yes да - no нет - Module name Название модуля - Symbols read Прочитано символов - Start address Начальный адрес - End address Конечный адрес @@ -5308,82 +4345,66 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ModulesWindow - Modules Модули - Update Module List Обновить список модулей - Show Source Files for Module "%1" Показать исходники для модуля "%1" - Load Symbols for All Modules Загрузить символы для всех модулей - Load Symbols for Module Загрузить символы для модуля - Edit File Изменить файл - Show Symbols Показать символы - Load Symbols for Module "%1" Загрузить символы для модуля "%1" - Edit File "%1" Изменить файл "%1" - Show Symbols in File "%1" Показать символы в файле "%1" - Adjust Column Widths to Contents Выравнить ширину столбцов по содержимому - Always Adjust Column Widths to Contents Всегда выравнивать ширину столбцов по содержимому - Address Адрес - Code Код - Symbol Символ - Symbols in "%1" Символы в "%1" @@ -5391,17 +4412,14 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::OutputCollector - Cannot create temporary file: %1 Не удалось создать временный файл: %1 - Cannot create FiFo %1: %2 Не удалось создать FiFo %1: %2 - Cannot open FiFo %1: %2 Не удалось открыть FiFo %1: %2 @@ -5409,67 +4427,54 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::PdbEngine - Running requested... Потребовано выполнение... - Unable to start pdb '%1': %2 Не удалось запустить pdb "%1": %2 - Adapter start failed Не удалось запустить адаптер - '%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 - 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 вылетел через некоторое время после успешного запуска. - 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 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. @@ -5477,12 +4482,10 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::PlainGdbAdapter - Cannot set up communication with child process: %1 Не удалось установить связь с дочерним процессом: %1 - Starting executable failed: Не удалось запустить программу: @@ -5492,12 +4495,10 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::RegisterHandler - Name Имя - Value (base %1) Значение (основание %1) @@ -5505,52 +4506,42 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::RegisterWindow - Registers Регистры - Reload Register Listing Перезагрузить список регистров - Open Memory Editor Открыть редактор памяти - Open Memory Editor at %1 Открыть редактор памяти с %1 - Hexadecimal Шестнадцатиричный - Decimal Десятичный - Octal Восьмиричный - Binary Двоичный - Adjust Column Widths to Contents Выравнить ширину столбцов по содержимому - Always Adjust Column Widths to Contents Всегда выравнивать ширину столбцов по содержимому @@ -5558,42 +4549,34 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::RemoteGdbAdapter - The upload process failed to start. Shell missing? Не удалось запустить процесс выгрузки. Отсутствует оболочка? - 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() возвращает по умолчанию. - Error Ошибка - Starting remote executable failed: Не удалось удалённо запустить программу: @@ -5603,32 +4586,26 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ScriptEngine - 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. Остановлено. @@ -5636,44 +4613,34 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::SnapshotHandler - - Function: Функция: - - File: Файл: - Date: Дата: - ... ... - <More> <Более> - Function Функция - Date Дата - Location Размещение @@ -5681,17 +4648,14 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::SnapshotWindow - Snapshots Снимки - Adjust Column Widths to Contents Выравнить ширину столбцов по содержимому - Always Adjust Column Widths to Contents Всегда выравнивать ширину столбцов по содержимому @@ -5699,12 +4663,10 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::SourceFilesModel - Internal name Внутреннее имя - Full name Полное имя @@ -5712,22 +4674,18 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::SourceFilesWindow - Source Files Файлы исходных текстов - Reload Data Перезагрузить данные - Open File Открыть файл - Open File "%1"' Открыть файл "%1"' @@ -5735,73 +4693,54 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::StackHandler - - Address: Адрес: - - Function: Функция: - - File: Файл: - - Line: Строка: - - From: Из: - - To: В: - ... ... - <More> <Более> - Level Уровень - Function Функция - File Файл - Line Строка - Address Адрес @@ -5809,42 +4748,34 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::StackWindow - Stack Стек - Copy Contents to Clipboard Скопировать содержимое в буфер обмена - Open Memory Editor Открыть редактор памяти - Open Memory Editor at %1 Открыть редактор памяти с %1 - Open Disassembler Открыть дизассемблер - Open Disassembler at %1 Открыть дизассемблер с %1 - Adjust Column Widths to Contents Выравнить ширину столбцов по содержимому - Always Adjust Column Widths to Contents Всегда выравнивать ширину столбцов по содержимому @@ -5852,17 +4783,14 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::StartExternalDialog - Select Executable Выбор программы - Executable: Программа: - Arguments: Параметры: @@ -5870,22 +4798,18 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::StartRemoteDialog - Select Debugger Выбор отладчика - Select Executable Выбор программы - Select Sysroot Выбор системного корня - Select Start Script Выбор скрипта запуска @@ -5893,7 +4817,6 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::TermGdbAdapter - Debugger Error Ошибка отладчика @@ -5901,42 +4824,34 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ThreadsHandler - Function Функция - File Файл - Line Строка - Address Адрес - 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 потока @@ -5944,17 +4859,14 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ThreadsWindow - Thread Поток - Adjust Column Widths to Contents Выравнить ширину столбцов по содержимому - Always Adjust Column Widths to Contents Всегда выравнивать ширину столбцов по содержимому @@ -5962,17 +4874,14 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ToolChainSelectorWidget - Desktop/General Настольный/Стандартный - Symbian - Maemo @@ -5980,22 +4889,18 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::TrkGdbAdapter - Port specification missing. Отсутствует спецификация порта. - Unable to acquire a device on '%1'. It appears to be in use. Не удалось получить доступ к устройству через "%1". Возможно, оно уже используется. - Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. Процесс запущен, PID: 0x%1, ID потока: 0x%2, сегмент кода: 0x%3, сегмент данных: 0x%4. - Connecting to TRK server adapter failed: Не удалось подключиться к адаптеру TRK сервера: @@ -6005,13 +4910,10 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::WatchData - - <not in scope> <вне области> - %1 <shadowed %2> %1 <затеняет %2> @@ -6019,77 +4921,62 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::WatchHandler - Expression Выражение - Type Тип - ... <cut off> ... <обрезано> - Value Значение - Object Address Адрес объекта - Internal ID Внутрениий ID - Generation Поколение - unknown address неизвестный адрес - %1 object at %2 Объект типа %1 по адресу %2 - <Edit> <Изменить> - Root Корень - Name Имя - Locals Локальные переменные - Tooltip Подсказка - Watchers Наблюдаемые @@ -6097,62 +4984,50 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::WatchModel - decimal десятичный - hexadecimal шестнадцатиричный - binary двоичный - octal восьмиричный - Bald pointer Простой указатель - Latin1 string Строка в кодировке Latin1 - UTF8 string Строка в кодировке UTF8 - UTF16 string Строка в кодировке UTF16 - UCS4 string Строка в кодировке UCS4 - Name Имя - Value Значение - Type Тип @@ -6160,67 +5035,54 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::WatchWindow - Locals and Watchers Переменные - Clear Очистить - Change Format for Type Сменить формат типа - Change Format for Type "%1" Сменить формат типа "%1" - Change Format for Object at %1 Сменить формат объекта по адресу %1 - Change Format for Object Сменить формат объекта - Insert New Watch Item Вставить новый наблюдаемый элемент - 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 Всегда выравнивать ширину столбцов по содержимому @@ -6228,12 +5090,10 @@ Do you want to stop the debugged process and load the selected snapshot? DebuggerPane - Clear Contents Очистить содержимое - Save Contents Сохранить содержимое @@ -6241,33 +5101,27 @@ Do you want to stop the debugged process and load the selected snapshot? DebuggingHelperOptionPage - Use debugging helper from custom location Использовать особый путь к помощнику - Location: Размещение: - Debug 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. Включить использование модели кода Qt Creator для определения было ли переменной присвоено значение в точке прерывания отладчиком. - Use code model Использовать модель кода - <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> @@ -6276,7 +5130,6 @@ Do you want to stop the debugged process and load the selected snapshot? - Use Debugging Helper Использовать помощник отладчика @@ -6284,12 +5137,10 @@ Do you want to stop the debugged process and load the selected snapshot? DependenciesModel - Unable to add dependency Не удалось добавить зависимость - This would create a circular dependency. Это создаст циклическую зависимость. @@ -6297,7 +5148,6 @@ Do you want to stop the debugged process and load the selected snapshot? DependenciesPanel - Dependencies Зависимости @@ -6305,7 +5155,6 @@ Do you want to stop the debugged process and load the selected snapshot? DependenciesPanelFactory - Dependencies Зависимости @@ -6313,49 +5162,40 @@ Do you want to stop the debugged process and load the selected snapshot? 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>. - Xml Editor Редактор Xml - Designer Дизайнер - Class Generation Создание класса - Form Editor Редактор форм - The generated header of the form '%1' could 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" в модели кода. @@ -6365,7 +5205,6 @@ Rebuilding the project might help. Designer::FormWindowEditor - untitled безымянный @@ -6373,42 +5212,34 @@ Rebuilding the project might help. Designer::Internal::CppSettingsPageWidget - Form Форма - Embedding of the UI Class Встраивание класса UI - Aggregation as a pointer member Агрегация через указатель - Aggregation Агрегация - Code Generation Создание кода - Support for changing languages at runtime Поддержка смены языка во время работы программы - Use Qt module name in #include-directive Использовать в директиве #include название модуля Qt - Multiple inheritance Множественное наследование @@ -6416,17 +5247,14 @@ Rebuilding the project might help. Designer::Internal::FormClassWizardDialog - Qt Designer Form Class Класс формы Qt Designer - Form Template Шаблон формы - Class Details Характеристики класса @@ -6434,22 +5262,18 @@ Rebuilding the project might help. Designer::Internal::FormClassWizardPage - %1 - Error %1 - Ошибка - Class Класс - Configure... Настроить... - Choose a Class Name Выбор названия класса @@ -6457,12 +5281,10 @@ Rebuilding the project might help. Designer::Internal::FormEditorFactory - This file can only be edited in <b>Design</b> mode. Этот файл можно редактировать только в режиме <b>дизайна</b>. - Switch mode Переключить режим @@ -6470,22 +5292,18 @@ Rebuilding the project might help. Designer::Internal::FormEditorPlugin - Qt Designer Form Форма Qt Designer - Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt C++ Project. Создание формы дизайнера Qt и соответствующего класса (исходный и заголовочный файлы C++) для реализации. Их можно будет добавить к существующему проекту Qt C++. - Creates a Qt Designer form that you can add to a Qt C++ project. This is useful if you already have an existing class for the UI business logic. Создание формы дизайнера Qt для добавления к существующему проекту Qt C++. Это полезно в случае, если уже имеется класс бизнес-логики интерфеса пользователя. - Qt Designer Form Class Класс формы Qt Designer @@ -6493,136 +5311,106 @@ Rebuilding the project might help. Designer::Internal::FormEditorW - Widget Box Панель виджетов - - Object Inspector Инспектор объектов - - Property Editor Редактор свойств - - Action Editor Редактор действий - Widget box Панель виджетов - For&m Editor Редактор &форм - F3 - F4 - Meta+H - Ctrl+H - Meta+L - Ctrl+L - Meta+G - Ctrl+G - Meta+J - Ctrl+J - - Signals && Slots Editor Редактор сигналов и слотов - Edit Widgets Изменение виджетов - Edit Signals/Slots Изменение сигналов/слотов - Edit Buddies Изменение партнёров - Edit Tab Order Изменение порядка обхода - Ctrl+Alt+R - About Qt Designer plugins.... О надстройках Qt Designer... - Preview in Предпросмотр в - Designer Дизайнер - The image could not be created: %1 Картинка не может быть создана: %1 @@ -6630,7 +5418,6 @@ Rebuilding the project might help. Designer::Internal::FormFileWizardDialog - Location Размещение @@ -6638,12 +5425,10 @@ Rebuilding the project might help. Designer::Internal::FormTemplateWizardPage - Choose a Form Template Выбор шаблона формы - %1 - Error %1 - Ошибка @@ -6651,17 +5436,14 @@ Rebuilding the project might help. Designer::Internal::FormWindowFile - Error saving %1 Ошибка сохранения %1 - Unable to open %1: %2 Не удалось открыть %1: %2 - Unable to write to %1: %2 Не удалось записать в %1: %2 @@ -6669,12 +5451,10 @@ Rebuilding the project might help. Designer::Internal::FormWizardDialog - Qt Designer Form Форма Qt Designer - Form Template Шаблон формы @@ -6682,29 +5462,24 @@ Rebuilding the project might help. Designer::Internal::QtCreatorIntegration - The class definition of '%1' could not be found in %2. Не удалось найти в %2 определение класса '%1'. - 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. Невозможно добавить определение метода. @@ -6712,22 +5487,18 @@ Rebuilding the project might help. DocSettingsPage - Registered Documentation Зарегистрированная документация - Add... Добавить... - Remove Удалить - Add and remove compressed help files, .qch. Добавление и удаление сжатых файлов справки, .qch. @@ -6735,7 +5506,6 @@ Rebuilding the project might help. EditorSettingsPanel - Editor Settings Настройки редактора @@ -6743,7 +5513,6 @@ Rebuilding the project might help. EditorSettingsPanelFactory - Editor Settings Настройки редактора @@ -6751,7 +5520,6 @@ Rebuilding the project might help. ExpressionEditor - Expression Выражение @@ -6759,28 +5527,22 @@ Rebuilding the project might help. Extended - Effect Эффект - - Blur Radius: Радиус размазывания: - Pixel Size: Размер пикселя: - x Offset: Смещение по x: - y Offset: Смещение по y: @@ -6788,12 +5550,10 @@ Rebuilding the project might help. ExtendedFunctionButton - Reset Сбросить - Set Expression Присвоить выражение @@ -6801,57 +5561,46 @@ Rebuilding the project might help. ExtensionSystem::Internal::PluginDetailsView - Name: Название: - Version: Версия: - Compatibility Version: Совместимая версия: - Vendor: Поставщик: - Url: Url: - Location: Размещение: - Description: Описание: - Copyright: Авторское право: - License: Лицензия: - Dependencies: Зависимости: - Group: Группа: @@ -6859,12 +5608,10 @@ Rebuilding the project might help. ExtensionSystem::Internal::PluginErrorView - State: Состояние: - Error Message: Сообщение об ошибке: @@ -6873,17 +5620,14 @@ Rebuilding the project might help. ExtensionSystem::Internal::PluginSpecPrivate - File does not exist: %1 Файл не существует: %1 - Could not open file for read: %1 Не удалось открыть файл для чтения: %1 - Error parsing file %1: %2, at line %3, column %4 Ошибка разбора файла %1: %2, в строке %3 позиции %4 @@ -6891,30 +5635,25 @@ Rebuilding the project might help. ExtensionSystem::Internal::PluginView - Name Имя - Version Версия - Vendor Поставщик - Load - Загрузка + Загрузка ExtensionSystem::PluginDetailsView - None Нет @@ -6922,82 +5661,66 @@ Rebuilding the project might help. 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 Надстройка закончила свой жизненный цикл и была удалена @@ -7005,27 +5728,22 @@ Rebuilding the project might help. ExtensionSystem::PluginManager - Circular dependency detected: Обнаружена циклическая зависимость: - %1(%2) depends on %1(%2) зависит от - %1(%2) %1(%2) - - Cannot load plugin because dependency failed to load: %1(%2) Reason: %3 Невозможно загрузить надстройку, так как её зависимость не загрузилась: %1(%2) @@ -7035,14 +5753,10 @@ Reason: %3 ExtensionSystem::PluginView - - - Load on Startup Загружать при запуске - Utilities Утилиты @@ -7050,12 +5764,10 @@ Reason: %3 FakeVim::Internal - Use Vim-style Editing Использовать редактирование в стиле Vim - Read .vimrc Загрузить .vimrc @@ -7063,28 +5775,22 @@ Reason: %3 FakeVim::Internal::FakeVimExCommandsPage - - Ex Command Mapping Расширенное связывание команд - FakeVim FakeVim - Ex Trigger Expression Выражение запуска - Regular expression: Регулярное выражение: - Ex Command Расширенная команда @@ -7092,33 +5798,26 @@ Reason: %3 FakeVim::Internal::FakeVimHandler - Not implemented in FakeVim Не реализовано в FakeVim - %1%2% %1%2% - %1All %1Все - - "%1" %2 %3L, %4C written "%1" %2 %3L, %4C записано - "%1" %2L, %3C "%1" %2L, %3C - %n lines filtered %n строка соответствует шаблону @@ -7127,52 +5826,42 @@ Reason: %3 - Can't open file %1 Невозможно открыть файл %1 - search hit BOTTOM, continuing at TOP поиск дошёл до НИЗА и продолжился СВЕРХУ - search hit TOP, continuing at BOTTOM поиск дошёл до ВЕРХА и продолжился СНИЗУ - Pattern not found: Шаблон не найден: - 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 раз @@ -7181,12 +5870,10 @@ Reason: %3 - Already at oldest change Уже на первом изменении - Already at newest change Уже на последнем изменении @@ -7194,7 +5881,6 @@ Reason: %3 FakeVim::Internal::FakeVimHandler::Private - Not an editor command: %1 Не команда редактора: %1 @@ -7202,12 +5888,10 @@ Reason: %3 FakeVim::Internal::FakeVimOptionPage - General Основное - FakeVim FakeVim @@ -7215,33 +5899,26 @@ Reason: %3 FakeVim::Internal::FakeVimPluginPrivate - Switch to next file Перейти к следующему файлу - Switch to previous file Перейти к предыдущему файлу - - Quit FakeVim Покинуть FakeVim - File not saved Файл не сохранён - Saving succeeded Сохранение выполнено успешно - %n files not saved не сохранён %n файл @@ -7250,7 +5927,6 @@ Reason: %3 - FakeVim Information Информация о FakeVim @@ -7258,103 +5934,83 @@ Reason: %3 FakeVimOptionPage - Shift width: Ширина смещения: - vim's "tabstop" option параметр vim "tabstop" - Tabulator size: Размер табуляторов: - Backspace: Забой: - Use FakeVim Использовать FakeVim - 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 Отображать положение текстовых меток @@ -7362,7 +6018,6 @@ Reason: %3 FileWidget - Open File Открытие файла @@ -7370,12 +6025,10 @@ Reason: %3 FilterNameDialogClass - Add Filter Name Добавление имени шаблона - Filter Name: Имя шаблона: @@ -7383,32 +6036,26 @@ Reason: %3 FilterSettingsPage - Filters Фильтры - Attributes Атрибуты - 1 1 - Add Добавить - Remove Удалить - <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. @@ -7422,22 +6069,18 @@ Add, modify, and remove document filters, which determine the documentation set Find::FindPlugin - &Find/Replace &Поиск/Замена - Advanced Find Расширенный поиск - Open Advanced Find... Открыть расширенный поиск... - Ctrl+Shift+F @@ -7445,42 +6088,34 @@ Add, modify, and remove document filters, which determine the documentation set Find::Internal::FindDialog - Search for... Поиск... - Sc&ope: &Область: - &Search &Поиск - Search &for: &Искать: - Close Закрыть - &Case sensitive Учитывать &регистр - &Whole words only Только &слова целиком - Search && Replace Найти и заменить @@ -7488,62 +6123,50 @@ Add, modify, and remove document filters, which determine the documentation set Find::Internal::FindToolBar - Find/Replace Поиск/Замена - Enter Find String Введите строку для поиска - Ctrl+E Ctrl+E - Find Next Продолжить поиск - Find Previous Найти предыдущее - Replace && Find Next Заменить и продолжить поиск - Ctrl+= Ctrl+= - Replace && Find Previous Заменить и найти предыдущее - Replace All Заменить все - Case Sensitive Учитывать регистр - Whole Words Only Только слова целиком - Use Regular Expressions Использовать регулярные выражения @@ -7551,27 +6174,22 @@ Add, modify, and remove document filters, which determine the documentation set Find::Internal::FindWidget - Find Поиск - Find: Искать: - Replace with: Заменить на: - All Все - ... ... @@ -7579,32 +6197,26 @@ Add, modify, and remove document filters, which determine the documentation set Find::SearchResultWindow - Search Results Результаты поиска - No matches found! Совпадений не найдено! - Expand All Развернуть всё - Replace with: Заменить на: - Replace all occurrences Заменить все совпадения - Replace Заменить @@ -7612,23 +6224,18 @@ Add, modify, and remove document filters, which determine the documentation set FontGroupBox - - Font Шрифт - Size Размер - Font Style Начертание - Style Стиль @@ -7636,7 +6243,6 @@ Add, modify, and remove document filters, which determine the documentation set GdbChooserWidget - Unable to run '%1': %2 Не удалось запустить "%1": %2 @@ -7644,47 +6250,38 @@ Add, modify, and remove document filters, which determine the documentation set GdbOptionsPage - Environment: Переменные среды окружения: - This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. Указывает на файл, который содержит команды gdb, которые выполняются сразу после запуска. Поле может быть пустым. - Gdb startup script: Сценарий запуска gdb: - 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 Никогда не ставить точки останова автоматически - When this option is checked, the debugger plugin attempts to extract full path information for all source files from gdb. This is a slow process but enables setting breakpoints in files with the same file @@ -7695,17 +6292,14 @@ name in different directories. останова в файлах, имена которых дублируются в других каталогах. - Use full path information to set breakpoints Использовать полные пути к файлам для установки точек останова - Gdb timeout: Время ожидания ответа 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 @@ -7719,34 +6313,28 @@ on slow machines. In this case, the value should be increased. медленных машинах. В этом случае это число должно быть увеличено. - Gdb - 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. Когда включён данный параметр, в определенных ситуациях 'Зайти в' объединяет несколько шагов в один, позволяя 'снизить шум' при отладке. Например, будет пропущен атомарный код подсчета ссылок и единственная операция "Зайти в" инициации сигнала завершится прямо в слоте, который подключён к данному сигналу. - Skip known frames when stepping Пропускать известные этапы при пошаговой отладке - Show a message box when receiving a signal Показывать сообщение при получении сигнала - Behavior of Breakpoint Setting in Plugins Поведение точек останова, устанавливаемых в надстройках @@ -7754,107 +6342,86 @@ on slow machines. In this case, the value should be increased. GeneralSettingsPage - Form Форма - Font Шрифт - Family: Название: - Style: Начертание: - Size: Размер: - Startup Запуск - On help start: При запуске справки: - Use &Current Page &Текущая страница - Use &Blank Page &Пустая страница - Restore to Default По умолчанию - Help Bookmarks Закладки справки - Import... Импорт... - Export... Экспорт... - On context help: При контекстной справке: - 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 Открыть вкладки с предыдущего запуска @@ -7862,17 +6429,14 @@ on slow machines. In this case, the value should be increased. GenericMakeStep - Override %1: Заменить %1: - Make arguments: Параметры сборки: - Targets: Цели: @@ -7880,7 +6444,6 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::GenericTarget - Desktop Generic desktop target display name Настольный компьютер @@ -7889,17 +6452,14 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericBuildConfigurationFactory - Build Сборка - New configuration Новая конфигурация - New Configuration Name: Название новой конфигурации: @@ -7907,22 +6467,18 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericBuildSettingsWidget - Configuration Name: Название конфигурации: - Build directory: Каталог сборки: - Tool Chain: Инструментарий: - Generic Manager Базовое управление @@ -7930,7 +6486,6 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericMakeStep - Make Сборка @@ -7938,18 +6493,15 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericMakeStepConfigWidget - Make GenericMakestep display name. Сборка - Override %1: Заменить %1: - <b>Make:</b> %1 %2 <b>Make:</b> %1 %2 @@ -7957,12 +6509,10 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericProjectWizard - Import Existing Project Импорт существующего проекта - Imports existing projects that do not use qmake or CMake. This allows you to use Qt Creator as a code editor. Импорт существующего проекта, не использующего qmake или CMake. Это позволяет использовать Qt Creator в качестве редактора кода. @@ -7970,27 +6520,22 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericProjectWizardDialog - Import Existing Project Импорт существующего проекта - Project Name and Location Название и размещение проекта - Project name: Название проекта: - Location: Размещение: - Location Размещение @@ -7998,7 +6543,6 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::Manager - Failed opening project '%1': Project already open Не удалось открыть проект "%1": проект уже открыт @@ -8006,12 +6550,10 @@ on slow machines. In this case, the value should be increased. GenericSshConnection - Could not connect to host. Ну удалось подключиться к узлу. - Error in cryptography backend: %1 Ошибка в криптографическом модуле: %1 @@ -8019,22 +6561,18 @@ on slow machines. In this case, the value should be increased. Geometry - Geometry Геометрия - Position Положение - Size Размер - Lock aspect ratio Зафиксировать соотношение сторон @@ -8042,17 +6580,14 @@ on slow machines. In this case, the value should be increased. Git::CloneWizardPage - Location Размещение - Specify repository URL, checkout directory and path. Выбор URL хранилища, каталога извлечения и пути. - Clone URL: URL для клонирования: @@ -8060,77 +6595,62 @@ on slow machines. In this case, the value should be increased. Git::Internal::BranchDialog - Checkout Извлечь - Diff Сравнить - Refresh Обновить - Delete... Удалить... - Delete Branch Удалить ветку - Would you like to delete the branch '%1'? Желаете удалить ветку '%1'? - Failed to delete branch Не удалось удалить ветку - Failed to create branch Не удалось создать ветку - Failed to stash Не удалось спрятать - Checkout failed Не удалось извлечь - Would you like to create a local branch '%1' tracking the remote branch '%2'? Желаете создать локальную вертку '%1', отслеживающую удалённую ветку '%2'? - Create branch Создать ветку - Failed to create a tracking branch Не удалось создать отслеживающую ветку - Branches Ветки - Remote Branches Внешние ветки @@ -8138,22 +6658,18 @@ on slow machines. In this case, the value should be increased. Git::Internal::ChangeSelectionDialog - Select a Git Commit Выбор фиксации Git - Select Git Repository Выбор хранилища Git - Error Ошибка - Selected directory is not a Git repository Выбранный каталог не является хранилищем Git @@ -8161,12 +6677,10 @@ on slow machines. In this case, the value should be increased. Git::Internal::CloneWizard - Clones a Git repository and tries to load the contained project. Клонирование хранилища Git с последующей попыткой загрузки содержащегося там проекта. - Git Repository Clone Клонировать хранилище Git @@ -8174,17 +6688,14 @@ on slow machines. In this case, the value should be increased. Git::Internal::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. Следует иметь в виду, что надстройка Git до сих пор не умеет работать с сервером. Поэтому, ручная настройка ssh-авторизации и другое не будет работать. - Unable to parse the file output. Не удалось разобрать файловый вывод. - Executing: %1 %2 Executing: <executable> <arguments> @@ -8192,58 +6703,47 @@ on slow machines. In this case, the value should be increased. - Waiting for data... Ожидание данных... - Git Diff Git - Сравнение - Git Diff %1 Git - сравнение %1 - Git Diff Branch %1 Git - сравнение ветки %1 - Git Log Git - история - Git Log %1 Git - история %1 - Cannot describe '%1'. Не удалось описать "%1". - Git Show %1 Git - показ %1 - Git Blame %1 Git - аннотация %1 - Unable to checkout %1 of %2: %3 Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message Не удалось переключиться на %1 в %2: %3 - Unable to add %n file(s) to %1: %2 Не удалось добавить %n файл в %1: %2 @@ -8252,7 +6752,6 @@ on slow machines. In this case, the value should be increased. - Unable to remove %n file(s) from %1: %2 Не удалось удалить %n файл из %1: %2 @@ -8261,12 +6760,10 @@ on slow machines. In this case, the value should be increased. - Unable to reset %1: %2 Не удалось сбросить %1: %2 - Unable to reset %n file(s) in %1: %2 Не удалось сбросить %n файл в %1: %2 @@ -8275,147 +6772,119 @@ on slow machines. In this case, the value should be increased. - Unable to checkout %1 of %2 in %3: %4 Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message Не удалось обновить до %1 файл %2 в %3: %4 - Unable to find parent revisions of %1 in %2: %3 Failed to find parent revisions of a SHA1 for "annotate previous" Не удалось найти родительскую ревизию для %1 в %2: %3 - Invalid revision Некорректная ревизия - Unable to retrieve branch of %1: %2 Не удалось получить ветку для %1: %2 - Unable to retrieve top revision of %1: %2 Не удалось получить последную ревизию для %1: %2 - Unable to describe revision %1 in %2: %3 Не удалось получить описание ревизии %1 в %2: %3 - Description: Описание: - Stash Description Описание спрятанного - Unable to run a 'git branch' command in %1: %2 Не удалось выполнить команду "git branch" в %1: %2 - Unable to run 'git show' in %1: %2 Не удалось выполнить команду "git show" в %1: %2 - Unable to run 'git clean' in %1: %2 Не удалось выполнить команду "git clean" в %1: %2 - There were warnings while applying %1 to %2: %3 Возникли предупреждения при применении %1 к %2: %3 - Unable apply patch %1 to %2: %3 Не удалось наложить патч %1 на %2: %3 - You did not checkout a branch. Ветка не была выбрана. - Git SVN Log Git - история SVN - Unable to restore stash %1: %2 Не удалось восстановить спрятанное %1: %2 - Unable to restore stash %1 to branch %2: %3 Не удалось восстановить спрятанное %1 в ветку %2: %3 - Unable to remove stashes of %1: %2 Не удалось удалить спрятанное в %1: %2 - Unable to remove stash %1 of %2: %3 Не удалось удалить спрятанное %1 в %2: %3 - Unable retrieve stash list of %1: %2 Не удалось получить список спрятанного в %1: %2 - Unable to determine git version: %1 Не удалось определить версию Git: %1 - Unable stash in %1: %2 Не удалось спрятать в %1: %2 - Unable to resolve stash message '%1' in %2 Look-up of a stash via its descriptive message failed. Не удалось найти спрятанное по сообщению "%1" в %2 - Changes Изменения - You have modified files. Would you like to stash your changes? Имеются изменёные файлы. Желаете спрятать ваши изменения? - Unable to obtain the status: %1 Не удалось получить состояние: %1 - The repository %1 is not initialized yet. Хранилище %1 ещё не инициализировано. - Committed %n file(s). @@ -8428,7 +6897,6 @@ on slow machines. In this case, the value should be increased. - Unable to commit %n file(s): %1 @@ -8441,27 +6909,22 @@ on slow machines. In this case, the value should be increased. - Revert Откат - 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", перебазирование прервано. - There are no modified files. Нет изменённых файлов. @@ -8469,7 +6932,6 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitCommand - Error: Git timed out after %1s. Ошибка: Git превысил время ожидания (%1 сек). @@ -8477,7 +6939,6 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitEditor - Blame %1 Аннотация %1 @@ -8485,339 +6946,272 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitPlugin - &Git &Git - Diff Current File Сравнить текущий файл - Diff "%1" Сравнить "%1" - Alt+G,Alt+D - Log File История файла - Log of "%1" История "%1" - Alt+G,Alt+L - Blame Аннотация (Blame) - Blame for "%1" Аннотация для "%1" (Blame) - Alt+G,Alt+B - Undo Changes Отменить изменения - Undo Changes for "%1" Отменить изменения "%1" - Alt+G,Alt+U - Stage File for Commit Подготовить файл к фиксации (stage) - Stage "%1" for Commit Подготовить "%1" к фиксации (stage) - Alt+G,Alt+A - Unstage File from Commit Не фиксировать файл (unstage) - Unstage "%1" from Commit Не фиксировать "%1" (unstage) - Diff Current Project Сравнить текущий проект - Diff Project "%1" Сравнить проект "%1" - Stash Snapshot... Спрятать изменения (stash)... - Stashes... Спрятанное (stashes)... - Log Project История проекта - Log Project "%1" История проекта "%1" - Alt+G,Alt+K - Stash Спрятать (stash) - Saves the current state of your work. Сохраняет текущее состояние вашей работы. - Clean Project... Очистить проект... - Clean Project "%1"... Очистить проект "%1"... - Diff Repository Сравнить всё - Repository Status Состояние хранилища - Log Repository История хранилища - Apply Patch Наложить патч - Apply "%1" Наложить "%1" - Apply Patch... Наложить патч... - Undo Repository Changes Отменить все изменения - Create Repository... Создать хранилище... - Clean Repository... Очистить хранилище... - Saves the current state of your work and resets the repository. Сохраняет текущее состояние вашей работы и сбрасывает хранилище. - Pull Принять (pull) - Stash Pop Восстановить спрятанное (stash pop) - Restores changes saved to the stash list using "Stash". Восстанавить изменения сохранённые в список спрятанного командой "Спрятать". - Commit... Фиксировать... - Alt+G,Alt+C - Push Отправить (push) - Branches... Ветки... - Show Commit... Показать фиксацию... - Subversion Subversion - Log История - Fetch Загрузить (fetch) - Commit Фиксировать - Diff Selected Files Сравнить выбранные файлы - &Undo &Отменить - &Redo &Вернуть - Would you like to revert all pending changes to the repository %1? Желаете откатить все изменения рабочей копии %1? - 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 commit message check failed. Do you want to commit the change? Сообщение о фиксации содержит ошибки. Желаете продолжить фиксацию? - Unable to retrieve file list Не удалось получить список файлов - Repository clean Очистка хранилища - The repository is clean. Хранилище чисто. - Patches (*.patch *.diff) Патчи (*.patch *.diff) - Choose patch Выбор патча - Patch %1 successfully applied to %2 Патч %1 успешно наложен на %2 @@ -8825,7 +7219,6 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitSettings - The binary '%1' could not be located in the path '%2' Программа '%1' отсутствует в '%2' @@ -8833,7 +7226,6 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitSubmitEditor - Git Commit Фиксация Git @@ -8841,42 +7233,34 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitSubmitPanel - General Information Общая информация - Repository: Хранилище: - repository хранилище - Branch: Ветка: - branch ветка - Commit Information Информация о фиксации - Author: Автор: - Email: Email: @@ -8884,12 +7268,10 @@ on slow machines. In this case, the value should be increased. Git::Internal::LocalBranchModel - <New branch> <Новая ветка> - Type to create a new branch Введите для создания новой ветки @@ -8897,7 +7279,6 @@ on slow machines. In this case, the value should be increased. Git::Internal::RemoteBranchModel - (no branch) (вне ветки) @@ -8905,88 +7286,71 @@ on slow machines. In this case, the value should be increased. Git::Internal::SettingsPage - Git Git - Git Settings Настройки Git - PATH: Значение PATH: - <b>Note:</b> <b>Внимание:</b> - Git needs to find Perl in the environment as well. Git необходимо, чтобы можно было найти Perl через переменные среды окружения. - Log commit display count: Количество отображаемых записей истории: - Note that huge amount of commits might take some time. Следует иметь в виду, что в случае большого количества фиксаций, процесс может занять длительное время. - Omit date from annotation output Убрать дату из аннотации - Miscellaneous Разное - Timeout: Время ожидания: - s сек - Prompt on submit Спрашивать при фиксации - Ignore whitespace changes in annotation Не учитывать изменения пробелов в описании - Use "patience diff" algorithm Использовать алгоритм "устойчивого" сравнения - Pull with rebase Принимать (pull) с перебазированием - Environment Variables Переменные среды окружения - From System Системное @@ -8994,79 +7358,63 @@ Perl через переменные среды окружения. Git::Internal::StashDialog - Stashes Спрятанное - Name Название - Branch Ветка - Message Сообщение - Delete all... Удалить всё... - Delete... Удалить... - Show Показать - Restore... Восстановить... - Restore to branch... Restore a git stash to new branch to be created Восстановить в ветке... - Refresh Обновить - <No repository> <Нет хранилища> - Repository: %1 Хранилище: %1 - - Delete stashes Удалить спрятанное - Do you want to delete all stashes? Желаете удалить всё спрятанное? - Do you want to delete %n stash(es)? Желаете удалить %n спрятанное состояние? @@ -9075,49 +7423,40 @@ Perl через переменные среды окружения. - 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 Восстановить спрятанное в ветку - Branch: Ветка: - Stash Restore Восстановление спрятанного - Would you like to restore %1? Желаете восстановить %1? - Error restoring %1 Ошибка восстановления %1 @@ -9125,7 +7464,6 @@ You can choose between stashing the changes or discarding them. GitClient - Unable to determine the repository for %1. Не удалось определить хранилище для %1. @@ -9133,7 +7471,6 @@ You can choose between stashing the changes or discarding them. GitCommand - '%1' failed (exit code %2). @@ -9142,7 +7479,6 @@ You can choose between stashing the changes or discarding them. - '%1' completed (exit code %2). @@ -9154,17 +7490,14 @@ You can choose between stashing the changes or discarding them. Gitorious::Internal::Gitorious - Error parsing reply from '%1': %2 Ошибка разбора ответа от '%1': %2 - Request failed for '%1': %2 Запрос для '%1' не удался: %2 - Open source projects that use Git. Проекты с открытыми исходниками, использующие Git. @@ -9172,12 +7505,10 @@ You can choose between stashing the changes or discarding them. Gitorious::Internal::GitoriousCloneWizard - Clones a Gitorious repository and tries to load the contained project. Клонирование хранилища Gitorious с последующей попыткой загрузки содержащегося там проекта. - Gitorious Repository Clone Клонировать хранилище Gitorious @@ -9185,27 +7516,22 @@ You can choose between stashing the changes or discarding them. Gitorious::Internal::GitoriousHostWidget - ... ... - <New Host> <Новый> - Host Сервер - Projects Проекты - Description Описание @@ -9213,12 +7539,10 @@ You can choose between stashing the changes or discarding them. Gitorious::Internal::GitoriousHostWizardPage - Host Сервер - Select a host. Выбор сервера. @@ -9226,27 +7550,22 @@ You can choose between stashing the changes or discarding them. Gitorious::Internal::GitoriousProjectWidget - WizardPage WizardPage - ... ... - Keep updating Обновлять - Project Проект - Description Описание @@ -9254,12 +7573,10 @@ You can choose between stashing the changes or discarding them. Gitorious::Internal::GitoriousProjectWizardPage - Project Проект - Choose a project from '%1' Выберите проект из '%1' @@ -9267,57 +7584,46 @@ You can choose between stashing the changes or discarding them. Gitorious::Internal::GitoriousRepositoryWizardPage - WizardPage WizardPage - Name Название - Owner Владелец - Description Описание - Repository Хранилище - Choose a repository of the project '%1'. Выберите хранилище проекта "%1". - Mainline Repositories Основные хранилища - Clones Клоны - Baseline Repositories Базовые хранилища - Shared Project Repositories Хранилища общих проектов - Personal Repositories Частные хранилища @@ -9325,7 +7631,6 @@ You can choose between stashing the changes or discarding them. GradientDialog - Edit Gradient Изменить градиент @@ -9333,304 +7638,242 @@ You can choose between stashing the changes or discarding them. GradientEditor - 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 Зеркальная - Form Форма - Gradient Editor Редактор градиента - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. Эта область отображает предварительный вариант настраиваемого градиента. Также она позволяет менять с помощью перетаскивания характерные для градиента параметры, такие как: начальная и конечная точки, радиус и пр. - 1 1 - 2 2 - 3 3 - 4 4 - 5 5 - Gradient Stops Editor Редактор опорных точек градиента - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. Эта область позволяет редактировать опорные точки градиента. Двойной щелчок на существующей точке создаст её копию. Двойной клик вне существующей точки создаст новую. Точки можно перемещать путем удерживания левой кнопки. По правой кнопке можно получить контекстное меню дополнительных действий. - Zoom Масштаб - Reset Zoom 100% - Position Положение - Hue Оттенок - H H - Saturation Насыщенность - S S - Sat Насыщение - Value Значение - V V - Val Значение - Alpha Альфа - A A - Type Тип - Spread Заливка - Color Цвет - Current stop's color Цвет текущей точки - Show HSV specification Настройки в виде HSV - HSV HSV - Show RGB specification Настройки в виде RGB - RGB RGB - Current stop's position Положение текущей точки - % % - Zoom In Увеличить - Zoom Out Уменьшить - Toggle details extension Показать/скрыть детальные настройки - > > - Linear Type Линейный тип - ... ... - Radial Type Радиальный тип - Conical Type Конический тип - Pad Spread Равномерная заливка - Repeat Spread Цикличная заливка - Reflect Spread Зеркальная заливка @@ -9638,32 +7881,26 @@ You can choose between stashing the changes or discarding them. HelloWorld::Internal::HelloWorldPlugin - Say "&Hello World!" Скажите "&Привет, Мир!" - &Hello World &Привет, Мир - Hello world! Привет, Мир! - Hello World PushButton! Моя первая PushButton! - Hello World! Привет, Мир! - Hello World! Beautiful day today, isn't it? Привет, Мир! Отличный день сегодня, не так ли? @@ -9671,12 +7908,10 @@ You can choose between stashing the changes or discarding them. HelloWorld::Internal::HelloWorldWindow - Focus me to activate my context! Укажи на меня, чтобы активировать мой контекст! - Hello, world! Привет, Мир! @@ -9684,23 +7919,13 @@ You can choose between stashing the changes or discarding them. Help - Help Справка - - Help::HelpManager - - - Unfiltered - Вся - - Help::Internal::CentralWidget - Print Document Печать документа @@ -9708,17 +7933,14 @@ You can choose between stashing the changes or discarding them. Help::Internal::DocSettingsPage - Documentation Документация - Add Documentation Добавить документацию - Qt Help Files (*.qch) Файлы справки Qt (*.qch) @@ -9726,7 +7948,6 @@ You can choose between stashing the changes or discarding them. Help::Internal::FilterSettingsPage - Filters Фильтры @@ -9734,28 +7955,22 @@ You can choose between stashing the changes or discarding them. Help::Internal::GeneralSettingsPage - General Settings Основные настройки - Open Image Открыть изображение - - Files (*.xbel) Файлы (*.xbel) - There was an error while importing bookmarks! При импорте закладок возникла ошибка! - Save File Сохранить файл @@ -9763,7 +7978,6 @@ You can choose between stashing the changes or discarding them. Help::Internal::HelpIndexFilter - Help index Указатель справки @@ -9771,7 +7985,6 @@ You can choose between stashing the changes or discarding them. Help::Internal::HelpMode - Help Справка @@ -9779,154 +7992,130 @@ You can choose between stashing the changes or discarding them. Help::Internal::HelpPlugin - - Contents Содержание - - Index Указатель - Search Поиск - Bookmarks Закладки - Home Домой - Previous Назад - Next Вперёд - Add Bookmark Добавить закладку - Previous Page Предыдущая страница - Next Page Следующая страница - Context Help Контекстная справка - Activate Index in Help mode - Включить Указатель в режиме помощи + Открытие указателя режима справки - Activate Contents in Help mode - Включить Содержание в режиме помощи + Открытие содержание режима справки - Increase Font Size Увеличить шрифт - Ctrl++ - Decrease Font Size Уменьшить шрифт - Ctrl+- - Reset Font Size Восстановить размер шрифта - Ctrl+0 - Alt+Tab - Alt+Shift+Tab - Ctrl+Tab - Ctrl+Shift+Tab - + Activate Search in Help mode + Открытие поиска режима справки + + + Activate Bookmarks in Help mode + Открытие закладок режима справки + + Open Pages Открытые страницы - Activate Open Pages in Help mode Включение открытых страницы в режиме помощи - Go to Help Mode Перейти в режим справки - Close current Page Закрыть текущую страницу - Unfiltered Вся - <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> <html><head><title>Документация отсутствует</title></head><body><br/><center><b>%1</b><br/>Нет доступной документации.</center></body></html> - Filtered by: Документация: @@ -9934,28 +8123,22 @@ You can choose between stashing the changes or discarding them. Help::Internal::HelpViewer - Open Link Открыть ссылку - - Open Link as New Page Открыть ссылку на новой странице - Copy Link Скопировать ссылку - Copy Копировать - Reload Перезагрузить @@ -9963,7 +8146,6 @@ You can choose between stashing the changes or discarding them. Help::Internal::OpenPagesModel - (Untitled) (Без имени) @@ -9971,12 +8153,10 @@ You can choose between stashing the changes or discarding them. Help::Internal::OpenPagesWidget - Close %1 Закрыть %1 - Close All Except %1 Закрыть все, кроме %1 @@ -9984,37 +8164,30 @@ You can choose between stashing the changes or discarding them. Help::Internal::SearchWidget - Indexing Индексация - Indexing Documentation... Идексация документации... - Open Link Открыть ссылку - Open Link as New Page Открыть ссылку на новой странице - Copy Link Скопировать ссылку - Copy Копировать - Reload Перезагрузить @@ -10022,12 +8195,10 @@ You can choose between stashing the changes or discarding them. Help::Internal::XbelReader - The file is not an XBEL version 1.0 file. Содержимое файла не соответствует XBEL версии 1.0. - Unknown title Неизвестный заголовок @@ -10035,12 +8206,10 @@ You can choose between stashing the changes or discarding them. HelpViewer - <title>about:blank</title> - <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> @@ -10048,37 +8217,30 @@ You can choose between stashing the changes or discarding them. ImageSpecifics - Image Изображение - Source Источник - Fill Mode Режим заливки - Aliasing Ступенчатость - Smooth Гладкий - Source Size Размер источника - Painted Size Размер рисования @@ -10086,17 +8248,14 @@ You can choose between stashing the changes or discarding them. IndexWindow - &Look for: &Искать: - Open Link Открыть ссылку - Open Link as New Page Открыть ссылку на новой странице @@ -10104,7 +8263,6 @@ You can choose between stashing the changes or discarding them. InputPane - Type Ctrl-<Return> to execute a line. Нажмите Ctrl-<Ввод> для выполнения строки. @@ -10112,54 +8270,37 @@ You can choose between stashing the changes or discarding them. InvalidIdException - - Ids have to be unique: - Следующие идентификаторы должны быть уникальными: + Only alphanumeric characters and underscore allowed. +Ids must begin with a lowercase letter. + Допустимы только цифры, буквы и знак подчёркивания. +Идентификаторы должны начинаться с маленькой буквы. - - Invalid Id: - Неверный идентификатор: + Ids have to be unique. + Следующие идентификаторы должны быть уникальными. - - -Only alphanumeric characters and underscore allowed. -Ids must begin with a lowercase letter. - -Допустимы только цифры, буквы и знак подчёркивания. -Идентификаторы должны начинаться с маленькой буквы. + Invalid Id: %1 +%2 + Неверный идентификатор: %1 +%2 Layout - Layout Компоновка - Anchors Привязки - - - - - - Target Цель - - - - - - Margin Отступ @@ -10167,12 +8308,10 @@ Ids must begin with a lowercase letter. Locator - Filters Шаблоны - Locator Поисковик @@ -10180,17 +8319,14 @@ Ids must begin with a lowercase letter. Locator::ILocatorFilter - Filter Configuration Настройка фильтра - Limit to prefix Ограничить до префикса - Prefix: Префикс: @@ -10198,28 +8334,22 @@ Ids must begin with a lowercase letter. Locator::Internal::DirectoryFilter - Generic Directory Filter Универсальный фильтр для каталогов - Filter Configuration Настройка фильтра - - Select Directory Выбор каталога - %1 filter update: 0 files Фильтру %1 соответствует: 0 файлов - %1 filter update: %n files Фильтру %1 соответствует: %n файл @@ -10228,7 +8358,6 @@ Ids must begin with a lowercase letter. - %1 filter update: canceled Фильтру %1 соответствует: отменено @@ -10236,54 +8365,44 @@ Ids must begin with a lowercase letter. Locator::Internal::DirectoryFilterOptions - Name: Название: - 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 Locator entry field, and then the word to search for. Укажите сокращение или аббревиатуру, которая будет использоваться для ограничения дополнения до файлов из данного дерева каталогов. Для этого требуется ввести указанное сокращение, пробел и искомое слово в поле поисковика. - Limit to prefix Ограничить до префикса - Add... Добавить... - Edit... Изменить... - Remove Удалить - Directories: Каталоги: - File types: Типы файлов: @@ -10291,7 +8410,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::FileSystemFilter - Files in file system Файлы в системе @@ -10299,27 +8417,22 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::FileSystemFilterOptions - Filter configuration Настройка фильтра - Prefix: Префикс: - Limit to prefix Ограничить до префикса - Include hidden files Включить скрытые файлы - Filter: Фильтр: @@ -10327,7 +8440,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::LocatorFiltersFilter - Available filters Доступные фильтры @@ -10335,7 +8447,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::LocatorPlugin - Indexing Индексация @@ -10343,32 +8454,26 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::LocatorWidget - Refresh Обновить - Configure... Настроить... - Locate... Обзор... - Type to locate Введите, чтобы найти - Options Параметры - <type here> <введите здесь> @@ -10376,7 +8481,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::OpenDocumentsFilter - Open documents Открытые документы @@ -10384,7 +8488,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::SettingsPage - %1 (prefix: %2) %1 (префикс: %2) @@ -10392,32 +8495,26 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::SettingsWidget - Configure Filters Настройка фильтров - Add Добавить - Remove Удалить - Edit Изменить - min мин - Refresh interval: Период обновления: @@ -10425,7 +8522,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t MaemoConfigTestDialog - Device Configuration Test Тест конфигурации устройства @@ -10433,140 +8529,137 @@ To do this, you type this shortcut and a space in the Locator entry field, and t MaemoPackageCreationWidget - - Package contents: - Содержимое пакета: - - - Add File to Package Добавить файл в пакет - Remove File from Package Удалить файл из пакета + + Check this if you want the files below to be deployed directly. + Включение приведёт к прямой установке указанных ниже файлов. + + + Files to deploy: + Устанавливаемые файлы: + + + Skip packaging step + Пропустить этап сборки пакета + + + Version number: + Номер версии: + + + Major: + Старший: + + + Minor: + Младший: + + + Patch: + Исправление: + MaemoSettingsWidget - Maemo Device Configurations Настройки устройства Maemo - Device type: Тип устройства: - Authentication type: Тип авторизации: - Password Пароль - Key Ключ - Password: Пароль: - Private key file: Файл секретного ключа: - Add Добавить - Remove Удалить - Test Проверить - Configuration: Конфигурация: - Name Название - IP or host name of the device IP или имя узла устройства - Ports: Порты: - SSH: - Gdb server: Сервер gdb: - Generate SSH Key ... Создать ключ SSH... - s сек - Deploy Public Key ... Установить ключ... - Remote device Внешнее - Maemo emulator Эмулятор Maemo - Host name: Имя хоста: - Connection timeout: Время ожидания: - Username: Имя пользователя: @@ -10574,57 +8667,46 @@ To do this, you type this shortcut and a space in the Locator entry field, and t MaemoSshConfigDialog - SSH Key Configuration Настройка ключа SSH - Generate SSH Key Создать ключ SSH - Close Закрыть - Options Параметры - Key size: Размер ключа: - Key algorithm: Алгоритм ключа: - RSA - DSA - Key Ключ - Save Public Key... Сохранить открытый... - Save Private Key... Сохранить секретный... @@ -10632,175 +8714,141 @@ To do this, you type this shortcut and a space in the Locator entry field, and t MainWindow - Ctrl+Q - Ctrl+O - Bauhaus MainWindowClass Баухаус - &File &Файл - &New... &Новый... - Ctrl+N - &Open... &Открыть... - Recent Files Недавние файлы - &Save &Сохранить - Ctrl+S - Save &As... Сохранить &как... - &Preview &Предпросмотр - Ctrl+R - &Preview with Debug Предпросмотр с отла&дкой - Ctrl+D - &Quit В&ыход - &Edit &Правка - Ctrl+Z - Ctrl+Y - Ctrl+Shift+Z - &Copy &Копировать - &Cut Выре&зать - &Paste В&ставить - &Delete &Удалить - Del Del - Backspace Backspace - &View &Вид - &Help &Справка - &About... &О программе... - Properties Свойства - Could not open file <%1> Не удалось открыть файл <%1> - Qml Errors: Ошибки Qml: - %1 %2:%3 - %4 %1 %2:%3 - %4 - %1:%2 - %3 @@ -10810,12 +8858,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t MakeStep - Override %1: Заменить %1: - Make arguments: Параметры make: @@ -10823,12 +8869,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::CloneWizard - Clones a Mercurial repository and tries to load the contained project. Извлечение проекта из хранилища Mercurial с последующей попыткой его загрузки. - Mercurial Clone Клон Mercurial @@ -10836,17 +8880,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::CloneWizardPage - Location Размещение - Specify repository URL, checkout directory and path. Выбор URL хранилища, каталога извлечения и пути. - Clone URL: URL для клонирования: @@ -10854,7 +8895,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::CommitEditor - Commit Editor Редактор фиксаций @@ -10862,43 +8902,34 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::MercurialClient - Unable to find parent revisions of %1 in %2: %3 Не удалось найти родительскую ревизию для %1 в %2: %3 - Cannot parse output: %1 Не удалось разобрать вывод: %1 - Hg Annotate %1 Hg аннотация %1 (annotate) - Hg diff %1 Hg сравнение %1 - - Hg log %1 Hg история %1 - Hg incoming %1 Hg входящие %1 - Hg outgoing %1 Hg исходящие %1 - Working... Исполнение... @@ -10906,42 +8937,34 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::MercurialCommitPanel - General Information Основная информация - Repository: Хранилище: - repository хранилище - Branch: Ветка: - branch ветка - Commit Information Информация о фиксации - Author: Автор: - Email: Email: @@ -10949,7 +8972,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::MercurialControl - Mercurial Mercurial @@ -10957,7 +8979,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::MercurialEditor - Annotate %1 Аннотация %1 @@ -10965,19 +8986,16 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::MercurialJobRunner - 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. Вышло время ожидания (%1 сек) завершения процесса mercurial. @@ -10985,237 +9003,190 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::MercurialPlugin - Mercurial Mercurial - Annotate Current File Аннотация текущего файла (annotate) - Annotate "%1" Аннотация "%1" (annotate) - Diff Current File Сравнить текущий файл - Diff "%1" Сравнить "%1" - Alt+H,Alt+D Alt+H,Alt+D - Log Current File История текущего файла - Log "%1" История "%1" - Alt+H,Alt+L Alt+H,Alt+L - Status Current File Состояние текущего файла - Status "%1" Состояние "%1" - Alt+H,Alt+S Alt+H,Alt+S - Add Добавить - Add "%1" Добавить "%1" - Delete... Удалить... - Delete "%1"... Удалить "%1"... - Revert Current File... Откатить текущий файл... - Revert "%1"... Откатить "%1"... - Diff Сравнить - Log История - Revert... Откатить... - Status Состояние - Pull... Принять (pull)... - Push... Отправить (push)... - Update... Обновить (update)... - Import... Импорт... - Incoming... Входящее... - Outgoing... Исходящее... - Commit... Фиксировать... - Alt+H,Alt+C Alt+H,Alt+C - Create Repository... Создать хранилище... - Pull Source Источник приёма (pull source) - Push Destination Назначение отправлений (push) - Update Обновление - Incoming Source Источник входящих - Commit Фиксировать - Diff Selected Files Сравнить выбранные файлы - &Undo &Отменить - &Redo &Повторить - 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? Желаете зафиксировать изменения? - Message check failed. Do you want to proceed? Не удалось проверить сообщение. Продолжить? @@ -11223,78 +9194,63 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::OptionsPage - Form Форма - Configuration Настройка - Command: Команда: - User Пользователь - Username to use by default on commit. Имя пользователя используемое по умолчанию при фиксации. - Default username: Имя пользователя: - Email to use by default on commit. 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: Email по умолчанию: @@ -11302,7 +9258,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::OptionsPageWidget - Mercurial Command Команда Mercurial @@ -11310,17 +9265,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::RevertDialog - Revert Откатить - Specify a revision other than the default? Указать ревизию отличную от умолчальной? - Revision: Ревизия: @@ -11328,27 +9280,22 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Mercurial::Internal::SrcDestDialog - Dialog Диалог - Local filesystem: Файловая система: - e.g. https://[user[:pass]@]host[:port]/[path] должен иметь вид: https://[пользователь[:пароль]@]адрес[:порт]/[путь] - Specify Url: Особый Url: - Default Location По умолчанию @@ -11356,202 +9303,162 @@ To do this, you type this shortcut and a space in the Locator entry field, and t MimeType - 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 Designer - QML file Файл QML - Generic Qt Creator Project file Файл базового проекта Qt Creator - 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 - Generic Project Files Файлы базовых проектов - Generic Project Include Paths Пути включения базового проекта - Generic Project Configuration File Файл настроек базового проекта - Perforce submit template Шаблон сообщения о фиксации Perforce - Qt Project file Файл проекта Qt - Qt Project include file Подключаемый к проекту Qt файл - Qt Project feature file Файл опции проекта Qt - message catalog Исходный файл перевода - Qt Script file Файл сценария Qt - QML Project file Файл проекта QML - Qt Resource file Файл ресурсов Qt - Subversion submit template Шаблон сообщения о фиксации Subversion - Plain text document Обычный текстовый документ - XML document Документ XML - Differences between files Разница между файлами @@ -11559,17 +9466,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Modifiers - Manipulation Управление - Rotation Вращение - z @@ -11577,9 +9481,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t MyMain - - - N/A Н/Д @@ -11587,183 +9488,130 @@ To do this, you type this shortcut and a space in the Locator entry field, and t NameDemanglerPrivate - Premature end of input Данные на входе преждевременно закончились - Invalid encoding Некорректная кодировка - Invalid name Некорректное имя - - Invalid nested-name Некорректный nested-name - - Invalid template args Некорректные аргументы шаблона - - Invalid template-param Некорректный template-param - Invalid qualifiers: unexpected 'volatile' Некорректный спецификатор: неожиданный 'volatile' - Invalid qualifiers: 'const' appears twice Некорректный спецификатор: 'const' указан дважды - Invalid non-negative number Некорректное неотрицательное число - - - Invalid template-arg Некорректный template-arg - - - Invalid expression Некорректное выражение - Invalid primary expression Некорректное основное выражение - - - Invalid expr-primary Некорректное expr-primary - - - Invalid type Некорректный тип - Invalid built-in type Некорректный встроенный тип - Invalid builtin-type Некорректный встроенный тип - - Invalid function type Некорректный тип функции - - Invalid unqualified-name Некорректный unqualified-name - Invalid operator-name '%s' Некорректное имя оператора '%s' - - Invalid array-type Некорректный 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 Некорректный special-name - - - Invalid local-name Некорректный local-name - Invalid discriminator Некорректный классификатор - - - Invalid ctor-dtor-name Некорректное имя конструктора/деструктора - - Invalid call-offset Некорректный call-offset - Invalid v-offset Некорректный v-offset - Invalid digit Некорректная цифра - At position %1: Со смещением %1: @@ -11771,7 +9619,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t NickNameDialog - Nick Names Ники @@ -11779,52 +9626,42 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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 Designer - Qt Linguist Qt Linguist - Resource Editor Редактор ресурсов @@ -11832,12 +9669,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t OpenWithDialog - Open File With... Открыть файл с помощью... - Open file extension with: Открывать файлы с таким расширением с помощью: @@ -11846,17 +9681,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t PasteBinComSettingsWidget - Form Форма - Server prefix: Префикс сервера: - <html><head/><body> <p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> <p>Note that the plugin will use this for posting as well as fetching.</p></body></html> @@ -11868,12 +9700,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Perforce::Internal::ChangeNumberDialog - Change Number Номер правки - Change Number: Номер правки: @@ -11881,22 +9711,18 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Perforce::Internal::PendingChangesDialog - P4 Pending Changes Perforce: Рассмотрение изменений - Submit Фиксировать - Cancel Отмена - Change %1: %2 Изменение %1: %2 @@ -11904,43 +9730,35 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Perforce::Internal::PerforceChecker - No executable specified Программа не указана - "%1" timed out after %2ms. У "%1" вышло время через %2 мс. - 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" отсутствует. @@ -11948,7 +9766,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Perforce::Internal::PerforceEditor - Annotate change list "%1" Аннотация списка изменений "%1" @@ -11956,410 +9773,326 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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 "%1" Сравнить "%1" - Diff Current Project/Session Сравнить текущий проект/сессию - Diff Project "%1" Сравнить проект "%1" - Alt+P,Alt+D Alt+P,Alt+D - Diff Opened Files Сравнить открытые файлы - Opened Открытые - Alt+P,Alt+O Alt+P,Alt+O - Submit Project Фиксировать проект - Alt+P,Alt+S Alt+P,Alt+S - Pending Changes... Ожидающие изменения... - Update Project "%1" Обновить проект "%1" - Describe... Описать... - - Annotate Current File Аннотация текущего файла (annotate) - Annotate "%1" Аннотация "%1" (annotate) - Annotate... Аннотация (annotate)... - - Filelog Current File История текущего файла - Filelog "%1" История "%1" - Alt+P,Alt+F Alt+P,Alt+F - Filelog... История... - Update All Обновить всё - Delete... Удалить... - Delete "%1"... Удалить "%1"... - Log Project "%1" История проекта "%1" - Log Project История проекта - Submit Project "%1" Фиксировать проект "%1" - Update Current Project Обновить текущий проект - Revert Unchanged Откатить неизменённые файлы - Revert Unchanged Files of Project "%1" Откатить неизменённые файлы проекта "%1" - Revert Project Откатить проект - Revert Project "%1" Откатить проект "%1" - Repository Log История хранилища - Submit Фиксировать - Diff Selected Files Сравнить выделенные файлы - &Undo От&менить - &Redo &Вернуть - - 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. - p4 submit failed: %1 Не удалось выполнить фиксацию perforce: %1 - Error running "where" on %1: %2 Failed to run p4 "where" to resolve a Perforce file name to a local file system name. Ошибка выполнения "where" на %1: %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. Процесс завершился аварийно. - 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 ms). - 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 Закрытие редактора Perforce - 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. Не удалось зафиксировать измененения, так как рабочая копия устарела. Создана фиксация для рассмотрения. @@ -12367,7 +10100,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Perforce::Internal::PerforceSubmitEditor - Perforce Submit Фиксация Perforce @@ -12375,12 +10107,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Perforce::Internal::PromptDialog - Perforce Prompt Perforce: приглашение - OK Закрыть @@ -12388,67 +10118,54 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Perforce::Internal::SettingsPage - Test Проверить - Perforce Perforce - Configuration Настройка - Miscellaneous Разное - Timeout: Время ожидания: - s сек - Prompt on submit Спрашивать при фиксации - Log count: Количество отображаемых записей истории фиксаций: - P4 command: Команда Perforce: - P4 client: Клиент P4: - P4 user: Пользователь P4: - P4 port: Порт P4: - Environment Variables Переменные среды окружения @@ -12456,17 +10173,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Perforce::Internal::SettingsPageWidget - Perforce Command Команда Perforce - Testing... Проверка... - Test succeeded (%1). Проверка успешно завершена (%1). @@ -12474,22 +10188,18 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Perforce::Internal::SubmitPanel - Submit Фиксировать - Change: Правка: - Client: Клиент: - User: Пользователь: @@ -12497,27 +10207,22 @@ To do this, you type this shortcut and a space in the Locator entry field, and t PluginDialog - Details Подробнее - Error Details Подробнее об ошибке - Installed Plugins Установленные надстройки - Plugin Details of %1 Подробнее о надстройке %1 - Plugin Errors of %1 Ошибки надстройки %1 @@ -12525,24 +10230,18 @@ To do this, you type this shortcut and a space in the Locator entry field, and t PluginManager - - The plugin '%1' does not exist. Надстройка "%1" не существует. - Unknown option %1 Неизвестная опция %1 - The option %1 requires an argument. Опция %1 требует параметр. - - Failed Plugins Проблемные надстройки @@ -12550,77 +10249,62 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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 Невозможно выполнить extensionsInitialized, так как state != Initialized - Internal error: have no plugin instance to perform extensionsInitialized Внутренняя ошибка: отсутствует экземпляр надстройки для выполнения extensionsInitialized @@ -12628,12 +10312,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ProjectExplorer - Projects Проекты - Other Project Другой проект @@ -12641,29 +10323,24 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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" завершился крахом. - Could not start process "%1" Невозможно запустить процесс "%1" @@ -12671,17 +10348,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ProjectExplorer::ApplicationLauncher - Failed to start program. Path or permissions wrong? Не удалось запустить программу. Путь или права недопустимы? - The program has unexpectedly finished. Программа неожиданно завершилась. - Some error has occurred while running the program. Во время работы программы возникли некоторые ошибки. @@ -12689,12 +10363,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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. untitled @@ -12703,12 +10375,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ProjectExplorer::BuildConfiguration - System Environment Системная среда - Clean Environment Чистая среда @@ -12716,12 +10386,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ProjectExplorer::BuildEnvironmentWidget - Clear system environment Чистая системная среда - Build Environment Среда сборки @@ -12729,26 +10397,20 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ProjectExplorer::BuildManager - Compile Category for compiler isses listened under 'Build Issues' Компиляция - Build System Category for build system isses listened under 'Build Issues' Система сборки - - - Error while building project %1 (target: %2) Возникла ошибка при сборке проекта %1 (цель: %2) - Finished %1 of %n build steps Завершено %1 из %n этапа сборки @@ -12757,23 +10419,18 @@ To do this, you type this shortcut and a space in the Locator entry field, and t - Canceled build. Сборка прервана. - Build Сборка - - When executing build step '%1' Во время выполнения сборки на этапе "%1" - Running build steps for project %1... Выполняется сборка проекта %1... @@ -12781,33 +10438,26 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ProjectExplorer::CustomExecutableRunConfiguration - Custom Executable Особая программа - Could not find the executable, please specify one. Не удалось найти программу, пожалуйста, укажите её. - Clean Environment Чистая среда - System Environment Системная среда - Build Environment Среда сборки - - Run %1 Выполнить %1 @@ -12815,8 +10465,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ProjectExplorer::CustomExecutableRunConfigurationFactory - - Custom Executable Особая программа @@ -12824,7 +10472,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ProjectExplorer::CustomProjectWizard - The project %1 could not be opened. Невозможно открыть проект %1. @@ -12832,31 +10479,42 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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. + Создание C++ надстройки для расширения функциональности среды исполнения QML. + + + QML Runtime Plug-in + Надстройка среды исполнения QML + + + QML Runtime Plug-in Parameters + Параметры надстройки среды исполнения QML + + + Example Object Class-name: + Имя класса объекта примера: + 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 @@ -12867,30 +10525,24 @@ Reason: %2 Причина: %2 - Building debugging helper library in %1 Сборка библиотеки помощника отладчика в %1 - Running %1 %2... Выполнение %1 %2... - - %1 not found in PATH программа %1 не найдена в PATH - - Running %1 ... Выполнение %1... @@ -12900,34 +10552,28 @@ Reason: %2 ProjectExplorer::EnvironmentModel - Variable Переменная - Value Значение - <VARIABLE> Name when inserting a new variable <переменная> - <VALUE> Value when inserting a new variable <значение> - <VARIABLE> <переменная> - <UNSET> <не задано> @@ -12935,42 +10581,34 @@ Reason: %2 ProjectExplorer::EnvironmentWidget - &Edit &Изменить - &Add &Добавить - &Reset &Вернуть - &Unset &Сбросить - Using <b>%1</b> Используется <b>%1</b> - Using <b>%1</b> and Используется <b>%1</b> и - Unset <b>%1</b> Сброшено значение <b>%1</b> - Set <b>%1</b> to <b>%2</b> Присвоено <b>%1</b> значение <b>%2</b> @@ -12978,12 +10616,10 @@ Reason: %2 ProjectExplorer::Internal::AddTargetDialog - Target: Цель: - Add target Добавление цели @@ -12991,7 +10627,6 @@ Reason: %2 ProjectExplorer::Internal::AllProjectsFilter - Files in any project Файлы в любом проекте @@ -12999,12 +10634,10 @@ Reason: %2 ProjectExplorer::Internal::AllProjectsFind - All Projects Все проекты - File &pattern: Ш&аблон: @@ -13012,47 +10645,38 @@ Reason: %2 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. Корректная конфигурация сборки не найдена. @@ -13060,47 +10684,38 @@ Reason: %2 ProjectExplorer::Internal::BuildSettingsWidget - No build settings available Настройки сборки не обнаружены - Edit build configuration: Изменить конфигурацию сборки: - Add Добавить - Remove Удалить - &Clone Selected Д&ублировать выделенную - Build Steps Этапы сборки - Clean Steps Этапы очистки - New Configuration Name: Название новой конфигурации: - Clone configuration Дублировать конфигурацию @@ -13108,52 +10723,42 @@ Reason: %2 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 Добавить этап сборки - Build Steps Этапы сборки - Clean Steps Этапы очистки @@ -13161,8 +10766,6 @@ Reason: %2 ProjectExplorer::Internal::CompileOutputWindow - - Compile Output Консоль сборки @@ -13170,27 +10773,22 @@ Reason: %2 ProjectExplorer::Internal::CoreListenerCheckingForRunningBuild - 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, прервав процесс сборки? @@ -13198,7 +10796,6 @@ Reason: %2 ProjectExplorer::Internal::CurrentProjectFilter - Files in current project Файлы в текущем проекте @@ -13206,12 +10803,10 @@ Reason: %2 ProjectExplorer::Internal::CurrentProjectFind - Current Project Текущий проект - File &pattern: Ш&аблон: @@ -13219,62 +10814,50 @@ Reason: %2 ProjectExplorer::Internal::CustomExecutableConfigurationWidget - Name: Имя: - Executable: Программа: - Arguments: Параметры: - Working Directory: Рабочий каталог: - Run in &Terminal Запускать в &терминале - Run Environment Среда выполнения - Clean Environment Чистая среда - System Environment Системная среда - Build Environment Среда сборки - No Executable specified. Программа не указана. - Running executable: <b>%1</b> %2 Выполняется программа: <b>%1</b> %2 - Base environment for this runconfiguration: Базовая среда для этой конфигурации запуска: @@ -13282,7 +10865,6 @@ Reason: %2 ProjectExplorer::Internal::CustomWizardPage - Path: Путь: @@ -13290,7 +10872,6 @@ Reason: %2 ProjectExplorer::Internal::DependenciesModel - <No other projects in this session> <В этой сессии нет других проектов> @@ -13298,7 +10879,6 @@ Reason: %2 ProjectExplorer::Internal::DoubleTabWidget - DoubleTabWidget @@ -13306,7 +10886,6 @@ Reason: %2 ProjectExplorer::Internal::EditorSettingsPropertiesPage - Default file encoding: Кодировка файла по умолчанию: @@ -13314,67 +10893,54 @@ Reason: %2 ProjectExplorer::Internal::FolderNavigationWidget - Open Открыть - Open parent folder Открыть родительскую папку - Open "%1" Открыть "%1" - Open with Открыть с помощью - Choose folder... Выбрать папку... - Choose folder Выбор папки - Show in Explorer... Показать в проводнике... - Show in Finder... Показать в Finder... - Show containing folder... Открыть папку файла... - Open Command Prompt here... Открыть командную консоль здесь... - Open Terminal here... Открыть терминал здесь... - Launching a file browser failed Не удалось запустить обозреватель файлов - Unable to start the file manager: %1 @@ -13387,7 +10953,6 @@ Reason: %2 - '%1' returned the following error: %2 @@ -13396,17 +10961,14 @@ Reason: %2 %2 - Settings... Настройки... - Launching Windows Explorer failed Не удалось запустить Проводник Windows - Could not find explorer.exe in path to launch Windows Explorer. Не удалось найти explorer.exe в путях запуска Проводника Windows. @@ -13414,12 +10976,10 @@ Reason: %2 ProjectExplorer::Internal::FolderNavigationWidgetFactory - File System Файловая система - Synchronize with Editor Согласовать с редактором @@ -13427,12 +10987,10 @@ Reason: %2 ProjectExplorer::Internal::LocalApplicationRunControl - Starting %1... Запускается %1... - %1 exited with code %2 %1 завершился с кодом %2 @@ -13440,7 +10998,6 @@ Reason: %2 ProjectExplorer::Internal::LocalApplicationRunControlFactory - Run Выполнить @@ -13448,42 +11005,34 @@ Reason: %2 ProjectExplorer::Internal::MiniProjectTargetSelector - Project Проект - Select active project Выбор активного проекта - 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/> - <br/>%1 <br/>%1 @@ -13491,22 +11040,18 @@ Reason: %2 ProjectExplorer::Internal::MiniTargetWidget - Select active build configuration Выбор активной конфигурации сборки - Select active run configuration Выбор активной конфигурации запуска - Build: Сборка: - Run: Запуск: @@ -13514,38 +11059,34 @@ Reason: %2 ProjectExplorer::Internal::OutputPane - Re-run this run-configuration Перезапустить эту конфигурацию запуска - - Stop Остановить - Application Output Консоль приложения - + Application Output Window + Окно вывода приложения + + The application is still running. Программа еще работает. - Force it to quit? Завершить её принудительно? - Force Quit Завершить - Unable to close Невозможно закрыть @@ -13553,16 +11094,15 @@ Reason: %2 ProjectExplorer::Internal::OutputWindow - - Application Output Window - Окно вывода приложения + Additional output omitted + + Дополнительный вывод опущен + ProjectExplorer::Internal::ProcessStep - - Custom Process Step item in combobox Особый @@ -13571,12 +11111,10 @@ Reason: %2 ProjectExplorer::Internal::ProcessStepConfigWidget - <b>%1</b> %2 %3 %4 <b>%1</b> %2 %3 %4 - (disabled) (отключён) @@ -13584,27 +11122,22 @@ Reason: %2 ProjectExplorer::Internal::ProcessStepWidget - Name: Название: - Command: Команда: - Enable custom process step Включить этот этап - Working directory: Рабочий каталог: - Command arguments: Параметры команды: @@ -13612,7 +11145,6 @@ Reason: %2 ProjectExplorer::Internal::ProjectExplorerSettingsPage - General Основное @@ -13620,57 +11152,46 @@ Reason: %2 ProjectExplorer::Internal::ProjectExplorerSettingsPageUi - Build and Run Сборка и запуск - 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 Очищать старый вывод приложения при новом запуске - <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="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Disable it if you experience problems with your builds. <i>jom</i> - это замена <i>nmake</i>, распределяющая процесс компиляции на несколько ядер процессора. Свежайшая сборка доступна на <a href="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Отключите использование jom вместо nmake в случае проблем со сборкой. @@ -13678,13 +11199,11 @@ Reason: %2 ProjectExplorer::Internal::ProjectFileFactory - Project File Factory ProjectExplorer::ProjectFileFactory display name. Фабрика проектных файлов - Could not open the following project: '%1' Не удалось открыть указанный проект: "%1" @@ -13692,8 +11211,6 @@ Reason: %2 ProjectExplorer::Internal::ProjectFileWizardExtension - - <None> No version control system selected ---------- @@ -13701,19 +11218,16 @@ No project selected <Нет> - 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' в контроль версий. @@ -13721,17 +11235,14 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidget - Simplify tree Упростить дерево - Hide generated files Скрыть сгенерированные файлы - Synchronize with Editor Согласовать с редактором @@ -13739,12 +11250,10 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidgetFactory - Projects Проекты - Filter tree Настроить отображение @@ -13752,7 +11261,6 @@ No project selected ProjectExplorer::Internal::ProjectWelcomePage - Develop Разработка @@ -13760,47 +11268,38 @@ No project selected ProjectExplorer::Internal::ProjectWelcomePageWidget - Form Форма - Manage Sessions... Управление сессиями... - Recent Projects Последние проекты - %1 (last session) %1 (последняя сессия) - %1 (current session) %1 (текущая сессия) - New Project Новый проект - Create Project... Создать проект... - Recent Sessions Последние сессии - Open Project... Открыть проект... @@ -13808,40 +11307,33 @@ No project selected ProjectExplorer::Internal::ProjectWizardPage - Summary Итог - Files to be added: Будут добавлены файлы: - Files to be added in - Будут добавлены файлы + Будут добавлены файлы ProjectExplorer::Internal::RemoveFileDialog - Remove File Удалить файл - File to remove: Файл для удаления: - &Delete file permanently &Удалить файл навсегда - &Remove from Version Control У&далить из контроля версий @@ -13849,17 +11341,14 @@ No project selected ProjectExplorer::Internal::RunSettingsPropertiesPage - + + - - - - Run configuration: Конфигурация запуска: @@ -13867,12 +11356,10 @@ No project selected ProjectExplorer::Internal::RunSettingsWidget - Add Добавить - Remove Удалить @@ -13880,22 +11367,18 @@ No project selected ProjectExplorer::Internal::S60ProjectChecker - The Symbian SDK and the project sources must reside on the same drive. Symbian SDK и исходные файлы проекта должны располагаться на одном диске. - The Symbian SDK was not found for Qt version %1. Не найден Symbian SDK для профиля Qt %1. - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. У профиля Qt %1 путь к Symbian SDK неверен или в него не установлен "Open C/C++ plugin". - The Symbian toolchain does not handle special characters in a project path well. Инструментарий Symbian не способен обрабатывать специальные символы в пути проекта. @@ -13903,48 +11386,38 @@ No project selected ProjectExplorer::Internal::SessionDialog - Session Manager Управление сессиями - &New &Новая - &Rename &Переименовать - C&lone &Дублировать - &Delete &Удалить - &Switch to &Открыть - - New session name Имя создаваемой сессии - Rename session Переименование сессии - <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">Что такое сессия?</a> @@ -13952,12 +11425,10 @@ No project selected ProjectExplorer::Internal::SessionFile - Session Сессия - Untitled default file name to display Неозаглавленный @@ -13966,7 +11437,6 @@ No project selected ProjectExplorer::Internal::SessionNameInputDialog - Enter the name of the session: Введите название сессии: @@ -13974,12 +11444,10 @@ No project selected ProjectExplorer::Internal::TargetSelector - Run Выполнить - Build Собрать @@ -13987,17 +11455,14 @@ No project selected ProjectExplorer::Internal::TargetSettingsPanelWidget - No target defined. Цель не указана. - Qt Creator Qt Creator - Do you really want to remove the "%1" target? Действительно желаете удалить @@ -14007,7 +11472,6 @@ No project selected ProjectExplorer::Internal::TargetSettingsWidget - TargetSettingsWidget @@ -14015,7 +11479,6 @@ No project selected ProjectExplorer::Internal::TaskDelegate - File not found: %1 Файл не найден: %1 @@ -14023,12 +11486,10 @@ No project selected ProjectExplorer::Internal::WinGuiProcess - The process could not be started! Не удалось запустить процесс! - Cannot retrieve debugging output! Не удалось получить отладочный вывод! @@ -14036,12 +11497,10 @@ No project selected ProjectExplorer::Internal::WizardPage - Project management Управление проектом - The following files will be added: @@ -14054,12 +11513,10 @@ No project selected - Add to &project: Добавить в &проект: - Add to &version control: Добавить под контроль &версий: @@ -14067,7 +11524,6 @@ No project selected ProjectExplorer::ProjectConfiguration - Clone of %1 Клон %1 @@ -14075,274 +11531,214 @@ No project selected ProjectExplorer::ProjectExplorerPlugin - Projects Проекты - &Build &Сборка - &Debug О&тладка - &Start Debugging &Начать отладку - Open With Открыть с помощью - Session Manager... Управление сессиями... - New Project... Новый проект... - Ctrl+Shift+N Ctrl+Shift+N - Load Project... Загрузить проект... - Ctrl+Shift+O Ctrl+Shift+O - Open File Открыть файл - Recent P&rojects Недавние п&роекты - Close Project Закрыть проект - Close Project "%1" Закрыть проект "%1" - Close All Projects Закрыть все проекты - Session Сессии - Build All Собрать всё - Ctrl+Shift+B Ctrl+Shift+B - Rebuild All Пересобрать всё - Clean All Очистить всё - - Build Project Собрать проект - - Build Project "%1" Собрать проект "%1" - Ctrl+B Ctrl+B - - Rebuild Project Пересобрать проект - - Rebuild Project "%1" Пересобрать проект "%1" - - Clean Project Очистить проект - - Clean Project "%1" Очистить проект "%1" - Build Without Dependencies Собрать без зависимостей - Rebuild Without Dependencies Пересобрать без зависимостей - Clean Without Dependencies Очистить без зависимостей - - Run Выполнить - Ctrl+R Ctrl+R - Cancel Build Отменить сборку - - Start Debugging Начать отладку - F5 F5 - Add New... Добавить новый... - Add Existing Files... Добавить существующие файлы... - Remove File... Убрать файл... - Rename Переименовать - Open Build/Run Target Selector... - Открыть выбор цели сборки/выполнения... + Открыть выбор цели сборки/выполнения... - Ctrl+T Ctrl+T - Load Project Загрузить проект - New Project Title of dialog Новый проект - Always save files before build Всегда сохранять файлы перед сборкой - Cannot run without a project. Невозможно запустить без проекта. - Cannot debug without a project. Невозможно запустить отладку без проекта. - New File Title of dialog Новый файл - Add Existing Files Добавить существующие файлы - Could not add following files to project %1: Не удалось добавить в проект %1 следующие файлы: - Add files to project failed Не удалось добавить файлы в проект - Add to Version Control Добавить под контроль версий - Add files %1 to version control (%2)? @@ -14351,73 +11747,67 @@ to version control (%2)? под контроль версий (%2)? - Could not add following files to version control (%1) Не удалось добавить под контроль версий (%1) следующие файлы - Add files to version control failed Не удалось добавить файлы под контроль версий - Remove file failed Не удалось убрать файл - Could not remove file %1 from project %2. Не удалось убрать файл %1 из проекта %2. - Delete file failed Не удалось удалить файл - Could not delete file %1. Не удалось удалить файл %1. + + Projects (%1) + Проекты (%1) + + + All Files (*) + Все Файлы (*) + ProjectExplorer::SessionManager - Error while restoring session Ошибка при восстановлении сессии - Could not restore session %1 Не удалось восстановить сессию %1 - Error while saving session Ошибка при сохранении сессии - Could not save session to file %1 Не удалось сохранить сессию %1 - Qt Creator Qt Creator - - Untitled Безымянная - Session ('%1') Сессия ('%1') @@ -14425,36 +11815,29 @@ to version control (%2)? ProjectExplorer::TaskWindow - - Build Issues Сообщения сборки - &Copy &Копировать - &Annotate &Аннотация - Show Warnings Показывать предупреждения - Filter by categories - Отбор по категориям + Отбор по категориям ProjectWelcomePage - Form Форма @@ -14462,13 +11845,11 @@ to version control (%2)? QApplication - EditorManager Next Open Document in History - EditorManager Previous Open Document in History @@ -14477,27 +11858,22 @@ to version control (%2)? QMakeStep - Additional arguments: Дополнительные параметры: - Effective qmake call: Параметры вызова qmake: - qmake build configuration: Конфигурация сборки qmake: - Debug Отладка - Release Релиз @@ -14505,63 +11881,52 @@ to version control (%2)? QObject - Pass Готово - Expected Failure Ожидаемая проблема - Failure Проблема - Expected Pass Ожидаемый успех - Warning не думаю, что стоит переводить Warning - Qt Warning не думаю, что стоит переводить Qt Warning - Qt Debug не думаю, что стоит переводить Qt Debug - Critical не думаю, что стоит переводить Critical - Fatal не думаю, что стоит переводить Fatal - Skipped не думаю, что стоит переводить Пропущено - Info не думаю, что стоит переводить Info @@ -14570,17 +11935,14 @@ to version control (%2)? QTestLib::Internal::QTestOutputPane - Test Results Результаты тестирования - Result Результат - Message Сообщение @@ -14588,12 +11950,10 @@ to version control (%2)? QTestLib::Internal::QTestOutputWidget - All Incidents Все происшествия - Show Only: Показать только: @@ -14601,12 +11961,10 @@ to version control (%2)? Qml::InspectorOutputWidget - Output Вывод - Clear Очистить @@ -14614,22 +11972,18 @@ to version control (%2)? Qml::Internal::CanvasFrameRate - Resolution: Разрешение: - Clear Очистить - New Graph Новый граф - Enabled Включено @@ -14637,7 +11991,6 @@ to version control (%2)? Qml::Internal::EngineComboBox - Engine %1 engine number Движок %1 @@ -14646,40 +11999,33 @@ to version control (%2)? Qml::Internal::ExpressionQueryWidget - Write and evaluate QtScript expressions. - Запись и вычисление выражений QtScript. + Запись и вычисление выражений QtScript. - Clear Output Очистить вывод - <Type expression to evaluate> <Введите выражение для вычисления> - Script Console Консоль сценария - Expression queries - Запросы выражения + Запросы выражения - Expression queries (using context for %1) Selected object - Запросы выражения (используя контекст для %1) + Запросы выражения (используя контекст для %1) - <%n items> <%n элемент> @@ -14691,7 +12037,6 @@ to version control (%2)? Qml::Internal::GraphWindow - Total time elapsed (ms) Всего времени прошло (мс) @@ -14699,27 +12044,22 @@ to version control (%2)? Qml::Internal::ObjectPropertiesView - Name Имя - Value Значение - Type Тип - Show unwatchable properties Отобразить ненаблюдаемые свойства - <%n items> <%n элемент> @@ -14728,32 +12068,26 @@ to version control (%2)? - &Watch expression &Наблюдаемое выражение - &Remove watch &Удалить наблюдение - Show &unwatchable properties &Отобразить ненаблюдаемые свойства - &Group by item type &Сгруппировать по типу - Watch expression '%1' Наблюдаемое выражение "%1" - Hide unwatchable properties Скрыть ненаблюдаемые свойства @@ -14761,27 +12095,22 @@ to version control (%2)? Qml::Internal::ObjectTree - Add watch expression... Добавить выражение для наблюдения... - Show uninspectable items - Отобразить неисследуемые элементы + Отобразить неисследуемые элементы - Go to file Перейти к файлу - Watch expression Наблюдаемое выражение - Expression: Выражение: @@ -14789,7 +12118,6 @@ to version control (%2)? Qml::Internal::QLineGraph - Frame rate Частота кадров @@ -14797,7 +12125,6 @@ to version control (%2)? Qml::Internal::StartExternalQmlDialog - <No project> <Не указан> @@ -14805,12 +12132,10 @@ to version control (%2)? Qml::Internal::WatchTableModel - Name Имя - Value Значение @@ -14818,7 +12143,6 @@ to version control (%2)? Qml::Internal::WatchTableView - Stop watching Прекратить наблюдение @@ -14826,32 +12150,26 @@ to version control (%2)? Qml::QmlInspector - 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. @@ -14860,88 +12178,71 @@ to version control (%2)? - [Inspector] resolving host... [Инспектор] определение узла... - [Inspector] connecting to debug server... [Инспектор] подключение к серверу отладки... - [Inspector] connected. [Инспектор] подключён. - [Inspector] closing... [Инспектор] закрытие... - [Inspector] error: (%1) %2 %1=error code, %2=error message [Инспектор] ошибка (%1) %2 - Start Debugging C++ and QML Simultaneously... Запустить одновременно отладку C++ и QML... - No project was found. Не найдено ни одного проекта. - - No run configurations were found for the project '%1'. Не обнаружена конфигурация запуска для проекта "%1". - No valid run configuration was found for the project %1. Only locally runnable configurations are supported. Please check your project settings. Не обнаружена корректная конфигурация запуска для проекта %1. Поддерживаются только локально запускаемые конфигурации. Пожалуйста, проверьте настройки. - A valid run control was not registered in Qt Creator for this project run configuration. - Корректное управление выполнением не зарегистрировано в Qt Creator для конфигурации запуска этого проекта. + Корректное управление выполнением не зарегистрировано в Qt Creator для конфигурации запуска этого проекта. - Debugging failed: could not start C++ debugger. Ошибка отладки: не удалось запустить отладчик C++. - QML engine: Движок QML: - Object Tree Дерево объектов - Properties and Watchers Свойства и наблюдаемые - Script Console Консоль сценария - Output of the QML inspector, such as information on connecting to the server. Вывод инспектора QML, такой как информация о подключении к серверу. @@ -14949,7 +12250,6 @@ Please check your project settings. QmlDesigner::AllPropertiesBox - Properties Title of properties view. Свойства @@ -14958,30 +12258,32 @@ Please check your project settings. QmlDesigner::ComponentView - whole document документ полностью + + QmlDesigner::ContextPaneWidget + + Disable permanently + Отключить навсегда + + QmlDesigner::DesignDocumentController - -New Form- -Новая Форма- - Cannot save to file "%1": permission denied. Не удалось сохранить в файл "%1": недостаточно прав. - Parent folder "%1" for file "%2" does not exist. Родительский каталог "%1" файла "%2" не существует. - Cannot write file: "%1". Не удалось записать файл: "%1". @@ -14989,17 +12291,14 @@ Please check your project settings. QmlDesigner::FormEditorWidget - Snap to guides (E) Прилипать к направляющим (E) - Show bounding rectangles (A) - Отображать границы (A) + Отображать границы (A) - Only select items with content (S) Выделять только элементы с содержимым (S) @@ -15007,37 +12306,30 @@ Please check your project settings. QmlDesigner::Internal::BauhausPlugin - Switch Text/Design Переключить текст/дизайн - Save %1 As... Сохранить %1 как... - &Save %1 &Сохранить %1 - Revert %1 to Saved Вернуть %1 к сохранённому - Close %1 Закрыть %1 - Close All Except %1 Закрыть все, кроме %1 - Close Others Закрыть другие @@ -15045,97 +12337,78 @@ Please check your project settings. QmlDesigner::Internal::DesignModeWidget - &Undo &Отменить - &Redo &Повторить - Delete Удалить - Delete "%1" Удалить "%1" - Cu&t Выре&зать - Cut "%1" Вырезать "%1" - &Copy &Копировать - Copy "%1" Копировать "%1" - &Paste В&ставить - Paste "%1" Удалить "%1" - Select &All Вы&делить всё - Select All "%1" Выделить все "%1" - Toggle Full Screen Переключить полноэкранный режим - &Restore Default View - &Восстановить исходный вид + &Восстановить исходный вид - Toggle &Left Sidebar - Показать/скрыть &левую панель + Показать/скрыть &левую панель - Toggle &Right Sidebar - Показать/скрыть &правую панель + Показать/скрыть &правую панель - Projects Проекты - File System Файловая система - Open Documents Открытые документы @@ -15143,17 +12416,14 @@ Please check your project settings. QmlDesigner::Internal::DocumentWarningWidget - <a href="goToError">Go to error</a> <a href="goToError">Перейти к ошибке</a> - %3 (%1:%2) %3 (%1:%2) - Internal error (%1) Внутренняя ошибка (%1) @@ -15161,7 +12431,6 @@ Please check your project settings. QmlDesigner::Internal::ModelPrivate - invalid type некорректный тип @@ -15169,51 +12438,42 @@ Please check your project settings. QmlDesigner::Internal::SettingsPage - Form - Snapping - Привязка + Привязка - Item spacing - Межэлементное расстояние + Межэлементное расстояние - Snap margin - Отступ от края + Отступ от края - Qt Quick Designer - Дизайнер Qt Quick + Дизайнер Qt Quick 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 Название уже используется другим состоянием @@ -15221,12 +12481,10 @@ Please check your project settings. QmlDesigner::Internal::StatesEditorWidgetPrivate - base state исходное состояние - State%1 Default name for newly created states @@ -15235,7 +12493,6 @@ Please check your project settings. QmlDesigner::Internal::SubComponentManagerPrivate - QML Components Компоненты QML @@ -15243,7 +12500,6 @@ Please check your project settings. QmlDesigner::InvalidArgumentException - Failed to create item of type %1 Не удалось создать элемент типа %1 @@ -15251,25 +12507,21 @@ Please check your project settings. 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 <Фильтр> @@ -15278,7 +12530,6 @@ Please check your project settings. QmlDesigner::NavigatorTreeModel - Invalid Id Неверный идентификатор @@ -15286,7 +12537,6 @@ Please check your project settings. QmlDesigner::NavigatorWidget - Navigator Title of navigator view Навигатор @@ -15295,7 +12545,6 @@ Please check your project settings. QmlDesigner::PluginManager - About plugins О надстройках @@ -15303,7 +12552,6 @@ Please check your project settings. QmlDesigner::PropertyEditor - Invalid Id Неверный идентификатор @@ -15311,35 +12559,29 @@ Please check your project settings. QmlDesigner::QmlModelView - Invalid Id - Неверный идентификатор + Неверный идентификатор QmlDesigner::RewriterView - Error parsing Разбор ошибок - Internal error Внутренняя ошибка - "%1" "%1" - line %1 строка %1 - column %1 столбец %1 @@ -15347,7 +12589,6 @@ Please check your project settings. QmlDesigner::StatesEditorWidget - States Title of Editor widget Состояния @@ -15356,22 +12597,18 @@ Please check your project settings. QmlDesigner::XUIFileDialog - Open file Открыть файл - Save file Сохранить файл - Declarative UI files (*.qml) Файлы Declarative UI (*.qml) - All files (*) Все файлы (*) @@ -15379,78 +12616,62 @@ Please check your project settings. QmlJS::Check - '%1' is not a valid property name "%1" не является корректным именем свойства - unknown type неизвестный тип - unknown value for enum - неизвестное значение для enum + неизвестное значение для enum - '%1' does not have members "%1" не содержит членов - '%1' is not a member of '%2' "%1" не является членом "%2" - value might be 'undefined' - значение возможно 'undefined' + значение возможно 'undefined' - enum value is not a string or number значение перечисление не строка или число - numerical value expected требуется числовое значение - boolean value expected требуется булевое значение - string value expected требуется строковое значение - not a valid color некорректный цвет - expected anchor line требуется строка привязки - - expected id требуется id - using string literals for ids is discouraged не рекомендуется использовать строковые литералы в качестве id - ids must be lower case id должен быть в нижнем регистре @@ -15458,27 +12679,22 @@ Please check your project settings. QmlJS::Interpreter::QmlXmlReader - The file is not module file. Файл не является модулем. - Unexpected element <%1> in <%2> Неожиданный элемент <%1> в <%2> - invalid value '%1' for attribute %2 in <%3> Неверное значение "%1" атрибута %2 в <%3> - <%1> has no valid %2 attribute У <%1> нет корректного атрибута %2 - %1: %2 @@ -15486,38 +12702,25 @@ Please check your project settings. QmlJS::Link - could not find file or directory не удалось найти файл или каталог - expected two numbers separated by a dot ожидаются два числа разделённые точкой - package import requires a version number импорт пакета требует номер версии - package not found пакет не найден - - QmlJSEditor::Internal::HoverHandler - - - Unfiltered - Вся - - QmlJSEditor::Internal::ModelManager - Indexing Индексация @@ -15525,48 +12728,38 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSEditorFactory - Do you want to enable the experimental Qt Quick Designer? Желаете включить экспериментальный дизайнер Qt Quick? - - Enable Qt Quick Designer Включить дизайнер Qt Quick - Qt Creator -> About Plugins... Qt Creator -> О надстройках... - Help -> About Plugins... Справка -> О надстройках... - Enable experimental Qt Quick Designer? Включить экспериментальный дизайнер Qt Quick? - Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'. Желаете включить экспериментальный дизайнер Qt Quick? После его включения доступ к возможностям визуального дизайна можно будет получить переключением в режим дизайна. Это может повлиять на общую стабильность Qt Creator. Чтобы снова выключить дизайнер Qt Quick, необходимо зайти в меню "%1" и выключить "QmlDesigner". - Cancel Отмена - Please restart Qt Creator Перезапустите Qt Creator - Please restart Qt Creator to make the change effective. Перезапустите Qt Creator, чтобы изменения вступили в силу. @@ -15574,27 +12767,22 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSEditorPlugin - Creates a Qt QML file. Создание файла Qt QML. - Qt QML File Файл Qt QML - Qt Quick - Ctrl+Alt+R - Follow Symbol Under Cursor Перейти к символу под курсором @@ -15602,12 +12790,10 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSPreviewRunner - Failed to preview Qt Quick file Не удалось выполнить предпросмотр файла Qt Quick - Could not preview Qt Quick (QML) file. Reason: %1 Не удалось запустить предпросмотр файла Qt Quick (QML). Причина: @@ -15617,27 +12803,22 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSTextEditor - <Select Symbol> <Выберите символ> - Rename... Переименовать... - New id: Новый id: - Unused variable Неиспользуемая переменная - Rename id '%1'... Переименовать id '%1'... @@ -15645,7 +12826,6 @@ Please check your project settings. QmlManager - <Current File> <Текущий файл> @@ -15653,64 +12833,50 @@ Please check your project settings. QmlParser - Illegal character Недопустимый символ - Unclosed string at end of line Незакрытый литерал в конце строки - Illegal escape squence Недопустимая ESC-последовательность - Illegal unicode escape sequence Недопустимая ESC-последовательность юникода - 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' - - Syntax error Синтаксическая ошибка - Unexpected token `%1' Неожиданная лексема "%1" - - Expected token `%1' Ожидаемая лексема "%1" @@ -15718,7 +12884,6 @@ Please check your project settings. QmlProjectManager - Qt Quick Project Проект Qt Quick @@ -15726,7 +12891,6 @@ Please check your project settings. QmlProjectManager::Internal::Manager - Failed opening project '%1': Project already open Не удалось открыть проект "%1": проект уже открыт @@ -15734,12 +12898,10 @@ Please check your project settings. QmlProjectManager::Internal::QmlProjectApplicationWizard - Qt QML Application Приложение Qt QML - Creates a Qt QML application project with a single QML file containing the main view. QML application projects are executed through the QML runtime and do not need to be built. @@ -15748,21 +12910,18 @@ QML application projects are executed through the QML runtime and do not need to Приложение QML запускается средой исполнения QML и не требует сборки. - File generated by QtCreator qmlproject Template Comment added to generated .qmlproject file Файл созданный QtCreator - Include .qml, .js, and image files from current directory and subdirectories qmlproject Template Comment added to generated .qmlproject file - Включает файлы .qml, .js и изображений из текущего каталога и его подкаталогов + Включает файлы .qml, .js и изображений из текущего каталога и его подкаталогов - List of plugin directories passed to QML runtime qmlproject Template Comment added to generated .qmlproject file @@ -15772,12 +12931,10 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::Internal::QmlProjectApplicationWizardDialog - New QML Project Новый проект QML - This wizard generates a QML application project. Этот мастер создаст проект приложения QML. @@ -15785,31 +12942,26 @@ QML application projects are executed through the QML runtime and do not need to 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 Файл созданный QtCreator - Include .qml, .js, and image files from current directory and subdirectories qmlproject Template Comment added to generated .qmlproject file - Включает файлы .qml, .js и изображений из текущего каталога и его подкаталогов + Включает файлы .qml, .js и изображений из текущего каталога и его подкаталогов - List of plugin directories passed to QML runtime qmlproject Template Comment added to generated .qmlproject file @@ -15819,27 +12971,22 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::Internal::QmlProjectImportWizardDialog - Import Existing Qt QML Directory Импорт существующего каталога Qt QML - Project Name and Location Название и размещение проекта - Project name: Название проекта: - Location: Размещение: - Location Размещение @@ -15847,7 +12994,6 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::Internal::QmlProjectRunConfigurationFactory - Run QML Script Выполнить сценарий QML @@ -15855,7 +13001,6 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::Internal::QmlRunConfiguration - QML Viewer Просмотр QML @@ -15863,12 +13008,10 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::Internal::QmlRunControl - Starting %1 %2 Запускается %1 %2 - %1 exited with code %2 %1 завершился с кодом %2 @@ -15876,7 +13019,6 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::Internal::QmlRunControlFactory - Run Выполнить @@ -15884,7 +13026,6 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::Internal::QmlTaskManager - QML @@ -15892,7 +13033,6 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::QmlProject - Error while loading project file! Ошибка при загрузке файла проекта! @@ -15900,33 +13040,27 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::QmlProjectRunConfiguration - QML Viewer QMLRunConfiguration display name. - Просмотр QML + Просмотр QML - QML Viewer - Просмотр QML + Просмотр QML - QML Viewer arguments: - Параметры просмотра QML: + Параметры просмотра QML: - Main QML File: Основной файл QML: - Debugging Address: Адрес отладчика: - Debugging Port: Порт отладчика: @@ -15934,41 +13068,34 @@ QML application projects are executed through the QML runtime and do not need to QmlProjectManager::QmlTarget - QML Viewer QML Viewer target display name - Просмотр QML + Просмотр QML QrcEditor - Add Добавить - Remove Удалить - Properties Свойства - Prefix: Префикс: - Language: Язык: - Alias: Псевдоним: @@ -15976,7 +13103,6 @@ QML application projects are executed through the QML runtime and do not need to Qt Quick - Qt Quick @@ -15984,17 +13110,14 @@ QML application projects are executed through the QML runtime and do not need to Qt4ProjectManager - Qt4 Qt4 - Qt Versions Профили Qt - Qt C++ Project Проект Qt С++ @@ -16002,77 +13125,62 @@ QML application projects are executed through the QML runtime and do not need to Qt4ProjectManager::Internal::AbstractMaemoRunControl - No device configuration set for run configuration. Не выбрана конфигурация устройства для запуска. - Deploying Развёртывание - Files to deploy: %1. Файлы для установки: %1. - Deployment finished. Развёртывание завершено. - Deployment failed: %1 Развёртывание не удалось: %1 - Cleaning up remote leftovers first ... Сначала подчищаются внешние остатки... - Initial cleanup canceled by user. Начальная очистка отменена пользователем. - Error running initial cleanup: %1. Ошибка выполнения начальной очистки: %1. - Initial cleanup done. Начальная очистка выполнена. - Starting remote application. Запуск внешней программы. - Deployment canceled by user. Установка отменена пользователем. - Remote execution canceled due to user request. Внешнее выполнение отменено по запросу пользователя. - Error running remote process: %1 Ошибка выполнения внешнего процесса: %1 - Finished running remote process. Завершено выполнение внешнего процесса. - Remote Execution Failure Не удалось запустить удалённо @@ -16080,13 +13188,10 @@ QML application projects are executed through the QML runtime and do not need to Qt4ProjectManager::Internal::BaseQt4ProjectWizardDialog - - Modules Модули - Qt Versions Профили Qt @@ -16094,132 +13199,106 @@ QML application projects are executed through the QML runtime and do not need to Qt4ProjectManager::Internal::ClassDefinition - Form Форма - The header file Заголовочный файл - &Sources &Исходники - Widget librar&y: &Библиотека виджета: - Widget project &file: &Файл проекта виджета: - Widget h&eader file: &Заголовочный файл виджета: - Widge&t source file: Файл &реализации виджета: - Widget &base class: Б&азовый класс виджета: - QWidget QWidget - Plugin class &name: Имя класса &надстройки: - Plugin &header file: За&головочный файл надстройки: - Plugin sou&rce file: Файл реализа&ции надстройки: - Icon file: Файл значка: - &Link library &Подключить библиотеку - Create s&keleton Создать &основу - Include pro&ject Включить про&ект - &Description &Описание - G&roup: &Группа: - &Tooltip: &Подсказка: - W&hat's this: &Что это: - The widget is a &container Виджет &является контейнером - Property defa&ults Исхо&дные значения свойств - dom&XML: dom&XML: - Select Icon Выбор значка - Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) Файлы значков (*.png *.ico *.jpg *.xpm *.tif *.svg) - The header file has to be specified in source code. Заголовочный файл, указываемый в исходном коде. @@ -16227,17 +13306,14 @@ QML application projects are executed through the QML runtime and do not need to Qt4ProjectManager::Internal::ClassList - <New class> <Новый класс> - Confirm Delete Подтверждение удаления - Delete class %1 from list? Удалить класс %1 из списка? @@ -16245,12 +13321,10 @@ QML application projects are executed through the QML runtime and do not need to Qt4ProjectManager::Internal::ConsoleAppWizard - 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. @@ -16262,7 +13336,6 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::ConsoleAppWizardDialog - This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. Этот мастер создаст проект консольного приложения Qt4. Оно будет наследником от QCoreApplication и без GUI. @@ -16270,47 +13343,38 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::CustomWidgetPluginWizardPage - WizardPage 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 @@ -16318,27 +13382,22 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::CustomWidgetWidgetsWizardPage - Custom Qt Widget Wizard Мастер пользовательских виджетов - Custom Widget List Список пользовательских виджетов - Widget &Classes: &Классы виджетов: - Specify the list of custom widgets and their properties. Укажите список пользовательских виджетов и их свойств. - ... @@ -16346,12 +13405,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::CustomWidgetWizard - Qt Custom Designer Widget Пользовательский виджет Qt Designer - Creates a Qt Custom Designer Widget or a Custom Widget Collection. Создание пользовательского виджета Qt Designer или набора пользовательских виджетов. @@ -16359,17 +13416,14 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::CustomWidgetWizardDialog - This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. Этот мастер создаст пользовательский виджет или набор пользовательских виджетов для Qt4 Designer. - Custom Widgets Особые виджеты - Plugin Details Подробнее о надстройке @@ -16377,12 +13431,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::DesignerExternalEditor - Qt Designer is not responding (%1). Qt Designer не отвечает (%1). - Unable to create server socket: %1 Невозможно создать серверный сокет: %1 @@ -16390,12 +13442,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::EmptyProjectWizard - Empty Qt Project Пустой проект Qt - Creates a qmake-based project without any files. This allows you to create an application without any default classes. Создание проекта без файлов под управлением qmake. Это позволяет создать приложение без умолчальных классов. @@ -16403,7 +13453,6 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::EmptyProjectWizardDialog - This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. Этот мастер создаст пустой проект Qt4. Нужно будет позже добавить в него файлы с помощью других мастеров. @@ -16411,12 +13460,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::ExternalQtEditor - Unable to start "%1" Не удалось запустить "%1" - The application "%1" could not be found. Не удалось найти приложение "%1". @@ -16424,12 +13471,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::FilesPage - Class Information Информация о классе - Specify basic information about the classes for which you want to generate skeleton source code files. Укажите базовую информацию о классах, для которых желаете создать шаблоны файлов исходных текстов. @@ -16437,7 +13482,6 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::GettingStartedWelcomePage - Getting Started Начало работы @@ -16445,202 +13489,161 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget - Form Форма - Tutorials Учебники - Did You Know? Знаете ли вы, что? - The Qt Creator User Interface Интерфейс пользователя Qt Creator - Building and Running an Example Сборка и запуск примера - Creating a Qt C++ Application Создание приложения Qt на С++ - Creating a Mobile Application Создание мобильного приложения - Creating a Qt Quick Application Создание приложения Qt Quick - - Choose an example... Выберите пример... - Copy Project to writable Location? Скопировать проект в каталог с правами на запись? - <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>Открываемый проект находится в защищённом от записи каталоге:</p><blockquote>%1</blockquote><p>Ниже выберите каталог, в который разрешена запись, и щёлкните "Скопировать и открыть", для открытия изменяемой копии проекта, или "Открыть для чтения", чтобы открыть проект в текущем каталоге.</p><p><b>Изменение и сборка проекта, расположенного в данном каталоге, недоступны.</b></p> - &Location: &Размещение: - &Copy Project and Open &Скопировать и открыть - &Keep Project and Open Открыть для &чтения - Warning Внимание - The specified location already exists. Please specify a valid location. Указанный каталог уже существует. Укажите другой каталог. - New Project Новый проект - - Cmd Shortcut key - Alt Shortcut key - Ctrl Shortcut key - If you add external libraries to your project, Qt Creator will automatically offer syntax highlighting and code completion. Если добавить внешние библиотеки в проект, то Qt Creator автоматически включит их в подсветку синтаксиса и дополнение кода. - You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. Можно добавить свои этапы сборки в <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">настройках сборки</a>. - Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">dependencies</a> between projects. В пределах одной сессии можно добавлять <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">зависимости</a> проектов друг от друга. - You can show and hide the side bar using <tt>%1+0<tt>. Можно отображать и скрывать боковую панель, используя <tt>%1+0<tt>. - You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. Можно тонко настроить функцию <tt>Поиск</tt>, выбрав &quot;Слово целиком&quot; и/или &quot;Учитывать регистр&quot;. Просто кликните на иконку справа от редактируемой строки. - The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. Автодополнение кода ориентировано на ВерблюжийРегистр. Например, чтобы получить <tt>namespaceUri</tt> можно просто ввести <tt>nU</tt> и нажать <tt>Ctrl+Space</tt>. - You can force code completion at any time using <tt>Ctrl+Space</tt>. Можно в любой момент вызвать дополнение кода нажатием <tt>Ctrl+Space</tt>. - You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. Можно открыть сессию в Qt Creator, выполнив команду <tt>qtcreator &lt;sessionname&gt;</tt>. - You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. Можно вернуться в режим редактирования из любого другого режима нажатием на <tt>Escape</tt>. - You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> Можно переключать окно вывода используя <tt>%1+n</tt>, где n - число, указанное на кнопке внизу окна:<ul><li>1 - Сообщения сборки</li><li>2 - Результаты поиска</li><li>3 - Консоль программы</li><li>4 - Консоль сборки</li></ul> - You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). Можно осуществлять быстрый поиск методов, классов, справки и прочего, используя <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Панель поиска</a> (<tt>%1+K</tt>). - You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. Можно установить предпочитаемую кодировку редактора для каждого проекта в <tt>Проекты -> Настройки редактора -> Кодировка по умолчанию</tt>. - You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. Можно использовать Qt Creator с <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">системами контроля версий</a>, такими как Subversion, Perforce, CVS и Git. - 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... Открыть проект... @@ -16648,22 +13651,18 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::GnuPocS60DevicesWidget - 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 не должны совпадать. @@ -16671,12 +13670,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::GuiAppWizard - Qt Gui Application GUI приложение Qt - Creates a Qt application for the desktop. Includes a Qt Designer-based main window. Preselects a desktop Qt for building the application if available. @@ -16685,7 +13682,6 @@ Preselects a desktop Qt for building the application if available. Выбирается профиль Qt "Настольный" для сборки приложения, если он доступен. - The template file '%1' could not be opened for reading: %2 Файл шаблона '%1' не может быть открыт для чтения: %2 @@ -16693,12 +13689,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::GuiAppWizardDialog - This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. Этот мастер создаст проект графического приложения Qt4. По умолчанию приложение будет базироваться на QApplication и будет включать пустой виджет. - Details Подробнее @@ -16706,12 +13700,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::LibraryWizard - 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>. Создание проекта C++ библиотеки под управлением qmake. Может использоваться для разработки:<ul><li>разделяемая C++ библиотека для загрузки через <tt>QPluginLoader</tt> (надстройка)</li><li>разделяемая или статическая C++ библиотека для подключения к другому проекту на этапе компоновки</li></ul>. @@ -16719,32 +13711,26 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::LibraryWizardDialog - Shared library Динамическая библиотека - Statically linked library Статическая библиотека - Qt 4 plugin Надстройка Qt 4 - Type Тип - This wizard generates a C++ library project. Этот мастер создаст проект библиотеки С++. - Details Подробнее @@ -16752,74 +13738,62 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::MaemoConfigTestDialog - Testing configuration... Тестовая конфигурация... - Stop Test Остановить проверку - Device configuration test failed: %1 Ошибка при проверке настройки устройства: %1 - Did you start Qemu? Qemu уже запущен? - Qt version mismatch! Expected Qt on device: 4.6.2 or later. Неподходящий профиль Qt! Требуется Qt на устройстве: 4.6.2 и выше. - 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: @@ -16827,12 +13801,10 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MaemoPackageContents - Local File Path Путь к локальному файлу - Remote File Path Путь к удалённому файлу @@ -16840,101 +13812,77 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MaemoPackageCreationStep - 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". + Ошибка создания пакета: Не удалось заменить файл "%1". - Packaging Error: Could not copy '%1' to '%2'. Ошибка создания пакета: Не удалось скопировать "%1" в "%2". - Package created. Пакет создан. - Package Creation: Running command '%1'. Создание пакета: Выполнение команды "%1". - - Packaging failed. Не удалось создать пакет. - Packaging error: Could not start command '%1'. Reason: %2 Ошибка создания пакета: Не удалось выполнить команду "%1" по причине: %2 - - Packaging Error: Command '%1' timed out. - Ошибка создания пакета: Истекло время выполнения команды "%1". - - - Packaging Error: Command '%1' failed. Ошибка создания пакета: Команда "%1" завершилась с ошибкой. - Reason: %1 Причина: %1 - - Output was: - Вывод: + Exit code: %1 + Код завершения: %1 Qt4ProjectManager::Internal::MaemoPackageCreationWidget - <b>Create Package:</b> <b>Создать пакет:</b> - Choose a local file Выбор локального файла - File already in package Этот файл уже в пакете - You have already added this file. Этот файл уже был добавлен в пакет. @@ -16942,7 +13890,6 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MaemoRunConfiguration - New Maemo Run Configuration Новая конфигурация запуска Maemo @@ -16950,7 +13897,6 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MaemoRunConfigurationFactory - New Maemo Run Configuration Новая конфигурация запуска Maemo @@ -16958,32 +13904,26 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MaemoRunConfigurationWidget - Run configuration name: Название конфигурации запуска: - <a href="%1">Manage device configurations</a> <a href="%1">Управление конфигурациями устройств</a> - <a href="%1">Set Debugger</a> <a href="%1">Установить отладчик</a> - Device configuration: Конфигурация устройства: - Executable: Программа: - Arguments: Параметры: @@ -16991,7 +13931,6 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MaemoRunControlFactory - Run on device Выполнить на устройстве @@ -16999,7 +13938,6 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MaemoSettingsPage - Maemo Device Configurations Конфигурации устройств Maemo @@ -17007,54 +13945,43 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MaemoSettingsWidget - New Device Configuration %1 Standard Configuration name with number Новая конфигурация устройства %1 - Public Key Files(*.pub);;All Files (*) Файлы открытых ключей (*.pub);;Все файлы (*) - Could not read public key file '%1'. Не удалось прочитать файл открытого ключа "%1". - Key deployment failed: %1 Не удалось установить ключ: %1 - Deploy Public Key ... Установить ключ... - - Deployment Failed Установка не удалась - Choose Public Key File Выбор файла открытого ключа - Stop Deploying Прекратить установку - Key was successfully deployed. Ключ был успешно установлен. - Deployment Succeeded Установка выполнена @@ -17062,22 +13989,18 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MaemoSshConfigDialog - Save Public Key File Сохранение файла открытого ключа - Save Private Key File Сохранение файла секретного ключа - Error writing file Ошибка записи в файл - Could not write file '%1': %2 Не удалось записать файл "%1": @@ -17087,7 +14010,6 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MakeStepFactory - Make Сборка @@ -17095,12 +14017,10 @@ Qemu уже запущен? Qt4ProjectManager::Internal::MobileGuiAppWizard - 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 @@ -17112,12 +14032,10 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::ModulesPage - Select required modules Выбор необходимых модулей - Select the modules you want to include in your project. The recommended modules for this project are selected by default. Выберите модули, которые хотите включить в проект. Рекомендуемые для этого проекта модули уже выбраны по умолчанию. @@ -17125,17 +14043,14 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::PluginGenerator - Cannot open icon file %1. Не удалось открыть файл значка %1. - Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. Создание нескольких библиотек виджетов (%1, %2) в одном проекте (%3) не поддерживается. - Cannot open %1: %2 Не удалось открыть %1: %2 @@ -17143,7 +14058,6 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::ProjectLoadWizard - Project setup Настройка проекта @@ -17151,7 +14065,6 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::QMakeStepFactory - qmake qmake @@ -17159,33 +14072,30 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::QemuRuntimeManager - - Start Maemo Emulator Запустить эмулятор Maemo - Qemu has been shut down, because you removed the corresponding Qt version. Qemu был завершён, так как был удалён соответствующий ему профиль Qt. - + Qemu finished with error: Exit code was %1. + Qemu завершился с ошибкой: код завершения %1. + + Qemu failed to start: %1 Qemu не удалось запуститься: %1 - Qemu crashed Qemu завершился крахом - Qemu error Ошибка Qemu - Stop Maemo Emulator Остановить эмулятор Maemo @@ -17193,27 +14103,22 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::Qt4BuildConfigurationFactory - Using Qt Version "%1" Используется профиль Qt "%1" - New configuration Новая конфигурация - New Configuration Name: Название новой конфигурации: - %1 Debug %1 Отладка - %1 Release %1 Релиз @@ -17221,59 +14126,46 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::Qt4PriFileNode - Headers Заголовочные - Sources Исходники - Forms Формы - Resources Ресурсы - Other files Другие файлы - - - Failed! Не удалось! - Could not open the file for edit with SCC. Не удалось открыть файл для редактирования с помощью SCC. - Could not set permissions to writable. Не удалось разрешить запись. - There are unsaved changes for project file %1. Имеются несохранённые изменения в файле проекта %1. - Could not write project file %1. Не удалось записать в файл проекта %1. - Error while reading PRO file %1: %2 Ошибка чтения .PRO файла %1: %2 @@ -17281,13 +14173,10 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::Qt4ProFileNode - - Error while parsing file %1. Giving up. Ошибка разбора файла %1. Отмена. - Could not find .pro file for sub dir '%1' in '%2' Не удалось найти .pro файл для подкаталога '%1' в '%2' @@ -17295,83 +14184,67 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::Qt4ProjectConfigWidget - <a href="import">Import existing build</a> <a href="import">Импорт существующей сборки</a> - Shadow Build Directory Каталог теневой сборки - 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> - 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 обнаружена несовместимая сборка. Она будет замещена. - General Основное - Manage Управление - problemLabel - Configuration name: Название конфигурации: - Qt version: Профиль Qt: - This Qt version is invalid. Некорректный профиль Qt. - Tool chain: Инструментарий: - Shadow build: Теневая сборка: - Build directory: Каталог сборки: @@ -17379,23 +14252,18 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::Qt4ProjectManagerPlugin - - Run qmake Выполнить qmake - Build Собрать - Run qmake in %1 Выполнить qmake в %1 - Build in %1 Собрать в %1 @@ -17403,22 +14271,18 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::Qt4RunConfiguration - Clean Environment Чистая среда - System Environment Системная среда - Build Environment Среда сборки - Qt4 RunConfiguration Конфигурация запуска Qt4 @@ -17426,68 +14290,55 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::Qt4RunConfigurationWidget - Select Working Directory Выбор рабочего каталога - Working directory: Рабочий каталог: - Run in terminal Запускать в терминале - Run Environment Среда выполнения - Clean Environment Чистая среда - System Environment Системная среда - Build Environment Среда сборки - Arguments: Параметры: - Base environment for this runconfiguration: Базовая среда для этой конфигурации сборки: - Name: Имя: - Executable: Программа: - Reset to default "Сбросить к состоянию по умолчанию" - слишком длинно По умолчанию - Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) Использовать отладочные версии библиотек (DYLD_IMAGE_SUFFIX=_debug) @@ -17495,62 +14346,49 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::Qt4Target - - Desktop Qt4 Desktop target display name Настольный компьютер - - Symbian Emulator Qt4 Symbian Emulator target display name Эмулятор Symbian - - Symbian Device Qt4 Symbian Device target display name Устройство Symbian - Maemo Emulator Qt4 Maemo Emulator target display name Эмулятор Maemo - Maemo Device Qt4 Maemo Device target display name Устройство Maemo - Maemo Qt4 Maemo target display name Maemo - Qt Simulator Qt4 Simulator target display name Эмулятор Qt - <b>Device:</b> %1 <b>Устройство:</b> %1 - <b>Device:</b> %1, %2 <b>Устройство:</b> %1, %2 - <b>Device:</b> Not connected <b>Устройство:</b> не подключено @@ -17558,12 +14396,10 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::Qt4TargetFactory - Debug Отладка - Release Релиз @@ -17571,98 +14407,80 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::QtOptionsPageWidget - <specify a name> <укажите имя> - <specify a qmake location> <укажите размещение qmake> - Select qmake Executable Выберите исполняемый файлы qmake - Select the MinGW Directory Выберите каталог MinGW - Select Carbide Install Directory Выберите каталог, в который установлен Carbide - Select S60 SDK Root Выберите корень SDK для S60 - Select the CSL ARM Toolchain (GCCE) Directory Выберите каталог с инструментарием CSL ARM (GCCE) - Auto-detected Автоопределённая - Manual Особые - Building helpers Сборка помощников - <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>Изменён:</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 Symbian - Maemo Qt Version is meant for Maemo Maemo - 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) @@ -17671,27 +14489,22 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::QtVersionManager - + + - - - - Name Название - 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; } @@ -17704,57 +14517,46 @@ p, li { white-space: pre-wrap; } <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> - Show &Log &Журнал - &Rebuild &Пересобрать - S60 SDK: SDK для S60: - qmake Location Размещение qmake - Toolchain: Инструментарий: - Version name: Название версии: - qmake location: Размещение qmake: - MinGW directory: Каталог MinGW: - CSL/GCCE directory: Каталог CSL/GCCE: - Carbide directory: Каталог Carbide: - Debugging helper: Помощник отладчика: @@ -17762,7 +14564,6 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60CreatePackageStep - Create SIS Package Create SIS package build step name Создание пакета SIS @@ -17771,17 +14572,14 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60CreatePackageStepConfigWidget - self-signed самоподписанного - signed with certificate %1 and key file %2 подписанного сертификатом %1 и ключём %2 - <b>Create SIS Package:</b> %1 <b>Создание пакета SIS:</b> %1 @@ -17789,7 +14587,6 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60CreatePackageStepFactory - Create SIS Package Создание пакета SIS @@ -17797,27 +14594,22 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60CreatePackageStepWidget - Form Форма - Self-signed certificate Самоподписанный сертификат - Custom certificate: Особый сертификат: - Choose certificate file (.cer) Выбор файл сертификата (.cer) - Key file: Файл ключа: @@ -17825,17 +14617,14 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceDebugRunControl - Launching debugger... Запускается отладчик... - Debugging finished. Отладка завершена. - Warning: Cannot locate the symbol file belonging to %1. Внимание! Не удалось обнаружить файл символов, соответствующих %1. @@ -17843,12 +14632,10 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunConfiguration - QtS60DeviceRunConfiguration QtS60DeviceRunConfiguration - %1 on Symbian Device %1 на устройстве с Symbian @@ -17856,7 +14643,6 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunConfigurationFactory - %1 on Symbian Device %1 на устройстве с Symbian @@ -17864,37 +14650,30 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget - Name: Имя: - Arguments: Параметры: - Installation file: Установочный файл: - Device on serial port: Последовательный порт устройства: - Queries the device for information Запрашивает информацию у устройства - Connecting... Подключение... - Device: Устройство: @@ -17902,22 +14681,18 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunControl - Could not start application: %1 Не удалось запустить приложение: %1 - Starting application... Запуск приложения... - Application running with pid %1. Приложение выполняется с PID %1. - Finished. Завершено. @@ -17925,121 +14700,98 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunControlBase - Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running. Не удалось подключиться к телефону через порт "%1": %2 Убедитесь, что телефон подключён, и на нём работает App TRK. - There is no device plugged in. Устройство не подключено. - Deploying Развёртывание - Executable file: %1 Исполняемый файл: %1 - Debugger for Symbian Platform Отладчик для платформы Symbian - 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 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... Копирование установочного файла... - Installing application... Установка приложения... - Could not install from package %1 on device: %2 Не удалось установить из пакета %1 на устройстве: %2 - Waiting for App TRK Ожидание App TRK - Please start App TRK on %1. Запустите App TRK на %1. - Canceled. Отменено. - The device '%1' has been disconnected Устройство "%1" было отключено @@ -18047,27 +14799,22 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::S60Devices::Device - Id: Id: - Name: Название: - EPOC: EPOC: - Tools: Инструментарий: - Qt: Qt: @@ -18075,22 +14822,18 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::S60DevicesBaseWidget - Default По умолчанию - SDK Location Размещение SDK - Qt Location Размещение Qt - Choose Qt folder Выбор каталога Qt @@ -18098,7 +14841,6 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::S60DevicesModel - No Qt installed Qt не установлена @@ -18106,37 +14848,30 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::S60DevicesPreferencePane - Form Форма - Refresh Обновить - S60 SDKs SDK для S60 - Error Ошибка - Add Добавить - Change Qt version Сменить профиль Qt - Remove Удалить @@ -18144,12 +14879,10 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::S60EmulatorRunConfiguration - %1 in Symbian Emulator %1 в эмуляторе Symbian - Qt Symbian Emulator RunConfiguration Конфигурация запуска в эмуляторе Qt Symbian @@ -18157,7 +14890,6 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::S60EmulatorRunConfigurationFactory - %1 in Symbian Emulator %1 в эмуляторе Symbian @@ -18165,12 +14897,10 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget - Name: Имя: - Executable: Программа: @@ -18178,17 +14908,14 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::S60EmulatorRunControl - Starting %1... Запускается %1... - [Qt Message] [Сообщение Qt] - %1 exited with code %2 %1 завершился с кодом %2 @@ -18196,17 +14923,14 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::S60Manager - Run in Emulator Выполнить на эмуляторе - Run on Device Выполнить на устройстве - Debug on Device Отладить на устройстве @@ -18214,78 +14938,64 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::TargetSetupPage - Qt Creator can set up the following targets: Qt Creator может настроить следующие цели: - Qt Version Профиль Qt - Status Состояние - No builds found Сборки не найдены - No builds for project file "%1" were found in the folder "%2". %1: pro-file, %2: directory that was checked. Сборки для файла проекта "%1" не были найдены в каталоге "%2". - <b>Error:</b> Severity is Task::Error <b>Ошибка:</b> - <b>Warning:</b> Severity is Task::Warning <b>Предупреждение:</b> - Qt Creator can set up the following targets for project <b>%1</b>: %1: Project name - Qt Creator позволяет настроить следующие цели для проекта <b>%1</b>: + Qt Creator позволяет настроить следующие цели для проекта <b>%1</b>: - Choose a directory to scan for additional shadow builds Выбор директории для поиска дополнительных теневых сборок - 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? Новая - Setup targets for your project Настройте цели вашего проекта - Build Directory Каталог сборки - Import Existing Shadow Build... Импорт каталога теневой сборки... @@ -18293,12 +15003,10 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::TestWizard - 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 для класса или свойства. Юнит тесты позволяют проверять код на соответствие целям и отсутствие регрессий. @@ -18306,12 +15014,10 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::TestWizardDialog - This wizard generates a Qt unit test consisting of a single source file with a test class. Этот мастер создаст юнит тест Qt, содержащий один исходный файл с проверяющим объектом. - Details Подробнее @@ -18319,62 +15025,50 @@ Deploying application to '%2'... Qt4ProjectManager::Internal::TestWizardPage - WizardPage WizardPage - 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 Информация о тестовом классе @@ -18382,13 +15076,11 @@ Deploying application to '%2'... Qt4ProjectManager::MakeStep - Make Qt4 MakeStep display name. Сборка - Could not find make command: %1 in the build environment Не удалось найти в среде окружения сборки команду: %1 @@ -18396,17 +15088,14 @@ Deploying application to '%2'... Qt4ProjectManager::MakeStepConfigWidget - <b>Make:</b> %1 not found in the environment. <b>Сборка:</b>программа %1 не найдена. - <b>Make:</b> %1 %2 in %3 <b>Make:</b> %1 %2 в %3 - Override %1: Заменить %1: @@ -18414,18 +15103,15 @@ Deploying application to '%2'... Qt4ProjectManager::QMakeStep - qmake QMakeStep display name. qmake - Configuration is faulty, please check the Build Issues view for details. Конфигурация неисправна. Окно "Сообщения сборки" содержит подробную информацию. - Configuration unchanged, skipping qmake step. Настройки не изменились, этап qmake пропускается. @@ -18433,12 +15119,10 @@ Deploying application to '%2'... Qt4ProjectManager::QMakeStepConfigWidget - <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 @@ -18446,12 +15130,10 @@ Deploying application to '%2'... Qt4ProjectManager::Qt4Manager - Failed opening project '%1': Project file does not exist Не удалось открыть проект '%1': файл проекта отсутствует - Failed opening project '%1': Project already open Не удалось открыть проект '%1': проект уже открыт @@ -18459,7 +15141,6 @@ Deploying application to '%2'... Qt4ProjectManager::Qt4Project - Evaluating Вычисление @@ -18467,13 +15148,11 @@ Deploying application to '%2'... Qt4ProjectManager::QtVersion - 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" или она неисполняема. @@ -18482,48 +15161,38 @@ Deploying application to '%2'... Qt4ProjectManager::QtVersionManager - <not found> <не найдена> - - Qt in PATH Qt в PATH - Name: Название: - Source: Исходники: - mkspec: mkspec: - qmake: qmake: - Default: По умолчанию: - Version: Версия: - Debugging helper: Помощник отладчика: @@ -18531,12 +15200,10 @@ Deploying application to '%2'... QtDumperHelper - Found an outdated version of the debugging helper library (%1); version %2 is required. Обнаружена устаревшая библиотека помощника отладчика (%1). Необходима версия %2. - %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 %n известный тип, Qt версии: %1, пространство имён Qt: %2, Версия дампера: %3 @@ -18545,7 +15212,6 @@ Deploying application to '%2'... - <none> <нет> @@ -18553,7 +15219,6 @@ Deploying application to '%2'... QtGradientDialog - Edit Gradient Правка градиента @@ -18561,304 +15226,242 @@ Deploying application to '%2'... QtGradientEditor - 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 Зеркальная - Form Форма - Gradient Editor Редактор градиента - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. Эта область отображает предварительный вариант настраиваемого градиента. Также она позволяет менять с помощью перетаскивания характерные для градиента параметры, такие как: начальная и конечная точки, радиус и пр. - 1 1 - 2 2 - 3 3 - 4 4 - 5 5 - Gradient Stops Editor Редактор опорных точек градиента - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. Эта область позволяет редактировать опорные точки градиента. Двойной щелчок на существующей точке создаст её копию. Двойной клик вне существующей точки создаст новую. Точки можно перемещать путем удерживания левой кнопки. По правой кнопке можно получить контекстное меню дополнительных действий. - Zoom Масштаб - Reset Zoom 100% - Position Положение - Hue Оттенок - H H - Saturation Насыщенность - S S - Sat Насыщение - Value Значение - V V - Val Значение - Alpha Альфа - A A - Type Тип - Spread Заливка - Color Цвет - Current stop's color Цвет текущей точки - Show HSV specification Настройки в виде HSV - HSV HSV - Show RGB specification Настройки в виде RGB - RGB RGB - Current stop's position Положение текущей точки - % % - Zoom In Увеличить - Zoom Out Уменьшить - Toggle details extension Показать/скрыть детальные настройки - > > - Linear Type Линейный тип - ... ... - Radial Type Радиальный тип - Conical Type Конический тип - Pad Spread Равномерная заливка - Repeat Spread Цикличная заливка - Reflect Spread Зеркальная заливка @@ -18866,37 +15469,30 @@ Deploying application to '%2'... QtGradientStopsWidget - New Stop Новая точка - Delete Удалить - Flip All Отобразить зеркально - Select All Выделить все - Zoom In Увеличить - Zoom Out Уменьшить - Reset Zoom Сбросить масштаб @@ -18904,46 +15500,34 @@ Deploying application to '%2'... QtGradientView - Grad Градиент - Remove Gradient Удалить градиент - Are you sure you want to remove the selected gradient? Вы действительно желаете удалить выбранный градиент? - - New... Новый... - - Edit... Правка... - - Rename Переименовать - - Remove Удалить - Gradient View Просмотр градиента @@ -18951,8 +15535,6 @@ Deploying application to '%2'... QtGradientViewDialog - - Select Gradient Выбрать градиент @@ -18960,82 +15542,66 @@ Deploying application to '%2'... QtModulesInfo - Core non-GUI classes used by other modules Основные неграфические классы, используемые другими модулями - Graphical user interface components Элементы графического интерфейса пользователя - Classes for network programming Классы для работы с сетью - OpenGL support classes Классы для работы с OpenGL - Classes for database integration using SQL Классы интеграции с базами данных SQL - Classes for evaluating Qt Scripts Классы для обработки сценариев Qt - Additional Qt Script components Дополнительные компоненты Qt Script - Classes for displaying the contents of SVG files Классы для отображения содержимого файлов SVG - Classes for displaying and editing Web content Классы для отображения и правки вэб-страниц - Classes for handling XML Классы для работы с XML - An XQuery/XPath engine for XML and custom data models Движок XQuery/XPath для XML и пользовательских моделей данных - Multimedia framework classes Мультимедийные классы - Classes for low-level multimedia functionality Классы для низкоуровневой работы с мультимедиа-содержимым - Classes that ease porting from Qt 3 to Qt 4 Классы для простого портирования с Qt3 на Qt4 - Tool classes for unit testing Служебные классы для тестирования элементов - Classes for Inter-Process Communication using the D-Bus Классы для межпроцессного взаимодействия с использованием D-Bus @@ -19043,27 +15609,22 @@ Deploying application to '%2'... QtVersion - No qmake path set Путь к qmake не указан - Qt version has no name Профиль Qt не имеет названия - 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 Qt Version has no toolchain. У профиля Qt нет инструментария. @@ -19071,45 +15632,37 @@ Deploying application to '%2'... RectangleColorGroupBox - Colors - Цвета + Цвета - Stops - Опорные точки + Опорные точки - Gradient Stops - Опорные точки градиента + Опорные точки градиента - Rectangle - Прямоугольник + Прямоугольник - Border - Рамка + Рамка RectangleSpecifics - Rectangle Прямоугольник - Radius Радиус - Border Рамка @@ -19117,102 +15670,82 @@ Deploying application to '%2'... RegExp::Internal::RegExpWindow - &Pattern: &Шаблон: - &Escaped Pattern: Экран&ированный шаблон: - &Pattern Syntax: &Правила шаблона: - &Text: &Текст: - Case &Sensitive Учитывать &регистр - &Minimal &Минимально - Index of Match: Номер совпадения: - Matched Length: Совпадение длины: - Regular expression v1 Регулярное выражение v1 - Regular expression v2 Регулярное выражение v2 - Wildcard - Символ-заменитель + Маска - Fixed string Фиксированная строка - Capture %1: Захват %1: - Match: Соответствие: - Regular Expression Регулярное выражение - Enter pattern from code... Ввод шаблона из кода... - Clear patterns Очистить шаблоны - Clear texts Очистить тексты - Enter pattern from code Ввод шаблона из кода - Pattern Шаблон @@ -19220,22 +15753,18 @@ Deploying application to '%2'... ResourceEditor::Internal::ResourceEditorPlugin - Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. Создание файла ресурсов Qt (.qrc) для добавления в проект Qt C++. - Qt Resource file Файл ресурсов Qt - &Undo От&менить - &Redo &Повторить @@ -19243,7 +15772,6 @@ Deploying application to '%2'... ResourceEditor::Internal::ResourceEditorW - untitled безымянный @@ -19251,7 +15779,6 @@ Deploying application to '%2'... RunSettingsPanel - Run Settings Настройки запуска @@ -19259,7 +15786,6 @@ Deploying application to '%2'... RunSettingsPanelFactory - Run Settings Настройки запуска @@ -19267,18 +15793,15 @@ Deploying application to '%2'... SaveItemsDialog - Save Changes Сохранение изменений - The following files have unsaved changes: Следующие файлы имеют несохранённые изменения: - Automatically save all files before building Автоматически сохранять все файлы перед сборкой @@ -19287,62 +15810,50 @@ Deploying application to '%2'... SharedTools::QrcEditor - Add Files Добавить файлы - Add Prefix - Добавить приставку + Добавить префикс - Copy Копировать - Skip Пропустить - Abort Прервать - 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. @@ -19350,72 +15861,58 @@ Deploying application to '%2'... 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: Алиас: @@ -19423,7 +15920,6 @@ Deploying application to '%2'... ShowBuildLog - Debugging Helper Build Log Журнал сборки помощника отладчика @@ -19431,7 +15927,6 @@ Deploying application to '%2'... Snippets::Internal::SnippetsPlugin - Snippets Фрагменты @@ -19439,7 +15934,6 @@ Deploying application to '%2'... Snippets::Internal::SnippetsWindow - Snippets Фрагменты @@ -19447,18 +15941,14 @@ Deploying application to '%2'... SshKeyGenerator - Error creating temporary files. Ошибка создания временных файлов. - Error generating keys: %1 Ошибка создания ключей: %1 - - Error reading temporary files. Ошибка чтения временных файлов. @@ -19466,27 +15956,22 @@ Deploying application to '%2'... StandardTextColorGroupBox - Color Цвет - Text Текст - Style Стиль - Selection Выделение - Selected Выделено @@ -19494,33 +15979,26 @@ Deploying application to '%2'... StandardTextGroupBox - - Text Текст - Wrap Mode Режим переноса - - Aliasing Ступенчатость - Smooth Гладкий - Alignment Выравнивание @@ -19528,22 +16006,18 @@ Deploying application to '%2'... StartExternalDialog - Start Debugger Запуск отладчика - Executable: Программа: - Arguments: Параметры: - Break at 'main': Останов на 'main': @@ -19551,47 +16025,38 @@ Deploying application to '%2'... StartExternalQmlDialog - Debugging address: Адрес отладчика: - Debugging port: Порт отладчика: - 127.0.0.1 - Project: Проект: - <No project> <Не указан> - To switch languages while debugging, go to Debug->Language menu. Для переключения языков при отладке, перейдите в меню Отладка->Язык. - Start Simultaneous QML and C++ Debugging Запуск одновременной отладки C++ и QML - Viewer path: Программа просмотра: - Viewer arguments: Параметры программы: @@ -19599,42 +16064,34 @@ Deploying application to '%2'... StartRemoteDialog - Start Debugger Запуск отладчика - Host and port: Хост и порт: - Architecture: Архитектура: - Use server start script: Использовать скрипт: - Server start script: Скрипт запуска сервера: - Debugger: Отладчик: - Local executable: Локальная программа: - Sysroot: Системный корень: @@ -19642,12 +16099,10 @@ Deploying application to '%2'... Subversion::Internal::CheckoutWizard - Checks out a Subversion repository and tries to load the contained project. Извлечение хранилища Subversion с последующей попыткой загрузки содержащегося там проекта. - Subversion Checkout Извлечь из Subversion @@ -19655,17 +16110,14 @@ Deploying application to '%2'... Subversion::Internal::CheckoutWizardPage - Location Размещение - Specify repository URL, checkout directory and path. Выбор URL хранилища, каталога извлечения и пути. - Repository: Хранилище: @@ -19673,62 +16125,50 @@ Deploying application to '%2'... Subversion::Internal::SettingsPage - Authentication Авторизация - Password: Пароль: - Subversion Subversion - Configuration Настройка - Miscellaneous Разное - Timeout: Время ожидания: - s сек - Prompt on submit Спрашивать при фиксации - Ignore whitespace changes in annotation Пропускать изменения пробелов в описании - Log count: Количество отображаемых записей истории фиксаций: - Subversion command: Команда Subversion: - Username: Имя пользователя: @@ -19736,7 +16176,6 @@ Deploying application to '%2'... Subversion::Internal::SettingsPageWidget - Subversion Command Команда Subversion @@ -19744,7 +16183,6 @@ Deploying application to '%2'... Subversion::Internal::SubversionEditor - Annotate revision "%1" Аннотация ревизии "%1" @@ -19752,296 +16190,238 @@ Deploying application to '%2'... Subversion::Internal::SubversionPlugin - &Subversion &Subversion - Add Добавить - Add "%1" Добавить "%1" - Alt+S,Alt+A Alt+S,Alt+A - Diff Project Сравнить проект - Diff Current File Сравнить текущий файл - Diff "%1" Сравнить "%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 "%1" История "%1" - Annotate Current File Аннотация текущего файла (annotate) - Annotate "%1" Аннотация "%1" (annotate) - Commit Project Фиксировать проект - Commit Project "%1" Фиксировать проект "%1" - Diff Repository Сравнить всё - Repository Status Состояние хранилища - Log Repository История хранилища - Update Repository Обновить всё - Describe... Описать (describe)... - Project Status Состояние проекта - Delete... Удалить... - Delete "%1"... Удалить "%1"... - Revert... Откатить... - Revert "%1"... Откатить "%1"... - Diff Project "%1" Сравнить проект "%1" - Status of Project "%1" Состояние проекта "%1" - Log Project "%1" История проекта "%1" - Log Project История проекта - Update Project Обновить проект - Update Project "%1" Обновить проект "%1" - Revert Repository... Откатить все изменения... - Commit Фиксировать - Diff Selected Files Сравнить выделенные файлы - &Undo От&менить - &Redo &Вернуть - 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 Откатить все изменения - Would you like to revert all 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. Нет изменённых файлов. - Cannot create temporary file: %1 Не удаётся создать временный файл: %1 - Describe Описание - Revision number: Номер ревизии: - Executing in %1: %2 %3 Выполняется в %1: %2 %3 - No subversion executable specified! Исполняемый файл Subversion не указан! - Executing: %1 %2 Выполняется: %1 %2 - 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 ms). @@ -20049,7 +16429,6 @@ Deploying application to '%2'... Subversion::Internal::SubversionSubmitEditor - Subversion Submit Фиксация Subversion @@ -20057,27 +16436,22 @@ Deploying application to '%2'... Switches - special properties специальные свойства - layout and geometry компоновка и геометрия - Geometry Геометрия - advanced properties дополнительные свойства - Advanced Дополнительно @@ -20085,7 +16459,6 @@ Deploying application to '%2'... SymbolGroup - Out of scope Вне области @@ -20093,7 +16466,6 @@ Deploying application to '%2'... TargetSettingsPanelFactory - Targets Цели @@ -20101,12 +16473,10 @@ Deploying application to '%2'... TextEditSpecifics - Text Edit Текстовый редактор - Format Формат @@ -20114,7 +16484,6 @@ Deploying application to '%2'... TextEditor - Text Editor Текстовый редактор @@ -20122,18 +16491,14 @@ Deploying application to '%2'... TextEditor::BaseFileFind - - %1 found %1 найдено - List of comma separated wildcard filters Список масок, разделённых запятой - Use regular e&xpressions Использовать регул&ярные выражения @@ -20141,12 +16506,10 @@ Deploying application to '%2'... TextEditor::BaseTextDocument - untitled безымянный - <em>Binary data</em> <em>Бинарные данные</em> @@ -20154,17 +16517,14 @@ Deploying application to '%2'... TextEditor::BaseTextEditor - Print Document Печать документа - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. <b>Ошибка:</b> Не удалось преобразовать "%1" в кодировку "%2". Редактирование невозможно. - Select Encoding Выбрать кодировку @@ -20172,12 +16532,10 @@ Deploying application to '%2'... TextEditor::BaseTextEditorEditable - Line: %1, Col: %2 Строка: %1, Столбец: %2 - Line: %1, Col: 999 Строка: %1, Столбец: 999 @@ -20185,142 +16543,114 @@ Deploying application to '%2'... TextEditor::BehaviorSettingsPage - Tab key performs auto-indent: Автоотступ по клавише TAB: - Never Никогда - Always Всегда - 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 &Автоотступы - Mouse Мышь - Enable &mouse navigation Включить навигацию &мышью - Enable scroll &wheel zooming Включить масштабирование &колёсиком - 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 Перед текстом @@ -20328,125 +16658,101 @@ Deploying application to '%2'... TextEditor::DisplaySettingsPage - Display - Отображать + Отображение - Display line &numbers - &Номера строк + Показывать &номера строк - Display &folding markers - &Маркеры сворачивания кода + Показывать &область сворачивания кода - Show tabs and spaces. Отображение табуляций и пробелов. - &Visualize whitespace - &Пробельные символы + &Показывать пробельные символы - Highlight current &line - Подсветку текущей &строки + Подсвечивать текущую &строку - Highlight &blocks - Подсветку &блоков + Подсвечивать &блоки - Text Wrapping Перенос текста - Enable text &wrapping &Разрешить перенос текста - Display right &margin at column: Отображать правую &границу на столбце: - Mark &text changes - Маркеры изменения &текста + Отмечать изменённый &текст - &Animate matching parentheses - &Анимацию совпадающих скобок + &Анимировать парные скобки - Auto-fold first &comment С&ворачивать первый комментарий - Center &cursor on scroll - Прокрутка ни&же конца файла + Прокрутка ни&же конца текста TextEditor::FontSettingsPage - Font && Colors Шрифт и цвета - Copy Color Scheme Копировать цветовую схему - 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 Отмена @@ -20454,29 +16760,24 @@ Deploying application to '%2'... 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 Сохранить в кодировке @@ -20484,7 +16785,6 @@ The following encodings are likely to fit: TextEditor::Internal::ColorScheme - Not a color scheme file. Это не файл цветовой схемы. @@ -20492,32 +16792,26 @@ The following encodings are likely to fit: TextEditor::Internal::ColorSchemeEdit - Bold Жирный - Italic Курсив - Background: Фон: - Foreground: Текст: - Erase background Убрать фон - x x @@ -20525,7 +16819,6 @@ The following encodings are likely to fit: TextEditor::Internal::FindInCurrentFile - Current File Текущий файл @@ -20533,27 +16826,22 @@ The following encodings are likely to fit: TextEditor::Internal::FindInFiles - Files on File System Файлы в системе - &Directory: &Каталог: - &Browse &Обзор - File &pattern: Ш&аблон: - Directory to search Каталог поиска @@ -20561,7 +16849,6 @@ The following encodings are likely to fit: TextEditor::Internal::FontSettings - Customized Настроенная @@ -20569,47 +16856,38 @@ The following encodings are likely to fit: TextEditor::Internal::FontSettingsPage - Font Шрифт - Family: Название: - Size: Размер: - Antialias Сглаживание - Color Scheme Цветовая схема - Delete Удалить - Copy... Копировать... - % % - Zoom: Масштаб: @@ -20617,12 +16895,10 @@ The following encodings are likely to fit: TextEditor::Internal::LineNumberFilter - Line in current document Строка в текущем документе - Line %1 Строка %1 @@ -20630,42 +16906,34 @@ The following encodings are likely to fit: TextEditor::Internal::TextEditorPlugin - 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 Основное - Triggers a completion in this scope Переключение завершения в этой области - Ctrl+Space - Meta+Space - Triggers a quick fix in this scope Переключает быстрое дополнение в этой области - Alt+Return @@ -20673,343 +16941,275 @@ The following encodings are likely to fit: TextEditor::TextEditorActionHandler - &Undo &Отменить - &Redo &Вернуть - Select Encoding... Выбрать кодировку... - Auto-&indent Selection буквальный перевод "автоотступить выделенное" Сделать &автоотступ - Ctrl+I - Meta - Ctrl - &Rewrap Paragraph &Переделать переносы - &Visualize Whitespace Отображение про&белов - Clean Whitespace Очистить пробелы - Enable Text &Wrapping П&еренос текста - %1+E, R - %1+E, %2+V - %1+E, %2+W - (Un)Comment &Selection &Закомментировать/раскомментировать - Ctrl+/ - Cut &Line В&ырезать строку - Shift+Del - Delete &Line Удалить строк&у - Collapse Свернуть - Ctrl+< - Expand Развернуть - Ctrl+> - (Un)&Collapse All Свернут&ь/развернуть всё - Increase Font Size Увеличить шрифт - Ctrl++ - Decrease Font Size Уменьшить шрифт - Ctrl+- - Reset Font Size Восстановить размер шрифта - Ctrl+0 - Go to Block Start Перейти в начало блока - Go to Block End Перейти в конец блока - Go to Block Start With Selection Перейти в начало блока с выделением - Go to Block End With Selection Перейти в конец блока с выделением - Goto Line Start Перейти в начало строки - Goto Line End Перейти в конец строки - Goto Next Line Перейти на следующую строку - Goto Previous Line Перейти на предыдущую строку - Goto Previous Character Перейти на предыдущий символ - Goto Next Character Перейти на следующий символ - Goto Previous Word Перейти на предыдущее слово - Goto Next Word Перейти на следующее слово - Goto Line Start With Selection Перейти в начало строки с выделением - Goto Line End With Selection Перейти в конец строки с выделением - Goto Next Line With Selection Перейти на следующую строку с выделением - Goto Previous Line With Selection Перейти на предыдущую строку с выделением - Goto Previous Character With Selection Перейти на предыдущий символ с выделением - Goto Next Character With Selection Перейти на следующий символ с выделением - Goto Previous Word With Selection Перейти на предыдущее слово с выделением - Goto Next Word With Selection Перейти на следующее слово с выделением - Ctrl+[ - Ctrl+] - Ctrl+{ - Ctrl+} - Select Block Up Выделить блок вверх - Ctrl+U - Select Block Down Выделить блок вниз - Move Line Up Переместить строку выше - Ctrl+Shift+Up - Move Line Down Переместить строку ниже - Ctrl+Shift+Down - Copy Line Up Скопировать строку выше - Ctrl+Alt+Up - Copy Line Down Скопировать строку ниже - Ctrl+Alt+Down - Join Lines Объединить строки - Ctrl+J - <line number> <номер строки> @@ -21017,152 +17217,122 @@ The following encodings are likely to fit: TextEditor::TextEditorSettings - Text Текст - Link Ссылка - Selection Выделение - Line Number Номер строки - Search Result Результат поиска - Search Scope Область поиска - Parentheses Круглые скобки - Current Line Текущая строка - Current Line Number Номер текущей строки - Occurrences Совпадения - Unused Occurrence Неиспользуемое - Renaming Occurrence Переименуемое - Number Число - String Строка - Type Тип - Keyword Ключевое слово - Operator Оператор - Preprocessor Препроцессор - Label Метка - Comment Примечание - Doxygen Comment Коментарий Doxygen - Doxygen Tag Тэг Doxygen - Visual Whitespace Обозначать пробельные символы - Disabled Code Отключённый код - Added Line Добавленная строка - Removed Line Удалённая строка - Diff File Сравнение: изменённые файлы - Diff Location Сравнение: размещение - Behavior Поведение - Display Вид @@ -21170,52 +17340,42 @@ The following encodings are likely to fit: TextInputGroupBox - Text Input Текстовый ввод - Input Mask Маска ввода - Echo Mode Режим эха - Pass. Char Символ пароля - Password Character Символ пароля - Flags Флаги - Read Only Только для чтения - Cursor Visible Курсор виден - Focus On Press Выбирать при нажатии - Auto Scroll Прокручивать автоматически @@ -21223,72 +17383,58 @@ The following encodings are likely to fit: ToolChain - GCC - Intel C++ Compiler (Linux) - Microsoft Visual C++ - Windows CE - WINSCW - GCCE - GCCE/GnuPoc - RVCT (ARMV6)/GnuPoc - RVCT (ARMV5) - RVCT (ARMV6) - GCC for Maemo GCC для Maemo - Other Другой - <Invalid> <Некорректный> - <Unknown> <Неизвестный> @@ -21296,27 +17442,22 @@ The following encodings are likely to fit: TopicChooser - Choose a topic for <b>%1</b>: Выбор темы для <b>%1</b>: - Choose Topic Выбор темы - &Topics &Темы - &Display &Показать - &Close &Закрыть @@ -21324,67 +17465,54 @@ The following encodings are likely to fit: Transformation - Transformation Преобразование - Origin Начало - Top Left Верхний левый - Top Верхний - Top Right Верхний правый - Left Левый - Center Центральный - Right Правый - Bottom Left Нижний левый - Bottom Нижний - Bottom Right Нижний правый - Scale Масштаб - Rotation Вращение @@ -21392,13 +17520,10 @@ The following encodings are likely to fit: Type - - Type Тип - Id @@ -21406,17 +17531,14 @@ The following encodings are likely to fit: Utils::CheckableMessageBox - Dialog Dialog - TextLabel TextLabel - CheckBox CheckBox @@ -21424,17 +17546,14 @@ The following encodings are likely to fit: Utils::ClassNameValidatingLineEdit - The class name must not contain namespace delimiters. Имя класса не должно содержать разделителей пространств имён. - Please enter a class name. Введите имя класса. - The class name contains invalid characters. Имя класса содержит недопустимые символы. @@ -21442,62 +17561,50 @@ The following encodings are likely to fit: Utils::ConsoleProcess - Cannot set up communication channel: %1 Не удалось создать канал передачи данных: %1 - Press <RETURN> to close this window... Для закрытия данного окна нажмите <ВВОД>... - Cannot create temporary file: %1 Не удалось создать временный файл: %1 - Cannot create temporary directory '%1': %2 Не удалось создать временный каталог '%1': %2 - Unexpected output from helper program. Неожиданные данные от служебной программы. - Cannot change to working directory '%1': %2 Не удалось войти в рабочий каталог '%1': %2 - Cannot execute '%1': %2 Не удалось выполнить '%1': %2 - Cannot start the terminal emulator '%1'. Не удалось запустить эмулятор терминала '%1'. - Cannot create socket '%1': %2 Не удалось создать сокет '%1': %2 - The process '%1' could not be started: %2 Не удалось запустить процесс '%1': %2 - Cannot obtain a handle to the inferior: %1 Не удалось получить идентификатор подчинённого процесса: %1 - Cannot obtain exit status from inferior: %1 Не удалось получить код завершения подчинённого процесса: %1 @@ -21505,7 +17612,6 @@ The following encodings are likely to fit: Utils::DetailsButton - Details Подробнее @@ -21513,12 +17619,10 @@ The following encodings are likely to fit: Utils::FancyMainWindow - Locked Зафиксировано - Reset to Default Layout Сбросить в исходное состояние @@ -21526,27 +17630,22 @@ The following encodings are likely to fit: Utils::FileNameValidatingLineEdit - Name is empty. Пустое название. - Name contains white space. Название содержит пробелы. - Invalid character '%1'. Недопустимый символ "%1". - Invalid characters '%1'. Недопустимые символы "%1". - Name matches MS Windows device. (%1). Название совпадает с названием устройства MS Windows. (%1). @@ -21554,7 +17653,6 @@ The following encodings are likely to fit: Utils::FileSearch - %1: canceled. %n occurrences found in %2 files. %1: отменено. %n совпадение найдено в %2 файле(ах). @@ -21563,7 +17661,6 @@ The following encodings are likely to fit: - %1: %n occurrences found in %2 files. %1: %n совпадение найдено в %2 файле(ах). @@ -21572,7 +17669,6 @@ The following encodings are likely to fit: - %1: %n occurrences found in %2 of %3 files. %1: %n совпадение найдено в %2 из %3 файлах. @@ -21584,7 +17680,6 @@ The following encodings are likely to fit: Utils::FileWizardDialog - Location Размещение @@ -21592,12 +17687,10 @@ The following encodings are likely to fit: Utils::FilterLineEdit - Filter Фильтр - Clear text Очистить текст @@ -21605,7 +17698,6 @@ The following encodings are likely to fit: Utils::LinearProgressWidget - ... ... @@ -21613,82 +17705,66 @@ The following encodings are likely to fit: Utils::NewClassWidget - Invalid base class name Некорректное имя базового класса - Invalid header file name: '%1' Некорректное имя заголовочного файла: '%1' - Invalid source file name: '%1' Некорректное имя файла исходников: '%1' - Invalid form file name: '%1' Некорректное имя файла формы: '%1' - Inherits QObject Наследуется от QObject - None Не указан - Inherits QWidget Наследуется от QWidget - Based on QSharedData Основан на QSharedData - &Class name: &Имя класса: - &Base class: &Базовый класс: - &Type information: &Тип класса: - &Header file: &Заголовочный файл: - &Source file: &Файл исходников: - &Generate form: &Создать форму: - &Form file: Ф&айл формы: - &Path: &Путь: @@ -21696,47 +17772,38 @@ The following encodings are likely to fit: Utils::PathChooser - Choose... Выбрать... - Browse... Обзор... - Choose Directory Выбор каталога - Choose File Выбор файла - The path must not be empty. Путь не должен быть пустым. - The path '%1' does not exist. Путь '%1' не существует. - The path '%1' is not a directory. Путь '%1' не является путём к каталогу. - The path '%1' is not a file. Путь '%1' не является путём к файлу. - Path: Путь: @@ -21744,27 +17811,22 @@ The following encodings are likely to fit: Utils::PathListEditor - Insert... Вставить... - Add... Добавить... - Delete Line Удалить строку - Clear Очистить - From "%1" Из "%1" @@ -21772,37 +17834,30 @@ The following encodings are likely to fit: 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 Размещение проекта по умолчанию @@ -21810,7 +17865,6 @@ The following encodings are likely to fit: Utils::ProjectNameValidatingLineEdit - Invalid character '.'. Недопустимый символ ".". @@ -21818,17 +17872,14 @@ The following encodings are likely to fit: Utils::SubmitEditorWidget - Subversion Submit Фиксация Subversion - Des&cription Оп&исание - F&iles &Файлы @@ -21836,7 +17887,6 @@ The following encodings are likely to fit: 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> @@ -21844,17 +17894,14 @@ The following encodings are likely to fit: Utils::WizardPage - Name: Имя: - Path: Путь: - Choose the Location Выбор размещения @@ -21862,27 +17909,22 @@ The following encodings are likely to fit: 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. Желаете его сохранить под другим именем или закрыть? - Close Закрыть - Save as... Сохранить как... - Save Сохранить @@ -21890,150 +17932,121 @@ The following encodings are likely to fit: Utils::reloadPrompt - File Changed Файл изменён - - The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? - Несохранённый файл %1 был изменён вне Qt Creator. Перезагрузить его с потерей изменений? + 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 %1 has changed outside Qt Creator. Do you want to reload it? - Файл %1 был изменён вне Qt Creator. Желаете перезагрузить его? + The file <i>%1</i> has changed outside Qt Creator. Do you want to reload it? + Файл <i>%1</i> был изменён вне Qt Creator. Желаете перезагрузить его? VCS - CVS Commit Editor Редактор фиксаций CVS - CVS Command Log Editor Редактор журнала команд CVS - CVS File Log Editor Редактор журнала файлов CVS - CVS Annotation Editor Редактор аннотации CVS - CVS Diff Editor Редактор изменений CVS - Git Command Log Editor Редактор журнала команд Git - Git File Log Editor Редактор журнала файлов Git - Git Annotation Editor Редактор аннотации Git - Git Diff Editor Редактор изменений Git - Git Submit Editor Редактор фиксаций Git - Mercurial Command Log Editor Редактор журнала команд Mercurial - Mercurial File Log Editor Редактор журнала файлов Mercurial - Mercurial Annotation Editor Редактор аннотации Mercurial - Mercurial Diff Editor Редактор изменений Mercurial - Mercurial Commit Log Editor Редактор журнала фиксации Mercurial - Perforce.SubmitEditor Редактор фиксаций Perforce - Perforce CommandLog Editor Редактор журнала команд Perforce - Perforce Log Editor Редактор журнала Perforce - Perforce Diff Editor Редактор изменений Perforce - 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 @@ -22041,17 +18054,14 @@ The following encodings are likely to fit: VCSBase - Version Control Контроль версий - Common Общее - Project from Version Control Проект из системы контроля версий @@ -22059,32 +18069,26 @@ The following encodings are likely to fit: VCSBase::BaseCheckoutWizard - Cannot Open Project Не удалось открыть проект - Failed to open project in '%1'. Не удалось открыть проект в '%1'. - Could not find any project files matching (%1) in the directory '%2'. Не удалось найти ни одного файла проекта соответствующего "%1" в каталоге "%2". - The Project Explorer is not available. Обозреватель проекта недоступен. - '%1' does not exist. '%1' отсутствует. - Unable to open the project '%1'. Не удалось открыть проект '%1'. @@ -22092,17 +18096,14 @@ The following encodings are likely to fit: VCSBase::BaseCheckoutWizardPage - WizardPage WizardPage - Checkout Directory: Каталог извлечения: - Path: Путь: @@ -22110,47 +18111,38 @@ The following encodings are likely to fit: 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 - %1 bytes, last modified %2 %1 байт(ов), изменён %2 - Delete Удалить - Do you want to delete %n files? Желаете удалить %n файл? @@ -22159,12 +18151,10 @@ The following encodings are likely to fit: - Cleaning %1 Очистка %1 - Clean Repository Очистить хранилище @@ -22172,22 +18162,18 @@ The following encodings are likely to fit: VCSBase::Internal::CheckoutProgressWizardPage - Checkout Извлечение - Checkout started... Извлечение запущено... - Failed. Сбой. - Succeeded. Успешно. @@ -22195,27 +18181,22 @@ The following encodings are likely to fit: VCSBase::Internal::NickNameDialog - Name Имя - E-mail E-mail - Alias Алиас - Alias e-mail E-mail алиаса - Cannot open '%1': %2 Не удалось открыть %1: %2 @@ -22223,27 +18204,22 @@ The following encodings are likely to fit: 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... Останавливается... @@ -22251,12 +18227,10 @@ The following encodings are likely to fit: VCSBase::SubmitFileModel - State Состояние - File Файл @@ -22264,17 +18238,14 @@ The following encodings are likely to fit: VCSBase::VCSBaseEditor - Annotate "%1" Аннотация '%1' - Copy "%1" Копировать "%1" - Describe change %1 Описать изменение %1 @@ -22282,17 +18253,14 @@ The following encodings are likely to fit: VCSBase::VCSBaseOutputWindow - Open "%1" Открыть "%1" - Clear Очистить - Version Control Контроль версий @@ -22300,47 +18268,38 @@ The following encodings are likely to fit: VCSBase::VCSBasePlugin - Version Control Контроль версий - The file '%1' could not be deleted. Не удалось удалить файл "%1". - 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 Хранилище создано - A version control repository has been created in %1. Хранилище контроля версиями создано в %1. - Repository creation failed Не удалось создать хранилище - A version control repository could not be created in %1. Не удалось создать хранилище контроля версий в %1. @@ -22348,57 +18307,46 @@ The following encodings are likely to fit: VCSBase::VCSBaseSubmitEditor - Check message Проверие сообщение - Insert name... Вставить имя... - Prompt to submit Спрашивать при фиксации - Submit Message Check failed Не удалось проверить сообщение - Executing %1 Выполнение %1 - Executing [%1] %2 Выполнение [%1] %2 - 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' crashed Скрипт проверки "%1" завершился авариайно - The check script returned exit code %1. Скрипт проверки вернул код %1. @@ -22406,12 +18354,10 @@ The following encodings are likely to fit: VCSManager - Version Control Контроль версий - Would you like to remove this file from the version control system (%1)? Note: This might remove the local file. Отменить контроль версий (%1) для этого файла? @@ -22421,47 +18367,38 @@ Note: This might remove the local file. ViewDialog - Send to Codepaster Отправить в Codepaster - &Username: &Пользователь: - <Username> <Пользователь> - &Description: &Описание: - <Description> <Описание> - Patch 1 - Patch 2 - Protocol: Протокол: - <!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; } @@ -22474,7 +18411,6 @@ p, li { white-space: pre-wrap; } <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;Комментарий&gt;</span></p></body></html> - Parts to Send to Server Части для отправки на сервер @@ -22482,23 +18418,18 @@ p, li { white-space: pre-wrap; } Visibility - - Visibility Видимость - Is visible Виден - Clip Обрезка - Opacity Непрозрачность @@ -22506,25 +18437,21 @@ p, li { white-space: pre-wrap; } WebViewSpecifics - WebView - + - Preferred Width - Желаемая ширина + Предпочтительная ширина - Page Height - Высота страницы + По высоте страницы Welcome::Internal::CommunityWelcomePage - News && Support Новости и поддержка @@ -22532,57 +18459,46 @@ p, li { white-space: pre-wrap; } Welcome::Internal::CommunityWelcomePageWidget - Form Форма - News From the Qt Labs Новости от Qt Labs - Qt Support Sites Сайты поддержки Qt - Qt Links Ссылки Qt - <b>Forum Nokia</b><br /><font color='gray'>Mobile Application Support</font> <b>Форум Nokia</b><br /><font color='gray'>Поддержка по мобильным приложениям</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</b><br /><font color='gray'>Поддержка Qt силами сообщества</font> - <b>Qt Home</b><br /><font color='gray'>Qt by Nokia on the web</font> <b>Домашняя страница Qt</b><br /><font color='gray'>Qt от Nokia в сети</font> - <b>Qt Git Hosting</b><br /><font color='gray'>Participate in Qt development</font> <b>Размещение Git хранилищ Qt</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> - http://labs.trolltech.com/blogs/feed http://labs.trolltech.com/blogs/feed @@ -22590,12 +18506,10 @@ p, li { white-space: pre-wrap; } Welcome::WelcomeMode - Welcome Начало - #headerFrame { border-image: url(:/welcome/images/center_frame_header.png) 0; border-width: 0; @@ -22608,12 +18522,10 @@ p, li { white-space: pre-wrap; } - Help us make Qt Creator even better Помогите нам сделать Qt Creator лучше - Feedback Обратная связь @@ -22621,27 +18533,22 @@ p, li { white-space: pre-wrap; } 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. @@ -22649,7 +18556,6 @@ p, li { white-space: pre-wrap; } emptyPane - none or multiple items selected ничего не выбрано или выбрано несколько элементов @@ -22657,27 +18563,22 @@ p, li { white-space: pre-wrap; } mainClass - main main - Text1: Text1: - N/A Н/Д - Text2: Text2: - Text3: Text3: @@ -22685,73 +18586,58 @@ p, li { white-space: pre-wrap; } qdesigner_internal::QtGradientStopsController - H H - S S - V V - - Hue Тон - Sat Нас - Val Знч - Saturation Насыщенность - Value Значение - R R - G G - B B - Red Красный - Green Зелёный - Blue Голубой @@ -22759,7 +18645,6 @@ p, li { white-space: pre-wrap; } trk::BaseCommunicationStarter - %1: timed out after %n attempts using an interval of %2ms. %1: время истекло после %n попытки через каждые %2 мс. @@ -22768,12 +18653,10 @@ p, li { white-space: pre-wrap; } - %1: Connection attempt %2 succeeded. %1: Подключено в %2-й попытки. - %1: Connection attempt %2 failed: %3 (retrying)... %1: Попытка подключиться %2 не удалась: %3 (повтор)... @@ -22781,37 +18664,30 @@ p, li { white-space: pre-wrap; } trk::BluetoothListener - %1: Stopping listener %2... %1: Остановка приёмника %2... - %1: Starting Bluetooth listener %2... %1: Запуск приёмника Bluetooth %2... - Unable to run '%1': %2 Не удалось запустить '%1': %2 - %1: Bluetooth listener running (%2). %1: Приёмник Bluetooth работает (%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 @@ -22819,17 +18695,14 @@ p, li { white-space: pre-wrap; } trk::Launcher - Cannot open remote file '%1': %2 Невозможно открыть внешний файл "%1": %2 - Cannot open '%1': %2 Невозможно открыть "%1": %2 - Unable to acquire a device for port '%1'. It appears to be in use. Не удалось получить доступ к устройству через "%1". Возможно, оно уже используется. @@ -22837,40 +18710,33 @@ p, li { white-space: pre-wrap; } 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 Процессор: 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 - big endian big endian - little endian little endian - , type size: %1 will be inserted into s60description , размер целого: %1 - , float size: %1 will be inserted into s60description , размер float: %1 @@ -22879,27 +18745,22 @@ p, li { white-space: pre-wrap; } trk::promptStartCommunication - Connection on %1 canceled. Подключение на %1 отменено. - Waiting for App TRK Ожидание App TRK - Waiting for App TRK to start on %1... Ожидание запуска App TRK на %1... - Waiting for Bluetooth Connection Ожидание подключения по Bluetooth - Connecting to %1... Подключение к %1... -- cgit v1.2.1 From 4660ff4a0401f750417c5d901fad1db79487ccde Mon Sep 17 00:00:00 2001 From: kh1 Date: Thu, 29 Jul 2010 15:33:58 +0200 Subject: Highlight only topics, not in text hits. Task-number: QTCREATORBUG-1964 Reviewed-by: kh --- src/plugins/help/helpplugin.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp index fee7634ac0..e8c733b0f7 100644 --- a/src/plugins/help/helpplugin.cpp +++ b/src/plugins/help/helpplugin.cpp @@ -857,12 +857,13 @@ void HelpPlugin::highlightSearchTerms() if (name.isEmpty()) continue; - if (m_oldAttrValue == name) { + if (m_oldAttrValue == name + || name.startsWith(m_oldAttrValue + QLatin1Char('-'))) { QWebElement parent = element.parent(); parent.setStyleProperty(property, m_styleProperty); } - if (attrValue == name) { + if (attrValue == name || name.startsWith(attrValue + QLatin1Char('-'))) { QWebElement parent = element.parent(); m_styleProperty = parent.styleProperty(property, QWebElement::InlineStyle); @@ -871,7 +872,6 @@ void HelpPlugin::highlightSearchTerms() } m_oldAttrValue = attrValue; #endif - viewer->findText(m_idFromContext, 0, false, true); } } -- cgit v1.2.1 From 308b462973bf90802d28bc946176f526f5bd302a Mon Sep 17 00:00:00 2001 From: Lasse Holmstedt Date: Thu, 29 Jul 2010 16:58:12 +0200 Subject: QML Inspector: Disable debug actions when qml inspector is disabled Reviewed-by: Thomas Hartmann --- src/plugins/debugger/debuggeruiswitcher.cpp | 5 +++++ src/plugins/debugger/debuggeruiswitcher.h | 2 ++ src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp | 9 ++++++--- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/src/plugins/debugger/debuggeruiswitcher.cpp b/src/plugins/debugger/debuggeruiswitcher.cpp index a7db1101a7..2c9b2237e2 100644 --- a/src/plugins/debugger/debuggeruiswitcher.cpp +++ b/src/plugins/debugger/debuggeruiswitcher.cpp @@ -153,6 +153,11 @@ DebuggerUISwitcher::~DebuggerUISwitcher() delete d; } +QStringList DebuggerUISwitcher::supportedLanguages() const +{ + return d->m_languages; +} + void DebuggerUISwitcher::addMenuAction(Core::Command *command, const QString &langName, const QString &group) { diff --git a/src/plugins/debugger/debuggeruiswitcher.h b/src/plugins/debugger/debuggeruiswitcher.h index 52a4e1cb3a..522d5fd61a 100644 --- a/src/plugins/debugger/debuggeruiswitcher.h +++ b/src/plugins/debugger/debuggeruiswitcher.h @@ -77,6 +77,8 @@ public: void addMenuAction(Core::Command *command, const QString &langName, const QString &group = QString()); + QStringList supportedLanguages() const; + // Changes the active language UI to the one specified by langName. // Does nothing if automatic switching is toggled off from settings. void setActiveLanguage(const QString &langName); diff --git a/src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp b/src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp index de6e9bba30..3307df5b4c 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectruncontrol.cpp @@ -37,7 +37,6 @@ #include #include #include -#include #include #include @@ -147,8 +146,12 @@ QmlRunControlFactory::~QmlRunControlFactory() bool QmlRunControlFactory::canRun(RunConfiguration *runConfiguration, const QString &mode) const { - Q_UNUSED(mode); - return (qobject_cast(runConfiguration) != 0); + QmlProjectRunConfiguration *config = qobject_cast(runConfiguration); + if (mode == ProjectExplorer::Constants::RUNMODE) { + return config != 0; + } else { + return (config != 0) && Debugger::DebuggerUISwitcher::instance()->supportedLanguages().contains(Qml::Constants::LANG_QML); + } } RunControl *QmlRunControlFactory::create(RunConfiguration *runConfiguration, -- cgit v1.2.1 From e2347b3d9202ac55e08cc069f8659adc6ec250c3 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Fri, 30 Jul 2010 19:39:55 +0200 Subject: git: Added an option to undo unstaged changes only --- src/plugins/git/gitclient.cpp | 28 +++++++++++++++++++--------- src/plugins/git/gitclient.h | 10 +++++++--- src/plugins/git/gitplugin.cpp | 17 ++++++++++++++--- src/plugins/git/gitplugin.h | 3 ++- 4 files changed, 42 insertions(+), 16 deletions(-) diff --git a/src/plugins/git/gitclient.cpp b/src/plugins/git/gitclient.cpp index 335a85068c..9f9a646ea1 100644 --- a/src/plugins/git/gitclient.cpp +++ b/src/plugins/git/gitclient.cpp @@ -584,18 +584,22 @@ bool GitClient::synchronousInit(const QString &workingDirectory) bool GitClient::synchronousCheckoutFiles(const QString &workingDirectory, QStringList files /* = QStringList() */, QString revision /* = QString() */, - QString *errorMessage /* = 0 */) + QString *errorMessage /* = 0 */, + bool revertStaging /* = true */) { if (Git::Constants::debug) qDebug() << Q_FUNC_INFO << workingDirectory << files; - if (revision.isEmpty()) + if (revertStaging && revision.isEmpty()) revision = QLatin1String("HEAD"); if (files.isEmpty()) files = QStringList(QString(QLatin1Char('.'))); QByteArray outputText; QByteArray errorText; QStringList arguments; - arguments << QLatin1String("checkout") << revision << QLatin1String("--") << files; + arguments << QLatin1String("checkout"); + if (revertStaging) + arguments << revision; + arguments << QLatin1String("--") << files; const bool rc = synchronousGit(workingDirectory, arguments, &outputText, &errorText); if (!rc) { const QString fileArg = files.join(QLatin1String(", ")); @@ -1392,7 +1396,10 @@ bool GitClient::addAndCommit(const QString &repositoryDirectory, * reverting a directory pending a sophisticated selection dialog in the * VCSBase plugin. */ -GitClient::RevertResult GitClient::revertI(QStringList files, bool *ptrToIsDirectory, QString *errorMessage) +GitClient::RevertResult GitClient::revertI(QStringList files, + bool *ptrToIsDirectory, + QString *errorMessage, + bool revertStaging) { if (Git::Constants::debug) qDebug() << Q_FUNC_INFO << files; @@ -1454,7 +1461,7 @@ GitClient::RevertResult GitClient::revertI(QStringList files, bool *ptrToIsDirec if (Git::Constants::debug) qDebug() << Q_FUNC_INFO << data.stagedFiles << data.unstagedFiles << allStagedFiles << allUnstagedFiles << stagedFiles << unstagedFiles; - if (stagedFiles.empty() && unstagedFiles.empty()) + if ((!revertStaging || stagedFiles.empty()) && unstagedFiles.empty()) return RevertUnchanged; // Ask to revert (to do: Handle lists with a selection dialog) @@ -1468,19 +1475,22 @@ GitClient::RevertResult GitClient::revertI(QStringList files, bool *ptrToIsDirec return RevertCanceled; // Unstage the staged files - if (!stagedFiles.empty() && !synchronousReset(repoDirectory, stagedFiles, errorMessage)) + if (revertStaging && !stagedFiles.empty() && !synchronousReset(repoDirectory, stagedFiles, errorMessage)) return RevertFailed; + QStringList filesToRevert = unstagedFiles; + if (revertStaging) + filesToRevert += stagedFiles; // Finally revert! - if (!synchronousCheckoutFiles(repoDirectory, stagedFiles + unstagedFiles, QString(), errorMessage)) + if (!synchronousCheckoutFiles(repoDirectory, filesToRevert, QString(), errorMessage, revertStaging)) return RevertFailed; return RevertOk; } -void GitClient::revert(const QStringList &files) +void GitClient::revert(const QStringList &files, bool revertStaging) { bool isDirectory; QString errorMessage; - switch (revertI(files, &isDirectory, &errorMessage)) { + switch (revertI(files, &isDirectory, &errorMessage, revertStaging)) { case RevertOk: m_plugin->gitVersionControl()->emitFilesChanged(files); break; diff --git a/src/plugins/git/gitclient.h b/src/plugins/git/gitclient.h index 3d65928b6c..8c7670d021 100644 --- a/src/plugins/git/gitclient.h +++ b/src/plugins/git/gitclient.h @@ -106,7 +106,8 @@ public: bool synchronousInit(const QString &workingDirectory); bool synchronousCheckoutFiles(const QString &workingDirectory, QStringList files = QStringList(), - QString revision = QString(), QString *errorMessage = 0); + QString revision = QString(), QString *errorMessage = 0, + bool revertStaging = true); // Checkout branch bool synchronousCheckoutBranch(const QString &workingDirectory, const QString &branch, QString *errorMessage = 0); @@ -156,7 +157,7 @@ public: void subversionLog(const QString &workingDirectory); void stashPop(const QString &workingDirectory); - void revert(const QStringList &files); + void revert(const QStringList &files, bool revertStaging); void branchList(const QString &workingDirectory); void stashList(const QString &workingDirectory); bool synchronousStashList(const QString &workingDirectory, @@ -241,7 +242,10 @@ private: unsigned synchronousGitVersion(bool silent, QString *errorMessage = 0); enum RevertResult { RevertOk, RevertUnchanged, RevertCanceled, RevertFailed }; - RevertResult revertI(QStringList files, bool *isDirectory, QString *errorMessage); + RevertResult revertI(QStringList files, + bool *isDirectory, + QString *errorMessage, + bool revertStaging); void connectRepositoryChanged(const QString & repository, GitCommand *cmd); void pull(const QString &workingDirectory, bool rebase); diff --git a/src/plugins/git/gitplugin.cpp b/src/plugins/git/gitplugin.cpp index b54607b447..e5f17b0c5f 100644 --- a/src/plugins/git/gitplugin.cpp +++ b/src/plugins/git/gitplugin.cpp @@ -334,9 +334,15 @@ bool GitPlugin::initialize(const QStringList &arguments, QString *errorMessage) globalcontext, true, SLOT(blameFile())); parameterActionCommand.second->setDefaultKeySequence(QKeySequence(tr("Alt+G,Alt+B"))); + parameterActionCommand + = createFileAction(actionManager, gitContainer, + tr("Undo Unstaged Changes"), tr("Undo Unstaged Changes for \"%1\""), + QLatin1String("Git.UndoUnstaged"), globalcontext, + true, SLOT(undoUnstagedFileChanges())); + parameterActionCommand = createFileAction(actionManager, gitContainer, - tr("Undo Changes"), tr("Undo Changes for \"%1\""), + tr("Undo Uncommitted Changes"), tr("Undo Uncommitted Changes for \"%1\""), QLatin1String("Git.Undo"), globalcontext, true, SLOT(undoFileChanges())); parameterActionCommand.second->setDefaultKeySequence(QKeySequence(tr("Alt+G,Alt+U"))); @@ -560,12 +566,17 @@ void GitPlugin::logProject() m_gitClient->log(state.currentProjectTopLevel(), state.relativeCurrentProject()); } -void GitPlugin::undoFileChanges() +void GitPlugin::undoFileChanges(bool revertStaging) { const VCSBase::VCSBasePluginState state = currentState(); QTC_ASSERT(state.hasFile(), return) Core::FileChangeBlocker fcb(state.currentFile()); - m_gitClient->revert(QStringList(state.currentFile())); + m_gitClient->revert(QStringList(state.currentFile()), revertStaging); +} + +void GitPlugin::undoUnstagedFileChanges() +{ + undoFileChanges(false); } void GitPlugin::undoRepositoryChanges() diff --git a/src/plugins/git/gitplugin.h b/src/plugins/git/gitplugin.h index 676362cc69..16852d9cd9 100644 --- a/src/plugins/git/gitplugin.h +++ b/src/plugins/git/gitplugin.h @@ -108,7 +108,8 @@ private slots: void logFile(); void blameFile(); void logProject(); - void undoFileChanges(); + void undoFileChanges(bool revertStaging = true); + void undoUnstagedFileChanges(); void undoRepositoryChanges(); void stageFile(); void unstageFile(); -- cgit v1.2.1 From 4f52f576dda0528195e1e4f942b237931b93fe5a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= Date: Mon, 2 Aug 2010 15:13:33 +0200 Subject: doc: Fixed shortcut mentioned to move backward for Mac OS X Thanks to RT200 for noticing this one. --- doc/qtcreator.qdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc index 3a8440d7d9..7b33f5696f 100644 --- a/doc/qtcreator.qdoc +++ b/doc/qtcreator.qdoc @@ -6268,7 +6268,7 @@ To move forward in the location history, press \key {Alt+Right} (\key {Cmd+Opt+Right} on Mac OS). To move backward, press \key {Alt+Left} - (\key {Cmd+Opt+Right} on Mac OS). For example, if you use the \gui Locator + (\key {Cmd+Opt+Left} on Mac OS). For example, if you use the \gui Locator to jump to a symbol in the same file, you can jump back to your original location in that file by pressing \key {Alt+Left}. -- cgit v1.2.1 From 1099fc322fd2d75784629886d30d8006b2d32bf0 Mon Sep 17 00:00:00 2001 From: Pierre Rossi Date: Tue, 3 Aug 2010 16:33:05 +0200 Subject: Make the locale specific ts targets tolerate paths with underscores Reviewed-by: ossi --- share/qtcreator/translations/translations.pro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro index ae4bd5c1bd..a606ba6c93 100644 --- a/share/qtcreator/translations/translations.pro +++ b/share/qtcreator/translations/translations.pro @@ -32,7 +32,7 @@ QMAKE_EXTRA_TARGETS += extract files = $$files($$PWD/*_??.ts) $$PWD/qtcreator_untranslated.ts for(file, files) { - lang = $$replace(file, .*_(.*)\\.ts, \\1) + lang = $$replace(file, .*_([^/]*)\\.ts, \\1) v = ts-$${lang}.commands $$v = cd $$IDE_SOURCE_TREE && $$LUPDATE src share/qtcreator/qmldesigner $$MIME_TR_H $$CUSTOMWIZARD_TR_H -ts $$file v = ts-$${lang}.depends -- cgit v1.2.1 From 0aea1325742487bb4b06d617b0b70c1da18a8ab9 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Wed, 4 Aug 2010 16:58:12 +0200 Subject: Update S60 header pathes * Update list of S60 header pathes to match up with what is put into the Makefile by QMake (minus ../tmp directories). --- .../qt4projectmanager/qt-s60/s60devices.cpp | 32 ++++++++++++++++------ 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/src/plugins/qt4projectmanager/qt-s60/s60devices.cpp b/src/plugins/qt4projectmanager/qt-s60/s60devices.cpp index 087b621946..ff4d540511 100644 --- a/src/plugins/qt4projectmanager/qt-s60/s60devices.cpp +++ b/src/plugins/qt4projectmanager/qt-s60/s60devices.cpp @@ -524,25 +524,41 @@ QList S60ToolChainMixin::epocHeaderPaths() const rc << ProjectExplorer::HeaderPath(epocRootPath, ProjectExplorer::HeaderPath::GlobalHeaderPath) + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("include"), + ProjectExplorer::HeaderPath::GlobalHeaderPath) + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("mkspecs/common/symbian"), + ProjectExplorer::HeaderPath::GlobalHeaderPath) + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include"), + ProjectExplorer::HeaderPath::GlobalHeaderPath) + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/osextensions/stdapis"), + ProjectExplorer::HeaderPath::GlobalHeaderPath) + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/osextensions/stdapis/sys"), + ProjectExplorer::HeaderPath::GlobalHeaderPath) << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/stdapis"), ProjectExplorer::HeaderPath::GlobalHeaderPath) << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/stdapis/sys"), ProjectExplorer::HeaderPath::GlobalHeaderPath) - << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/stdapis/stlportv5"), + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/osextensions/stdapis/stlport"), + ProjectExplorer::HeaderPath::GlobalHeaderPath) + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/stdapis/stlport"), + ProjectExplorer::HeaderPath::GlobalHeaderPath) + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/oem"), + ProjectExplorer::HeaderPath::GlobalHeaderPath) + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/middleware"), ProjectExplorer::HeaderPath::GlobalHeaderPath) - << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/mw"), + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/domain/middleware"), ProjectExplorer::HeaderPath::GlobalHeaderPath) - << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/mw"), + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/osextensions"), ProjectExplorer::HeaderPath::GlobalHeaderPath) - << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform"), + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/domain/osextensions"), ProjectExplorer::HeaderPath::GlobalHeaderPath) - << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/loc"), + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/domain/osextensions/loc"), ProjectExplorer::HeaderPath::GlobalHeaderPath) - << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/mw/loc"), + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/domain/middleware/loc"), ProjectExplorer::HeaderPath::GlobalHeaderPath) - << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/loc/sc"), + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/domain/osextensions/loc/sc"), ProjectExplorer::HeaderPath::GlobalHeaderPath) - << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/platform/mw/loc/sc"), + << ProjectExplorer::HeaderPath(epocRootPath + QLatin1String("epoc32/include/domain/middleware/loc/sc"), ProjectExplorer::HeaderPath::GlobalHeaderPath); return rc; } -- cgit v1.2.1 From 5841b6ac31e5672218e748f5b1df8bf0b8f98306 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 5 Aug 2010 16:32:25 +0200 Subject: Debugger [CDB]: Spelling fix. --- src/plugins/debugger/cdb/cdboptionspagewidget.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/debugger/cdb/cdboptionspagewidget.ui b/src/plugins/debugger/cdb/cdboptionspagewidget.ui index 505f7c8bf4..26bbd3b900 100644 --- a/src/plugins/debugger/cdb/cdboptionspagewidget.ui +++ b/src/plugins/debugger/cdb/cdboptionspagewidget.ui @@ -98,7 +98,7 @@ - fast loading of debugging helpers + Fast loading of debugging helpers -- cgit v1.2.1 From 111b89d7553fc1b3fdba4e7f4d4ec30f60c03c32 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 5 Aug 2010 16:54:04 +0200 Subject: QML: Name wizards correctly. Reviewed-by: Carsten Owerfeldt Initial-patch-by: Roberto Raggi --- .../templates/wizards/qml-extension/lib.png | Bin 0 -> 1245 bytes .../templates/wizards/qml-extension/object.cpp | 63 +++++++++++++++++++++ .../templates/wizards/qml-extension/object.h | 62 ++++++++++++++++++++ .../templates/wizards/qml-extension/plugin.cpp | 50 ++++++++++++++++ .../templates/wizards/qml-extension/plugin.h | 56 ++++++++++++++++++ .../templates/wizards/qml-extension/project.pro | 17 ++++++ .../templates/wizards/qml-extension/qmldir | 1 + .../templates/wizards/qml-extension/wizard.xml | 60 ++++++++++++++++++++ .../templates/wizards/qml-runtime/lib.png | Bin 1245 -> 0 bytes .../templates/wizards/qml-runtime/object.cpp | 63 --------------------- .../templates/wizards/qml-runtime/object.h | 62 -------------------- .../templates/wizards/qml-runtime/plugin.cpp | 50 ---------------- .../templates/wizards/qml-runtime/plugin.h | 56 ------------------ .../templates/wizards/qml-runtime/project.pro | 17 ------ .../qtcreator/templates/wizards/qml-runtime/qmldir | 1 - .../templates/wizards/qml-runtime/wizard.xml | 60 -------------------- .../qmlprojectapplicationwizard.cpp | 6 +- .../qmlprojectmanager/qmlprojectimportwizard.cpp | 4 +- 18 files changed, 314 insertions(+), 314 deletions(-) create mode 100644 share/qtcreator/templates/wizards/qml-extension/lib.png create mode 100644 share/qtcreator/templates/wizards/qml-extension/object.cpp create mode 100644 share/qtcreator/templates/wizards/qml-extension/object.h create mode 100644 share/qtcreator/templates/wizards/qml-extension/plugin.cpp create mode 100644 share/qtcreator/templates/wizards/qml-extension/plugin.h create mode 100644 share/qtcreator/templates/wizards/qml-extension/project.pro create mode 100644 share/qtcreator/templates/wizards/qml-extension/qmldir create mode 100644 share/qtcreator/templates/wizards/qml-extension/wizard.xml delete mode 100644 share/qtcreator/templates/wizards/qml-runtime/lib.png delete mode 100644 share/qtcreator/templates/wizards/qml-runtime/object.cpp delete mode 100644 share/qtcreator/templates/wizards/qml-runtime/object.h delete mode 100644 share/qtcreator/templates/wizards/qml-runtime/plugin.cpp delete mode 100644 share/qtcreator/templates/wizards/qml-runtime/plugin.h delete mode 100644 share/qtcreator/templates/wizards/qml-runtime/project.pro delete mode 100644 share/qtcreator/templates/wizards/qml-runtime/qmldir delete mode 100644 share/qtcreator/templates/wizards/qml-runtime/wizard.xml diff --git a/share/qtcreator/templates/wizards/qml-extension/lib.png b/share/qtcreator/templates/wizards/qml-extension/lib.png new file mode 100644 index 0000000000..a4e818d986 Binary files /dev/null and b/share/qtcreator/templates/wizards/qml-extension/lib.png differ diff --git a/share/qtcreator/templates/wizards/qml-extension/object.cpp b/share/qtcreator/templates/wizards/qml-extension/object.cpp new file mode 100644 index 0000000000..f2d9eb39d0 --- /dev/null +++ b/share/qtcreator/templates/wizards/qml-extension/object.cpp @@ -0,0 +1,63 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** Commercial Usage +** +** Licensees holding valid Qt Commercial licenses may use this file in +** accordance with the Qt Commercial License Agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Nokia. +** +** GNU Lesser General Public License Usage +** +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at http://qt.nokia.com/contact. +** +**************************************************************************/ + +#include +#include + +#include "%ObjectName%.h" + +%ObjectName%::%ObjectName%(QObject *parent): + QObject(parent) +{ + timer = new QTimer(this); + timer->setInterval(750); + connect(timer, SIGNAL(timeout()), this, SLOT(timerFired())); + timer->start(); +} + +QString %ObjectName%::text() const +{ + return theText; +} + +void %ObjectName%::setText(const QString &text) +{ + if (theText != text) { + theText = text; + emit textChanged(theText); + } +} + +void %ObjectName%::timerFired() +{ + QTime t = QTime::currentTime(); + setText(t.toString(QLatin1String("HH:mm:ss"))); +} + +QML_DECLARE_TYPE(%ObjectName%); diff --git a/share/qtcreator/templates/wizards/qml-extension/object.h b/share/qtcreator/templates/wizards/qml-extension/object.h new file mode 100644 index 0000000000..50898b454c --- /dev/null +++ b/share/qtcreator/templates/wizards/qml-extension/object.h @@ -0,0 +1,62 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** Commercial Usage +** +** Licensees holding valid Qt Commercial licenses may use this file in +** accordance with the Qt Commercial License Agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Nokia. +** +** GNU Lesser General Public License Usage +** +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at http://qt.nokia.com/contact. +** +**************************************************************************/ + +#ifndef EXAMPLEITEM_H +#define EXAMPLEITEM_H + +#include +#include +#include + +class %ObjectName% : public QObject +{ + Q_OBJECT + + Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged) + +public: + %ObjectName%(QObject *parent = 0); + + QString text() const; + void setText(const QString &text); + +signals: + void textChanged(const QString &newText); + +private slots: + void timerFired(); + +private: + QString theText; + QTimer *timer; + + Q_DISABLE_COPY(%ObjectName%) +}; + +#endif // EXAMPLEITEM_H diff --git a/share/qtcreator/templates/wizards/qml-extension/plugin.cpp b/share/qtcreator/templates/wizards/qml-extension/plugin.cpp new file mode 100644 index 0000000000..34383ef11f --- /dev/null +++ b/share/qtcreator/templates/wizards/qml-extension/plugin.cpp @@ -0,0 +1,50 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the demonstration applications of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#include "%ProjectName%.h" +#include "%ObjectName%.h" + +void %ProjectName%::registerTypes(const char *uri) +{ + qmlRegisterType<%ObjectName%>(uri, 1, 0, "%ObjectName%"); +} + +Q_EXPORT_PLUGIN(%ProjectName%); diff --git a/share/qtcreator/templates/wizards/qml-extension/plugin.h b/share/qtcreator/templates/wizards/qml-extension/plugin.h new file mode 100644 index 0000000000..d42a3c5123 --- /dev/null +++ b/share/qtcreator/templates/wizards/qml-extension/plugin.h @@ -0,0 +1,56 @@ +/**************************************************************************** +** +** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the demonstration applications of the Qt Toolkit. +** +** $QT_BEGIN_LICENSE:LGPL$ +** No Commercial Usage +** This file contains pre-release code and may not be distributed. +** You may use this file in accordance with the terms and conditions +** contained in the Technology Preview License Agreement accompanying +** this package. +** +** GNU Lesser General Public License Usage +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** In addition, as a special exception, Nokia gives you certain additional +** rights. These rights are described in the Nokia Qt LGPL Exception +** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. +** +** If you have questions regarding the use of this file, please contact +** Nokia at qt-info@nokia.com. +** +** +** +** +** +** +** +** +** $QT_END_LICENSE$ +** +****************************************************************************/ + +#ifndef EXAMPLECOREPLUGIN_H +#define EXAMPLECOREPLUGIN_H + +#include +#include + +class %ProjectName% : public QDeclarativeExtensionPlugin +{ + Q_OBJECT + +public: + void registerTypes(const char *uri); +}; + +#endif // EXAMPLECOREPLUGIN_H diff --git a/share/qtcreator/templates/wizards/qml-extension/project.pro b/share/qtcreator/templates/wizards/qml-extension/project.pro new file mode 100644 index 0000000000..6e3cb29342 --- /dev/null +++ b/share/qtcreator/templates/wizards/qml-extension/project.pro @@ -0,0 +1,17 @@ +TEMPLATE = lib +TARGET = %ProjectName% +QT += declarative +CONFIG += qt plugin + +TARGET = $$qtLibraryTarget($$TARGET) + +# Input +SOURCES += \ + %ProjectName%.cpp \ + %ObjectName%.cpp + +OTHER_FILES=qmldir + +HEADERS += \ + %ProjectName%.h \ + %ObjectName%.h diff --git a/share/qtcreator/templates/wizards/qml-extension/qmldir b/share/qtcreator/templates/wizards/qml-extension/qmldir new file mode 100644 index 0000000000..ee07ff6b10 --- /dev/null +++ b/share/qtcreator/templates/wizards/qml-extension/qmldir @@ -0,0 +1 @@ +plugin %ProjectName% diff --git a/share/qtcreator/templates/wizards/qml-extension/wizard.xml b/share/qtcreator/templates/wizards/qml-extension/wizard.xml new file mode 100644 index 0000000000..82ab56676f --- /dev/null +++ b/share/qtcreator/templates/wizards/qml-extension/wizard.xml @@ -0,0 +1,60 @@ + + + + lib.png + Creates a C++ plugin that makes it possible to offer extensions that can be loaded dynamically into applications using the QDeclarativeEngine class. + Custom QML Extension Plugin + QML Extension Plugin + + + + + + + + + + Custom QML Extension Plugin Parameters + + + + Example Object Class-name: + + + diff --git a/share/qtcreator/templates/wizards/qml-runtime/lib.png b/share/qtcreator/templates/wizards/qml-runtime/lib.png deleted file mode 100644 index a4e818d986..0000000000 Binary files a/share/qtcreator/templates/wizards/qml-runtime/lib.png and /dev/null differ diff --git a/share/qtcreator/templates/wizards/qml-runtime/object.cpp b/share/qtcreator/templates/wizards/qml-runtime/object.cpp deleted file mode 100644 index f2d9eb39d0..0000000000 --- a/share/qtcreator/templates/wizards/qml-runtime/object.cpp +++ /dev/null @@ -1,63 +0,0 @@ -/************************************************************************** -** -** This file is part of Qt Creator -** -** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). -** -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** Commercial Usage -** -** Licensees holding valid Qt Commercial licenses may use this file in -** accordance with the Qt Commercial License Agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Nokia. -** -** GNU Lesser General Public License Usage -** -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. -** -**************************************************************************/ - -#include -#include - -#include "%ObjectName%.h" - -%ObjectName%::%ObjectName%(QObject *parent): - QObject(parent) -{ - timer = new QTimer(this); - timer->setInterval(750); - connect(timer, SIGNAL(timeout()), this, SLOT(timerFired())); - timer->start(); -} - -QString %ObjectName%::text() const -{ - return theText; -} - -void %ObjectName%::setText(const QString &text) -{ - if (theText != text) { - theText = text; - emit textChanged(theText); - } -} - -void %ObjectName%::timerFired() -{ - QTime t = QTime::currentTime(); - setText(t.toString(QLatin1String("HH:mm:ss"))); -} - -QML_DECLARE_TYPE(%ObjectName%); diff --git a/share/qtcreator/templates/wizards/qml-runtime/object.h b/share/qtcreator/templates/wizards/qml-runtime/object.h deleted file mode 100644 index 50898b454c..0000000000 --- a/share/qtcreator/templates/wizards/qml-runtime/object.h +++ /dev/null @@ -1,62 +0,0 @@ -/************************************************************************** -** -** This file is part of Qt Creator -** -** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). -** -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** Commercial Usage -** -** Licensees holding valid Qt Commercial licenses may use this file in -** accordance with the Qt Commercial License Agreement provided with the -** Software or, alternatively, in accordance with the terms contained in -** a written agreement between you and Nokia. -** -** GNU Lesser General Public License Usage -** -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** If you are unsure which license is appropriate for your use, please -** contact the sales department at http://qt.nokia.com/contact. -** -**************************************************************************/ - -#ifndef EXAMPLEITEM_H -#define EXAMPLEITEM_H - -#include -#include -#include - -class %ObjectName% : public QObject -{ - Q_OBJECT - - Q_PROPERTY(QString text READ text WRITE setText NOTIFY textChanged) - -public: - %ObjectName%(QObject *parent = 0); - - QString text() const; - void setText(const QString &text); - -signals: - void textChanged(const QString &newText); - -private slots: - void timerFired(); - -private: - QString theText; - QTimer *timer; - - Q_DISABLE_COPY(%ObjectName%) -}; - -#endif // EXAMPLEITEM_H diff --git a/share/qtcreator/templates/wizards/qml-runtime/plugin.cpp b/share/qtcreator/templates/wizards/qml-runtime/plugin.cpp deleted file mode 100644 index 34383ef11f..0000000000 --- a/share/qtcreator/templates/wizards/qml-runtime/plugin.cpp +++ /dev/null @@ -1,50 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the demonstration applications of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** -** -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#include "%ProjectName%.h" -#include "%ObjectName%.h" - -void %ProjectName%::registerTypes(const char *uri) -{ - qmlRegisterType<%ObjectName%>(uri, 1, 0, "%ObjectName%"); -} - -Q_EXPORT_PLUGIN(%ProjectName%); diff --git a/share/qtcreator/templates/wizards/qml-runtime/plugin.h b/share/qtcreator/templates/wizards/qml-runtime/plugin.h deleted file mode 100644 index d42a3c5123..0000000000 --- a/share/qtcreator/templates/wizards/qml-runtime/plugin.h +++ /dev/null @@ -1,56 +0,0 @@ -/**************************************************************************** -** -** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). -** All rights reserved. -** Contact: Nokia Corporation (qt-info@nokia.com) -** -** This file is part of the demonstration applications of the Qt Toolkit. -** -** $QT_BEGIN_LICENSE:LGPL$ -** No Commercial Usage -** This file contains pre-release code and may not be distributed. -** You may use this file in accordance with the terms and conditions -** contained in the Technology Preview License Agreement accompanying -** this package. -** -** GNU Lesser General Public License Usage -** Alternatively, this file may be used under the terms of the GNU Lesser -** General Public License version 2.1 as published by the Free Software -** Foundation and appearing in the file LICENSE.LGPL included in the -** packaging of this file. Please review the following information to -** ensure the GNU Lesser General Public License version 2.1 requirements -** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. -** -** In addition, as a special exception, Nokia gives you certain additional -** rights. These rights are described in the Nokia Qt LGPL Exception -** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. -** -** If you have questions regarding the use of this file, please contact -** Nokia at qt-info@nokia.com. -** -** -** -** -** -** -** -** -** $QT_END_LICENSE$ -** -****************************************************************************/ - -#ifndef EXAMPLECOREPLUGIN_H -#define EXAMPLECOREPLUGIN_H - -#include -#include - -class %ProjectName% : public QDeclarativeExtensionPlugin -{ - Q_OBJECT - -public: - void registerTypes(const char *uri); -}; - -#endif // EXAMPLECOREPLUGIN_H diff --git a/share/qtcreator/templates/wizards/qml-runtime/project.pro b/share/qtcreator/templates/wizards/qml-runtime/project.pro deleted file mode 100644 index 6e3cb29342..0000000000 --- a/share/qtcreator/templates/wizards/qml-runtime/project.pro +++ /dev/null @@ -1,17 +0,0 @@ -TEMPLATE = lib -TARGET = %ProjectName% -QT += declarative -CONFIG += qt plugin - -TARGET = $$qtLibraryTarget($$TARGET) - -# Input -SOURCES += \ - %ProjectName%.cpp \ - %ObjectName%.cpp - -OTHER_FILES=qmldir - -HEADERS += \ - %ProjectName%.h \ - %ObjectName%.h diff --git a/share/qtcreator/templates/wizards/qml-runtime/qmldir b/share/qtcreator/templates/wizards/qml-runtime/qmldir deleted file mode 100644 index ee07ff6b10..0000000000 --- a/share/qtcreator/templates/wizards/qml-runtime/qmldir +++ /dev/null @@ -1 +0,0 @@ -plugin %ProjectName% diff --git a/share/qtcreator/templates/wizards/qml-runtime/wizard.xml b/share/qtcreator/templates/wizards/qml-runtime/wizard.xml deleted file mode 100644 index 5800b8ef5d..0000000000 --- a/share/qtcreator/templates/wizards/qml-runtime/wizard.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - lib.png - Creates a C++ plugin to extend the funtionality of the QML runtime. - QML Runtime Plug-in - QML Runtime Plug-in - - - - - - - - - - QML Runtime Plug-in Parameters - - - - Example Object Class-name: - - - diff --git a/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp b/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp index eafbc0385b..3f7727408e 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectapplicationwizard.cpp @@ -69,10 +69,10 @@ Core::BaseFileWizardParameters QmlProjectApplicationWizard::parameters() p.drawPixmap(3, 3, 16, 16, QPixmap(QLatin1String(Constants::QML_WIZARD_ICON))); parameters.setIcon(icon); } - parameters.setDisplayName(tr("Qt QML Application")); + parameters.setDisplayName(tr("QML Application")); parameters.setId(QLatin1String("QA.QML Application")); - parameters.setDescription(tr("Creates a Qt QML application project with a single QML file containing the main view.\n\n" - "QML application projects are executed through the QML runtime and do not need to be built.")); + parameters.setDescription(tr("Creates a QML application project with a single QML file containing the main view.\n\n" + "QML application projects are executed by the Qt QML Viewer and do not need to be built.")); parameters.setCategory(QLatin1String(Constants::QML_WIZARD_CATEGORY)); parameters.setDisplayCategory(QCoreApplication::translate(Constants::QML_WIZARD_TR_SCOPE, Constants::QML_WIZARD_TR_CATEGORY)); diff --git a/src/plugins/qmlprojectmanager/qmlprojectimportwizard.cpp b/src/plugins/qmlprojectmanager/qmlprojectimportwizard.cpp index 39afe44706..640f0175e3 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectimportwizard.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectimportwizard.cpp @@ -61,7 +61,7 @@ namespace Internal { QmlProjectImportWizardDialog::QmlProjectImportWizardDialog(QWidget *parent) : Utils::Wizard(parent) { - setWindowTitle(tr("Import Existing Qt QML Directory")); + setWindowTitle(tr("Import Existing QML Directory")); // first page m_firstPage = new FileWizardPage; @@ -113,7 +113,7 @@ Core::BaseFileWizardParameters QmlProjectImportWizard::parameters() p.drawPixmap(3, 3, 16, 16, qApp->style()->standardIcon(QStyle::SP_DirIcon).pixmap(16)); parameters.setIcon(icon); } - parameters.setDisplayName(tr("Import Existing Qt QML Directory")); + parameters.setDisplayName(tr("Import Existing QML Directory")); parameters.setId(QLatin1String("QI.QML Import")); parameters.setDescription(tr("Creates a QML project from an existing directory of QML files.")); parameters.setCategory(QLatin1String(Constants::QML_WIZARD_CATEGORY)); -- cgit v1.2.1 From 9bad0c01bec3547324bf9340497fb956467a9531 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Fri, 6 Aug 2010 10:09:14 +0200 Subject: Design mode: Position editor popup (Ctrl-Tab) correctly. Reviewed-by: Lasse Holmstedt Task-number: QTCREATORBUG-2002 --- src/plugins/coreplugin/editormanager/editormanager.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/editormanager/editormanager.cpp b/src/plugins/coreplugin/editormanager/editormanager.cpp index a296741aa0..bd3e07c67a 100644 --- a/src/plugins/coreplugin/editormanager/editormanager.cpp +++ b/src/plugins/coreplugin/editormanager/editormanager.cpp @@ -1628,7 +1628,10 @@ void EditorManager::showPopupOrSelectDocument() const if (QApplication::keyboardModifiers() == Qt::NoModifier) { windowPopup()->selectAndHide(); } else { - const QPoint p(mapToGlobal(QPoint(0, 0))); + // EditorManager is invisible when invoked from Design Mode. + const QPoint p = isVisible() ? + mapToGlobal(QPoint(0, 0)) : + m_d->m_core->mainWindow()->mapToGlobal(QPoint(0, 0)); windowPopup()->move((width()-m_d->m_windowPopup->width())/2 + p.x(), (height()-m_d->m_windowPopup->height())/2 + p.y()); windowPopup()->setVisible(true); -- cgit v1.2.1 From e98282fcb63454aa078aa5b9afb7173788aae2ef Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Fri, 6 Aug 2010 11:04:01 +0200 Subject: Fix warnings about QFileInfo being called with empty path --- src/plugins/projectexplorer/project.cpp | 2 ++ src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/projectexplorer/project.cpp b/src/plugins/projectexplorer/project.cpp index bdea6c9ef2..12c47ee454 100644 --- a/src/plugins/projectexplorer/project.cpp +++ b/src/plugins/projectexplorer/project.cpp @@ -234,6 +234,8 @@ QString Project::projectDirectory() const QString Project::projectDirectory(const QString &proFile) { + if (proFile.isEmpty()) + return QString(); QFileInfo info(proFile); return info.absoluteDir().path(); } diff --git a/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp b/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp index 111dea1c0c..91872791f9 100644 --- a/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp +++ b/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp @@ -353,7 +353,7 @@ TargetSetupPage::recursivelyCheckDirectoryForBuild(const QString &directory, con { QList results; - if (maxdepth <= 0) + if (maxdepth <= 0 || directory.isEmpty()) return results; // Check for in-source builds first: -- cgit v1.2.1 From b334002f6d1a6a8b9ea563c609daaf68237d0607 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Fri, 6 Aug 2010 11:19:13 +0200 Subject: I18N: Update German translations for 2.1 --- share/qtcreator/translations/qtcreator_de.ts | 4621 +------------------------- 1 file changed, 179 insertions(+), 4442 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts index c688cb79b3..f3dc93b308 100644 --- a/share/qtcreator/translations/qtcreator_de.ts +++ b/share/qtcreator/translations/qtcreator_de.ts @@ -4,22 +4,18 @@ Application - Failed to load core: %1 Das Core-Plugin konnte nicht geladen werden: %1 - Unable to send command line arguments to the already running instance. It appears to be not responding. Die Kommandozeilen-Argumente konnten nicht an die laufende Instanz übermittelt werden. Sie antwortet nicht. - Could not find 'Core.pluginspec' in %1 Die Datei 'Core.pluginspec' konnte im Verzeichnis %1 nicht gefunden werden - Qt Creator - Plugin loader messages Qt Creator - Meldungen der Plugin-Verwaltung @@ -27,17 +23,14 @@ AttachCoreDialog - Start Debugger Debugger starten - Executable: Ausführbare Datei: - Core File: Core-Datei: @@ -45,12 +38,10 @@ AttachExternalDialog - Start Debugger Debugger starten - Attach to process ID: Prozess-Id: @@ -58,12 +49,10 @@ BINEditor::Internal::BinEditorPlugin - &Undo &Rückgängig - &Redo &Wiederholen @@ -71,46 +60,34 @@ BookmarkDialog - Add Bookmark Lesezeichen hinzufügen - Bookmark: Lesezeichen: - Add in Folder: Im Ordner: - + + - New Folder Neuer Ordner - - - - - Bookmarks Lesezeichen - Delete Folder Ordner löschen - Rename Folder Ordner umbenennen @@ -118,23 +95,18 @@ BookmarkManager - Bookmarks Lesezeichen - Remove Entfernen - You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue? Beim Löschen eines Ordners wird auch dessen Inhalt gelöscht.<br>Möchten Sie trotzdem fortsetzen? - - New Folder Neuer Ordner @@ -142,42 +114,34 @@ BookmarkWidget - Delete Folder Ordner löschen - Rename Folder Ordner umbenennen - Show Bookmark Lesezeichen anzeigen - Show Bookmark in New Tab Lesezeichen in neuem Reiter anzeigen - Delete Bookmark Lesezeichen löschen - Rename Bookmark Lesezeichen umbenennen - Add Hinzufügen - Remove Entfernen @@ -185,28 +149,22 @@ Bookmarks::Internal::BookmarkView - - Bookmarks Lesezeichen - Move Up Nach oben - Move Down Nach unten - &Remove &Entfernen - Remove All &Alle entfernen @@ -214,63 +172,50 @@ Bookmarks::Internal::BookmarksPlugin - &Bookmarks &Lesezeichen - - Toggle Bookmark Lesezeichen umschalten - Ctrl+M Ctrl+M - Meta+M Meta+M - Previous Bookmark Vorhergehendes Lesezeichen - Ctrl+, Ctrl+, - Meta+, Meta+, - Next Bookmark Nächstes Lesezeichen - Ctrl+. Ctrl+. - Meta+. Meta+. - Previous Bookmark in Document Vorhergehendes Lesezeichen im Dokument - Next Bookmark in Document Nächstes Lesezeichen im Dokument @@ -278,12 +223,10 @@ BreakByFunctionDialog - Set Breakpoint at Function Haltepunkt bei Funktion setzen - Function to break on: Funktion: @@ -291,12 +234,10 @@ BreakCondition - Condition: Bedingung: - Ignore count: Anhalten erst nach: @@ -304,17 +245,14 @@ CMakeProjectManager::Internal::CMakeBuildConfigurationFactory - Build Erstellen - New configuration Neue Konfiguration - New Configuration Name: Name der neuen Konfiguration: @@ -322,7 +260,6 @@ CMakeProjectManager::Internal::CMakeBuildSettingsWidget - &Change &Ändern @@ -330,7 +267,6 @@ CMakeProjectManager::Internal::CMakeOpenProjectWizard - CMake Wizard CMake-Assistent @@ -338,47 +274,38 @@ CMakeProjectManager::Internal::CMakeRunConfigurationWidget - Arguments: Argumente: - Select Working Directory Wählen Sie das Arbeitsverzeichnis aus - Reset to default Zurücksetzen - Working Directory: Arbeitsverzeichnis: - Run Environment Ausführungsumgebung - Base environment for this runconfiguration: Basisumgebung für diese Ausführungskonfiguration - Clean Environment Umgebung löschen - System Environment Systemumgebung - Build Environment Build-Umgebung @@ -386,79 +313,63 @@ CMakeProjectManager::Internal::CMakeRunPage - Please specify the path to the cmake executable. No cmake executable was found in the path. Bitte geben Sie den Pfad zu der ausführbaren Datei von cmake an. Sie konnte nicht im Pfad gefunden werden. - The cmake executable (%1) does not exist. Die ausführbare cmake-Datei (%1) existiert nicht. - The path %1 is not a executable. %1 ist keine ausführbare Datei. - The path %1 is not a valid cmake. %1 ist nicht ausführbar. - - Run CMake CMake ausführen - Arguments Argumente - The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly Das Verzeichnis %1 enthält bereits eine hinreichend aktuelle cbp-Datei. Sie können spezielle Argumente angeben oder die Toolchain ändern und cmake noch einmal ausführen. Oder beenden Sie den Wizard an dieser Stelle - The directory %1 does not contain a cbp file. Qt Creator needs to create this file by running cmake. Some projects require command line arguments to the initial cmake call. Das Verzeichnis %1 enthält keine cbp-Datei. Qt Creator muss die Datei durch einen cmake-Aufruf erzeugen. Für einige Projekte sind dazu Kommandozeilenargumente erforderlich. - 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. Das Verzeichnis %1 enthält eine veraltete cbp-Datei. Qt Creator muss die Datei durch einen cmake-Aufruf erneuern. Zusätzliche Kommandozeilenargumente können unten angegeben werden. Beachten Sie, dass cmake die Argumente vorangegangener Aufrufe speichert. - 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. Das Verzeichnis %1, was in einer Build-Konfiguration angegeben wurde, enthält keine cbp-Datei. Qt Creator muss die Datei durch einen cmake-Aufruf erzeugen. Für einige Projekte sind dazu Kommandozeilenargumente erforderlich. Beachten Sie, dass cmake die Argumente vorangegangener Aufrufe speichert. - NMake Generator NMake-Generator - NMake Generator (%1) NMake-Generator (%1) - MinGW Generator MinGW-Generator - No valid cmake executable specified. Es wurde keine ausführbare cmake-Datei angegeben. - Qt Creator needs to run cmake in the new build directory. Some projects require command line arguments to the initial cmake call. Qt Creator muss cmake im Build-Verzeichnis aufrufen. Für einige Projekte sind dazu Kommandozeilenargumente erforderlich. @@ -466,12 +377,10 @@ CMakeProjectManager::Internal::CMakeSettingsPage - CMake CMake - Executable: Ausführbare Datei: @@ -479,12 +388,10 @@ CMakeProjectManager::Internal::InSourceBuildPage - 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. Es wurde ein <b>Build im Quellverzeichnis %1</b> festgestellt, der Shadow-Builds verhindert. Das Build-Verzeichnis kann nicht in Qt Creator geändert werden. Wenn Sie einen Shadow-Build wünschen, bereinigen Sie bitte das Quellverzeichnis und öffnen Sie das Projekt noch einmal. - Build Location Build-Ordner @@ -492,28 +399,23 @@ CMakeProjectManager::Internal::MakeStepConfigWidget - Additional arguments: Zusätzliche Argumente: - Targets: Ziele: - Make CMakeProjectManager::MakeStepConfigWidget display name. Make - <b>Make:</b> %1 %2 <b>Make-Kommando:</b> %1 %2 - <b>Unknown Toolchain</b> <b>Unbekannte Toolchain</b> @@ -521,22 +423,18 @@ CMakeProjectManager::Internal::ShadowBuildPage - Please enter the directory in which you want to build your project. Bitte geben Sie das Verzeichnis ein, in dem das Projekt erstellt werden soll. - 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. 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, verschiedene Builds mit verschiedenen Einstellungen zu erstellen. - Build directory: Build-Verzeichnis: - Build Location Build-Pfad @@ -544,12 +442,10 @@ CPlusPlus::OverviewModel - <Select Symbol> <Symbol auswählen> - <No Symbols> <keine Symbole> @@ -557,282 +453,231 @@ CVS::Internal::CVSPlugin - Parsing of the log output failed Die Log-Ausgabe konnte nicht ausgewertet werden - &CVS &CVS - Add Hinzufügen - Add "%1" "%1" hinzufügen - Alt+C,Alt+A Alt+C,Alt+A - Diff Project Diff für Projekt - Diff Current File Diff für Datei - Diff "%1" Diff für "%1" - Alt+C,Alt+D Alt+C,Alt+D - Commit All Files Alle Dateien abgeben - Commit Current File Datei abgeben - Commit "%1" "%1" abgeben - Alt+C,Alt+C Alt+C,Alt+C - Filelog Current File Filelog für Datei - + Cannot find repository for '%1' + Das Repository der Datei '%1' konnte nicht gefunden werden + + Filelog "%1" Filelog für "%1" - Annotate Current File Annotation für Datei - Annotate "%1" Annotation für "%1" - Delete... Löschen... - 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" - Project Status Status des Projekts - 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 - Repository Log Log des Repositories - Revert Repository... Änderungen im gesamten Repository rückgängig machen... - Commit Abgeben - Diff Selected Files Diff für Auswahl - &Undo &Rückgängig - &Redo &Wiederholen - Closing CVS Editor CVS-Editor schließen - Do you want to commit the change? Möchten Sie die Dateien abgeben? - The commit message check failed. Do you want to commit the change? Die Überprüfung der Beschreibung schlug fehl. Möchten Sie die Dateien trotzdem abgeben? - The files do not differ. Die Dateien unterscheiden sich nicht. - Revert repository Alle Änderungen rückgängig machen - Would you like to revert all changes to the repository? Möchten Sie alle ausstehenden Änderungen des Repositories rückgängig machen? - Revert failed: %1 Fehler beim Rücksetzen der Änderungen: %1 - 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? - Another commit is currently being executed. Es läuft bereits ein Abgabevorgang. - There are no modified files. Es gibt keine geänderten Dateien. - Cannot create temporary file: %1 Es konnte keine temporäre Datei erstellt werden: %1 - Project status Status des Projekts - The initial revision %1 cannot be described. Die erste Version (%1) kann nicht weiter beschrieben werden. - Could not find commits of id '%1' on %2. Es konnten keine Abgaben des Datums %2 mit der Id '%1' gefunden werden. - Executing: %1 %2 Kommando: %1 %2 - Executing in %1: %2 %3 Kommando [%1]: %2 %3 - No cvs executable specified! Es wurde keine ausführbare Datei angegeben! - The process terminated with exit code %1. Der Prozess wurde beendet, Rückgabewert %1. - The process terminated abnormally. Der Prozess wurde in anormaler Weise beendet. - Could not start cvs '%1'. Please check your settings in the preferences. Der CVS-Aufruf '%1' konnte nicht gestartet werden. Bitte überprüfen Sie die Einstellungen. - CVS did not respond within timeout limit (%1 ms). Keine Antwort von CVS innerhalb des Zeitlimits (%1 ms). @@ -840,17 +685,14 @@ CVS::Internal::CVSSubmitEditor - Added Hinzugefügt - Removed Gelöscht - Modified Geändert @@ -858,12 +700,10 @@ CVS::Internal::CheckoutWizard - Checks out a CVS repository and tries to load the contained project. Erstellt einen Checkout eines CVS-Repositories und versucht, das darin enthaltene Projekt zu laden. - CVS Checkout Projekt aus CVS-Repository @@ -871,17 +711,14 @@ CVS::Internal::CheckoutWizardPage - Location Pfad - Specify repository and path. Geben Sie Repository und Pfad an. - Repository: Repository: @@ -889,57 +726,46 @@ CVS::Internal::SettingsPage - CVS CVS - Configuration Konfiguration - Miscellaneous Sonstige Einstellungen - Prompt on submit Abgabe bestätigen - Describe all files matching commit id Alle zur Commit-Id gehörenden Dateien beschreiben: - Timeout: Zeitlimit: - s s - CVS command: CVS-Kommando: - CVS root: CVS-Quelle (CVSROOT): - Diff options: Optionen für 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. Wenn die Option aktiviert ist, werden beim Klick auf die Revisionsnummer in der Annotationsansicht alle Dateien angezeigt, die zu einer Abgabe gehören (mittels Commit-Id bestimmt). Ansonsten wird nur die betreffende Datei angezeigt. @@ -947,93 +773,61 @@ CVS::Internal::SettingsPageWidget - CVS Command CVS-Kommando - - CVSPlugin - - - Cannot find repository for '%1' - Das Repository der Datei '%1' konnte nicht gefunden werden - - CdbOptionsPageWidget - These options take effect at the next start of Qt Creator. Die Einstellungen werden beim nächsten Start von Qt Creator wirksam. - Debugger Paths Debugger-Pfade - Symbol paths: Symbolpfade: - Source paths: Quelltext-Pfade: - Path: Pfad: - - <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>Geben Sie den Pfad zu den <a href="%1">Debugging Tools for Windows</a> (%2) an.</p><p><b>Hinweis:</b> Änderungen werden erst beim nächsten Start von Qt Creator wirksam.</p></p></body></html> - - - - 64-bit version - 64-bit-Version - - - - 32-bit version - 32-bit-Version - - - CDB Placeholder CDB - Other Options - Weiter Optionen + Weitere Optionen - Verbose symbol loading Ausführliche Meldungen beim Laden der Symbole + + Fast loading of debugging helpers + Schnelles Laden der Ausgabe-Hilfsbibliothek + CdbStackFrameContext - <Unknown Type> <Unbekannter Typ> - <Unknown Value> <Unbekannter Wert> - <Unknown> <Unbekannt> @@ -1041,17 +835,14 @@ ChangeSelectionDialog - Select Auswählen - Change: Änderung: - Repository location: Repository: @@ -1059,17 +850,14 @@ CodePaster::CodePasterProtocol - No Server defined in the CodePaster preferences. Es wurde kein Server in den CodePaster-Einstellungen angegeben. - No Server defined in the CodePaster options. Es wurde kein Server in den CodePaster-Einstellungen angegeben. - No such paste Angeforderter Ausschnitt existiert nicht @@ -1077,17 +865,14 @@ CodePaster::CodePasterSettingsPage - CodePaster CodePaster - Server: Server: - Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). Hinweis: Geben Sie den Namen des Servers für den CodePaster-Service ohne Protokollpräfix ein (zum Beispiel codepaster.mycompany.com). @@ -1095,37 +880,30 @@ CodePaster::CodepasterPlugin - &Code Pasting &Code Pasting - Paste Snippet... Ausschnitt einfügen... - Alt+C,Alt+P Alt+C,Alt+P - Paste Clipboard... Zwischenablage einfügen... - Fetch Snippet... Ausschnitt holen... - Alt+C,Alt+F Alt+C,Alt+F - Empty snippet received for "%1". Leeren Text für "%1" erhalten. @@ -1133,27 +911,22 @@ CodePaster::PasteSelectDialog - Paste: Ausschnitt: - Protocol: Protokoll: - Refresh Aktualisieren - Waiting for items Warte auf Daten - This protocol does not support listing Dieses Protokoll stellt keine Liste zur Verfügung @@ -1161,27 +934,22 @@ CodePaster::SettingsPage - Username: Nutzername: - General Allgemein - Default protocol: Vorgabeprotokoll: - Display Output pane after sending a post Ausgabepanel nach Senden anzeigen - Copy-paste URL to clipboard Kopiere den URL in die Zwischenablage @@ -1189,62 +957,50 @@ CommonOptionsPage - Checking this will populate the source file view automatically but might slow down debugger startup considerably. Die Quelldatei-Ansicht wird automatisch aktualisiert, was den Start des Debuggers beträchtlich verlangsamen kann. - Populate source file view automatically Quelldatei-Ansicht automatisch aktualisieren - Maximal stack depth: Maximale Stack-Tiefe - <unlimited> <unbegrenzt> - Use alternating row colors in debug views Alternierende Farben für Debug-Ansichten benutzen - Use tooltips in main editor while debugging Tooltips beim Debuggen benutzen - Language Programmiersprache - Changes the debugger language according to the currently opened file. Ändert die Spracheinstellung des Debuggers in Abhängigkeit von der gegenwärtig geöffneten Datei. - Change debugger language automatically Spracheinstellung des Debuggers automatisch anpassen - Register Qt Creator for debugging crashed applications. Qt Creator als Debugger für abgestürzte Anwendungen registrieren. - GUI Behavior Verhalten - Use Qt Creator for post-mortem debugging Qt Creator als Post-Mortem-Debugger verwenden @@ -1252,52 +1008,42 @@ CompletionSettingsPage - Automatically insert (, ) and ; when appropriate. (, ), ; automatisch einfügen - Insert the common prefix of available completion items. Gemeinsamen Präfix der passenden Ergänzungsvorschläge einfügen. - Autocomplete common &prefix Gemeinsamen &Präfix ergänzen - &Automatically insert brackets &Klammern automatisch einfügen - Behavior Verhalten - &Case-sensitivity: &Groß/Kleinschreibung: - Full Vollständig - None Keine - Insert &space after function name Leerzeichen nach &Funktionsname einfügen - First Letter Erster Buchstabe @@ -1305,12 +1051,10 @@ ContentWindow - Open Link Adresse öffnen - Open Link as New Page Adresse in neuem Reiter öffnen @@ -1318,63 +1062,48 @@ Core::BaseFileWizard - - - - File Generation Failure Fehler bei Dateierzeugung - - Existing files Bereits existierende Dateien - Unable to create the directory %1. Das Verzeichnis %1 kann nicht erstellt werden. - Unable to open %1 for writing: %2 Die Datei %1 kann nicht zum Schreiben geöffnet werden: %2 - Error while writing to %1: %2 Fehler beim Schreiben in %1: %2 - 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? @@ -1386,291 +1115,226 @@ Sollen sie überschrieben werden? Core::EditorManager - - Revert to Saved Wiederherstellen - - - Close Schließen - Close All Alle schließen - - Close Others Andere schließen - Open in External Editor Öffne in externem Editor - Revert File to Saved Gespeicherten Stand wiederherstellen - 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 - Meta+E Meta+E - Ctrl+E Ctrl+E - Split Teilen - Split Side by Side Nebeneinander teilen - Remove Current Split Teilung aufheben - Remove All Splits Alle Teilungen aufheben - Save %1 &As... Speichere '%1' &unter... - &Advanced &Weitere - Alt+V,Alt+I Alt+V,Alt+I - All Files (*) Alle Dateien (*) - - Opening File Datei Öffnen - Cannot open file %1! Die Datei '%1' kann nicht geöffnet werden! - File is Read Only Die Datei ist schreibgeschützt - The file %1 is read only. Die Datei %1 ist schreibgeschützt. - Open with VCS (%1) Öffnen mittels Versionskontrollsystem (%1) - Save as ... Speichern als... - - Failed! Fehler - Could not open the file for editing with SCC. Die Datei konnte nicht mit Hilfe der Versionsverwaltung schreibbar gemacht werden. - Could not set permissions to writable. Die Datei konnte nicht schreibbar gemacht werden. - <b>Warning:</b> You are changing a read-only file. <b>Hinweis:</b> Sie sind im Begriff, eine schreibgeschützte Datei zu ändern. - - Make writable Schreibbar machen - Next Open Document in History Nächstes geöffnetes Dokument im Verlauf - Previous Open Document in History Vorhergehendes geöffnetes Dokument im Verlauf - - Go Back Vorheriges - - Go Forward Nächstes - %1,2 %1,2 - %1,3 %1,3 - %1,0 %1,0 - %1,1 %1,1 - Go to Next Split Gehe zu nächsten Teilung - %1,o %1,o - &Save %1 &Speichere %1 - Revert %1 to Saved Stelle %1 wieder her - Close %1 Schließe %1 - Close All Except %1 Alle außer %1 schließen - You will lose your current changes if you proceed reverting %1. Bei der Wiederherstellung von %1 gehen Ihre derzeitigen Änderungen verloren. - Proceed Weiter - Cancel Abbrechen - <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>Variable</th><th>Expandiert zu</th></tr><tr><td>%f</td><td>file name</td></tr><tr><td>%l</td><td>Zeilennummer</td></tr><tr><td>%c</td><td>Spaltennummer</td></tr><tr><td>%x</td><td>X-Koordinate der Position des Editors</td></tr><tr><td>%y</td><td>Y-Koordinate der Position des Editors</td></tr><tr><td>%w</td><td>Breite des Editors (Pixel)</td></tr><tr><td>%h</td><td>Höhe des Editors (Pixel)</td></tr><tr><td>%W</td><td>Breite des Editors (Zeichen)</td></tr><tr><td>%H</td><td>Höhe des Editors (Zeichen)</td></tr><tr><td>%%</td><td>%</td></tr></table> @@ -1678,32 +1342,26 @@ Sollen sie überschrieben werden? Core::FileManager - Cannot save file Die Datei kann nicht gespeichert werden - Cannot save changes to '%1'. Do you want to continue and lose your changes? Die Datei '%1' kann nicht gespeichert werden. Wollen Sie trotzdem fortsetzen und Ihre Änderungen aufgeben? - 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 @@ -1711,7 +1369,6 @@ Sollen sie überschrieben werden? Core::Internal::ComboBox - Activate %1 Aktiviere %1 @@ -1719,7 +1376,6 @@ Sollen sie überschrieben werden? Core::Internal::EditMode - Edit Editieren @@ -1727,72 +1383,58 @@ Sollen sie überschrieben werden? Core::Internal::EditorSplitter - Split Left/Right Links/rechts teilen - Split Top/Bottom Oben/unten teilen - Unsplit Teilung aufheben - Default Splitter Layout Vorgabe wiederherstellen - Save Current as Default Gegenwärtige Anordnung als Vorgabe speichern - Restore Default Layout Vorgabe wiederherstellen - Previous Document Voriges Dokument - Alt+Left Alt+Left - Next Document Nächstes Dokument - Alt+Right Alt+Right - Previous Group Vorige Gruppe - Next Group Nächste Gruppe - Move Document to Previous Group Dokument in vorige Gruppe verschieben - Move Document to Next Group Dokument in nächste Gruppe verschieben @@ -1800,13 +1442,10 @@ Sollen sie überschrieben werden? Core::Internal::EditorView - - Placeholder Platzhalter - Close Schließen @@ -1814,102 +1453,82 @@ Sollen sie überschrieben werden? Core::Internal::GeneralSettings - General Allgemein - <System Language> <Sprache des Betriebssystems> - Restart required Neustart erforderlich - The language change will take effect after a restart of Qt Creator. Die Änderung der Sprache wird nach einem Neustart von Qt Creator wirksam. - Variables Variablen - Reset to default Zurücksetzen - R R - Terminal: Terminal: - External editor: Externer Editor: - ? ? - When files are externally modified: Wenn externe Änderungen an Dateien festgestellt werden: - External file browser: Externer Datei-Browser: - User Interface Benutzeroberfläche - Color: Farbe: - Language: Sprache: - System System - Default file encoding: Vorgabe-Encoding: - Always Ask Stets fragen - Reload All Unchanged Editors Alle Dateien in ungeänderten Editoren neu laden - Ignore Modifications Änderungen ignorieren @@ -1917,188 +1536,147 @@ Sollen sie überschrieben werden? Core::Internal::MainWindow - Qt Creator Qt Creator - &File &Datei - &Edit &Bearbeiten - &Tools E&xtras - &Window &Fenster - &Help &Hilfe - &New File or Project... &Neu... - &Open File or Project... Datei oder Projekt &öffnen... - Open File &With... &Öffne Datei mit... - Recent &Files Zu&letzt bearbeitete Dateien - - &Save &Speichern - - Save &As... Speichern &unter... - - Ctrl+Shift+S Ctrl+Shift+S - Save A&ll &Alles speichern - &Print... &Drucken... - E&xit B&eenden - Ctrl+Q Ctrl+Q - - &Undo &Rückgängig - - &Redo &Wiederholen - Cu&t &Ausschneiden - &Copy &Kopieren - &Paste &Einfügen - &Select All Alles Aus&wählen - &Go To Line... &Gehe zu Zeile... - Ctrl+L Ctrl+L - &Options... &Einstellungen... - Minimize Minimieren - Zoom Vergrößern - Show Sidebar Seitenleiste anzeigen - Full Screen Vollbild - &Views &Ansichten - About &Qt Creator Über &Qt Creator - About &Qt Creator... Über &Qt Creator... - About &Plugins... Plugins... - New Title of dialog Neu - Settings... Einstellungen... @@ -2106,7 +1684,6 @@ Sollen sie überschrieben werden? Core::Internal::MessageOutputWindow - General Messages Allgemeine Ausgaben @@ -2114,7 +1691,6 @@ Sollen sie überschrieben werden? Core::Internal::NavComboBox - Activate %1 Aktiviere %1 @@ -2122,12 +1698,10 @@ Sollen sie überschrieben werden? Core::Internal::NavigationSubWidget - Split Teilen - Close Schließen @@ -2135,17 +1709,14 @@ Sollen sie überschrieben werden? Core::Internal::NavigationWidget - Hide Sidebar Seitenleiste verbergen - Show Sidebar Seitenleiste anzeigen - Activate %1 Pane Aktiviere Panel '%1' @@ -2153,27 +1724,22 @@ Sollen sie überschrieben werden? Core::Internal::NewDialog - New Project Neues Projekt - Choose a template: Vorlage: - &Choose... &Auswählen... - Projects Projekte - Files and Classes Dateien und Klassen @@ -2181,33 +1747,26 @@ Sollen sie überschrieben werden? Core::Internal::OpenEditorsWidget - - Open Documents Offene Dokumente - Close %1 Schließe %1 - Close Editor Editor schließen - Close All Except %1 Alle außer %1 schließen - Close Other Editors Andere Editoren schließen - Close All Editors Alle Editoren schließen @@ -2215,8 +1774,6 @@ Sollen sie überschrieben werden? Core::Internal::OpenEditorsWindow - - * * @@ -2224,7 +1781,6 @@ Sollen sie überschrieben werden? Core::Internal::OpenWithDialog - Open file '%1' with: Öffne '%1; mit: @@ -2232,38 +1788,30 @@ Sollen sie überschrieben werden? Core::Internal::OutputPaneManager - Output Ausgaben - Clear Löschen - Next Item Nächster Eintrag - Previous Item Vorangehender Eintrag - - Maximize Output Pane Ausgabepanel maximiert darstellen - Output &Panes Ausgabe&panele - Minimize Output Pane Ausgabepanel minimiert darstellen @@ -2271,38 +1819,31 @@ Sollen sie überschrieben werden? Core::Internal::PluginDialog - Details Beschreibung - Error Details Fehlermeldungen zu %1 Fehlermeldungen - Close Schließen - Restart required. Neustart erforderlich. - Installed Plugins Installierte Plugins - Plugin Details of %1 Beschreibung zu %1 - Plugin Errors of %1 Fehler in %1 @@ -2310,7 +1851,6 @@ Sollen sie überschrieben werden? Core::Internal::ProgressView - Processes Prozesse @@ -2318,22 +1858,18 @@ Sollen sie überschrieben werden? Core::Internal::SaveItemsDialog - Do not Save Nicht speichern - Save All Alle speichern - Save Speichern - Save Selected Auswahl speichern @@ -2341,12 +1877,10 @@ Sollen sie überschrieben werden? Core::Internal::SettingsDialog - Preferences Einstellungen - Options Einstellungen @@ -2354,38 +1888,30 @@ Sollen sie überschrieben werden? Core::Internal::ShortcutSettings - Keyboard Tastatur - Keyboard Shortcuts Tastenkürzel - Key sequence: Tastenfolge: - Shortcut Tastenkürzel - Import Keyboard Mapping Scheme Tastaturschema importieren - - Keyboard Mapping Scheme (*.kms) Tastaturschema-Datei (*.kms) - Export Keyboard Mapping Scheme Tastaturschema exportieren @@ -2393,12 +1919,10 @@ Sollen sie überschrieben werden? Core::Internal::SideBarWidget - Split Teilen - Close Schließen @@ -2406,23 +1930,19 @@ Sollen sie überschrieben werden? Core::Internal::VersionDialog - About Qt Creator Über Qt Creator - (%1) (%1) - From revision %1<br/> This gets conditionally inserted as argument %8 into the description string. Revision %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>Basierend auf Qt %2 (%3 bit)<br/><br/>Erstellt am %4 um %5<br /><br/>%9<br/>Copyright 2008-%6 %7. Alle Rechte vorbehalten.<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/> @@ -2430,7 +1950,6 @@ Sollen sie überschrieben werden? Core::ModeManager - Switch to <b>%1</b> mode Gehe zu Mode <b>'%1'</b> @@ -2438,14 +1957,12 @@ Sollen sie überschrieben werden? Core::ScriptManager - Exception at line %1: %2 %3 Ausnahme in Zeile%1: %2 %3 - Unknown error Unbekannter Fehler @@ -2453,7 +1970,6 @@ Sollen sie überschrieben werden? Core::StandardFileWizard - New %1 TODO: Grammatical case problem Neue %1 @@ -2462,22 +1978,18 @@ Sollen sie überschrieben werden? CppEditor::Internal::CPPEditor - - Sort alphabetically + Sort Alphabetically Alphabetisch sortieren - This change cannot be undone. Diese Änderung kann nicht rückgängig gemacht werden. - Yes, I know what I am doing. Ja, Ich bin mir dessen bewusst. - Unused variable Unbenutzte Variable @@ -2485,17 +1997,14 @@ Sollen sie überschrieben werden? CppEditor::Internal::ClassNamePage - Enter Class Name Name der Klasse - The header and source file names will be derived from the class name Die Dateinamen werden aus dem Klassennamen generiert - Configure... Einstellungen... @@ -2503,7 +2012,6 @@ Sollen sie überschrieben werden? CppEditor::Internal::CppClassWizard - Error while generating file contents. Fehler beim Generieren der Dateien. @@ -2511,12 +2019,10 @@ Sollen sie überschrieben werden? CppEditor::Internal::CppClassWizardDialog - C++ Class Wizard Neue C++ Klasse - Details Details @@ -2524,62 +2030,50 @@ Sollen sie überschrieben werden? CppEditor::Internal::CppPlugin - C++ Header File C++ Header-Datei - Creates a C++ header and a source file for a new class that you can add to a C++ project. Erstellt C++-Header- und Quelldateien für eine neue Klasse eines C++-Projekts. - Creates a C++ source file that you can add to a C++ project. Erstellt eine C++-Quelldatei für ein C++-Projekt. - C++ Source File C++-Quelldatei - Creates a C++ header file that you can add to a C++ project. Erstellt eine C++-Header-Datei für ein C++-Projekt. - Follow Symbol Under Cursor Symbol unter Einfügemarke verfolgen - Switch Between Method Declaration/Definition Wechsel zwischen Deklaration und Definition der Methode. - Rename Symbol Under Cursor Symbol unter Einfügemarke umbenennen - Update Code Model Code-Modell aktualisieren - C++ Class C++-Klasse - Find Usages Verwendung suchen - Ctrl+Shift+U Ctrl+Shift+U @@ -2587,22 +2081,18 @@ Sollen sie überschrieben werden? CppFileSettingsPage - Header suffix: Endung für Header-Dateien: - Source suffix: Endung für Quelldateien: - Lower case file names Kleinbuchstaben für Dateinamen verwenden - License template: Lizenz-Vorlage: @@ -2610,7 +2100,6 @@ Sollen sie überschrieben werden? CppPreprocessor - %1: No such file or directory %1: Es existiert keine Datei oder kein Verzeichnis dieses Namens @@ -2618,12 +2107,10 @@ Sollen sie überschrieben werden? CppTools - File Naming Namenskonventionen für Dateien - C++ C++ @@ -2631,7 +2118,6 @@ Sollen sie überschrieben werden? CppTools::Internal::CompletionSettingsPage - Completion Ergänzung @@ -2639,7 +2125,6 @@ Sollen sie überschrieben werden? CppTools::Internal::CppClassesFilter - Classes Klassen @@ -2647,7 +2132,6 @@ Sollen sie überschrieben werden? CppTools::Internal::CppCurrentDocumentFilter - Methods in current Document Methoden im aktuellen Dokument @@ -2655,7 +2139,6 @@ Sollen sie überschrieben werden? CppTools::Internal::CppFileSettingsWidget - /************************************************************************** ** Qt Creator license header template ** Special keywords: %USER% %DATE% %YEAR% @@ -2672,22 +2155,18 @@ Sollen sie überschrieben werden? - Edit... Ändern... - Choose Location for New License Template File Dateiname für eine neue Lizenzvorlage - Template write error Fehler beim Ausschreiben der Vorlage - Cannot write to %1: %2 Die Datei %1 kann nicht geschrieben werden: %2 @@ -2695,8 +2174,6 @@ Sollen sie überschrieben werden? CppTools::Internal::CppFindReferences - - Searching Suche @@ -2704,7 +2181,6 @@ Sollen sie überschrieben werden? CppTools::Internal::CppFunctionsFilter - Methods Methoden @@ -2712,12 +2188,10 @@ Sollen sie überschrieben werden? CppTools::Internal::CppModelManager - Scanning Suche - Parsing Parse @@ -2725,7 +2199,6 @@ Sollen sie überschrieben werden? CppTools::Internal::CppLocatorFilter - Classes and Methods Klassen und Methoden @@ -2733,12 +2206,10 @@ Sollen sie überschrieben werden? CppTools::Internal::CppToolsPlugin - &C++ &C++ - Switch Header/Source Zwischen Header- und Quelldatei wechseln @@ -2746,7 +2217,6 @@ Sollen sie überschrieben werden? CppTools::Internal::FunctionArgumentWidget - %1 of %2 %1 von %2 @@ -2754,30 +2224,109 @@ Sollen sie überschrieben werden? Debugger - General Allgemein - Debugger Debugger - <Encoding error> <Encoding-Fehler> + + Error Loading Symbols + Fehler beim Laden der Symbole + + + No executable to load symbols from specified. + Es wurde keine ausführbare Datei zum Laden der Symbole angegeben. + + + Symbols found. + Die Symbole wurden gefunden. + + + Loading symbols from "%1" failed: + + Das Laden der Symbole von "%1" schlug fehl: + + + + Attached to core temporarily. + Debugge core-Datei temporär. + + + Unable to determine executable from core file. + Es konnte keine ausführbare Datei aus der core-Datei bestimmt werden. + + + Attached to core. + Debugge core-Datei. + + + Attach to core "%1" failed: + + Das Debuggen der core-Datei "%1" schlug fehl: + + + + Cannot set up communication with child process: %1 + Die Kommunikation mit dem untergeordneten Prozess konnte nicht hergestellt werden: %1 + + + Starting executable failed: + + Das Starten der ausführbaren Datei schlug fehl: + + + + The upload process failed to start. Shell missing? + Das Hochladen schlug fehl. Eine mögliche Ursache könnte ein fehlendes Shell-Programm sein. + + + 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. + + + + 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 des Schreibens zum Hochlade-Prozess auf. Wahrscheinlich 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 des Lesens vom Hochlade-Prozess auf. Wahrscheinlich 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 Hochlade-Prozess auf. + + + Error + Fehler + + + Starting remote executable failed: + + Das Starten der ausführbaren Datei auf dem entfernten Rechner schlug fehl: + + + + Debugger Error + Debugger-Fehler + QtDumperHelper - Found an outdated version of the debugging helper library (%1); version %2 is required. Es wurde eine veraltete Version (%1) der Ausgabe-Hilfsbibliothek gefunden. Version %2 ist erforderlich. - %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 Ein unterstützter Datentyp, Qt-Version: %1, Namensraum: %2, Version: %3 @@ -2785,7 +2334,6 @@ Sollen sie überschrieben werden? - <none> <kein> @@ -2793,166 +2341,130 @@ Sollen sie überschrieben werden? Debugger::DebuggerManager - Continue Fortsetzen - - Interrupt Anhalten - Step Over Einzelschritt über - Step Into Einzelschritt herein - Step Out Einzelschritt heraus - - Run to Line Ausführen bis Zeile - Run to Outermost Function Ausführen bis zu äußerster Funktion - Immediately Return From Inner Function Sofortiges Herausspringen aus innerer Funktion - - Jump to Line Zeile anspringen - Toggle Breakpoint Haltepunkt umschalten - - Add to Watch Window Zu Überwachten Ausdrücken hinzufügen - Snapshot Snapshot - Reverse Direction Umgekehrte Richtung - Running... Läuft... - Changing breakpoint state requires either a fully running or fully stopped application. Das Ändern des Haltepunkt-Status erfordert, dass die Anwendung läuft oder vollständig gestoppt ist. - The application requires the debugger engine '%1', which is disabled. Diese Anwendung erfordert den Debugger '%1', der gegenwärtig deaktiviert ist. - Starting debugger for tool chain '%1'... Starte Debugger für Toolchain '%1'... - Warning Warnung - Turn off helper usage Ausgabe-Hilfsbibliothek deaktivieren - The debugger could not load the debugging helper library. Der Debugger konnte die Ausgabe-Hilfsbibliothek nicht finden. - 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. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. Die Ausgabe-Hilfsbibliothek dient zur Ausgabe der Werte einiger Datentypen aus Qt- und den Standardbibliotheken. Sie muss mit jeder benutzten Qt-Version compiliert werden. Das geschieht in der Seite 'Qt-Einstellungen' durch Auswahl der Qt-Installation und Klicken auf 'Erstellen' für die Ausgabe-Hilfsbibliothek. - Cannot debug '%1' (tool chain: '%2'): %3 Der Debugger kann nicht mit '%1' (Toolchain '%2') gestartet werden: %3 - Abort Debugging Debuggen abbrechen - Aborts debugging and resets the debugger to the initial state. Bricht das Debuggen ab und setzt den Debugger in den Ausgangszustand. - Stopped Angehalten - Exited Beendet - Save Debugger Log Debugger Log speichern - %1 (explicitly set in the Debugger Options) %1 (explizit in den Debugger-Einstellungen gesetzt) - Open Qt preferences Qt-Versionseinstellungen öffnen - Continue anyway Trotzdem fortsetzen - Debugging helper missing Ausgabe-Hilfsbibliothek nicht gefunden - Stop Debugger Debugger anhalten @@ -2960,12 +2472,10 @@ Sollen sie überschrieben werden? Debugger::Internal::AddressDialog - Select start address Startadresse - Enter an address: Adresse: @@ -2973,12 +2483,10 @@ Sollen sie überschrieben werden? Debugger::Internal::AttachCoreDialog - Select Executable Ausführbare Datei auswählen - Select Core File Core-Datei auswählen @@ -2986,22 +2494,18 @@ Sollen sie überschrieben werden? Debugger::Internal::AttachExternalDialog - Process ID Prozess-Id - Name Name - State Status - Refresh Aktualisieren @@ -3009,126 +2513,94 @@ Sollen sie überschrieben werden? Debugger::Internal::BreakHandler - - Marker File: Marker-Datei: - - Marker Line: Marker-Zeile: - - Breakpoint Number: Nummer des Haltepunkts: - - Breakpoint Address: Adresse des Haltepunkts: - Property Eigenschaft - Requested Angefordert - Obtained Erhalten - Internal Number: Interne Nummer: - - File Name: Dateiname: - - Function Name: Funktionsname: - - Line Number: Zeilennummer: - Corrected Line Number: Korrigierte Zeilennummer: - - Condition: Bedingung: - - Ignore Count: Anhalten erst nach: - Number Zahl - Function Funktion - File Datei - Line Zeile - Condition Bedingung - Ignore Anhalten nach - Address Adresse - Breakpoint will only be hit if this condition is met. Der Haltepunkt wird nur ausgelöst, wenn die Bedingung erfüllt ist. - Breakpoint will only be hit after being ignored so many times. Der Haltepunkt wird ausgelöst, nachdem er vorher so viele Male übersprungen wurde. @@ -3136,102 +2608,82 @@ Sollen sie überschrieben werden? Debugger::Internal::BreakWindow - Breakpoints Haltepunkte - Use Short Path Kurzen Pfad verwenden - Use Full Path Vollständigen Pfad verwenden - Delete Breakpoint Haltepunkt löschen - Delete All Breakpoints Alle Haltepunkte löschen - Delete Breakpoints of "%1" Haltepunkte in Datei "%1" löschen - Delete Breakpoints of File Haltepunkte in Datei löschen - Adjust Column Widths to Contents Spaltenbreite an Inhalt anpassen - Always Adjust Column Widths to Contents Spaltenbreite immer an Inhalt anpassen - Edit Condition... Bedingung ändern... - Synchronize Breakpoints Haltepunkte synchronisieren - Disable Selected Breakpoints Ausgewählte Haltepunkte deaktivieren - Enable Selected Breakpoints Ausgewählte Haltepunkte aktivieren - Disable Breakpoint Haltepunkt deaktivieren - Enable Breakpoint Haltepunkt aktivieren - Set Breakpoint at Function... Haltepunkt bei Funktion - Set Breakpoint at Function "main" Haltepunkt bei Funktion main() setzen - Set Breakpoint at "throw" Haltepunkt bei "throw" setzen - Set Breakpoint at "catch" Haltepunkt bei "catch" setzen - Conditions on Breakpoint %1 Bedingungen des Haltepunkts %1 @@ -3239,154 +2691,123 @@ Sollen sie überschrieben werden? Debugger::Internal::CdbDebugEngine - The function "%1()" failed: %2 Function call failed Der Funktionsaufruf "%1()" schlug fehl: %2 - Version: %1 Version: %1 - <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> <html>Die gegenwärtig installierte Version der <i>Debugging Tools for Windows</i> (%1) ist veraltet. Es wird ein Upgrade auf Version %2 empfohlen, um die Qt-Datentypen richtig anzeigen zu können.</html> - Debugger Debugger - The dumper library was not found at %1. Es konnte keine Ausgabe-Hilfsbibliothek unter %1 gefunden werden. - The console stub process was unable to start '%1'. Der Konsolenprozess konnte '%1' nicht ausführen. - Attaching to core files is not supported! Das Debuggen von Core-Dateien wird nicht unterstützt! - The process exited with exit code %1. Der Prozess wurde beendet, Rückgabewert %1. - Continuing with '%1'... Setze mit '%1' fort... - Unable to continue: %1 Die Ausführung des Prozesses kann nicht fortgesetzt werden: %1 - Reverse stepping is not implemented. Die Funktionalität für 'Einzelschritt rückwärts' ist nicht implementiert. - Thread %1 cannot be stepped. Für den Thread %1 ist kein Einzelschritt möglich. - Stepping %1 Führe Schritt aus (%1) - Running requested... Fortsetzung angefordert... - Running up to %1:%2... Ausführung bis %1:%2... - Running up to function '%1()'... Ausführung bis zu Funktion '%1()'... - Jump to line is not implemented Die Funktionalität für 'Springe zu Zeile' ist nicht implementiert - Unable to assign the value '%1' to '%2': %3 Der Wert '%1' konnte nicht an '%2' zugewiesen werden: %3 - Unable to retrieve %1 bytes of memory at 0x%2: %3 Die Abfrage des Speichers (%1 bytes ab 0x%2) schlug fehl: %3 - Cannot retrieve symbols while the debuggee is running. Die Symbole können nicht bestimmt werden, solange die zu debuggende Anwendung läuft. - - Debugger Error Debugger-Fehler - Ignoring initial breakpoint... Anfänglicher Haltepunkt wurde übergangen... - Interrupted in thread %1, current thread: %2 Angehalten im Thread: %1, aktueller Thread: %2 - Stopped, current thread: %1 Angehalten, Thread: %1 - Changing threads: %1 -> %2 Wechsel von Thread %1 zu %2 - Stopped at %1:%2 in thread %3. Bei %1:%2 im Thread %3 angehalten. - Stopped at %1 in thread %2 (missing debug information). Bei %1 im Thread %2 angehalten (keine Debuginformation). - Stopped at %1 (%2) in thread %3 (missing debug information). Bei %1 (%2) im Thread %3 angehalten (keine Debuginformation). - Stopped in thread %1 (missing debug information). Im Thread %1 angehalten (keine Debuginformation). - Breakpoint: %1 Haltepunkt: %1 @@ -3394,57 +2815,46 @@ Sollen sie überschrieben werden? Debugger::Internal::CdbDumperHelper - injection Injektion - debugger call Debugger-Aufruf - Loading the custom dumper library '%1' (%2) ... Ausgabe-Hilfsbibliothek '%1' wird geladen (%2)... - Loading of the custom dumper library '%1' (%2) failed: %3 Das Laden der Ausgabe-Hilfsbibliothek '%1' (%2) schlug fehl: %3 - Loaded the custom dumper library '%1' (%2). Die Ausgabe-Hilfsbibliothek '%1' (%2) wurde geladen. - Stopped / Custom dumper library initialized. Angehalten / Ausgabe-Hilfsbibliothek initialisiert. - Disabling dumpers due to debuggee crash... Ausgabe-Hilfsbibliothek deaktiviert wegen Absturz der zu debuggenden Anwendung... - The debuggee does not appear to be Qt application. Die zu debuggende Anwendung scheint nicht Qt zu benutzen. - Initializing dumpers... Ausgabe-Hilfsbibliothek initialisieren... - The custom dumper library could not be initialized: %1 Die Ausgabe-Hilfsbibliothek konnte nicht initialisiert werden: %1 - Querying dumpers for '%1'/'%2' (%3) Abfrage der Ausgabe-Hilfsbibliothek für '%1'/'%2' (%3) @@ -3452,24 +2862,33 @@ Sollen sie überschrieben werden? Debugger::Internal::CdbOptionsPageWidget - + <html><body><p>Specify the path to the <a href="%1">Debugging Tools for Windows</a> (%2) here.</p><p><b>Note:</b> Restarting Qt Creator is required for these settings to take effect.</p></p></body></html> + Label text for path configuration. %2 is "x-bit version". + <html><body><p>Geben Sie den Pfad zu den <a href="%1">Debugging Tools for Windows</a> (%2) an.</p><p><b>Hinweis:</b> Änderungen werden erst beim nächsten Start von Qt Creator wirksam.</p></p></body></html> + + + 64-bit version + 64-bit-Version + + + 32-bit version + 32-bit-Version + + Autodetect Suchen - "Debugging Tools for Windows" could not be found. Die "Debugging Tools for Windows" konnten nicht gefunden werden. - Checked: %1 Abgesuchte Verzeichnisse: %1 - Autodetection Suche @@ -3477,74 +2896,21 @@ Sollen sie überschrieben werden? Debugger::Internal::CdbSymbolPathListEditor - Symbol Server... Symbol-Server... - Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. Fügt den von Microsoft betriebenen Symbol-Server hinzu, der die Symbole für die Bibliotheken des Betriebssystems bereitstellt. Erfordert die Angabe eines lokalen Cache-Verzeichnisses. - Pick a local cache directory Wählen Sie ein Cache-Verzeichnis aus - - Debugger::Internal::CoreGdbAdapter - - - Attached to core. - Debugge core-Datei. - - - - Symbols found. - Die Symbole wurden gefunden. - - - - - - Error Loading Symbols - Fehler beim Laden der Symbole - - - - No executable to load symbols from specified. - Es wurde keine ausführbare Datei zum Laden der Symbole angegeben. - - - - Loading symbols from "%1" failed: - - Das Laden der Symbole von "%1" schlug fehl: - - - - - Attached to core temporarily. - Debugge core-Datei temporär. - - - - Unable to determine executable from core file. - Es konnte keine ausführbare Datei aus der core-Datei bestimmt werden. - - - - Attach to core "%1" failed: - - Das Debuggen der core-Datei "%1" schlug fehl: - - - Debugger::Internal::DebugMode - Debug Debuggen @@ -3552,7 +2918,6 @@ Sollen sie überschrieben werden? Debugger::Internal::DebuggerOutputWindow - Debugger Debugger @@ -3560,18 +2925,15 @@ Sollen sie überschrieben werden? Debugger::Internal::DebuggerListener - Close Debugging Session Debuggen beenden - A debugging session is still in progress. Would you like to terminate it? Der Debugger läuft noch. Möchten Sie ihn beenden? - A debugging session is still in progress. Terminating the session in the current state (%1) 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 (%1) könnte zu einem inkonsistenten Zustand des untersuchten Prozesses führen. Möchten Sie ihn trotzdem beenden? @@ -3579,102 +2941,82 @@ Would you like to terminate it? Debugger::Internal::DebuggerPlugin - Option '%1' is missing the parameter. Das Kommandozeilenargument %1erfordert ein Argument. - The parameter '%1' of option '%2' is not a number. Der Parameter '%1' des Kommandozeilenarguments '%2' ist keine Zahl. - Invalid debugger option: %1 Ungültiger Debugger-Kommandozeilenparameter: %1 - Error evaluating command line arguments: %1 Fehler beim Auswerten der Kommandozeilenargumente: %1 - Start and Debug External Application... Debugge externe Anwendung... - Attach to Running External Application... Debugge externe, laufende Anwendung... - Attach to Core... Debugge core-Datei - Start and Attach to Remote Application... An entfernte Anwendung anhängen... - Detach Debugger Debugger abhängen - Stop Debugger/Interrupt Debugger Debugger anhalten/unterbrechen - Reset Debugger Debugger zurücksetzen - Threads: Threads: - Attaching to PID %1. An Prozess %1 angehängt. - Remove Breakpoint Haltepunkt löschen - Disable Breakpoint Haltepunkt deaktivieren - Enable Breakpoint Haltepunkt aktivieren - Set Breakpoint Haltepunkt setzen - Warning Warnung - Cannot attach to PID 0 Der Debugger kann nicht an die Prozess-Id 0 angehängt werden - Attaching to core %1. Debugge core-Datei %1. @@ -3682,7 +3024,6 @@ Would you like to terminate it? Debugger::Internal::DebuggerRunControlFactory - Debug Debuggen @@ -3690,7 +3031,6 @@ Would you like to terminate it? Debugger::Internal::DebuggerRunControl - Debugger Debugger @@ -3698,238 +3038,191 @@ Would you like to terminate it? Debugger::Internal::DebuggerSettings - Verbose Log Ausführliches Logging - 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. 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. - 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. Bewirkt, dass Zeiger im Fenster "Lokale Variablen und Überwachte Ausdrücke" automatisch dereferenziert werden. Das vereinfacht die Baumanzeige, allerdings fehlt die Information über die Zwischenebene. - Debugger Properties... Debugger-Einstellungen... - Adjust Column Widths to Contents Spaltenbreite an Inhalt anpassen - Always Adjust Column Widths to Contents Spaltenbreite immer an Inhalt anpassen - Use Alternating Row Colors Alternierende Farben für Zeilen benutzen - Show a Message Box When Receiving a Signal Empfang eines Signals durch Dialogbox anzeigen - Log Time Stamps Zeitstempel loggen - Operate by Instruction Auf Anweisungsebene arbeiten - Dereference Pointers Automatically Zeiger automatisch dereferenzieren - Watch Expression "%1" Überwachter Ausdruck "%1" - Remove Watch Expression "%1" Überwachten Ausdruck "%1" löschen - Watch Expression "%1" in Separate Window Überwachter Ausdruck "%1" in separatem Fenster - Show "std::" Namespace in Types Leerzeichen &anstelle Tabulatoren einfügen - Show Qt's Namespace in Types Leerzeichen &anstelle Tabulatoren einfügen - Use Debugging Helpers Ausgabe-Hilfsbibliothek benutzen - Debug Debugging Helpers Debug-Version der Ausgabe-Hilfsbibliothek - Use Code Model Code-Modell verwenden - 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. Benutzt das Code-Modell von Qt Creator, um Informationen bezüglich des Gültigkeitsbereiches von Variablen zu erhalten. Bewirkt eine schnellere Anzeige der Werte, kann aber bei optimiertem Code fehlschlagen. - Recheck Debugging Helper Availability Verfügbarkeit der Ausgabe-Hilfsbibliothek prüfen - Synchronize Breakpoints Haltepunkte synchronisieren - Use Precise Breakpoints Genaue Haltepunkte verwenden - 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. Der Gdb-Prozess hat nach %1 Sekunde nicht auf das Kommando reagiert. Das könnte bedeuten, dass er sich in einer Endlosschleife befindet oder für die Operation mehr Zeit benötigt. Sie haben die Wahl zwischen Abwarten oder Abbrechen. - Break on "throw" Bei "throw" anhalten - Break on "catch" Bei "catch" anhalten - Automatically Quit Debugger Debugger automatisch beenden - Use Tooltips in Locals View When Debugging Tooltips für Anzeige der lokalen Variablen - Use Tooltips in Breakpoints View When Debugging Tooltips im Haltepunkt-Fenster - Show Address Data in Breakpoints View When Debugging Adresse des Haltepunkts anzeigen - Show Address Data in Stack View When Debugging Adressen im Stack-Fenster anzeigen - List Source Files Quelldateien anzeigen - Skip Known Frames Bekannte Stellen überspringen - Selecting this results in well-known but usually not interesting frames belonging to reference counting and signal emission being skipped while single-stepping. Bewirkt, dass nicht relevante Aufrufe (wie zum Beispiel zur Referenzzählung und zur Signalübermittlung gehörige Aufrufe) beim Einzelschritt übersprungen werden. - Enable Reverse Debugging Rückwärts Debuggen aktivieren - Register For Post-Mortem Debugging Qt Creator als Post-Mortem-Debugger registrieren - Reload Full Stack Stack vollständig neu laden - Create Full Backtrace Vollständigen Backtrace erzeugen - Execute Line Zeile ausführen - Change debugger language automatically Spracheinstellung des Debuggers automatisch anpassen - Changes the debugger language according to the currently opened file. Ändert die Spracheinstellung des Debuggers in Abhängigkeit von der gegenwärtig geöffneten Datei. - Use tooltips in main editor when debugging Tooltips im Haupt-Editor beim Debuggen benutzen - 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. Diese Option aktiviert Tooltips für Variablen beim Debuggen. Da es das Debuggen verlangsamt und wegen der fehlenden Bereichsinformation nicht zuverlässig ist, ist es per Vorgabe deaktiviert. - Checking this will enable tooltips in the locals view during debugging. Schaltet Tooltips für die Anzeige der lokalen Variablen während des Debuggens ein. - Checking this will enable tooltips in the breakpoints view during debugging. Schaltet Tooltips im Haltepunkt-Fenster während des Debuggens ein. - Checking this will show a column with address information in the breakpoint view during debugging. Fügt eine Spalte mit den Adressen der Haltepunkte zur Anzeige während des Debuggens hinzu. - Checking this will show a column with address information in the stack view during debugging. Fügt eine Spalte mit Adressinformation zur Anzeige während des Debuggens hinzu. @@ -3937,17 +3230,14 @@ Sie haben die Wahl zwischen Abwarten oder Abbrechen. Debugger::Internal::DebuggingHelperOptionPage - Debugging Helper Ausgabe-Hilfsbibliothek - Choose DebuggingHelper Location Pfad zur Ausgabe-Hilfsbibliothek einstellen - Ctrl+Shift+F11 Ctrl+Shift+F11 @@ -3955,150 +3245,112 @@ Sie haben die Wahl zwischen Abwarten oder Abbrechen. Debugger::Internal::GdbEngine - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. Der Start des Gdb-Prozesses schlug fehl. Entweder fehlt die ausführbare Datei '%1' oder die Berechtigungen sind nicht ausreichend. - The Gdb process crashed some time after starting successfully. Der Gdb-Prozess ist einige Zeit nach dem Start abgestürzt. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. Zeitüberschreitung bei der letzten waitFor...()-Funktion. Der Status des QProcess ist unverändert, und waitFor...() kann noch einmal gerufen. - An error occurred when attempting to write to the Gdb process. For example, the process may not be running, or it may have closed its input channel. Ein Fehler trat beim Versuch des Schreibens zum Gdb-Prozess auf. Wahrscheinlich läuft der Prozess nicht, oder hat seinen Eingabekanal geschlossen. - An error occurred when attempting to read from the Gdb process. For example, the process may not be running. Ein Fehler trat beim Versuch des Lesens vom Gdb-Prozess auf. Wahrscheinlich läuft der Prozess nicht. - - Thread group %1 created. - Thread-Gruppe %1 erzeugt. - - - Stopping temporarily. Temporär Anhalten. - Process failed to start. Der Prozess konnte nicht gestartet werden. - <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 nach Erhalt 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 - Reading %1... Lese %1... - Application exited with exit code %1 Die Anwendung wurde beendet, Rückgabewert %1 - Application exited after receiving signal %1 Die Anwendung wurde nach Erhalt des Signals %1 beendet. - Application exited normally Die Anwendung wurde normal beendet. - Loading %1... Lade %1... - Stopped: "%1" Angehalten: "%1" - Stopped: %1 by signal %2 Angehalten: %1, Signal %2 - Processing queued commands. Kommando-Warteschlange wird abgearbeitet. - - Stopped. Angehalten. - - - Execution Error Fehler bei der Ausführung - - - Cannot continue debugged process: Der zu debuggende Prozess kann nicht fortgesetzt werden: - The debugging helper library was not found at %1. Die Ausgabe-Hilfsbibliothek konnte nicht unter %1 gefunden werden. - Unable to start gdb '%1': %2 Der gdb-Debugger '%1' kann nicht ausgeführt werden: %2 - Cannot find debugger initialization script Das Initialisierungsskript konnte nicht gefunden werden - 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. Auf die in den Debugger-Einstellungen angegebene Skriptdatei '%1' kann nicht zugegriffen werden. Wenn kein Skript benötigt wird, können Sie die Einstellung rücksetzen, um diese Warnung zu umgehen. - Unable to run '%1': %2 '%1' kann nicht ausgeführt werden: %2 - - Retrieving data for stack view... Daten der Stack-Anzeige werden empfangen... - Retrieving data for watch view (%n requests pending)... Daten der für die Anzeige der lokalen Variablen werden empfangen (noch eine ausstehende Anfrage) ... @@ -4106,7 +3358,6 @@ Sie haben die Wahl zwischen Abwarten oder Abbrechen. - <%n items> In string list @@ -4115,12 +3366,10 @@ Sie haben die Wahl zwischen Abwarten oder Abbrechen. - Debugging helpers not found. Die Ausgabe-Hilfsbibliothek konnte nicht gefunden werden. - Dumper version %1, %n custom dumpers found. Version der Ausgabe-Hilfsbibliothek: %1, ein unterstützter Datentyp. @@ -4128,326 +3377,261 @@ Sie haben die Wahl zwischen Abwarten oder Abbrechen. - An unknown error in the Gdb process occurred. Im Gdb-Prozess trat ein unbekannter Fehler auf. - Library %1 loaded Bibliothek %1 geladen - Library %1 unloaded Bibliothek %1 entladen - + Thread group %1 created + Thread-Gruppe %1 erzeugt + + Thread %1 created Thread %1 erzeugt - Thread group %1 exited Thread-Gruppe %1 beendet - Thread %1 in group %2 exited Thread %1 in Gruppe %2 beendet - Thread %1 selected Thread %1 ausgewählt - Running... Läuft... - Stop requested... Stop angefordert... - 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. Der Gdb-Prozess hat nach %1 Sekunde nicht auf das Kommando reagiert. Das könnte bedeuten, dass er sich in einer Endlosschleife befinded oder für die Operation mehr Zeit benötigt. Sie haben die Wahl zwischen Abwarten oder Abbrechen. - Gdb not responding Gdb antwortet nicht - Give gdb more time Fortsetzen - Stop debugging Debuggen beenden - - - Executable failed Fehler bei Ausführung - - Executable failed: %1 Fehler bei Ausführung: %1 - <unknown> <unbekannt> - Jumped. Stopped Übersprungen / Angehalten - Target line hit. Stopped Zeile erreicht / Angehalten - Stopped at breakpoint %1 in thread %2. An Haltepunkt %1 im Thread %2 angehalten. - <Unknown> name <Unbekannt> - <Unknown> meaning <Unbekannt> - Failed to shut down application Die Anwendung konnte nicht beendet werden - There is no gdb binary available for '%1' Gdb: Es wurde keine ausführbare Datei für '%1' angegeben - Launching Starte - Continuing after temporary stop... Setze nach temporärem Anhalten fort... - Running requested... Fortsetzung angefordert... - Step requested... Einzelschritt angefordert... - Step by instruction requested... Einzelschritt über Anweisung angefordert... - Finish function requested... Ausführung bis Funktionsende angefordert... - Step next requested... Einzelschritt angefordert... - Step next instruction requested... Einzelschritt über Anweisung angefordert... - Run to line %1 requested... Ausführung bis Zeile %1 angefordert... - Run to function %1 requested... Ausführung bis Funktion %1 angefordert... - Immediate return from function requested... Herausspringen aus innerer Funktion... - ATTEMPT BREAKPOINT SYNC ATTEMPT BREAKPOINT SYNC - <unknown> address End address of loaded module <unbekannt> - Jumping out of bogus frame... Verlasse ungültigen Stack-Rahmen... - - Snapshot Creation Error Fehler bei der Erzeugung eines Snapshots - Cannot create snapshot file. Es konnte keine Snapshot-Datei erstellt werden. - Cannot create snapshot: Es konnte kein Snapshot erstellt werden: - Snapshot Reloading Neu laden des Snapshots - In order to load snapshots the debugged process needs to be stopped. Continuation will not be possible afterwards. Do you want to stop the debugged process and load the selected snapshot? Der zu debuggende Prozess muss angehalten werden, um einen Snapshot zu laden. Eine Fortsetzung ist danach nicht mehr möglich. Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot laden? - Finished retrieving data Alle Daten erhalten - Custom dumper setup: %1 Ausgabe-Hilfsbibliothek-Initialisierung: %1 - Failed to start application: Die Anwendung konnte nicht gestartet werden: - Failed to start application Anwendung konnte nicht gestartet - <0 items> <leer> - <shadowed> <überlagert> - <n/a> <k.a.> - <anonymous union> <Datentyp anonyme Union> - <no information> About variable's value <keine Angabe> - - - - Disassembler failed: %1 Fehler beim Disassemblieren: %1 - Gdb I/O Error Gdb Ein/Ausgabefehler - Unexpected Gdb Exit Gdb unerwartet beendet - The gdb process exited unexpectedly (%1). Der Gdb-Prozess wurde plötzlich beendet (%1). - crashed abgestürzt - code %1 Rückgabewert %1 - Adapter start failed Der Start des Adapters schlug fehl - - Setting breakpoints... Setze Haltepunkte... - Starting inferior... Starte zu debuggenden Prozess... - Adapter crashed Der Adapter ist abgestürzt @@ -4455,12 +3639,10 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::GdbOptionsPage - Gdb Gdb - Choose Location of Startup Script File Pfad zu Startup-Skript @@ -4468,17 +3650,14 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::MemoryViewAgent - Memory $ Speicher $ - 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. @@ -4486,32 +3665,26 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::ModulesModel - yes ja - no nein - Module name Modulname - Symbols read Symbole gelesen - Start address Startadresse - End address Endadresse @@ -4519,82 +3692,66 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::ModulesWindow - Modules Module - Update Module List Modulliste aktualisieren - Show Source Files for Module "%1" Quelldateien des Moduls "%1" - Load Symbols for All Modules Symbole aller Module laden - Load Symbols for Module Symbole des Moduls laden - Edit File Datei zum Editieren anfordern - Show Symbols Symbole anzeigen - Load Symbols for Module "%1" Symbole des Moduls "%1" laden - Edit File "%1" Datei "%1" editieren - Show Symbols in File "%1" Symbole der Datei "%1" laden - Adjust Column Widths to Contents Spaltenbreite an Inhalt anpassen - Always Adjust Column Widths to Contents Spaltenbreite immer an Inhalt anpassen - Address Adresse - Code Code - Symbol Symbol - Symbols in "%1" Symbole in "%1" @@ -4602,45 +3759,25 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::OutputCollector - Cannot create temporary file: %1 Es konnte keine temporäre Datei erstellt werden: %1 - Cannot create FiFo %1: %2 Die FiFo %1 konnte nicht erzeugt werden: %2 - Cannot open FiFo %1: %2 Die FiFo %1 konnte nicht geöffnet werden: %2 - - Debugger::Internal::PlainGdbAdapter - - - Cannot set up communication with child process: %1 - Die Kommunikation mit dem untergeordneten Prozess konnte nicht hergestellt werden: %1 - - - - Starting executable failed: - - Das Starten der ausführbaren Datei schlug fehl: - - - Debugger::Internal::RegisterHandler - Name Name - Value (base %1) Wert (Basis %1) @@ -4648,130 +3785,69 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::RegisterWindow - Registers Register - Reload Register Listing Register neu laden - Open Memory Editor Speicher-Editor öffnen - Open Memory Editor at %1 Speicher-Editor bei %1 öffnen - Hexadecimal Hexadezimal - Decimal Dezimal - Octal Oktal - Binary Binär - Adjust Column Widths to Contents Spaltenbreite an Inhalt anpassen - Always Adjust Column Widths to Contents Spaltenbreite immer an Inhalt anpassen - - Debugger::Internal::RemoteGdbAdapter - - - The upload process failed to start. Shell missing? - Das Hochladen schlug fehl. Eine mögliche Ursache könnte ein fehlendes Shell-Programm sein. - - - - 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. - Zeitüberschreitung bei der letzten waitFor...()-Funktion. Der Status des QProcess ist unverändert, und waitFor...() kann noch einmal gerufen werden. - - - - 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 des Schreibens zum Hochlade-Prozess auf. Wahrscheinlich 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 des Lesens vom Hochlade-Prozess auf. Wahrscheinlich 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 Hochlade-Prozess auf. - - - - Error - Fehler - - - - Starting remote executable failed: - - Das Starten der ausführbaren Datei auf dem entfernten Rechner schlug fehl: - - - Debugger::Internal::ScriptEngine - Running requested... Fortsetzung angefordert... - '%1' contains no identifier '%1' enthält keinen Bezeichner - String literal %1 Zeichenketten-Literal %1 - Cowardly refusing to evaluate expression '%1' with potential side effects Werte Ausdruck '%1' mit potentiellen Seiteneffekten nicht aus - Stopped at %1:%2. Angehalten bei %1:%2. - Stopped. Angehalten. @@ -4779,12 +3855,10 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::SourceFilesModel - Internal name Interner Name - Full name Vollständiger Name @@ -4792,22 +3866,18 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::SourceFilesWindow - Source Files Quelldateien - Reload Data Daten aktualisieren - Open File Datei öffnen - Open File "%1"' Datei '"%1" öffnen @@ -4815,73 +3885,54 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::StackHandler - ... ... - <More> <Mehr> - - Address: Adresse: - - Function: Funktion: - - File: Datei: - - Line: Zeile: - - From: Von: - - To: Bis: - Level Tiefe - Function Funktion - File Datei - Line Zeile - Address Adresse @@ -4889,42 +3940,34 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::StackWindow - Stack Stack - Copy Contents to Clipboard Inhalt in Zwischenablage kopieren - Open Memory Editor Speicher-Editor öffnen - Open Memory Editor at %1 Speicher-Editor bei %1 öffnen - Open Disassembler Disassembler öffnen - Open Disassembler at %1 Disassembler bei %1 öffnen - Adjust Column Widths to Contents Spaltenbreite an Inhalt anpassen - Always Adjust Column Widths to Contents Spaltenbreite immer an Inhalt anpassen @@ -4932,17 +3975,14 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::StartExternalDialog - Select Executable Ausführbare Datei auswählen - Executable: Ausführbare Datei: - Arguments: Argumente: @@ -4950,22 +3990,18 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::StartRemoteDialog - Select Debugger Debugger auswählen - Select Executable Ausführbare Datei auswählen - Select Sysroot Sysroot auswählen - Select Start Script Startskript auswählen @@ -4973,42 +4009,34 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::ThreadsHandler - Function Funktion - File Datei - Line Zeile - Address Adresse - Thread: %1 Thread: %1 - Thread: %1 at %2 (0x%3) Thread: %1bei %2 (0x%3) - Thread: %1 at %2, %3:%4 (0x%5) Thread: %1 bei %2, %3:%4 (0x%5) - Thread ID Thread-Id @@ -5016,17 +4044,14 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::ThreadsWindow - Thread Thread - Adjust Column Widths to Contents Spaltenbreite an Inhalt anpassen - Always Adjust Column Widths to Contents Spaltenbreite immer an Inhalt anpassen @@ -5034,22 +4059,18 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::TrkGdbAdapter - Port specification missing. Es wurde kein Port angegeben. - Unable to acquire a device on '%1'. It appears to be in use. Es kann nicht auf das Gerät "%1" zugegriffen werden. Offenbar ist es bereits in Benutzung. - Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. Der Prozess wurde gestartet, PID: 0x%1, Thread-Id: 0x%2, Code-Segment: 0x%3, Datensegment: 0x%4. - Connecting to TRK server adapter failed: Die Verbindung zum TRK-Server-Adapter schlug fehl: @@ -5059,13 +4080,10 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::WatchData - - <not in scope> <nicht im Bereich> - %1 <shadowed %2> %1 <überlagert %2> @@ -5073,77 +4091,62 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::WatchHandler - Expression Ausdruck - ... <cut off> ...<Rest abgeschnitten> - Object Address Adresse des Objekts - Internal ID Interner Name - unknown address Unbekannte Adresse - %1 object at %2 Objekt vom Typ %1 bei %2 - <Edit> <Editieren> - Root Wurzelelement - Name Name - Locals Lokale Variablen - Tooltip Tooltip - Watchers Überwachte Ausdrücke - Value Wert - Type Typ - Generation Generation @@ -5151,62 +4154,50 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::WatchModel - decimal dezimal - hexadecimal Hexadezimal - binary binär - octal oktal - Bald pointer Zeiger - Latin1 string Latin1-Zeichenkette - UTF8 string UTF8-Zeichenkette - UTF16 string UTF16-Zeichenkette - UCS4 string UCS4-Zeichenkette - Name Name - Value Wert - Type Typ @@ -5214,67 +4205,54 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad Debugger::Internal::WatchWindow - Locals and Watchers Lokale Variablen und Überwachte Ausdrücke - Clear Löschen - Change Format for Type Format für Typ ändern - Change Format for Type "%1" Format für den Typ '%1' ändern - Change Format for Object at %1 Format für das Objekt bei %1 ändern - Change Format for Object Format für das Objekt ändern - Insert New Watch Item Neuen Überwachten Ausdruck einfügen - Select Widget to Watch Widget zur Überwachung auswählen - Open Memory Editor... Speicher-Editor öffnen... - Open Memory Editor at %1 Speicher-Editor bei %1 öffnen - Refresh Code Model Snapshot Code-Modell Stand auf aktuellen Stand bringen. - Adjust Column Widths to Contents Spaltenbreite an Inhalt anpassen - Always Adjust Column Widths to Contents Spaltenbreite immer an Inhalt anpassen @@ -5282,12 +4260,10 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad DebuggerPane - Clear Contents Inhalt löschen - Save Contents Inhalt speichern @@ -5295,32 +4271,26 @@ Möchten Sie den zu debuggenden Prozess anhalten und den gewählten Snapshot lad DebuggingHelperOptionPage - Use debugging helper from custom location Benutze Ausgabe-Hilfsbibliothek von - Location: Pfad: - Debug debugging helper Debug-Version der Ausgabe-Hilfsbibliothek - 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. Benutzt das Code-Modell von Qt Creator um herauszufinden, ob eine Variable an der Stelle der Unterbrechung durch den Debugger bereits einen Wert hat. - Use code model Code-Modell verwenden - <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> @@ -5329,7 +4299,6 @@ Die Ausgabe-Hilfsbibliothek dient lediglich zur formatierten Ausgabe von Objekte <p>Zum Debuggen mit Qt Creator ist sie jedoch nicht unbedingt erforderlich. </p></body></html> - Use Debugging Helper Ausgabe-Hilfsbibliothek benutzen @@ -5337,12 +4306,10 @@ Die Ausgabe-Hilfsbibliothek dient lediglich zur formatierten Ausgabe von Objekte 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. @@ -5350,49 +4317,40 @@ Die Ausgabe-Hilfsbibliothek dient lediglich zur formatierten Ausgabe von Objekte Designer - The file name is empty. Der Dateiname ist leer. - XML error on line %1, col %2: %3 XML-Fehler auf Zeile %1, Spalte %2: %3 - The <RCC> root element is missing. Das Wurzelelement (<RCC>) fehlt. - Xml Editor XML-Editor - Designer Designer - Class Generation Klassenerzeugung - Form Editor Formulareditor - The generated header of the form '%1' could be found. Rebuilding the project might help. Die automatisch erstellte Header-Datei '%1' des Formulars 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 im Code-Modell nicht gefunden werden. @@ -5402,7 +4360,6 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::FormWindowEditor - untitled kein Titel @@ -5410,42 +4367,34 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::Internal::CppSettingsPageWidget - Form Formular - Embedding of the UI Class Verwendung der UI-Klasse - Aggregation as a pointer member Aggregation als Zeiger - Aggregation Aggregation - 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 - Multiple inheritance Mehrfachvererbung @@ -5453,17 +4402,14 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::Internal::FormClassWizardDialog - Qt Designer Form Class Qt-Designer-Formularklasse - Form Template Formularvorlage - Class Details Klasse @@ -5471,22 +4417,18 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::Internal::FormClassWizardPage - %1 - Error %1 - Fehler - Class Klasse - Configure... Einstellungen... - Choose a Class Name Name der Klasse @@ -5494,22 +4436,18 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::Internal::FormEditorPlugin - Qt Designer Form Qt-Designer-Formular - Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt C++ Project. Erstellt ein Qt-Designer-Formular mit zugehörigem Klassenrumpf (bestehend aus C++-Header- und -Quelldatei) für ein existierendes C++-Projekt. - Creates a Qt Designer form that you can add to a Qt C++ project. This is useful if you already have an existing class for the UI business logic. Erstellt ein Qt-Designer-Formular für ein C++-Projekt. Verwenden Sie diese Vorlage, wenn bereits eine Klasse für den Programmablauf existiert. - Qt Designer Form Class Qt-Designer-Formularklasse @@ -5517,136 +4455,106 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::Internal::FormEditorW - Widget Box Widget-Box - - Object Inspector Objektanzeige - - Property Editor Eigenschaften - - Action Editor Aktionseditor - For&m Editor For&mulareditor - F3 F3 - F4 F4 - Meta+H Meta+H - Ctrl+H Ctrl+H - Meta+L Meta+L - Ctrl+L Ctrl+L - Meta+G Meta+G - Ctrl+G Ctrl+G - Meta+J Meta+J - Ctrl+J Ctrl+J - - Signals && Slots Editor Signale und Slots - Widget box Widget-Box - Edit Widgets Widgets bearbeiten - Edit Signals/Slots Signale und Slots bearbeiten - Edit Buddies Buddies bearbeiten - Edit Tab Order Tabulatorreihenfolge bearbeiten - Ctrl+Alt+R Ctrl+Alt+R - About Qt Designer plugins.... Plugins... - Preview in Vorschau in - Designer Designer - The image could not be created: %1 Das Bild konnte nicht erstellt werden: %1 @@ -5654,12 +4562,10 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::Internal::FormTemplateWizardPage - Choose a Form Template Formularvorlage auswählen - %1 - Error %1 - Fehler @@ -5667,17 +4573,14 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::Internal::FormWindowFile - Error saving %1 Fehler beim Speichern von %1 - Unable to open %1: %2 %1 kann nicht geöffnet werden: %2 - Unable to write to %1: %2 Die Datei %1 kann nicht geschrieben werden: %2 @@ -5685,12 +4588,10 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::Internal::FormWizardDialog - Qt Designer Form Qt-Designer-Formular - Form Template Formularvorlage @@ -5698,29 +4599,24 @@ Versuchen Sie, das Projekt neu zu erstellen. Designer::Internal::QtCreatorIntegration - The class definition of '%1' could not be found in %2. Die Definition der Klasse '%1' konnte in %2 nicht gefunden werden. - Error finding/adding a slot. Fehler beim Auffinden/Hinzufügen des Slot-Codes. - Internal error: No project could be found for %1. Interner Fehler: Es konnte kein zu %1 gehöriges Projekt gefunden werden. - 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. @@ -5728,22 +4624,18 @@ Versuchen Sie, das Projekt neu zu erstellen. DocSettingsPage - Registered Documentation Registrierte Dokumentationen - Add... Hinzufügen... - Remove Entfernen - Add and remove compressed help files, .qch. Hinzufügen oder Entfernen von komprimierten Hilfedateien (.qch). @@ -5751,57 +4643,46 @@ Versuchen Sie, das Projekt neu zu erstellen. ExtensionSystem::Internal::PluginDetailsView - Name: Name: - Version: Version: - Compatibility Version: Kompatible zu Version: - Vendor: Anbieter: - Url: Url: - Location: Pfad: - Description: Beschreibung: - Copyright: Copyright: - License: Lizenz: - Dependencies: Abhängigkeiten: - Group: Gruppe: @@ -5809,12 +4690,10 @@ Versuchen Sie, das Projekt neu zu erstellen. ExtensionSystem::Internal::PluginErrorView - State: Status: - Error Message: Fehlermeldung: @@ -5822,17 +4701,14 @@ Versuchen Sie, das Projekt neu zu erstellen. ExtensionSystem::Internal::PluginSpecPrivate - File does not exist: %1 Die Datei '%1' existiert nicht. - Could not open file for read: %1 Die Datei konnte nicht zum Lesen geöffnet werden: %1 - Error parsing file %1: %2, at line %3, column %4 Fehler beim Lesen der Datei %1: %2 auf Zeile %3, Spalte %4 @@ -5840,22 +4716,18 @@ Versuchen Sie, das Projekt neu zu erstellen. ExtensionSystem::Internal::PluginView - Name Name - Version Version - Vendor Anbieter - Load Geladen @@ -5863,82 +4735,66 @@ Versuchen Sie, das Projekt neu zu erstellen. ExtensionSystem::PluginErrorView - Invalid Ungültig - Description file found, but error on read Fehlerhafte Beschreibungsdatei gefunden - Read Gelesen - Description successfully read Beschreibungsdatei gelesen - Resolved Abhängigkeiten bestimmt - Dependencies are successfully resolved Die Abhängigkeiten wurden erfolgreich bestimmt - Loaded Geladen - Library is loaded Die Bibliothek wurde geladen - Initialized Initialisiert - Plugin's initialization method succeeded Die Initialisierungsmethode des Plugins wurde erfolgreich abgearbeitet - Running Läuft - Plugin successfully loaded and running Das Plugin wurde erfolgreich geladen und läuft - Stopped Angehalten - Plugin was shut down Das Plugin wurde angehalten - Deleted Gelöscht - Plugin ended its life cycle and was deleted Das Plugin wurde nach Ablauf seiner Nutzungsdauer gelöscht @@ -5946,27 +4802,22 @@ Versuchen Sie, das Projekt neu zu erstellen. ExtensionSystem::PluginManager - Circular dependency detected: Zirkuläre Abhängigkeit festgestellt: - %1(%2) depends on %1 (%2) hängt 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) @@ -5976,12 +4827,10 @@ Grund: %3 FakeVim::Internal - Use Vim-style Editing Vim benutzen - Read .vimrc .vimrc lesen @@ -5989,33 +4838,26 @@ Grund: %3 FakeVim::Internal::FakeVimHandler - Not implemented in FakeVim In FakeVim nicht implementiert - %1%2% %1%2% - %1All %1Alle - - "%1" %2 %3L, %4C written "%1" %2 %3L, %4C geschrieben - "%1" %2L, %3C "%1" %2L, %3C - %n lines filtered Eine Zeile gefiltert @@ -6024,37 +4866,30 @@ Grund: %3 - Can't open file %1 Die Datei '%1' kann nicht geöffnet werden - Mark '%1' not set Die Marke '%1' ist nicht gesetzt - Unknown option: Unbekannte Option: - File "%1" exists (add ! to override) Die Datei '%1' existiert bereits (Fügen Sie ! an, um sie zu überschreiben) - Cannot open file "%1" for writing Die Datei '%1' kann nicht zum Schreiben geöffnet werden - Cannot open file "%1" for reading Die Datei '%1' kann nicht zum Lesen geöffnet werden - %n lines %1ed %2 time %1 auf eine Zeile %2-mal angewandt @@ -6062,27 +4897,22 @@ Grund: %3 - Pattern not found: Suchmuster nicht gefunden: - search hit BOTTOM, continuing at TOP Die Suche hat das Ende erreicht, setze am Anfang fort - search hit TOP, continuing at BOTTOM Die Suche hat den Anfang erreicht, setze am Ende fort - Already at oldest change Älteste Änderung erreicht - Already at newest change Letzte Änderung erreicht @@ -6090,12 +4920,10 @@ Grund: %3 FakeVim::Internal::FakeVimOptionPage - General Allgemein - FakeVim FakeVim @@ -6103,33 +4931,26 @@ Grund: %3 FakeVim::Internal::FakeVimPluginPrivate - Switch to next file Gehe zu nächster Datei - Switch to previous file Gehe zur vorigen Datei - - Quit FakeVim FakeVim Beenden - File not saved Datei nicht gespeichert - Saving succeeded Gespeichert - %n files not saved Eine Datei nicht gespeichert @@ -6137,7 +4958,6 @@ Grund: %3 - FakeVim Information Informationen zu FakeVim @@ -6145,102 +4965,82 @@ Grund: %3 FakeVimOptionPage - Shift width: Einrückung: - vim's "tabstop" option Die "tabstop"-Einstellung von vim - Tabulator size: Tabulatorweite: - Backspace: Rücktaste: - Use FakeVim FakeVim benutzen - Read .vimrc .vimrc lesen - 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 - Smart tabulators "Smart"-Tabularmodus - Highlight search results Suchergebnisse hervorheben - Incremental search Inkrementelle Suche - Keyword characters: - Copy Text Editor Settings Texteditor-Einstellungen übernehmen - Set Qt Style Qt-Stil setzen - Set Plain Style Einfachen Stil setzen - Show position of text marks Position der Textmarken anzeigen @@ -6248,12 +5048,10 @@ Grund: %3 FilterNameDialogClass - Add Filter Name Filternamen hinzufügen - Filter Name: Filtername: @@ -6261,32 +5059,26 @@ Grund: %3 FilterSettingsPage - Filters Filter - 1 1 - Add Hinzufügen - Remove Entfernen - Attributes Attribute - <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. @@ -6297,42 +5089,34 @@ Add, modify, and remove document filters, which determine the documentation set Find::Internal::FindDialog - Search for... Suche... - Sc&ope: &Bereich: - &Search &Suchen - Search &for: Suche &nach: - Close Schließen - &Case sensitive &Groß/Kleinschreibung - &Whole words only Ganze &Worte - Search && Replace Suchen und Ersetzen @@ -6340,62 +5124,50 @@ Add, modify, and remove document filters, which determine the documentation set Find::Internal::FindToolBar - Find/Replace Suchen/Ersetzen - Enter Find String Suchmuster eingeben - Ctrl+E Ctrl+E - Find Next Nächste Fundstelle - Find Previous Vorhergehende Fundstelle - Replace && Find Next Ersetzen und weitersuchen - Ctrl+= Ctrl+= - Replace && Find Previous Ersetzen und rückwärts weitersuchen - Replace All Alles ersetzen - Case Sensitive Groß/Kleinschreibung - Whole Words Only Ganze Worte - Use Regular Expressions Reguläre Ausdrücke verwenden @@ -6403,27 +5175,22 @@ Add, modify, and remove document filters, which determine the documentation set Find::Internal::FindWidget - Find Suchen - Find: Suchen: - Replace with: Ersetzen durch: - All Alle - ... ... @@ -6431,32 +5198,26 @@ Add, modify, and remove document filters, which determine the documentation set Find::SearchResultWindow - Search Results Suchergebnisse - No matches found! Es wurden keine Treffer gefunden! - Expand All Alles aufklappen - Replace with: Ersetzen durch: - Replace all occurrences Alle Vorkommen ersetzen - Replace Ersetzen @@ -6464,47 +5225,38 @@ Add, modify, and remove document filters, which determine the documentation set GdbOptionsPage - Environment: Umgebung: - This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. Ein Skript mit Kommandos, die unmittelbar nach dem Gdb-Start ausgeführt werden (optional). - Gdb startup script: Gdb-Startskript: - This is the slowest but safest option. Die sicherste Einstellung, zugleich aber auch die langsamste. - Try to set breakpoints in plugins always automatically. Versuche, Haltepunkte in Plugins automatisch zu setzen. - Try to set breakpoints in selected plugins Versuche, Haltepunkte in ausgewählten Plugins zu setzen - Matching regular expression: Regulärer Ausdruck: - Never set breakpoints in plugins automatically Haltepunkte in Plugins niemals automatisch setzen - When this option is checked, the debugger plugin attempts to extract full path information for all source files from gdb. This is a slow process but enables setting breakpoints in files with the same file @@ -6512,17 +5264,14 @@ name in different directories. Diese Option bewirkt, dass der Debugger versucht, die vollständigen Pfade aller Quelldateien von gdb zu erhalten. Das ist zeitaufwändig, gestattet aber das Setzen von Haltepunkten in Quelldateien gleichen Namens in verschiedenen Ordnern. - Use full path information to set breakpoints Vollständige Pfadinformation beim Setzen der Haltepunkte verwenden - Gdb timeout: Gdb-Timeout: - This is the number of seconds Qt Creator will wait before it terminates non-responsive gdb process. The default value of 20 seconds should be sufficient for most applications, but there are situations when @@ -6531,33 +5280,27 @@ on slow machines. In this case, the value should be increased. Anzahl der Sekunden, die Qt Creator abwartet, bevor gdb-Prozesse abgebrochen werden, die nicht mehr reagieren. Die Vorgabe von 20 Sekunden sollte für die meisten Anwendungsfälle ausreichen, aber es können Situationen auftreten, in denen das Laden großer Bibliotheken oder das Auflisten der Quelldateien viel länger dauert (auf langsamen Maschinen). In diesem Falle sollte der Wert erhöht werden. - Gdb Gdb - Enable reverse debugging Rückwärts Debuggen aktivieren - When this option is checked, 'Step Into' compresses several steps into one in certain situations, leading to 'less noisy' debugging. So will, e.g., the atomic reference counting code be skipped, and a single 'Step Into' for a signal emission will end up directly in the slot connected to it. Diese Option bewirkt, dass 'Einzelschritt in' in bestimmten Situationen mehrere Schritte zusammenfasst, was das Debuggen beschleunigt. Zum Beispiel wird der Code des atomaren Referenzzählung übersprungen; und bei der Emission eines Signals gelangt man zum verbundenen Slot. - Skip known frames when stepping Bekannte Stellen beim Einzelschritt überspringen - Show a message box when receiving a signal Empfang eines Signals durch Dialogbox anzeigen - Behavior of Breakpoint Setting in Plugins Setzen von Haltepunkten in Plugins @@ -6565,107 +5308,86 @@ on slow machines. In this case, the value should be increased. GeneralSettingsPage - Form Formular - Font Zeichensatz - Family: Name: - Style: Stil: - Size: Größe: - Startup Start - On context help: Kontexthilfe: - On help start: Zu Beginn: - Use &Current Page &Aktuelle Seite nehmen - Use &Blank Page &Leere Seite - Restore to Default &Vorgabe wiederherstellen - Help Bookmarks Hilfe-Lesezeichen - Import... Importieren... - Export... Exportieren... - Home page: Startseite: - Show Side-by-Side if Possible Möglichst nebeneinander zeigen - Always Show Side-by-Side Immer nebeneinander zeigen - Always Start Full Help Stets Vollbild - Show My Home Page Startseite zeigen - Show a Blank Page Leere Seite zeigen - Show My Tabs from Last Session Reiter aus letzter Sitzung zeigen @@ -6673,17 +5395,14 @@ on slow machines. In this case, the value should be increased. GenericMakeStep - Override %1: Überschreibe %1: - Make arguments: Kommandozeilenargumente für make: - Targets: Ziele: @@ -6691,17 +5410,14 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericBuildConfigurationFactory - Build Erstellen - New configuration Neue Konfiguration - New Configuration Name: Name der neuen Konfiguration: @@ -6709,22 +5425,18 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericBuildSettingsWidget - Configuration Name: Name der Konfiguration: - Build directory: Build-Verzeichnis: - Tool Chain: Toolchain: - Generic Manager Generische Verwaltung @@ -6732,18 +5444,15 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericMakeStepConfigWidget - Make GenericMakestep display name. Make - Override %1: Überschreibe %1: - <b>Make:</b> %1 %2 <b>Make-Kommando:</b> %1 %2 @@ -6751,12 +5460,10 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericProjectWizard - Import Existing Project Import eines existierenden Projekts - Imports existing projects that do not use qmake or CMake. This allows you to use Qt Creator as a code editor. Importiert bereits existierende Projekte, die weder qmake noch CMake verwenden. Dadurch kann Qt Creator als Code-Editor benutzt werden. @@ -6764,27 +5471,22 @@ on slow machines. In this case, the value should be increased. GenericProjectManager::Internal::GenericProjectWizardDialog - Import Existing Project Import eines existierenden Projekts - Project Name and Location Name und Ordner des Projekts - Project name: Projektname: - Location: Pfad: - Location Pfad @@ -6792,17 +5494,14 @@ on slow machines. In this case, the value should be increased. Git::CloneWizardPage - Location Pfad - Specify repository URL, checkout directory and path. Geben Sie Repository-URL und Pfad an. - Clone URL: Clone-URL: @@ -6810,77 +5509,62 @@ on slow machines. In this case, the value should be increased. Git::Internal::BranchDialog - Checkout Auschecken - Diff Diff - Refresh Aktualisieren - Delete... Löschen... - Delete Branch Branch löschen - Would you like to delete the branch '%1'? Möchten Sie den Branch '%1' löschen? - Failed to delete branch Das Löschen des Branches schlug fehl - Failed to create branch Das Erstellen des Branches schlug fehl - Failed to stash Die Operation 'stash' schlug fehl - Checkout failed Fehlschlag bei Checkout - Would you like to create a local branch '%1' tracking the remote branch '%2'? Möchten Sie einen lokalen Branch '%1' erstellen, der dem entfernten Branch '%2' folgt? - Create branch Branch erstellen - Failed to create a tracking branch Das Erstellen des Branches schlug fehl - Branches Branches - Remote Branches Nichtlokale Branches @@ -6888,22 +5572,18 @@ on slow machines. In this case, the value should be increased. Git::Internal::ChangeSelectionDialog - Select a Git Commit Wählen Sie einen Commit aus - Select Git Repository Wählen ein Git-Repository aus - Error Fehler - Selected directory is not a Git repository Das ausgewählte Verzeichnis ist kein Git-Repository @@ -6911,12 +5591,10 @@ on slow machines. In this case, the value should be increased. Git::Internal::CloneWizard - Clones a Git repository and tries to load the contained project. Erstellt einen Clone eines Git-Repositories und versucht, das darin enthaltene Projekt zu laden. - Git Repository Clone Git-Repository Clone @@ -6924,18 +5602,19 @@ on slow machines. In this case, the value should be increased. Git::Internal::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. Not used. - + Unable to determine the repository for %1. + Das Repository von %1 konnte nicht bestimmt werden. + + Unable to parse the file output. Die Ausgabe der Datei konnte nicht ausgewertet werden. - Executing: %1 %2 Executing: <executable> <arguments> @@ -6943,58 +5622,47 @@ on slow machines. In this case, the value should be increased. - Waiting for data... Warte auf Daten... - Git Diff Git Diff - Git Diff %1 Git Diff %1 - Git Diff Branch %1 Git Diff Branch %1 - Git Log Git Log - Git Log %1 Git Log %1 - Cannot describe '%1'. Zur Änderung '%1' können keine Details angezeigt werden. - Git Show %1 Git Show %1 - Git Blame %1 Git Blame %1 - Unable to checkout %1 of %2: %3 Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message Die Operation 'checkout' schlug für den Branch %1 des Repositories %2 fehl: %3 - Unable to add %n file(s) to %1: %2 Keine der %n Dateien konnte zu %1 hinzugefügt werden: %2 @@ -7002,7 +5670,6 @@ on slow machines. In this case, the value should be increased. - Unable to remove %n file(s) from %1: %2 Eine Datei konnte nicht aus dem Repository %1 entfernt werden: %2 @@ -7010,12 +5677,10 @@ on slow machines. In this case, the value should be increased. - Unable to reset %1: %2 Das Repository %1 konnte nicht zurückgesetzt werden: %2 - Unable to reset %n file(s) in %1: %2 Keine der %n Dateien in %1 konnte zurückgesetzt werden: %2 @@ -7023,147 +5688,119 @@ on slow machines. In this case, the value should be increased. - Unable to checkout %1 of %2 in %3: %4 Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message Die Operation 'checkout' schlug für die Revision %1 von %2 im Repository %3 fehl: %4 - Unable to 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 - Invalid revision Ungültige Revision - Unable to retrieve branch of %1: %2 Der Branch des Repositories %1 kann nicht bestimmt werden: %2 - Unable to retrieve top revision of %1: %2 Der aktuelle Stand des Repositories %1 kann nicht bestimmt werden: %2 - Unable to describe revision %1 in %2: %3 Die Beschreibung der Revision %1 im Repository %2 kann nicht bestimmt werden: %3 - Description: Beschreibung: - Stash Description Beschreibung - Unable to run a 'git branch' command in %1: %2 Das Kommando 'git branch' konnte nicht in %1 ausgeführt werden: %2 - Unable to run 'git show' in %1: %2 Das Kommando 'git show' konnte in %1 nicht ausgeführt werden: %2 - Unable to run 'git clean' in %1: %2 Das Kommando 'git clean' konnte in %1 nicht ausgeführt 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 - Unable apply patch %1 to %2: %3 Die Patch-Datei %1 konnte nicht auf das Repository %2 angewandt werden: %3 - You did not checkout a branch. Es ist kein Branch vorhanden. - Git SVN Log Git SVN Log - Unable to restore stash %1: %2 Der Stash %1 kann nicht wiederhergestellt werden: %2 - Unable to restore stash %1 to branch %2: %3 Der Stash %1 kann nicht im Branch %2 wiederhergestellt werden: %3 - Unable to remove stashes of %1: %2 Das Entfernen von Stashes aus dem Repository %1 schlug fehl: %2 - Unable to remove stash %1 of %2: %3 Das Entfernen des Stash %1 aus dem Repository %2 schlug fehl: %3 - Unable retrieve stash list of %1: %2 Die Liste der Stashes des Repositories %1 kann nicht bestimmt werden: %2 - Unable to determine git version: %1 Die verwendete git-Version konnte nicht bestimmt werden: %1 - Unable stash in %1: %2 Die Operation 'stash' schlug in %1 fehl: %2 - Unable to 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 - Changes Änderungen - You have modified files. Would you like to stash your changes? Es wurden Dateien geändert. Möchten Sie stash ausführen? - Unable to obtain the status: %1 Der Status konnte nicht abgefragt werden: %1 - The repository %1 is not initialized yet. Das Repository ist noch nicht initialisiert. - Committed %n file(s). @@ -7172,7 +5809,6 @@ on slow machines. In this case, the value should be increased. - Unable to commit %n file(s): %1 @@ -7183,27 +5819,22 @@ on slow machines. In this case, the value should be increased. - 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. - The command 'git pull --rebase' failed, aborting rebase. Das Kommando 'git pull --rebase' schlug fehl, rebase-Operation wird abgebrochen. - There are no modified files. Es gibt keine geänderten Dateien. @@ -7211,338 +5842,279 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitPlugin - &Git &Git - Diff Current File Diff für Datei - Diff "%1" Diff für "%1" - Alt+G,Alt+D Alt+G,Alt+D - Log File Log für Datei - Log of "%1" Log für "%1" - Alt+G,Alt+L Alt+G,Alt+L - Blame Blame für Datei - Blame for "%1" Blame für "%1" - Alt+G,Alt+B Alt+G,Alt+B - - Undo Changes - Änderungen rückgängig machen - - - - Undo Changes for "%1" - Änderungen in "%1" rückgängig machen - - - Alt+G,Alt+U Alt+G,Alt+U - Stage File for Commit Datei zu Commit hinzufügen (stage) - Stage "%1" for Commit "%1" zu Commit hinzufügen (stage) - 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) - Diff Current Project Diff für Projekt - Diff Project "%1" Diff für Projekt "%1" - Stash Snapshot... Snapshot als Stash speichern... - Stashes... Stashes... - Would you like to revert all pending changes to the repository %1? Möchten Sie alle ausstehenden Änderungen des Repositories %1 rückgängig machen? - Log Project Log für Projekt - Log Project "%1" Log für Projekt "%1" - Alt+G,Alt+K Alt+G,Alt+K - Stash Stash - Saves the current state of your work. Sichert den gegenwärtigen Arbeitsstand. - + Undo Unstaged Changes + Änderungen in "%1" rückgängig machen + + + Undo Unstaged Changes for "%1" + Änderungen in "%1" rückgängig machen + + + Undo Uncommitted Changes + Änderungen in "%1" rückgängig machen + + + Undo Uncommitted Changes for "%1" + Änderungen in "%1" rückgängig machen + + Clean Project... Projekt bereinigen... - Clean Project "%1"... Projekt "%1" bereinigen... - Diff Repository Diff des Repositories - Repository Status Status des Repositories - Log Repository Log des Repositories - Apply Patch Patch anwenden - Apply "%1" Patch "%1"anwenden - Apply Patch... Patch anwenden... - Undo Repository Changes Änderungen des Repositories rückgängig machen - Create Repository... Repository erzeugen... - Clean Repository... Repository bereinigen... - Saves the current state of your work and resets the repository. Speichert den gegenwärtigen Stand der Arbeit und setzt das Repository zurück. - Pull Pull - Stash Pop Stash Pop - Restores changes saved to the stash list using "Stash". Stellt den gesicherten Zustand von "Stash" wieder her. - Commit... Commit... - Alt+G,Alt+C Alt+G,Alt+C - Push Push - Branches... Branches... - Show Commit... Commit anzeigen... - Subversion Subversion - Log Log - Fetch Fetch - Commit Abgeben - Diff Selected Files Diff für Auswahl - &Undo &Rückgängig - &Redo &Wiederholen - Revert Rückgängig machen - Another submit is currently being executed. Another submit is currently being executed. - Cannot create temporary file: %1 Es konnte keine temporäre Datei erstellt werden: %1 - Closing git editor Git-Editor schließen - Do you want to commit the change? Möchten Sie den Commit ausführen? - The commit message check failed. Do you want to commit the change? Die Überprüfung der Beschreibung schlug fehl. Möchten Sie den Commit trotzdem ausführen? - 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 @@ -7550,7 +6122,6 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitSettings - The binary '%1' could not be located in the path '%2' Die ausführbare Datei '%1' konnte nicht im Pfad '%2' gefunden werden @@ -7558,7 +6129,6 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitSubmitEditor - Git Commit Git Commit @@ -7566,42 +6136,34 @@ on slow machines. In this case, the value should be increased. Git::Internal::GitSubmitPanel - General Information Allgemeine Informationen - Repository: Repository: - repository repository - Branch: Branch: - branch branch - Commit Information Informationen zu Commit - Author: Autor: - Email: E-Mail-Adresse: @@ -7609,12 +6171,10 @@ on slow machines. In this case, the value should be increased. Git::Internal::LocalBranchModel - <New branch> <Neuer Branch> - Type to create a new branch Geben Sie den Namen des neuen Branches ein @@ -7622,87 +6182,70 @@ on slow machines. In this case, the value should be increased. Git::Internal::SettingsPage - Git Git - Git Settings Git-Einstellungen - PATH: Pfad-Variable: - <b>Note:</b> <b>Hinweis:</b> - Git needs to find Perl in the environment as well. Git benötigt Perl. - Log commit display count: Log-Anzeige beschränken auf: - Note that huge amount of commits might take some time. Beachten Sie, dass eine hohe Anzahl lange Wartezeiten hervorrufen kann. - Omit date from annotation output Datum in Annotation weglassen - Miscellaneous Sonstige Einstellungen - Timeout: Zeitlimit: - s s - Prompt on submit Abgabe bestätigen - Ignore whitespace changes in annotation Änderungen der Leerzeichen bei Annotation weglassen - Use "patience diff" algorithm "patience diff"-Algorithmus verwenden - Pull with rebase pull mit rebase - Environment Variables Umgebungsvariablen - From System Vom System @@ -7710,7 +6253,6 @@ on slow machines. In this case, the value should be increased. GitCommand - '%1' failed (exit code %2). @@ -7719,7 +6261,6 @@ on slow machines. In this case, the value should be increased. - '%1' completed (exit code %2). @@ -7731,17 +6272,14 @@ on slow machines. In this case, the value should be increased. Gitorious::Internal::Gitorious - Error parsing reply from '%1': %2 Fehler beim Auswerten der Antwort von '%1': %2 - Request failed for '%1': %2 Die Anforderung '%1' schlug fehl: %2 - Open source projects that use Git. Open-Source-Projekte, die git verwenden @@ -7749,12 +6287,10 @@ on slow machines. In this case, the value should be increased. Gitorious::Internal::GitoriousCloneWizard - Clones a Gitorious repository and tries to load the contained project. Erstellt einen Clone eines Gitorious-Repositories und versucht, das darin enthaltene Projekt zu laden. - Gitorious Repository Clone Gitorious-Repository Clone @@ -7762,27 +6298,22 @@ on slow machines. In this case, the value should be increased. Gitorious::Internal::GitoriousHostWidget - ... ... - <New Host> <Neuer Server> - Host Server - Projects Projekte - Description Beschreibung @@ -7790,12 +6321,10 @@ on slow machines. In this case, the value should be increased. Gitorious::Internal::GitoriousHostWizardPage - Host Server - Select a host. Wählen Sie einen Server aus. @@ -7803,27 +6332,22 @@ on slow machines. In this case, the value should be increased. Gitorious::Internal::GitoriousProjectWidget - WizardPage WizardPage - ... ... - Keep updating Liste weiter ergänzen - Project Projekt - Description Beschreibung @@ -7831,12 +6355,10 @@ on slow machines. In this case, the value should be increased. Gitorious::Internal::GitoriousProjectWizardPage - Project Projekt - Choose a project from '%1' Wählen Sie ein Projekt von '%1'. @@ -7844,57 +6366,46 @@ on slow machines. In this case, the value should be increased. Gitorious::Internal::GitoriousRepositoryWizardPage - WizardPage WizardPage - Name Name - Owner Verwalter - Description Beschreibung - Repository Repository - Choose a repository of the project '%1'. Wählen Sie ein Repository des Projekts '%1'. - Mainline Repositories Mainline-Repositories - Clones Clones - Baseline Repositories Baseline-Repositories - Shared Project Repositories Shared Project Repositories - Personal Repositories Persönliche Repositories @@ -7902,32 +6413,26 @@ on slow machines. In this case, the value should be increased. HelloWorld::Internal::HelloWorldPlugin - Say "&Hello World!" - &Hello World - Hello world! - Hello World PushButton! - Hello World! - Hello World! Beautiful day today, isn't it? @@ -7935,12 +6440,10 @@ on slow machines. In this case, the value should be increased. HelloWorld::Internal::HelloWorldWindow - Focus me to activate my context! - Hello, world! @@ -7948,7 +6451,6 @@ on slow machines. In this case, the value should be increased. Help::Internal::CentralWidget - Print Document Dokument drucken @@ -7956,17 +6458,14 @@ on slow machines. In this case, the value should be increased. Help::Internal::DocSettingsPage - Documentation Dokumentation - Add Documentation Dokumentation hinzufügen - Qt Help Files (*.qch) Qt-Hilfedateien (*.qch) @@ -7974,7 +6473,6 @@ on slow machines. In this case, the value should be increased. Help::Internal::FilterSettingsPage - Filters Filter @@ -7982,28 +6480,22 @@ on slow machines. In this case, the value should be increased. Help::Internal::GeneralSettingsPage - General Settings Allgemeine Einstellungen - Open Image Datei öffnen - - Files (*.xbel) XBEL-Dateien (*.xbel) - There was an error while importing bookmarks! Beim Importieren der Lesezeichen trat ein Fehler auf. - Save File Datei speichern @@ -8011,7 +6503,6 @@ on slow machines. In this case, the value should be increased. Help::Internal::HelpIndexFilter - Help index Hilfe - Index @@ -8019,7 +6510,6 @@ on slow machines. In this case, the value should be increased. Help::Internal::HelpMode - Help Hilfe @@ -8027,164 +6517,130 @@ on slow machines. In this case, the value should be increased. Help::Internal::HelpPlugin - - Contents Inhalt - - Index Index - Search Suche - Bookmarks Lesezeichen - Home Startseite - Previous Page Vorangehender Seite - Next Page Nächste Seite - Increase Font Size Schrift vergrößern - Ctrl++ Ctrl++ - Decrease Font Size Schrift verkleinern - Ctrl+- Ctrl+- - Reset Font Size Schriftgröße zurücksetzen - Ctrl+0 Ctrl+0 - Alt+Tab Alt+Tab - Alt+Shift+Tab Alt+Shift+Tab - Ctrl+Tab Ctrl+Tab - Ctrl+Shift+Tab Ctrl+Shift+Tab - Activate Search in Help mode Suche im Modus "Hilfe" aktivieren - Activate Bookmarks in Help mode Lesezeichen im Modus "Hilfe" aktivieren - Open Pages Offene Seiten - Activate Open Pages in Help mode Offene Seiten im Hilfsmodus aktivieren - Go to Help Mode Schalte in Hilfsmodus - Previous Vorige - Close current Page Diese Seite schließen - Next Nächste - Add Bookmark Lesezeichen hinzufügen - Context Help Kontexthilfe - Activate Index in Help mode Index im Modus "Hilfe" zeigen - Activate Contents in Help mode Inhalt im Modus "Hilfe" zeigen - Unfiltered Kein - <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> <html><head><title>Dokumentation fehlt</title></head><body><br/><center><b>%1</b><br/>Es ist keine Dokumentation verfügbar.</center></body></html> - Filtered by: Filter: @@ -8192,37 +6648,30 @@ on slow machines. In this case, the value should be increased. Help::Internal::SearchWidget - Indexing Indizierung - 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 @@ -8230,12 +6679,10 @@ on slow machines. In this case, the value should be increased. Help::Internal::XbelReader - The file is not an XBEL version 1.0 file. Die Datei ist keine XBEL-Datei der Version 1.0. - Unknown title Unbekannter Titel @@ -8243,12 +6690,10 @@ on slow machines. In this case, the value should be increased. HelpViewer - <title>about:blank</title> <title>about:blank</title> - <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> <title>Fehler 404...</title><div align="center"><br><br><h1>Die Seite konnte nicht gefunden werden</h1><br><h3>'%1'</h3></div> @@ -8256,17 +6701,14 @@ on slow machines. In this case, the value should be increased. IndexWindow - &Look for: &Suche nach: - Open Link Adresse öffnen - Open Link as New Page Verweis in neuer Seite öffnen @@ -8274,7 +6716,6 @@ on slow machines. In this case, the value should be increased. InputPane - Type Ctrl-<Return> to execute a line. Sie können eine Zeile mittels <Strg+Return> ausführen. @@ -8282,12 +6723,10 @@ on slow machines. In this case, the value should be increased. Locator - Filters Filter - Locator Locator @@ -8295,174 +6734,140 @@ on slow machines. In this case, the value should be increased. MainWindow - Ctrl+Q Ctrl+Q - Ctrl+O - Bauhaus MainWindowClass - &File &Datei - &New... - Ctrl+N - &Open... - Recent Files - &Save &Speichern - Ctrl+S - Save &As... Speichern &unter... - &Preview - Ctrl+R Ctrl+R - &Preview with Debug - Ctrl+D - &Quit &Beenden - &Edit &Bearbeiten - Ctrl+Z - Ctrl+Y - Ctrl+Shift+Z - &Copy &Kopieren - &Cut - &Paste &Einfügen - &Delete &Löschen - Del - Backspace - &View &Ansicht - &Help &Hilfe - &About... - Properties Eigenschaften - Could not open file <%1> - Qml Errors: - %1 %2:%3 - %4 - %1:%2 - %3 @@ -8471,12 +6876,10 @@ on slow machines. In this case, the value should be increased. MakeStep - Override %1: Überschreibe %1: - Make arguments: Kommandozeilenargumente für make: @@ -8484,203 +6887,163 @@ on slow machines. In this case, the value should be increased. MimeType - CMake Project file CMake-Projektdatei - C Source file C-Quelldatei - C Header file C-Header-Datei - C++ Header file C++-Header-Datei - C++ header C++ Header-Datei - C++ Source file C++-Quelldatei - C++ source code C++-Quelldatei - Objective-C source code Objective-C-Quelldatei - CVS submit template CVS submit template - Qt Designer file Qt-Designer-Datei - QML file QML-Datei - Generic Qt Creator Project file Allgemeine Qt-Creator-Projektdatei - BMP image BMP-Bilddatei - GIF image GIF-Bilddatei - ICO image ICO-Bilddatei - JPEG image JPEG-Bilddatei - MNG video MNG-Videodatei - PBM image PBM-Bilddatei - PGM image PGM-Bilddatei - PNG image PNG-Bilddatei - PPM image PPM-Bilddatei - SVG image SVG-Datei - TIFF image TIFF-Bilddatei - XBM image XBM-Bilddatei - XPM image XPM-Bilddatei - Generic Project Files Allgemeine Projektdateien - Generic Project Include Paths Include-Pfade für allgemeines Projekt - Generic Project Configuration File Projekt-Konfigurationsdatei für allgemeine Projekte - Perforce submit template Perforce submit template - QML Project file Qml Project file QML-Projektdatei - Qt Project file Qt-Projektdatei - Qt Project include file Qt-Projekt-Include-Datei - Qt Project feature file Qt-Projekt-Feature-Datei - message catalog Meldungsdatei - Qt Script file Qt-Skript-Datei - Qt Resource file Qt-Ressourcendatei - Subversion submit template Subversion submit template - Plain text document Textdatei - XML document XML-Dokument - Differences between files Vergleichsergebnis @@ -8688,9 +7051,6 @@ on slow machines. In this case, the value should be increased. MyMain - - - N/A @@ -8698,183 +7058,130 @@ on slow machines. In this case, the value should be increased. NameDemanglerPrivate - Premature end of input - Invalid encoding - Invalid name - - Invalid nested-name - - Invalid template args - - Invalid template-param - Invalid qualifiers: unexpected 'volatile' - Invalid qualifiers: 'const' appears twice - 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' - - Invalid array-type - Invalid pointer-to-member-type - - - Invalid substitution - Invalid substitution: element %1 was requested, but there are only %2 - Invalid substitution: There are no elements - Invalid special-name - - - Invalid local-name - Invalid discriminator - - - Invalid ctor-dtor-name - - Invalid call-offset - Invalid v-offset - Invalid digit - At position %1: @@ -8882,7 +7189,6 @@ on slow machines. In this case, the value should be increased. NickNameDialog - Nick Names Aliasnamen @@ -8890,52 +7196,42 @@ on slow machines. In this case, the value should be increased. 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 - .qmlproject Editor .qmlproject-Editor - Qt Designer Qt Designer - Qt Linguist Qt Linguist - Resource Editor Ressourceneditor @@ -8943,12 +7239,10 @@ on slow machines. In this case, the value should be increased. OpenWithDialog - Open File With... Öffne Datei mit... - Open file extension with: Öffne Endung mit: @@ -8956,17 +7250,14 @@ on slow machines. In this case, the value should be increased. PasteBinComSettingsWidget - Form Formular - Server prefix: Server-Präfix: - <html><head/><body> <p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> <p>Note that the plugin will use this for posting as well as fetching.</p></body></html> @@ -8978,12 +7269,10 @@ on slow machines. In this case, the value should be increased. Perforce::Internal::ChangeNumberDialog - Change Number Change-Nummer - Change Number: Change-Nummer: @@ -8991,22 +7280,18 @@ on slow machines. In this case, the value should be increased. Perforce::Internal::PendingChangesDialog - P4 Pending Changes P4 Ausstehende Changes - Submit Abgeben - Cancel Abbrechen - Change %1: %2 Change %1: %2 @@ -9014,410 +7299,326 @@ on slow machines. In this case, the value should be increased. 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 Projekt abgeben - 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 - Delete... Löschen... - Delete "%1"... Lösche "%1"... - Log Project "%1" Log für Projekt "%1" - Log Project Log für Projekt - Submit Project "%1" Projekt "%1" abgeben - Update Current Project Projekt auf aktuellen Stand bringen - Revert Unchanged Angeforderte, ungeänderte Dateien rü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 - Repository Log Log des Repositories - Submit Abgeben - Diff Selected Files Diff für Auswahl - &Undo &Rückgängig - &Redo &Wiederholen - - 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" rückgängig machen? - Another submit is currently executed. Es läuft bereits ein Submit-Vorgang. - Cannot create temporary file. Es konnte keine temporäre Datei erstellt werden. - 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 - Executing: %1 Kommando: %1 - The process terminated with exit code %1. Der Prozess wurde beendet, Rückgabewert %1. - p4 submit failed: %1 Fehler beim Abgeben: %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 in anormaler Weise beendet. - 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 ms). Keine Antwort von Perforce innerhalb des Zeitlimits (%1 ms). - 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. - p4 diff %1 p4 diff %1 - p4 describe %1 p4 describe %1 - Closing p4 Editor P4-Editor schließen - Do you want to submit this change list? Möchten Sie die Änderungen abgeben? - The commit message check failed. Do you want to submit this change list Die Überprüfung der Beschreibung schlug fehl. Möchten Sie den Submit-Vorgang trotzdem ausführen? - Cannot open temporary file. Die temporäre Datei konnte nicht geöffnet werden. - 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. @@ -9425,7 +7626,6 @@ on slow machines. In this case, the value should be increased. Perforce::Internal::PerforceSubmitEditor - Perforce Submit Perforce Submit @@ -9433,12 +7633,10 @@ on slow machines. In this case, the value should be increased. Perforce::Internal::PromptDialog - Perforce Prompt Perforce Prompt - OK OK @@ -9446,67 +7644,54 @@ on slow machines. In this case, the value should be increased. Perforce::Internal::SettingsPage - Perforce Perforce - Test Test - Configuration Konfiguration - Miscellaneous Sonstige Einstellungen - Timeout: Zeitlimit: - s s - Prompt on submit Abgabe 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 @@ -9514,17 +7699,14 @@ on slow machines. In this case, the value should be increased. Perforce::Internal::SettingsPageWidget - Testing... Test läuft... - Test succeeded (%1). Der Test war erfolgreich (%1). - Perforce Command Perforce-Kommando @@ -9532,22 +7714,18 @@ on slow machines. In this case, the value should be increased. Perforce::Internal::SubmitPanel - Submit Abschicken - Change: Änderung: - Client: Client: - User: Nutzer: @@ -9555,27 +7733,22 @@ on slow machines. In this case, the value should be increased. PluginDialog - Details Beschreibung - Error Details Fehlermeldungen - Installed Plugins Installierte Plugins - Plugin Details of %1 Beschreibung zu %1 - Plugin Errors of %1 Fehlermeldungen von %1 @@ -9583,24 +7756,18 @@ on slow machines. In this case, the value should be increased. PluginManager - - The plugin '%1' does not exist. Es existiert kein Plugin '%1'. - Unknown option %1 Ungültiges Kommandozeilenargument %1 - The option %1 requires an argument. Das Kommandozeilenargument %1erfordert ein Argument - - Failed Plugins Nicht geladene Plugins (Fehlschlag beim Ladevorgang) @@ -9608,77 +7775,62 @@ on slow machines. In this case, the value should be increased. PluginSpec - '%1' misses attribute '%2' Das Attribut '%1' fehlt bei '%2' - '%1' has invalid format '%1' ist in einem ungültigem Format - Invalid element '%1' Ungültiges Element '%1' - Unexpected closing element '%1' Falsch platziertes schließendes Element '%1' - Unexpected token Falsch platziertes Token - Expected element '%1' as top level element Das Wurzelelement muss '%1' sein - 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 @@ -9686,29 +7838,24 @@ on slow machines. In this case, the value should be increased. ProjectExplorer::AbstractProcessStep - 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" Der Prozess :"%1" konnte nicht gestartet werden @@ -9716,17 +7863,14 @@ on slow machines. In this case, the value should be increased. ProjectExplorer::ApplicationLauncher - Failed to start program. Path or permissions wrong? Das Programm konnte nicht gestartet werden. Möglicherweise stimmt der Pfad nicht oder die Berechtigungen sind sind 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. @@ -9734,7 +7878,6 @@ on slow machines. In this case, the value should be increased. ProjectExplorer::BuildManager - Finished %1 of %n build steps Build-Schritt %1 von %n beendet @@ -9742,41 +7885,31 @@ on slow machines. In this case, the value should be increased. - Build System Category for build system isses listened under 'Build Issues' Build System - Canceled build. Erstellen abgebrochen. - - When executing build step '%1' Bei der Ausführung von Build-Schritt '%1' - Running build steps for project %1... Führe Build-Schritte für Projekt %1 aus... - Build Erstellen - - - Error while building project %1 (target: %2) Fehler beim Erstellen des Projekts %1(Ziel: %2) - Compile Category for compiler isses listened under 'Build Issues' Compilierung @@ -9785,33 +7918,26 @@ on slow machines. In this case, the value should be increased. ProjectExplorer::CustomExecutableRunConfiguration - Custom Executable Benutzerdefinierte, ausführbare Datei - Could not find the executable, please specify one. Es konnte keine ausführbare Datei gefunden werden; bitte geben Sie eine an. - Clean Environment Umgebung löschen - System Environment Systemumgebung - Build Environment Build-Umgebung - - Run %1 Führe %1 aus @@ -9819,8 +7945,6 @@ on slow machines. In this case, the value should be increased. ProjectExplorer::CustomExecutableRunConfigurationFactory - - Custom Executable Benutzerdefinierte ausführbare Datei @@ -9828,22 +7952,18 @@ on slow machines. In this case, the value should be increased. 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. - The debugger helpers could not be built in any of the directories: - %1 @@ -9853,30 +7973,24 @@ Reason: %2 Fehler: %2 - Building debugging helper library in %1 Erstelle Ausgabe-Hilfsbibliothek in %1 - Running %1 %2... Führe %1 %2 aus... - - %1 not found in PATH %1 konnte im Pfad (PATH) nicht gefunden werden - - Running %1 ... Führe %1 aus... @@ -9886,34 +8000,28 @@ Fehler: %2 ProjectExplorer::EnvironmentModel - Variable Variable - Value Wert - <UNSET> <Nicht gesetzt> - <VARIABLE> Name when inserting a new variable <Variable> - <VALUE> Value when inserting a new variable <Wert> - <VARIABLE> <Variable> @@ -9921,42 +8029,34 @@ Fehler: %2 ProjectExplorer::EnvironmentWidget - &Edit &Bearbeiten - &Add Hinzu&fügen - &Reset &Rücksetzen - &Unset &Leeren - Unset <b>%1</b> Setze <b%1</b> zurück - Set <b>%1</b> to <b>%2</b> Setze <b>%1</b> auf <b>%2</b> - Using <b>%1</b> Verwende <b>%1</b> - Using <b>%1</b> and Verwende <b>%1</b> und @@ -9964,7 +8064,6 @@ Fehler: %2 ProjectExplorer::Internal::AllProjectsFilter - Files in any project Dateien aus allen Projekten @@ -9972,12 +8071,10 @@ Fehler: %2 ProjectExplorer::Internal::AllProjectsFind - All Projects Alle Projekte - File &pattern: Such&muster für Dateinamen: @@ -9985,47 +8082,38 @@ Fehler: %2 ProjectExplorer::Internal::BuildSettingsWidget - &Clone Selected Auswahl duplizieren - Build Steps Erstellungsschritte - No build settings available Es sind keine Build-Einstellungen verfügbar - Edit build configuration: Build-Konfiguration bearbeiten: - Add Hinzufügen - Remove Entfernen - Clean Steps Schritte zur Bereinigung - New Configuration Name: Name der neuen Konfiguration: - Clone configuration Konfiguration duplizieren @@ -10033,52 +8121,42 @@ Fehler: %2 ProjectExplorer::Internal::BuildStepsPage - Move Up Nach oben - Move Down Nach unten - Remove Item Element löschen - Removing Step failed Das Entfernen des Build-Schritts schlug fehl - Can't 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 - Add Clean Step Schritt zur Bereinigung hinzufügen - Add Build Step Build-Schritt hinzufügen - Build Steps Erstellungsschritte - Clean Steps Schritte zur Bereinigung @@ -10086,8 +8164,6 @@ Fehler: %2 ProjectExplorer::Internal::CompileOutputWindow - - Compile Output Kompilierung @@ -10095,27 +8171,22 @@ Fehler: %2 ProjectExplorer::Internal::CoreListenerCheckingForRunningBuild - Cancel Build && Close Erstellen abbrechen und schließen - A project is currently being built. Es wird gerade ein Projekt erstellt. - Close Qt Creator? Qt Creator schließen? - Do not Close Nicht Schließen - Do you want to cancel the build process and close Qt Creator anyway? Möchten Sie die Erstellung abbrechen und Qt Creator schließen? @@ -10123,7 +8194,6 @@ Fehler: %2 ProjectExplorer::Internal::CurrentProjectFilter - Files in current project Dateien im aktuellen Projekt @@ -10131,12 +8201,10 @@ Fehler: %2 ProjectExplorer::Internal::CurrentProjectFind - Current Project Aktuelles Projekt - File &pattern: Such&muster für Dateinamen: @@ -10144,63 +8212,51 @@ Fehler: %2 ProjectExplorer::Internal::CustomExecutableConfigurationWidget - Name: Name: - Executable: Ausführbare Datei: - Arguments: Argumente: - Working Directory: Arbeitsverzeichnis: - Run in &Terminal In &Terminal Ausführen - Run Environment Ausführungsumgebung - Base environment for this runconfiguration: Basisumgebung für diese Ausführungskonfiguration - Clean Environment Umgebung löschen - System Environment Systemumgebung - Build Environment Build-Umgebung - No Executable specified. Es wurde keine ausführbaren Datei angegeben. - Running executable: <b>%1</b> %2 Führe aus: <b>%1</b> %2 @@ -10208,7 +8264,6 @@ Fehler: %2 ProjectExplorer::Internal::EditorSettingsPropertiesPage - Default file encoding: Encoding-Vorgabe: @@ -10216,12 +8271,10 @@ Fehler: %2 ProjectExplorer::Internal::FolderNavigationWidgetFactory - File System Dateisystem - Synchronize with Editor Mit Editor synchronisieren @@ -10229,12 +8282,10 @@ Fehler: %2 ProjectExplorer::Internal::LocalApplicationRunControl - Starting %1... Starte %1... - %1 exited with code %2 %1 beendet, Rückgabewert %2 @@ -10242,7 +8293,6 @@ Fehler: %2 ProjectExplorer::Internal::LocalApplicationRunControlFactory - Run Ausführen @@ -10250,38 +8300,34 @@ Fehler: %2 ProjectExplorer::Internal::OutputPane - Re-run this run-configuration Ausführungskonfiguration noch einmal ausführen - - Stop Anhalten - Application Output Ausgabe der Anwendung - + Application Output Window + Ausgabe der Anwendung + + The application is still running. Die Anwendung läuft noch. - Force it to quit? Soll sie beendet werden? - Force Quit Beenden - Unable to close Schließen fehlgeschlagen @@ -10289,16 +8335,15 @@ Fehler: %2 ProjectExplorer::Internal::OutputWindow - - Application Output Window - Ausgabe der Anwendung + Additional output omitted + + Weitere Ausgaben wurden weggelassen + ProjectExplorer::Internal::ProcessStep - - Custom Process Step item in combobox Benutzerdefinierter Verarbeitungsschritt @@ -10307,12 +8352,10 @@ Fehler: %2 ProjectExplorer::Internal::ProcessStepConfigWidget - <b>%1</b> %2 %3 %4 <b>%1</b> %2 %3 %4 - (disabled) (deaktiviert) @@ -10320,27 +8363,22 @@ Fehler: %2 ProjectExplorer::Internal::ProcessStepWidget - Name: Name: - Command: Kommando: - Enable custom process step Benutzerdefinierten Verarbeitungsschritt aktivieren - Working directory: Arbeitsverzeichnis: - Command arguments: Kommandozeilenargumente: @@ -10348,7 +8386,6 @@ Fehler: %2 ProjectExplorer::Internal::ProjectExplorerSettingsPage - General Allgemein @@ -10356,57 +8393,46 @@ Fehler: %2 ProjectExplorer::Internal::ProjectExplorerSettingsPageUi - Build and Run Erstellung und Ausführung - Use jom instead of nmake jom an Stelle von nmake verwenden - Current directory Arbeitsordner - directoryButtonGroup directoryButtonGroup - Directory Ordner - Projects Directory Projektordner - Save all files before build Alle Dateien vor Erstellen speichern - Always build project before running Projekt vor Ausführung stets erstellen - Show compiler output on building Compiler-Ausgabe beim Erstellen anzeigen - Clear old application output on a new run Ausgabe vorangegangener Ausführungen löschen - <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="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/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 von <a href="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Deaktivieren Sie die Einstellungen, wenn Probleme beim Build auftreten. @@ -10414,13 +8440,11 @@ Fehler: %2 ProjectExplorer::Internal::ProjectFileFactory - Project File Factory ProjectExplorer::ProjectFileFactory display name. Project File Factory - Could not open the following project: '%1' Das Projekt '%1' konnte nicht geöffnet werden @@ -10428,8 +8452,6 @@ Fehler: %2 ProjectExplorer::Internal::ProjectFileWizardExtension - - <None> No version control system selected ---------- @@ -10437,18 +8459,15 @@ No project selected <Kein> - Failed to add one or more files to project '%1' (%2). Einige Dateien (%2) konnten nicht zum Projekt '%1' hinzugefügt werden. - A version control system repository could not be created in '%1'. Das Versionskontrollsystem konnte im Ordner '%1' kein Rpository anlegen. - Failed to add '%1' to the version control system. '%1' konnte nicht unter Versionskontrolle gestellt werden. @@ -10456,17 +8475,14 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidget - Simplify tree Baum vereinfachen - Hide generated files Generierte Dateien nicht zeigen - Synchronize with Editor Mit Editor synchronisieren @@ -10474,12 +8490,10 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidgetFactory - Projects Projekte - Filter tree Baum filtern @@ -10487,7 +8501,6 @@ No project selected ProjectExplorer::Internal::ProjectWelcomePage - Develop Entwicklung @@ -10495,47 +8508,38 @@ No project selected ProjectExplorer::Internal::ProjectWelcomePageWidget - Form Formular - Manage Sessions... Sitzungen... - %1 (last session) %1 (zuletzt benutzt) - %1 (current session) %1 (aktuelle Sitzung) - New Project Neues Projekt - Recent Projects Zuletzt bearbeitete Projekte - Create Project... Projekt erstellen... - Recent Sessions Zuletzt benutzte Sitzungen - Open Project... Projekt öffnen... @@ -10543,17 +8547,14 @@ No project selected ProjectExplorer::Internal::ProjectWizardPage - Summary Zusammenfassung - Files to be added: Zu erzeugende Dateien: - Files to be added in Hinzufügende Dateien in @@ -10561,22 +8562,18 @@ No project selected ProjectExplorer::Internal::RemoveFileDialog - Remove File Datei entfernen - &Delete file permanently Datei &löschen - &Remove from Version Control Aus &Versionskontrolle entfernen - File to remove: Datei: @@ -10584,17 +8581,14 @@ No project selected ProjectExplorer::Internal::RunSettingsPropertiesPage - + + - - - - Run configuration: Ausführungskonfiguration: @@ -10602,12 +8596,10 @@ No project selected ProjectExplorer::Internal::RunSettingsWidget - Add Hinzufügen - Remove Entfernen @@ -10615,48 +8607,38 @@ No project selected ProjectExplorer::Internal::SessionDialog - Session Manager Sitzungsverwaltung - &New &Neu - &Rename Umbenennen - C&lone &Duplizieren - &Delete &Löschen - &Switch to &Gehe zu Sitzung - - New session name Name der neuen Sitzung - Rename session Sitzung umbenennen - <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.htm">Was ist eine Sitzung?</a> @@ -10664,12 +8646,10 @@ No project selected ProjectExplorer::Internal::SessionFile - Session Sitzung - Untitled default file name to display kein Titel @@ -10678,7 +8658,6 @@ No project selected ProjectExplorer::Internal::TaskDelegate - File not found: %1 Datei nicht gefunden: %1 @@ -10686,12 +8665,10 @@ No project selected ProjectExplorer::Internal::WinGuiProcess - The process could not be started! Der Prozess konnte nicht gestartet werden! - Cannot retrieve debugging output! Es konnte keine Debug-Ausgabe erhalten werden! @@ -10699,12 +8676,10 @@ No project selected ProjectExplorer::Internal::WizardPage - Project management Projektmanagement - The following files will be added: @@ -10717,12 +8692,10 @@ No project selected - Add to &project: Zu Projekt &hinzufügen: - Add to &version control: Unter &Versionskontrolle stellen: @@ -10730,284 +8703,222 @@ No project selected ProjectExplorer::ProjectExplorerPlugin - Projects Projekte - &Build &Erstellen - &Debug &Debuggen - &Start Debugging &Debuggen - Open With Öffnen mit - Session Manager... Sitzungsverwaltung - 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 - Close All Projects Alle Projekte schließen - Session Sitzung - Build All Alles erstellen - Ctrl+Shift+B Ctrl+Shift+B - Rebuild All Alles neu erstellen - Clean All Alles bereinigen - - Build Project Projekt erstellen - Ctrl+B Ctrl+B - - Rebuild Project Projekt neu erstellen - - Clean Project Projekt bereinigen - - Run Ausführen - Ctrl+R Ctrl+R - Cancel Build Erstellen abbrechen - - Start Debugging Debuggen - F5 F5 - Add New... Hinzufügen - Add Existing Files... Existierende Datei hinzufügen - Remove File... Datei entfernen... - Rename Umbenennen - Ctrl+T Ctrl+T - Load Project Projekt laden - New Project Title of dialog Neues Projekt - Projects (%1) Projekte (%1) - All Files (*) Alle Dateien (*) - Close Project "%1" Projekt "%1" schließen - Recent P&rojects Zuletzt bearbeitete P&rojekte - - Build Project "%1" Projekt '%1" erstellen - - Rebuild Project "%1" Projekt "%1" neu erstellen - - Clean Project "%1" Projekt "%1" bereinigen - Build Without Dependencies Erstellen unter Ausschluss der Abhängigkeiten - Rebuild Without Dependencies Neu erstellen unter Ausschluss der Abhängigkeiten - Clean Without Dependencies Bereinigen unter Ausschluss der Abhängigkeiten - Open Build/Run Target Selector... Zielauswahl für Build/Auswahl öffnen... - Always save files before build Alle Dateien vor Erstellen speichern - Cannot run without a project. Ausführung ohne Projekt nicht möglich. - Cannot debug without a project. Debuggen ohne Projekt nicht möglich. - New File Title of dialog Neue Datei - Add Existing Files Existierende Dateien hinzufügen - Could not add following files to project %1: Die folgenden Dateien konnten nicht zum Projekt %1 hinzugefügt werden: - Add files to project failed Das Hinzufügen der Dateien zum Projekt schlug fehl - Add to Version Control Unter Versionsverwaltung stellen - Add files %1 to version control (%2)? @@ -11016,34 +8927,28 @@ to version control (%2)? unter Versionsverwaltung (%2) gestellt werden? - Could not add following files to version control (%1) Die folgenden Dateien konnten nicht unter Versionsverwaltung (%1) gestellt werden - Add files to version control failed Die Hinzufügen der Dateien zur Versionsverwaltung schlug fehl - Remove file failed Die Datei konnte nicht entfernt werden - Could not remove file %1 from project %2. Die Datei %1 konnte nicht vom Projekt %2 entfernt werden. - Delete file failed Das Löschen der Datei schlug fehl - Could not delete file %1. Die Datei %1 konnte nicht gelöscht werden. @@ -11051,47 +8956,38 @@ unter Versionsverwaltung (%2) gestellt werden? ProjectExplorer::Internal::BuildConfigDialog - 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). Das kann passieren, wenn die aktive Build-Konfiguration eine für die aktive Ausführungskonfiguration ungeeignete Qt-Version und/oder Toolchain benutzt (zum Beispiel erfordert die Ausführung im Symbian-Emulator die Toolchain WINSCW). - Run configuration does not match build configuration Die Ausführungskonfiguration entspricht nicht der Build-Konfiguration - Change build configuration && continue Ändere Build-Konfiguration und setze fort - Cancel Abbrechen - Continue anyway Trotzdem fortsetzen - The active build configuration builds a target that cannot be used by the active run configuration. Die aktive Build-Konfiguration erstellt ein Ziel, das von der aktiven Ausführungskonfiguration nicht verwendet werden kann. - Active run configuration Aktive Ausführungskonfiguration - Choose build configuration: Build-Konfiguration wählen: - No valid build configuration found. Es konnte keine gültige Build-Konfiguration gefunden werden. @@ -11099,38 +8995,30 @@ unter Versionsverwaltung (%2) gestellt 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 - Error while saving session Fehler beim Speichern der Sitzung - Could not save session to file %1 Die Sitzung konnte nicht unter %1 gespeichert werden - Qt Creator Qt Creator - - Untitled Kein Titel - Session ('%1') Sitzung ('%1') @@ -11138,7 +9026,6 @@ unter Versionsverwaltung (%2) gestellt werden? ProjectWelcomePage - Form Formular @@ -11146,27 +9033,22 @@ unter Versionsverwaltung (%2) gestellt werden? QMakeStep - Additional arguments: Zusätzliche Argumente: - Effective qmake call: Resultierender qmake-Aufruf: - qmake build configuration: qmake Build-Konfiguration: - Debug Debug - Release Release @@ -11174,57 +9056,46 @@ unter Versionsverwaltung (%2) gestellt werden? QObject - Pass - Expected Failure - Failure - Expected Pass - Warning Warnung - Qt Warning - Qt Debug - Critical - Fatal - Skipped - Info @@ -11232,30 +9103,25 @@ unter Versionsverwaltung (%2) gestellt werden? QTestLib::Internal::QTestOutputPane - Test Results - Result - Message - Bezeichnung + Bezeichnung QTestLib::Internal::QTestOutputWidget - All Incidents - Show Only: @@ -11263,32 +9129,26 @@ unter Versionsverwaltung (%2) gestellt werden? QrcEditor - Add Hinzufügen - Remove Entfernen - Properties Eigenschaften - Prefix: Präfix: - Language: Sprache: - Alias: Aliasname: @@ -11296,132 +9156,106 @@ unter Versionsverwaltung (%2) gestellt werden? Qt4ProjectManager::Internal::ClassDefinition - Form Formular - The header file Header-Datei - &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: - 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: Icon-Datei: - &Link library &Bibliothek - Create s&keleton &Gerüst erzeugen - Include pro&ject Einbinden (*.pri-Datei) - &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 Icon auswählen - Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) Icon-Dateien (*.png *.ico *.jpg *.xpm *.tif *.svg) - The header file has to be specified in source code. Die Header-Datei muss im Quellcode angegeben werden. @@ -11429,17 +9263,14 @@ unter Versionsverwaltung (%2) gestellt werden? Qt4ProjectManager::Internal::ClassList - <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? @@ -11447,12 +9278,10 @@ unter Versionsverwaltung (%2) gestellt werden? Qt4ProjectManager::Internal::ConsoleAppWizard - Qt Console Application Qt Konsolenanwendung - Creates a project containing a single main.cpp file with a stub implementation. Preselects a desktop Qt for building the application if available. @@ -11464,7 +9293,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::ConsoleAppWizardDialog - This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. Dieser Wizard erstellt eine Qt4 Konsolenanwendung. Sie leitet von der Klasse QCoreApplication ab und hat keine Benutzeroberfläche. @@ -11472,47 +9300,38 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::CustomWidgetPluginWizardPage - WizardPage WizardPage - Plugin and Collection Class Information Plugin und Parameter der Collection-Klasse - Specify the properties of the plugin library and the collection class. Geben Sie die Parameter 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 @@ -11520,27 +9339,22 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::CustomWidgetWidgetsWizardPage - Custom Qt Widget Wizard Wizard zur Erstellung benutzerdefinierter Qt-Widgets - Custom Widget List Benutzerdefinierte Widgets - Widget &Classes: &Klassen: - Specify the list of custom widgets and their properties. Erstellen Sie eine Liste der benutzerdefinierten Widgets und ihrer Eigenschaften. - ... ... @@ -11548,12 +9362,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::CustomWidgetWizard - 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. @@ -11561,17 +9373,14 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::CustomWidgetWizardDialog - This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. Dieser Wizard erstellt ein Projekt mit einem oder mehreren benutzerdefinierten Widgets für Qt4 Designer. - Custom Widgets Benutzerdefinierte Widgets - Plugin Details Plugin-Parameter @@ -11579,12 +9388,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::DesignerExternalEditor - 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 @@ -11592,12 +9399,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::EmptyProjectWizard - Empty Qt Project Leeres Qt-Projekt - Creates a qmake-based project without any files. This allows you to create an application without any default classes. Erstellt ein auf qmake basierendes Qt-Projekt ohne Dateien und vorgegebene Klassen. @@ -11605,7 +9410,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::EmptyProjectWizardDialog - This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. Dieser Wizard erstellt ein leeres Qt4-Projekt. Mit Hilfe der anderen Wizards können später Dateien hinzufügt werden. @@ -11613,12 +9417,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::ExternalQtEditor - Unable to start "%1" "%1" kann nicht gestartet werden - The application "%1" could not be found. Die Anwendung "%" konnte nicht gefunden werden. @@ -11626,12 +9428,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::FilesPage - Class Information Parameter der Klasse - 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. @@ -11639,7 +9439,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::GettingStartedWelcomePage - Getting Started Schnelleinstieg @@ -11647,202 +9446,161 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget - Form Formular - Tutorials Anleitungen - Did You Know? Schon gewusst? - The Qt Creator User Interface Die Benutzeroberfläche von Qt Creator - Building and Running an Example Ein Beispiel erstellen und ausführen - Creating a Qt C++ Application Erstellen einer C++-Anwendung mit Qt - Creating a Mobile Application Erstellen einer mobilen Anwendung - Creating a Qt Quick Application Erstellen einer Qt-Quick-Anwendung - - Choose an example... Beispiel wählen... - Copy Project to writable Location? Soll das Projekt in ein schreibbares Verzeichnis kopiert werden? - <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 "Projekt kopieren und öffnen", um eine modifizierbare Kopie des Projektes erhalten, oder "Projekt beibehalten und öffnen", 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: &Verzeichnis: - &Copy Project and Open Projekt &kopieren und öffnen - &Keep Project and Open Projekt &beibehalten und öffnen - Warning Warnung - The specified location already exists. Please specify a valid location. Das angegebene Verzeichnis existiert bereits. Bitte geben Sie ein gültiges Verzeichnis an. - New Project Neues Projekt - - Cmd Shortcut key Kommando-Taste - Alt Shortcut key Alt - Ctrl Shortcut key Strg - If you add external libraries to your project, Qt Creator will automatically offer syntax highlighting and code completion. Qt Creator bietet automatisch Syntax-Hervorhebung und Code-Vervollständigung an, wenn Sie externe Bibliotheken zu Ihrem Projekt hinzufügen. - You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. Sie können eigene Erstellungsschritte in den <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">'Build'-Einstellungen</a> hinzufügen. - Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">dependencies</a> between projects. In einer Sitzung können Sie <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">Abhängigkeiten</a> zwischen Projekten herstellen. - You can show and hide the side bar using <tt>%1+0<tt>. Sie können die Seitenleiste mit <tt>%1+0</tt> anzeigen oder zuklappen. - You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. Sie können die <tt>Finden</tt>-Funktion durch Auswahl von &quot;Ganze Wörter&quot; oder &quot;Groß/Kleinschreibung&quot; steuern. Klicken Sie einfach auf die Symbole rechts vom Eingabefeld. - The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. Die Code-Vervollständigung versteht CamelCase. Sie können zum Beipiel statt <tt>namespaceUri</tt> einfach <tt>nU</tt> schreiben und danach <tt>Strg+Leertaste</tt> drücken. - You can force code completion at any time using <tt>Ctrl+Space</tt>. Sie können die Code-Vervollständigung jederzeit mittels <tt>Strg+Leertaste</tt> erzwingen. - You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. Sie können Qt Creator jederzeit mit einer Sitzung starten, in dem Sie <tt>qtcreator &lt;Sitzungsname&gt;</tt> aufrufen. - You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. Sie können stets mittels <tt>Escape</tt>-Taste aus jedem anderen Modus in den Editier-Modus zurückkehren. - You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> Sie können zwischen den Ausgabepanelen umschalten, in dem Sie <tt>%1+n</tt> drücken, wobei n die Zahl ist, die auf den Schaltflächen am unteren Fensterrand befindet: <ul><li>1 - Build-Probleme</li><li>2 - Suchergebnisse</li><li>3 - Ausgabe der Anwendung</li><li>4 - Kompilierung</li></ul> - You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). Mit der <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator-Leiste</a> (<tt>%1+K</tt>) können Sie schnell nach Methoden, Klassen, Hilfe und anderem suchen. - You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. Sie können ihre Encoding-Vorgabe für den Editor für jedes Projekt in <tt>Projekte -> Editoreinstellungen -> Encoding-Vorgabe</tt> einstellen. - You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. Sie können Qt Creator mit einer Reihe von <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">Revisionskontrollsystemen</a> wie Subversion, Perforce, CVS oder Git verwenden. - 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. Im Editor können Sie <tt>F2</tt> verwenden, um ein Symbol zu verfolgen; <tt>Shift+F2</tt> wechselt zwischen Deklaration und Definition. <tt>F4</tt> schaltet zwischen Header- und Quelldatei um. - Examples not installed... Beispiele nicht installiert... - Create Project... Projekt erstellen... - Explore Qt C++ Examples Qt C++-Beispiele öffnen - Explore Qt Quick Examples Qt-Quick-Beispiele öffnen - Open Project... Projekt öffnen... @@ -11850,12 +9608,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::GuiAppWizard - Qt Gui Application Qt-Gui-Anwendung - Creates a Qt application for the desktop. Includes a Qt Designer-based main window. Preselects a desktop Qt for building the application if available. @@ -11864,7 +9620,6 @@ Preselects a desktop Qt for building the application if available. Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfügbar ist. - The template file '%1' could not be opened for reading: %2 Die Vorgabendatei '%1' konnte nicht zum Lesen geöffnet werden: %2 @@ -11872,12 +9627,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::GuiAppWizardDialog - This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. Dieser Wizard erstellt eine Qt4-GUI-Anwendung. Sie leitet von der Klasse QApplication ab und enthält ein leeres Widget. - Details Details @@ -11885,12 +9638,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::LibraryWizard - C++ Library C++-Bibliothek - 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>. Erstellt qmake-basierte C++-Bibliotheken:<ul><li>Dynamisch linkbare C++-Bibliothek zur Verwendung mit <tt>QPluginLoader</tt> zur Laufzeit (Plugin)</li><li>Statisch oder dynamisch linkbare C++-Bibliothek zur Verwendung in einem anderen Projekt zur Linkzeit</li></ul>. @@ -11898,32 +9649,26 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::LibraryWizardDialog - Shared library Dynamisch gebunden - Statically linked library Statisch gebunden - Qt 4 plugin Qt 4 Plugin - Type Typ - This wizard generates a C++ library project. Dieser Wizard erstellt ein C++-Bibliotheksprojekt. - Details Details @@ -11931,7 +9676,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::MakeStepFactory - Make Make @@ -11939,12 +9683,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::ModulesPage - Select required modules Auswahl der benötigten Module - Select the modules you want to include in your project. The recommended modules for this project are selected by default. Wählen Sie die Module aus, die Sie in Ihrem Projekt verwenden wollen. Die empfohlenen Module für dieses Projekt sind bereits ausgewählt. @@ -11952,17 +9694,14 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::PluginGenerator - Cannot open icon file %1. Die Icon-Datei %1 kann nicht geöffnet werden. - 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ützen. - Cannot open %1: %2 Die Datei %1 kann nicht geöffnet werden: %2 @@ -11970,7 +9709,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::ProjectLoadWizard - Project setup Projekt einrichten @@ -11978,7 +9716,6 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::QMakeStepFactory - qmake qmake @@ -11986,59 +9723,46 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::Qt4PriFileNode - Headers Header-Dateien - Sources Quelldateien - Forms Formulardateien - Resources Ressourcendateien - Other files Andere Dateien - - - Failed! Fehler - Could not open the file for edit with SCC. Die Datei konnte nicht mit Hilfe der Versionsverwaltung schreibbar gemacht werden. - Could not set permissions to writable. Die Datei konnte schreibbar gemacht werden. - There are unsaved changes for project file %1. Die Projektdatei %1 hat noch nicht gespeicherte Änderungen. - Could not write project file %1. Die Projektdatei %1 konnte nicht geschrieben werden. - Error while reading PRO file %1: %2 Fehler beim Lesen der PRO-Datei %1: %2 @@ -12046,12 +9770,10 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::Qt4ProFileNode - Error while parsing file %1. Giving up. Fehler beim Auswerten von %1. Abbruch. - Could not find .pro file for sub dir '%1' in '%2' Die .pro-Datei des Unterverzeichnisses '%1' konnte in '%2' nicht gefunden werden @@ -12059,83 +9781,67 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::Qt4ProjectConfigWidget - <a href="import">Import existing build</a> <a href="import">Existierenden Build importieren</a> - Shadow Build Directory Shadow-Build-Verzeichnis - using <font color="#ff0000">invalid</font> Qt Version: <b>%1</b><br>%2 verwende <font color="#ff0000">ungültige</font> Qt-Version: <b>%1</b><br>%2 - No Qt Version found. Es konnte keine Qt-Version gefunden werden. - using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> verwende Qt-Version: <b>%1</b><br>mit Toolchain <b>%2</b><br>Erstellung in <b>%3</b> - General Allgemein - Building in subdirectories of the source directory is not supported by qmake. qmake unterstützt keine Build-Vorgänge in dem Quellverzeichnis untergeordneten Verzeichnissen. - An incompatible build exists in %1, which will be overwritten. %1 build directory Im Ordner %1 existiert ein inkompatibler Build, der überschrieben wird. - Manage Verwaltung - problemLabel problemLabel - Configuration name: Name der Konfiguration: - Qt version: Qt-Version: - This Qt version is invalid. Diese Qt-Version ist ungültig. - Tool chain: Toolchain: - Shadow build: Shadow-Build: - Build directory: Build-Verzeichnis: @@ -12143,23 +9849,18 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::Qt4ProjectManagerPlugin - - Run qmake qmake ausführen - Build Erstellen - Run qmake in %1 qmake in %1 ausführen - Build in %1 Build in %1 @@ -12167,22 +9868,18 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::Qt4RunConfiguration - Clean Environment Umgebung löschen - System Environment Systemumgebung - Build Environment Build-Umgebung - Qt4 RunConfiguration Qt4 RunConfiguration @@ -12190,67 +9887,54 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::Qt4RunConfigurationWidget - Arguments: Argumente: - Select Working Directory Wählen Sie das Arbeitsverzeichnis aus - Working directory: Arbeitsverzeichnis: - Run in terminal In Terminal ausführen - Run Environment Ausführungsumgebung - Base environment for this runconfiguration: Basisumgebung für diese Ausführungskonfiguration - Clean Environment Umgebung löschen - System Environment Systemumgebung - Build Environment Build-Umgebung - Name: Name: - Executable: Ausführbare Datei: - Reset to default Zurücksetzen - Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) Debug-Version von Frameworks verwenden (DYLD_IMAGE_SUFFIX=_debug) @@ -12258,98 +9942,80 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::QtOptionsPageWidget - <specify a name> <Geben Sie einen Namen an> - <specify a qmake location> <Geben Sie den Pfad zu qmake an> - Select qmake Executable Wählen Sie die ausführbare qmake-Datei aus - Select the MinGW Directory Wählen Sie das MinGW-Verzeichnis aus - Select Carbide Install Directory Carbide-Installationsordner auswählen - Select S60 SDK Root Hauptordner des S60 SDK auswählen - Select the CSL ARM Toolchain (GCCE) Directory Ordner der CSL ARM Toolchain (GCCE) - Auto-detected Automatisch bestimmt - Manual Benutzerdefiniert - Building helpers Ausgabe-Hilfsbibliothek - <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>Datei:</td><td><pre>%1</pre></td></tr><tr><td>Letzte Änderung:</td><td>%2</td></tr><tr><td>Größe:</td><td>%3 Bytes</td></tr></table></body></html> - This Qt Version has a unknown toolchain. Dieser Qt-Version ist keine bekannte Toolchain zugeordnet. - Desktop Qt Version is meant for the desktop Desktop - Symbian Qt Version is meant for Symbian Symbian - Maemo Qt Version is meant for Maemo Maemo - Qt Simulator Qt Version is meant for Qt Simulator Qt Simulator - unkown No idea what this Qt Version is meant for! unbekannt - Found Qt version %1, using mkspec %2 (%3) Es wurde die Qt-Version %1 mit mkspec %2 (%3) gefunden @@ -12357,37 +10023,30 @@ Wählt eine für Desktop-Entwicklung geeignete Qt-Version aus, sofern sie verfü Qt4ProjectManager::Internal::QtVersionManager - + + - - - - Name Name - Debugging Helper Ausgabe-Hilfsbibliothek - Show &Log &Protokoll anzeigen - &Rebuild &Neu erstellen - <!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; } @@ -12400,47 +10059,38 @@ p, li { white-space: pre-wrap; } <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;">Die MSVC-Version konnte nicht bestimmt werden.</span></p></body></html> - S60 SDK: S60 SDK: - qmake Location QMake-Pfad - Toolchain: Toolchain: - Version name: Name der Version: - qmake location: QMake-Pfad: - MinGW directory: MinGW-Verzeichnis: - CSL/GCCE directory: CSL/GCCE: - Carbide directory: Carbide-Ordner: - Debugging helper: Ausgabe-Hilfsbibliothek: @@ -12448,17 +10098,14 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceDebugRunControl - Warning: Cannot locate the symbol file belonging to %1. Warnung: Die zu %1 gehörige Symboldatei konnte nicht gefunden werden. - Launching debugger... Starte Debugger... - Debugging finished. Debuggen beendet. @@ -12466,12 +10113,10 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunConfiguration - QtS60DeviceRunConfiguration QtS60DeviceRunConfiguration - %1 on Symbian Device %1 auf Symbian-Gerät @@ -12479,7 +10124,6 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunConfigurationFactory - %1 on Symbian Device %1 auf Symbian-Gerät @@ -12487,37 +10131,30 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget - Name: Name: - Device: Gerät: - Arguments: Argumente: - Installation file: Installationspaket: - Device on serial port: Gerät auf serieller Schnittstelle: - Queries the device for information Fragt Informationen vom Gerät ab - Connecting... Verbinde... @@ -12525,22 +10162,18 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunControl - Could not start application: %1 Die Anwendung konnte nicht gestartet werden: %1 - Starting application... Starte Anwendung... - Application running with pid %1. Die Anwendung läuft mit der Prozess-Id: %1. - Finished. Beendet. @@ -12548,121 +10181,98 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DeviceRunControlBase - Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running. Es konnte keine Verbindung zum Gerät über den Port '%1' hergestellt werden: %2 Bitte prüfen Sie, ob das Gerät verbunden ist und die Anwendung 'TRK' läuft. - Could not install from package %1 on device: %2 Das Installation des Pakets %1 auf dem Gerät schlug fehl: %2 - Deploying Deployement - There is no device plugged in. Es ist kein Gerät angeschlossen. - Executable file: %1 Ausführbare Datei: %1 - Debugger for Symbian Platform Debugger für Symbian-Plattform - Unable to remove existing file '%1': %2 Die existierende Datei '%1' konnte nicht entfernt werden: %2 - Unable to rename file '%1' to '%2': %3 Die Datei '%1' konnte nicht in '%2' umbenannt werden: %3 - Renaming new package '%1' to '%2' Die Paketdatei wird von '%1' zu '%2' umbenannt - Removing old package '%1' Entferne Paketdatei '%1' - Package file not found Paketdatei nicht gefunden - Failed to find package '%1': %2 Die Paketdatei '%1' konnte nicht gefunden werden: %2 - Package: %1 Deploying application to '%2'... Installationspaket: %1 Installiere Anwendung auf '%2'... - Could not create file %1 on device: %2 Die Datei %1 konnte nicht auf dem Gerät erzeugt werden: %2 - Could not write to file %1 on device: %2 Die Datei %1 konnte nicht auf dem Gerät geschrieben werden: %2 - Could not close file %1 on device: %2. It will be closed when App TRK is closed. Die Datei %1 konnte nicht auf dem Gerät geschlossen werden: %2. Sie wird beim Beenden der Trk-Anwendung geschlossen. - Could not connect to App TRK on device: %1. Restarting App TRK might help. Es konnte keine Verbindung zu App TRK über den Port '%1' hergestellt werden. Bitte versuchen Sie, App TRK neu zu starten. - The device '%1' has been disconnected Das Gerät '%1' wurde entfernt - Installing application... Installiere Anwendung... - Copying installation file... Kopiere Installationspaket... - Waiting for App TRK Warte auf App TRK - Please start App TRK on %1. Bitte starten Sie App TRK auf %1. - Canceled. Abgebrochen. @@ -12670,37 +10280,30 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::Internal::S60DevicesPreferencePane - Form Formular - Refresh Aktualisieren - S60 SDKs S60 SDKs - Error Fehler - Add Hinzufügen - Change Qt version Qt-Version ändern - Remove Entfernen @@ -12708,12 +10311,10 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::Internal::S60EmulatorRunConfiguration - %1 in Symbian Emulator %1 im Symbian-Emulator - Qt Symbian Emulator RunConfiguration Qt Symbian Emulator RunConfiguration @@ -12721,7 +10322,6 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::Internal::S60EmulatorRunConfigurationFactory - %1 in Symbian Emulator %1 im Symbian-Emulator @@ -12729,12 +10329,10 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget - Name: Name: - Executable: Ausführbare Datei: @@ -12742,17 +10340,14 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::Internal::S60EmulatorRunControl - Starting %1... Starte %1... - [Qt Message] [Qt-Meldung] - %1 exited with code %2 %1 beendet, Rückgabewert %2 @@ -12760,17 +10355,14 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::Internal::S60Manager - Run in Emulator Im Emulator ausführen - Run on Device Auf Gerät ausführen - Debug on Device Auf Gerät Debuggen @@ -12778,13 +10370,11 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::MakeStep - Make Qt4 MakeStep display name. Make - Could not find make command: %1 in the build environment Das 'make'-Kommando '%1' konnte in der Build-Umgebung nicht gefunden werden @@ -12792,17 +10382,14 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::MakeStepConfigWidget - Override %1: Überschreibe %1: - <b>Make:</b> %1 not found in the environment. <b>Make-Schritt:</b> %1 konnte in der Umgebung nicht gefunden werden. - <b>Make:</b> %1 %2 in %3 <b>Make-Kommando:</b> %1 %2 in %3 @@ -12810,18 +10397,15 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::QMakeStep - qmake QMakeStep display name. - Configuration is faulty, please check the Build Issues view for details. Die Konfiguration ist fehlerhaft. Details befinden sich in der Ansicht "Build-Probleme". - Configuration unchanged, skipping qmake step. Unveränderte Konfiguration, qmake-Schritt wird übersprungen. @@ -12829,12 +10413,10 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::QMakeStepConfigWidget - <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 @@ -12842,12 +10424,10 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::Qt4Manager - Failed opening project '%1': Project file does not exist Das Projekt %1 konnte nicht geöffnet werden: Die Projektdatei existiert nicht - Failed opening project '%1': Project already open Das Projekt %1 konnte nicht geöffnet werden da es bereits geladen ist @@ -12855,48 +10435,38 @@ Installiere Anwendung auf '%2'... Qt4ProjectManager::QtVersionManager - <not found> <nicht gefunden> - - Qt in PATH Qt aus PATH - Name: Name: - Source: Ordner: - mkspec: mkspec: - qmake: qmake: - Default: Vorgabe: - Version: Version: - Debugging helper: Ausgabe-Hilfsbibliothek: @@ -12904,82 +10474,66 @@ Installiere Anwendung auf '%2'... QtModulesInfo - Core non-GUI classes used by other modules Basisklassen (nicht-GUI), die von anderen Modulen verwendet werden - Graphical user interface components Komponenten für graphische Benutzeroberflächen - Classes for network programming Klassen für Netzwerkprogrammierung - OpenGL support classes Klassen fürOpenGL-Unterstützung - Classes for database integration using SQL Klassen für Datenbankintegration unter Verwendung von SQL - Classes for evaluating Qt Scripts Klassen für die Auswertung von Qt-Skripten - Additional Qt Script components Zusätzliche Qt-Skript-Komponenten - Classes for displaying the contents of SVG files Klassen zur Anzeige des Inhalts von SVG-Dateien - Classes for displaying and editing Web content Klassen zum Anzeigen und Bearbeiten von Web-Inhalten - Classes for handling XML Klassen zur Behandlung von XML - An XQuery/XPath engine for XML and custom data models Ein XQuery/XPath-Engine für XML und benutzerdefinierte Datenmodelle - Multimedia framework classes Multimedia-Framework - Classes for low-level multimedia functionality Klassen für Multimedia-Funktionalität - Classes that ease porting from Qt 3 to Qt 4 Klassen, die die Portierung von Qt 3 nach Qt 4 erleichtern - Tool classes for unit testing Hilfsklassen zum Unit-Testen - Classes for Inter-Process Communication using the D-Bus Klassen zur Interprozess-Kommunikation unter Verwendung von D-BUS @@ -12987,17 +10541,14 @@ Installiere Anwendung auf '%2'... Locator::ILocatorFilter - Filter Configuration Filterkonfiguration - Limit to prefix Auf Präfix beschränken - Prefix: Präfix: @@ -13005,28 +10556,22 @@ Installiere Anwendung auf '%2'... Locator::Internal::DirectoryFilter - Generic Directory Filter Allgemeines Verzeichnisfilter - Filter Configuration Filterkonfiguration - - Select Directory Arbeitsordner - %1 filter update: 0 files %1 Filterstatus: Keine Dateien - %1 filter update: %n files %1 Filterstatus: Eine Datei @@ -13034,7 +10579,6 @@ Installiere Anwendung auf '%2'... - %1 filter update: canceled %1 Filterstatus: Abgebrochen @@ -13042,54 +10586,44 @@ Installiere Anwendung auf '%2'... Locator::Internal::DirectoryFilterOptions - Name: Name: - Specify file name filters, separated by comma. Filters may contain wildcards. Eine Liste von durch Kommata getrennte Filtern für Dateinamen. Die Filter können Suchmuster enthalten. - Prefix: Präfix: - Limit to prefix Auf Präfix beschränken - Add... Hinzufügen... - Edit... Ändern... - Remove Entfernen - Directories: Verzeichnisse: - 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. Geben Sie ein Kürzel oder eine Abkürzung ein, die die Funde auf Dateien von diesem Verzeichnis beschränkt. Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeichen und dem Suchbegriff. - File types: Dateitypen: @@ -13097,7 +10631,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Locator::Internal::FileSystemFilter - Files in file system Dateien aus dem Dateisystem @@ -13105,27 +10638,22 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Locator::Internal::FileSystemFilterOptions - Filter configuration Filterkonfiguration - Prefix: Präfix: - Limit to prefix Auf Präfix beschränken - Include hidden files Versteckte Dateien zeigen - Filter: Filter: @@ -13133,7 +10661,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Locator::Internal::OpenDocumentsFilter - Open documents Offene Dokumente @@ -13141,7 +10668,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Locator::Internal::LocatorFiltersFilter - Available filters Verfügbare Filter @@ -13149,7 +10675,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Locator::Internal::LocatorPlugin - Indexing Indizierung @@ -13157,32 +10682,26 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Locator::Internal::LocatorWidget - Refresh Aktualisieren - Configure... Einstellungen... - Locate... Finden... - Type to locate Suchmuster - Options Einstellungen - <type here> <Tippen Sie hier> @@ -13190,7 +10709,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Locator::Internal::SettingsPage - %1 (prefix: %2) %1 (Präfix: %2) @@ -13198,32 +10716,26 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Locator::Internal::SettingsWidget - Configure Filters Filterkonfiguration - Add Hinzufügen - Remove Entfernen - Edit Editieren - min Minuten - Refresh interval: Aktualisierungsintervall: @@ -13231,102 +10743,82 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich RegExp::Internal::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 @@ -13334,22 +10826,18 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich ResourceEditor::Internal::ResourceEditorPlugin - Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. Erstellt eine C++-Quelldatei für ein C++-Projekt. - Qt Resource file Qt-Ressourcendatei - &Undo &Rückgängig - &Redo &Wiederholen @@ -13357,7 +10845,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich ResourceEditor::Internal::ResourceEditorW - untitled kein Titel @@ -13365,17 +10852,14 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich SaveItemsDialog - Save Changes Änderungen speichern - The following files have unsaved changes: Die folgenden Dateien wurden geändert: - Automatically save all files before building Geänderte Dateien vorm Erstellen automatisch speichern @@ -13383,62 +10867,50 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich SharedTools::QrcEditor - Add Files Dateien hinzufügen - Add Prefix Präfix hinzufügen - Copy Kopieren - Skip Überspringen - Abort Abbrechen - Invalid file location Ungültiger Pfad - 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 - Overwrite failed Fehler beim Überschreiben - Could not overwrite file %1. Die Datei %1 konnte nicht überschrieben werden. - Copying failed Das Kopieren schlug fehl - Could not copy the file to %1. Die Datei konnte nicht nach %1 kopiert werden. @@ -13446,72 +10918,58 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich SharedTools::ResourceView - Add Files... Dateien hinzufügen... - Change Alias... Alias ändern... - Add Prefix... Präfix hinzufügen... - Change Prefix... Präfix ändern... - Change Language... Sprache ändern... - Remove Item Element löschen - Open file Datei öffnen - All files (*) Alle Dateien (*) - Change Prefix Präfix ändern - Input Prefix: Präfix: - Change Language Sprache ändern - Language: Sprache: - Change File Alias Dateialias ändern - Alias: Aliasname: @@ -13519,7 +10977,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich ShowBuildLog - Debugging Helper Build Log Erstellungsprotokoll der Ausgabe-Hilfsbibliothek @@ -13527,7 +10984,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Snippets::Internal::SnippetsPlugin - Snippets Snippets @@ -13535,7 +10991,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Snippets::Internal::SnippetsWindow - Snippets Snippets @@ -13543,22 +10998,18 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich StartExternalDialog - Start Debugger Debugger starten - Executable: Ausführbare Datei: - Arguments: Argumente: - Break at 'main': Haltepunkt bei 'main': @@ -13566,42 +11017,34 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich StartRemoteDialog - Start Debugger Debugger starten - Architecture: Architektur: - Host and port: Host und Portnummer: - Use server start script: Server-Startskript benutzen: - Server start script: Server-Startskript: - Debugger: Debugger: - Local executable: Ausführbare Datei (lokal): - Sysroot: Sysroot: @@ -13609,12 +11052,10 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Subversion::Internal::CheckoutWizard - Checks out a Subversion repository and tries to load the contained project. Erstellt einen Checkout eines Subversion-Repositories und versucht, das darin enthaltene Projekt zu laden. - Subversion Checkout Projekt aus Subversion-Repository @@ -13622,17 +11063,14 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Subversion::Internal::CheckoutWizardPage - Location Pfad - Specify repository URL, checkout directory and path. Geben Sie Repository-URL, Ordner und Pfad an. - Repository: Repository: @@ -13640,62 +11078,50 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Subversion::Internal::SettingsPage - Authentication Authentifizierung - Password: Passwort: - Subversion Subversion - Configuration Konfiguration - Miscellaneous Sonstige Einstellungen - Timeout: Zeitlimit: - s s - Prompt on submit Abgabe 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: @@ -13703,7 +11129,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Subversion::Internal::SettingsPageWidget - Subversion Command Subversion-Kommando @@ -13711,297 +11136,239 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich 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 Alle Dateien abgeben - Commit Current File Datei abgeben - Commit "%1" "%1" abgeben - 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 Projekt abgeben - Commit Project "%1" Projekt "%1" abgeben - Diff Repository Diff des Repositories - Repository Status Status des Repositories - Log Repository Log des Repositories - Update Repository - Commit Abgeben - Diff Selected Files Diff für Auswahl - &Undo &Rückgängig - &Redo &Wiederholen - Closing Subversion Editor Subversion-Editor schließen - Do you want to commit the change? Möchten Sie den Commit ausführen? - The commit message check failed. Do you want to commit the change? Die Überprüfung der Beschreibung schlug fehl. Möchten Sie den Commit trotzdem ausführen? - Executing: %1 %2 Kommando: %1 %2 - 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... - 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 - Would you like to revert all changes to the repository? Möchten Sie alle ausstehenden Änderungen des Repositories 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 Abgabevorgang. - There are no modified files. Es gibt keine geänderten Dateien. - Cannot create temporary file: %1 Es konnte keine temporäre Datei erstellt werden: %1 - Describe Beschreibe - Revision number: Revisionsnummer: - Executing in %1: %2 %3 Kommando [%1]: %2 %3 - No subversion executable specified! Es wurde keine ausführbaren Subversion-Datei angegeben! - The process terminated with exit code %1. Der Prozess wurde beendet, Rückgabewert %1. - The process terminated abnormally. Der Prozess wurde in anormaler Weise beendet. - Could not start subversion '%1'. Please check your settings in the preferences. Das Subversion-Kommando '%1' konnte nicht gestartet werden. Bitte überprüfen Sie die Einstellungen. - Subversion did not respond within timeout limit (%1 ms). Keine Antwort von Subversion innerhalb des Zeitlimits (%1 ms). @@ -14009,7 +11376,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich Subversion::Internal::SubversionSubmitEditor - Subversion Submit Subversion Submit @@ -14017,7 +11383,6 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich SymbolGroup - Out of scope Nicht im Bereich @@ -14025,18 +11390,14 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich TextEditor::BaseFileFind - - %1 found %1 gefunden - List of comma separated wildcard filters Liste von Suchmustern, durch Kommas getrennt - Use regular e&xpressions Benutze reguläre Ausdrücke @@ -14044,12 +11405,10 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich TextEditor::BaseTextDocument - untitled kein Titel - <em>Binary data</em> <em>Binäre Daten</em> @@ -14057,17 +11416,14 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich TextEditor::BaseTextEditor - Print Document Dokument drucken - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. <b>Fehler:</b> Die Datei "%1" kann nicht mit dem Encoding "%2" dargestellt werden. Sie kann nicht editiert werden. - Select Encoding Encoding auswählen @@ -14075,12 +11431,10 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich TextEditor::BaseTextEditorEditable - Line: %1, Col: %2 Zeile: %1, Spalte: %2 - Line: %1, Col: 999 Zeile: %1, Spalte: 999 @@ -14088,142 +11442,114 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich TextEditor::BehaviorSettingsPage - Storage Abspeichern - Removes trailing whitespace on saving. Leerzeichen am Zeilenende beim Abspeichern entfernen. - &Clean whitespace &Leerzeichen bereinigen - Clean whitespace in entire document instead of only for changed parts. Bereinigt Leerzeichen im gesamten Dokument und nicht nur in den geänderten Teilen. - In entire &document Im &gesamten Dokument - Correct leading whitespace according to tab settings. Leerzeichen am Zeilenanfang entsprechend Tabulatoreinstellungen korrigieren. - Clean indentation Einrückung korrigieren - &Ensure newline at end of file &Zeilenvorschub am Dateiende anfügen - Tabs and Indentation Tabulatoren und Einrückung - Ta&b size: Tabulator&weite: - &Indent size: &Einrückung: - Backspace will go back one indentation level instead of one space. Die Rücktaste folgt der Einrückungstiefe anstatt nur ein Zeichen zu löschen. - &Backspace follows indentation &Rücktaste folgt der Einrückungstiefe - Insert &spaces instead of tabs Leerzeichen &anstelle Tabulatoren einfügen - Enable automatic &indentation Automatische Ein&rückung - Tab key performs auto-indent: Tabulator-Taste bewirkt automatische Einrückung: - Never Niemals - Always Immer - Automatically determine based on the nearest indented line (previous line preferred over next line) Bestimme automatisch basierend auf der nächstliegenden, eingerückten Zeile (unter Bevorzugung der vorhergehenden Zeile) - Based on the surrounding lines Basierend auf den umgebenden Zeilen - Mouse Maus - Enable &mouse navigation &Mausnavigation aktivieren - Enable scroll &wheel zooming Zoom mittels Maus&rad aktivieren - Block indentation style: Blockeinrückung: - Exclude Braces Klammern ausschließen - Include Braces Klammern einschließen - GNU Style GNU-Stil - In Leading White Space Nur in Leerzeichen am Zeilenanfang @@ -14231,72 +11557,58 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich TextEditor::DisplaySettingsPage - Display Anzeige - Display line &numbers Zeilen&nummern anzeigen - Display &folding markers Code&folding-Zeichen anzeigen - Show tabs and spaces. Tabulatoren und Leerzeichen darstellen. - &Visualize whitespace &Leerzeichen darstellen - Highlight current &line Aktuelle &Zeile hervorheben - Text Wrapping Umbruch - Enable text &wrapping &Umbruch aktivieren - Display right &margin at column: Rechten &Rand anzeigen bei Spalte: - Highlight &blocks Blöcke hervorheben - Mark &text changes Änderungen hervorheben - &Animate matching parentheses Passende Klammern &animieren - Auto-fold first &comment Ersten &Kommentarblock einklappen - Center &cursor on scroll Cursor beim Scrollen in der &Mitte halten @@ -14304,52 +11616,42 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich TextEditor::FontSettingsPage - Font && Colors Zeichensatz && Farben - 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? - Delete 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 es speichern? - Discard Löschen @@ -14357,29 +11659,24 @@ Um es abzurufen, tippen Sie das Kürzel im Locator, gefolgt von einem Leerzeich TextEditor::Internal::CodecSelector - Text Encoding Text-Encoding - The following encodings are likely to fit: Die folgenden Encodings scheinen der Datei zu entsprechen: - Select encoding for "%1".%2 Auswahl des Encodings für "%1".%2 - Reload with Encoding Neu laden - Save with Encoding Mit Encoding abspeichern @@ -14387,7 +11684,6 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TextEditor::Internal::ColorScheme - Not a color scheme file. Keine Farbschema-Datei. @@ -14395,32 +11691,26 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TextEditor::Internal::ColorSchemeEdit - Bold Fett - Italic Kursiv - Background: Hintergrund: - Foreground: Zeichen: - Erase background Hintergrund löschen - x x @@ -14428,7 +11718,6 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TextEditor::Internal::FindInCurrentFile - Current File Aktuelle Datei @@ -14436,27 +11725,22 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TextEditor::Internal::FindInFiles - Files on File System Dateien aus dem Dateisystem - &Directory: &Verzeichnis: - &Browse &Auswählen - File &pattern: Such&muster für Dateinamen: - Directory to search Verzeichnis @@ -14464,7 +11748,6 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TextEditor::Internal::FontSettings - Customized Benutzerdefiniert @@ -14472,47 +11755,38 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TextEditor::Internal::FontSettingsPage - Font Zeichensatz - Family: Name: - Size: Größe: - Color Scheme Farbschema - Antialias Kantenglättung - Copy... Kopieren... - Delete Löschen - % % - Zoom: Vergrößerungsfaktor: @@ -14520,12 +11794,10 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TextEditor::Internal::LineNumberFilter - Line in current document Zeile im aktuellen Dokument - Line %1 Zeile %1 @@ -14533,342 +11805,274 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TextEditor::TextEditorActionHandler - &Undo &Rückgängig - &Redo &Wiederholen - Select Encoding... Encoding auswählen... - Auto-&indent Selection Ein&rückung in Auswahl korrigieren - Ctrl+I Ctrl+I - Meta Meta - Ctrl Ctrl - %1+E, R %1+E, R - &Visualize Whitespace &Leerzeichen anzeigen - Clean Whitespace Leerzeichen bereinigen - Enable Text &Wrapping Text&umbruch aktivieren - (Un)Comment &Selection Auswahl aus&kommentieren - Ctrl+/ Ctrl+/ - Delete &Line &Zeile löschen - Reset Font Size Schriftgröße zurücksetzen - Ctrl+0 Ctrl+0 - Go to Block Start Zum Blockanfang gehen - Go to Block End Zum Blockende gehen - Go to Block Start With Selection Bis Blockanfang markieren - Go to Block End With Selection Bis Blockende markieren - Shift+Del Shift+Del - &Rewrap Paragraph Abschnitt neu um&brechen - %1+E, %2+V %1+E, %2+V - %1+E, %2+W %1+E, %2+W - Cut &Line &Zeile ausschneiden - Collapse Einklappen - Ctrl+< Ctrl+< - Expand Ausklappen - Ctrl+> Ctrl+> - (Un)&Collapse All Alles ein/aus&klappen - Increase Font Size Schrift vergrößern - Ctrl++ Ctrl++ - Decrease Font Size Schrift verkleinern - Ctrl+- Ctrl+- - Ctrl+[ Ctrl+[ - Ctrl+] Ctrl+] - Ctrl+{ Ctrl+{ - Ctrl+} Ctrl+} - Select Block Up Einen Block nach oben auswählen - Ctrl+U Ctrl+U - Select Block Down Einen Block nach unten auswählen - Move Line Up Eine Zeile nach oben gehen - Ctrl+Shift+Up Ctrl+Shift+Up - Move Line Down Eine Zeile nach unten gehen - Ctrl+Shift+Down Ctrl+Shift+Down - Copy Line Up Zeile nach oben kopieren - Ctrl+Alt+Up Ctrl+Alt+Up - Copy Line Down Zeile nach unten kopieren - Ctrl+Alt+Down Ctrl+Alt+Down - Join Lines Zeilen verbinden - Ctrl+J Ctrl+J - Goto Line Start Zeilenanfang - Goto Line End Zeilenende - Goto Next Line Nächste Zeile - Goto Previous Line Vorangehende Zeile - Goto Previous Character Vorangehendes Zeichen - Goto Next Character Nächstes Zeichen - Goto Previous Word Vorangehendes Wort - Goto Next Word Nächstes Wort - Goto Line Start With Selection Bis Zeilenanfang markieren - Goto Line End With Selection Bis Zeilenende markieren - Goto Next Line With Selection Bis zur nächsten Zeile markieren - Goto Previous Line With Selection Bis zur vorangehenden Zeile markieren - Goto Previous Character With Selection Vorangehendes Zeichen markieren - Goto Next Character With Selection Nächstes Zeichen markieren - Goto Previous Word With Selection Vorangehendes Wort markieren - Goto Next Word With Selection Nächstes Wort markieren - <line number> <Zeilennummer> @@ -14876,152 +12080,122 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TextEditor::TextEditorSettings - Text Text - Link Link - Selection Auswahl - Line Number Zeilennummer - Search Result Suchergebnisse - Search Scope Suchbereich - Parentheses Klammern - Current Line Aktuelle Zeile - Current Line Number Zeilennummer - Occurrences Vorkommen - Unused Occurrence Nicht verwendet - Renaming Occurrence Umbenennung - Number Zahl - String Zeichenkette - Type Typ - Keyword Schlüsselwort - Operator Operator - Preprocessor Präprozessor - Label Sprungmarke - Comment Kommentar - Doxygen Comment Doxygen-Kommentar - Doxygen Tag Doxygen-Schlüsselwort - Visual Whitespace Leerzeichen darstellen - Disabled Code Deaktivierter Code - Added Line Hinzugefügte Zeile - Removed Line Entfernte Zeile - Diff File Diff-Dateiangabe - Diff Location Diff-Zeilenangabe - Behavior Verhalten - Display Anzeige @@ -15029,72 +12203,58 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: ToolChain - GCC GCC - Intel C++ Compiler (Linux) Intel C++ Compiler (Linux) - Microsoft Visual C++ Microsoft Visual C++ - Windows CE Windows CE - WINSCW WINSCW - GCCE GCCE - GCCE/GnuPoc GCCE/GnuPoc - RVCT (ARMV6)/GnuPoc RVCT (ARMV6)/GnuPoc - RVCT (ARMV5) RVCT (ARMV5) - RVCT (ARMV6) RVCT (ARMV6) - GCC for Maemo GCC for Maemo - Other Andere - <Invalid> <Ungültig> - <Unknown> <Unbekannt> @@ -15102,27 +12262,22 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: TopicChooser - Choose a topic for <b>%1</b>: Wählen Sie ein Thema für <b>%1</b>: - Choose Topic Themenwahl - &Topics &Themen - &Display &Anzeigen - &Close &Schließen @@ -15130,17 +12285,14 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: Utils::CheckableMessageBox - Dialog Dialog - TextLabel TextLabel - CheckBox CheckBox @@ -15148,17 +12300,14 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: 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. @@ -15166,62 +12315,50 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: 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 - Press <RETURN> to close this window... Betätigen Sie die <RETURN> Taste, um das Fenster zu schließen... - Cannot start the terminal emulator '%1'. Der Terminal-Emulator '%1' konnte nicht gestartet werden. - Cannot create temporary directory '%1': %2 Das temporäre Verzeichnis '%1' konnte nicht erstellt werden: %2 - Cannot create socket '%1': %2 Der Socket '%1' konnte nicht erstellt werden: %2 - 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 - Unexpected output from helper program. Die Ausgabe des Hilfsprogrammes kann nicht ausgewertet werden. - 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 @@ -15229,43 +12366,13 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: Utils::DetailsButton - Details Details - - 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. (%1). - Der Name enspricht dem eines von MS Windows verwalteten Gerätes (%1). - - Utils::FileSearch - %1: canceled. %n occurrences found in %2 files. %1: Abgebrochen. Eine Fundstelle in %2 Dateien. @@ -15273,7 +12380,6 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: - %1: %n occurrences found in %2 files. %1: Eine Fundstelle in %2 Dateien. @@ -15281,7 +12387,6 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: - %1: %n occurrences found in %2 of %3 files. %1: Eine Fundstelle in %2 von %3 Dateien. @@ -15292,82 +12397,66 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: 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' - Inherits QObject Erbt von Klasse QObject - None Keine - Inherits QWidget Erbt von Klasse QWidget - Based on QSharedData Basierend auf QSharedData - &Class name: &Klassenname: - &Base class: &Basisklasse: - &Type information: &Typinformation: - &Header file: &Header-Datei: - &Source file: &Quelldatei: - &Generate form: Form-Datei &generieren: - &Form file: &Form-Datei: - &Path: &Pfad: @@ -15375,47 +12464,38 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: Utils::PathChooser - Choose... Auswählen... - Browse... Auswählen... - Choose Directory Ordner wählen - Choose File Datei wählen - 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: @@ -15423,27 +12503,22 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: Utils::PathListEditor - Insert... Einfügen... - Add... Hinzufügen... - Delete Line Zeile löschen - Clear Löschen - From "%1" Von "%1" @@ -15451,37 +12526,30 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: 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. - Introduction and project location Einführung und Projektverzeichnis - Name: Name: - Create in: Erzeugen in: - Use as default project location Als Vorgabe für Projektordner verwenden @@ -15489,7 +12557,6 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: Utils::ProjectNameValidatingLineEdit - Invalid character '.'. Ungültiges Zeichen '.'. @@ -15497,17 +12564,14 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: Utils::SubmitEditorWidget - Subversion Submit Subversion Submit - Des&cription &Beschreibung - F&iles &Dateien @@ -15515,17 +12579,14 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: Utils::WizardPage - Name: Name: - Path: Pfad: - Choose the Location Pfadangabe @@ -15533,17 +12594,14 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: Utils::reloadPrompt - File Changed Datei geändert - The unsaved file <i>%1</i> has been changed outside Qt Creator. Do you want to reload it and discard your changes? Die noch nicht gespeicherte Datei <i>%1</i> wurde außerhalb von Qt Creator geändert. Möchten Sie sie neu laden? - The file <i>%1</i> has changed outside Qt Creator. Do you want to reload it? Die Datei <i>%1</i> wurde außerhalb von Qt Creator geändert. Möchten Sie sie neu laden? @@ -15551,17 +12609,14 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase - Version Control Versionskontrolle - Common Allgemein - Project from Version Control Projekt aus Versionskontrollsystem @@ -15569,32 +12624,26 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase::BaseCheckoutWizard - Cannot Open Project Fehler beim Öffnen des Projekts - Failed to open project in '%1'. Es konnte kein Projekt in '%1' geöffnet werden. - Could not find any project files matching (%1) in the directory '%2'. Es konnten keine dem Muster (%1) entsprechenden Projektdateien in '%2' gefunden werden. - The Project Explorer is not available. Das ProjectExplorer-Plugin ist nicht verfügbar. - '%1' does not exist. '%1' existiert nicht. - Unable to open the project '%1'. Das Projekt '%1' konnte nicht geöffnet werden. @@ -15602,17 +12651,14 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase::BaseCheckoutWizardPage - WizardPage WizardPage - Checkout Directory: Verzeichnis: - Path: Pfad: @@ -15620,22 +12666,18 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase::Internal::CheckoutProgressWizardPage - Checkout Auschecken - Checkout started... Checkout begonnen... - Failed. Fehlgeschlagen. - Succeeded. Beendet. @@ -15643,27 +12685,22 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase::Internal::NickNameDialog - Name Name - E-mail E-Mail-Adresse - Alias Alias - Alias e-mail Alias-E-Mail-Adresse - Cannot open '%1': %2 Die Datei '%1' kann nicht geöffnet werden: %2 @@ -15671,27 +12708,22 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase::ProcessCheckoutJob - Unable to start %1: %2 %1 kann nicht gestartet werden: %2 - The process terminated with exit code %1. Der Prozess wurde beendet, Rückgabewert %1. - The process returned exit code %1. Der Prozess wurde beendet, Rückgabewert %1. - The process terminated in an abnormal way. Der Prozess wurde in anormaler Weise beendet. - Stopping... Beende Prozess... @@ -15699,12 +12731,10 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase::SubmitFileModel - State Status - File Datei @@ -15712,17 +12742,14 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase::VCSBaseEditor - Annotate "%1" Annotation für "%1" - Copy "%1" "%1" Kopieren - Describe change %1 Details zur Änderung %1 anzeigen @@ -15730,17 +12757,14 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase::VCSBaseOutputWindow - Open "%1" "%1" öffnen - Clear Löschen - Version Control Versionskontrolle @@ -15748,57 +12772,46 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSBase::VCSBaseSubmitEditor - Check message Beschreibung prüfen - Insert name... Namen einfügen... - Prompt to submit Abgabe bestätigen - Submit Message Check failed Die Überprüfung der Beschreibung schlug fehl - Executing %1 Führe %1 aus - Executing [%1] %2 Ausführung [%1] %2 - Unable to open '%1': %2 '%1' kann nicht geöffnet werden: %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 der Beschreibung. - The check script '%1' crashed Das Skript zur Überprüfung der Beschreibung ist abgestürzt - The check script returned exit code %1. Das Skript zur Überprüfung wurde beendet, Rückgabewert %1. @@ -15806,12 +12819,10 @@ Die folgenden Encodings scheinen der Datei zu entsprechen: VCSManager - Version Control Versionskontrolle - Would you like to remove this file from the version control system (%1)? Note: This might remove the local file. Möchten Sie die Datei aus der Versionskontrolle (%1) entfernen? @@ -15821,47 +12832,38 @@ Hinweis: Unter Umständen wird die Datei gelöscht. ViewDialog - Send to Codepaster An CodePaster senden - &Username: &Nutzername: - <Username> <Nutzername> - &Description: &Beschreibung: - <Description> <Beschreibung> - Patch 1 Patch 1 - Patch 2 Patch 2 - Protocol: Protokoll: - <!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; } @@ -15874,7 +12876,6 @@ p, li { white-space: pre-wrap; } <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 @@ -15882,7 +12883,6 @@ p, li { white-space: pre-wrap; } Welcome::Internal::CommunityWelcomePage - News && Support News && Support @@ -15890,57 +12890,46 @@ p, li { white-space: pre-wrap; } Welcome::Internal::CommunityWelcomePageWidget - Form Formular - News From the Qt Labs Neuigkeiten aus den Qt Labs - <b>Forum Nokia</b><br /><font color='gray'>Mobile Application Support</font> <b>Forum Nokia</b><br /><font color='gray'>Unterstützung für mobile Anwendungen</font> - <b>Qt LGPL Support</b><br /><font color='gray'>Buy commercial Qt support</font> <b>Qt LGPL Unterstützung</b><br/><font color='gray'>Erwerben Sie kommerzielle Unterstützung für Qt</font> - <b>Qt Centre</b><br /><font color='gray'>Community based Qt support</font> <b>Qt Centre</b><br /><font color='gray'>Community-basierte Unterstützung für Qt</font> - <b>Qt Home</b><br /><font color='gray'>Qt by Nokia on the web</font> <b>Qt Home</b><br /><font color='gray'>Qt von Nokia im Web</font> - <b>Qt Git Hosting</b><br /><font color='gray'>Participate in Qt development</font> <b>Qt Git Hosting</b><br /><font color='gray'>Beteiligen Sie sich an der Entwicklung von Qt</font> - <b>Qt Apps</b><br /><font color='gray'>Find free Qt-based apps</font> <b>Qt Apps</b><br /><font color='gray'>Finden Sie freie, Qt-basierte Applikationen</font> - http://labs.trolltech.com/blogs/feed - Qt Support Sites Qt Support Sites - Qt Links Qt Links @@ -15948,7 +12937,6 @@ p, li { white-space: pre-wrap; } Welcome::WelcomeMode - #headerFrame { border-image: url(:/welcome/images/center_frame_header.png) 0; border-width: 0; @@ -15957,17 +12945,14 @@ p, li { white-space: pre-wrap; } - Help us make Qt Creator even better Helfen Sie uns, Qt Creator zu verbessern - Feedback Feedback - Welcome Willkommen @@ -15975,27 +12960,22 @@ p, li { white-space: pre-wrap; } mainClass - main - Text1: - N/A - Text2: - Text3: @@ -16003,111 +12983,83 @@ p, li { white-space: pre-wrap; } Debugger::Internal::AbstractGdbAdapter - The Gdb process could not be stopped: %1 Der Gdb-Prozess konnte nicht angehalten werden: %1 - Application process could not be stopped: %1 Die Anwendung konnte nicht angehalten werden: %1 - Application started Anwendung gestartet - Application running Anwendung läuft - Attached to stopped application Debugger an angehaltene Anwendung angehängt - Connecting to remote server failed: %1 Die Verbindung zum Server konnte nicht hergestellt werden: %1 - - Debugger::Internal::TermGdbAdapter - - - Debugger Error - Debugger-Fehler - - QmlParser - Illegal character Ungültiges Zeichen - Unclosed string at end of line Zeichenkette am Zeilenende nicht geschlossen - Illegal escape squence Ungültige Escape-Sequenz - Illegal unicode escape sequence Ungültige Unicode-Escape-Sequenz - Unclosed comment at end of file Kommentar am Dateiende nicht geschlossen - Illegal syntax for exponential number Ungültige Syntax des Exponenten der Zahl - Identifier cannot start with numeric literal Bezeichner kann nicht mit numerischem Zeichen beginnen - Unterminated regular expression literal Regulärer Ausdruck nicht abgeschlossen - Invalid regular expression flag '%0' Ungültiger Modifikator für regulären Ausdruck '%0' - - Syntax error Syntaxfehler - Unexpected token `%1' Unerwartetes Token '%1' - - Expected token `%1' Es wird das Token '%1' erwartet @@ -16115,27 +13067,22 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60Devices::Device - Id: Id: - Name: Name: - EPOC: EPOC: - Tools: Tools: - Qt: Qt: @@ -16143,37 +13090,30 @@ p, li { white-space: pre-wrap; } trk::BluetoothListener - %1: Stopping listener %2... %1: Halte Prozess %2 an ... - %1: Starting Bluetooth listener %2... %1: Starte Prozess %2... - Unable to run '%1': %2 '%1' kann nicht ausgeführt werden: %2 - %1: Bluetooth listener running (%2). %1: Prozess läuft (%2). - %1: Process %2 terminated with exit code %3. %1: Der Prozess %2 wurde beendet, Rückgabewert %3. - %1: Process %2 crashed. %1: Der Prozess %2 ist abgestürzt. - %1: Process error %2: %3 %1: Fehler bei Prozess %2: %3 @@ -16181,27 +13121,22 @@ p, li { white-space: pre-wrap; } trk::promptStartCommunication - Connection on %1 canceled. Die Verbindung auf %1 wurde abgebrochen. - Waiting for App TRK Warte auf App TRK - Waiting for App TRK to start on %1... Warte auf App TRK an %1... - Waiting for Bluetooth Connection Warte auf Bluetooth-Verbindung - Connecting to %1... Verbinde zu %1... @@ -16209,7 +13144,6 @@ p, li { white-space: pre-wrap; } trk::BaseCommunicationStarter - %1: timed out after %n attempts using an interval of %2ms. %1: Zeitüberschreitung nach einem Versuch (Intervall %2ms). @@ -16217,12 +13151,10 @@ p, li { white-space: pre-wrap; } - %1: Connection attempt %2 succeeded. %1: Verbindung im Versuch %2 hergestellt. - %1: Connection attempt %2 failed: %3 (retrying)... %1: Verbindung im Versuch %2 fehlgeschlagen: %3 (wird wiederholt)... @@ -16230,40 +13162,33 @@ p, li { white-space: pre-wrap; } 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-Protokoll: 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 - big endian big endian - little endian little endian - , type size: %1 will be inserted into s60description , Typgröße: %1 - , float size: %1 will be inserted into s60description , Gleitkomma-Größe: %1 @@ -16272,79 +13197,63 @@ p, li { white-space: pre-wrap; } Git::Internal::StashDialog - Stashes Stashes - Name Name - Branch Branch - Message Bezeichnung - Delete all... Alle löschen... - Delete... Löschen... - Show Anzeigen - Restore... Wiederherstellen... - Restore to branch... Restore a git stash to new branch to be created Als Branch wiederherstellen... - Refresh Aktualisieren - <No repository> <Kein Repository> - Repository: %1 Repository: %1 - - Delete stashes Löschen von Stashes - 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? @@ -16352,49 +13261,40 @@ p, li { white-space: pre-wrap; } - 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 rücksetzen. - Stash Stash - Discard Rücksetzen - Restore Stash to Branch Als Branch wiederherstellen - Branch: Branch: - Stash Restore Stash wiederherstellen - Would you like to restore %1? Möchten Sie %1 wiederherstellen? - Error restoring %1 Fehler beim Wiederherstellen von %1 @@ -16402,42 +13302,34 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::MercurialCommitPanel - General Information Allgemeine Informationen - Repository: Repository: - repository repository - Branch: Branch: - branch branch - Commit Information Informationen zu Commit - Author: Autor: - Email: E-Mail-Adresse: @@ -16445,77 +13337,62 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::OptionsPage - Form Form - Configuration Konfiguration - Command: Kommando: - User Nutzer - Username to use by default on commit. Nutzername für Abgabe. - Default username: Vorgabe für Nutzernamen: - Email to use by default on commit. Email-Addresse für Abgabe. - Miscellaneous Sonstige Einstellungen - The number of recent commit logs to show, choose 0 to see all enteries Zahl der anzuzeigenden Logeinträge, 0 für unbegrenzt - Timeout: Zeitlimit: - s s - Prompt on submit Abgabe bestätigen - Mercurial Mercurial - Log count: Log-Anzeige beschränken auf: - Default email: Vorgabe-Email: @@ -16523,17 +13400,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::RevertDialog - Revert Rückgängig machen - Specify a revision other than the default? Möchten Sie eine Revision angeben? - Revision: Revision: @@ -16541,27 +13415,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::SrcDestDialog - Dialog Dialog - Local filesystem: Dateisystem: - e.g. https://[user[:pass]@]host[:port]/[path] zum Beispiel https://[user[:pass]@]host[:port]/[path] - Specify Url: URL: - Default Location Vorgabe @@ -16569,12 +13438,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::Internal::AddTargetDialog - Target: Ziel: - Add target Ziel hinzufügen @@ -16582,7 +13449,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::Internal::DoubleTabWidget - DoubleTabWidget DoubleTabWidget @@ -16590,7 +13456,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::Internal::TargetSettingsWidget - TargetSettingsWidget TargetSettingsWidget @@ -16598,25 +13463,21 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::ItemLibrary - Library Title of library view Bibliothek - Items Title of library items view Elemente - Resources Title of library resources view Ressourcen - <Filter> Library search input hint text <Filter> @@ -16625,72 +13486,58 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. BehaviorDialog - Dialog Dialog - Type: Typ: - Id: Id: - Property Name: Name der Eigenschaft: - Animation Animation - SpringFollow SpringFollow - Settings Einstellungen - Duration: Dauer: - Curve: Kurve: - easeNone easeNone - Source: Quelle: - Velocity: Geschwindigkeit: - Spring: Feder: - Damping: Dämpfung: @@ -16698,7 +13545,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. GradientDialog - Edit Gradient Gradient bearbeiten @@ -16706,304 +13552,242 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. GradientEditor - Form Formular - Gradient Editor Gradient Editor - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. Dieser Bereich zeigt eine Vorschau des in Bearbeitung befindlichen Gradienten. Hier können Gradienttyp-spezifische Parameter, wie Start- und Endpunkt, Radius etc. per Drag & Drop bearbeitet werden. - 1 1 - 2 2 - 3 3 - 4 4 - 5 5 - Gradient Stops Editor - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. - Zoom Vergrößern - Reset Zoom Vergrößerung zurücksetzen - Position - Hue Farbton - H H - Saturation Sättigung - S S - Sat Sättigung - Value Wert - V V - Val Wert - Alpha Alpha - A A - Type Typ - Spread Ausbreitung - Color Farbe - Current stop's color Farbe des Bezugspunkts - Show HSV specification HSV-Spezifikation anzeigen - HSV HSV - Show RGB specification RGB-Spezifikation anzeigen - RGB RGB - Current stop's position Position des Bezugspunkts - % % - Zoom In Vergrößern - Zoom Out Verkleinern - Toggle details extension Weitere Optionen einblenden - > > - Linear Type Typ linear - ... ... - Radial Type Typ radial - Conical Type Typ konisch - Pad Spread Auffüllen - Repeat Spread Wiederholen - Reflect Spread Spiegeln - Start X Anfangswert X - Start Y Anfangswert Y - Final X Endwert X - Final Y Endwert Y - - Central X Mittelpunkt X - - Central Y Mittelpunkt Y - Focal X Fokus X - Focal Y Fokus Y - Radius Radius - Angle Winkel - Linear Linear - Radial Radial - Conical Konisch - Pad Auffüllen - Repeat Wiederholen - Reflect Spiegeln @@ -17011,7 +13795,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QtGradientDialog - Edit Gradient Gradienten bearbeiten @@ -17019,304 +13802,242 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QtGradientEditor - Form Form - Gradient Editor Gradienten bearbeiten - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. Dieser Bereich zeigt eine Vorschau des in Bearbeitung befindlichen Gradienten. Hier können Gradienttyp-spezifische Parameter, wie Start- und Endpunkt, Radius etc. per Drag & Drop bearbeitet werden. - 1 1 - 2 2 - 3 3 - 4 4 - 5 5 - Gradient Stops Editor Bezugspunkte - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. Diese Fläche dient zum Bearbeiten der Bezugspunkte. Doppelklicken Sie auf einen Bezugspunkt, um ihn zu duplizieren. Doppelklicken Sie auf die Fläche, um einen neuen Bezugspunkt zu erzeugen. Benutzen Sie Drag & Drop um einen Punkt zu verschieben. Die rechte Maustaste aktiviert ein Menü mit weiteren Optionen. - Zoom Vergrößern - Reset Zoom Vergrößerung zurücksetzen - Position Position - Hue Farbton - H H - Saturation Sättigung - S S - Sat Sättigung - Value Wert - V V - Val Wert - Alpha Alpha - A A - Type Typ - Spread Ausbreitung - Color Farbe - Current stop's color Farbe des Bezugspunkts - Show HSV specification HSV-Spezifikation anzeigen - HSV HSV - Show RGB specification RGB-Spezifikation anzeigen - RGB RGB - Current stop's position Position des Bezugspunkts - % % - Zoom In Vergrößern - Zoom Out Verkleinern - Toggle details extension Weiter Optionen einblenden - > > - Linear Type Typ linear - ... ... - Radial Type Typ radial - Conical Type Typ konisch - Pad Spread Auffüllen - Repeat Spread Wiederholen - Reflect Spread Spiegeln - Start X Anfangswert X - Start Y Anfangswert Y - Final X Endwert X - Final Y Endwert Y - - Central X Mittelpunkt X - - Central Y Mittelpunkt Y - Focal X Fokus X - Focal Y Fokus Y - Radius Radius - Angle Winkel - Linear Linear - Radial Radial - Conical Konisch - Pad Auffüllen - Repeat Wiederholen - Reflect Spiegeln @@ -17324,46 +14045,34 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QtGradientView - Gradient View Gradientenanzeige - - New... Neu... - - Edit... Ändern... - - Rename Umbenennen - - Remove Löschen - Grad Grad - Remove Gradient Gradient löschen - Are you sure you want to remove the selected gradient? Möchten Sie den ausgewählten Gradienten löschen? @@ -17371,8 +14080,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QtGradientViewDialog - - Select Gradient Gradienten auswählen @@ -17380,100 +14087,73 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::Internal::SettingsPage - Form Formular - Snapping Raster - Item spacing Abstand - Snap margin Rand - Qt Quick Designer Qt-Quick-Designer - - - Text Editor Helper - Texteditor-Unterstützung - - - - enable - Aktivieren - Qt4ProjectManager::Internal::TestWizardPage - WizardPage WizardPage - Class name: Klassenname: - Type: Typ - Test Test - Benchmark Benchmark - File: Datei: - Generate initialization and cleanup code Code für Initialisierung und Bereinigung generieren - Test slot: Test slot: - Requires QApplication Erfordert QApplication - Use a test data set Testdatensatz anlegen - Specify basic information about the test class for which you want to generate skeleton source code file. Geben Sie die grundlegenden Parameter der Testklasse an, für die eine Quelldatei generiert wird. - Test Class Information Parameter der Testklasse @@ -17481,12 +14161,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Utils::FilterLineEdit - Filter Filter - Clear text Text löschen @@ -17494,7 +14172,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. 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>Ordner 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> @@ -17502,22 +14179,18 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. CMakeProjectManager::Internal::CMakeRunConfiguration - Clean Environment Umgebung löschen - System Environment Systemumgebung - Build Environment Build-Umgebung - (disabled) (deaktiviert) @@ -17525,8 +14198,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. CMakeProjectManager::Internal::CMakeTarget - - Desktop CMake Default target display name Desktop @@ -17535,7 +14206,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. CMakeProjectManager::Internal::MakeStep - Make CMakeProjectManager::MakeStep display name. Make @@ -17544,7 +14214,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. CMakeProjectManager::Internal::MakeStepFactory - Make Display name for CMakeProjectManager::MakeStep id. Make @@ -17553,12 +14222,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Core - Qt Qt - Environment Umgebung @@ -17566,7 +14233,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. CodePaster - Code Pasting Code Pasting @@ -17574,132 +14240,106 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. 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 Command Log Editor Git Kommando-Log-Editor - Git File Log Editor Git Datei-Log-Editor - Git Annotation Editor Git Annotations-Editor - Git Diff Editor Git Diff-Editor - Git Submit Editor Git Submit-Editor - Mercurial Command Log Editor Mercurial Kommando-Log-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 CommandLog Editor Perforce Kommando-Log-Editor - Perforce Log Editor Perforce Datei-Log-Editor - Perforce Diff Editor Perforce Diff-Editor - Perforce Annotation Editor Perforce Annotations-Editor - Subversion Editor Subversion-Editor - Subversion Commit Editor Subversion Commit-Editor - Subversion Command Log Editor Subversion Command-Log-Editor - Subversion File Log Editor Subversion Datei-Log-Editor - Subversion Annotation Editor Subversion Annotations-Editor - Subversion Diff Editor Subversion Diff-Editor @@ -17707,7 +14347,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. CVS::Internal::CVSEditor - Annotate revision "%1" Annotation für Revision "%1" @@ -17715,7 +14354,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Debugger::Internal::CdbOptionsPage - Cdb Cdb @@ -17723,17 +14361,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. CdbSymbolGroupContext - <Unknown Type> <Unbekannter Typ> - <Unknown Value> <Unbekannter Wert> - <Unknown> <Unbekannt> @@ -17741,12 +14376,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Debugger::Cdb - Unable to load the debugger engine library '%1': %2 Die Debugger-Bibliothek '%1' konnte nicht geladen werden: %2 - Unable to resolve '%1' in the debugger engine library '%2' '%1' konnte in der Debugger-Bibliothek '%2' nicht gefunden werden @@ -17754,17 +14387,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. CdbCore::CoreEngine - Unable to set the image path to %1: %2 Der Suchpfad für ausführbare Dateien konnte nicht auf %1 gesetzt werden: %2 - Unable to create a process '%1': %2 Es konnte kein Prozess mit '%1' gestartet werden: %2 - Attaching to a process failed for process id %1: %2 Der Debugger konnte sich nicht an den Prozess %1 anhängen: %2 @@ -17772,44 +14402,34 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Debugger::Internal::SnapshotHandler - - Function: Funktion: - - File: Datei: - Date: Datum: - ... ... - <More> <Mehr> - Function Funktion - Date Datum - Location Pfad @@ -17817,17 +14437,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Debugger::Internal::SnapshotWindow - Snapshots Snapshots - Adjust Column Widths to Contents Spaltenbreite an Inhalt anpassen - Always Adjust Column Widths to Contents Spaltenbreite immer an Inhalt anpassen @@ -17835,28 +14452,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. FakeVim::Internal::FakeVimExCommandsPage - - Ex Command Mapping Zuordnung von Kommandos - FakeVim FakeVim - Ex Trigger Expression Kommando - Regular expression: Regulärer Ausdruck: - Ex Command Kommando @@ -17864,23 +14475,13 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. GenericProjectManager::Internal::GenericMakeStep - Make Make - - GitClient - - - Unable to determine the repository for %1. - Das Repository von %1 konnte nicht bestimmt werden. - - Git::Internal::GitEditor - Blame %1 Blame für %1 @@ -17888,7 +14489,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Help - Help Hilfe @@ -17896,12 +14496,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::CloneWizard - Clones a Mercurial repository and tries to load the contained project. Erstellt einen Clone eines Mercurial-Repositories und versucht, das darin enthaltene Projekt zu laden. - Mercurial Clone Mercurial Clone @@ -17909,17 +14507,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::CloneWizardPage - Location Pfad - Specify repository URL, checkout directory and path. Geben Sie Repository-URL, Ordner und Pfad an. - Clone URL: Clone-URL: @@ -17927,7 +14522,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::CommitEditor - Commit Editor Commit-Editor @@ -17935,43 +14529,34 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::MercurialClient - 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 Annotate %1 Hg Annotate %1 - Hg diff %1 Hg diff %1 - - Hg log %1 Hg log %1 - Hg incoming %1 Hg eingehend %1 - Hg outgoing %1 Hg ausgehend %1 - Working... Warte... @@ -17979,7 +14564,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::MercurialControl - Mercurial Mercurial @@ -17987,7 +14571,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::MercurialEditor - Annotate %1 Annotation für %1 @@ -17995,19 +14578,16 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::MercurialJobRunner - Executing: %1 %2 Kommando: %1 %2 - Unable to start mercurial process '%1': %2 Der Mercurial-Prozess '%1' konnte nicht gestartet werden: %2 - Timed out after %1s waiting for mercurial process to finish. Überschreitung des Zeitlimits von %1s beim Warten auf Beendigung des Mercurial-Prozesses. @@ -18015,237 +14595,190 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::MercurialPlugin - Mercurial Mercurial - 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" - Alt+H,Alt+D Alt+H,Alt+D - Log Current File Filelog für Datei - Log "%1" Log für "%1" - Alt+H,Alt+L Alt+H,Alt+L - Status Current File Status der Datei - Status "%1" Status von "%1" - Alt+H,Alt+S Alt+H,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... Abgeben... - Alt+H,Alt+C Alt+H,Alt+C - Create Repository... Repository erzeugen... - Pull Source Quelle - Push Destination Ziel - Update Aktualisieren - Incoming Source Quelle - Commit Abgeben - Diff Selected Files Diff für Auswahl - &Undo &Rückgängig - &Redo &Wiederholen - There are no changes to commit. Es sind keine ausstehenden Änderungen vorhanden. - Unable to generate a temporary file for the commit editor. Es konnte keine temporäre Datei für die Abgabe angelegt werden. - Unable to create an editor for the commit. Es konnte kein Editor für die Abgabe angelegt werden. - Unable to create a commit editor. Es konnte kein Editor für die Abgabe angelegt werden. - Commit changes for "%1". Änderungen in "%1" abgeben. - Close commit editor Abgabe schließen - Do you want to commit the changes? Möchten Sie die Änderungen abgeben? - Message check failed. Do you want to proceed? Die Überprüfung der Beschreibung schlug fehl. Möchten Sie die Dateien trotzdem abgeben? @@ -18253,7 +14786,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Mercurial::Internal::OptionsPageWidget - Mercurial Command Ausführbare Datei @@ -18261,43 +14793,35 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Perforce::Internal::PerforceChecker - No executable specified Es wurde keine ausführbare Datei angegeben - "%1" timed out after %2ms. Zeitüberschreitung bei der Ausführung von "%1"(%2ms). - 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". @@ -18305,7 +14829,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Perforce::Internal::PerforceEditor - Annotate change list "%1" Annotation der Change-Liste "%1" @@ -18313,12 +14836,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::BaseProjectWizardDialog - Location Pfad - untitled File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks. untitled @@ -18327,7 +14848,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::Internal::DependenciesModel - <No other projects in this session> <Es existieren keine anderen Projekte in der Sitzung> @@ -18335,67 +14855,54 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::Internal::FolderNavigationWidget - Open Öffnen - Open parent folder Öffne beinhaltenden Ordner - Open "%1" "%1" öffnen - Open with Öffnen mit - Choose folder... Ordner auswählen... - Choose folder Ordner auswählen - Show in Explorer... In Explorer anzeigen... - Show in Finder... In Finder anzeigen... - Show containing folder... Beinhaltenden Ordner anzeigen... - Open Command Prompt here... Kommandoprompt öffnen... - Open Terminal here... Terminalfenster hier öffnen... - Launching a file browser failed Das Starten des Datei-Browsers schlug fehl - Unable to start the file manager: %1 @@ -18408,7 +14915,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. - '%1' returned the following error: %2 @@ -18417,17 +14923,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. - Settings... Einstellungen... - 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. @@ -18435,22 +14938,18 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::Internal::MiniTargetWidget - Select active build configuration Build-Konfiguration wählen - Select active run configuration Ausführungskonfiguration wählen - Build: Erstellung: - Run: Ausführung: @@ -18458,42 +14957,34 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::Internal::MiniProjectTargetSelector - Project Projekt - Select active project Projekt auswählen - Build: Erstellung: - Run: Ausführung: - <html><nobr><b>Project:</b> %1<br/>%2%3<b>Run:</b> %4%5</html> <html><nobr><b>Projekt:</b> %1<br/>%2%3<b>Ausführung:</b> %4%5</html> - <b>Target:</b> %1<br/> <b>Ziel:</b> %1<br/> - <b>Build:</b> %2<br/> <b>Erstellung:</b> %1<br/> - <br/>%1 <br/>%1 @@ -18501,7 +14992,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::ProjectConfiguration - Clone of %1 Kopie von %1 @@ -18509,12 +14999,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer - Projects Projekte - Other Project Anderes Projekt @@ -18522,17 +15010,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::Internal::TargetSettingsPanelWidget - No target defined. Es ist kein Ziel festgelegt. - Qt Creator Qt Creator - Do you really want to remove the "%1" target? Möchten Sie das Ziel "%1" entfernen? @@ -18541,28 +15026,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. ProjectExplorer::TaskWindow - - Build Issues Build-Probleme - &Copy &Kopieren - &Annotate &Annotation - Show Warnings Warnungen anzeigen - Filter by categories Nach Kategorie filtern @@ -18570,7 +15049,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. GenericProjectManager::GenericTarget - Desktop Generic desktop target display name Desktop @@ -18579,62 +15057,49 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::Qt4Target - - Desktop Qt4 Desktop target display name Desktop - - Symbian Emulator Qt4 Symbian Emulator target display name Symbian-Emulator - - Symbian Device Qt4 Symbian Device target display name Symbian-Gerät - Maemo Emulator Qt4 Maemo Emulator target display name Maemo-Emulator - Maemo Device Qt4 Maemo Device target display name Maemo-Gerät - Maemo Qt4 Maemo target display name Maemo - Qt Simulator Qt4 Simulator target display name Qt Simulator - <b>Device:</b> Not connected <b>Gerät:</b> Nicht angeschlossen - <b>Device:</b> %1 <b>Gerät:</b> %1 - <b>Device:</b> %1, %2 <b>Gerät:</b> %1, %2 @@ -18642,7 +15107,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlProjectManager::QmlTarget - QML Viewer QML Viewer target display name QML-Betrachter @@ -18651,22 +15115,18 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::DesignDocumentController - -New Form- -Neues Formular- - Cannot save to file "%1": permission denied. Die Datei "%1" konnte wegen nicht ausreichender Zugriffsrechte nicht geschrieben werden. - Parent folder "%1" for file "%2" does not exist. Das übergeordnete Verzeichnis "%1" der Datei %2" existiert nicht. - Cannot write file: "%1". Die Datei "%1" kann nicht geschrieben werden. @@ -18674,7 +15134,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::NavigatorTreeModel - Invalid Id Ungültige Id @@ -18682,7 +15141,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::NavigatorWidget - Navigator Title of navigator view Navigator @@ -18691,27 +15149,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. WidgetPluginManager - Failed to create instance. Es konnte keine Instanz erzeugt werden. - Not a QmlDesigner plugin. Kein QmlDesigner-Plugin. - 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 QmlDesigner plugin. Die Datei '%1' ist kein QmlDesigner-Plugin. @@ -18719,7 +15172,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::AllPropertiesBox - Properties Title of properties view. Eigenschaften @@ -18728,73 +15180,58 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. qdesigner_internal::QtGradientStopsController - H H - S S - V V - - Hue Farbton - Sat Sättigung - Val Wert - Saturation Sättigung - Value Wert - R R - G G - B B - Red Rot - Green Grün - Blue Blau @@ -18802,37 +15239,30 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QtGradientStopsWidget - New Stop Neuer Bezugspunkt - Delete Löschen - Flip All Alles umkehren - Select All Alles auswählen - Zoom In Vergrößern - Zoom Out Verkleinern - Reset Zoom Vergrößerung zurücksetzen @@ -18840,12 +15270,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::Internal::StatesEditorWidgetPrivate - base state base state - State%1 Default name for newly created states State%1 @@ -18854,7 +15282,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::StatesEditorWidget - States Title of Editor widget Status @@ -18863,27 +15290,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::RewriterView - Error parsing Fehler beim Parsen - Internal error Interner Fehler - "%1" "%1" - line %1 Zeile %1 - column %1 Spalte %1 @@ -18891,17 +15313,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::Internal::DocumentWarningWidget - <a href="goToError">Go to error</a> <a href="goToError">Gehe zu Fehler</a> - %3 (%1:%2) %3 (%1:%2) - Internal error (%1) Interner Fehler (%1) @@ -18909,97 +15328,78 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlDesigner::Internal::DesignModeWidget - &Undo &Rückgängig - &Redo &Wiederholen - Delete Löschen - Delete "%1" "%1" löschen - Cu&t &Ausschneiden - Cut "%1" - &Copy &Kopieren - Copy "%1" "%1" Kopieren - &Paste &Einfügen - Paste "%1" "%1" einfügen - Select &All Alles Aus&wählen - Select All "%1" Alles auswählen "%1" - Toggle Full Screen Vollbild umschalten - &Restore Default View &Vorgabe wiederherstellen - Toggle &Left Sidebar &Linke Seitenleiste umschalten - Toggle &Right Sidebar &Rechte Seitenleiste umschalten - Projects Projekte - File System Dateisystem - Open Documents Offene Dokumente @@ -19007,27 +15407,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlJSEditor::Internal::QmlJSTextEditor - <Select Symbol> <Symbol auswählen> - Rename... Umbenennen... - New id: Neue Id: - Unused variable Unbenutzte Variable - Rename id '%1'... Id '%1' Umbenennen @@ -19035,27 +15430,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlJSEditor::Internal::QmlJSEditorPlugin - Creates a Qt QML file. Erstellt eine Qt-QML-Datei. - Qt QML File Qt QML-Datei - Qt Quick Qt Quick - Ctrl+Alt+R Ctrl+Alt+R - Follow Symbol Under Cursor Symbol unter Einfügemarke verfolgen @@ -19063,12 +15453,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlProjectManager::Internal::QmlRunControl - Starting %1 %2 Starte %1 %2 - %1 exited with code %2 %1 beendet, Rückgabewert %2 @@ -19076,7 +15464,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlProjectManager::Internal::QmlRunControlFactory - Run Ausführen @@ -19084,7 +15471,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlProjectManager - Qt Quick Project Qt-Quick-Projekt @@ -19092,7 +15478,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlProjectManager::Internal::Manager - Failed opening project '%1': Project already open Das Projekt %1 konnte nicht geöffnet werden da es bereits geladen ist @@ -19100,7 +15485,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::MaemoRunConfiguration - New Maemo Run Configuration Neue Maemo-Ausführungskonfiguration @@ -19108,7 +15492,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::MaemoRunConfigurationFactory - New Maemo Run Configuration Neue Maemo-Ausführungskonfiguration @@ -19116,7 +15499,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::MaemoRunControlFactory - Run on device Auf Gerät ausführen @@ -19124,32 +15506,26 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::MaemoRunConfigurationWidget - Run configuration name: Name der Ausführungskonfiguration: - <a href="%1">Manage device configurations</a> <a href="%1">Gerätekonfigurationen verwalten</a> - <a href="%1">Set Debugger</a> <a href="%1">Debugger einstellen</a> - Device configuration: Geräte-Konfiguration: - Executable: Ausführbare Datei: - Arguments: Argumente: @@ -19157,77 +15533,62 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::AbstractMaemoRunControl - Files to deploy: %1. Dateien für Deployment: %1: - Deploying Deployment - No device configuration set for run configuration. Für Ausführungskonfiguration ist keine Gerätekonfiguration eingestellt. - Cleaning up remote leftovers first ... Lösche übriggebliebene Dateien vorangegangener Ausführungen... - Initial cleanup canceled by user. Löschen durch Nutzer abgebrochen. - Error running initial cleanup: %1. Fehler beim Löschen: %1. - Initial cleanup done. Löschen beendet. - Starting remote application. Starte Anwendung. - Deployment canceled by user. Deployment durch Nutzer abgebrochen. - Deployment finished. Deployment beendet. - Remote execution canceled due to user request. Entfernte Ausführung durch Nutzeranforderung abgebrochen. - Error running remote process: %1 Fehler bei Ausführung des Prozesses auf dem Gerät: %1 - Finished running remote process. Prozess auf Gerät beendet. - Remote Execution Failure Fehler bei Ausführung auf dem Gerät - Deployment failed: %1 Deployment fehlgeschlagen: %1 @@ -19235,54 +15596,43 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::MaemoSettingsWidget - Public Key Files(*.pub);;All Files (*) Öffentliche Schlüssel (*.pub);;Alle Dateien (*) - Could not read public key file '%1'. Die öffentliche Schlüsseldatei '%1' konnte nicht gelesen werden. - Key deployment failed: %1 Das Versenden des Schlüssels schlug fehl: %1 - Deploy Public Key ... Öffentlichen Schlüssel senden... - - Deployment Failed Deployment fehlgeschlagen - New Device Configuration %1 Standard Configuration name with number New Device Configuration %1 - Choose Public Key File Datei mit öffentlichem Schlüssel - Stop Deploying Deployement beenden - Key was successfully deployed. Der Schlüssel wurde erfolgreich versandt. - Deployment Succeeded Deployment beendet @@ -19290,27 +15640,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::Qt4BuildConfigurationFactory - Using Qt Version "%1" Verwende Qt-Version "%1" - New configuration Neue Konfiguration - New Configuration Name: Name der neuen Konfiguration: - %1 Debug %1 Debug - %1 Release %1 Release @@ -19318,17 +15663,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager - Qt4 Qt4 - Qt Versions Qt Versionen - Qt C++ Project Qt-C++-Projekt @@ -19336,27 +15678,22 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QtVersion - No qmake path set Es ist keine qmake-Pfad gesetzt - Qt version has no name Die Qt-Version hat keinen Namen - 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 Qt Version has no toolchain. Dieser Qt-Version ist keine Toolchain zugeordnet. @@ -19364,12 +15701,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::TestWizard - Qt Unit Test Qt-Unit-Test - 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. Erstellt einen auf QTestLib basierenden Unit-Test für eine Funktion oder eine Klasse. Unit-Tests dienen zur Überprüfung der Verwendbarkeit des Codes und der Feststellung von Regressionen. @@ -19377,12 +15712,10 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Qt4ProjectManager::Internal::TestWizardDialog - This wizard generates a Qt unit test consisting of a single source file with a test class. Dieser Wizard erstellt einen Qt-Unit-Test aus einer einzelnen Quelldatei mit einer Testklasse. - Details Details @@ -19390,7 +15723,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. Subversion::Internal::SubversionEditor - Annotate revision "%1" Annotation für Revision "%1" @@ -19398,7 +15730,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. TextEditor - Text Editor Text Editor @@ -19406,47 +15737,38 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. VCSBase::VCSBasePlugin - Version Control Versionskontrolle - The file '%1' could not be deleted. Die Datei %1 konnte nicht gelöscht werden. - Choose Repository Directory Ordner für Repository wählen - The directory '%1' is already managed by a version control system (%2). Would you like to specify another directory? Der Ordner '%1' ist bereits unter Verwaltung eines Versionskontrollsystems (%2). Möchten Sie einen anderen Ordner angeben? - Repository already under version control Das Repository wird bereits von einem Versionskontrollsystem verwaltet - Repository created Repository erstellt - A version control repository has been created in %1. Ein Repository für Versionskontrolle wurde im Ordner %1 erstellt. - Repository creation failed Die Erstellung des Repositories schlug fehl - A version control repository could not be created in %1. Im Ordner %1 konnte kein Repository für die Versionskontrolle erstellt werden. @@ -19454,17 +15776,14 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. trk::Launcher - Cannot open remote file '%1': %2 Die Datei '%1' auf dem Gerät konnte nicht geöffnet werden: %2 - Cannot open '%1': %2 Die Datei '%1' kann nicht geöffnet werden: %2 - Unable to acquire a device for port '%1'. It appears to be in use. Es kann nicht auf das Gerät "%1" zugegriffen werden. Offenbar ist es bereits in Benutzung. @@ -19472,7 +15791,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. AboutDialog - About Bauhaus AboutDialog Über Bauhaus @@ -19481,78 +15799,62 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. QmlJS::Check - '%1' is not a valid property name ' %1' ist kein eindeutiger Name für Eigenschaften - unknown type unbekannter Typ - unknown value for enum Unbekannter Wert für Aufzählung - '%1' does not have members '%1' hat keine MItglieder - '%1' is not a member of '%2' '%1' gehört nicht zu '%2' - value might be 'undefined' Wert kann 'undefined' sein - enum value is not a string or number Wert der Aufzählung ist weder Zeichenkette noch Zahl - numerical value expected numerischer Wert erwartet - boolean value expected boolescher Wert erwartet - string value expected Zeichenkette erwartet - not a valid color keine gültige Farbe - expected anchor line Ankerzeile erwartet - - expected id Id erwartet - using string literals for ids is discouraged Von der Verwendung von Zeichenketten-Literalen als Ids wird abgeraten - ids must be lower case Ids müssen mit einem Kleinbuchstaben beginnen @@ -19560,7 +15862,6 @@ Sie können die Änderungen in einem Stash ablegen oder rücksetzen. BINEditor::BinEditor - Decimal unsigned value (little endian): %1 Decimal unsigned value (big endian): %2 Decimal signed value (little endian): %3 @@ -19571,42 +15872,34 @@ Dezimaler, vorzeichenbehafteter Wert (Little Endian): %3 Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 - Copying Failed Das Kopieren schlug fehl - 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 - Jump to Address in This Window Gehe zu Adresse in diesem Fenster - Jump to Address in New Window Gehe zu Adresse in neuem Fenster - 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 @@ -19614,7 +15907,6 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 BINEditor::Internal::ImageViewerFactory - Image Viewer Bildbetrachter @@ -19622,7 +15914,6 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 Core::Internal::SystemEditor - Could not open url %1. URL %1 konnte nicht geöffnet werden. @@ -19630,17 +15921,14 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 Debugger::DebuggerUISwitcher - &Languages &Sprachen - Alt+L Alt+L - Language Programmiersprache @@ -19648,7 +15936,6 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 BuildSettingsPanelFactory - Build Settings Build-Einstellungen @@ -19656,7 +15943,6 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 BuildSettingsPanel - Build Settings Build-Einstellungen @@ -19664,7 +15950,6 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 DependenciesPanel - Dependencies Abhängigkeiten @@ -19672,7 +15957,6 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 DependenciesPanelFactory - Dependencies Abhängigkeiten @@ -19680,7 +15964,6 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 EditorSettingsPanelFactory - Editor Settings Editoreinstellungen @@ -19688,7 +15971,6 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 EditorSettingsPanel - Editor Settings Editoreinstellungen @@ -19696,7 +15978,6 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 RunSettingsPanel - Run Settings Einstellungen zur Ausführung @@ -19704,22 +15985,18 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 QmlDesigner::XUIFileDialog - Open file Datei öffnen - Save file Datei speichern - Declarative UI files (*.qml) Declarative-UI-Dateien (*.qml) - All files (*) Alle Dateien (*) @@ -19727,12 +16004,10 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 Qml::InspectorOutputWidget - Output Ausgaben - Clear Löschen @@ -19740,32 +16015,26 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 Qml::QmlInspector - Failed to connect to debugger Keine Verbindung zum Debugger - Could not connect to debugger server. Es konnte keine Verbindung zum Debug-Server hergestellt werden. - Invalid project, debugging canceled. Ungültiges Projekt, Debuggen abgebrochen. - Cannot find project run configuration, debugging canceled. Es kann keine Ausführungskonfiguration gefunden werden, Debuggen wird abgebrochen. - [Inspector] set to connect to debug server %1:%2 [Inspektor] Verbinde zu Debug-Server %1:%2 - [Inspector] disconnected. @@ -19774,89 +16043,72 @@ Dezimaler, vorzeichenbehafteter Wert (Big Endian): %4 - [Inspector] resolving host... [Inspektor] Löse Hostnamen auf... - [Inspector] connecting to debug server... [Inspektor] Verbinde zu Debug-Server... - [Inspector] connected. [Inspektor] Verbunden. - [Inspector] closing... [Inspektor] Schließen... - [Inspector] error: (%1) %2 %1=error code, %2=error message [Inspektor] Fehler: (%1) %2 - Start Debugging C++ and QML Simultaneously... Debuggen von C++ und QML gleichzeitig starten... - No project was found. Es konnte kein Projekt gefunden werden. - - No run configurations were found for the project '%1'. Für das Projekt '%1' konnten keine Ausführungskonfigurationen gefunden werden. - No valid run configuration was found for the project %1. Only locally runnable configurations are supported. Please check your project settings. Es konnte keine gültige Ausführungskonfiguration für das Projekt '%1' gefunden werden. Es werden nur lokal ausführbare Konfigurationen unterstützt. - A valid run control was not registered in Qt Creator for this project run configuration. A valid run control was not registered in Qt Creator for this project run configuration. - Debugging failed: could not start C++ debugger. Fehlschlag beim Debuggen: Der C++-Debugger konnte nicht gestartet werden. - QML engine: QML-Engine: - Object Tree Objekthierarchie - Properties and Watchers Eigenschaften und überwachte Ausdrücke - Script Console Skript-Konsole - Output of the QML inspector, such as information on connecting to the server. Ausgaben des QML-Inspektors, wie zum Beispiel Information über die Verbindung zum Server. @@ -19864,7 +16116,6 @@ Please check your project settings. QmlJSEditor::Internal::ModelManager - Indexing Indizierung @@ -19872,7 +16123,6 @@ Please check your project settings. QmlProjectManager::QmlProject - Error while loading project file! Fehler beim Laden der Projektdatei! @@ -19880,12 +16130,10 @@ Please check your project settings. QmlProjectManager::Internal::QmlProjectApplicationWizardDialog - New QML Project Neues QML-Projekt - This wizard generates a QML application project. Dieser Wizard erstellt ein QML-Anwendungsprojekt. @@ -19893,35 +16141,30 @@ Please check your project settings. QmlProjectManager::Internal::QmlProjectApplicationWizard - - Qt QML Application - Qt-QML-Anwendung + QML Application + QML-Anwendung - - Creates a Qt QML application project with a single QML file containing the main view. + Creates a QML application project with a single QML file containing the main view. -QML application projects are executed through the QML runtime and do not need to be built. - Erstellt eine Qt-QML-Anwendung aus einer einzelnen QML-Datei, die die Hauptansicht enthält. +QML application projects are executed by the Qt QML Viewer and do not need to be built. + Erstellt eine QML-Anwendung aus einer einzelnen QML-Datei, die die Hauptansicht enthält. -QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und benötigen keine Compilierung. +QML-Anwendungen werden vom Qt QML-Betrachter direkt ausgeführt und benötigen keine Compilierung. - File generated by QtCreator qmlproject Template Comment added to generated .qmlproject file File generated by QtCreator - Include .qml, .js, and image files from current directory and subdirectories qmlproject Template Comment added to generated .qmlproject file Include .qml, .js, and image files from current directory and subdirectories - List of plugin directories passed to QML runtime qmlproject Template Comment added to generated .qmlproject file @@ -19931,27 +16174,22 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben QmlProjectManager::Internal::QmlProjectImportWizardDialog - - Import Existing Qt QML Directory - Importiere existierenden Qt-QML-Ordner + Import Existing QML Directory + Importiere existierenden QML-Ordner - Project Name and Location Name und Ordner des Projekts - Project name: Projektname: - Location: Pfad: - Location Pfad @@ -19959,31 +16197,26 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben QmlProjectManager::Internal::QmlProjectImportWizard - - Import Existing Qt QML Directory - Importiere existierenden Qt-QML-Ordner + Import Existing QML Directory + Importiere existierenden QML-Ordner - Creates a QML project from an existing directory of QML files. Erstellt ein QML-Projekt von einem Ordner, der QML-Dateien enthält. - File generated by QtCreator qmlproject Template Comment added to generated .qmlproject file File generated by QtCreator - Include .qml, .js, and image files from current directory and subdirectories qmlproject Template Comment added to generated .qmlproject file Include .qml, .js, and image files from current directory and subdirectories - List of plugin directories passed to QML runtime qmlproject Template Comment added to generated .qmlproject file @@ -19993,33 +16226,27 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben QmlProjectManager::QmlProjectRunConfiguration - QML Viewer QMLRunConfiguration display name. QML-Betrachter - QML Viewer QML-Betrachter - QML Viewer arguments: Kommandozeilenargumente des Betrachters: - Main QML File: QML-Hauptdatei: - Debugging Address: Adresse für Debuggen: - Debugging Port: Port für Debuggen: @@ -20027,7 +16254,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben QmlProjectManager::Internal::QmlProjectRunConfigurationFactory - Run QML Script QML-Skriptdatei ausführen @@ -20035,12 +16261,10 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qt4ProjectManager::Internal::Qt4TargetFactory - Debug Debug - Release Release @@ -20048,7 +16272,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben RunSettingsPanelFactory - Run Settings Einstellungen zur Ausführung @@ -20056,7 +16279,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben TargetSettingsPanelFactory - Targets Ziele @@ -20064,7 +16286,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben QmlDesigner::PluginManager - About plugins Über Plugins @@ -20072,37 +16293,30 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben QmlDesigner::Internal::BauhausPlugin - Switch Text/Design Text/Design umschalten - Save %1 As... Speichere '%1' unter... - &Save %1 &Speichere %1 - Revert %1 to Saved Stelle %1 wieder her - Close %1 Schließe %1 - Close All Except %1 Alle außer %1 schließen - Close Others Andere schließen @@ -20110,7 +16324,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Core::DesignMode - Design Design @@ -20118,52 +16331,42 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben CommandMappings - Command Mappings Zuordnung von Kommandos - Command Kommando - Label Beschreibung - Target Ziel - Defaults Vorgabe - Import... Importieren... - Export... Exportieren... - Target Identifier - Target: Ziel: - Reset Rücksetzen @@ -20171,7 +16374,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben MaemoConfigTestDialog - Device Configuration Test Test der Geräte-Konfiguration @@ -20179,122 +16381,98 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben MaemoSettingsWidget - Maemo Device Configurations Maemo-Geräte-Konfigurationen - Device type: Gerätetyp: - Authentication type: Art der Authentifizierung: - Password Passwort - Key Schlüssel - Password: Passwort: - Private key file: Private Schlüsseldatei: - Add Hinzufügen - Remove Entfernen - Test Testen - Configuration: Konfiguration: - Name Name - IP or host name of the device IP-Adresse oder Hostname des Geräts - Ports: Ports: - SSH: SSH: - Gdb server: Gdb-Server: - Generate SSH Key ... Erzeuge SSH-Schlüssel... - s s - Deploy Public Key ... Öffentlichen Schlüssel senden... - Remote device Gerät - Maemo emulator Maemo-Emulator - Host name: Hostname: - Connection timeout: Zeitlimit der Verbindung: - Username: Nutzername: @@ -20302,27 +16480,22 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qt4ProjectManager::Internal::S60CreatePackageStepWidget - Form Form - Self-signed certificate Selbstsigniertes Zertifikat - Custom certificate: Benutzerdefiniertes Zertifikat: - Choose certificate file (.cer) Geben Sie eine Datei mit einem Zertifikat (.cer) an - Key file: Datei mit Schlüssel: @@ -20330,47 +16503,38 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben 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 Repositories %1 traten Fehler auf: - Delete... Löschen... - Name Name - Repository: %1 Repository: %1 - %1 bytes, last modified %2 %1 bytes, zuletzt geändert %2 - Delete Löschen - Do you want to delete %n files? Möchten Sie eine Datei löschen? @@ -20378,12 +16542,10 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben - Cleaning %1 Bereinige %1 - Clean Repository Repository bereinigen @@ -20391,7 +16553,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben ExtensionSystem::PluginDetailsView - None Keine @@ -20399,14 +16560,10 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben ExtensionSystem::PluginView - - - Load on Startup Beim Start Laden - Utilities Hilfsmittel @@ -20414,27 +16571,22 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Utils::fileDeletedPrompt - File has been removed Die Datei wurde gelöscht - The file %1 has been removed outside Qt Creator. Do you want to save it under a different name, or close the editor? Die Datei %1 wurde außerhalb von Qt Creator gelöscht. Möchten Sie sie unter einem anderen Namen speichern oder den Editor schließen? - Close Schließen - Save as... Speichern als... - Save Speichern @@ -20442,12 +16594,10 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Core::CommandMappings - Command Kommando - Label Beschreibung @@ -20455,17 +16605,14 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Core::EditorToolBar - - Copy full path to clipboard + Copy Full Path to Clipboard Vollständigen Pfad in die Zwischenablage kopieren - Make writable Schreibbar machen - File is writable Die Datei ist schreibbar @@ -20473,7 +16620,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Git::Internal::RemoteBranchModel - (no branch) (kein Branch) @@ -20481,7 +16627,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Git::Internal::GitCommand - Error: Git timed out after %1s. Fehler: Zeitüberschreitung nach %1s. @@ -20489,12 +16634,10 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben ProjectExplorer::BuildConfiguration - System Environment Systemumgebung - Clean Environment Umgebung löschen @@ -20502,12 +16645,10 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben ProjectExplorer::BuildEnvironmentWidget - Clear system environment Systemumgebung löschen - Build Environment Build-Umgebung @@ -20515,7 +16656,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben ProjectExplorer::CustomProjectWizard - The project %1 could not be opened. Das Projekt %1 konnte nicht geöffnet werden. @@ -20523,7 +16663,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben ProjectExplorer::Internal::CustomWizardPage - Path: Pfad: @@ -20531,23 +16670,19 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben QmlDesigner::Internal::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 @@ -20555,7 +16690,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben QmlDesigner::Internal::SubComponentManagerPrivate - QML Components QML-Komponenten @@ -20563,7 +16697,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qml::Internal::QLineGraph - Frame rate Frame-Rate @@ -20571,7 +16704,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qml::Internal::GraphWindow - Total time elapsed (ms) Gesamtzeit (ms) @@ -20579,22 +16711,18 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qml::Internal::CanvasFrameRate - Resolution: Auflösung: - Clear Löschen - New Graph Neuer Graph - Enabled Aktiviert @@ -20602,40 +16730,33 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qml::Internal::ExpressionQueryWidget - Write and evaluate QtScript expressions. QtScript-Ausdrücke schreiben und auswerten. - Clear Output Ausgaben löschen - <Type expression to evaluate> <Geben Sie einen Ausdruck ein> - Script Console Skript-Konsole - Expression queries Abfrageausdrücke - Expression queries (using context for %1) Selected object Abfrageausdrücke (Unter Verwendung des Kontexts für %1) - <%n items> <Ein Element> @@ -20646,27 +16767,22 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qml::Internal::ObjectPropertiesView - Name Name - Value Wert - Type Typ - Show unwatchable properties Zeige Eigenschaften an, für die keine Überwachung möglich ist - <%n items> <Ein Element> @@ -20674,32 +16790,26 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben - &Watch expression &Ausdruck überwachen - &Remove watch Überwachten Ausdruck &löschen - Show &unwatchable properties Zeige Eigenschaften an, für die &keine Überwachung möglich ist - &Group by item type Nach Typ &gruppieren - Watch expression '%1' Ausdruck '%1' überwachen - Hide unwatchable properties Blende Eigenschaften aus, für die keine Überwachung möglich ist @@ -20707,27 +16817,22 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qml::Internal::ObjectTree - Add watch expression... Überwachten Ausdruck hinzufügen... - Show uninspectable items Elemente anzeigen, die nicht inspiziert werden können - Go to file Gehe zu Datei - Watch expression Überwachter Ausdruck - Expression: Ausdruck: @@ -20735,12 +16840,10 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qml::Internal::WatchTableModel - Name Name - Value Wert @@ -20748,7 +16851,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qml::Internal::WatchTableView - Stop watching Aus überwachten Ausdrücken entfernen @@ -20756,7 +16858,6 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben QmlManager - <Current File> <Aktuelle Datei> @@ -20764,74 +16865,62 @@ QML-Anwendungen werden durch die QML-Laufzeitumgebung direkt ausgeführt und ben Qt4ProjectManager::Internal::MaemoConfigTestDialog - Testing configuration... Test der Konfiguration... - Stop Test Test anhalten - Device configuration test failed: %1 Der Test der Geräte-Konfiguration schlug fehl: %1 - Did you start Qemu? Haben Sie Qemu gestartet? - Qt version mismatch! Expected Qt on device: 4.6.2 or later. Die Überprüfung der Qt-Version schlug fehl! Auf dem Gerät muss Qt-Version 4.6.2 oder neuer installiert sein. - Close Schließen - Device configuration test failed: Unexpected output: %1 Der Test der Geräte-Konfiguration schlug fehl (unerwartete Ausgaben): %1 - Hardware architecture: %1 Architektur der Hardware: %1 - Kernel version: %1 Kernel-Version: %1 - Device configuration successful. Geräte-Konfiguration erfolgreich getestet. - No Qt packages installed. Es sind keine Qt-Pakete installiert. - List of installed Qt packages: Liste der installierten Qt-Pakete: @@ -20839,7 +16928,6 @@ Haben Sie Qemu gestartet? Qt4ProjectManager::Internal::S60CreatePackageStep - Create SIS Package Create SIS package build step name SIS-Paketdatei erzeugen @@ -20848,7 +16936,6 @@ Haben Sie Qemu gestartet? Qt4ProjectManager::Internal::S60CreatePackageStepFactory - Create SIS Package SIS-Paketdatei erzeugen @@ -20856,17 +16943,14 @@ Haben Sie Qemu gestartet? Qt4ProjectManager::Internal::S60CreatePackageStepConfigWidget - self-signed Selbstsigniert - signed with certificate %1 and key file %2 signiert mit Zertifikat %1 und Schlüssel %2 - <b>Create SIS Package:</b> %1 <b>Erzeuge SIS-Paketdatei:</b> %1 @@ -20874,7 +16958,6 @@ Haben Sie Qemu gestartet? Qt4ProjectManager::Qt4Project - Evaluating Auswertung @@ -20882,27 +16965,22 @@ Haben Sie Qemu gestartet? QmlJS::Interpreter::QmlXmlReader - The file is not module file. Die Datei ist keine Moduldatei. - Unexpected element <%1> in <%2> Unerwartetes Element <%1> in <%2> - invalid value '%1' for attribute %2 in <%3> Ungültiger Wert '%1' des Attributs %2 in <%3> - <%1> has no valid %2 attribute <%1> hat kein gültiges Attribut %2 - %1: %2 %1: %2 @@ -20910,22 +16988,18 @@ Haben Sie Qemu gestartet? Find::FindPlugin - &Find/Replace &Suchen/Ersetzen - Advanced Find Erweiterte Suche - Open Advanced Find... Erweiterte Suche öffnen... - Ctrl+Shift+F Ctrl+Shift+F @@ -20933,22 +17007,18 @@ Haben Sie Qemu gestartet? QmlJS::Link - could not find file or directory Datei oder Ordner konnte nicht gefunden werden - expected two numbers separated by a dot es werden zwei durch Komma getrennte Zahlen erwartet - package import requires a version number Package-Import erfordert eine Versionsnummer - package not found Package nicht gefunden @@ -20956,7 +17026,6 @@ Haben Sie Qemu gestartet? CodePaster::PasteBinDotComSettings - Pastebin.com Pastebin.com @@ -20964,7 +17033,6 @@ Haben Sie Qemu gestartet? Qt4ProjectManager::Internal::MaemoSettingsPage - Maemo Device Configurations Maemo-Geräte-Konfigurationen @@ -20972,7 +17040,6 @@ Haben Sie Qemu gestartet? ExpressionEditor - Expression Ausdruck @@ -20980,12 +17047,10 @@ Haben Sie Qemu gestartet? ExtendedFunctionButton - Reset Rücksetzen - Set Expression Ausdruck setzen @@ -20993,23 +17058,18 @@ Haben Sie Qemu gestartet? FontGroupBox - - Font Zeichensatz - Size Größe - Font Style Stil - Style Stil @@ -21017,22 +17077,18 @@ Haben Sie Qemu gestartet? Geometry - Geometry Geometrie - Position Position - Size Größe - Lock aspect ratio Festes Seitenverhältnis @@ -21040,37 +17096,30 @@ Haben Sie Qemu gestartet? ImageSpecifics - Image Bild - Source Bildquelle - Fill Mode Füllmode - Aliasing Kantenglättung - Smooth Glatt - Source Size Größe der Bildquelle - Painted Size Größe @@ -21078,32 +17127,18 @@ Haben Sie Qemu gestartet? Layout - Layout Layout - Anchors Anker - - - - - - Target Ziel - - - - - - Margin Rand @@ -21111,27 +17146,22 @@ Haben Sie Qemu gestartet? RectangleColorGroupBox - Colors Farben - Stops Bezugspunkte - Gradient Stops Bezugspunkte des Gradienten - Rectangle Rechteck - Border Rahmen @@ -21139,17 +17169,14 @@ Haben Sie Qemu gestartet? RectangleSpecifics - Rectangle Rechteck - Radius Radius - Border Rahmen @@ -21157,27 +17184,22 @@ Haben Sie Qemu gestartet? StandardTextColorGroupBox - Color Farbe - Text Text - Style Stil - Selection Auswahl - Selected Ausgewählt @@ -21185,33 +17207,26 @@ Haben Sie Qemu gestartet? StandardTextGroupBox - - Text Text - Wrap Mode Umbruch - Aliasing Kantenglättung - Smooth Glatt - - Alignment Ausrichtung @@ -21219,27 +17234,22 @@ Haben Sie Qemu gestartet? Switches - special properties spezielle Eigenschaften - layout and geometry Layout und Geometrie - Geometry Geometrie - advanced properties weitere Eigenschaften - Advanced Erweitert @@ -21247,12 +17257,10 @@ Haben Sie Qemu gestartet? TextEditSpecifics - Text Edit Text bearbeiten - Format Format @@ -21260,52 +17268,42 @@ Haben Sie Qemu gestartet? TextInputGroupBox - Text Input Texteingabe - Input Mask Eingabemaske - Echo Mode Echo-Mode - Pass. Char Passwort-Zeichen - Password Character Passwort-Zeichen - Flags Flags - Read Only Schreibgeschützt - Cursor Visible Mauszeiger sichtbar - Focus On Press Fokussieren durch Betätigen - Auto Scroll Automatisch rollen @@ -21313,67 +17311,54 @@ Haben Sie Qemu gestartet? Transformation - Transformation Transformation - Origin Ursprung - Top Left Links oben - Top Oben - Top Right Unten rechts - Left Links - Center Mittig - Right Rechts - Bottom Left Unten links - Bottom Unten - Bottom Right Unten rechts - Scale Skalieren - Rotation Drehung @@ -21381,13 +17366,10 @@ Haben Sie Qemu gestartet? Type - - Type Typ - Id Id @@ -21395,23 +17377,18 @@ Haben Sie Qemu gestartet? Visibility - - Visibility Sichtbarkeit - Is visible sichtbar - Clip Beschneiden - Opacity Deckkraft @@ -21419,7 +17396,6 @@ Haben Sie Qemu gestartet? Utils::LinearProgressWidget - ... ... @@ -21427,12 +17403,10 @@ Haben Sie Qemu gestartet? CodePaster::PasteView - <Comment> <Kommentar> - Paste Einfügen @@ -21440,12 +17414,10 @@ Haben Sie Qemu gestartet? Designer::Internal::FormEditorFactory - This file can only be edited in <b>Design</b> mode. Datei kann nur im <b>Designmodus</b> bearbeitet werden. - Switch mode Modus umschalten @@ -21453,28 +17425,22 @@ Haben Sie Qemu gestartet? Help::Internal::HelpViewer - Open Link Verweis öffnen - - Open Link as New Page Verweis in neuer Seite öffnen - Copy Link Verweis kopieren - Copy Kopieren - Reload Neu laden @@ -21482,7 +17448,6 @@ Haben Sie Qemu gestartet? Help::Internal::OpenPagesModel - (Untitled) (Ohne Titel) @@ -21490,12 +17455,10 @@ Haben Sie Qemu gestartet? Help::Internal::OpenPagesWidget - Close %1 Schließe %1 - Close All Except %1 Alle außer %1 schließen @@ -21503,12 +17466,10 @@ Haben Sie Qemu gestartet? Qt4ProjectManager::Internal::MobileGuiAppWizard - Mobile Qt Application Mobile Qt-Anwendung - Creates a Qt application optimized for mobile devices with a Qt Designer-based main window. Preselects Qt for Simulator and mobile targets if available @@ -21520,78 +17481,64 @@ Wählt Qt-Versionen für Simulator und mobile Ziele aus, sofern sie verfügbar s Qt4ProjectManager::Internal::TargetSetupPage - Qt Creator can set up the following targets: Qt Creator kann die folgenden Ziele einrichten: - Qt Version Qt-Version - Status Status - Qt Creator can set up the following targets for project <b>%1</b>: %1: Project name Qt Creator kann für das Projekt <b>%1</b> die folgenden Ziele anlegen: - Choose a directory to scan for additional shadow builds Zusätzliche Shadow-Builds - No builds found Keine Builds gefunden - No builds for project file "%1" were found in the folder "%2". %1: pro-file, %2: directory that was checked. Im Ordner "%2" konnten keine Builds des Projekts "%1" gefunden werden. - <b>Error:</b> Severity is Task::Error <b>Fehler:</b> - <b>Warning:</b> Severity is Task::Warning <b>Warnung:</b> - Import Is this an import of an existing build or a new one? Import - New Is this an import of an existing build or a new one? Neu - Setup targets for your project Ziele des Projekts einrichten - Build Directory Build-Ordner - Import Existing Shadow Build... Importiere existierenden Shadow-Build... @@ -21599,48 +17546,38 @@ Wählt Qt-Versionen für Simulator und mobile Ziele aus, sofern sie verfügbar s QmlJSEditor::Internal::QmlJSEditorFactory - Qt Creator -> About Plugins... Qt Creator ->Plugins... - Help -> About Plugins... Hilfe -> Plugins... - Do you want to enable the experimental Qt Quick Designer? Möchten Sie den experimentellen Qt-Quick-Designer aktivieren? - - Enable Qt Quick Designer Qt-Quick-Designer aktivieren - Enable experimental Qt Quick Designer? Möchten Sie den experimentellen Qt-Quick-Designer aktivieren? - Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'. Möchten Sie den experimentellen Qt-Quick-Designer aktivieren? Dadurch bekommen Sie Zugriff auf die grafische Designfunktion, wenn Sie in den Designmodus schalten. Dies kann allerdings die Stabilität von Qt Creator beeinträchtigen. Um den Qt-Quick-Designer wieder zu deaktivieren, wählen Sie '%1' und deaktivieren 'QmlDesigner' in dem gezeigten Fenster. - Cancel Abbrechen - Please restart Qt Creator Bitte starten Sie Qt Creator neu - Please restart Qt Creator to make the change effective. Bitte starten Sie Qt Creator neu, damit die Änderungen wirksam werden. @@ -21648,7 +17585,6 @@ Wählt Qt-Versionen für Simulator und mobile Ziele aus, sofern sie verfügbar s Utils::FileWizardDialog - Location Pfad @@ -21656,7 +17592,6 @@ Wählt Qt-Versionen für Simulator und mobile Ziele aus, sofern sie verfügbar s Designer::Internal::FormFileWizardDialog - Location Pfad @@ -21664,22 +17599,39 @@ Wählt Qt-Versionen für Simulator und mobile Ziele aus, sofern sie verfügbar s ProjectExplorer::CustomWizard - Details Default short title for custom wizard page to be shown in the progress pane of the wizard. Details + + Creates a C++ plugin that makes it possible to offer extensions that can be loaded dynamically into applications using the QDeclarativeEngine class. + Erstellt ein C++-Plugin für Erweiterungen, die dynamisch von Anwendungen geladen werden können, die die Klasse QDeclarativeEngine verwenden. + + + Custom QML Extension Plugin + Plugin zur Erweiterung von QML + + + QML Extension Plugin + Plugin zur Erweiterung von QML + + + Custom QML Extension Plugin Parameters + QML Runtime Plug-in Parameters + Parameter des Plugins zur Erweiterung von QML + + + Example Object Class-name: + Klassenname des Beispiel-Objekts: + Qt4ProjectManager::Internal::BaseQt4ProjectWizardDialog - - Modules Module - Qt Versions Qt-Versionen @@ -21687,47 +17639,38 @@ Wählt Qt-Versionen für Simulator und mobile Ziele aus, sofern sie verfügbar s StartExternalQmlDialog - Debugging address: Adresse für Debuggen: - Debugging port: Port für Debuggen: - 127.0.0.1 127.0.0.1 - Project: Projekt: - <No project> <Kein Projekt> - To switch languages while debugging, go to Debug->Language menu. Das Menü Debuggen->Sprache gestattet das Wechseln der Sprache während des Debuggens. - Start Simultaneous QML and C++ Debugging Gleichzeitiger Start des Debuggens von QML und C++ - Viewer path: Pfad zu Betrachter: - Viewer arguments: Kommandozeilenargumente des Betrachters: @@ -21735,57 +17678,46 @@ Wählt Qt-Versionen für Simulator und mobile Ziele aus, sofern sie verfügbar s MaemoSshConfigDialog - SSH Key Configuration Konfiguration der SSH-Schlüssel - Options Einstellungen - Key size: Größe des Schlüssels: - Key algorithm: Algorithmus für Schlüssel: - RSA RSA - DSA DSA - Key Schlüssel - Generate SSH Key SSH-Schlüssel erzeugen - Close Schließen - Save Public Key... Öffentlichen Schlüssel speichern... - Save Private Key... Privaten Schlüssel speichern... @@ -21793,44 +17725,36 @@ Wählt Qt-Versionen für Simulator und mobile Ziele aus, sofern sie verfügbar s 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: - A file listing user names and email addresses in a 4-column mailmap format: name <email> alias <email> Eine Datei, die Nutzernamen und E-Mail-Adressen in einem vierspaltigen Format (mailmap) enthält: Namen <E-Mail> Alias <E-Mail? - 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: Nutzerfeld-Konfigurationsdatei: @@ -21838,37 +17762,30 @@ Namen <E-Mail> Alias <E-Mail? BorderImageSpecifics - Image Bild - Source Bildquelle - Source Size Größe der Bildquelle - Left Links - Right Rechts - Top Oben - Bottom Unten @@ -21876,28 +17793,22 @@ Namen <E-Mail> Alias <E-Mail? Extended - Effect Effekt - - Blur Radius: Unschärferadius: - Pixel Size: Pixel-Größe: - x Offset: x-Versatz: - y Offset: y-Versatz: @@ -21905,17 +17816,14 @@ Namen <E-Mail> Alias <E-Mail? Modifiers - Manipulation Manipulation - Rotation Drehung - z z @@ -21923,17 +17831,14 @@ Namen <E-Mail> Alias <E-Mail? WebViewSpecifics - WebView WebView - Preferred Width Bevorzugte Breite - Page Height Seitenhöhe @@ -21941,38 +17846,29 @@ Namen <E-Mail> Alias <E-Mail? CppEditor - C++ C++ - GdbChooserWidget + Debugger::Internal::GdbChooserWidget - Unable to run '%1': %2 '%1' kann nicht ausgeführt werden: %2 - - - Debugger::Internal::GdbChooserWidget - Binary Ausführbare Datei - Toolchains Toolchains - Duplicate binary Ausführbare Datei bereits vorhanden - The binary '%1' already exists. Die ausführbare Datei '%1' ist bereits vorhanden. @@ -21980,17 +17876,14 @@ Namen <E-Mail> Alias <E-Mail? Debugger::Internal::ToolChainSelectorWidget - Desktop/General Desktop/Allgemein - Symbian Symbian - Maemo Maemo @@ -21998,17 +17891,14 @@ Namen <E-Mail> Alias <E-Mail? Debugger::Internal::BinaryToolChainDialog - Select binary and toolchains Wählen Sie ausführbare Datei und Toolchain - Gdb binary Ausführbare Datei für Gdb - Path: Pfad: @@ -22016,13 +17906,11 @@ Namen <E-Mail> Alias <E-Mail? QApplication - EditorManager Next Open Document in History Nächstes Dokument im Verlauf - EditorManager Previous Open Document in History Vorangehendes Dokument im Verlauf @@ -22031,7 +17919,6 @@ Namen <E-Mail> Alias <E-Mail? QmlDesigner::ComponentView - whole document gesamtes Dokument @@ -22039,7 +17926,6 @@ Namen <E-Mail> Alias <E-Mail? FileWidget - Open File Datei öffnen @@ -22047,7 +17933,6 @@ Namen <E-Mail> Alias <E-Mail? QmlDesigner::Internal::ModelPrivate - invalid type ungültiger Typ @@ -22055,7 +17940,6 @@ Namen <E-Mail> Alias <E-Mail? Qt Quick - Qt Quick Qt Quick @@ -22063,7 +17947,6 @@ Namen <E-Mail> Alias <E-Mail? Qml::Internal::EngineComboBox - Engine %1 engine number Engine %1 @@ -22072,7 +17955,6 @@ Namen <E-Mail> Alias <E-Mail? Qml::Internal::StartExternalQmlDialog - <No project> <Kein Projekt> @@ -22080,7 +17962,6 @@ Namen <E-Mail> Alias <E-Mail? QmlProjectManager::Internal::QmlTaskManager - QML QML @@ -22088,95 +17969,77 @@ Namen <E-Mail> Alias <E-Mail? Qt4ProjectManager::Internal::MaemoPackageCreationStep - Creating package file ... Erzeuge Paketdatei... - Cannot open MADDE config file '%1'. Die MADDE-Konfigurationsdatei '%1' kann nicht geöffnet werden. - Packaging Error: Cannot open file '%1'. Fehler bei Paketerstellung: Die Datei '%1' kann nicht geöffnet werden. - Packaging Error: Cannot write file '%1'. Fehler bei Paketerstellung: Die Datei '%1' kann nicht geschrieben werden. - Packaging Error: Could not create directory '%1'. Fehler bei Paketerstellung: Der Ordner '%1' konnte nicht erstellt werden. - Packaging Error: Could not replace file '%1'. Fehler bei Paketerstellung: Die Datei '%1' konnte nicht ersetzt werden. - Packaging Error: Could not copy '%1' to '%2'. Fehler bei Paketerstellung: Die Datei '%1' konnte nicht nach '%2' kopiert werden. - Package created. Paketdatei erzeugt. - Package Creation: Running command '%1'. Paketerstellung: Führe Kommando '%1' aus. - Packaging failed. Die Paketerstellung schlug fehl. - Packaging error: Could not start command '%1'. Reason: %2 Fehler bei Paketerstellung: Das Kommando '%1' konnte nicht ausgeführt werden: %2 - Packaging Error: Command '%1' failed. Fehler bei Paketerstellung: Das Kommando '%1' schlug fehl. - Reason: %1 Ursache: %1 - - Output was: - Die Ausgabe war: + Exit code: %1 + Rückgabewert: %1 Qt4ProjectManager::Internal::MaemoPackageCreationWidget - <b>Create Package:</b> <b>Erzeuge Paketdatei:</b> - Choose a local file Lokale Datei - File already in package Die Datei ist bereits im Paket enthalten - You have already added this file. Diese Datei wurde bereits hinzugefügt. @@ -22184,22 +18047,18 @@ Namen <E-Mail> Alias <E-Mail? Qt4ProjectManager::Internal::MaemoSshConfigDialog - Save Public Key File Öffentlichen Schlüssel speichern - Save Private Key File Privaten Schlüssel speichern - Error writing file Fehler beim Schreiben der Datei - Could not write file '%1': %2 Die Datei '%1' konnte nicht geschrieben werden: @@ -22209,22 +18068,18 @@ Namen <E-Mail> Alias <E-Mail? Qt4ProjectManager::Internal::S60DevicesBaseWidget - Default Vorgabe - SDK Location SDK-Pfad - Qt Location Qt-Pfad - Choose Qt folder Qt-Ordner @@ -22232,7 +18087,6 @@ Namen <E-Mail> Alias <E-Mail? Qt4ProjectManager::Internal::S60DevicesModel - No Qt installed Qt ist nicht installiert @@ -22240,22 +18094,18 @@ Namen <E-Mail> Alias <E-Mail? Qt4ProjectManager::Internal::GnuPocS60DevicesWidget - Step 1 of 2: Choose GnuPoc folder Schritt 1 von 2: GnuPoc-Ordner wählen - Step 2 of 2: Choose Qt folder Schritt 2 von 2: Qt-Ordner wählen - Adding GnuPoc GnuPoc hinzufügen - GnuPoc and Qt folders must not be identical. GnuPoc-Ordner und Qt-Ordner müssen sich unterscheiden. @@ -22263,27 +18113,22 @@ Namen <E-Mail> Alias <E-Mail? CodePaster::FileShareProtocolSettingsWidget - Form Formular - &Path: &Pfad: - &Display: &Anzeige: - entries Einträge - 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. @@ -22291,47 +18136,38 @@ Namen <E-Mail> Alias <E-Mail? MaemoPackageCreationWidget - Add File to Package Hinzuzufügende Datei - Remove File from Package Datei aus Paket entfernen - Check this if you want the files below to be deployed directly. Startet das Deployment der Dateien unmittelbar. - Skip packaging step Paketerstellung überspringen - Version number: Versionsnummer: - Major: Major: - Minor: Minor: - Patch: Patch: - Files to deploy: Dateien für Deployment: @@ -22339,12 +18175,10 @@ Namen <E-Mail> Alias <E-Mail? Utils::FancyMainWindow - Locked Verankert - Reset to Default Layout Vorgabe wiederherstellen @@ -22352,12 +18186,10 @@ Namen <E-Mail> Alias <E-Mail? GenericSshConnection - Could not connect to host. Es konnte keine Verbindung zum Host hergestellt werden. - Error in cryptography backend: %1 Fehler im Kryptographie-Backend: %1 @@ -22365,7 +18197,6 @@ Namen <E-Mail> Alias <E-Mail? Core::InteractiveSshConnection - Error sending input Fehler beim Senden der Eingabedaten @@ -22373,48 +18204,38 @@ Namen <E-Mail> Alias <E-Mail? Core::SftpConnection - Error setting up SFTP subsystem Fehler beim Initialisieren des SFTP-Subsystems - - Could not open file '%1' Die Datei '%1' konnte nicht geöffnet werden - Could not uplodad file '%1' Die Datei '%1' konnte hochgeladen werden - Could not copy remote file '%1' to local file '%2' Die entfernte Datei '%1' konnte nicht zur lokalen Datei '%2' übertragen werden - Could not create remote directory Der entfernte Ordner konnte nicht erstellt werden - Could not remove remote directory Der entfernte Ordner konnte nicht entfernt werden - Could not get remote directory contents Der Inhalt des entfernten Ordners konnte nicht bestimmt werden - Could not remove remote file Die entfernte Datei konnte nicht gelöscht werden - Could not change remote working directory Es konnte nicht zum entfernten Arbeitsverzeichnis gewechselt werden @@ -22422,18 +18243,14 @@ Namen <E-Mail> Alias <E-Mail? SshKeyGenerator - Error creating temporary files. Es konnten keine temporäre Dateien erstellt werden. - Error generating keys: %1 Es konnten keine Schlüssel erstellt werden: %1 - - Error reading temporary files. Die temporäre Dateien konnten nicht gelesen werden. @@ -22441,32 +18258,26 @@ Namen <E-Mail> Alias <E-Mail? CodePaster::FileShareProtocol - 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. - Unable to open a file for writing in %1: %2 Im Ordner %1 konnte keine Datei zum Schreiben geöffnet werden: %2 - Pasted: %1 Ausschnitt: %1 @@ -22474,7 +18285,6 @@ Namen <E-Mail> Alias <E-Mail? CodePaster::FileShareProtocolSettingsPage - Fileshare Dateibasiert @@ -22482,12 +18292,10 @@ Namen <E-Mail> Alias <E-Mail? CodePaster::Protocol - %1 - Configuration Error %1 - Konfigurationsfehler - Settings... Einstellungen... @@ -22495,7 +18303,6 @@ Namen <E-Mail> Alias <E-Mail? ProjectExplorer::Internal::SessionNameInputDialog - Enter the name of the session: Geben Sie den Namen der Sitzung an: @@ -22503,12 +18310,10 @@ Namen <E-Mail> Alias <E-Mail? QmlJSEditor::Internal::QmlJSPreviewRunner - Failed to preview Qt Quick file Die Qt-Quick-Datei konnte nicht angezeigt werden - Could not preview Qt Quick (QML) file. Reason: %1 Die Qt-Quick-Datei (QML) konnte nicht angezeigt werden: @@ -22518,12 +18323,10 @@ Namen <E-Mail> Alias <E-Mail? Qt4ProjectManager::Internal::MaemoPackageContents - Local File Path Lokaler Pfad - Remote File Path Entfernter Pfad @@ -22531,42 +18334,34 @@ Namen <E-Mail> Alias <E-Mail? TextEditor::Internal::TextEditorPlugin - Creates a text file. The default file extension is <tt>.txt</tt>. You can specify a different extension as part of the filename. Erstellt eine Textdatei mit der Erweiterung <tt>.txt</tt>. Sie können eine andere Erweiterung als Teil des Dateinamens angeben. - Text File Textdatei - General Allgemein - Triggers a completion in this scope Beginnt eine Ergänzung in diesem Bereich - Ctrl+Space Ctrl+Space - Meta+Space Meta+Space - Triggers a quick fix in this scope Führt eine Schnellkorrektur im Bereich durch - Alt+Return Alt+Return @@ -22574,22 +18369,18 @@ Namen <E-Mail> Alias <E-Mail? ProjectExplorer::Internal::S60ProjectChecker - The Symbian SDK and the project sources must reside on the same drive. Das Symbian-SDK und das Projekt müssen sich auf demselben Laufwerk befinden. - The Symbian SDK was not found for Qt version %1. Es konnte kein Symbian-SDK für die Qt-Version %1 gefunden werden. - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. Das Plugin "Open C/C++" ist im Symbian SDK nicht installiert oder der Pfad des Symbian SDKs ist bei der Qt-Version %1 falsch konfiguriert. - The Symbian toolchain does not handle special characters in a project path well. Sonderzeichen in der Pfadangabe können bei der Symbian-Toolchain zu Problemen führen. @@ -22597,13 +18388,11 @@ Namen <E-Mail> Alias <E-Mail? Qt4ProjectManager::QtVersion - 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. @@ -22612,67 +18401,54 @@ Namen <E-Mail> Alias <E-Mail? Debugger::Internal::PdbEngine - Running requested... Fortsetzung angefordert... - Unable to start pdb '%1': %2 Der pdb-Debugger '%1' kann nicht ausgeführt werden: %2 - Adapter start failed Der Start des Adapters schlug fehl - '%1' contains no identifier '%1' enthält keinen Bezeichner - String literal %1 Zeichenketten-Literal %1 - Cowardly refusing to evaluate expression '%1' with potential side effects Werte Ausdruck '%1' mit potentiellen Seiteneffekten nicht aus - Pdb I/O Error Pdb Eingabe/Ausgabefehler - 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. - The Pdb process crashed some time after starting successfully. Der Pdb-Prozess ist einige Zeit nach dem Start abgestürzt. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. Zeitüberschreitung bei der letzten waitFor...()-Funktion. Der Status des QProcess ist unverändert, und waitFor...() kann noch einmal gerufen. - An error occurred when attempting to write to the Pdb process. For example, the process may not be running, or it may have closed its input channel. Ein Fehler trat beim Versuch des Schreibens zum Pdb-Prozess auf. Wahrscheinlich läuft der Prozess nicht, oder hat seinen Eingabekanal geschlossen. - An error occurred when attempting to read from the Pdb process. For example, the process may not be running. Ein Fehler trat beim Versuch des Lesens vom Pdb-Prozess auf. Wahrscheinlich läuft der Prozess nicht. - An unknown error in the Pdb process occurred. Im Pdb-Prozess trat ein unbekannter Fehler auf. @@ -22680,12 +18456,10 @@ Namen <E-Mail> Alias <E-Mail? ProjectExplorer::Internal::TargetSelector - Run Ausführung - Build Erstellung @@ -22693,7 +18467,6 @@ Namen <E-Mail> Alias <E-Mail? QmlDesigner::PropertyEditor - Invalid Id Ungültige Id @@ -22701,7 +18474,6 @@ Namen <E-Mail> Alias <E-Mail? emptyPane - none or multiple items selected keines oder mehrere Elemente ausgewählt @@ -22709,17 +18481,14 @@ Namen <E-Mail> Alias <E-Mail? QmlDesigner::FormEditorWidget - Snap to guides (E) An Hilfslinien ausrichten (E) - Show bounding rectangles (A) Rahmen anzeigen (A) - Only select items with content (S) Nur Elemente mit Inhalt auswählen (S) @@ -22727,19 +18496,16 @@ Namen <E-Mail> Alias <E-Mail? 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 @@ -22749,7 +18515,6 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. QmlDesigner::InvalidArgumentException - Failed to create item of type %1 Es konnte kein Element des Typs %1 erzeugt werden @@ -22757,7 +18522,6 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. QmlDesigner::QmlModelView - Invalid Id Ungültige Id @@ -22765,54 +18529,42 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. 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 - Enclose in QLatin1String(...) In QLatin1String(...) einschließen - Convert to Objective-C String Literal In Objective-C-Zeichenkettenliteral wandeln - Use Fast String Concatenation with % Effiziente Stringkonkatenation mittels Operator % verwenden @@ -22820,7 +18572,6 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. GenericProjectManager::Internal::Manager - Failed opening project '%1': Project already open Das Projekt %1 konnte nicht geöffnet werden da es bereits geladen ist @@ -22828,7 +18579,6 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. QmlProjectManager::Internal::QmlRunConfiguration - QML Viewer QML-Betrachter @@ -22836,37 +18586,30 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. ContextPaneTextWidget - Text Text - Style Stil - Normal - Outline Umriss - Raised Hervorgehoben - Sunken Abgesenkt - ... ... @@ -22874,7 +18617,6 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. Core::HelpManager - Unfiltered Ungefiltert @@ -22882,7 +18624,6 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. FakeVim::Internal::FakeVimHandler::Private - Not an editor command: %1 Kein Editor-Kommando: %1 @@ -22890,7 +18631,6 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. QmlDesigner::ContextPaneWidget - Disable permanently Permanent deaktivieren @@ -22898,33 +18638,30 @@ Ids müssen außerdem mit einem Kleinbuchstaben beginnen. Qt4ProjectManager::Internal::QemuRuntimeManager - - Start Maemo Emulator Maemo-Emulator starten - Qemu has been shut down, because you removed the corresponding Qt version. - + Qemu finished with error: Exit code was %1. + Qemu wurde mit einem Fehler beendet, Rückgabewert %1. + + Qemu failed to start: %1 Qemu konnte nicht gestartet werden: %1 - Qemu crashed Qemu ist abgestürzt - Qemu error Qemu-Fehler - Stop Maemo Emulator Maemo-Emulator stoppen -- cgit v1.2.1 From 55164561f02e4c7ce4289a400465efc4326fa0b0 Mon Sep 17 00:00:00 2001 From: Pavel Fric Date: Mon, 9 Aug 2010 11:25:16 +0200 Subject: Update of czech translation for Qt Creator. Merge-request: 162 Reviewed-by: Oswald Buddenhagen --- share/qtcreator/translations/qtcreator_cs.ts | 13702 ++++++++++++++++++------- 1 file changed, 9878 insertions(+), 3824 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_cs.ts b/share/qtcreator/translations/qtcreator_cs.ts index 3334197efa..a3918e3b8a 100644 --- a/share/qtcreator/translations/qtcreator_cs.ts +++ b/share/qtcreator/translations/qtcreator_cs.ts @@ -4,22 +4,18 @@ Application - Failed to load core: %1 Přídavný modul 'core' se nepodařilo nahrát: %1 - Unable to send command line arguments to the already running instance. It appears to be not responding. Agumenty příkazového řádku se nepodařilo předat již běžící úrovni. Zdá se, že neodpovídá. - Could not find 'Core.pluginspec' in %1 'Core.pluginspec' v %1 se nepodařilo najít - Qt Creator - Plugin loader messages Qt Creator - Zprávy správy přídavných modulů @@ -27,17 +23,14 @@ AttachCoreDialog - Start Debugger Spustit ladicí program - Executable: Spustitelný soubor: - Core File: Soubor 'core': @@ -45,35 +38,33 @@ AttachExternalDialog - Start Debugger Spustit ladicí program - Attach to Process ID: - Připojit k ID procesu: + Připojit k ID procesu: - Filter: - Filtr: + Filtr: - Clear - Smazat + Smazat + + + Attach to process ID: + Připojit k ID procesu: BINEditor::Internal::BinEditorPlugin - &Undo &Zpět - &Redo &Znovu @@ -81,46 +72,34 @@ BookmarkDialog - Add Bookmark Přidat záložku - Bookmark: Záložka: - Add in Folder: Zřídit ve složce: - + + - New Folder Nová složka - - - - - Bookmarks Záložky - Delete Folder Smazat složku - Rename Folder Přejmenovat složku @@ -128,23 +107,18 @@ BookmarkManager - Bookmarks Záložky - Remove Odstranit - You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue? Chystáte se smazat složku, přičemž se smaže<br>i její obsah. Jste si jistý, že přesto chcete pokračovat? - - New Folder Nová složka @@ -152,47 +126,38 @@ BookmarkWidget - Delete Folder Smazat složku - Rename Folder Přejmenovat složku - Show Bookmark Ukázat záložku - Show Bookmark in New Tab Ukázat záložku v nové kartě - Delete Bookmark Smazat záložku - Rename Bookmark Přejmenovat záložku - Filter: - Filtr: + Filtr: - Add Přidat - Remove Odstranit @@ -200,105 +165,108 @@ Bookmarks::Internal::BookmarkView - - Bookmarks Záložky - + Move Up + Posunout nahoru + + + Move Down + Posunout dolů + + + &Remove + &Odstranit + + + Remove All + Odstranit vše + + &Remove Bookmark - &Odstranit záložku + &Odstranit záložku - Remove all Bookmarks - Odstranit všechny záložky + Odstranit všechny záložky Bookmarks::Internal::BookmarksPlugin - &Bookmarks &Záložky - - Toggle Bookmark Přepnout záložky - Ctrl+M Ctrl+M - Meta+M Meta+M - Move Up - Posunout nahoru + Posunout nahoru - Move Down - Posunout dolů + Posunout dolů - Previous Bookmark Předchozí záložka - Ctrl+, Ctrl+, - Meta+, Meta+, - Next Bookmark Další záložka - Ctrl+. Ctrl+. - Meta+. Meta+. - - Previous Bookmark In Document + Previous Bookmark in Document Předchozí záložka v dokumentu - - Next Bookmark In Document + Next Bookmark in Document Další záložka v dokumentu + + Previous Bookmark In Document + Předchozí záložka v dokumentu + + + Next Bookmark In Document + Další záložka v dokumentu + BreakByFunctionDialog - Set Breakpoint at Function Nastavit u funkce okamžik přerušení - Function to break on: Funkce k přerušení: @@ -306,12 +274,10 @@ BreakCondition - Condition: Podmínka: - Ignore count: Zastavit teprve po: @@ -319,20 +285,17 @@ CMakeProjectManager::Internal::CMakeBuildEnvironmentWidget - Clear system environment - Vyprázdnit prostředí systému + Vyprázdnit prostředí systému - Build Environment - Prostředí pro sestavování + Prostředí pro sestavování CMakeProjectManager::Internal::CMakeBuildSettingsWidget - &Change &Změnit @@ -340,7 +303,6 @@ CMakeProjectManager::Internal::CMakeOpenProjectWizard - CMake Wizard Průvodce CMake @@ -348,130 +310,109 @@ CMakeProjectManager::Internal::CMakeRunConfigurationWidget - Arguments: Argumenty: - Select the working directory + Vybrat pracovní adresář + + + Select Working Directory Vybrat pracovní adresář - Reset to default Nastavit znovu výchozí - Working Directory: Pracovní adresář: - Run Environment Prováděcí prostředí - Base environment for this runconfiguration: Základní prostředí pro toto nastavení spuštění: - Clean Environment Smazat prostředí - System Environment Prostředí systému - Build Environment Prostředí pro sestavování - Running executable: <b>%1</b> %2 - Spouští se spustitelný soubor: <b>%1</b> %2 + Spouští se spustitelný soubor: <b>%1</b> %2 CMakeProjectManager::Internal::CMakeRunPage - Please specify the path to the cmake executable. No cmake executable was found in the path. Zadejte, prosím, cestu ke spustitelnému souboru cmake. V cestě nebyl nalezen žádný spustitelný soubor cmake. - The cmake executable (%1) does not exist. Spustitelný soubor cmake (%1) neexistuje. - The path %1 is not a executable. Cesta '%1' není spustitelným souborem. - The path %1 is not a valid cmake. Cesta '%1' není platným cmake. - Run CMake Provést CMake - Arguments Argumenty - The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly Adresář %1 již obsahuje soubor cbp, který je dost čerstvý. Můžete tu podat zvláštní argumenty nebo změnit použitý řetěz nástrojů a spustit cmake znovu. Nebo průvodce jednoduše rovnou ukončete - 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. Adresář %1 neobsahuje žádný soubor cbp. Qt Creator musí tento soubor vytvořit vyvoláním cmake. U některých projektů jsou k tomu vyžadovány argumenty příkazového řádku. - 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. Adresář %1 obsahuje zastaralý soubor cbp. Qt Creator musí tento soubor obnovit vyvoláním cmake. Dodatečné argumenty příkazového řádku lze zadat dole. Všimněte si, že cmake ukládá argumenty příkazového řádku z předchozího vyvolání. - 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. Adresář %1, který byl zadán v nastavení sestavování, neobsahuje soubor cbp. Qt Creator musí soubor vytvořit pomocí vyvolání cmake. U některých projektů jsou k tomu vyžadovány argumenty příkazového řádku. Všimněte si, že cmake ukládá argumenty příkazového řádku z předchozího vyvolání. - NMake Generator Tvůrce NMake - NMake Generator (%1) Tvůrce NMake (%1) - MinGW Generator Tvůrce MinGW - No valid cmake executable specified. Nebyl zadán žádný platný spustitelný soubor pro 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 musí vyvolat cmake v novém adresáři pro sestavování. U některých projektů jsou k tomu vyžadovány argumenty příkazového řádku. @@ -479,70 +420,79 @@ CMakeProjectManager::Internal::CMakeSettingsPage - - CMake CMake - + Executable: + Spustitelný soubor: + + CMake executable - Spustitelný soubor CMake + Spustitelný soubor CMake CMakeProjectManager::Internal::InSourceBuildPage - 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. Bylo zjištěno <b>sestavování ve zdrojovém adresáři v %1</b>, které zabraňuje stínovým sestavováním. Adresář se sestavováním nelze v Qt Creatoru změnit. Pokud chcete stínové sestavování, vyčistěte, prosím, svůj zdrojový adresář a otevřte projekt znovu ještě jednou. + + Build Location + Umístění sestavování + CMakeProjectManager::Internal::MakeStepConfigWidget - Additional arguments: Dodatečné argumenty: - Targets: Cíle: - + Make + CMakeProjectManager::MakeStepConfigWidget display name. + Make + + <b>Make:</b> %1 %2 <b>Make:</b> %1 %2 + + <b>Unknown Toolchain</b> + <b>Neznámý řetěz nástrojů</b> + CMakeProjectManager::Internal::ShadowBuildPage - Please enter the directory in which you want to build your project. Zadejte, prosím, adresář, ve kterém chcete vytvořit svůj projekt. - 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. Zadejte, prosím, adresář, ve kterém chcete vytvořit svůj projekt.. Doporučuje se, nepoužívat pro vytvoření projektu zdrojový adresář. Tím se zajistí, že zdrojový adresář zůstane volný, a umožní různá sestavení s rozdílnými nastaveními. - Build directory: Adresář pro sestavování: + + Build Location + Umístění sestavování + CPlusPlus::OverviewModel - <Select Symbol> <Vybrat symbol> - <No Symbols> <Žádné symboly> @@ -550,351 +500,388 @@ CdbOptionsPageWidget - These options take effect at the next start of Qt Creator. Tato nastavení začnou působit při dalším spuštění Qt Creatoru. - Cdb Placeholder - Cdb + Cdb - Debugger Paths Cesty k ladícím programům - Symbol paths: Cesty k symbolům: - Source paths: Cesty ke zdrojovému textu: - Path: Cesta: - Other options - Jiné volby + Jiné volby - Verbose Symbol Loading - Mnohomluvné nahrávání symbolu + Mnohomluvné nahrávání symbolu - <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>Zadejte cestu k <a href="%1">nástrojům pro ladění Windows</a> (%2).</p><p><b>Poznámka:</b> Změny začnou působit až při dalším spuštění Qt Creatoru.</p></p></body></html> + <html><body><p>Zadejte cestu k <a href="%1">nástrojům pro ladění Windows</a> (%2).</p><p><b>Poznámka:</b> Změny začnou působit až při dalším spuštění Qt Creatoru.</p></p></body></html> - 64-bit version - 64 bitová verze + 64 bitová verze - 32-bit version - 32 bitová verze + 32 bitová verze + + + CDB + Placeholder + CDB + + + Other Options + Jiné volby + + + Verbose symbol loading + Mnohomluvné nahrávání symbolu + + + fast loading of debugging helpers + rychlé nahrávání pomocných knihoven pro výstup dat o ladění ChangeSelectionDialog - Repository Location: - Umístění skladiště: + Umístění skladiště: - Select Vybrat - Change: Změna: + + Repository location: + Umístění skladiště: + CodePaster::CodepasterPlugin - &Code Pasting &Vkládání kódu - Paste Snippet... Vložit kousek... - Alt+C,Alt+P Alt+C, Alt+P - + Paste Clipboard... + Vložit schránku... + + Fetch Snippet... Natáhnout kousek... - Alt+C,Alt+F Alt+C, Alt+F - + Empty snippet received for "%1". + Přijat prázdný kousek pro "%1". + + This protocol supports no listing - Tento protokol nepodporuje výpisy + Tento protokol nepodporuje výpisy - Waiting for items - Čeká se na data + Čeká se na data CodePaster::PasteSelectDialog - Paste: Vložit: - Protocol: Protokol: + + Refresh + Obnovit + + + Waiting for items + Čeká se na data + + + This protocol does not support listing + Tento protokol nepodporuje výpisy + CodePaster::SettingsPage - Username: Uživatelské jméno: - Copy Paste URL to clipboard - Kopírovat URL do schránky + Kopírovat URL do schránky - Display Output Pane after sending a post - Po odeslání ukázat výstupní tabulku + Po odeslání ukázat výstupní tabulku - - General Obecné - CodePaster - CodePaster + CodePaster - Default Protocol: - Výchozí protokol: + Výchozí protokol: - Pastebin.ca - Pastebin.ca + Pastebin.ca - Pastebin.com - Pastebin.com + Pastebin.com - Code Pasting - Vkládání kódu + Vkládání kódu + + + Display Output pane after sending a post + Po odeslání ukázat výstupní tabulku + + + Copy-paste URL to clipboard + Kopírovat URL do schránky + + + Default protocol: + Výchozí protokol: CommonOptionsPage - User interface - Uživatelské rozhraní + Uživatelské rozhraní - Checking this will populate the source file view automatically but might slow down debugger startup considerably. Pohled na zdrojový soubor se automaticky zaktualizuje, ale může dojít k výraznému zpomalení ladícího programu. - Populate source file view automatically Aktualizovat pohled na zdrojový soubor automaticky - 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. - Tato volba má za následek, že v určitých situacích sloučí 'Jednotlivý krok do' více kroků do jednoho, čímž se ladění uspíší. Například se přeskočí kód počítání atomárních odkazů; a jednotlivý 'Krok do' pro vyslání signálu skončí přímo v otvoru s ním spojeném. + Tato volba má za následek, že v určitých situacích sloučí 'Jednotlivý krok do' více kroků do jednoho, čímž se ladění uspíší. Například se přeskočí kód počítání atomárních odkazů; a jednotlivý 'Krok do' pro vyslání signálu skončí přímo v otvoru s ním spojeném. - Skip known frames when stepping - Přeskočit při provádění jednotlivého kroku známá místa + Přeskočit při provádění jednotlivého kroku známá místa - Maximal stack depth: Největší hloubka zásobníku: - <unlimited> <neomezená> - Use alternating row colors in debug views Používat pro pohledy na ladění střídavých barev řádků - Enable reverse debugging - Zapnout obrácené ladění + Zapnout obrácené ladění - Show a message box when receiving a signal - Při obdržení signálu ukázat okno se zprávami + Při obdržení signálu ukázat okno se zprávami - Use tooltips in main editor while debugging Používat v hlavním editoru během ladění nástrojových rad + + Language + Jazyk + + + Changes the debugger language according to the currently opened file. + Změní jazyk ladicího programu podle v současné době otevřeného souboru. + + + Change debugger language automatically + Automaticky změnit jazyk ladicího programu + + + GUI Behavior + Chování rozhraní + + + Register Qt Creator for debugging crashed applications. + Zapsat Qt Creator pro ladění spadlých programů. + + + Use Qt Creator for post-mortem debugging + Použít Qt Creator pro ladění - následný rozbor + CompletionSettingsPage - Code Completion - Doplnění kódu + Doplnění kódu - Do a case-sensitive match for completion items. - Dávat u návrhů na doplnění pozor na shodu v psaní velkých a malých písmen. + Dávat u návrhů na doplnění pozor na shodu v psaní velkých a malých písmen. - &Case-sensitive completion - &Doplnění rozlišující psaní velkých a malých písmen + &Doplnění rozlišující psaní velkých a malých písmen - Automatically insert (, ) and ; when appropriate. Automaticky vložit (, ) a ; v případech, kdy je to vhodné. - Insert the common prefix of available completion items. Vložit společnou předponu hodících se návrhů na doplnění. - Autocomplete common &prefix Automaticky doplnit společnou &předponu - &Automatically insert brackets &Automaticky vložit závorky + + Behavior + Chování + + + &Case-sensitivity: + &Rozlišování velkých a malých písmen: + + + Full + Plné + + + None + Žádné + + + First Letter + První písmeno + + + Insert &space after function name + Vložit &mezeru po názvu funkce + ContentWindow - Open Link Otevřít adresu odkazu - + Open Link as New Page + Otevřít odkaz jako novou stránku + + Open Link in New Tab - Otevřít odkaz v nové kartě + Otevřít odkaz v nové kartě Core::BaseFileWizard - - - - File Generation Failure Chyba při vytváření souboru - - Existing files Stávající soubory - Unable to create the directory %1. Adresář %1 nelze vytvořit. - Unable to open %1 for writing: %2 Soubor %1 nelze otevřít pro zápis: %2 - Error while writing to %1: %2 Chyba při zápisu do %1: %2 - Failed to open an editor for '%1'. Pro soubor '%1' se nepodařilo otevřít editor. - [read only] [pouze pro čtení] - [directory] [adresář] - [symbolic link] [symbolický odkaz] - The project directory %1 contains files which cannot be overwritten: %2. Projektový adresář %1 obsahuje soubory, které nelze přepsat: %2. - The following files already exist in the directory %1: %2. Would you like to overwrite them? @@ -906,288 +893,238 @@ Chcete je nechat přepsat? Core::EditorManager - - Revert to Saved Vrátit se k uloženému - - Close Zavřít - Close All Zavřít vše - - Close Others Zavřít jiné - Open in External Editor Otevřít ve vnějším editoru - Revert File to Saved Vrátit se v souboru k uloženému stavu - Ctrl+W Ctrl+W - + 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 Rozdělit - Split Side by Side Rozdělit jedno vedle druhého - Remove Current Split Odstranit nynější rozdělení - Remove All Splits Odstranit všechna rozdělení - + Save %1 &As... + Uložit %1 &jako... + + Goto Other Split - Jít na jiné rozdělení + Jít na jiné rozdělení - &Advanced &Další - Alt+V,Alt+I Alt+V, Alt+I - - Opening File Otevírá se soubor - Cannot open file %1! Soubor '%1' nelze otevřít! - Open File - Otevřít soubor + Otevřít soubor - File is Read Only Soubor je pouze pro čtení - The file %1 is read only. Soubor %1 je pouze pro čtení. - Open with VCS (%1) Otevřít s pomocí systému na ověřování verzí (VCS) (%1) - Save as ... Uložit jako... - - Failed! Chyba! - Could not open the file for editing with SCC. Soubor se nepodařilo udělat zapisovatelný s pomocí správy verzí. - Could not set permissions to writable. Nepodařilo se nastavit oprávnění k souboru tak, aby byl zapisovatelý. - <b>Warning:</b> You are changing a read-only file. <b>Upozornění:</b> Chystáte se změnit soubor, který je pouze pro čtení. - - Make writable Udělat zapisovatelným - Next Open Document in History Další otevřít dokument na seznamu - Previous Open Document in History Předchozí otevřít dokument na seznamu - Go Back Jít zpět - Go Forward Jít dopředu - 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 + Jít na další rozdělení + + %1,o %1,o - All Files (*) Všechny soubory (*) - Save %1 As... - Uložit '%1' jako... + Uložit '%1' jako... - &Save %1 &Uložit %1 - Revert %1 to Saved Vrátit %1 k uloženému - Close %1 Zavřít %1 - Close All Except %1 Zavřít vše až na %1 - You will lose your current changes if you proceed reverting %1. Pokud provedete vrácení %1 zpět k uloženému stavu, budou ztraceny vaše nynější změny. - Proceed Pokračovat - Cancel Zrušit - <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>Proměnná</th><th>Rozšiřuje se k</th></tr><tr><td>%f</td><td>Název souboru</td></tr><tr><td>%l</td><td>Číslo řádku</td></tr><tr><td>%c</td><td>Číslo sloupce</td></tr><tr><td>%x</td><td>Xová souřadnice polohy editoru na obrazovce</td></tr><tr><td>%y</td><td>Yová souřadnice polohy editoru na obrazovce</td></tr><tr><td>%w</td><td>Šířka editoru v pixelech</td></tr><tr><td>%h</td><td>Výška editoru v pixelech</td></tr><tr><td>%W</td><td>Šířka editoru ve znacích</td></tr><tr><td>%H</td><td>Výška editoru ve znacích</td></tr><tr><td>%%</td><td>%</td></tr></table> @@ -1195,35 +1132,33 @@ Chcete je nechat přepsat? Core::FileManager - Cannot save file Soubor nelze uložit - Cannot save changes to '%1'. Do you want to continue and lose your changes? Změny nelze uložit do souboru '%1'. Chcete přesto pokračovat a ztratit své změny? - Overwrite? Přepsat? - An item named '%1' already exists at this location. Do you want to overwrite it? V tomto umístění již existuje soubor s názvem '%1'. Chcete jej přepsat? - Save File As Uložit soubor jako + + Open File + Otevřít soubor + Core::Internal::ComboBox - Activate %1 Zapnout %1 @@ -1231,7 +1166,6 @@ Chcete je nechat přepsat? Core::Internal::EditMode - Edit Úpravy @@ -1239,72 +1173,58 @@ Chcete je nechat přepsat? Core::Internal::EditorSplitter - Split Left/Right Rozdělit vlevo/vpravo - Split Top/Bottom Rozdělit nahoře/dole - Unsplit Zrušit rozdělení - Default Splitter Layout Výchozí rozvržení rozdělení - Save Current as Default Uložit současné uspořádání jako předlohu - Restore Default Layout Obnovit předlohu s výchozím rozvržením - Previous Document Předchozí dokument - Alt+Left Alt+Left - Next Document Další dokument - Alt+Right Alt+Right - Previous Group Předchozí skupina - Next Group Další skupina - Move Document to Previous Group Přesunout dokument do předchozí skupiny - Move Document to Next Group Přesunout dokument do další skupiny @@ -1312,300 +1232,306 @@ Chcete je nechat přepsat? Core::Internal::EditorView - Go Back - Jít zpět + Jít zpět - Go Forward - Jít dopředu + Jít dopředu - - Placeholder Zástupný znak - Close Zavřít - Make writable - Udělat zapisovatelným + Udělat zapisovatelným - File is writable - Soubor je zapisovatelný + Soubor je zapisovatelný - Copy full path to clipboard - Kopírovat celou cestu do schránky + Kopírovat celou cestu do schránky Core::Internal::GeneralSettings - General Obecné - + <System Language> + <Jazyk systému> + + + Restart required + Znovuspuštění vyžadováno + + + The language change will take effect after a restart of Qt Creator. + Změna jazyka se projeví po novém spuštění Qt Creatoru. + + Environment - Prostředí + Prostředí - Variables Proměnné - General settings - Obecná nastavení + Obecná nastavení - User &interface color: - Barva uživatelského &rozhraní: + Barva uživatelského &rozhraní: - Reset to default Nastavit znovu na výchozí - R R - Terminal: Terminál: - External editor: Vnější editor: - ? ? - When files are externally modified: Když jsou soubory změněny zvnějšku: - Always ask - Vždy se zeptat + Vždy se zeptat - Reload all modified files - Nahrát znovu všechny změněné soubory + Nahrát znovu všechny změněné soubory - Ignore modifications + Nevšímat si změn + + + User Interface + Uživatelské rozhraní + + + Color: + Barva: + + + Default file encoding: + Výchozí kódování souborů: + + + Language: + Jazyk: + + + System + Systém + + + External file browser: + Prohlížeč vnějších souborů: + + + Always Ask + Vždy se zeptat + + + Reload All Unchanged Editors + Nahrát znovu všechny nezměněné editory + + + Ignore Modifications Nevšímat si změn Core::Internal::MainWindow - Qt Creator Qt Creator - Output - Výstup + Výstup - &File &Soubor - &Edit Ú&pravy - &Tools &Nástroje - &Window &Okno - &Help &Nápověda - &New File or Project... &Nový soubor nebo projekt... - &Open File or Project... &Otevřít soubor nebo projekt... - &Open File With... - &Otevřít soubor s... + &Otevřít soubor s... - Recent Files - Naposledy upravované soubory + Naposledy upravované soubory + + + Open File &With... + Otevřít soubor &s... + + + Recent &Files + Naposledy otevřené s&oubory - - &Save &Uložit - - Save &As... Uložit &jako... - - Ctrl+Shift+S Ctrl+Shift+S - Save A&ll Uložit &vše - &Print... &Tisk... - E&xit &Ukončit - Ctrl+Q Ctrl+Q - - &Undo &Zpět - - &Redo &Znovu - Cu&t Vyj&mout - &Copy &Kopírovat - &Paste &Vložit - &Select All &Vybrat vše - &Go To Line... &Jít na řádek... - Ctrl+L Ctrl+L - &Options... &Volby... - Minimize Zmenšit - Zoom Zvětšení - Show Sidebar Ukázat postranní pruh - Full Screen Na celou obrazovku - + &Views + &Pohledy + + About &Qt Creator O programu &Qt Creator - About &Qt Creator... O programu &Qt Creator... - About &Plugins... &Přídavné moduly... - + New + Title of dialog + Nový + + + Open Project + Otevřít projekt + + New... Title of dialog - Nový... + Nový... - Settings... Nastavení... @@ -1613,15 +1539,17 @@ Chcete je nechat přepsat? Core::Internal::MessageOutputWindow - General - Obecné + Obecné + + + General Messages + Obecné zprávy Core::Internal::NavComboBox - Activate %1 Zapnout %1 @@ -1629,12 +1557,10 @@ Chcete je nechat přepsat? Core::Internal::NavigationSubWidget - Split Rozdělit - Close Zavřít @@ -1642,7 +1568,14 @@ Chcete je nechat přepsat? Core::Internal::NavigationWidget - + Hide Sidebar + Skrýt postranní pruh + + + Show Sidebar + Ukázat postranní pruh + + Activate %1 Pane Zapnout tabulku '%1' @@ -1650,46 +1583,53 @@ Chcete je nechat přepsat? Core::Internal::NewDialog - New Project Nový projekt - 1 - 1 + 1 + + + Choose a template: + Vyberte předlohu: + + + &Choose... + &Vybrat... + + + Projects + Projekty + + + Files and Classes + Soubory a třídy Core::Internal::OpenEditorsWidget - - Open Documents Otevřít dokumenty - Close %1 Zavřít %1 - Close Editor Zavřít editor - Close All Except %1 Zavřít vše kromě %1 - Close Other Editors Zavřít ostatní editory - Close All Editors Zavřít všechny editory @@ -1697,8 +1637,6 @@ Chcete je nechat přepsat? Core::Internal::OpenEditorsWindow - - * * @@ -1706,7 +1644,6 @@ Chcete je nechat přepsat? Core::Internal::OpenWithDialog - Open file '%1' with: Otevřít soubor '%1' s: @@ -1714,61 +1651,62 @@ Chcete je nechat přepsat? Core::Internal::OutputPaneManager - Output Výstup - Clear Smazat - Next Item Další záznam - Previous Item Předchozí záznam - + Maximize Output Pane + Zvětšit výstupní tabulku + + Output &Panes Výstupní &tabulky + + Minimize Output Pane + Zmenšit výstupní tabulku + Core::Internal::PluginDialog - Details Podrobnosti - Error Details Fehlermeldungen zu %1 Podrobnosti o chybě - Close Zavřít - + Restart required. + Znovuspuštění vyžadováno. + + Installed Plugins Nainstalované přídavné moduly - Plugin Details of %1 Popis přídavného modulu %1 - Plugin Errors of %1 Chyby přídavného modulu %1 @@ -1776,7 +1714,6 @@ Chcete je nechat přepsat? Core::Internal::ProgressView - Processes Procesy @@ -1784,22 +1721,18 @@ Chcete je nechat přepsat? Core::Internal::SaveItemsDialog - Do not Save Neukládat - Save All Uložit vše - Save Uložit - Save Selected Uložit vybrané @@ -1807,28 +1740,34 @@ Chcete je nechat přepsat? Core::Internal::ShortcutSettings - Keyboard Klávesnice - Environment - Prostředí + Prostředí + + + Keyboard Shortcuts + Klávesové zkratky + + + Key sequence: + Pořadí kláves: + + + Shortcut + Zkratka - Import Keyboard Mapping Scheme Zavést nákres s přiřazením kláves - - Keyboard Mapping Scheme (*.kms) Soubor s nákresem přiřazení kláves (*.kms) - Export Keyboard Mapping Scheme Vyvést nákres s přiřazením kláves @@ -1836,12 +1775,10 @@ Chcete je nechat přepsat? Core::Internal::SideBarWidget - Split Rozdělit - Close Zavřít @@ -1849,41 +1786,47 @@ Chcete je nechat přepsat? Core::Internal::VersionDialog - About Qt Creator O programu Qt Creator - + (%1) + (%1) + + From revision %1<br/> This gets conditionally inserted as argument %8 into the description string. Revize %1<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 %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</h3>Založený na Qt %2 (%3 bit)<br/><br/>Vytvořený %4 v %5<br /><br/>%8<br/>Autorské právo 2008-%6 %7. Všechna práva vyhrazena.<br/><br/> Program je poskytován tak, JAK JE, BEZ ZÁRUKY JAKÉHOKOLI DRUHU, VČETNĚ ZÁRUKY PROVEDENÍ, PRODEJNOSTI A VHODNOSTI PRO URČITÝ ÚČEL.<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>Založený na Qt %2 (%3 bit)<br/><br/>Vytvořený %4 v %5<br /><br/>%8<br/>Autorské právo 2008-%6 %7. Všechna práva vyhrazena.<br/><br/> Program je poskytován tak, JAK JE, BEZ ZÁRUKY JAKÉHOKOLI DRUHU, VČETNĚ ZÁRUKY PROVEDENÍ, PRODEJNOSTI A VHODNOSTI PRO URČITÝ ÚČEL.<br/> + Core::ModeManager - Switch to %1 mode - Přepnout na režim '%1' + Přepnout na režim '%1' + + + Switch to <b>%1</b> mode + Přepnout na režim <b>%1</b> Core::ScriptManager - Exception at line %1: %2 %3 Výjimka na řádku %1: %2 %3 - Unknown error Neznámá chyba @@ -1891,7 +1834,6 @@ Chcete je nechat přepsat? Core::StandardFileWizard - New %1 TODO: Grammatical case problem Nový %1 @@ -1900,35 +1842,41 @@ Chcete je nechat přepsat? CppEditor::Internal::CPPEditor - Sort alphabetically + Roztřídit podle abecedy + + + Sort Alphabetically Roztřídit podle abecedy - This change cannot be undone. Tuto změnu nelze vrátit zpět. - Yes, I know what I am doing. Ano, vím, co dělám. + + Unused variable + Nepoužívaná proměnná + CppEditor::Internal::ClassNamePage - Enter class name + Zadejte název třídy + + + Enter Class Name Zadejte název třídy - The header and source file names will be derived from the class name Názvy pro hlavičkové a zdrojové soubory se odvozují z názvu pto třídu - Configure... Nastavení... @@ -1936,7 +1884,6 @@ Chcete je nechat přepsat? CppEditor::Internal::CppClassWizard - Error while generating file contents. Chyba při vytváření souboru. @@ -1944,119 +1891,134 @@ Chcete je nechat přepsat? CppEditor::Internal::CppClassWizardDialog - C++ Class Wizard Průvodce pro novou třídu C++ + + Details + Podrobnosti + CppEditor::Internal::CppHoverHandler - Unfiltered - Nezpracovaný + Nezpracovaný CppEditor::Internal::CppPlugin - C++ - C++ + C++ - C++ Header File Hlavičkový soubor C++ - Creates a C++ header file. - Vytvoří nový hlavičkový soubor C++. + Vytvoří nový hlavičkový soubor C++. - Creates a C++ source file. - Vytvoří nový zdrojový soubor C++. + Vytvoří nový zdrojový soubor C++. - C++ Source File Zdrojový soubor C++ - C++ Class Třída C++ - Creates a header and a source file for a new class. - Vytvoří nový hlavičkový a zdrojový soubor C++ pro novou třídu. + Vytvoří nový hlavičkový a zdrojový soubor C++ pro novou třídu. - Follow Symbol under Cursor - Následovat symbol pod ukazovátkem + Následovat symbol pod ukazovátkem - Switch between Method Declaration/Definition + Přepínání mezi prohlášením a vymezením postupu + + + Creates a C++ header and a source file for a new class that you can add to a C++ project. + Vytvoří hlavičku C++ a zdrojový soubor pro novou třídu, který můžete přidat do projektu C++. + + + Creates a C++ source file that you can add to a C++ project. + Vytvoří zdrojový soubor pro novou třídu, který můžete přidat do projektu C++. + + + Creates a C++ header file that you can add to a C++ project. + Vytvoří hlavičkový soubor C++, který můžete přidat do projektu C++. + + + Follow Symbol Under Cursor + Následovat symbol pod ukazovátkem + + + Switch Between Method Declaration/Definition Přepínání mezi prohlášením a vymezením postupu - Find Usages Najít použití - Ctrl+Shift+U Ctrl+Shift+U - - Rename Symbol under Cursor + Rename Symbol Under Cursor Přejmenovat symbol pod ukazovátkem - - Update code model + Update Code Model Obnovit model kódu + + Rename Symbol under Cursor + Přejmenovat symbol pod ukazovátkem + + + Update code model + Obnovit model kódu + CppFileSettingsPage - Header suffix: Přípona hlavičkových souborů: - Source suffix: Přípona zdrojových souborů: - Lower case file names Pro názvy souborů používat malých písmen - File Naming Conventions - Zvyklosti při tvoření souborových názvů + Zvyklosti při tvoření souborových názvů - License Template: + Předloha pro povolení: + + + License template: Předloha pro povolení: CppPreprocessor - %1: No such file or directory %1: Neexistuje žádný soubor nebo adresář s tímto názvem @@ -2064,12 +2026,14 @@ Chcete je nechat přepsat? CppTools - File Naming Conventions - Zvyklosti při tvoření souborových názvů + Zvyklosti při tvoření souborových názvů + + + File Naming + Tvoření souborových názvů - C++ C++ @@ -2077,20 +2041,17 @@ Chcete je nechat přepsat? CppTools::Internal::CompletionSettingsPage - Completion Doplnění - Text Editor - Textový editor + Textový editor CppTools::Internal::CppClassesFilter - Classes Třídy @@ -2098,7 +2059,6 @@ Chcete je nechat přepsat? CppTools::Internal::CppFunctionsFilter - Methods Postupy @@ -2106,25 +2066,25 @@ Chcete je nechat přepsat? CppTools::Internal::CppModelManager - Scanning Prohledávání - + Parsing + Zpracování + + Indexing - Rejstříkování + Rejstříkování CppTools::Internal::CppToolsPlugin - &C++ &C++ - Switch Header/Source Přepínat mezi hlavičkovým/zdrojovým souborem @@ -2132,7 +2092,6 @@ Chcete je nechat přepsat? CppTools::Internal::FunctionArgumentWidget - %1 of %2 %1 z %2 @@ -2140,30 +2099,113 @@ Chcete je nechat přepsat? Debugger - Common - Společné + Společné + + + General + Obecné - Debugger Ladič - <Encoding error> <Chyba v kódování> + + Error Loading Symbols + Chyba při nahrávání symbolů + + + No executable to load symbols from specified. + Nebyl zadán žádný spustitelný soubor pro nahrání symbolů. + + + Symbols found. + Symboly byly nalezeny. + + + Loading symbols from "%1" failed: + + Nahrání symbolů z "%1" se nepodařilo: + + + + Attached to core temporarily. + Dočasně připojeno k 'core' souboru. + + + Unable to determine executable from core file. + Ze souboru 'core' se nepodařilo určit žádný spustitelný soubor. + + + Attached to core. + Připojeno k souboru 'core'. + + + Attach to core "%1" failed: + + Připojení k souboru 'core' "%1" se nezdařilo: + + + + Cannot set up communication with child process: %1 + Spojení s podřízeným procesem se nepodařilo zřídit: %1 + + + Starting executable failed: + + Nepodařilo se spustit spustitelný soubor: + + + + The upload process failed to start. Shell missing? + Nahrání procesu se nepodařilo spustit. Možnou příčinou by mohl být chybějící shellový program? + + + The upload process crashed some time after starting successfully. + Proces nahrávání po určité době od úspěšného spuštění spadl. + + + The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. + Došlo k překročení času u poslední funkce waitFor...(). Stav QProcess je nezměněn, a tak se můžete pokusit zavolat waitFor...() ještě jednou. + + + 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. + Při pokusu o zápis do procesu nahrávání se vyskytla chyba. Pravděpodobně proces neběží, nebo zavřel svůj vstupní kanál. + + + An error occurred when attempting to read from the upload process. For example, the process may not be running. + Při pokusu o čtení z procesu nahrávání se vyskytla chyba. Pravděpodobně proces neběží. + + + An unknown error in the upload process occurred. This is the default return value of error(). + V procesu nahrávání se vyskytla neznámá chyba. Je to výchozí zpětná hodnota error(). + + + Error + Chyba + + + Starting remote executable failed: + + Nepodařilo se spustit spustitelný soubor na vzdáleném počítači: + + + + Debugger Error + Chyba v ladicím programu + Debugger::Internal::AttachCoreDialog - Select Executable Vybrat spustitelný soubor - Select Core File Vybrat hlavní soubor @@ -2171,22 +2213,18 @@ Chcete je nechat přepsat? Debugger::Internal::AttachExternalDialog - Process ID ID procesu - Name Název - State Stav - Refresh Obnovit @@ -2194,112 +2232,94 @@ Chcete je nechat přepsat? Debugger::Internal::BreakHandler - Marker File: Značkovací soubor: - Marker Line: Značkovací řádek: - Breakpoint Number: Číslo bodu přerušení: - Breakpoint Address: Adresa bodu přerušení: - Property Vlastnost - Requested Požadováno - Obtained Obdrženo - Internal Number: Vnitřní číslo: - File Name: Název souboru: - Function Name: Název funkce: - Line Number: Číslo řádku: - + Corrected Line Number: + Opravené číslo řádku: + + Condition: Podmínka: - Ignore Count: Zastavit teprve po: - Number Číslo - Function Funkce - File Soubor - Line Řádek - Condition Podmínka - Ignore Přehlížet - Address Adresa - Breakpoint will only be hit if this condition is met. Bod přerušení bude vyvolán jen v případě, že bude splněna podmínka. - Breakpoint will only be hit after being ignored so many times. Bod přerušení bude vyvolán poté, co byl předtím tolikrát přehlížen. @@ -2307,82 +2327,130 @@ Chcete je nechat přepsat? Debugger::Internal::BreakWindow - Breakpoints Body přerušení - Delete breakpoint - Smazat bod přerušení + Smazat bod přerušení - Delete all breakpoints - Smazat všechny body přerušení + Smazat všechny body přerušení - Delete breakpoints of "%1" - Smazat body přerušení "%1" + Smazat body přerušení "%1" - Delete breakpoints of file - Smazat body přerušení souboru + Smazat body přerušení souboru - Adjust column widths to contents - Přizpůsobit šířku sloupců obsahu + Přizpůsobit šířku sloupců obsahu - Always adjust column widths to contents - Vždy přizpůsobit šířku sloupců obsahu + Vždy přizpůsobit šířku sloupců obsahu - Edit condition... - Upravit podmínku... + Upravit podmínku... - Synchronize breakpoints - Seřídit body přerušení + Seřídit body přerušení - Disable breakpoint - Vypnout bod přerušení + Vypnout bod přerušení - Enable breakpoint - Zapnout bod přerušení + Zapnout bod přerušení - Use short path - Použít zkrácenou cestu + Použít zkrácenou cestu - Use full path + Použít úplnou cestu + + + Delete Breakpoint + Smazat bod přerušení + + + Delete All Breakpoints + Smazat všechny body přerušení + + + Delete Breakpoints of "%1" + Smazat body přerušení v "%1" + + + Delete Breakpoints of File + Smazat body přerušení v souboru + + + Adjust Column Widths to Contents + Přizpůsobit šířku sloupců obsahu + + + Always Adjust Column Widths to Contents + Vždy přizpůsobit šířku sloupců obsahu + + + Edit Condition... + Upravit podmínku... + + + Synchronize Breakpoints + Seřídit body přerušení + + + Disable Selected Breakpoints + Vypnout vybrané body přerušení + + + Enable Selected Breakpoints + Zapnout vybrané body přerušení + + + Disable Breakpoint + Vypnout bod přerušení + + + Enable Breakpoint + Zapnout bod přerušení + + + Use Short Path + Použít zkrácenou cestu + + + Use Full Path Použít úplnou cestu - Set Breakpoint at Function... Nastavit bod přerušení u funkce... - Set Breakpoint at Function "main" Nastavit bod přerušení u funkce main() - + Set Breakpoint at "throw" + Nastavit bod přerušení při "throw" + + + Set Breakpoint at "catch" + Nastavit bod přerušení při "catch" + + Conditions on Breakpoint %1 Podmínky pro bod přerušení %1 @@ -2390,164 +2458,151 @@ Chcete je nechat přepsat? Debugger::Internal::CdbDebugEngine - Unable to load the debugger engine library '%1': %2 - Nepodařilo se nahrát knihovnu pro stroj ladicího programu '%1': %2 + Nepodařilo se nahrát knihovnu pro stroj ladicího programu '%1': %2 - The function "%1()" failed: %2 Function call failed Vyvolání funkce "%1()" se nezdařilo: %2 - Unable to resolve '%1' in the debugger engine library '%2' - '%1' se v knihovně pro stroj ladicího programu nepodařlo nalézt '%2' + '%1' se v knihovně pro stroj ladicího programu nepodařlo nalézt '%2' - Version: %1 Verze: %1 - <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> <html>Nainstalovaná verze <i>Nástroje ladění pro Windows</i> (%1) je poněkud stará. Vylepšení na verzi %2 se doporučuje kvůli správnému zobrazení datových typů Qt.</html> - Debugger Ladič - The dumper library was not found at %1. Pomocná knihovna pro výstup nebyla nalezena v '%1'. - Unable to set the image path to %1: %2 - Cestu k obázku nelze nastavit na %1: %2 + Cestu k obázku nelze nastavit na %1: %2 - The process exited with exit code %1. Proces byl ukončen. Vrácená hodnota %1. - Continuing with '%1'... Pokračuje se s '%1'... - Unable to continue: %1 Nelze pokračovat: %1 - Reverse stepping is not implemented. Obrácené stupňování není provedeno. - Thread %1 cannot be stepped. Vlákno %1 nelze stupňovat. - Stepping %1 Stupňování %1 - Running requested... Požadováno pokračování... - Running up to %1:%2... Pokračuje se až po %1:%2... - Running up to function '%1()'... Pokračuje se až po funkci '%1()'... - Jump to line is not implemented Funkčnost 'Skočit na řádek'není provedena - Ignoring initial breakpoint... Vynechává se počáteční bod přerušení... - Interrupted in thread %1, current thread: %2 Přerušeno u vlákna: %1, současné vlákno: %2 - Stopped, current thread: %1 Zastaveno, vlákno: %1 - Changing threads: %1 -> %2 Změna vláken: %1 -> %2 - + Stopped at %1:%2 in thread %3. + Zastaveno při %1:%2 ve vlákně %3. + + + Stopped at %1 in thread %2 (missing debug information). + Zastaveno při %1 ve vlákně %2 (chybí informace o ladění). + + + Stopped at %1 (%2) in thread %3 (missing debug information). + Zastaveno při %1 (%2) ve vlákně %3 (chybí informace o ladění). + + + Stopped in thread %1 (missing debug information). + Zastaveno ve vlákně %1 (chybí informace o ladění). + + + Breakpoint: %1 + Body přerušení: %1 + + Thread %1: Missing debug information for top stack frame (%2). - Vlákno %1: Chybějící informace o ladění pro horní rozsah zásobníku (%2). + Vlákno %1: Chybějící informace o ladění pro horní rozsah zásobníku (%2). - Thread %1: No debug information available (%2). - Vlákno %1: Není dostupná žádná informace o ladění (%2). + Vlákno %1: Není dostupná žádná informace o ladění (%2). - The console stub process was unable to start '%1'. Konzolový proces se nepodařilo spustit '%1'. - Attaching to core files is not supported! Připojení (ladění) hlavních souborů není podporováno! - Attaching to a process failed for process id %1: %2 - Ladicímu programu se nepodařilo připojit k procesu s ID %1: %2 + Ladicímu programu se nepodařilo připojit k procesu s ID %1: %2 - Unable to create a process '%1': %2 - Nepodařilo se spustit žádný proces '%1': %2 + Nepodařilo se spustit žádný proces '%1': %2 - Unable to assign the value '%1' to '%2': %3 Hodnotu '%1' se nepodařilo přiřadit k '%2': %3 - Unable to retrieve %1 bytes of memory at 0x%2: %3 Nelze získat %1 bytů paměti od 0x%2: %3 - Cannot retrieve symbols while the debuggee is running. Symboly nelze určit, dokud běží program k ladění. - - Debugger Error Chyba v ladicím programu @@ -2555,57 +2610,46 @@ Chcete je nechat přepsat? Debugger::Internal::CdbDumperHelper - injection Vstříknutí - debugger call Vyvolání ladicího programu - Loading the custom dumper library '%1' (%2) ... Nahrává se pomocná knihovna pro výstup dat '%1' (%2)... - Loading of the custom dumper library '%1' (%2) failed: %3 Nahrání pomocné knihovny pro výstup dat '%1' (%2) se nezdařilo: %3 - Loaded the custom dumper library '%1' (%2). Pomocná knihovna pro výstup dat '%1' (%2) byla nahrána. - Stopped / Custom dumper library initialized. Zastaveno/Byla spuštěna pomocná knihovna pro výstup dat. - Disabling dumpers due to debuggee crash... Pomocné knihovny pro výstup dat byly vypnuty kvůli spadnutí uživatelského programu k ladění... - The debuggee does not appear to be Qt application. Zdá se, že uživatelský program k ladění nepoužívá Qt. - Initializing dumpers... Spouští se pomocné knihovny pro výstup dat... - The custom dumper library could not be initialized: %1 Pomocnou knihovnu pro výstup dat se nepodařilo spustit: %1 - Querying dumpers for '%1'/'%2' (%3) Vyhledávájí se pomocné knihovny pro výstup dat '%1'/'%2' (%3) @@ -2613,29 +2657,37 @@ Chcete je nechat přepsat? Debugger::Internal::CdbOptionsPageWidget - Cdb - Cdb + Cdb + + + <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>Zadejte cestu k <a href="%1">nástrojům pro ladění Windows</a> (%2).</p><p><b>Poznámka:</b> Změny začnou působit až při dalším spuštění Qt Creatoru.</p></p></body></html> + + + 64-bit version + 64 bitová verze + + + 32-bit version + 32 bitová verze - Autodetect Zjistit - "Debugging Tools for Windows" could not be found. Nepodařilo se nalézt "Ladicí nástroje pro Windows". - Checked: %1 Prohledané adresáře: %1 - Autodetection Zjištění @@ -2643,17 +2695,14 @@ Chcete je nechat přepsat? Debugger::Internal::CdbSymbolPathListEditor - Symbol Server... Symbolický server... - Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. Přidá symbolický server firmy Microsoft, který poskytuje symboly pro knihovny operačního systému. Vyžaduje zadání adresáře s místní vyrovnávací pamětí. - Pick a local cache directory Vyberte adresář s místní vyrovnávací pamětí @@ -2661,7 +2710,6 @@ Chcete je nechat přepsat? Debugger::Internal::DebugMode - Debug Ladění @@ -2669,7 +2717,6 @@ Chcete je nechat přepsat? Debugger::Internal::DebuggerOutputWindow - Debugger Ladič @@ -2677,117 +2724,94 @@ Chcete je nechat přepsat? Debugger::Internal::DebuggerPlugin - Option '%1' is missing the parameter. Volba příkazového řádku %1 vyžaduje parametr. - The parameter '%1' of option '%2' is not a number. Parameter '%1' volby příkazového řádku '%2' není číslem. - Invalid debugger option: %1 Neplatná volba příkazového řádku pro ladicí program: %1 - Error evaluating command line arguments: %1 Chyba při vyhodnocení argumentu příkazového řádku: %1 - Start and Debug External Application... Spustit vnější uživatelský program a provádět u něj ladění... - Attach to Running External Application... Připojit se k běžícímu vnějšímu uživatelskému programu... - Attach to Core... Připojit se k hlavnímu souboru... - Start and Attach to Remote Application... Spustit vzdálený uživatelský program a připojit se k němu... - Detach Debugger Odpojit ladicí program - Stop Debugger/Interrupt Debugger Zastavit/Přerušit ladicí program - Reset Debugger Nastavit znovu ladicí program - &Views - &Pohledy + &Pohledy - Locked - Ukotveno + Ukotveno - Reset to default layout - Nastavit znovu výchozí rozvržení + Nastavit znovu výchozí rozvržení - Threads: Vlákna: - Attaching to PID %1. Připojuje se k procesu s ID (PID) %1. - Remove Breakpoint Odstranit bod přerušení - Disable Breakpoint Vypnout bod přerušení - Enable Breakpoint Zapnout bod přerušení - Set Breakpoint Nastavit bod přerušení - Warning Varování - Cannot attach to PID 0 Ladicí program nelze připojit k procesu s ID 0 - Attaching to core %1. Připojuje se k hlavnímu %1. @@ -2795,196 +2819,309 @@ Chcete je nechat přepsat? Debugger::Internal::DebuggerSettings - Debugger properties... - Nastavení ladicího programu... + Nastavení ladicího programu... - Adjust column widths to contents - Přizpůsobit šířku sloupců obsahu + Přizpůsobit šířku sloupců obsahu - Always adjust column widths to contents - Vždy přizpůsobit šířku sloupců obsahu + Vždy přizpůsobit šířku sloupců obsahu - Use alternating row colors - Používat střídavých barev řádků + Používat střídavých barev řádků - Show a message box when receiving a signal - Při obdržení signálu ukázat okno se zprávami - - - - Log time stamps - Zapsat časová razítka - + Při obdržení signálu ukázat okno se zprávami - Operate by instruction - Pracovat na úrovni příkazu + Pracovat na úrovni příkazu - 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. Přikáže ladicímu programu, aby pracoval na úrovni příkazu. V tomto režimu pracuje funkce jednotlivého kroku na strojových příkazech a pohled na zdrojový text ukazuje rozložené příkazy. - Dereference pointers automatically - Zrušit automaticky odkazování u ukazovátek + Zrušit automaticky odkazování u ukazovátek - 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. Způsobí, že u ukazovátka v okně "Místní &proměnné a sledované výrazy" je automaticky zrušeno odkazování. Tím se zjednoduší stromové zobrazení, ale zase ovšem chybí informace o nyní nepřítomné mezilehlé úrovni. - Watch expression "%1" - Sledovaný výraz "%1" + Sledovaný výraz "%1" - Remove watch expression "%1" - Odstranit sledovaný výraz "%1" + Odstranit sledovaný výraz "%1" - Watch expression "%1" in separate window - Sledovaný výraz "%1" v odděleném okně + Sledovaný výraz "%1" v odděleném okně - Use precise breakpoints - Použít přesné body přerušení + Použít přesné body přerušení - - Use tooltips in main editor when debugging - Používat během ladění v hlavním editoru rady k nástrojům + Debugger Properties... + Nastavení ladicího programu... - - 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. - Tato volba během ladění zapíná rady k nástrojům pro proměnné. Ve výchozím nastavení je tato volba vypnuta, neboť zpomaluje ladění a neposkytuje spolehlivé údaje, protože nepoužívá informace o oblasti. + Adjust Column Widths to Contents + Přizpůsobit šířku sloupců obsahu - - Use tooltips in locals view when debugging - Používat během ladění pro zobrazení místních proměnných rady k nástrojům + Always Adjust Column Widths to Contents + Vždy přizpůsobit šířku sloupců obsahu - - Checking this will enable tooltips in the locals view during debugging. - Zapne během ladění pro zobrazení místních proměnných rady k nástrojům. + Use Alternating Row Colors + Používat střídavých barev řádků - - Use tooltips in breakpoints view when debugging - Používat během ladění v okně s body přerušení rady k nástrojům + Show a Message Box When Receiving a Signal + Při obdržení signálu ukázat okno se zprávami - - Checking this will enable tooltips in the breakpoints view during debugging. - Zapne během ladění v okně s body přerušení rady k nástrojům. + Log Time Stamps + Zaznamenat časová razítka - - Show address data in breakpoints view when debugging - Ukázat během ladění adresy bodů přerušení + Verbose Log + Podrobný zápis - - Checking this will show a column with address information in the breakpoint view during debugging. - Přidá pro ukázání během ladění sloupec s adresami bodů přerušení. + Operate by Instruction + Pracovat na úrovni příkazu - - Show address data in stack view when debugging - Ukázat v okně zásobníku během ladění adresy + Dereference Pointers Automatically + Zrušit automaticky odkazování u ukazovátek - - Checking this will show a column with address information in the stack view during debugging. - Přidá v okně zásobníku pro ukázání během ladění sloupec s adresami. + Watch Expression "%1" + Sledovaný výraz "%1" - - Use debugging helper - Používat pomocnou knihovnu pro výstup dat + Remove Watch Expression "%1" + Odstranit sledovaný výraz "%1" - - Debug debugging helper - Verze ladění pomocné knihovny pro výstup dat o ladění + Watch Expression "%1" in Separate Window + Sledovaný výraz "%1" v odděleném okně - - Use code model - Použít model kódu + Show "std::" Namespace in Types + Ukázat v typech jmenný prostor "std::" - - Recheck debugging helper availability - Prověřit dostupnost pomocné knihovny pro výstup dat o ladění + Show Qt's Namespace in Types + Ukázat v typech jmenný prostor Qt - - Synchronize breakpoints - Seřídit body přerušení + Use Debugging Helpers + Používat pomocnou knihovnu pro výstup dat - - Automatically quit debugger + Debug Debugging Helpers + Verze ladění pomocné knihovny pro výstup dat o ladění + + + Use Code Model + Použít model kódu + + + 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. + Výběr tohoto způsobí, že model kódu C++ (Qt Creatoru) je dotazován na informace ohledně oblasti platnosti proměnných. Výsledkem může být o něco rychlejší oznamování hodnot (u operace ladiče), ale u optimalizovaného kódu to může selhat. + + + Recheck Debugging Helper Availability + Prověřit dostupnost pomocné knihovny pro výstup dat o ladění + + + Synchronize Breakpoints + Seřídit body přerušení + + + Use Precise Breakpoints + Použít přesné body přerušení + + + 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. + Výběr tohoto zapříčiní, že seřízení bodu přerušení bude provedeno po každém kroku. Výsledkem této volby bude nejnovější informace o bodu přerušení říkající, zda byl bod přerušení po nahrání sdílených knihoven vyřešen, ale dojde ke zpomalení dělání kroků. + + + Break on "throw" + Přerušit při "throw" + + + Break on "catch" + Přerušit při "catch" + + + Automatically Quit Debugger Automaticky ukončit ladicí program - - List source files + Use tooltips in main editor when debugging + Používat během ladění v hlavním editoru rady k nástrojům + + + 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. + Tato volba během ladění zapíná rady k nástrojům pro proměnné. Ve výchozím nastavení je tato volba vypnuta, neboť zpomaluje ladění a neposkytuje spolehlivé údaje, protože nepoužívá informace o oblasti. + + + Use Tooltips in Locals View When Debugging + Používat během ladění pro zobrazení místních proměnných rady k nástrojům + + + Use Tooltips in Breakpoints View When Debugging + Používat během ladění v okně s body přerušení rady k nástrojům + + + Show Address Data in Breakpoints View When Debugging + Ukázat během ladění adresy bodů přerušení + + + Show Address Data in Stack View When Debugging + Ukázat v okně zásobníku během ladění adresy + + + List Source Files Ukázat zdrojové soubory - - Skip known frames + Skip Known Frames Přeskočit známá místa - - Enable reverse debugging + Selecting this results in well-known but usually not interesting frames belonging to reference counting and signal emission being skipped while single-stepping. + Způsobí, že nezávažná volání jako například počítání doporučení a předání signálu jsou při dělání jednotlivých kroků přeskočeny. + + + Enable Reverse Debugging Zapnout obrácené ladění - - Reload full stack + Register For Post-Mortem Debugging + Přihlásit Qt Creator jako posmrtný ladicí program (post mortem) + + + Reload Full Stack Nahrát znovu úplný zásobník - - Execute line + Create Full Backtrace + Vytvořit úplnou zpětnou stopu + + + Execute Line Provést řádek + + Change debugger language automatically + Automaticky změnit jazyk ladicího programu + + + Changes the debugger language according to the currently opened file. + Změní jazyk ladicího programu podle v současné době otevřeného souboru. + + + Use tooltips in locals view when debugging + Používat během ladění pro zobrazení místních proměnných rady k nástrojům + + + Checking this will enable tooltips in the locals view during debugging. + Zapne během ladění pro zobrazení místních proměnných rady k nástrojům. + + + Use tooltips in breakpoints view when debugging + Používat během ladění v okně s body přerušení rady k nástrojům + + + Checking this will enable tooltips in the breakpoints view during debugging. + Zapne během ladění v okně s body přerušení rady k nástrojům. + + + Show address data in breakpoints view when debugging + Ukázat během ladění adresy bodů přerušení + + + Checking this will show a column with address information in the breakpoint view during debugging. + Přidá pro ukázání během ladění sloupec s adresami bodů přerušení. + + + Show address data in stack view when debugging + Ukázat v okně zásobníku během ladění adresy + + + Checking this will show a column with address information in the stack view during debugging. + Přidá v okně zásobníku pro ukázání během ladění sloupec s adresami. + + + Use debugging helper + Používat pomocnou knihovnu pro výstup dat + + + Debug debugging helper + Verze ladění pomocné knihovny pro výstup dat o ladění + + + Use code model + Použít model kódu + + + Recheck debugging helper availability + Prověřit dostupnost pomocné knihovny pro výstup dat o ladění + + + Synchronize breakpoints + Seřídit body přerušení + + + Automatically quit debugger + Automaticky ukončit ladicí program + + + List source files + Ukázat zdrojové soubory + + + Skip known frames + Přeskočit známá místa + + + Enable reverse debugging + Zapnout obrácené ladění + + + Reload full stack + Nahrát znovu úplný zásobník + + + Execute line + Provést řádek + Debugger::Internal::DebuggingHelperOptionPage - Debugging Helper Pomocná knihovna pro výstup dat o ladění - Choose DebuggingHelper Location Vybrat umístění pro pomocnou knihovnu pro výstup dat o ladění - Ctrl+Shift+F11 Ctrl+Shift+F11 @@ -2992,289 +3129,231 @@ Chcete je nechat přepsat? Debugger::Internal::GdbEngine - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. Spuštění procesu Gdb se nezdařilo. Buď chybí spustitelný soubor '%1', nebo nemáte dostatečná oprávnění pro spuštění programu. - The Gdb process crashed some time after starting successfully. Proces Gdb po určité době od úspěšného spuštění spadl. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. Došlo k překročení času u poslední funkce waitFor...(). Stav QProcess je nezměněn, a tak se můžete pokusit zavolat waitFor...() ještě jednou. - 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. Při pokusu o zápis do procesu Gdb se vyskytla chyba. Pravděpodobně proces neběží, nebo zavřel svůj vstupní kanál. - An error occurred when attempting to read from the Gdb process. For example, the process may not be running. Při pokusu o čtení z procesu Gdb se vyskytla chyba. Pravděpodobně proces neběží. - An unknown error in the Gdb process occurred. V Gdb procesu se vyskytla neznámá chyba. - Library %1 loaded. - Knihovna %1 nahrána. + Knihovna %1 nahrána. - Library %1 unloaded. - Knihovna %1 vyložena. + Knihovna %1 vyložena. - Thread group %1 created. - Skupina vlákna %1 vytvořena. + Skupina vlákna %1 vytvořena. - Thread %1 created. - Vlákno %1 vytvořeno. + Vlákno %1 vytvořeno. - Thread group %1 exited. - Skupina vlákna %1 ukončena. + Skupina vlákna %1 ukončena. - Thread %1 in group %2 exited. - Vlákno %1 ve skupině %2 ukončeno. + Vlákno %1 ve skupině %2 ukončeno. - Thread %1 selected. - Vlákno %1 vybráno. + Vlákno %1 vybráno. - Stopping temporarily. Dočasně se zastavuje. - Reading %1... Probíhá čtení %1... - Jumped. Stopped. - Proveden skok. Zastaveno. + Proveden skok. Zastaveno. - Loading %1... Nahrává se %1... - Stopped at breakpoint. - Zastaveno na bodu přerušení. + Zastaveno na bodu přerušení. - Stopped: "%1" Zastaveno: "%1" - The debugger you are using identifies itself as: - Používaným ladicím programem je: + Používaným ladicím programem je: - 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. - Tato verze není Qt Creatorem veřejně podporována. + Tato verze není Qt Creatorem veřejně podporována. Ladění nebude pravděpodobně dobře pracovat. Doporučuje se používat gdb 6.7 nebo pozdější. - Running... Běží... - Stop requested... Zastavit požadované... - Processing queued commands. Zpracovávají se zařazené příkazy. - 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. Proces Gdb neodpověděl na příkaz během %1 sekund. Mohlo by to znamenat, že je zaseknutý v nekonečné smyčce nebo potřebuje na rovedení operace delší čas, než bylo očekáváno. Můžete si vybrat mezi delším čekáním nebo přerušením ladění. - Gdb not responding Gdb neodpovídá - Give gdb more time Dát Gdb více času. Pokračovat - Stop debugging Zastavit ladění - - - Executable failed Chyba při provádění - Process failed to start. Spuštění procesu se nezdařilo. - - Executable failed: %1 Chyba při provádění: %1 - Program exited with exit code %1. - Program byl ukončen. Vrácená hodnota %1. + Program byl ukončen. Vrácená hodnota %1. - Program exited after receiving signal %1. - Program byl ukončen po obdržení signálu %1. + Program byl ukončen po obdržení signálu %1. - Program exited normally. - Program byl ukončen obvyklým způsobem. + Program byl ukončen obvyklým způsobem. - <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>Proces byl po obdržení signálu z operačního systému zastaven<p><table><tr><td>Název signálu: </td><td>%1</td></tr><tr><td>Význam signálu: </td><td>%2</td></tr></table> - <Unknown> name <Neznámý> - <Unknown> meaning <Neznámý> - Signal received Signál obdržen - - Stopped. Zastaveno. - Execution Error Chyba při provádění - Cannot continue debugged process: Nelze pokračovat v laděném procesu: - Inferior shutdown failed - Ukončení laděného procesu se nezdařilo + Ukončení laděného procesu se nezdařilo - Continuing after temporary stop... Pokračuje se po dočasném zastavení... - Running requested... Požadováno pokračování... - Step requested... Požadován jednotlivý krok... - Step by instruction requested... Požadován jednotlivý krok prostřednictvím příkazu... - Finish function requested... Požadováno provedení až po konec funkce... - Step next requested... Požadován jednotlivý krok... - Step next instruction requested... Požadován jednotlivý krok prostřednictvím příkazu... - Run to line %1 requested... Požadováno provedení až po řádek %1... - Run to function %1 requested... Požadováno provedení až po funkci %1... - <unknown> address End address of loaded module <Neznámý> - Jumping out of bogus frame... Opouští se neplatný rámeček zásobníku... - Dumper version %1, %n custom dumpers found. Verze pomocné knihovny pro výstup dat: %1, nalezen jeden podporovaný typ. @@ -3283,95 +3362,190 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. - The debugging helper library was not found at %1. Pomocnou knihovnu pro výstup dat o ladění se nepodařilo nalézt v %1. - - - Disassembler failed: %1 Chyba v překladači ze strojového jazyka do asembleru (disasembler): %1 - Unable to start gdb '%1': %2 Ladicí program Gdb '%1' nelze spustit: %2 - Gdb I/O Error Chyba ve vstupu/výstupu Gdb - Unexpected Gdb Exit Neočekávané ukončení Gdb - The gdb process exited unexpectedly (%1). Proces Gdb byl neočekávaně ukončen (%1). - + Library %1 loaded + Knihovna %1 nahrána + + + Library %1 unloaded + Knihovna %1 vyložena + + + Thread group %1 created + Skupina vlákna %1 vytvořena + + + Thread %1 created + Vlákno %1 vytvořeno + + + Thread group %1 exited + Skupina vlákna %1 ukončena + + + Thread %1 in group %2 exited + Vlákno %1 ve skupině %2 ukončeno + + + Thread %1 selected + Vlákno %1 vybráno + + + <unknown> + <Neznámý> + + + Jumped. Stopped + Proveden skok. Zastaveno + + + Target line hit. Stopped + Zásah cílového řádku. Zastaveno + + + Application exited with exit code %1 + Program byl ukončen. Vrácená hodnota %1 + + + Application exited after receiving signal %1 + Program byl ukončen po obdržení signálu %1 + + + Application exited normally + Program byl ukončen obvyklým způsobem + + + Stopped at breakpoint %1 in thread %2. + Zastaveno při %1 ve vlákně %2. + + + Stopped: %1 by signal %2 + Zastaveno: %1, signál %2 + + + Failed to shut down application + Program se nepodařilo ukončit + + + There is no gdb binary available for '%1' + Gdb: Nebyl uveden žádný spustitelný soubor pro '%1' + + + Launching + Spouští se + + + Immediate return from function requested... + Požadován okamžitý návrat z vnitřní funkce... + + + ATTEMPT BREAKPOINT SYNC + ATTEMPT BREAKPOINT SYNC (POKUS O SEŘÍZENÍ BODŮ PŘERUŠENÍ) + + + Snapshot Creation Error + Chyba při vytváření snímku + + + Cannot create snapshot file. + Nepodařilo se vytvořit žádný soubor se snímkem. + + + Cannot create snapshot: + + Nepodařilo se vytvořit žádný snímek: + + + + Snapshot Reloading + Znovunahrání snímku + + + In order to load snapshots the debugged process needs to be stopped. Continuation will not be possible afterwards. +Do you want to stop the debugged process and load the selected snapshot? + Laděný proces musí být zastaven, aby snímek mohl být nahrán. Pokračování už poté nebude možné. +Chcete zastavit laděný proces a nahrát vybraný snímek? + + + Finished retrieving data + Obdržena všechna data + + crashed spadl - code %1 Vrácená hodnota %1 - Adapter start failed Spuštění adaptéru se nepodařilo - Starting inferior... Spouští se laděný proces... - Setting breakpoints... Nastavují se body přerušení... - + Failed to start application: + Program se nepodařilo spustit: + + + Failed to start application + Program se nepodařilo spustit + + Inferior start failed - Spuštění laděného procesu se nezdařilo + Spuštění laděného procesu se nezdařilo - Adapter crashed Adaptér spadl - Cannot find debugger initialization script Nepodařilo se najít spouštěcí skript ladicího programu - 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. K souboru se skriptem zadanému v nastaveních ladicího programu nelze přistupovat '%1'. Pokud není potřeba žádný skript, zvažte navrácení nastavení zpět, abyste se vyhnul tomuto upozornění. - Unable to run '%1': %2 '%1' nelze spustit: %2 - - Retrieving data for stack view... Přijímají se data s údaji o zásobníku... - Retrieving data for watch view (%n requests pending)... Přijímají se data pro zobrazení místních proměnných (ještě jeden zbývající dotaz)... @@ -3380,7 +3554,6 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. - <%n items> In string list @@ -3390,42 +3563,34 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. - Finished retrieving data. - Obdržena všechna data. + Obdržena všechna data. - Debugging helpers not found. Pomocnou knihovnu pro výstup dat o ladění se nepodařilo nalézt. - Custom dumper setup: %1 Spuštění pomocné knihovny pro výstup dat: %1 - <0 items> <prázdné> - <shadowed> <překryto> - <n/a> <n/a> - <anonymous union> <Datový typ anonymní sdružení> - <no information> About variable's value <žádné údaje> @@ -3434,17 +3599,14 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::GdbOptionsPage - Gdb Gdb - Choose Gdb Location - Vybrat umístění Gdb + Vybrat umístění Gdb - Choose Location of Startup Script File Vybrat umístění souboru se spouštěcím skriptem @@ -3452,22 +3614,26 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::ModulesModel - + yes + Ano + + + no + Ne + + Module name Název modulu - Symbols read Symboly přečteny - Start address Počáteční adresa - End address Koncová adresa @@ -3475,82 +3641,110 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::ModulesWindow - Modules Moduly - Update module list - Obnovit seznam s moduly + Obnovit seznam s moduly - Adjust column widths to contents - Přizpůsobit šířku sloupců obsahu + Přizpůsobit šířku sloupců obsahu - Always adjust column widths to contents - Vždy přizpůsobit šířku sloupců obsahu + Vždy přizpůsobit šířku sloupců obsahu - Show source files for module "%1" - Ukázat zdrojové soubory k modulu "%1" + Ukázat zdrojové soubory k modulu "%1" - Load symbols for all modules - Nahrát symboly ke všem modulům + Nahrát symboly ke všem modulům - Load symbols for module - Nahrát symboly k modulu + Nahrát symboly k modulu - Edit file - Upravit soubor + Upravit soubor - Show symbols - Ukázat symboly + Ukázat symboly - Load symbols for module "%1" - Nahrát symboly k modulu "%1" + Nahrát symboly k modulu "%1" - Edit file "%1" - Upravit soubor "%1" + Upravit soubor "%1" - Show symbols in file "%1" + Ukázat symboly v souboru "%1" + + + Update Module List + Obnovit seznam s moduly + + + Show Source Files for Module "%1" + Ukázat zdrojové soubory k modulu "%1" + + + Load Symbols for All Modules + Nahrát symboly ke všem modulům + + + Load Symbols for Module + Nahrát symboly k modulu + + + Edit File + Upravit soubor + + + Show Symbols + Ukázat symboly + + + Load Symbols for Module "%1" + Nahrát symboly k modulu "%1" + + + Edit File "%1" + Upravit soubor "%1" + + + Show Symbols in File "%1" Ukázat symboly v souboru "%1" - + Adjust Column Widths to Contents + Přizpůsobit šířku sloupců obsahu + + + Always Adjust Column Widths to Contents + Vždy přizpůsobit šířku sloupců obsahu + + Address Adresa - Code Kód - Symbol Symbol - Symbols in "%1" Symboly v "%1" @@ -3558,17 +3752,14 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::OutputCollector - Cannot create temporary file: %1 Nepodařilo se vytvořit žádný dočasný soubor: %1 - Cannot create FiFo %1: %2 Nepodařilo se vytvořit FiFo %1: %2 - Cannot open FiFo %1: %2 FiFo %1 se nepodařilo otevřít: %2 @@ -3576,12 +3767,10 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::RegisterHandler - Name Název - Value (base %1) Hodnota (základ %1) @@ -3589,81 +3778,89 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::RegisterWindow - Registers Registry - Open memory editor - Otevřít editor paměti + Otevřít editor paměti - Open memory editor at %1 + Otevřít editor paměti u %1 + + + Reload Register Listing + Registry nahrát znovu + + + Open Memory Editor + Otevřít editor paměti + + + Open Memory Editor at %1 Otevřít editor paměti u %1 - Hexadecimal Šestnáctkový - Decimal Desítkový - Octal Osmičkový - Binary Dvojkový - - Adjust column widths to contents + Adjust Column Widths to Contents Přizpůsobit šířku sloupců obsahu - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Vždy přizpůsobit šířku sloupců obsahu - + Adjust column widths to contents + Přizpůsobit šířku sloupců obsahu + + + Always adjust column widths to contents + Vždy přizpůsobit šířku sloupců obsahu + + Reload register listing - Registry nahrát znovu + Registry nahrát znovu Debugger::Internal::ScriptEngine - Running requested... Požadováno pokračování... - '%1' contains no identifier '%1' neobsahuje žádný identifikátor - String literal %1 Řetězec znaků tvořený písmeny %1 - Cowardly refusing to evaluate expression '%1' with potential side effects Nevyhodnocovat výraz '%1' s možnými postranními účinky - - + Stopped at %1:%2. + Zastaveno při %1:%2. + + Stopped. Zastaveno. @@ -3671,12 +3868,10 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::SourceFilesModel - Internal name Vnitřní název - Full name Úplný název @@ -3684,96 +3879,85 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::SourceFilesWindow - Source Files Zdrojové soubory - - Reload data + Reload Data Data nahrát znovu - - Open file + Open File Otevřít soubor - - Open file "%1"' + Open File "%1"' Otevřít soubor "%1"' - - - Debugger::Internal::StackHandler - - ... - ... + Reload data + Data nahrát znovu + + + Open file + Otevřít soubor + + + Open file "%1"' + Otevřít soubor "%1"' + + + + Debugger::Internal::StackHandler + + ... + ... - <More> <Více> - - Address: Adresa: - - Function: Funkce: - - File: Soubor: - - Line: Řádek: - - From: Od: - - To: Do: - Level Úroveň - Function Funkce - File Soubor - Line Řádek - Address Adresa @@ -3781,60 +3965,77 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::StackWindow - Stack Zásobník - - Copy contents to clipboard + Copy Contents to Clipboard Obsah kopírovat do schránky - - Open memory editor + Open Memory Editor Otevřít editor paměti - - Open memory editor at %1 + Open Memory Editor at %1 Otevřít editor paměti u %1 - - Open disassembler + Open Disassembler Otevřít překladač ze strojového jazyka do asembleru - - Open disassembler at %1 + Open Disassembler at %1 Otevřít překladač ze strojového jazyka do asembleru v %1 - - Adjust column widths to contents + Adjust Column Widths to Contents Přizpůsobit šířku sloupců obsahu - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Vždy přizpůsobit šířku sloupců obsahu + + Copy contents to clipboard + Obsah kopírovat do schránky + + + Open memory editor + Otevřít editor paměti + + + Open memory editor at %1 + Otevřít editor paměti u %1 + + + Open disassembler + Otevřít překladač ze strojového jazyka do asembleru + + + Open disassembler at %1 + Otevřít překladač ze strojového jazyka do asembleru v %1 + + + Adjust column widths to contents + Přizpůsobit šířku sloupců obsahu + + + Always adjust column widths to contents + Vždy přizpůsobit šířku sloupců obsahu + Debugger::Internal::StartExternalDialog - Select Executable Vybrat spustitelný soubor - Executable: Spustitelný soubor: - Arguments: Argumenty: @@ -3842,50 +4043,53 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::StartRemoteDialog - + Select Debugger + Vybrat ladicí program + + Select Executable Vybrat spustitelný soubor + + Select Sysroot + Vybrat Sysroot + + + Select Start Script + Vybrat spouštěcí skript + Debugger::Internal::ThreadsHandler - Thread: %1 Vlákno: %1 - Thread: %1 at %2 (0x%3) Vlákno: %1 u %2 (0x%3) - Thread: %1 at %2, %3:%4 (0x%5) Vlákno: %1 u %2, %3:%4 (0x%5) - Thread ID ID vlákna - Function Funkce - File Soubor - Line Řádek - Address Adresa @@ -3893,31 +4097,33 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::ThreadsWindow - Thread Vlákno - - Adjust column widths to contents + Adjust Column Widths to Contents Přizpůsobit šířku sloupců obsahu - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Vždy přizpůsobit šířku sloupců obsahu + + Adjust column widths to contents + Přizpůsobit šířku sloupců obsahu + + + Always adjust column widths to contents + Vždy přizpůsobit šířku sloupců obsahu + Debugger::Internal::WatchData - - <not in scope> <ne v oblasti> - %1 <shadowed %2> %1 <překryto %2> @@ -3925,67 +4131,66 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::WatchHandler - + Name + Název + + Expression Výraz - ... <cut off> ...<Zbytek odříznut> - Object Address Adresa předmětu - Stored Address - Adresa uložení + Adresa uložení - Internal ID Vnitřní název (ID) - Generation Vytvoření - <Edit> <Upravit> - Root Kořen (root) - Locals Místní proměnné - Tooltip Nástrojová rada - + unknown address + Neznámá adresa + + + %1 object at %2 + Předmět typu %1 u %2 + + Watchers Sledované výrazy - Value Hodnota - Type Typ @@ -3993,141 +4198,179 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Debugger::Internal::WatchWindow - Locals and Watchers Místní proměnné a sledované výrazy - - Change format for type '%1' + Change Format for Type "%1" Změnit formát pro typ '%1' - + Change Format for Type + Změnit formát pro typ + + + Change Format for Object at %1 + Změnit formát pro předmět u %1 + + + Change Format for Object + Změnit formát pro předmět + + + Insert New Watch Item + Vložit nový sledovaný výraz + + + Select Widget to Watch + Vybrat prvek za účelem sledování + + + Open Memory Editor... + Otevřít editor paměti... + + + Open Memory Editor at %1 + Otevřít editor paměti u %1 + + + Refresh Code Model Snapshot + Obnovit stav modelu kódu + + + Adjust Column Widths to Contents + Přizpůsobit šířku sloupců obsahu + + + Always Adjust Column Widths to Contents + Vždy přizpůsobit šířku sloupců obsahu + + + Change format for type '%1' + Změnit formát pro typ '%1' + + Change format for expression '%1' - Změnit formát pro výraz '%1' + Změnit formát pro výraz '%1' - Clear Smazat - Change format for type - Změnit formát pro typ + Změnit formát pro typ - Change format for expression - Změnit formát pro výraz + Změnit formát pro výraz - Select widget to watch - Vybrat prvek za účelem sledování + Vybrat prvek za účelem sledování - Open memory editor... - Otevřít editor paměti... + Otevřít editor paměti... - Open memory editor at %1 - Otevřít editor paměti u %1 + Otevřít editor paměti u %1 - Refresh code model snapshot - Obnovit stav modelu kódu + Obnovit stav modelu kódu - Adjust column widths to contents - Přizpůsobit šířku sloupců obsahu + Přizpůsobit šířku sloupců obsahu - Always adjust column widths to contents - Vždy přizpůsobit šířku sloupců obsahu + Vždy přizpůsobit šířku sloupců obsahu - Insert new watch item - Vložit nový sledovaný výraz + Vložit nový sledovaný výraz DebuggerPane - Clear contents - Smazat obsah + Smazat obsah - Save contents + Uložit obsah + + + Clear Contents + Smazat obsah + + + Save Contents Uložit obsah DebuggingHelperOptionPage - This will enable nice display of Qt and Standard Library objects in the Locals&Watchers view - Toto nastavení umožní hezké zobrazení Qt a běžných knihovních předmětů v pohledu "Místní proměnné a &sledované výrazy" + Toto nastavení umožní hezké zobrazení Qt a běžných knihovních předmětů v pohledu "Místní proměnné a &sledované výrazy" - Use debugging helper - Používat pomocnou knihovnu pro výstup dat + Používat pomocnou knihovnu pro výstup dat - This will load a dumper library - Nahraje pomocnou knihovnu pro výstup dat + Nahraje pomocnou knihovnu pro výstup dat - Use debugging helper from custom location Používat pomocnou knihovnu pro výstup dat o ladění z vlastního umístění - Location: Umístění: - Debug debugging helper Verze ladění pomocné knihovny pro výstup dat o ladění - Debugging helper - Pomocná knihovna pro výstup dat o ladění + Pomocná knihovna pro výstup dat o ladění - 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. - + Používá kódový model Qt Creatoru, aby našel, zda proměnná již má nějakou hodnotu na místě přerušení ladicím programem. - Use code model Použít model kódu + + <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>Pomocná knihovna pro výstup dat slouží pouze pro hezké zobrazení předmětů určitého typu jako QString nebo std::map v okně &quot;Místní proměnné a sledované výrazy&quot;.</p> +<p> K ladění s Qt Creatorem však není bezpodmínečně požadována. </p></body></html> + + + Use Debugging Helper + Používat pomocnou knihovnu pro výstup dat + DependenciesModel - Unable to add dependency Nepodařilo se přidat závislost - This would create a circular dependency. Tímto by se vytvořila kruhová závislost. @@ -4135,86 +4378,111 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Designer - The file name is empty. Název souboru je prázdný. - XML error on line %1, col %2: %3 Chyba v XML na řádku %1, sloupec %2: %3 - The <RCC> root element is missing. Kořenový prvek (<RCC>) chybí. - + Xml Editor + Editor XML + + Designer Designer - Class Generation Vytvoření třídy + + Form Editor + Editor formulářů + + + The generated header of the form '%1' could be found. +Rebuilding the project might help. + Automaticky vytvořený soubor hlavičky formuláře '%1 se nepodařilo najít. +Zkuste projekt vytvořit znovu. + + + The generated header '%1' could not be found in the code model. +Rebuilding the project might help. + Automaticky vytvořený soubor hlavičky '%1 se v modelu kódu nepodařilo najít. +Zkuste projekt vytvořit znovu. + Designer::Internal::FormClassWizardDialog - Qt Designer Form Class Třída formuláře programu Qt Designer + + Form Template + Předloha formuláře + + + Class Details + Podrobnosti o třídě + Designer::Internal::FormClassWizardPage - %1 - Error %1 - Chyba - Choose a class name - Vyberte název třídy + Vyberte název třídy - Class Třída - Configure... Nastavení... + + Choose a Class Name + Vyberte název třídy + Designer::Internal::FormEditorPlugin - Qt - Qt + Qt - Qt Designer Form Formulář programu Qt Designer - + Creates a Qt Designer form that you can add to a Qt C++ project. This is useful if you already have an existing class for the UI business logic. + Vytvoří formůlář Qt Designeru, který můžete přidat do projektu C++.Tuto předlohu použijte, jestliže již existuje třída pro běh programu. + + + Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt C++ Project. + Vytvoří formulář Qt Designeru s odpovídajícím trupem třídy (sestávajícím z hlavičky C++ a zdrojového souboru) pro účely provedení. Formulář a třídu můžete přidat do existujícího projektu Qt C++. + + Creates a Qt Designer form file (.ui). - Vytvoří soubor formuláře programu Qt Designer (.ui). + Vytvoří soubor formuláře programu Qt Designer (.ui). - Creates a Qt Designer form file (.ui) with a matching class. - Vytvoří soubor formuláře programu Qt Designer (.ui) s odpovídající třídou. + Vytvoří soubor formuláře programu Qt Designer (.ui) s odpovídající třídou. - Qt Designer Form Class Třída formuláře programu Qt Designer @@ -4222,151 +4490,142 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Designer::Internal::FormEditorW - - Widget Box Krabice s prvky - - Object Inspector Ukazatel předmětů - - + Widget box + Krabice s prvky + + Property Editor Editor vlastností - Signals & Slots Editor - Editor signálů &a otvorů + Editor signálů &a otvorů - - Action Editor Editor činností - For&m editor - Editor for&mulářů + Editor for&mulářů - Edit widgets - Upravit prvky + Upravit prvky - F3 F3 - Edit signals/slots - Upravit signály/otvory + Upravit signály/otvory - F4 F4 - Edit buddies - Upravit kamarády + Upravit kamarády - Edit tab order + Upravit pořadí zarážek + + + For&m Editor + Editor for&mulářů + + + Edit Widgets + Upravit prvky + + + Edit Signals/Slots + Upravit signály/otvory + + + Edit Buddies + Upravit kamarády + + + Edit Tab Order Upravit pořadí zarážek - Meta+H - Ctrl+H Ctrl+H - Meta+L - Ctrl+L Ctrl+L - Meta+G - Ctrl+G Ctrl+G - Meta+J - Ctrl+J Ctrl+J - Views - Pohledy + Pohledy - Signals && Slots Editor Editor signálů a otvorů - Locked - Ukotveno + Ukotveno - Reset to Default Layout - Nastavit znovu výchozí rozvržení + Nastavit znovu výchozí rozvržení - Ctrl+Alt+R Ctrl+Alt+R - About Qt Designer plugins.... O přídavných modulech programu Qt Designer... - Preview in Náhled v - Designer Designer - The image could not be created: %1 Obrázek se nepodařilo vytvořit: %1 @@ -4374,12 +4633,14 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Designer::Internal::FormTemplateWizardPage - Choose a form template + Vyberte předlohu formuláře + + + Choose a Form Template Vyberte předlohu formuláře - %1 - Error %1 - Chyba @@ -4387,17 +4648,14 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Designer::Internal::FormWindowFile - Error saving %1 Chyba při ukládání %1 - Unable to open %1: %2 %1 nelze otevřít: %2 - Unable to write to %1: %2 Soubor %1 nelze zapsat: %2 @@ -4405,37 +4663,35 @@ Můžete si vybrat mezi delším čekáním nebo přerušením ladění. Designer::Internal::FormWizardDialog - Qt Designer Form Formulář programu Qt Designer + + Form Template + Předloha formuláře + Designer::Internal::QtCreatorIntegration - The class definition of '%1' could not be found in %2. Vymezení třídy '%1' se nepodařilo nalézt v %2. - Error finding/adding a slot. Chyba při nalezení/přidání kódu otvoru. - Internal error: No project could be found for %1. Vnitřní chyba: Nepodařilo se najít žádný projekt, který by patřil k %1. - No documents matching '%1' could be found. Rebuilding the project might help. Nepodařilo se nalézt žádné dokumenty, které by odpovídaly '%1'. Pokuste se projekt sestavit znovu. - Unable to add the method definition. Nepodařilo se přidat vymezení postupu. @@ -4443,34 +4699,33 @@ Pokuste se projekt sestavit znovu. DocSettingsPage - Registered Documentation Zapsaná dokumentace - Add... Přidat... - Remove Odstranit + + Add and remove compressed help files, .qch. + Přidat a odstranit stlačené soubory s nápovědou, .qch. + EmbeddedPropertiesPage - Skin: - Skin: + 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. - Použijte Virtual Box + Použijte Virtual Box Poznámka: Tímto se do prostředí pro sestavování přidá řetěz nástrojů a program se spustí uvnitř virtuálního stroje. Také se automaticky nastaví správná verze Qt. @@ -4478,65 +4733,57 @@ Také se automaticky nastaví správná verze Qt. ExtensionSystem::Internal::PluginDetailsView - Name: Název: - Version: Verze: - Compatibility Version: Slučitelné s verzí: - Vendor: Prodejce: - Url: URL: - Location: Umístění: - Description: Popis: - Copyright: Autorské právo: - License: Licence: - Dependencies: Závislosti: + + Group: + Skupina: + ExtensionSystem::Internal::PluginErrorView - State: Stav: - Error Message: Hlášení o chybě: @@ -4544,17 +4791,14 @@ Také se automaticky nastaví správná verze Qt. ExtensionSystem::Internal::PluginSpecPrivate - File does not exist: %1 Soubor neexistuje: '%1' - Could not open file for read: %1 Soubor se nepodařilo otevřít pro čtení: %1 - Error parsing file %1: %2, at line %3, column %4 Chyba při čtení souboru %1: %2 na řádku %3, sloupec %4 @@ -4562,110 +4806,93 @@ Také se automaticky nastaví správná verze Qt. ExtensionSystem::Internal::PluginView - State - Stav + Stav - Name Název - Version Verze - Vendor Prodejce - Location - Umístění + Umístění + + + Load + Nahrát ExtensionSystem::PluginErrorView - Invalid Neplatný - Description file found, but error on read Byl nalezen poškozený popisný soubor - Read Přečteno - Description successfully read Popisný soubor byl přečten - Resolved Závislosti určeny - Dependencies are successfully resolved Závislosti byly úspěšně určeny - Loaded Nahráno - Library is loaded Knihovna byla nahrána - Initialized Spuštěno - Plugin's initialization method succeeded Postup spuštění přídavného modulu byl úspěšný - Running Běží - Plugin successfully loaded and running Přídavný modul byl úspěšně nahrán a běží - Stopped Zastaveno - Plugin was shut down Přídavný modul byl zastaven - Deleted Smazáno - Plugin ended its life cycle and was deleted Přídavný modul byl po uplynutí své doby životnosti smazán @@ -4673,32 +4900,26 @@ Také se automaticky nastaví správná verze Qt. ExtensionSystem::PluginManager - Circular dependency detected: Byla zjištěna kruhová závislost: - %1(%2) depends on %1 (%2) závisí na - %1(%2) %1(%2) - Cannot load plugin because dependencies are not resolved - Nelze nahrát přídavný modul, protože se nepodařilo určit závislosti + Nelze nahrát přídavný modul, protože se nepodařilo určit závislosti - - Cannot load plugin because dependency failed to load: %1(%2) Reason: %3 Nelze nahrát přídavný modul, protože se nepodařilo nahrát jednu závislost: %1(%2) @@ -4708,65 +4929,61 @@ Důvod: %3 FakeVim::Internal - Toggle vim-style editing - Přepnout úpravy do režimu vim + Přepnout úpravy do režimu vim - FakeVim properties... - Nastavení FakeVim... + Nastavení FakeVim... + + + Use Vim-style Editing + Použít úpravy v režimu Vim + + + Read .vimrc + Číst .vimrc FakeVim::Internal::FakeVimHandler - Not implemented in FakeVim Neprovedeno v FakeVim - E20: Mark '%1' not set - E20: Značka '%1' není určena + E20: Značka '%1' není určena - %1%2% %1%2% - %1All %1Vše - File '%1' exists (add ! to override) - Soubor '%1' již existuje (Přidejte !, abyste jej přepsal) + Soubor '%1' již existuje (Přidejte !, abyste jej přepsal) - Cannot open file '%1' for writing - Soubor '%1' nelze otevřít pro zápis + Soubor '%1' nelze otevřít pro zápis - "%1" %2 %3L, %4C written "%1" %2 %3L, %4C zapsáno - Cannot open file '%1' for reading - Soubor '%1' nelze otevřít pro čtení + Soubor '%1' nelze otevřít pro čtení - "%1" %2L, %3C "%1" %2L, %3C - %n lines filtered Jeden řádek přefiltrován @@ -4775,42 +4992,67 @@ Důvod: %3 - %n lines >ed %1 time What is that? - + Jeden řádek >ed %1-krát %n řádky >ed %1-krát %n řádky >ed %1-krát - E512: Unknown option: - E512: Neznámá volba: + E512: Neznámá volba: + + + Mark '%1' not set + Značka '%1' není určena + + + Unknown option: + Neznámá volba: + + + File "%1" exists (add ! to override) + Soubor '%1' již existuje (Přidejte !, abyste jej přepsal) + + + Cannot open file "%1" for writing + Soubor '%1' nelze otevřít pro zápis + + + Cannot open file "%1" for reading + Soubor '%1' nelze otevřít pro čtení + + + %n lines %1ed %2 time + + Jeden řádek %1ed %2-krát + %n řádky %1ed %2-krát + %n řádků %1ed %2-krát + + + + Can't open file %1 + Soubor '%1' nelze otevřít - Pattern not found: Vzor hledání nenalezen: - search hit BOTTOM, continuing at TOP Hledání dosáhlo na konec, pokračuje se na začátku - search hit TOP, continuing at BOTTOM Hledání dosáhlo na začátek, pokračuje se na konci - Already at oldest change Dosažena nejstarší změna - Already at newest change Dosažena poslední změna @@ -4818,12 +5060,10 @@ Důvod: %3 FakeVim::Internal::FakeVimOptionPage - General Obecné - FakeVim FakeVim @@ -4831,18 +5071,26 @@ Důvod: %3 FakeVim::Internal::FakeVimPluginPrivate - - + Switch to next file + Přejít k dalšímu souboru + + + Switch to previous file + Přejít k předchozímu souboru + + Quit FakeVim Ukončit FakeVim - + File not saved + Soubor neuložen + + Saving succeeded Uložení proběhlo úspěšně - %n files not saved Jeden soubor nebyl uložen @@ -4851,12 +5099,10 @@ Důvod: %3 - Not an editor command: %1 - Není příkazem editoru: %1 + Není příkazem editoru: %1 - FakeVim Information Informace k FakeVim @@ -4864,100 +5110,141 @@ Důvod: %3 FakeVimOptionPage - Use FakeVim Používat FakeVim - Vim style settings - Nastavení pro styl Vim + Nastavení pro styl Vim - vim's "expandtab" option - Nastavení rozbalení zarážky (expandtab) u vim + Nastavení rozbalení zarážky (expandtab) u vim - Expand tabulators: - Rozbalit zarážky: + Rozbalit zarážky: - Highlight search results: - Zvýraznit výsledky hledání: + Zvýraznit výsledky hledání: - Shift width: Odsazení: - Smart tabulators: - Režim chytrých zarážek: + Režim chytrých zarážek: - Start of line: - Začátek řádku: + Začátek řádku: - vim's "tabstop" option Nastavení zastavení zarážky (tabstop) u vim - Tabulator size: Šířka zarážky: - Backspace: Zpětná klávesa: - VIM's "autoindent" option - Nastavení automatického odsazení (autoindent) u vim + Nastavení automatického odsazení (autoindent) u vim - Automatic indentation: - Automatické odsazení: + Automatické odsazení: - Copy text editor settings - Kopírovat nastavení textového editoru + Kopírovat nastavení textového editoru - Set Qt style - Nastavit styl Qt + Nastavit styl Qt - Set plain style - Nastavit prostý styl + Nastavit prostý styl - Incremental search: - Přírůstkové hledání: + Přírůstkové hledání: + + + Read .vimrc + Číst .vimrc + + + Vim Behavior + Chování Vim + + + Automatic indentation + Automatické odsazení + + + Start of line + Začátek řádku + + + Smart indentation + Chytré odsazování + + + Use search dialog + Použít dialog pro hledání + + + Expand tabulators + Rozbalit zarážky + + + Show position of text marks + Ukázat polohu textových značek + + + Smart tabulators + Režim chytrých zarážek + + + Highlight search results + Zvýraznit výsledky hledání + + + Incremental search + Přírůstkové hledání + + + Keyword characters: + Znaky klíčového slova: + + + Copy Text Editor Settings + Kopírovat nastavení textového editoru + + + Set Qt Style + Nastavit styl Qt + + + Set Plain Style + Nastavit prostý styl FilterNameDialogClass - Add Filter Name Přidat název filtru - Filter Name: Název filtru: @@ -4965,174 +5252,160 @@ Důvod: %3 FilterSettingsPage - Filters Filtr - 1 1 - Add Přidat - Remove Odstranit - Attributes Vlastnosti + + <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řidat, upravit a odstranit dokumentové filtry, které určují v režimu nápovědy zobrazenou dokumentaci. Vlastnosti jsou popsány v dokumentech. Vyberte je, abyste zobrazil množinu související dokumentace. Všimněte si, že některé vlastnosti jsou popsány ve více dokumentech. +</p></body></html> + Find::Internal::FindDialog - Search for... Hledání... - Sc&ope: &Oblast: - &Search &Hledat - Search &for: &Hledat: - Close Zavřít - &Case sensitive &Rozlišující velká a malá písmena - &Whole words only Pouze celá &slova + + Search && Replace + Hledat a nahradit + Find::Internal::FindPlugin - &Find/Replace - &Hledat/Nahradit + &Hledat/Nahradit - Find... - Hledat... + Hledat... - Ctrl+Shift+F - Ctrl+Shift+F + Ctrl+Shift+F Find::Internal::FindToolBar - Current Document - Nynější dokument + Nynější dokument + + + Find/Replace + Hledat/Nahradit - Enter Find String Zadat vzor hledání - Ctrl+E Ctrl+E - Find Next Najít další - Find Previous Najít předchozí - Replace && Find Next Nahradit a najít další - Ctrl+= Ctrl+= - Replace && Find Previous Nahradit a najít předchozí - Replace All Nahradit vše - Case Sensitive Rozlišující velká a malá písmena - Whole Words Only Pouze celá slova - Use Regular Expressions - Používat pravidelně se opakující výrazy + Používat regulární výrazy Find::Internal::FindWidget - Find Hledat - Find: Hledat: - Replace with: Nahradit: - All Vše - ... ... @@ -5140,32 +5413,26 @@ Důvod: %3 Find::SearchResultWindow - Search Results Výsledky hledání - No matches found! Nebyly nalezeny žádné odpovídající shody! - Expand All Rozbalit vše - Replace with: Nahradit: - Replace all occurrences Nahradit všechny výskyty - Replace Nahradit @@ -5173,67 +5440,54 @@ Důvod: %3 GdbOptionsPage - Gdb interaction - Výměna informací Gdb + Výměna informací Gdb - Gdb location: - Umístění Gdb: + Umístění Gdb: - Environment: Prostředí: - This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. Toto je buď prázdné nebo to ukazuje na soubor obsahující příkazy gdb, který bude spuštěn bezprostředně po spuštění Gdb. - Gdb startup script: Spouštěcí skript Gdb: - Behaviour of breakpoint setting in plugins - Chování nastavení bodu přerušení v přídavných modulech + Chování nastavení bodu přerušení v přídavných modulech - This is the slowest but safest option. Toto je nejbezpečnější nastavení, ale zároveň i nejpomalejší. - Try to set breakpoints in plugins always automatically. Pokuste se nastavit body přerušení v přídavných modulech vždy automaticky. - Try to set breakpoints in selected plugins Pokuste se nastavit body přerušení ve vybraných přídavných modulech - Matching regular expression: - Odpovídající pravidelně se opakujícímu výrazu: + Odpovídající regulárnímu výrazu: - Never set breakpoints in plugins automatically Nikdy nenastavovat body přerušení v přídavných modulech automaticky - This is either a full absolute path leading to the gdb binary you intend to use or the name of a gdb binary that will be searched in your PATH. - Zadejte úplnou absolutní cestu vedoucí ke spustitelnému souboru gdb, který hodláte použít, nebo relativní cestu, která se bude hledat v proměnné cesty (název spustitelného soubru gdb, který bude hledán ve vaší CESTĚ). + Zadejte úplnou absolutní cestu vedoucí ke spustitelnému souboru gdb, který hodláte použít, nebo relativní cestu, která se bude hledat v proměnné cesty (název spustitelného soubru gdb, který bude hledán ve vaší CESTĚ). - When this option is checked, the debugger plugin attempts to extract full path information for all source files from gdb. This is a slow process but enables setting breakpoints in files with the same file @@ -5244,17 +5498,14 @@ o pomalý pochod, ale umožňuje nastavení bodů přerušení v souborech se st souborovým názvem v různých adresářích. - Use full path information to set breakpoints Použít úplnou informaci o cestě pro nastavení bodů přerušení - Gdb timeout: Překročení času u 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 @@ -5265,21 +5516,43 @@ Výchozí hodnota, jíž je 20 sekund, by měla postačovat v případě větši kdy na pomalých strojích nahrávání velkých knihoven nebo výpis zdrojových souborů zabere mnohem více času, než je nastaveno. V takovém případě by se měla hodnota zvýšit. - + + Gdb + Gdb + + + Enable reverse debugging + Zapnout obrácené ladění + + + 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. + Tato volba má za následek, že v určitých situacích sloučí 'Jednotlivý krok do' více kroků do jednoho, čímž se ladění uspíší. Například se přeskočí kód počítání atomárních odkazů; a jednotlivý 'Krok do' pro vyslání signálu skončí přímo v otvoru s ním spojeném. + + + Skip known frames when stepping + Přeskočit při provádění jednotlivého kroku známá místa + + + Show a message box when receiving a signal + Při obdržení signálu ukázat okno se zprávami + + + Behavior of Breakpoint Setting in Plugins + Chování nastavení bodu přerušení v přídavných modulech + + GenericMakeStep - Override %1: Přepsat %1: - Make arguments: Argumenty příkazového řádku pro 'make': - Targets: Cíle: @@ -5287,25 +5560,25 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš GenericProject - <new> - <nový> + <nový> GenericProjectManager::Internal::GenericBuildSettingsWidget - + Configuration Name: + Název nastavení: + + Build directory: Adresář pro sestavování: - Tool Chain: Řetězec nástrojů: - Generic Manager Obecný správce @@ -5313,12 +5586,15 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš GenericProjectManager::Internal::GenericMakeStepConfigWidget - + Make + GenericMakestep display name. + Make + + Override %1: Přepsat %1: - <b>Make:</b> %1 %2 <b>Příkaz Make:</b> %1 %2 @@ -5326,151 +5602,171 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš GenericProjectManager::Internal::GenericProjectWizard - Import of Makefile-based Project - Zavedení projektu založeného na 'Makefile' + Zavedení projektu založeného na 'Makefile' - Creates a generic project, supporting any build system. - Vytvoří obecný projekt, který podporuje jakýkoli oblíbený systém pro sestavování. + Vytvoří obecný projekt, který podporuje jakýkoli oblíbený systém pro sestavování. - Projects - Projekty + Projekty - The project %1 could not be opened. - Projekt %1 se nepodařilo otevřít. + Projekt %1 se nepodařilo otevřít. + + + Import Existing Project + Zavést stávající projekt + + + Imports existing projects that do not use qmake or CMake. This allows you to use Qt Creator as a code editor. + Zavede stávající projekty, které nepoužívají qmake nebo CMake. Toto vám umožní používat Qt Creator jako editor kódu. GenericProjectManager::Internal::GenericProjectWizardDialog - Import of Makefile-based Project - Zavedení projektu založeného na 'Makefile' + Zavedení projektu založeného na 'Makefile' - Generic Project - Obecný projekt + Obecný projekt + + + Import Existing Project + Zavést stávající projekt + + + Project Name and Location + Název a umístění projektu - Project name: Název projektu: - Location: Umístění: - + Location + Umístění + + Second Page Title - Název druhé strany + Název druhé strany Git::Internal::BranchDialog - Checkout - Prověřit + Přezkoušet (checkout; dostat kopii) - Delete - Smazat + Smazat - Unable to find the repository directory for '%1'. - Adresář skladiště pro '%1' se nepodařilo najít. + Adresář skladiště pro '%1' se nepodařilo najít. + + + Diff + Rozdíly (diff) + + + Refresh + Obnovit + + + Delete... + Smazat... - Delete Branch Smazat větev - Would you like to delete the branch '%1'? Chcete smazat větev '%1'? - Failed to delete branch Smazání větve se nezdařilo - Failed to create branch Vytvoření větve se nezdařilo - Failed to stash Operace s ulitím (stash) se nepodařila - + Checkout failed + Přezkoušení (checkout; dostat kopii) se nezdařilo + + Would you like to create a local branch '%1' tracking the remote branch '%2'? Chcete vytvořit místní větev '%1', která bude sledovat vzdálenou větev '%2'? - Create branch Vytvořit větev - Failed to create a tracking branch Vytvoření sledující větve se nezdařilo - Branches Větve - General information - Obecné informace + Obecné informace - Repository: - Skladiště: + Skladiště: - Remote branches + Vzdálené větve + + + Remote Branches Vzdálené větve Git::Internal::ChangeSelectionDialog - Select a Git commit - Vyberte odeslání do Git + Vyberte odeslání do Git - Select Git repository + Vyberte skladiště Git + + + Select a Git Commit + Vyberte odeslání do Git + + + Select Git Repository Vyberte skladiště Git - Error Chyba - Selected directory is not a Git repository Vybraný adresář není skladištěm Git @@ -5478,22 +5774,18 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Git::Internal::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. Všimněte si, že přídavný modul Git pro QtCreator stále ještě není schopen spolupracovat se serverem. Tudíž nebude pracovat ani ruční rozpoznání ssh a tak dále. - Unable to determine the repository for %1. Skladiště pro %1 se nepodařilo určit. - Unable to parse the file output. Výstup souboru se nepodařilo vyhodnotit. - Executing: %1 %2 Executing: <executable> <arguments> @@ -5501,37 +5793,47 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš - Waiting for data... Čeká se na data... - Git Diff Git Diff - Git Diff %1 Git Diff %1 - + Git Diff Branch %1 + Git Diff Branch %1 + + + Git Log + Git Log + + Git Log %1 Git Log %1 - + Cannot describe '%1'. + Ke změně '%1' nelze ukázat žádné podrobnosti. + + Git Show %1 Git Show %1 - Git Blame %1 Git Blame %1 + + Unable to checkout %1 of %2: %3 + Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message + Nelze přezkoušet (operace 'checkout' se nezdařila) větev %1 skladiště %2: %3 + - Unable to add %n file(s) to %1: %2 Jeden soubor se nepodařilo přidat do %1: %2 @@ -5540,7 +5842,18 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš - + Unable to remove %n file(s) from %1: %2 + + Jeden soubor v %1 se nepodařilo odstraniit: %2 + %n soubory v %1 se nepodařilo odstraniit: %2 + %n souborů v %1 se nepodařilo odstraniit: %2 + + + + Unable to reset %1: %2 + Skladiště %1 se nepodařilo znovu nastavit: %2 + + Unable to reset %n file(s) in %1: %2 Jeden soubor v %1 se nepodařilo znovu nastavit: %2 @@ -5548,52 +5861,132 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Žádný z %n souborů v %1 se nepodařilo znovu nastavit: %2 + + Unable to checkout %1 of %2 in %3: %4 + Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message + Operace přezkoušení (checkout) se nepodařila pro revizi %1 z %2 ve skladišti %3: %4 + + + Unable to find parent revisions of %1 in %2: %3 + Failed to find parent revisions of a SHA1 for "annotate previous" + Nadřazenou revizi %1 ve skladišti %2 se nepodařilo určit: %3 + + + Invalid revision + Neplatná revize + + + Unable to retrieve branch of %1: %2 + Větev skladiště %1 nelze určit: %2 + + + Unable to retrieve top revision of %1: %2 + Současný stav skladiště %1 nelze určit: %2 + + + Unable to describe revision %1 in %2: %3 + Popis revize %1 ve skladišti %2 nelze určit: %3 + + + Stash Description + Popis ulitých změn + + + Description: + Popis: + + + Unable to resolve stash message '%1' in %2 + Look-up of a stash via its descriptive message failed. + Nepodařilo se najít žádné ulité změny s popisem '%1' ve skladišti %2 + + + Unable to run a 'git branch' command in %1: %2 + Příkaz pro větev 'git branch' se nepodařilo provést: %1: %2 + + + Unable to run 'git show' in %1: %2 + Příkaz pro ukázání 'git show' se nepodařilo provést: %1: %2 + + + Unable to run 'git clean' in %1: %2 + Příkaz pro vyčištění 'git clean' se nepodařilo provést: %1: %2 + + + There were warnings while applying %1 to %2: +%3 + Při použití opravného souboru %1 na skladiště %2 se objevila varování: +%3 + + + Unable apply patch %1 to %2: %3 + Opravný soubor %1 se na skladiště %2 nepodařilo použít: %3 + + + Unable to restore stash %1: %2 + Ulité změny %1 se nepodařilo obnovit: %2 + + + Unable to restore stash %1 to branch %2: %3 + Ulité změny %1 nelze ve větvi %2 obnovit: %3 + + + Unable to remove stashes of %1: %2 + Odstranění ulitých změn ze skladiště %1 se nezdařilo: %2 + + + Unable to remove stash %1 of %2: %3 + Odstranění ulitých změn %1 ze skladiště %2 se nezdařilo: %3 + + + Unable retrieve stash list of %1: %2 + Seznam ulitých změn skladiště %1 nelze získat: %2 + + + Unable to determine git version: %1 + Používanou verzi Gitu se nepodařilo určit. %1 + - Unable to checkout %n file(s) in %1: %2 - + Operace prověření (checkout) se u jednoho souboru nepodařila %1: %2 Operace prověření (checkout) se u %n souborů nepodařila %1: %2 Operace prověření (checkout) se u %n souborů nepodařila %1: %2 - Unable stash in %1: %2 - Operace ulití (stash) se v %1 nepodařila: %2 + Operace ulití změn (stash) se v %1 nepodařila: %2 - Unable to run branch command: %1: %2 - Příkaz pro větev 'branch' se nepodařilo provést: %1: %2 + Příkaz pro větev 'branch' se nepodařilo provést: %1: %2 - Unable to run show: %1: %2 - Příkaz pro ukázání (show) se nepodařilo provést: %1: %2 + Příkaz pro ukázání (show) se nepodařilo provést: %1: %2 - Changes Změny - You have modified files. Would you like to stash your changes? Soubory byly změněny. Chcete provést příkaz pro ulití (stash) těchto změn? - Unable to obtain the status: %1 Nepodařilo se získat stav: %1 - The repository %1 is not initialized yet. Skladiště %1 ještě není spuštěno. + + You did not checkout a branch. + Není přítomna žádná větev. + - Committed %n file(s). @@ -5603,7 +5996,6 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš - Unable to commit %n file(s): %1 @@ -5616,22 +6008,26 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš - Revert Vrátit - The file has been changed. Do you want to revert it? Soubor byl změněn. Chcete vrátit změny? - The file is not modified. Soubor nebyl změněn. - + The command 'git pull --rebase' failed, aborting rebase. + Příkaz 'git pull --rebase' se nezdařil. Operace rebase se ruší. + + + Git SVN Log + Git SVN Log + + There are no modified files. Nejsou žádné změněné soubory. @@ -5639,257 +6035,304 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Git::Internal::GitPlugin - &Git &Git - Diff Current File Rozdíly (diff) nynějšího souboru - Diff "%1" Rozdíly (diff) pro "%1" - Alt+G,Alt+D Alt+G, Alt+D - File Status - Stav souboru + Stav souboru - Status Related to "%1" - Stav související s "%1" + Stav související s "%1" - Alt+G,Alt+S - Alt+G, Alt+S + Alt+G, Alt+S - Log File Zápis pro soubor - Log of "%1" Zápis pro "%1" - Alt+G,Alt+L Alt+G, Alt+L - Blame Odpovědnost pro soubor (blame) - Blame for "%1" Odpovědnost (blame) za "%1" - Alt+G,Alt+B Alt+G, Alt+B - Undo Changes Změny vrátit zpět - Undo Changes for "%1" Změny pro "%1" vrátit zpět - Alt+G,Alt+U Alt+G, Alt+U - Stage File for Commit Připojit soubor pro odeslání (stage) - Stage "%1" for Commit Připojit "%1" pro odeslání (stage) - Alt+G,Alt+A Alt+G, Alt+A - Unstage File from Commit Odstranit soubor z odeslání (unstage) - Unstage "%1" from Commit Odstranit "%1" z odeslání (unstage) - Diff Current Project Rozdíly (diff) pro nynější projekt - Diff Project "%1" Rozdíly (diff) pro projekt "%1" - Project Status - Stav projektu + Stav projektu - Status Project "%1" - Stav projektu "%1" + Stav projektu "%1" - Log Project Zápis pro projekt - Log Project "%1" Zápis pro projekt "%1" - Alt+G,Alt+K Alt+G, Alt+K - Undo Project Changes - Změny v projektu vrátit zpět + Změny v projektu vrátit zpět - Stash Ulít (stash) - Saves the current state of your work. Uloží nynější stav vaší práce. - + Clean Project... + Vyčistit projekt... + + + Clean Project "%1"... + Vyčistit projekt "%1"... + + + Diff Repository + Rozdíly (diff) skladiště + + + Repository Status + Stav skladiště + + + Log Repository + Zápis (log) skladiště + + + Apply Patch + Použít opravný program + + + Apply "%1" + Použít opravný program "%1" + + + Apply Patch... + Použít opravný program... + + + Undo Repository Changes + Změny ve skladišti vrátit zpět + + + Create Repository... + Vytvořit skladiště... + + + Clean Repository... + Vyčistit skladiště... + + + Stash Snapshot... + Snímek ulitých změn... + + + Saves the current state of your work and resets the repository. + Uloží nynější stav vaší práce a nastaví znovu skladiště. + + Pull - Táhnout (pull) + Vytáhnout (pull) - Stash Pop Ulít pop (stash pop) - Restores changes saved to the stash list using "Stash". Obnoví změny uložené do seznamu s ulitými změnami pomocí příkazu "Stash". - Commit... Odeslat... - Alt+G,Alt+C Alt+G, Alt+C - Push Zatlačit (push) - Branches... Větve... - + Stashes... + Ulité změny... + + + Unable to retrieve file list + Seznam souborů se nepodařilo získat + + + Repository clean + Skladiště vyčištěno + + + The repository is clean. + Skladiště již bylo vyčištěno. + + + Patches (*.patch *.diff) + Soubory s opravnými programy (*.patch *.diff) + + + Choose patch + Vybrat opravný program + + + Patch %1 successfully applied to %2 + Opravný soubor %1 byl s úspěchem použit na skladiště %2 + + List Stashes - Sestavit seznam ulitých změn + Sestavit seznam ulitých změn - Show Commit... Ukázat odeslání... - + Subversion + Subversion + + + Log + Zápis + + + Fetch + Natáhnout + + Commit Odeslat - Diff Selected Files Rozdíly (diff) pro vybrané soubory - &Undo &Zpět - &Redo &Znovu - + Would you like to revert all pending changes to the repository +%1? + Chcete vrátit všechny zbývající změny ve skladišti +%1? + + Revert Vrátit - Would you like to revert all pending changes to the project? - Chcete vrátit všechny změny projektu, které čekají na vyřízení? + Chcete vrátit všechny změny projektu, které čekají na vyřízení? - Another submit is currently being executed. V současnosti se již provádí jiné předložení. - Cannot create temporary file: %1 Nepodařilo se vytvořit dočasný soubor: %1 - Closing git editor Zavřít editor pro Git - Do you want to commit the change? Chcete odeslat změnu? - The commit message check failed. Do you want to commit the change? Ověření popisu týkajícího se odeslání se nezdařilo. Přesto chcete odeslání změn provést? @@ -5897,7 +6340,6 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Git::Internal::GitSettings - The binary '%1' could not be located in the path '%2' Spustitelný soubor '%1' se v umístění '%2' nepodařilo najít @@ -5905,7 +6347,6 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Git::Internal::GitSubmitEditor - Git Commit Git Commit @@ -5913,42 +6354,34 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Git::Internal::GitSubmitPanel - General Information Obecné informace - Repository: Skladiště: - repository Skladiště - Branch: Větev: - branch Větev - Commit Information Informace o odeslání - Author: Autor: - Email: E-mailová adresa: @@ -5956,12 +6389,10 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Git::Internal::LocalBranchModel - <New branch> <Nová větev> - Type to create a new branch Zadejte název pro novou větev @@ -5969,70 +6400,93 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Git::Internal::SettingsPage - Git Git - Git Settings Nastavení pro Git - Environment variables - Proměnné prostředí + Proměnné prostředí - PATH: Proměnná CESTA: - From system - Ze systému + Ze systému - <b>Note:</b> <b>Poznámka:</b> - Git needs to find Perl in the environment as well. Git potřebuje v prostředí nalézt Perl. - Log commit display count: Počet zobrazení zápisů o odeslání omezit na: - Note that huge amount of commits might take some time. Všimněte si, že velký počet může vyvolat dlouhou čekací dobu. - Timeout (seconds): - Časové omezení (v sekundách): + Časové omezení (v sekundách): - Prompt to submit - Potvrdit předložení + Potvrdit předložení - Omit date from annotation output Vypustit datum z vysvětlivky + + Environment Variables + Proměnné prostředí + + + From System + Ze systému + + + Miscellaneous + Různá nastavení + + + Timeout: + Časové omezení: + + + s + s + + + Prompt on submit + Potvrdit předložení + + + Ignore whitespace changes in annotation + U poznámek si nevšímat změn prázdných míst + + + Use "patience diff" algorithm + Použít algoritmus "patience diff" + + + Pull with rebase + Vytáhnout (pull) s rebase + GitCommand - '%1' failed (exit code %2). @@ -6041,7 +6495,6 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš - '%1' completed (exit code %2). @@ -6053,32 +6506,26 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš HelloWorld::Internal::HelloWorldPlugin - Say "&Hello World!" Řekněte "&Láska, Světlo, Mír." - &Hello World &Láska, Světlo, Mír - Hello world! Láska, Světlo, Mír. - Hello World PushButton! Tlačítko na usilování o Lásku, Světlo, Mír. - Hello World! Láska, Světlo, Mír. - Hello World! Beautiful day today, isn't it? Láska, Světlo, Mír. Dnes je opravdu krásný den, že ano? @@ -6086,12 +6533,10 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš HelloWorld::Internal::HelloWorldWindow - Focus me to activate my context! Zaměř se na mě, abys uvedl do chodu moji souvislost! - Hello, world! Jano, mír, ahóoj! @@ -6099,94 +6544,75 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Help::Internal::CentralWidget - Add new page - Přidat novou stranu + Přidat novou stranu - Print Document Vytisknout dokument - - unknown - Neznámý + Neznámý - Add New Page - Přidat novou stranu + Přidat novou stranu - Close This Page - Zavřít tuto stranu + Zavřít tuto stranu - Close Other Pages - Zavřít jiné strany + Zavřít jiné strany - Add Bookmark for this Page... - Přidat záložku pro tuto stranu... + Přidat záložku pro tuto stranu... Help::Internal::DocSettingsPage - - Documentation Dokumentace - Help - Nápověda + Nápověda - - Add Documentation Přidat dokumentaci - Qt Help Files (*.qch) Soubory nápovědy Qt (*.qch) - The file %1 is not a valid Qt Help file! - Soubor %1 není platným souborem nápovědy Qt! + Soubor %1 není platným souborem nápovědy Qt! - Cannot unregister documentation file %1! - Soubor s dokumentací %1 nelze odhlásit! + Soubor s dokumentací %1 nelze odhlásit! Help::Internal::FilterSettingsPage - Filters Filtry - Help - Nápověda + Nápověda Help::Internal::HelpIndexFilter - Help index Rejstřík pro nápovědu @@ -6194,7 +6620,6 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Help::Internal::HelpMode - Help Nápověda @@ -6202,126 +6627,130 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Help::Internal::HelpPlugin - - Contents Obsah - - Index Rejstřík - - Search Hledat - Bookmarks Záložky - Home Domácí adresář - Previous Page Předchozí strana - Next Page Další strana - Increase Font Size Zvětšit velikost písma - Ctrl++ Ctrl++ - Decrease Font Size Zmenšit velikost písma - Ctrl+- Ctrl+- - Reset Font Size Nastavit znovu velikost písma - 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 + Spustit záložky v režimu nápovědy + + + Open Pages + Otevřené stránky + + + Activate Open Pages in Help mode + Spustit otevřené stránky v režimu nápovědy + + Go to Help Mode Přepnout na režim s nápovědou - Previous Předchozí - + Close current Page + Zavřít nynější stranu + + Next Další - Add Bookmark Přidat záložku - Context Help Související nápověda - Activate Index in Help mode Spustit rejstřík v režimu nápovědy - Activate Contents in Help mode Spustit obsah v režimu nápovědy - Activate Search in Help mode Spustit hledání v režimu nápovědy - - Unfiltered Nezpracovaný - <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> <html><head><title>Dokumentace chybí</title></head><body><br/><center><b>%1</b><br/>Není dostupná žádná dokumentace.</center></body></html> - Filtered by: Zpracováno: @@ -6329,88 +6758,109 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Help::Internal::SearchWidget - &Copy - &Kopírovat + &Kopírovat - Copy &Link Location - &Kopírovat adresu odkazu + &Kopírovat adresu odkazu - Open Link in New Tab - Otevřít odkaz v nové kartě + Otevřít odkaz v nové kartě - Select All - Vybrat vše + Vybrat vše - - - HelpViewer - - Open Link in New Tab - Otevřít odkaz v nové kartě + Indexing + Rejstříkování - - <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> - <title>Chyba 404 ...</title><div align="center"><br><br><h1>Stranu se nepodařilo najít.</h1><br><h3>'%1'</h3></div> + Indexing Documentation... + Rejstříkuje se dokumentace... - - Help - Nápověda + Open Link + Otevřít odkaz - - Unable to launch external application. - - Chyba při spouštění vnější aplikace. - + Open Link as New Page + Otevřít odkaz jako novou stránku - - OK - OK + Copy Link + Kopírovat odkaz - - Copy &Link Location - &Kopírovat adresu odkazu + Copy + Kopírovat + + + Reload + Nahrát znovu + + + + HelpViewer + + Open Link in New Tab + Otevřít odkaz v nové kartě + + + <title>about:blank</title> + <title>about:blank</title> + + + <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> + <title>Chyba 404 ...</title><div align="center"><br><br><h1>Stranu se nepodařilo najít.</h1><br><h3>'%1'</h3></div> + + + Help + Nápověda + + + Unable to launch external application. + + Chyba při spouštění vnější aplikace. + + + + OK + OK + + + Copy &Link Location + &Kopírovat adresu odkazu - Open Link in New Tab Ctrl+LMB - Otevřít odkaz v nové kartě Ctrl+LMB + Otevřít odkaz v nové kartě Ctrl+LMB IndexWindow - &Look for: &Hledat: - Open Link Otevřít adresu odkazu - + Open Link as New Page + Otevřít odkaz jako novou stránku + + Open Link in New Tab - Otevřít odkaz v nové kartě + Otevřít odkaz v nové kartě InputPane - Type Ctrl-<Return> to execute a line. Řádek můžete provést pomocí <Ctrl-Return>. @@ -6418,12 +6868,10 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš Locator - Filters Filtry - Locator Vyhledávač @@ -6431,124 +6879,232 @@ více času, než je nastaveno. V takovém případě by se měla hodnota zvýš MainWindow - + Bauhaus + MainWindowClass + Bauhaus + + + &File + &Soubor + + + &New... + &Nový... + + + Ctrl+N + Ctrl+N + + + &Open... + &Otevřít... + + + Recent Files + Naposledy otevřené soubory + + + &Save + &Uložit + + + Ctrl+S + Ctrl+S + + + Save &As... + Uložit &jako... + + + &Preview + &Náhled + + + Ctrl+R + Ctrl+R + + + &Preview with Debug + &Náhled s laděním + + + Ctrl+D + Ctrl+D + + + &Quit + &Ukončit + + Ctrl+Q Ctrl+Q - - + &Edit + Ú&pravy + + + Ctrl+Z + Ctrl+Z + + + Ctrl+Y + Ctrl+Y + + + Ctrl+Shift+Z + Ctrl+Shift+Z + + + &Copy + &Kopírovat + + + &Cut + Vyj&mout + + + &Paste + &Vložit + + + &Delete + &Smazat + + + Del + Delete + + + Backspace + Backspace + + + &View + &Pohled + + + &Help + &Nápověda + + + &About... + &O programu... + + + Properties + Vlastnosti + + + Could not open file <%1> + Nepodařilo se otevřít soubor <%1> + + + Qml Errors: + Chyby Qml: + + + +%1 %2:%3 - %4 + +%1 %2:%3 - %4 + + + +%1:%2 - %3 + +%1:%2 - %3 + + File - Soubor + Soubor - Open file - Otevřít soubor + Otevřít soubor - Ctrl+O Ctrl+O - Quit - Ukončit + Ukončit - Run to main() - Provést po main() + Provést po main() - Ctrl+F5 - Ctrl+F5 + Ctrl+F5 - F5 - F5 + F5 - Shift+F5 - Shift+F5 + Shift+F5 - F6 - F6 + F6 - F7 - F7 + F7 - Shift+F6 - Shift+F6 + Shift+F6 - Shift+F9 - Shift+F9 + Shift+F9 - Shift+F7 - Shift+F7 + Shift+F7 - Shift+F8 - Shift+F8 + Shift+F8 - F8 - F8 + F8 - ALT+D,ALT+W - ALT+D, ALT+W + ALT+D, ALT+W - Files - + Soubory - Debug - Ladění + Ladění - Not a runnable project - Není spustitelným projektem + Není spustitelným projektem - The current startup project can not be run. - Nynější spustitelný projekt nelze spustit. + Nynější spustitelný projekt nelze spustit. - Open File - Otevřít soubor + Otevřít soubor - Cannot find special data dumpers - Nelze najít pomocné knihovny pro výstup zvláštních dat + Nelze najít pomocné knihovny pro výstup zvláštních dat - The debugged binary does not contain information needed for nice display of Qt data types. Make sure you use something like @@ -6556,7 +7112,7 @@ Make sure you use something like SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp in your .pro file. - Laděný spustitelný soubor neobsahuje informace potřebné pro hezké zobrazení datových typů Qt. + Laděný spustitelný soubor neobsahuje informace potřebné pro hezké zobrazení datových typů Qt. Ujistěte se, že používáte něco na způsob @@ -6565,20 +7121,17 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp ve svém .pro souboru. - Open Executable File - Otevřít spustitelný soubor + Otevřít spustitelný soubor MakeStep - Override %1: Přepsat %1: - Make arguments: Argumenty příkazového řádku pro 'make': @@ -6586,9 +7139,6 @@ ve svém .pro souboru. MyMain - - - N/A N/A @@ -6596,30 +7146,25 @@ ve svém .pro souboru. NickNameDialog - Nick Names Přezdívky - Filter: - Filtr: + Filtr: - Clear - Smazat + Smazat OpenWithDialog - Open File With... Otevřít soubor s... - Open file extension with: Otevřít souborovou příponu s: @@ -6627,45 +7172,37 @@ ve svém .pro souboru. Perforce::Internal - No executable specified - Nebyl zadán žádný spustitelný soubor + Nebyl zadán žádný spustitelný soubor - Unable to launch "%1": %2 - "%1" se nepodařilo spustit: %2 + "%1" se nepodařilo spustit: %2 - "%1" timed out after %2ms. - Překročení času při provedení "%1"(%2ms). + Překročení času při provedení "%1"(%2ms). - "%1" crashed. - "%1" spadl. + "%1" spadl. - "%1" terminated with exit code %2: %3 - Proces '%1" byl ukončen (vrácená hodnota %2): %3 + Proces '%1" byl ukončen (vrácená hodnota %2): %3 - The client does not seem to contain any mapped files. - 'Perforce' klient zřejmě neobsahuje žádná přiřazení souborů. + 'Perforce' klient zřejmě neobsahuje žádná přiřazení souborů. Perforce::Internal::ChangeNumberDialog - Change Number Změnit číslo - Change Number: Změnit číslo: @@ -6673,22 +7210,18 @@ ve svém .pro souboru. Perforce::Internal::PendingChangesDialog - P4 Pending Changes P4 zbývající změny - Submit Předložit - Cancel Zrušit - Change %1: %2 Změna %1: %2 @@ -6696,361 +7229,365 @@ ve svém .pro souboru. Perforce::Internal::PerforcePlugin - &Perforce &Perforce - Edit Upravit - Edit "%1" Upravit "%1" - Alt+P,Alt+E Alt+P, Alt+E - Edit File Upravit soubor - Add Přidat - Add "%1" Přidat "%1" - Alt+P,Alt+A Alt+P, Alt+A - Add File Přidat soubor - Delete - Smazat + Smazat - Delete "%1" - Smazat "%1" + Smazat "%1" - Delete File Smazat soubor - Revert Vrátit - Revert "%1" Vrátit zpět změny v "%1" - Alt+P,Alt+R Alt+P, Alt+R - Revert File Vrátit zpět změny v souboru - - Diff Current File Rozdíly (diff) nynějšího souboru - Diff "%1" Rozdíly (diff) pro "%1" - Diff Current Project/Session Rozdíly (diff) pro nynější projekt/sezení - Diff Project "%1" Rozdíly (diff) pro projekt "%1" - Alt+P,Alt+D Alt+P, Alt+D - Diff Opened Files Rozdíly (diff) pro otevřené soubory - Opened Otevřeno - Alt+P,Alt+O Alt+P, Alt+O - Submit Project Předložit projekt - Alt+P,Alt+S Alt+P, Alt+S - Pending Changes... Zbývající změny... - Update Current Project/Session - Obnovit nynější projekt/sezení + Obnovit nynější projekt/sezení - Update Project "%1" Obnovit projekt "%1" - Describe... Popis k... - - Annotate Current File Opatřit nynější soubor vysvětlivkami - Annotate "%1" Opatřit vysvětlivkami "%1" - Annotate... Opatřit vysvětlivkami... - - Filelog Current File Zápis k souboru pro nynější soubor - Filelog "%1" Zápis k souboru "%1" - Alt+P,Alt+F Alt+P, Alt+F - Filelog... Zápis k souboru... - Update All Obnovit vše - Submit Předložit - Diff Selected Files Diff pro vybrané soubory - &Undo &Zpět - &Redo &Znovu - p4 revert Vrátit (p4 revert) - The file has been changed. Do you want to revert it? Soubor byl změněn. Chcete vrátit změny? - Executing: %1 Provádí se: %1 - Another submit is currently executed. V současnosti se již provádí jiné předložení. - Cannot create temporary file. Nepodařilo se vytvořit žádný dočasný soubor. - Project has no files Projekt nemá žádné soubory - p4 annotate Opatřit vysvětlivkami (p4 annotate) - p4 annotate %1 Opatřit vysvětlivkami (p4 annotate) "%1" - p4 filelog Zápis pro soubor (p4 filelog) - p4 filelog %1 Zápis k souboru (p4 filelog) %1 - The process terminated with exit code %1. Proces byl ukončen. Vrácená hodnota %1. - The process terminated abnormally. Proces byl ukončen neobvyklým způsobem. - + Delete... + Smazat... + + + Delete "%1"... + Smazat "%1"... + + + Log Project + Zápis pro projekt + + + Log Project "%1" + Zápis pro projekt "%1" + + + Submit Project "%1" + Předložit projekt "%1" + + + Update Current Project + Obnovit nynější projekt + + + Revert Unchanged + Zvrátit požadované, nezměněné soubory + + + Revert Unchanged Files of Project "%1" + Zvrátit požadované, nezměněné soubory projektu "%1" + + + Revert Project + Zvrátit změny v projektu + + + Revert Project "%1" + Zvrátit změny v projektu "%1" + + + Repository Log + Zápis skladiště + + + Do you want to revert all changes to the project "%1"? + Chcete zvrátit všechny zbývající změny v projektu "%1"? + + Could not start perforce '%1'. Please check your settings in the preferences. Příkaz 'Perforce' '%1' se nepodařilo spustit. Ověřte, prosím, svá nastavení v nastaveních. - Perforce did not respond within timeout limit (%1 ms). Žádná odpověď od 'Perforce' v rámci časového omezení (%1 ms). - + Unable to write input data to process %1: %2 + Nepodařilo se zapsat žádná vstupní data do procesu %1: %2 + + + Perforce is not correctly configured. + Perforce není nastaven správně. + + p4 diff %1 Lišit se (p4 diff) %1 - p4 describe %1 Popsat (p4 describe) %1 - Closing p4 Editor Zavřít P4 editor - Do you want to submit this change list? Chcete předložit seznam se změnami? - The commit message check failed. Do you want to submit this change list Ověření popisu týkajícího se odeslání se nezdařilo. Přesto chcete předložit tento seznam se změnami - Cannot open temporary file. Nepodařilo se otevřít dočasný soubor. - - + p4 submit failed: %1 + Chyba při předkládání: %1 + + + Error running "where" on %1: %2 + Failed to run p4 "where" to resolve a Perforce file name to a local file system name. + Chyba při provedení "where" u souboru "%1": %2 + + + The file is not mapped + File is not managed by Perforce + Soubor není spravován Perforce + + + Perforce repository: %1 + Skladiště Perforce: %1 + + + Perforce: Unable to determine the repository: %1 + Perforce: Nepodařilo se určit skladiště: %1 + + Cannot execute p4 submit. - Příkaz p4 submit se nepodařilo provést. + Příkaz p4 submit se nepodařilo provést. - p4 submit failed (exit code %1). - Předložení P4 se nezdařilo (vrácená hodnota %1). + Předložení P4 se nezdařilo (vrácená hodnota %1). - Pending change Zbývající změny - Could not submit the change, because your workspace was out of date. Created a pending submit instead. Změnu se nepodařilo předložit, protože váš pracovní prostor byl zastaralý. Místo toho bylo vytvořeno předložení čekající na vyřízení. - Invalid configuration: %1 - Neplatné nastavení: %1 + Neplatné nastavení: %1 - Timeout waiting for "where" (%1). - Překročení času při provedení "where" (%1). + Překročení času při provedení "where" (%1). - Error running "where" on %1: The file is not mapped - Chyba při provedení "where" na %1: Soubor není přiřazen + Chyba při provedení "where" na %1: Soubor není přiřazen Perforce::Internal::PerforceSubmitEditor - Perforce Submit Předložení 'Perforce' @@ -7058,12 +7595,10 @@ ve svém .pro souboru. Perforce::Internal::PromptDialog - Perforce Prompt Výzva 'Perforce' - OK OK @@ -7071,65 +7606,101 @@ ve svém .pro souboru. Perforce::Internal::SettingsPage - P4 Command: - Příkaz P4: + Příkaz P4: - Use default P4 environment variables - Používat výchozí proměnné prostředí P4 + Používat výchozí proměnné prostředí P4 - Environment variables - Proměnné prostředí + Proměnné prostředí - P4 Client: - Klient P4: + Klient P4: - P4 User: - Uživatel P4: + Uživatel P4: - P4 Port: - Číslo přípojky P4: + Číslo přípojky P4: - Perforce Perforce - Test Zkouška - Prompt to submit + Potvrdit předložení + + + Configuration + Nastavení + + + P4 command: + Příkaz P4: + + + Environment Variables + Proměnné prostředí + + + P4 client: + Klient P4: + + + P4 user: + Uživatel P4: + + + P4 port: + Číslo přípojky P4: + + + Miscellaneous + Různá nastavení + + + Timeout: + Časové omezení: + + + s + s + + + Prompt on submit Potvrdit předložení + + Log count: + Počet zápisů omezit na: + Perforce::Internal::SettingsPageWidget - Testing... Běží zkouška... - + Test succeeded (%1). + Zkouška byla úspěšná (%1). + + Test succeeded. - Zkouška byla úspěšná. + Zkouška byla úspěšná. - Perforce Command Příkaz 'Perforce' @@ -7137,22 +7708,18 @@ ve svém .pro souboru. Perforce::Internal::SubmitPanel - Submit Předložit - Change: Změna: - Client: Klient: - User: Uživatel: @@ -7160,27 +7727,22 @@ ve svém .pro souboru. PluginDialog - Details Podrobnosti - Error Details Podrobnosti o chybě - Installed Plugins Nainstalované přídavné moduly - Plugin Details of %1 Popis přídavného modulu %1 - Plugin Errors of %1 Chyby přídavného modulu %1 @@ -7188,96 +7750,81 @@ ve svém .pro souboru. PluginManager - - The plugin '%1' does not exist. Neexistuje žádnpřídavný modul '%1'. - Unknown option %1 Neplatný argument příkazového řádku %1 - The option %1 requires an argument. Volba příkazového řádku %1 vyžaduje argument. + + Failed Plugins + Nenahrané přídavné moduly (neúspěch během nahrávání) + PluginSpec - '%1' misses attribute '%2' Vlastnost '%1' chybí u '%2' - '%1' has invalid format '%1' je v nějakém neplatném formátu - Invalid element '%1' Neplatný prvek '%1' - Unexpected closing element '%1' Nesprávně umístěný uzavírající prvek '%1' - Unexpected token Nesprávně umístěný symbol - Expected element '%1' as top level element Kořenový prvek musí být '%1' - Resolving dependencies failed because state != Read Určení závislostí se nezdařilo, protože stav je != přečteno - Could not resolve dependency '%1(%2)' Závislost '%1 (%2)' se nepodařilo vyřešit - Loading the library failed because state != Resolved Nahrání knihovny se nezdařilo, protože stav je != vyřešeno (závislosti určeny) - Plugin is not valid (does not derive from IPlugin) Přídavný modul je neplatný (není odvozen od třídy IPlugin) - Initializing the plugin failed because state != Loaded Spuštění přídavného modulu se nezdařilo, protože stav je != nahráno - Internal error: have no plugin instance to initialize Vnitřní chyba: Není žádný stupeň přídavného modulu ke spuštění - Plugin initialization failed: %1 Spuštění přídavného modulu se nezdařilo: %1 - Cannot perform extensionsInitialized because state != Initialized Nelze provést 'extensionsInitialized', protože stav je != spuštěno - Internal error: have no plugin instance to perform extensionsInitialized Vnitřní chyba: Není žádný stupeň přídavného modulu k provedení 'extensionsInitialized' @@ -7285,87 +7832,138 @@ ve svém .pro souboru. ProjectExplorer::AbstractProcessStep - <font color="#0000ff">Starting: %1 %2</font> - <font color="#0000ff">Spouští se: %1 %2</font> + <font color="#0000ff">Spouští se: %1 %2</font> - <font color="#0000ff">Exited with code %1.</font> - <font color="#0000ff">Ukončeno s vrácenou hodnotou %1.</font> + <font color="#0000ff">Ukončeno s vrácenou hodnotou %1.</font> - <font color="#ff0000"><b>Exited with code %1.</b></font> - <font color="#ff0000"><b>Ukončeno s vrácenou hodnotou %1.</b></font> + <font color="#ff0000"><b>Ukončeno s vrácenou hodnotou %1.</b></font> - <font color="#ff0000">Could not start process %1 </b></font> - <font color="#ff0000">Proces %1 se nepodařilo spustit</b></font> + <font color="#ff0000">Proces %1 se nepodařilo spustit</b></font> + + + Starting: "%1" %2 + + Spouští se: "%1" %2 + + + + The process "%1" exited normally. + Proces "%1" byl ukončen obvyklým způsobem. + + + The process "%1" exited with code %2. + Proces "%1" byl ukončen. Vrácená hodnota %2. + + + The process "%1" crashed. + Proces %1 spadl. + + + Could not start process "%1" + Proces "%1" se nepodařilo spustit ProjectExplorer::BuildManager - <font color="#ff0000">Canceled build.</font> - <font color="#ff0000">Sestavování zrušeno.</font> + <font color="#ff0000">Sestavování zrušeno.</font> + + + Finished %1 of %n build steps + + Jeden z %n kroků sestavování dokončen + %1 z %n kroků sestavování dokončeny + %1 z %n kroků sestavování dokončeno + + + + Compile + Category for compiler isses listened under 'Build Issues' + Sestavení + + + Build System + Category for build system isses listened under 'Build Issues' + Sestavovací systém + + + Canceled build. + Zrušené sestavování. - Build Sestavování + + Error while building project %1 (target: %2) + Chyba při sestavování projektu %1 (cíl: %2) + + + When executing build step '%1' + Při provádění sestavovacího kroku '%1' + + + Running build steps for project %1... + Běží sestavovací kroky pro projekt %1... + - Finished %n of %1 build steps - + Jeden z %1 kroků sestavování ukončen %n z %1 kroků sestavování ukončeny %n z %1 kroků sestavování ukončeny - - <font color="#ff0000">Error while building project %1</font> - <font color="#ff0000">Chyba při sestavování projektu %1</font> + <font color="#ff0000">Chyba při sestavování projektu %1</font> - - <font color="#ff0000">When executing build step '%1'</font> - <font color="#ff0000">Při provádění kroků sestavování '%1'</font> + <font color="#ff0000">Při provádění kroků sestavování '%1'</font> - Error while building project %1 - Chyba při sestavování projektu %1 + Chyba při sestavování projektu %1 - <b>Running build steps for project %2...</b> - <b>Provádí se kroky sestavování pro projekt %2...</b> + <b>Provádí se kroky sestavování pro projekt %2...</b> ProjectExplorer::CustomExecutableRunConfiguration - Custom Executable Uživatelsky stanovený spustitelný soubor - Could not find the executable, please specify one. Nepodařilo se najít spustitelný soubor. Jeden, prosím, zadejte. - - + Clean Environment + Smazat prostředí + + + System Environment + Prostředí systému + + + Build Environment + Prostředí pro sestavování + + Run %1 Spustit %1 @@ -7373,8 +7971,6 @@ ve svém .pro souboru. ProjectExplorer::CustomExecutableRunConfigurationFactory - - Custom Executable Uživatelsky stanovený spustitelný soubor @@ -7382,75 +7978,78 @@ ve svém .pro souboru. ProjectExplorer::EnvironmentModel - - <UNSET> <NENÍ NASTAVENO> - Variable Proměnná - Value Hodnota - - <VARIABLE> + Name when inserting a new variable <PROMĚNNÁ> - <VALUE> + Value when inserting a new variable <HODNOTA> + + <VARIABLE> + <PROMĚNNÁ> + + + <VALUE> + <HODNOTA> + ProjectExplorer::EnvironmentWidget - &Edit &Upravit - &Add &Přidat - &Reset Nastavit &znovu - &Unset &Vyprázdnit - Unset <b>%1</b> Posadit zpátky <b>%1</b> - Set <b>%1</b> to <b>%2</b> Nastavit <b>%1</b> na <b>%2</b> - + Using <b>%1</b> + Používá se <b>%1</b> + + + Using <b>%1</b> and + Používá se <b>%1</b> a + + Summary: No changes to Environment - Shrnutí: Prostředí nezměněno + Shrnutí: Prostředí nezměněno ProjectExplorer::Internal::AllProjectsFilter - Files in any project Soubory ze všech projektů @@ -7458,12 +8057,10 @@ ve svém .pro souboru. ProjectExplorer::Internal::AllProjectsFind - All Projects Všechny projekty - File &pattern: &Vzor hledání pro názvy souborů: @@ -7471,55 +8068,53 @@ ve svém .pro souboru. ProjectExplorer::Internal::BuildSettingsPanel - Build Settings - Nastavení sestavování + Nastavení sestavování ProjectExplorer::Internal::BuildSettingsWidget - &Clone Selected &Zdvojit výběr - Build Steps Kroky sestavování - Edit Build Configuration: + Upravit nastavení sestavování: + + + No build settings available + Nejsou dostupná žádná nastavení pro sestavování + + + Edit build configuration: Upravit nastavení sestavování: - Add Přidat - Remove Odstranit - Clean Steps - Kroky k urovnání + Kroky k očistění - <a href="#">Make %1 active.</a> - <a href="#">Udělat %1 činným.</a> + <a href="#">Udělat %1 činným.</a> - New Configuration Name: Název nového nastavení: - Clone configuration Zdvojit nastavení @@ -7527,46 +8122,65 @@ ve svém .pro souboru. ProjectExplorer::Internal::BuildStepsPage - No Build Steps Žádné kroky sestavování - Add clean step - Přidat krok k urovnání + Přidat krok k urovnání - Add build step - Přidat krok sestavování + Přidat krok sestavování - Remove clean step - Odstranit krok k urovnání + Odstranit krok k urovnání - Remove build step - Odstranit krok sestavování + Odstranit krok sestavování - Build Steps Kroky při sestavování - Clean Steps - Kroky k urovnání + Kroky k očistění + + + Move Up + Posunout nahoru + + + Move Down + Posunout dolů + + + Remove Item + Odstranit prvek + + + Removing Step failed + Odstranění kroku sestavování se nezdařilo + + + Can't remove build step while building + Během sestavování nelze krok sestavování odstranit + + + Add Clean Step + Přidat krok k očistění + + + Add Build Step + Přidat krok sestavovaní ProjectExplorer::Internal::CompileOutputWindow - - Compile Output Výstup sestavení @@ -7574,28 +8188,23 @@ ve svém .pro souboru. ProjectExplorer::Internal::CoreListenerCheckingForRunningBuild - Cancel Build && Close Zrušit sestavování a zavřít - A project is currently being built. Právě je sestavován jeden projekt. - Close Qt Creator? Zavřít Qt Creator? - Do not Close Nezavírat - Do you want to cancel the build process and close Qt Creator anyway? Chcete zrušit proces sestavování a v každém případě zavřít Qt Creator? @@ -7603,7 +8212,6 @@ ve svém .pro souboru. ProjectExplorer::Internal::CurrentProjectFilter - Files in current project Soubory v nynějším projektu @@ -7611,12 +8219,10 @@ ve svém .pro souboru. ProjectExplorer::Internal::CurrentProjectFind - Current Project Nynější projekt - File &pattern: &Vzor hledání pro názvy souborů: @@ -7624,63 +8230,51 @@ ve svém .pro souboru. ProjectExplorer::Internal::CustomExecutableConfigurationWidget - Name: Název: - Executable: Spustitelný soubor: - Arguments: Argumenty: - Working Directory: Pracovní adresář: - Run in &Terminal Spustit v &terminálu - Run Environment Prováděcí prostředí - Base environment for this runconfiguration: Základní prostředí pro toto nastavení spuštění: - Clean Environment Smazat prostředí - System Environment Prostředí systému - Build Environment Prostředí pro sestavování - No Executable specified. Nebyl zadán žádný spustitelný soubor. - Running executable: <b>%1</b> %2 Spouští se spustitelný soubor: <b>%1</b> %2 @@ -7688,73 +8282,66 @@ ve svém .pro souboru. ProjectExplorer::Internal::DependenciesPanel - Dependencies - Závislosti + Závislosti ProjectExplorer::Internal::DependenciesWidget - %1 has no dependencies. - %1 nemá žádné závislosti. + %1 nemá žádné závislosti. - %1 depends on %2. - %1 závisí na %2. + %1 závisí na %2. - %1 depends on: %2. - %1 závisí na: %2. + %1 závisí na: %2. ProjectExplorer::Internal::DetailedModel - %1 of project %2 - %1 z projektu %2 + %1 z projektu %2 - Could not rename file - Soubor se nepodařilo přejmenovat + Soubor se nepodařilo přejmenovat - Renaming file %1 to %2 failed. - Soubor %1 se nepodařilo přejmenovat na %2. + Soubor %1 se nepodařilo přejmenovat na %2. ProjectExplorer::Internal::EditorSettingsPanel - Editor Settings - Nastavení editoru + Nastavení editoru ProjectExplorer::Internal::EditorSettingsPropertiesPage - Default File Encoding: + Výchozí kódování souborů: + + + Default file encoding: Výchozí kódování souborů: ProjectExplorer::Internal::FolderNavigationWidgetFactory - File System Souborový systém - Synchronize with Editor Seřídit s editorem @@ -7762,41 +8349,49 @@ ve svém .pro souboru. ProjectExplorer::Internal::NewSessionInputDialog - New session name - Název nového sezení + Název nového sezení - Enter the name of the new session: - Zadejte název nového sezení: + Zadejte název nového sezení: ProjectExplorer::Internal::OutputPane - Re-run this run-configuration Nastavení spuštění spustit ještě jednou - - Stop Zastavit - Application Output Výstup programu - + Application Output Window + Okno s výstupem programu + + + The application is still running. + Program stále běží. + + + Force it to quit? + Vynutit ukončení? + + + Force Quit + Ukončit + + The application is still running. Close it first. - Program ještě běží. Nejprve jej ukončete. + Program ještě běží. Nejprve jej ukončete. - Unable to close Nepodařilo se zavřít @@ -7804,20 +8399,23 @@ ve svém .pro souboru. ProjectExplorer::Internal::OutputWindow - Application Output Window - Okno s výstupem programu + Okno s výstupem programu + + + Additional output omitted + + Dodatečný výstup opomenut + ProjectExplorer::Internal::ProcessStep - Custom Process Step - Uživatelsky stanovený krok zpracování + Uživatelsky stanovený krok zpracování - Custom Process Step item in combobox Uživatelsky stanovený krok zpracování @@ -7826,48 +8424,61 @@ ve svém .pro souboru. ProjectExplorer::Internal::ProcessStepWidget - Name: Název: - Command: Příkaz: - Working Directory: - Pracovní adresář: + Pracovní adresář: - Command Arguments: - Argumenty příkazového řádku: + Argumenty příkazového řádku: - Enable Custom Process Step + Povolit uživatelsky stanovený krok zpracování + + + Enable custom process step Povolit uživatelsky stanovený krok zpracování + + Working directory: + Pracovní adresář: + + + Command arguments: + Argumenty příkazového řádku: + ProjectExplorer::Internal::ProjectExplorerSettingsPage - Build and Run - Sestavování a spuštění + Sestavování a spuštění - Projects - Projekty + Projekty + + + General + Obecné ProjectExplorer::Internal::ProjectFileFactory - + Project File Factory + ProjectExplorer::ProjectFileFactory display name. + Project File Factory + + Could not open the following project: '%1' Projekt '%1' se nepodařilo otevřít @@ -7875,13 +8486,22 @@ ve svém .pro souboru. ProjectExplorer::Internal::ProjectFileWizardExtension - + <None> + No version control system selected +---------- +No project selected + <Žádný> + + Failed to add one or more files to project '%1' (%2). Některé soubory (%2) se do projektu '%1' nepodařilo přidat. - + A version control system repository could not be created in '%1'. + V adresáři '%1' se skladiště systému na ověřování verzí nepodařilo vytvořit. + + Failed to add '%1' to the version control system. '%1' se nepodařilo přidat do systému pro ověřování verzí. @@ -7889,17 +8509,14 @@ ve svém .pro souboru. ProjectExplorer::Internal::ProjectTreeWidget - Simplify tree Zjednodušit strom - Hide generated files Neukazovat vytvořené soubory - Synchronize with Editor Seřídit s editorem @@ -7907,12 +8524,10 @@ ve svém .pro souboru. ProjectExplorer::Internal::ProjectTreeWidgetFactory - Projects Projekty - Filter tree Přefiltrovat strom @@ -7920,49 +8535,48 @@ ve svém .pro souboru. ProjectExplorer::Internal::ProjectWindow - - Active Build and Run Configurations - Činná nastavení sestavování a spouštění + Činná nastavení sestavování a spouštění - No project loaded. - Nenahrán žádný projekt. + Nenahrán žádný projekt. ProjectExplorer::Internal::ProjectWizardPage - Add to &VCS (%1) - Přidat do &systému pro ověřování verzí (%1) + Přidat do &systému pro ověřování verzí (%1) + + + Summary + Shrnutí - Files to be added: Soubory k přidání: + + Files to be added in + Soubory k přidání v + ProjectExplorer::Internal::RemoveFileDialog - Remove File Odstranit soubor - &Delete file permanently &Smazat soubor natrvalo - &Remove from Version Control &Odstranit z ověření verzí - File to remove: Soubor k odstranění: @@ -7970,71 +8584,95 @@ ve svém .pro souboru. ProjectExplorer::Internal::RunSettingsPanel - Run Settings - Nastavení spuštění + Nastavení spuštění ProjectExplorer::Internal::RunSettingsPropertiesPage - + + - - - - Edit run configuration: - Upravit nastavení spuštění: + Upravit nastavení spuštění: + + + Run configuration: + Nastavení spuštění: ProjectExplorer::Internal::SessionDialog - Session Manager Správce sezení - Create New Session - Vytvořit nové sezení + Vytvořit nové sezení - Clone Session - Zdvojit sezení + Zdvojit sezení - Delete Session - Smazat sezení + Smazat sezení - <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">What is a Session?</a> - <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Co je to sezení?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Co je to sezení?</a> - Switch to session - Přepnout na sezení + Přepnout na sezení + + + &New + &Nový + + + &Rename + &Přejmenovat + + + C&lone + Zdvo&jit + + + &Delete + &Smazat + + + &Switch to + &Přepnout na sezení + + + <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">Co je sezení?</a> + + + New session name + Název nového sezení + + + Rename session + Přejmenovat sezení ProjectExplorer::Internal::SessionFile - Session Sezení - Untitled default file name to display Bez názvu @@ -8043,7 +8681,6 @@ ve svém .pro souboru. ProjectExplorer::Internal::TaskDelegate - File not found: %1 Soubor nenalezen: %1 @@ -8051,31 +8688,25 @@ ve svém .pro souboru. ProjectExplorer::Internal::TaskWindow - - Build Issues - Potíže při sestavování + Potíže při sestavování - &Copy - &Kopírovat + &Kopírovat - Show Warnings - Ukázat varování + Ukázat varování ProjectExplorer::Internal::WinGuiProcess - The process could not be started! Proces se nepodařilo spustit! - Cannot retrieve debugging output! Nepodařilo se získat žádný výstup ladění! @@ -8083,27 +8714,22 @@ ve svém .pro souboru. ProjectExplorer::Internal::WizardPage - Project management Správa projektu - &Add to Project - &Přidat do projektu + &Přidat do projektu - &Project - &Projekt + &Projekt - Add to &version control - Přidat do ověření &verzí + Přidat do ověření &verzí - The following files will be added: @@ -8115,273 +8741,251 @@ ve svém .pro souboru. + + Add to &project: + Přidat do &projektu: + + + Add to &version control: + Přidat do ověření &verzí: + ProjectExplorer::ProjectExplorerPlugin - Projects Projekty - &Build &Sestavení - &Debug &Ladění - &Start Debugging Spustit &ladění - Open With Otevřít s - Session Manager... Správce sezení... - New Project... Nový projekt... - Ctrl+Shift+N Ctrl+Shift+N - Load Project... Nahrát projekt... - Ctrl+Shift+O Ctrl+Shift+O - Open File Otevřít soubor - Show in Explorer... - Ukázat v průzkumníku... + Ukázat v průzkumníku... - Show in Finder... - Ukázat v hledáčku... + Ukázat v hledáčku... - Show containing folder... - Ukázat složku... + Ukázat složku... - Recent Projects - Naposledy otevřené projekty + Naposledy otevřené projekty - Close Project Zavřít projekt - Close All Projects Zavřít všechny projekty - Session Sezení - Set Build Configuration - Nastavit nastavení sestavování + Nastavit nastavení sestavování - Build All Sestavit vše - Ctrl+Shift+B Ctrl+Shift+B - Rebuild All Vše sestavit znovu - Clean All Vyčistit vše - Build Project Sestavit projekt - Ctrl+B Ctrl+B - Rebuild Project Projekt sestavit znovu - Clean Project Vyčistit projekt - - Run Spustit - Ctrl+R Ctrl+R - Set Run Configuration - Nastavit nastavení spuštění + Nastavit nastavení spuštění - Cancel Build Zrušit sestavování - - Start Debugging Spustit ladění - F5 F5 - Add New... Přidat nový... - Add Existing Files... Přidat stávající soubory... - Remove File... Odstranit soubor... - Rename Přejmenovat - Load Project Nahrát projekt - New Project Title of dialog Nový projekt - Close Project "%1" Zavřít projekt "%1" - + Recent P&rojects + Naposledy otevřené p&rojekty + + Build Project "%1" Sestavit projekt '%1" - Rebuild Project "%1" Projekt "%1" sestavit znovu - Clean Project "%1" Vyčistit projekt "%1" - Build Without Dependencies Sestavit s vyloučením závislostí - Rebuild Without Dependencies Sestavit znovu s vyloučením závislostí - Clean Without Dependencies Vyčistit s vyloučením závislostí - + Open Build/Run Target Selector... + Otevřít volič pro sestavování/spouštění cíle... + + + Ctrl+T + Ctrl+T + + + Always save files before build + Vždy uložit soubory před sestavováním + + + Cannot run without a project. + Bez projektu nelze spustit. + + + Cannot debug without a project. + Bez projektu nelze ladit. + + New File Title of dialog Nový soubor - Add Existing Files Přidat stávající soubory - Could not add following files to project %1: Následující soubory se do projektu %1 nepodařilo přidat: - Add files to project failed Přidání souborů do projektu se nezdařilo - Add to Version Control Přidat do ověření verzí - Add files %1 to version control (%2)? @@ -8390,54 +8994,52 @@ to version control (%2)? přidat do ověření verzí (%2)? - Could not add following files to version control (%1) Následující soubory se nepodařilo přidat do ověření verzí (%1) - Add files to version control failed Přidání souborů do ověření verzí se nezdařilo - + Projects (%1) + Projekty (%1) + + + All Files (*) + Všechny soubory (*) + + Launching Windows Explorer failed - Spuštění Windows Exploreru se nezdařilo + Spuštění Windows Exploreru se nezdařilo - Could not find explorer.exe in path to launch Windows Explorer. - Windows Explorer se nepodařilo spustit, protože se v cestě nepodařilo nalézt soubor explorer.exe. + Windows Explorer se nepodařilo spustit, protože se v cestě nepodařilo nalézt soubor explorer.exe. - Launching a file explorer failed - Spuštění souboru prohlížeče zvaného Exploreu se nezdařilo + Spuštění souboru prohlížeče zvaného Exploreu se nezdařilo - Could not find xdg-open to launch the native file explorer. - Místní prohlížeč souborů se nepodařilo spustit, protože se v cestě nepodařilo nalézt soubor xdg-open. + Místní prohlížeč souborů se nepodařilo spustit, protože se v cestě nepodařilo nalézt soubor xdg-open. - Remove file failed Soubor se nepodařilo odstranit - Could not remove file %1 from project %2. Soubor %1 se z projektu %2 nepodařilo odstranit. - Delete file failed Soubor se nepodařilo smazat - Could not delete file %1. Soubor %1 se nepodařilo smazat. @@ -8445,38 +9047,30 @@ přidat do ověření verzí (%2)? ProjectExplorer::SessionManager - Error while restoring session Při obnově sezení se vyskytla chyba - Could not restore session %1 Sezení %1 se nepodařilo obnovit - Error while saving session Při ukládání sezení se vyskytla chyba - Could not save session to file %1 Sezení se nepodařilo uložit do souboru %1 - Qt Creator Qt Creator - - Untitled Bez názvu - Session ('%1') Sezení ('%1') @@ -8484,85 +9078,81 @@ přidat do ověření verzí (%2)? QMakeStep - QMake Build Configuration: - Nastavení sestavování pro QMake: + Nastavení sestavování pro QMake: - debug - debug + debug - release - release + release - Additional arguments: Dodatečné argumenty: - Effective qmake call: Účinné vyvolání qmake: + + qmake build configuration: + Nastavení sestavování pro qmake: + + + Debug + Ladění + + + Release + Vydání + QObject - Pass Projít - Expected Failure Očekávaný neúspěch - Failure Neúspěch - Expected Pass Očekávané projití - Warning Varování - Qt Warning Varování Qt - Qt Debug Ladění Qt - Critical Zásadní - Fatal Vážné - Skipped Přeskočeno - Info Informace @@ -8570,17 +9160,14 @@ přidat do ověření verzí (%2)? QTestLib::Internal::QTestOutputPane - Test Results Výsledky zkoušky - Result Výsledek - Message Hlášení @@ -8588,12 +9175,10 @@ přidat do ověření verzí (%2)? QTestLib::Internal::QTestOutputWidget - All Incidents Všechny mimořádné události - Show Only: Ukázat pouze: @@ -8601,140 +9186,113 @@ přidat do ověření verzí (%2)? QmlProjectManager::Internal::QmlNewProjectWizard - QML Application - Program QML + Program QML - Creates a QML application. - Vytvoří program QML. + Vytvoří program QML. - Projects - Projekty + Projekty - The project %1 could not be opened. - Projekt %1 se nepodařilo otevřít. + Projekt %1 se nepodařilo otevřít. QmlProjectManager::Internal::QmlNewProjectWizardDialog - New QML Project - Nový projekt QML + Nový projekt QML - This wizard generates a QML application project. - Tento průvodce vytvoří jeden projekt programu QML. + Tento průvodce vytvoří jeden projekt programu QML. QmlProjectManager::Internal::QmlProjectWizard - Import of existing QML directory - Zavést stávající adresář QML + Zavést stávající adresář QML - Creates a QML project from an existing directory of QML files. - Vytvoří projekt QML ze stávajícího adresáře se soubory QML. + Vytvoří projekt QML ze stávajícího adresáře se soubory QML. - Projects - Projekty + Projekty - The project %1 could not be opened. - Projekt %1 se nepodařilo otevřít. + Projekt %1 se nepodařilo otevřít. QmlProjectManager::Internal::QmlProjectWizardDialog - Import of QML Project - Zavedení projektu QML + Zavedení projektu QML - QML Project - Projekt QML + Projekt QML - Project name: - Název projektu: + Název projektu: - Location: - Umístění: + Umístění: QmlProjectManager::Internal::QmlRunConfiguration - - QML Viewer Prohlížeč QML - - - <Current File> - <Nynější soubor> + <Nynější soubor> - QML Viewer arguments: - Argumenty pro prohlížeč QML: + Argumenty pro prohlížeč QML: - Main QML File: - Hlavní soubor QML: + Hlavní soubor QML: QrcEditor - Add Přidat - Remove Odstranit - Properties Vlastnosti - Prefix: Předpona: - Language: Jazyk: - Alias: Přezdívka: @@ -8742,20 +9300,29 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::ConsoleAppWizard - Qt4 Console Application - Konzolová aplikace v Qt4 + Konzolová aplikace v Qt4 - Creates a Qt4 console application. - Vytvoří konzolovou aplikaci v Qt4. + Vytvoří konzolovou aplikaci v Qt4. + + + Qt Console Application + Konzolová aplikace v Qt + + + Creates a project containing a single main.cpp file with a stub implementation. + +Preselects a desktop Qt for building the application if available. + Vytvoří projekt, který sestává z jednoho souboru main.cpp s provedením trupu. + +Vybere pro vývoj programu vhodnou verzi Qt, je-li dostupná. Qt4ProjectManager::Internal::ConsoleAppWizardDialog - This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. Tento průvodce vytvoří projekt konzolové aplikace v Qt4.. Aplikace je odvozena z QCoreApplication a nemá žádné uživatelsk rozhraní. @@ -8763,12 +9330,10 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::DesignerExternalEditor - Qt Designer is not responding (%1). Qt Designer neodpovídá (%1). - Unable to create server socket: %1 Serverovou zásuvku se nepodařilo vytvořit: %1 @@ -8776,28 +9341,32 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::EmbeddedPropertiesPanel - Embedded Linux - Vložený Linux + Vložený Linux Qt4ProjectManager::Internal::EmptyProjectWizard - Empty Qt4 Project - Prázdný projekt Qt4 + Prázdný projekt Qt4 - Creates an empty Qt project. - Vytvoří prázdný projekt Qt4. + Vytvoří prázdný projekt Qt4. + + + Empty Qt Project + Prázdný projekt Qt + + + Creates a qmake-based project without any files. This allows you to create an application without any default classes. + Vytvoří projekt založený na qmake bez jakýchkoli souborů. To vám umožní vytvoření programu bez jakýchkoli výchozích tříd. Qt4ProjectManager::Internal::EmptyProjectWizardDialog - This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. Tento průvodce vytvoří prázdný projekt Qt4. S pomocí dalších průvodců lze do něj později přidat další soubory. @@ -8805,12 +9374,10 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::ExternalQtEditor - Unable to start "%1" Nelze spustit "%1" - The application "%1" could not be found. Aplikaci "%1" se nepodařilo najít. @@ -8818,12 +9385,10 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::FilesPage - Class Information Informace ohledně třídy - Specify basic information about the classes for which you want to generate skeleton source code files. Zadejte základní informace ohledně tříd, pro které chcete vytvořit základní soubory se zdrojovým kódem. @@ -8831,17 +9396,26 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::GuiAppWizard - Qt4 Gui Application - Program s uživatelským rozhraním Qt4 + Program s uživatelským rozhraním Qt4 - Creates a Qt4 Gui Application with one form. - Vytvoří program s uživatelským rozhraním Qt4 s jedním formulářem. + Vytvoří program s uživatelským rozhraním Qt4 s jedním formulářem. + + + Qt Gui Application + Program s uživatelským rozhraním Qt + + + Creates a Qt application for the desktop. Includes a Qt Designer-based main window. + +Preselects a desktop Qt for building the application if available. + Vytvoří program napsaný v Qt určený pro stolní počítač s jedním hlavním oknem založeným na Qt Designeru. + +Vybere pro vývoj programu vhodnou verzi Qt, je-li dostupná. - The template file '%1' could not be opened for reading: %2 Soubor s předlohou '%1' se nepodařilo otevřít pro čtení: %2 @@ -8849,61 +9423,63 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::GuiAppWizardDialog - This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. Tento průvodce vytvoří projekt programu s uživatelským rozhraním Qt4. Aplikace se odvozuje ve výchozím nastavení od třídy QApplication s obsahuje jeden prázdný prvek. + + Details + Podrobnosti + Qt4ProjectManager::Internal::LibraryWizard - C++ Library Knihovna 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>. + Vytvoří knihovnu C++ založenou na qmake. Tuto lze použít pro vytvoření:<ul><li>sdílené knihovny C++ pro užití s <tt>QPluginLoader</tt> a pro dobu běhu (přídavné moduly)</li><li>sdílenou nebo statickou knihovnu C++ pro použití s dalším projektem v čase spojení</li></ul>. + + Creates a C++ Library. - Vytvoří knihovnu C++. + Vytvoří knihovnu C++. Qt4ProjectManager::Internal::LibraryWizardDialog - Shared library Sdílená knihovna (dynamicky svázaná) - Statically linked library Statisticky svázaná knihovna - Qt 4 plugin Přídavný modul Qt 4 - Type Typ - This wizard generates a C++ library project. Tento průvodce vytvoří projekt s knihovnou C++. + + Details + Podrobnosti + Qt4ProjectManager::Internal::ModulesPage - Select required modules Vybrat požadované moduly - Select the modules you want to include in your project. The recommended modules for this project are selected by default. Vyberte moduly, které chcete zahrnout ve svém projektu. Moduly doporučené pro tento projekt jsou již vybrány. @@ -8911,224 +9487,193 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::ProEditor - New - Nový + Nový - Remove - Odstranit + Odstranit - Up - Nahoru + Nahoru - Down - Dolů + Dolů - Cut - Vyjmout + Vyjmout - Copy - Kopírovat + Kopírovat - Paste - Vložit + Vložit - Ctrl+X - Ctrl+X + Ctrl+X - Ctrl+C - Ctrl+C + Ctrl+C - Ctrl+V - Ctrl+V + Ctrl+V - Add Variable - Přidat proměnnou + Přidat proměnnou - Add Scope - Přidat oblast + Přidat oblast - Add Block - Přidat blok + Přidat blok Qt4ProjectManager::Internal::ProEditorModel - <Global Scope> - <Celková oblast> + <Celková oblast> - Change Item - Změnit prvek + Změnit prvek - Change Variable Assignment - Změnit přiřazení proměnné + Změnit přiřazení proměnné - Change Variable Type - Změnit typ proměnné + Změnit typ proměnné - Change Scope Condition - Změnit podmínku oblasti + Změnit podmínku oblasti - Change Expression - Změnit výraz + Změnit výraz - Move Item - Posunout prvek + Posunout prvek - Remove Item - Odstranit prvek + Odstranit prvek - Insert Item - Vložit prvek + Vložit prvek Qt4ProjectManager::Internal::ProjectLoadWizard - - Import existing build settings - Zavést stávající nastavení sestavování + Zavést stávající nastavení sestavování - 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 ve zdrojovém adresáři našel již jsoucí sestavení.<br><br><b>Verze Qt:</b> %1<br><b>Nastavení sestavování:</b> %2<br><b>Dodatečné argumenty pro QMake:</b>%3 + Qt Creator ve zdrojovém adresáři našel již jsoucí sestavení.<br><br><b>Verze Qt:</b> %1<br><b>Nastavení sestavování:</b> %2<br><b>Dodatečné argumenty pro QMake:</b>%3 - Import existing build settings. - Zavést stávající nastavení sestavování. + Zavést stávající nastavení sestavování. - <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>Poznámka:</b> Zavedení nastavení přidá automaticky verzi Qt zjištěnou podle <br><b>%1</b> do seznamu s verzemi Qt. + <b>Poznámka:</b> Zavedení nastavení přidá automaticky verzi Qt zjištěnou podle <br><b>%1</b> do seznamu s verzemi Qt. + + + Project setup + Nachystání projektu Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget - Clear system environment - Vyprázdnit prostředí systému + Vyprázdnit prostředí systému - Build Environment - Prostředí pro sestavování + Prostředí pro sestavování Qt4ProjectManager::Internal::Qt4PriFileNode - Headers Hlavičky - Sources Zdroje - Forms Formuláře - Resources Zdroje - Other files Jiné soubory - - Failed! Chyba! - Could not open the file for edit with SCC. Soubor se nepodařilo otevřít pro úpravy s pomocí SCC. - Could not set permissions to writable. Nepodařilo se nastavit oprávnění k souboru tak, aby se stal zapisovatelným. - There are unsaved changes for project file %1. Soubor s projektem %1 má neuložené změny. - + Could not write project file %1. + Soubor s projektem %1 se nepodařilo zapsat. + + + Error while reading PRO file %1: %2 + Chyba při čtení souboru PRO %1: %2 + + Error while parsing file %1. Giving up. - Chyba při vyhodnocování souboru %1. Zrušeno. + Chyba při vyhodnocování souboru %1. Zrušeno. - Error while changing pro file %1. - Chyba při změně projektového souboru %1. + Chyba při změně projektového souboru %1. Qt4ProjectManager::Internal::Qt4ProFileNode - Error while parsing file %1. Giving up. Chyba při vyhodnocování souboru %1. Zrušeno. - Could not find .pro file for sub dir '%1' in '%2' Soubor .pro pro podadresář '%1' se v '%2' nepodařilo najít @@ -9136,169 +9681,220 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::Qt4ProjectConfigWidget - Configuration Name: - Název nastavení: + Název nastavení: - Qt Version: - Verze Qt: + Verze Qt: - This Qt-Version is invalid. - Tato verze Qt je neplatná. + Tato verze Qt je neplatná. - Shadow Build: - Stínové sestavování: + Stínové sestavování: - Build Directory: - Adresář pro sestavování: + Adresář pro sestavování: - <a href="import">Import existing build</a> <a href="import">Zavést stávající sestavování.</a> - Shadow Build Directory Adresář pro stínové sestavování - - Default Qt Version (%1) - Výchozí verze Qt (%1) + Výchozí verze Qt (%1) - No Qt Version set - Nenastavena žádná verze Qt + Nenastavena žádná verze Qt + + + using <font color="#ff0000">invalid</font> Qt Version: <b>%1</b><br>%2 + using <font color="#ff0000">neplatná</font> verze Qt: <b>%1</b><br>%2 + + + No Qt Version found. + Nenalezena žádná verze Qt. - using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> Používá se verze Qt: <b>%1</b><br>s řetězcem nástrojů <b>%2</b><br>sestavuje se v <b>%3</b> - General Obecné - + Building in subdirectories of the source directory is not supported by qmake. + Sestavování v podadresářích zdrojového adresáře není qmake podporováno. + + + An incompatible build exists in %1, which will be overwritten. + %1 build directory + V sestavovacím adresáři %1 je neslučitelné sestavení, které bude přepsáno. + + Manage Řídit - Tool Chain: + Řetězec nástrojů: + + + Configuration name: + Název nastavení: + + + Qt version: + Verze Qt: + + + This Qt version is invalid. + Tato verze Qt je neplatná. + + + Tool chain: Řetězec nástrojů: + + Shadow build: + Stínové sestavování: + + + Build directory: + Adresář pro sestavování: + + + problemLabel + problemLabel + Qt4ProjectManager::Internal::Qt4ProjectManagerPlugin - - Run qmake Provést qmake + + Build + Sestavování + + + Run qmake in %1 + Provést qmake v %1 + + + Build in %1 + Sestavit v %1 + Qt4ProjectManager::Internal::Qt4RunConfiguration - - Qt4RunConfiguration - Nastavení spuštění Qt4 + Nastavení spuštění Qt4 - Could not parse %1. The Qt4 run configuration %2 can not be started. - %1 se nepodařilo vyhodnotit. Nastavení spuštění Qt4 %2 se nepodařilo spustit. + %1 se nepodařilo vyhodnotit. Nastavení spuštění Qt4 %2 se nepodařilo spustit. + + + Clean Environment + Smazat prostředí + + + System Environment + Prostředí systému + + + Build Environment + Prostředí pro sestavování + + + Qt4 RunConfiguration + Nastavení spuštění Qt4 Qt4ProjectManager::Internal::Qt4RunConfigurationWidget - Name: Název: - Executable: Spustitelný soubor: - Select the working directory - Vybrat pracovní adresář + Vybrat pracovní adresář - Reset to default Nastavit znovu na výchozí - Working Directory: - Pracovní adresář: + Pracovní adresář: - Arguments: Argumenty: - Run in Terminal - Spustit v terminálu + Spustit v terminálu - - Run Environment + Select Working Directory + Vyberte pracovní adresář + + + Working directory: + Pracovní adresář: + + + Run in terminal + Spustit v terminálu + + + Run Environment Prováděcí prostředí - Base environment for this runconfiguration: Základní prostředí pro toto nastavení spuštění: - Clean Environment Smazat prostředí - System Environment Prostředí systému - Build Environment Prostředí pro sestavování - Running executable: <b>%1</b> %2 (in terminal) - Spouští se spustitelný soubor: <b>%1</b> %2 (v terminálu) + Spouští se spustitelný soubor: <b>%1</b> %2 (v terminálu) - Running executable: <b>%1</b> %2 - Spouští se spustitelný soubor: <b>%1</b> %2 + Spouští se spustitelný soubor: <b>%1</b> %2 - Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) Používat ladicí verzi rámce (DYLD_IMAGE_SUFFIX=_debug) @@ -9306,136 +9902,147 @@ přidat do ověření verzí (%2)? Qt4ProjectManager::Internal::QtOptionsPageWidget - <specify a name> <Zadejte název> - <specify a qmake location> <Zadejte umístění qmake> - Select QMake Executable + Vybrat spustitelný soubor QMake + + + Select qmake Executable Vybrat spustitelný soubor QMake - Select the MinGW Directory Vybrat adresář s MinGW - Select Carbide Install Directory Vybrat instalační adresář Carbide - Select S60 SDK Root Vybrat hlavní adresář S60 SDK - Select the CSL ARM Toolchain (GCCE) Directory Vybrat adresář s řetězem nástrojů CSL ARM (GCCE) - Auto-detected Automaticky zjištěno - Manual Ruční - Building helpers Pomocné knihovny pro výstup dat - <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>Soubor:</td><td><pre>%1</pre></td></tr><tr><td>Naposledy&nbsp;změněno:</td><td>%2</td></tr><tr><td>Velikost:</td><td>%3 Bytů</td></tr></table></body></html> - + This Qt Version has a unknown toolchain. + Tato verze Qt nemá přiřazen žádný známý řetěz nástrojů. + + + Desktop + Qt Version is meant for the desktop + Stolní počítač + + + Symbian + Qt Version is meant for Symbian + Symbian + + + Maemo + Qt Version is meant for Maemo + Maemo + + + Qt Simulator + Qt Version is meant for Qt Simulator + Cvičné zařízení Qt + + + unkown + No idea what this Qt Version is meant for! + Neznámé + + + Found Qt version %1, using mkspec %2 (%3) + Byla nalezena verze Qt %1 pomocí mkspec %2 (%3) + + The Qt Version identified by %1 is not installed. Run make install - Verze Qt určená %1 není nainstalována. Proveďte make install + Verze Qt určená %1 není nainstalována. Proveďte make install - %1 does not specify a valid Qt installation - %1 není platnou instalací Qt + %1 není platnou instalací Qt - Found Qt version %1, using mkspec %2 - Byla nalezena verze Qt %1 s mkspec %2 + Byla nalezena verze Qt %1 s mkspec %2 Qt4ProjectManager::Internal::QtVersionManager - Qt versions - Verze Qt + Verze Qt - + + - - - - Name Název - Debugging Helper Pomocná knihovna pro výstup dat o ladění - Version Name: - Název verze: + Název verze: - Debugging Helper: - Pomocná knihovna pro výstup dat o ladění: + Pomocná knihovna pro výstup dat o ladění: - Show &Log &Ukázat zápis - &Rebuild &Sestavit znovu - Default Qt Version: - Výchozí verze Qt: + Výchozí verze Qt: - MSVC Version: - Verze MSVC: + Verze 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; } @@ -9448,169 +10055,183 @@ p, li { white-space: pre-wrap; } <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;">Verzi MSVC se nepodařilo určit.</span></p></body></html> - QMake Location - Umístění QMake + Umístění QMake - QMake Location: - Umístění QMake: + Umístění QMake: - MinGW Directory: - Adresář s MinGW: + Adresář s MinGW: - S60 SDK: S60 SDK: - CSL/GCCE Directory: - Adresář s CSL/GCCE: + Adresář s CSL/GCCE: - Carbide Directory: + Adresář s Carbide: + + + qmake Location + Umístění qmake + + + Version name: + Název verze: + + + qmake location: + Umístění qmake: + + + MinGW directory: + Adresář s MinGW: + + + Toolchain: + Řetězec nástrojů: + + + CSL/GCCE directory: + Adresář s CSL/GCCE: + + + Carbide directory: Adresář s Carbide: + + Debugging helper: + Pomocná knihovna pro výstup dat o ladění: + Qt4ProjectManager::Internal::QtWizard - The project %1 could not be opened. - Projekt %1 se nepodařilo otevřít. + Projekt %1 se nepodařilo otevřít. Qt4ProjectManager::Internal::ValueEditor - Edit Variable - Upravir proměnnou + Upravir proměnnou - Variable Name: - Název proměnné: + Název proměnné: - Assignment Operator: - Obsluha přiřazení: + Obsluha přiřazení: - Variable: - Proměnná: + Proměnná: - Append (+=) - Připojit (+=) + Připojit (+=) - Remove (-=) - Odstranit (-=) + Odstranit (-=) - Replace (~=) - Nahradit (~=) + Nahradit (~=) - Set (=) - Přidělit (=) + Přidělit (=) - Unique (*=) - Jednoznačně přidělit (*=) + Jednoznačně přidělit (*=) - Select Item - Vybrat prvek + Vybrat prvek - Edit Item - Upravit prvek + Upravit prvek - Select Items - Vybrat prvky + Vybrat prvky - Edit Items - Upravit prvky + Upravit prvky - New - Nový + Nový - Remove - Odstranit + Odstranit - Edit Values - Upravit hodnoty + Upravit hodnoty - Edit %1 - Upravit %1 + Upravit %1 - Edit Scope - Upravit oblast + Upravit oblast - Edit Advanced Expression - Upravit rozšířený výraz + Upravit rozšířený výraz Qt4ProjectManager::MakeStep - <font color="#ff0000">Could not find make command: %1 in the build environment</font> - <font color="#ff0000">Příkaz make %1 se v prostředí pro sestavování nepodařilo nalézt</font> + <font color="#ff0000">Příkaz make %1 se v prostředí pro sestavování nepodařilo nalézt</font> - <font color="#0000ff"><b>No Makefile found, assuming project is clean.</b></font> - <font color="#0000ff"><b>Nebyl nalezen žádný 'Makefile'. Projekt je očividně v čistém stavu.</b></font> + <font color="#0000ff"><b>Nebyl nalezen žádný 'Makefile'. Projekt je očividně v čistém stavu.</b></font> + + + Make + Qt4 MakeStep display name. + Make + + + Could not find make command: %1 in the build environment + Příkaz make: %1 se v prostředí pro sestavování nepodařilo nalézt Qt4ProjectManager::MakeStepConfigWidget - Override %1: Přepsat %1: - - <b>Make Step:</b> %1 not found in the environment. + <b>Make:</b> %1 not found in the environment. <b>Krok Make:</b> %1 v prostředí nenalezen. - + <b>Make Step:</b> %1 not found in the environment. + <b>Krok Make:</b> %1 v prostředí nenalezen. + + <b>Make:</b> %1 %2 in %3 <b>Příkaz Make:</b> %1 %2 v %3 @@ -9618,113 +10239,105 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::QMakeStep - <font color="#ff0000"><b>No valid Qt version set. Set one in Preferences </b></font> - + <font color="#ff0000"><b>Není nastavena žádná platná verze Qt. Nastavte ji v nastaveních</b></font> - <font color="#ff0000"><b>No valid Qt version set. Set one in Tools/Options </b></font> - + <font color="#ff0000"><b>Není nastavena žádná platná verze Qt. Nastavte ji v Nástroje/Volby</b></font> - <font color="#0000ff">Configuration unchanged, skipping QMake step.</font> - <font color="#0000ff">Nastavení nezměněno. Přeskakuje se krok QMake.</font> + <font color="#0000ff">Nastavení nezměněno. Přeskakuje se krok QMake.</font> + + + qmake + QMakeStep display name. + qmake + + + Configuration is faulty, please check the Build Issues view for details. + Nastavení je chybné. Prověřte, prosím, věci okolo sestavování kvůli podrobnostem. + + + Configuration unchanged, skipping qmake step. + Nastavení nezměněno. Přeskakuje se krok qmake. Qt4ProjectManager::Qt4Manager - Loading project %1 ... - Nahrává se projekt %1 ... + Nahrává se projekt %1 ... - Failed opening project '%1': Project file does not exist Projekt %1 se nepodařil otevřít: Soubor s projektem neexistuje - - Failed opening project - Projekt se nepodařil otevřít + Projekt se nepodařil otevřít - Failed opening project '%1': Project already open Projekt '%1' se nepodařil otevřít, neboť projekt je již otevřen - Opening %1 ... - Otevírá se %1 ... + Otevírá se %1 ... - Done opening project - Projekt otevřen + Projekt otevřen Qt4ProjectManager::QtVersionManager - <not found> <nenalezeno> - - Qt in PATH Qt v CESTĚ - Name: Název: - Source: Zdroj: - mkspec: mkspec: - qmake: qmake: - Default: Výchozí: - Compiler: - Překladač: + Překladač: - Version: Verze: - Debugging helper: Pomocná knihovna pro výstup dat o ladění: @@ -9732,17 +10345,14 @@ p, li { white-space: pre-wrap; } QtDumperHelper - Found an outdated version of the debugging helper library (%1); version %2 is required. Byla nalezena zastaralá verze (%1) pomocné knihovny pro výstup dat o ladění. Je požadována verze %2. - <none> <žádný> - %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 Jeden podporovaný typ, verze Qt: %1, jmenný prostor Qt: %2, verze pomocné knihovny pro výstup dat: %3 @@ -9754,82 +10364,66 @@ p, li { white-space: pre-wrap; } QtModulesInfo - Core non-GUI classes used by other modules Základní třídy (ne pro GUI), které jsou používány dalšími moduly - Additional Qt Script components Dodatečné součásti skriptu Qt - Classes for low-level multimedia functionality Třídy pro nízkoúrovňový multimediální rozsah funkcí - Graphical user interface components Součásti názorného uživatelského rozhraní - Classes for network programming Třídy pro síťové programování - OpenGL support classes Třídy pro podporu OpenGL - Classes for database integration using SQL Třídy pro zahrnutí databází pomocí SQL - Classes for evaluating Qt Scripts Třídy pro vyhodnocování skriptů Qt - Classes for displaying the contents of SVG files Třídy pro zobrazování obsahu souborů SVG - Classes for displaying and editing Web content Třídy pro zobrazování a úpravy obsahu světové počítačové sítě - Classes for handling XML Třídy pro zacházení s XML - An XQuery/XPath engine for XML and custom data models Stroj XQuery/XPath pro XML a uživatelsky stanovené datové modely - Multimedia framework classes Třídy pro uspořádání multimédií - Classes that ease porting from Qt 3 to Qt 4 Třídy, které ulehčují přenos z Qt 3 na Qt 4 - Tool classes for unit testing Pomocné třídy nástrojů pro zkoušení jednotek - Classes for Inter-Process Communication using the D-Bus Třídy pro spojení mezi procesy pomocí D-BUS @@ -9837,128 +10431,104 @@ p, li { white-space: pre-wrap; } QtScriptEditor::Internal::QtScriptEditorPlugin - Creates a Qt Script file. - Vytvoří soubor se skriptem Qt. + Vytvoří soubor se skriptem Qt. - Qt Script file - Soubor se skriptem Qt + Soubor se skriptem Qt - Qt - Qt + Qt QtScriptEditor::Internal::ScriptEditor - <Select Symbol> - <Vybrat symbol> + <Vybrat symbol> RegExp::Internal::RegExpWindow - &Pattern: &Vzor: - &Escaped Pattern: Ú&nikový vzor: - &Pattern Syntax: &Skladba vzoru: - &Text: &Text: - Case &Sensitive Rozlišující psaní &velkých a malých písmen - &Minimal &Nejmenší - Index of Match: Rejstřík hodících se spojení: - Matched Length: Odpovídající délka: - Regular expression v1 - Pravidelně se opakující výraz v1 + Regulární výraz v1 - Regular expression v2 - Pravidelně se opakující výraz v2 + Regulární výraz v2 - Wildcard Vzor hledání - Fixed string Pevný řetězec - Capture %1: Zachytit %1: - Match: Shoda: - Regular Expression - Pravidelně se opakující výraz + Regulární výraz - Enter pattern from code... Zadat vzor z kódu... - Clear patterns Vyprázdnit vzory - Clear texts Vyprázdnit texty - Enter pattern from code Zadat vzor z kódu - Pattern Vzor @@ -9966,27 +10536,26 @@ p, li { white-space: pre-wrap; } ResourceEditor::Internal::ResourceEditorPlugin - Creates a Qt Resource file (.qrc). - Vytvoří zdrojový soubor Qt (.qrc). + Vytvoří zdrojový soubor Qt (.qrc). - Qt Resource file Zdrojový soubor Qt - Qt - Qt + Qt + + + Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. + Vytvoří zdrojový soubor Qt (.qrc), který můžete přidat do projektu C++. - &Undo &Zpět - &Redo &Znovu @@ -9994,7 +10563,6 @@ p, li { white-space: pre-wrap; } ResourceEditor::Internal::ResourceEditorW - untitled bez názvu @@ -10002,17 +10570,14 @@ p, li { white-space: pre-wrap; } SaveItemsDialog - Save Changes Uložit změny - The following files have unsaved changes: Následující soubory byly změněny: - Automatically save all files before building Automaticky uložit všechny změněné soubory před sestavováním @@ -10020,75 +10585,69 @@ p, li { white-space: pre-wrap; } SettingsDialog - Options - Volby + Volby - 0 - 0 + 0 SharedTools::QrcEditor - Add Files Přidat soubory - Add Prefix Přidat předponu - Invalid file - Neplatný soubor + Neplatný soubor - Copy Kopírovat - Skip Přeskočit - Abort Zrušit - The file %1 is not in a subdirectory of the resource file. Continuing will result in an invalid resource file. - Soubor %1 se nenachází v podadresáři zdrojového souboru. Přidáním by vznikl nepkatný zdrojový soubor. + Soubor %1 se nenachází v podadresáři zdrojového souboru. Přidáním by vznikl nepkatný zdrojový soubor. + + + Invalid file location + Neplatné umístění souboru + + + 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. + Soubor %1 se nenachází v podadresáři zdrojového souboru. Nyní máte možnost zkopírovat tento soubor do platného umístění. - Choose copy location Vyberte umístění cíle pro kopírování - Overwrite failed Chyba při přepsání - Could not overwrite file %1. Soubor %1 se nepodařilo přepsat. - Copying failed Kopírování se nezdařilo - Could not copy the file to %1. Soubor se nepodařilo zkopírovat do %1. @@ -10096,72 +10655,58 @@ p, li { white-space: pre-wrap; } SharedTools::ResourceView - Add Files... Přidat soubory... - Change Alias... Změnit přezdívku... - Add Prefix... Přidat předponu... - Change Prefix... Změnit předponu... - Change Language... Změnit jazyk... - Remove Item Odstranit prvek - Open file Otevřít soubor - All files (*) Všechny soubory (*) - Change Prefix Změnit předponu - Input Prefix: Předpona vstupu: - Change Language Změnit jazyk - Language: Jazyk: - Change File Alias Změnit soubor s přezdívkou - Alias: Přezdívka: @@ -10169,70 +10714,57 @@ p, li { white-space: pre-wrap; } ShortcutSettings - Keyboard Shortcuts - Klávesové zkratky + Klávesové zkratky - Filter: - Filtr: + Filtr: - Command - Příkaz + Příkaz - Label - Popis + Popis - Shortcut - Zkratka + Zkratka - Defaults - Výchozí + Výchozí - Import... - Zavést... + Zavést... - Export... - Vyvést... + Vyvést... - Key Sequence - Pořadí kláves + Pořadí kláves - Shortcut: - Klávesová zkratka: + Klávesová zkratka: - Reset - Nastavit znovu + Nastavit znovu - Remove - Odstranit + Odstranit ShowBuildLog - Debugging Helper Build Log Zápis o vytvoření pomocné knihovny pro výstup dat o ladění @@ -10240,7 +10772,6 @@ p, li { white-space: pre-wrap; } Snippets::Internal::SnippetsPlugin - Snippets Kousky @@ -10248,7 +10779,6 @@ p, li { white-space: pre-wrap; } Snippets::Internal::SnippetsWindow - Snippets Kousky @@ -10256,22 +10786,18 @@ p, li { white-space: pre-wrap; } StartExternalDialog - Start Debugger Spustit ladicí program - Executable: Spustitelný soubor: - Arguments: Argumenty: - Break at 'main': Bod přerušení při 'main': @@ -10279,68 +10805,104 @@ p, li { white-space: pre-wrap; } StartRemoteDialog - Start Debugger Spustit ladicí program - Architecture: Architektura: - Host and port: Hostitelský počítač a číslo přípojky: - Use server start script: Použít spouštěcí skript k serveru: - Server start script: Spouštěcí skript k serveru: + + Debugger: + Ladič: + + + Local executable: + Místní spustitelný soubor: + + + Sysroot: + Sysroot: + Subversion::Internal::SettingsPage - Subversion Command: - Příkaz pro Subversion: + Příkaz pro Subversion: - Authentication Ověření pravosti - User name: - Uživatelské jméno: + Uživatelské jméno: - Password: Heslo: - Subversion Subversion - Prompt to submit + Potvrdit předložení + + + Configuration + Nastavení + + + Subversion command: + Příkaz pro Subversion: + + + Username: + Uživatelské jméno: + + + Miscellaneous + Různá nastavení + + + Timeout: + Časové omezení: + + + s + s + + + Prompt on submit Potvrdit předložení + + Ignore whitespace changes in annotation + U poznámek si nevšímat změn prázdných míst + + + Log count: + Počet zápisů omezit na: + Subversion::Internal::SettingsPageWidget - Subversion Command Příkaz pro Subversion @@ -10348,221 +10910,259 @@ p, li { white-space: pre-wrap; } Subversion::Internal::SubversionPlugin - &Subversion &Subversion - Add Přidat - Add "%1" Přidat "%1" - Alt+S,Alt+A Alt+S, Alt+A - Delete - Smazat + Smazat - Delete "%1" - Smazat "%1" + Smazat "%1" - Revert - Vrátit + Vrátit - Revert "%1" - Vrátit zpět změny v "%1" + Vrátit zpět změny v "%1" - Diff Project Rozdíly (diff) pro projekt - Diff Current File Rozdíly (diff) nynějšího souboru - Diff "%1" Rozdíly (diff) pro "%1" - Alt+S,Alt+D Alt+S, Alt+D - Commit All Files Odeslat všechny soubory - Commit Current File Odeslat nynější soubor - Commit "%1" Odeslat "%1" - Alt+S,Alt+C Alt+S, Alt+C - Filelog Current File Zápis k souboru pro nynější soubor - Filelog "%1" Zápis k souboru "%1" - Annotate Current File Opatřit nynější soubor vysvětlivkami - Annotate "%1" Opatřit vysvětlivkami "%1" - Describe... Popis k... - Project Status Stav projektu - Update Project Obnovit projekt - Commit Odeslat - Diff Selected Files Rozdíly (diff) pro vybrané soubory - &Undo &Zpět - &Redo &Znovu - Closing Subversion Editor Zavřít editor Subversion - Do you want to commit the change? Chcete odeslat změnu? - The commit message check failed. Do you want to commit the change? Ověření popisu týkajícího se odeslání se nezdařilo. Přesto chcete odeslání změny provést? - The commit list spans several repositories (%1). Please commit them one by one. - Seznam se soubory k odeslání zahrnuje více datových skladišť (%1). Odešlete je, prosím, jeden po druhém. + Seznam se soubory k odeslání zahrnuje více datových skladišť (%1). Odešlete je, prosím, jeden po druhém. - Executing: %1 %2 - Executing: <executable> <arguments> Provádí se: %1 %2 - The file has been changed. Do you want to revert it? Soubor byl změněn. Chcete vrátit změny? - + Delete... + Smazat... + + + Delete "%1"... + Smazat "%1"... + + + Revert... + Vrátit... + + + Revert "%1"... + Vrátit zpět změny v "%1"... + + + Diff Project "%1" + Rozdíly (diff) pro projekt "%1" + + + Status of Project "%1" + Stav projektu "%1" + + + Log Project + Zápis pro projekt + + + Log Project "%1" + Zápis pro projekt "%1" + + + Update Project "%1" + Obnovit projekt "%1" + + + Commit Project + Odeslat projekt + + + Commit Project "%1" + Odeslat projekt "%1" + + + Diff Repository + Rozdíly (diff) skladiště + + + Repository Status + Stav skladiště + + + Log Repository + Zápis (log) skladiště + + + Update Repository + Obnovit skladiště + + + Revert Repository... + Vrátit zpět změny v celém skladišti... + + + Revert repository + Vrátit zpět změny v celém skladišti + + + Would you like to revert all changes to the repository? + Chcete zvrátit všechny zbývající změny ve skladišti? + + + Revert failed: %1 + Vzetí změn zpět se nezdařilo: %1 + + Another commit is currently being executed. V současnosti se již provádí jiné odeslání. - There are no modified files. Nejsou žádné změněné soubory. - Cannot create temporary file: %1 Nepodařilo se vytvořit žádný dočasný soubor: %1 - Describe Popsat - Revision number: Číslo pozměnění: - + Executing in %1: %2 %3 + + Příkaz [%1]: %2 %3 + + + No subversion executable specified! Nebyl zadán žádný spustitelný soubor pro Subversion! - The process terminated with exit code %1. Proces byl ukončen. Vrácená hodnota %1. - The process terminated abnormally. Proces byl ukončen neobvyklým způsobem. - Could not start subversion '%1'. Please check your settings in the preferences. Příkaz pro Subversion '%1' se nepodařilo spustit. Ověřte, prosím, svá nastavení v nastaveních. - Subversion did not respond within timeout limit (%1 ms). Žádná odpověď od 'Subversion' v rámci časového omezení (%1 ms). @@ -10570,7 +11170,6 @@ p, li { white-space: pre-wrap; } Subversion::Internal::SubversionSubmitEditor - Subversion Submit Předložení Subversion @@ -10578,31 +11177,29 @@ p, li { white-space: pre-wrap; } TextEditor::BaseFileFind - - %1 found %1 nalezen - List of comma separated wildcard filters Seznam filtrů se vzory hledání oddělených čárkou - + Use regular e&xpressions + Používat regulární &výrazy + + Use Regular E&xpressions - Používat pravidelně se opakující &výrazy + Používat pravidelně se opakující &výrazy TextEditor::BaseTextDocument - untitled bez názvu - <em>Binary data</em> <em>Binární data</em> @@ -10610,17 +11207,14 @@ p, li { white-space: pre-wrap; } TextEditor::BaseTextEditor - Print Document Vytisknout dokument - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. <b>Chyba:</b> Soubor "%1" se nepodařilo rozluštit s kódováním "%2". Nelze jej upravovat. - Select Encoding Vybrat kódování @@ -10628,12 +11222,10 @@ p, li { white-space: pre-wrap; } TextEditor::BaseTextEditorEditable - Line: %1, Col: %2 Řádek: %1, sloupec: %2 - Line: %1, Col: 999 Řádek: %1, sloupec: 999 @@ -10641,223 +11233,244 @@ p, li { white-space: pre-wrap; } TextEditor::BehaviorSettingsPage - Storage Ukládání - Removes trailing whitespace on saving. Odstraní při ukládání prázdné znaky na konci řádků. - &Clean whitespace &Vyčistit prázdné znaky - Clean whitespace in entire document instead of only for changed parts. Vyčistí prázdné znaky v celém dokumentu a nejen ve změněných částech. - In entire &document V celém &dokumentu - Correct leading whitespace according to tab settings. Opraví prázdné znaky na začátku řádků podle nastavení zarážek. - Clean indentation Opravit odsazení - &Ensure newline at end of file &Doplnit nový řádek na konci souboru - Tabs and Indentation Zarážky odsazení - Ta&b size: Šířka &zarážky: - &Indent size: &Velikost odsazení: - Backspace will go back one indentation level instead of one space. Zpětná klávesa (Backspace) jde zpět o jednu stupeň odsazení. Sleduje tedy hloubku odsazení místo toho, aby smazala jen jeden znak. - &Backspace follows indentation &Zpětná klávesa sleduje hloubku odsazení - Insert &spaces instead of tabs Vložit místo zarážek prázdné &znaky (mezery) - Enable automatic &indentation Povolit automatické &odsazení - Tab key performs auto-indent: Klávesa pro zarážku provede automatické odsazení: - Never Nikdy - Always Vždy - In leading white space - Pouze v prázdných znacích (mezerách) na začátku řádku + Pouze v prázdných znacích (mezerách) na začátku řádku + + + Automatically determine based on the nearest indented line (previous line preferred over next line) + Automaticky určit založeno na nejbližším odsazeném řádku (předchozí řádek upřednostňován před dalším řádkem) + + + Based on the surrounding lines + Založeno na okolních řádcích + + + Block indentation style: + Styl odsazení bloku: + + + Exclude Braces + Vyloučit závorky + + + Include Braces + Zahrnout závorky + + + GNU Style + Styl GNU + + + In Leading White Space + Pouze v prázdném místu na začátku řádku + + + Mouse + Myš + + + Enable &mouse navigation + Povolit navádění &myší + + + Enable scroll &wheel zooming + Povolit přibližování a oddalování pomocí &kolečka myši TextEditor::DisplaySettingsPage - Display Zobrazení - Display line &numbers &Zobrazit čísla řádků - Display &folding markers Zobrazit znaky s&kládání kódu - Show tabs and spaces. Ukázat zarážky a prázdné znaky (mezery). - &Visualize whitespace &Zviditelnit prázdné znaky - Highlight current &line Zvýraznit nynější řá&dek - Text Wrapping Zalomení textu - Enable text &wrapping Povolit &zalomení textu - Display right &margin at column: Zobrazit pravý &okraj sloupce: - Highlight &blocks Zvýraznit &bloky - Animate matching parentheses - Rozhýbat odpovídající závorky + Rozhýbat odpovídající závorky - Navigation - Navedení + Navedení - Enable &mouse navigation - Povolit navádění &myší + Povolit navádění &myší - Mark text changes - Vyznačit textové změny + Vyznačit textové změny + + + Mark &text changes + Vyznačit &textové změny + + + &Animate matching parentheses + &Rozhýbat odpovídající závorky + + + Auto-fold first &comment + Automaticky složit první po&známku + + + Center &cursor on scroll + Při projíždění držet &ukazovátko vprostřed TextEditor::FontSettingsPage - Font & Colors - Písmo & barvy + Písmo & barvy - Copy Color Scheme Kopírovat znázornění barev - Color Scheme name: + Název znázornění barev: + + + Font && Colors + Písmo && barvy + + + Color scheme name: Název znázornění barev: - %1 (copy) %1 (kopie) - Delete Color Scheme Smazat znázornění barev - Are you sure you want to delete this color scheme permanently? Jste si jist, že chcete toto znázornění barev smazat natrvalo? - Delete Smazat - Color Scheme Changed Znázornění barev změněno - The color scheme "%1" was modified, do you want to save the changes? Znázornění barev "%1" bylo změněno. Chcete uložit změny? - Discard Zahodit @@ -10865,29 +11478,24 @@ p, li { white-space: pre-wrap; } TextEditor::Internal::CodecSelector - Text Encoding Kódování textu - The following encodings are likely to fit: Zdá se, že následující kódování odpovídají souboru: - Select encoding for "%1".%2 Vybrat kódování pro "%1".%2 - Reload with Encoding Nahrát znovu s kódováním - Save with Encoding Uložit s kódováním @@ -10895,7 +11503,6 @@ Zdá se, že následující kódování odpovídají souboru: TextEditor::Internal::FindInCurrentFile - Current File Nynější soubor @@ -10903,27 +11510,26 @@ Zdá se, že následující kódování odpovídají souboru: TextEditor::Internal::FindInFiles - Files on Disk - Soubory na nosiči dat + Soubory na nosiči dat + + + Files on File System + Soubory v souborovém systému - &Directory: &Adresář: - &Browse &Procházet - File &pattern: &Vzor hledání pro názvy souborů: - Directory to search Adresář k prohledání @@ -10931,50 +11537,49 @@ Zdá se, že následující kódování odpovídají souboru: TextEditor::Internal::FontSettingsPage - Font Písmo - Family: &Písmová rodina - Size: Velikost: - Color Scheme Barevné schéma - Antialias Vyhlazování hran - Copy... Kopírovat... - Delete Smazat + + % + % + + + Zoom: + Zvětšení: + TextEditor::Internal::LineNumberFilter - Line in current document Řádek v nynějším dokumentu - Line %1 Řádek %1 @@ -10982,42 +11587,38 @@ Zdá se, že následující kódování odpovídají souboru: TextEditor::Internal::TextEditorPlugin - Creates a text file (.txt). - Vytvoří textový soubor (.txt). + Vytvoří textový soubor (.txt). + + + Creates a text file. The default file extension is <tt>.txt</tt>. You can specify a different extension as part of the filename. + Vytvoří textový soubor. Výchozí souborovou příponou je <tt>.txt</tt>. Jako část názvu souboru můžete stanovit jinou příponu. - Text File Textový soubor - General Obecné - Triggers a completion in this scope Začne doplnění v této oblasti - Ctrl+Space Ctrl+Space - Meta+Space Meta+Space - Triggers a quick fix in this scope Spustí rychlou opravu v této oblasti - Alt+Return ALT+Return @@ -11025,402 +11626,417 @@ Zdá se, že následující kódování odpovídají souboru: TextEditor::TextEditorActionHandler - &Undo &Zpět - &Redo &Znovu - Select Encoding... Vybrat kódování... - Auto-&indent Selection Opravit &odsazení ve výběru automaticky - Ctrl+I Ctrl+I - &Visualize Whitespace &Zviditelnit prázdné znaky - Clean Whitespace Vyčistit prázdné znaky - Enable Text &Wrapping Povolit &zalomení textu - (Un)Comment &Selection &Výběr opatřit poznámkou/Zrušit poznámku - Ctrl+/ Ctrl+/ - Delete &Line Smazat řá&dek - Shift+Del Shift+Del - Meta Meta - Ctrl Ctrl - &Rewrap Paragraph &Zalomit znovu odstavec - %1+E, R %1+E, R - %1+E, %2+V %1+E, %2+V - %1+E, %2+W %1+E, %2+W - Cut &Line Vyjmout řáde&k - Collapse Složit - Ctrl+< Ctrl+< - Expand Rozbalit - Ctrl+> Ctrl+> - (Un)&Collapse All Rozbalit/&Složit vše - Increase Font Size Zvětšit velikost písma - Ctrl++ Ctrl++ - Decrease Font Size Zmenšit velikost písma - Ctrl+- Ctrl+- - Goto Block Start - Jít na začátek bloku + Jít na začátek bloku - Ctrl+[ Ctrl+[ - Goto Block End - Jít na konec bloku + Jít na konec bloku - Ctrl+] Ctrl+] - Goto Block Start With Selection - Jít na začátek bloku s výběrem + Jít na začátek bloku s výběrem - Ctrl+{ Ctrl+{ - Goto Block End With Selection - Jít na konec bloku s výběrem + Jít na konec bloku s výběrem - Ctrl+} Ctrl+} - Select Block Up Vybrat jeden blok nahoru - Ctrl+U Ctrl+U - Select Block Down Vybrat jeden blok dolů - - <line number> - <číslo řádku> + Join Lines + Spojit řádky - - Move Line Up - Jít o jeden řádek nahoru + Ctrl+J + Ctrl+J - - Ctrl+Shift+Up - Ctrl+Shift+Up + Goto Line Start + Jít na začátek řádku - - Move Line Down - Jít o jeden řádek dolů + Goto Line End + Jít na konec řádku - - Ctrl+Shift+Down - Ctrl+Shift+Down + Goto Next Line + Jít na další řádek - - Copy Line Up - Kopírovat řádek nahoru + Goto Previous Line + Jít na předchozí řádek - - Ctrl+Alt+Up - Ctrl+Alt+Up + Goto Previous Character + Jít na předchozí znak - - Copy Line Down - Kopírovat řádek dolů + Goto Next Character + Jít na další znak - - Ctrl+Alt+Down - Ctrl+Alt+Down + Goto Previous Word + Jít na předchozí slovo - - - TextEditor::TextEditorSettings - - Text + Goto Next Word + Jít na další slovo + + + Goto Line Start With Selection + Označit až po začátek řádku + + + Goto Line End With Selection + Označit až po konec řádku + + + Goto Next Line With Selection + Označit až po další řádek + + + Goto Previous Line With Selection + Označit až po předchozí řádek + + + Goto Previous Character With Selection + Označit předchozí znak + + + Goto Next Character With Selection + Označit další znak + + + Goto Previous Word With Selection + Označit předchozí slovo + + + Goto Next Word With Selection + Označit další slovo + + + <line number> + <číslo řádku> + + + Move Line Up + Jít o jeden řádek nahoru + + + Reset Font Size + Nastavit znovu velikost písma + + + Ctrl+0 + Ctrl+0 + + + Go to Block Start + Jít na začátek bloku + + + Go to Block End + Jít na konec bloku + + + Go to Block Start With Selection + Označit po začátek bloku + + + Go to Block End With Selection + Označit po konec bloku + + + Ctrl+Shift+Up + Ctrl+Shift+Up + + + Move Line Down + Jít o jeden řádek dolů + + + Ctrl+Shift+Down + Ctrl+Shift+Down + + + Copy Line Up + Kopírovat řádek nahoru + + + Ctrl+Alt+Up + Ctrl+Alt+Up + + + Copy Line Down + Kopírovat řádek dolů + + + Ctrl+Alt+Down + Ctrl+Alt+Down + + + + TextEditor::TextEditorSettings + + Text Text - Link Odkaz - Selection Výběr - Line Number Číslo řádku - Search Result Výsledek hledání - Search Scope Oblast hledání - Parentheses Závorky - Current Line Nynější řádek - Current Line Number Číslo nynějšího řádku - Occurrences Výskyty - Unused Occurrence Nepoužívané výskyty - Renaming Occurrence Přejmenování výskytu - Number Číslo - String Řetězec - Type Typ - Keyword Klíčové slovo - Operator Operátor - Preprocessor Preprocesor - Label Štítek - Comment Poznámka - Doxygen Comment Poznámka Doxygen - Doxygen Tag Klíčové slovo Doxygen - Visual Whitespace Zviditelnit prázdné znaky - Disabled Code Vypnutý kód - Added Line Přidaný řádek - Removed Line Odstraněný řádek - Diff File Rozdíly (diff): údaj o souboru - Diff Location Rozdíly (diff): údaj o umístění - - - Text Editor - Textový editor + Textový editor - Behavior Chování - Display Zobrazení @@ -11428,27 +12044,22 @@ Zdá se, že následující kódování odpovídají souboru: TopicChooser - Choose a topic for <b>%1</b>: Vyberte námět pro <b>%1</b>: - Choose Topic Vybrat námět - &Topics &Náměty - &Display &Zobrazit - &Close &Zavřít @@ -11456,41 +12067,37 @@ Zdá se, že následující kódování odpovídají souboru: VCSBase - - Version Control Ověření verzí - Common Obecné + + Project from Version Control + Projekt ze systému na ověřování verzí + VCSBase::Internal::NickNameDialog - Name Název - E-mail E-mailová adresa - Alias Přezdívka - Alias e-mail Přezdívka e-mailové adresy - Cannot open '%1': %2 Nelze otevřít '%1': %2 @@ -11498,12 +12105,10 @@ Zdá se, že následující kódování odpovídají souboru: VCSBase::SubmitFileModel - State Stav - File Soubor @@ -11511,7 +12116,14 @@ Zdá se, že následující kódování odpovídají souboru: VCSBase::VCSBaseEditor - + Annotate "%1" + Opatřit vysvětlivkami "%1" + + + Copy "%1" + Kopírovat "%1" + + Describe change %1 Ukázat podrobnosti ke změně %1 @@ -11519,42 +12131,50 @@ Zdá se, že následující kódování odpovídají souboru: VCSBase::VCSBaseSubmitEditor - Check message Ověřit popis - Insert name... Vložit název... - Prompt to submit Potvrdit předložení - Submit Message Check failed Ověření popisu týkajícího se předložení se nezdařilo - + Executing %1 + Provádí se: %1 + + + Executing [%1] %2 + Provádí se: [%1] %2 + + Unable to open '%1': %2 '%1' nelze otevřít: %2 - The check script '%1' could not be started: %2 Skript pro ověření '%1' se nepodařilo spustit: %2 - + The check script '%1' timed out. + Překročení času při provádění skriptu '%1' pro ověření popisu. + + + The check script '%1' crashed + Skript pro ověření popisu. '%1' spadl + + The check script '%1' could not be run: %2 - Skript pro ověření '%1' se nepodařilo provést: %2 + Skript pro ověření '%1' se nepodařilo provést: %2 - The check script returned exit code %1. Skript pro ověření byl ukončen. Vrácená hodnota %1. @@ -11562,57 +12182,47 @@ Zdá se, že následující kódování odpovídají souboru: VCSBaseSettingsPage - Common - Společné + Společné - Wrap submit message at: - Zalomit popis předložení na: + Zalomit popis předložení na: - 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. - Spustitelný soubor, který je zavolán s popisem předložení v dočasném souboru jako první argument příkazového řádku. Při neúspěchu by měl vrátit zpět hodnotu rozdílnou od nuly (!= 0) a odpovídající zprávu o obvyklé chybě kvůli poukázání na selhání. + Spustitelný soubor, který je zavolán s popisem předložení v dočasném souboru jako první argument příkazového řádku. Při neúspěchu by měl vrátit zpět hodnotu rozdílnou od nuly (!= 0) a odpovídající zprávu o obvyklé chybě kvůli poukázání na selhání. - Submit message check script: - Skript k ověření popisu předložení: + Skript k ověření popisu předložení: - A file listing user names and email addresses in a 4-column mailmap format: name <email> alias <email> - Soubor, který obsahuje jména uživatelů a e-mailové adresy ve čtyřsloupcovém formátu (mailmap): + Soubor, který obsahuje jména uživatelů a e-mailové adresy ve čtyřsloupcovém formátu (mailmap): Jméno <E-mail> Přezdívka <E-mail> - User/alias configuration file: - Soubor s nastavením uživatele/přezdívky: + Soubor s nastavením uživatele/přezdívky: - A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. - Soubor, který obsahuje řádky s názvy polí (například "Reviewed-By:"), který bude bude přidán pod okno editoru předložení. + Soubor, který obsahuje řádky s názvy polí (například "Reviewed-By:"), který bude bude přidán pod okno editoru předložení. - User fields configuration file: - Soubor s nastavením polí uživatele: + Soubor s nastavením polí uživatele: VCSManager - Version Control Ověření verzí - Would you like to remove this file from the version control system (%1)? Note: This might remove the local file. Chcete soubor odstranit ze systému ověření verzí (%1)? @@ -11622,88 +12232,89 @@ Poznámka: Podle okolností by mohlo dojít ke smazání souboru. ViewDialog - Send to Codepaster Poslat CodePaster - &Username: &Uživatelské jméno: - <Username> <Uživatelské jméno> - &Description: &Popis: - <Description> <Popis> - Patch 1 Opravný program neboli záplata 1 - Patch 2 Opravný program neboli záplata 2 - Protocol: Protokol: - <!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;Comment&gt;</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!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;Poznámka&gt;</span></p></body></html> - Parts to send to server + Části pro poslání serveru + + + <!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:10pt; 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;Comment&gt;</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:'DejaVu Sans'; font-size:10pt; 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;Poznámka&gt;</span></p></body></html> + + + Parts to Send to Server Části pro poslání serveru mainClass - main main - Text1: Text 1: - N/A N/A - Text2: Text 2: - Text3: Text 3: @@ -11711,17 +12322,14 @@ p, li { white-space: pre-wrap; } Utils::CheckableMessageBox - Dialog Dialog - TextLabel Textový štítek - CheckBox Zaškrtávací okénko @@ -11729,146 +12337,163 @@ p, li { white-space: pre-wrap; } Utils::WizardPage - Choose the location - Vybrat umístění + Vybrat umístění - Name: Název: - Path: Cesta: + + Choose the Location + Vybrat umístění + Utils::NewClassWidget - Class name: - Název třídy: + Název třídy: - Base class: - Základní třída: + Základní třída: - Type information: - Informace ohledně typu: + Informace ohledně typu: - None Žádná - Inherits QObject Dědí ze třídy QObject - Inherits QWidget Dědí ze třídy QWidget - Header file: - Hlavičkový soubor: + Hlavičkový soubor: - Source file: - Zdrojový soubor: + Zdrojový soubor: - Generate form: - Vytvořit formulářový soubor: + Vytvořit formulářový soubor: - Form file: - Formulářový soubor: + Formulářový soubor: - Path: - Cesta: + Cesta: - Invalid base class name Název základní třídy je neplatný - Invalid header file name: '%1' Neplatný název hlavičkového souboru: '%1' - Invalid source file name: '%1' Neplatný název zdrojového souboru: '%1' - Invalid form file name: '%1' Neplatný název formulářového souboru: '%1' + + &Class name: + &Název třídy: + + + &Base class: + &Základní třída: + + + &Type information: + Informace ohledně &typu: + + + Based on QSharedData + Založeno na QSharedData + + + &Header file: + &Hlavičkový soubor: + + + &Source file: + &Zdrojový soubor: + + + &Generate form: + &Vytvořit formulářový soubor: + + + &Form file: + &Formulářový soubor: + + + &Path: + &Cesta: + Utils::ProjectIntroPage - Introduction and project location Uvedení a umístění projektu - Name: Název: - Create in: Vytvořit v: - <Enter_Name> <Zadat_název> - The project already exists. Projekt již existuje. - A file with that name already exists. Soubor s tímto názvem již existuje. + + Use as default project location + Použít jako výchozí umístění projektu + Utils::SubmitEditorWidget - Subversion Submit Předložení Subversion - Des&cription &Popis - F&iles &Soubory @@ -11876,180 +12501,200 @@ p, li { white-space: pre-wrap; } PasteBinComSettingsWidget - Form Formulář - Server Prefix: - Předpona serveru: + Předpona serveru: - <!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;"><a href="http://pastebin.com"><span style=" text-decoration: underline; color:#0000ff;">pastebin.com</span></a><span style=" font-size:8pt;"> allows to send posts to custom subdomains (eg. qtcreator.pastebin.com). Fill in the desired prefix.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Note that the plugin will use this for posting as well as fetching.</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!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;"><a href="http://pastebin.com"><span style=" text-decoration: underline; color:#0000ff;">pastebin.com</span></a><span style=" font-size:8pt;"> umožňuje posílat poštu vlastním podřízeným doménám (např. qtcreator.pastebin.com). Vyplňte požadovanou předponu.</span></p> <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Všimněte si, že přídavný modul to bude používat jak pro zasílání tak pro natahování.</span></p></body></html> + + Server prefix: + Předpona serveru: + + + <html><head/><body> +<p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> +<p>Note that the plugin will use this for posting as well as fetching.</p></body></html> + <html><head/><body> +<p><a href="http://pastebin.com">pastebin.com</a> dovoluje posílání záznamů do uživatelsky stanovených poddomén (např. creator.pastebin.com). Zadejte požadovanou předponu.</p> +<p>Všimněte si, že přídavný modul ji použije jak pro posílání tak pro natahování.</p></body></html> + CVS::Internal::SettingsPage - Prompt to submit - Potvrdit předložení + Potvrdit předložení - 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. - Když je zapnuta tato volba, ukáží se při klepnutí na číslo revize v pohledu s vysvětlivkami všechny soubory přiložené k odeslání (získané využitím ID odeslání). Jinak se zobrazí pouze příslušný soubor. - - - - Describe all files matching commit id: - Popsat všechny soubory náležející k ID odeslání: - + Když je zapnuta tato volba, ukáží se při klepnutí na číslo revize v pohledu s vysvětlivkami všechny soubory přiložené k odeslání (získané využitím ID odeslání). Jinak se zobrazí pouze příslušný soubor. - CVS Command: - Příkaz CVS: + Příkaz CVS: - CVS Root: - Zdroj CVS (CVSROOT): + Zdroj CVS (CVSROOT): - Diff Options: - Volby pro rozdíly (diff): + Volby pro rozdíly (diff): - CVS CVS + + Configuration + Nastavení + + + CVS command: + Příkaz CVS: + + + CVS root: + Zdroj CVS (CVSROOT): + + + Miscellaneous + Různá nastavení + + + Diff options: + Volby pro rozdíly (diff): + + + Prompt on submit + Potvrdit předložení + + + 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. + Když je zapnuta tato volba, ukáží se při klepnutí na číslo revize v pohledu s vysvětlivkami všechny soubory přiložené k odeslání (získané využitím ID odeslání). Jinak se zobrazí pouze příslušný soubor. + + + Describe all files matching commit id + Popsat všechny soubory patřící k ID odeslání + + + Timeout: + Časové omezení: + + + s + s + Debugger::Internal::TrkOptionsWidget - Form - Formulář + Formulář - Gdb - Gdb + Gdb - Symbian ARM gdb location: - Umístění Gdb Symbian ARM: + Umístění Gdb Symbian ARM: - Communication - Spojení + Spojení - Serial Port - Sériová přípojka + Sériová přípojka - Bluetooth - Modrozub (Bluetooth) + Modrozub (Bluetooth) - Port: - Přípojka: + Přípojka: - Device: - Zařízení: + Zařízení: Designer::Internal::CppSettingsPageWidget - Form Formulář - Embedding of the UI Class Použití třídy UI - Aggregation as a pointer member Nakupení jako ukazovátko - Aggregation Nakupení - Multiple Inheritance - Několikanásobná dědičnost + Několikanásobná dědičnost - Code Generation Doplnění kódu - Support for changing languages at runtime Podpora pro změnu jazyka za běhu - Use Qt module name in #include-directive Používat název modulu Qt v #include-directive + + Multiple inheritance + Několikanásobná dědičnost + Gitorious::Internal::GitoriousHostWidget - ... ... - <New Host> <Nový hostitelský počítač> - Host Hostitelský počítač - Projects Projekty - Description Popis @@ -12057,32 +12702,26 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousProjectWidget - WizardPage WizardPage - Filter: - Filtr: + Filtr: - ... ... - Keep updating Doplňovat seznam - Project Projekt - Description Popis @@ -12090,62 +12729,54 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousRepositoryWizardPage - WizardPage WizardPage - Filter: - Filtr: + Filtr: - ... - ... + ... - Name Název - Owner Vlastník - Description Popis - + Repository + Skladiště + + Choose a repository of the project '%1'. Vyberte skladiště projektu '%1'. - Mainline Repositories Hlavní skladiště - Clones Klony - Baseline Repositories Základní skladiště - Shared Project Repositories Sdílená projektová skladiště - Personal Repositories Osobní skladiště @@ -12153,190 +12784,186 @@ p, li { white-space: pre-wrap; } GeneralSettingsPage - Form Formulář - Font Písmo - Family: Písmová rodina: - Style: Styl: - Size: Velikost: - Startup Spuštění - On context help: Související nápověda: - Show side-by-side if possible - Ukázat, je-li to možné, vedle sebe + Ukázat, je-li to možné, vedle sebe - Always show side-by-side - Ukázat vždy vedle sebe + Ukázat vždy vedle sebe - Always start full help - Vždy spustit plnou nápovědu + Vždy spustit plnou nápovědu - On help start: Na začátek nápovědy: - Show my home page - Ukázat moji domovskou stránku + Ukázat moji domovskou stránku - Show a blank page - Ukázat prázdnou stránku + Ukázat prázdnou stránku - Show my tabs from last session - Ukázat mé karty z posledního sezení + Ukázat mé karty z posledního sezení - Home Page: - Domovská stránka: + Domovská stránka: - Use &Current Page Použít &nynější stranu - Use &Blank Page Použít &prázdnou stranu - Restore to Default Obnovit výchozí nastavení - Help Bookmarks Záložky v nápovědě - Import... Zavést... - Export... Vyvést... + + Show Side-by-Side if Possible + Ukázat, je-li to možné, vedle sebe + + + Always Show Side-by-Side + Ukázat vždy vedle sebe + + + Always Start Full Help + Vždy spustit plnou nápovědu + + + Show My Home Page + Ukázat moji domovskou stránku + + + Show a Blank Page + Ukázat prázdnou stránku + + + Show My Tabs from Last Session + Ukázat mé karty z posledního sezení + + + Home page: + Domovská stránka: + Locator::Internal::DirectoryFilterOptions - Name: Název: - File Types: - Souborové typy: + Souborové typy: - Specify file name filters, separated by comma. Filters may contain wildcards. Zadejte seznam filtrů souborových názvů oddělených čárkou. Filtry mohou obsahovat vzory hledání. - Prefix: Předpona: - 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. Zadejte krátké slovo nebo zkratku, které omezí nálezy na soubory nálezající se v tomto adresářovém stromu. Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, následně znak mezery a hledaný pojem. - Limit to prefix Omezit na předponu - Add... Přidat... - Edit... Upravit... - Remove Odstranit - Directories: Adresáře: + + File types: + Souborové typy: + Locator::Internal::FileSystemFilterOptions - Filter configuration Nastavení filtru - Prefix: Předpona: - Limit to prefix Omezit na předponu - Include hidden files Ukazovat skryté soubory - Filter: Filtr: @@ -12344,116 +12971,155 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Locator::Internal::SettingsWidget - Configure Filters Nastavit filtry - Add Přidat - Remove Odstranit - Edit Upravit - Refresh Interval: - Mezera mezi obnovami: + Mezera mezi obnovami: - min minuty + + Refresh interval: + Mezera mezi obnovami: + ProjectExplorer::Internal::ProjectExplorerSettingsPageUi - Build and Run Sestavování a spuštění - Save all files before Build - Uložit všechny soubory před sestavováním + Uložit všechny soubory před sestavováním - Always build Project before Running - Projekt vždy před spuštěním sestavit + Projekt vždy před spuštěním sestavit - Show Compiler Output on building - Ukázat při sestavování výstup z překladače + Ukázat při sestavování výstup z překladače - Use jom instead of nmake Použít jom na místě nmake - <i>jom</i> is a drop-in replacement for <i>nmake</i> which distributes the compilation process to multiple CPU cores. For more details, see the <a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a>. Disable it if you experience problems with your builds. - <i>jom</i> je zaskakující náhradou za <i>nmake</i>, který rozděluje proces sestavování na více procesorových jader. Více informací naleznete na <a href="http://qt.gitorious.org/qt-labs/jom/">domovské stránce pro jom</a>. Vypnětě tato nastavení, jestliže se při sestavování vyskytnou potíže. + <i>jom</i> je zaskakující náhradou za <i>nmake</i>, který rozděluje proces sestavování na více procesorových jader. Více informací naleznete na <a href="http://qt.gitorious.org/qt-labs/jom/">domovské stránce pro jom</a>. Vypnětě tato nastavení, jestliže se při sestavování vyskytnou potíže. + + + Projects Directory + Projektový adresář + + + Current directory + Nynější adresář + + + directoryButtonGroup + directoryButtonGroup + + + Directory + Adresář + + + Save all files before build + Uložit všechny soubory před sestavováním + + + Always build project before running + Projekt vždy před spuštěním sestavit + + + Show compiler output on building + Ukázat při sestavování výstup z překladače + + + Clear old application output on a new run + Smazat při novém spuštění výstup předchozího spuštění programu + + + <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="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Disable it if you experience problems with your builds. + <i>jom</i> je zaskakující náhradou za <i>nmake</i>, která proces sestavování rozděluje mezi více jader CPU. Nejnovější binární soubor je dostupný na <a href="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Zakažte jej, pokud při vytváření svých programů narazíte na potíže. ProjectExplorer::Internal::ProjectWelcomePageWidget - Form Formulář - Manage Sessions... Spravovat sezení... - Create New Project... - Vytvořit nový projekt... + Vytvořit nový projekt... - Open Recent Project - Otevřít nedávný projekt + Otevřít nedávný projekt - Resume Session - Pokračování v sezení + Pokračování v sezení - %1 (last session) %1 (poslední sezení) - %1 (current session) %1 (nynější sezení) - - New Project... - Nový projekt... + New Project + Nový projekt + + + New Project... + Nový projekt... + + + Recent Sessions + Naposledy otevřená sezení + + + Recent Projects + Naposledy otevřené projekty + + + Open Project... + Otevřít projekt... + + + Create Project... + Vytvořit projekt... ProjectWelcomePage - Form Formulář @@ -12461,132 +13127,106 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Qt4ProjectManager::Internal::ClassDefinition - Form Formulář - The header file Hlavičkový soubor - &Sources &Zdroje - Widget librar&y: Knihovna p&rvků: - Widget project &file: Projektový &soubor prvku: - Widget h&eader file: &Hlavičkový soubor prvku: - The header file has to be specified in source code. Hlavičkový soubor musí být zadán ve zdrojovém kódu. - Widge&t source file: &Zdrojový soubor prvku: - Widget &base class: &Základní třída prvku: - QWidget QWidget - Plugin class &name: &Název třídy přídavného modulu: - Plugin &header file: H&lavičkový soubor přídavného modulu: - Plugin sou&rce file: Z&drojový soubor přídavného modulu: - Icon file: Soubor s ikonou: - &Link library &Spojit knihovnu - Create s&keleton Vytvořit osn&ovu - Include pro&ject Zahrnout projekt (soubor *.pri) - &Description &Popis - G&roup: S&kupina: - &Tooltip: &Rada k nástroji: - W&hat's this: &Co je toto?: - The widget is a &container Prvek je &kontejnerem - Property defa&ults Výc&hozí nastavení vlastnosti - dom&XML: dom&XML: - Select Icon Vybrat ikonu - Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) Soubory s ikonami (*.png *.ico *.jpg *.xpm *.tif *.svg) @@ -12594,47 +13234,38 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Qt4ProjectManager::Internal::CustomWidgetPluginWizardPage - WizardPage WizardPage - Plugin and Collection Class Information Přídavný modul a informace o třídě sbírky - Specify the properties of the plugin library and the collection class. Zadejte vlastnosti knihovny přídavného modulu a třídy sbírky. - Collection class: Třída sbírka: - Collection header file: Hlavičkový soubor ke sbírce: - Collection source file: Zdrojový soubor ke sbírce: - Plugin name: Název přídavného modulu: - Resource file: Zdrojový soubor: - icons.qrc icons.qrc @@ -12642,286 +13273,303 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Qt4ProjectManager::Internal::CustomWidgetWidgetsWizardPage - Custom Qt Widget Wizard Průvodce pro vytvoření uživatelsky stanoveného prvku Qt - Custom Widget List Seznam uživatelsky stanovených prvků - Widget &Classes: &Třídy prvků: - Specify the list of custom widgets and their properties. Zadejte seznam uživatelsky stanovených prvků a jejich vlastnosti. + + ... + ... + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget - Form Formulář - Examples not installed - Příklady nenainstalovány + Příklady nenainstalovány - Open - Otevřít + Otevřít - Tutorials Návody - Explore Qt Examples - Otevřít příklady Qt + Otevřít příklady Qt - Did You Know? Víte, že? - <b>Qt Creator - A quick tour</b> - <b>Qt Creator - Krátký úvod</b> + <b>Qt Creator - Krátký úvod</b> - Creating an address book - Vytvoření knihy adres + Vytvoření knihy adres - Understanding widgets - Porozumění prvkům + Porozumění prvkům - Building with qmake - Sestavování s qmake + Sestavování s qmake - Writing test cases - Vytvoření zkušebních případů + Vytvoření zkušebních případů + + + The Qt Creator User Interface + Uživatelské rozhraní Qt Creatoru + + + Building and Running an Example + Sestavení a spuštění příkladu + + + Creating a Qt C++ Application + Vytvoření programu C++ s Qt + + + Creating a Mobile Application + Vytvoření přemístitelného programu + + + Creating a Qt Quick Application + Vytvoření programu Qt Quick - Choose an example... Vybrat příklad... - Copy Project to writable Location? Má se projekt zkopírovat do zapisovatelného umístění? - <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>Projekt, který se chystáte otevřít, je umístěn v proti zápisu chráněném umístění:</p><blockquote>%1</blockquote><p>Vyberte, prosím, níže zapisovatelné umístění a klepněte na "Kopírovat projekt a otevřít" kvůli otevření upravovatelné kopie projektu, nebo klepněte na "Zachovat projekt a otevřít" kvůli otevření projektu v umístění.</p><p><b>Poznámka:</b> V současném umístění projekt nelze ani sestavit ani změnit.</p> - &Location: &Umístění: - &Copy Project and Open &Kopírovat projekt a otevřít - &Keep Project and Open &Zachovat projekt a otevřít - Warning Varování - The specified location already exists. Please specify a valid location. Zadané umístění již existuje. Zadejte, prosím, platné umístění. - - + New Project + Nový projekt + + Cmd Shortcut key Klávesa příkazu - Alt Shortcut key Alt - Ctrl Shortcut key Ctrl - + If you add external libraries to your project, Qt Creator will automatically offer syntax highlighting and code completion. + Pokud do svého projektu přidáte vnější knihovny, Qt Creator automaticky nabídné zvýrazňování skladby a doplňování kódu. + + + You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. + Můžete přidat vlastní kroky při vytváření programu v <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">Nastavení sestavování</a>. + + + Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">dependencies</a> between projects. + Do jednoho sezení můžete přidat <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">závislosti</a> mezi projekty. + + You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li><li></li><li>6 - Output</li></ul> - Mezi režimy Qt Creatoru můžete přepínat pomocí <tt>Ctrl+číslo</tt>:<ul><li>1 - Vítejte</li><li>2 - Úpravy</li><li>3 - Ladění</li><li>4 - Projekty</li><li>5 - Nápověda</li><li></li><li>6 - Výstup</li></ul> + Mezi režimy Qt Creatoru můžete přepínat pomocí <tt>Ctrl+číslo</tt>:<ul><li>1 - Vítejte</li><li>2 - Úpravy</li><li>3 - Ladění</li><li>4 - Projekty</li><li>5 - Nápověda</li><li></li><li>6 - Výstup</li></ul> - You can show and hide the side bar using <tt>%1+0<tt>. Postranní pruh můžete ukázat a skrýt pomocí <tt>%1+0<tt>. - You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. Funkci <tt>Najít</tt> si můžete pěkně vyladit tím, že vyberete &quot;Celá slova&quot; nebo &quot;Rozlišující velká a malá písmena&quot;. Jednoduše klepněte na ikony po pravé straně zadávacího pole. - If you add <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">external libraries</a>, Qt Creator will automatically offer syntax highlighting and code completion. - Pokud přidáte<a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">vnější knihovny</a>, Qt Creator automaticky nabídne zvýrazňování skladby a doplnění kódu. + Pokud přidáte<a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">vnější knihovny</a>, Qt Creator automaticky nabídne zvýrazňování skladby a doplnění kódu. - The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. Doplňování kódu rozumí CamelCase. Například můžete napsat namísto <tt>namespaceUri</tt> jednoduše <tt>nU</tt> a poté zmáčknout <tt>Ctrl+mezerník</tt>. - You can force code completion at any time using <tt>Ctrl+Space</tt>. Kdykoli můžete vynutit doplnění kódu <tt>Ctrl+mezerník</tt>. - You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. Můžete Qt Creator spustit kdykoli se sezením vyvoláním <tt>qtcreator &lt;název sezení&gt;</tt>. - You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. Vždy se můžete z kteréhokoli režimu stisknutím klávesy <tt>Escape</tt> vrátit do režimu úprav. - You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> Můžete přepínat mezi výstupními tabulkami stisknutím <tt>%1+n</tt>, přičemž n je číslem, které se nalézá na tlačítkách při dolním okraji okna: <ul><li>1 - Potíže se sestavováním</li><li>2 - Výsledky hledání</li><li>3 - Výstup aplikace</li><li>4 - Výstup sestavení</li></ul> - You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). Pomocí <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">pruhu s vyhledávačem</a> (<tt>Ctrl+K</tt>) můžete rychle vyhledávat postupy, třídy, nápovědu a další věci. - You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">build settings</a>. - Můžete přidat vlastní kroky při vytvoření v <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">Nastavení sestavování</a>. + Můžete přidat vlastní kroky při vytvoření v <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">Nastavení sestavování</a>. - Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">dependencies</a> between projects. - Do jednoho sezení můžete přidat <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">závislosti</a> mezi projekty. + Do jednoho sezení můžete přidat <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">závislosti</a> mezi projekty. - You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. Můžete nastavit upřednostňované kódování editoru u každého projektu v <tt>Projekty -> Nastavení editoru -> Výchozí kódování</tt>. - You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. Qt Creator můžete používat s celou řadou <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">systémů určených pro správu verzí</a>, jakými jsou Subversion, Perforce, CVS a Git. - 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. V editoru můžete používat <tt>F2</tt> pro následování vymezení symbolu; <tt>Shift+F2</tt> pro přepínání mezi prohlášeními a vymezeními. <tt>F4</tt> přepíná mezi hlavičkovými soubory a zdrojovými soubory. + + Explore Qt C++ Examples + Otevřít příklady Qt C++ + + + Examples not installed... + Příklady nenainstalovány... + + + Explore Qt Quick Examples + Otevřít příklady Qt Quick + + + Open Project... + Otevřít projekt... + + + Create Project... + Vytvořit projekt... + Qt4ProjectManager::Internal::S60DevicesPreferencePane - Form Formulář - Installed S60 SDKs: - Nainstalované S60-SDK: + Nainstalované S60-SDK: - SDK Location - Umístění SDK + Umístění SDK - Qt Location - Umístění Qt + Umístění Qt - Error Chyba - Refresh Obnovit - S60 SDKs S60 SDK + + Add + Přidat + + + Change Qt version + Změnit verzi Qt + + + Remove + Odstranit + TextEditor::Internal::ColorSchemeEdit - Bold Tučné - Italic Kurzíva - Background: Pozadí: - Foreground: Popředí: - Erase background Smazat pozadí - x x @@ -12929,17 +13577,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle VCSBase::BaseCheckoutWizardPage - WizardPage WizardPage - Checkout Directory: - Prověřit adresář: + Adresář pro přezkoušení (checkout; dostat kopii): - Path: Cesta: @@ -12947,70 +13592,89 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Welcome::Internal::CommunityWelcomePageWidget - Form Formulář - News From the Qt Labs Novinky z laboratoří Qt - Qt Websites - Internetové stránky Qt + Internetové stránky Qt + + + <b>Forum Nokia</b><br /><font color='gray'>Mobile Application Support</font> + <b>Fórum Nokia</b><br /><font color='gray'>Podpora pro programy používané v přemístitelných zařízeních</font> + + + <b>Qt LGPL Support</b><br /><font color='gray'>Buy commercial Qt support</font> + <b>Podpora Qt LGPL</b><br /><font color='gray'>Koupit obchodní podporu Qt</font> + + + <b>Qt Centre</b><br /><font color='gray'>Community based Qt support</font> + <b>Středisko Qt</b><br /><font color='gray'>Podpora Qt založená na společenství</font> + + + <b>Qt Home</b><br /><font color='gray'>Qt by Nokia on the web</font> + <b>Domov Qt</b><br /><font color='gray'>Qt okolo Nokie na internetu</font> + + + <b>Qt Git Hosting</b><br /><font color='gray'>Participate in Qt development</font> + <b>Hostování Qt u služby Git</b><br /><font color='gray'>Zapojit se do vývoje Qt</font> + + + <b>Qt Apps</b><br /><font color='gray'>Find free Qt-based apps</font> + <b>Programy Qt</b><br /><font color='gray'>Najděte svobodné programy založené na Qt</font> - http://labs.trolltech.com/blogs/feed - Add localized feed here only if one exists http://labs.trolltech.com/blogs/feed - Qt Home - Domácí adresář Qt + Domácí adresář Qt - Qt Labs - Laboratoře Qt + Laboratoře Qt - Qt Git Hosting - Hostování Qt na Git + Hostování Qt na Git - Qt Centre - Středisko Qt + Středisko Qt - Qt Apps - Programy Qt + Programy Qt - Qt for Symbian at Forum Nokia - Qt pro Symbian na fóru Nokia + Qt pro Symbian na fóru Nokia + + + Qt Support Sites + Podporovací stránky pro Qt + + + Qt Links + Odkazy na Qt Welcome::WelcomeMode - #gradientWidget { background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); } - #gradientWidget { + #gradientWidget { background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); } - #headerFrame { border-image: url(:/welcome/images/center_frame_header.png) 0; border-width: 0; @@ -13023,17 +13687,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle - Help us make Qt Creator even better Pomožte nám vylepšit Qt Creator - Feedback Zpětná vazba - Welcome Vítejte @@ -13041,17 +13702,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Utils::ClassNameValidatingLineEdit - The class name must not contain namespace delimiters. Název třídy nesmí obsahovat omezení jmenného prostoru. - Please enter a class name. Zadejte, prosím, název třídy. - The class name contains invalid characters. Název třídy obsahuje neplatné znaky. @@ -13059,62 +13717,50 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Utils::ConsoleProcess - Cannot set up communication channel: %1 Nepodařilo se zřídit spojovací kanál: %1 - Press <RETURN> to close this window... Kvůli zavření tohoto okna stiskněte tlačítko <RETURN>... - Cannot create temporary file: %1 Nepodařilo se vytvořit žádný dočasný soubor: %1 - Cannot create temporary directory '%1': %2 Nepodařilo se vytvořit dočasný adresář '%1': %2 - Unexpected output from helper program. Výstup z pomocného programu nelze vyhodnotit. - Cannot change to working directory '%1': %2 Nepodařilo se provést změnu na pracovní adresář '%1': %2 - Cannot execute '%1': %2 Nepodařilo se provést příkaz '%1': %2 - Cannot start the terminal emulator '%1'. - Nepodařilo se spustit program pro napodobení terminálu '%1'. + Nepodařilo se spustit program pro napodobení jinak též emulaci terminálu '%1'. - Cannot create socket '%1': %2 Nepodařilo se vytvořit zásuvku '%1': %2 - The process '%1' could not be started: %2 Proces '%1 se nepodařilo spustit: %2 - Cannot obtain a handle to the inferior: %1 Proces k odladění se nepodařilo rozpoznat: %1 - Cannot obtain exit status from inferior: %1 U procesu k odladění se nepodařilo obdržet zpětnou hodnotu: %1 @@ -13122,38 +13768,56 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Utils::DetailsButton - Show Details - Ukázat podrobnosti + Ukázat podrobnosti + + + Details + Podrobnosti Utils::FileNameValidatingLineEdit - The name must not be empty - Název nesmí být prázdný + Název nesmí být prázdný - The name must not contain any of the characters '%1'. - Název nesmí obsahovat žádný ze znaků '%1'. + Název nesmí obsahovat žádný ze znaků '%1'. - The name must not contain '%1'. - Název nesmí obsahovat '%1'. + Název nesmí obsahovat '%1'. - The name must not match that of a MS Windows device. (%1). - Názvy zařízení z MS Windows se nesmějí používat. (%1). + Názvy zařízení z MS Windows se nesmějí používat. (%1). + + + Name is empty. + Název souboru je prázdný. + + + Name contains white space. + Název obsahuje prázdné místo. + + + Invalid character '%1'. + Neplatný znak '%1'. + + + Invalid characters '%1'. + Neplatné znaky '%1'. + + + Name matches MS Windows device. (%1). + Název odpovídá jednomu zařízení spravovanému MS Windows (%1). Utils::FileSearch - %1: canceled. %n occurrences found in %2 files. %1: Zrušeno. Jeden výskyt ve %2 souborech. @@ -13162,7 +13826,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle - %1: %n occurrences found in %2 files. %1: Jeden výskyt ve %2 souborech. @@ -13171,7 +13834,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle - %1: %n occurrences found in %2 of %3 files. %1: Jeden výskyt ve %2 ze %3 souborů. @@ -13183,47 +13845,46 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Utils::PathChooser - Choose... Vybrat... - Browse... Procházet... - Choose a directory - Vybrat adresář + Vybrat adresář - Choose a file + Vybrat soubor + + + Choose Directory + Vybrat adresář + + + Choose File Vybrat soubor - The path must not be empty. Cesta nesmí být prázdná. - The path '%1' does not exist. Cesta '%1' neexistuje. - The path '%1' is not a directory. Cesta '%1' neukazuje na adresář. - The path '%1' is not a file. Cesta '%1' neukazuje na soubor. - Path: Cesta: @@ -13231,27 +13892,26 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Utils::PathListEditor - Insert... Vložit... - Add... Přidat... - - Delete line + Delete Line Smazat řádek - + Delete line + Smazat řádek + + Clear Smazat - From "%1" Z "%1" @@ -13259,43 +13919,52 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Utils::ProjectNameValidatingLineEdit - The name must not contain the '.'-character. - Název nesmí obsahovat znak '.'. + Název nesmí obsahovat znak '.'. + + + Invalid character '.'. + Neplatný znak '.'. Utils::reloadPrompt - File Changed Soubor byl změněn - - The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? + The unsaved file <i>%1</i> has been changed outside Qt Creator. Do you want to reload it and discard your changes? Neuložený soubor %1 byl změněn mimo Qt Creator. Chcete jej nahrát znovu a zahodit své změny? - - The file %1 has changed outside Qt Creator. Do you want to reload it? + The file <i>%1</i> has changed outside Qt Creator. Do you want to reload it? Soubor %1 byl změněn mimo Qt Creator. Chcete jej nahrát znovu? + + The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? + Neuložený soubor %1 byl změněn mimo Qt Creator. Chcete jej nahrát znovu a zahodit své změny? + + + The file %1 has changed outside Qt Creator. Do you want to reload it? + Soubor %1 byl změněn mimo Qt Creator. Chcete jej nahrát znovu? + CMakeProjectManager::Internal::CMakeBuildConfigurationFactory - Create - Vytvořit + Vytvořit + + + Build + Sestavování - New configuration Nové nastavení - New Configuration Name: Název nového nastavení: @@ -13303,35 +13972,53 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle OpenWith::Editors - Plain Text Editor Editor prostého textu - Binary Editor Dvojkový editor - C++ Editor Editor C++ - .pro File Editor Editor souboru .pro + + .files Editor + Editor souborů .files + + + QMLJS Editor + Editor Editor + + + .qmlproject Editor + Editor .qmlproject + + + Qt Designer + Qt Designer + + + Qt Linguist + Qt Linguist + + + Resource Editor + Editor zdrojových souborů + Core::Internal::SettingsDialog - Preferences Nastavení - Options Volby @@ -13339,17 +14026,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle CodePaster::CodePasterProtocol - No Server defined in the CodePaster preferences. V nastavení ke CodePaster nebyl stanoven žádný server. - No Server defined in the CodePaster options. Ve volbách pro CodePaster nebyl stanoven žádný server. - No such paste Požadované vložení neexistuje @@ -13357,22 +14041,18 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle CodePaster::CodePasterSettingsPage - CodePaster CodePaster - Code Pasting - Vkládání kódu + Vkládání kódu - Server: Server: - Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). Poznámka: Zadejte název hostitelského počítače (serveru) pro službu CodePaster bez protokolové předpony (například: codepaster.mycompany.com). @@ -13380,54 +14060,43 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle PasteBinDotComProtocol - Error during paste - Chyba při vkládání + Chyba při vkládání PasteBinDotComSettings - Pastebin.com - Pastebin.com + Pastebin.com - Code Pasting - Vkládání kódu + Vkládání kódu PasteView - Paste - Vložit + Vložit - - <Username> - <Uživatelské jméno> + <Uživatelské jméno> - - <Description> - <Popis> + <Popis> - - <Comment> - <Poznámka> + <Poznámka> CppTools::Internal::CppCurrentDocumentFilter - Methods in current Document Postupy v nynějším dokumentu @@ -13435,7 +14104,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle CppTools::Internal::CppFileSettingsWidget - /************************************************************************** ** Qt Creator license header template ** Special keywords: %USER% %DATE% %YEAR% @@ -13452,22 +14120,22 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle - Edit... Upravit... - - Choose a location for the new license template file + Choose Location for New License Template File Vybrat umístění pro nový soubor s předlohou povolení - + Choose a location for the new license template file + Vybrat umístění pro nový soubor s předlohou povolení + + Template write error Chyba při zápisu předlohy - Cannot write to %1: %2 Soubor %1 nelze zapsat: %2 @@ -13475,15 +14143,17 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle CppTools::Internal::CppFindReferences - Searching... - Hledá se... + Hledá se... + + + Searching + Hledá se CppTools::Internal::CppLocatorFilter - Classes and Methods Třídy a postupy @@ -13491,25 +14161,29 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle CVS::Internal::CheckoutWizard - Checks out a project from a CVS repository. - Odhlásí projekt ze skladiště CVS. + Odhlásí projekt ze skladiště CVS. + + + Checks out a CVS repository and tries to load the contained project. + Vytvoří přezkoušení skladiště CVS (checkout; dostat kopii) a zkusí tam nahrát obsažený projekt. - CVS Checkout - Odhlášení ze skladiště CVS + Přezkoušení (checkout; dostat kopii) skladiště CVS CVS::Internal::CheckoutWizardPage - + Location + Umístění + + Specify repository and path. Zadejte skladiště a cestu. - Repository: Skladiště: @@ -13517,250 +14191,262 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle CVSPlugin - Cannot find repository for '%1' - Nelze najít skladiště pro '%1' + Nelze najít skladiště pro '%1' CVS::Internal::CVSPlugin - Parsing of the log output failed Nepodařilo se vyhodnotit výstup zapisu - &CVS &CVS - Add Přidat - Add "%1" Přidat "%1" - Alt+C,Alt+A Alt+C, Alt+A - Delete - Smazat + Smazat - Delete "%1" - Smazat "%1" + Smazat "%1" - Revert - Vrátit + Vrátit - Revert "%1" - Vrátit zpět změny v "%1" + Vrátit zpět změny v "%1" - Diff Project Rozdíly (diff) pro projekt - Diff Current File Rozdíly (diff) nynějšího souboru - Diff "%1" Rozdíly (diff) pro "%1" - Alt+C,Alt+D Alt+C, Alt+D - Commit All Files Odeslat všechny soubory - Commit Current File Odeslat nynější soubor - Commit "%1" Odeslat "%1" - Alt+C,Alt+C Alt+C, Alt+C - Filelog Current File Zápis k souboru pro nynější soubor - + Cannot find repository for '%1' + Nelze najít skladiště pro '%1' + + Filelog "%1" Zápis k souboru "%1" - Annotate Current File Opatřit nynější soubor vysvětlivkami - Annotate "%1" Opatřit vysvětlivkami "%1" - + Delete... + Smazat... + + + Delete "%1"... + Smazat "%1"... + + + Revert... + Vrátit... + + + Revert "%1"... + Vrátit zpět změny v "%1"... + + + Diff Project "%1" + Rozdíly (diff) pro projekt "%1" + + Project Status Stav projektu - + Status of Project "%1" + Stav projektu "%1" + + + Log Project + Zápis pro projekt + + + Log Project "%1" + Zápis pro projekt "%1" + + Update Project Obnovit projekt - + Update Project "%1" + Obnovit projekt "%1" + + + Repository Log + Zápis (log) skladiště + + + Revert Repository... + Vrátit zpět změny v celém skladišti... + + Commit Odeslat - Diff Selected Files Rozdíly (diff) pro vybrané soubory - &Undo &Zpět - &Redo &Znovu - Closing CVS Editor Zavřít editor pro CVS - Do you want to commit the change? Chcete odeslat změnu? - The commit message check failed. Do you want to commit the change? Ověření popisu týkajícího se odeslání se nezdařilo. Přesto chcete odeslání změn provést? - The files do not differ. Soubory se neliší. - + Revert repository + Vrátit zpět změny v celém skladišti + + + Would you like to revert all changes to the repository? + Chcete zvrátit všechny zbývající změny ve skladišti? + + + Revert failed: %1 + Vzetí změn zpět se nezdařilo: %1 + + The file '%1' could not be deleted. - Soubor '%1' se nepodařilo smazat. + Soubor '%1' se nepodařilo smazat. - The file has been changed. Do you want to revert it? Soubor byl změněn. Chcete vrátit změny? - The commit list spans several repositories (%1). Please commit them one by one. - Seznam se soubory k odeslání zahrnuje více datových skladišť (%1). Odešlete je, prosím, jeden po druhém. + Seznam se soubory k odeslání zahrnuje více datových skladišť (%1). Odešlete je, prosím, jeden po druhém. - Another commit is currently being executed. V současnosti se již provádí jiné odeslání. - There are no modified files. Nejsou žádné změněné soubory. - Cannot create temporary file: %1 Nepodařilo se vytvořit žádný dočasný soubor: %1 - Project status Stav projektu - The initial revision %1 cannot be described. První verzi (%1) nelze popsat. - Could not find commits of id '%1' on %2. Nepodařilo se najít odeslání s ID '%1' a s datem %2. - Executing: %1 %2 Provádí se: %1 %2 - Executing in %1: %2 %3 Příkaz [%1]: %2 %3 - No cvs executable specified! Nebyl zadán žádný spustitelný soubor cvs! - The process terminated with exit code %1. Proces byl ukončen. Vrácená hodnota %1. - The process terminated abnormally. Proces byl ukončen neobvyklým způsobem. - Could not start cvs '%1'. Please check your settings in the preferences. Příkaz 'cvs' '%1' se nepodařilo spustit. Ověřte, prosím, svá nastavení v nastaveních. - CVS did not respond within timeout limit (%1 ms). Žádná odpověď od CVS v rámci časového omezení (%1 ms). @@ -13768,30 +14454,25 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle CVS::Internal::CVSSubmitEditor - Added Přidáno - Removed Odstraněno - Modified Změněno - CVS Submit - Předložení CVS + Předložení CVS CVS::Internal::SettingsPageWidget - CVS Command Příkaz CVS @@ -13799,17 +14480,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle CdbStackFrameContext - <Unknown Type> <Neznámý typ> - <Unknown Value> <Neznámá hodnota> - <Unknown> <Neznámý> @@ -13817,7 +14495,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle SymbolGroup - Out of scope Mimo oblast @@ -13825,17 +14502,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Debugger::Internal::MemoryViewAgent - Memory $ Paměť $ - No memory viewer available Není dostupný žádný modul pro prohlížení paměti - The memory contents cannot be shown as no viewer plugin for binary data has been loaded. Obsah paměti nelze ukázat, protože nebyl nahrán žádný prohlížecí přídavný modul binárních dat. @@ -13843,12 +14517,10 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Debugger::Internal::AddressDialog - Select start address Vybrat počáteční adresu - Enter an address: Zadat adresu: @@ -13856,149 +14528,142 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Debugger::DebuggerManager - Continue Pokračovat - - Interrupt Přerušit - Reset Debugger - Nastavit znovu ladicí program + Nastavit znovu ladicí program - Step Over Krok přes - Step Into Krok do - Step Out Krok ven - Run to Line Provést po řádek - Run to Outermost Function Provést po nejvzdálenější funkci - Jump to Line Skočit na řádek - Toggle Breakpoint Přepnout bod přerušení - Add to Watch Window Přidat ke sledovaným výrazům - Reverse Direction Obrácený směr - Stopped. - Zastaveno. + Zastaveno. - Running... Běží... - Exited. - Ukončeno. + Ukončeno. + + + Abort Debugging + Zrušit ladění + + + Aborts debugging and resets the debugger to the initial state. + Zruší ladění a nastaví ladič znovu na počáteční stav. + + + Immediately Return From Inner Function + Okamžitý návrat z vnitřní funkce + + + Snapshot + Snímek + + + Stopped + Zastaveno + + + Exited + Ukončeno - - Changing breakpoint state requires either a fully running or fully stopped application. Změna bodu přerušení vyžaduje, aby uživatelský program běžel, nebo byl zcela zastaven. - The application requires the debugger engine '%1', which is disabled. Tato aplikace vyžaduje stroj ladicího programu '%1', který je nyní vypnut. - Starting debugger for tool chain '%1'... Spouští se ladicí program pro řetěz nástrojů '%1'... - Cannot debug '%1' (tool chain: '%2'): %3 Ladicí program nelze spustit s '%1' (řetěz nástrojů '%2'): %3 - Warning Varování - Save Debugger Log Uložit zápis o ladění - %1 (explicitly set in the Debugger Options) %1 (nastaveno přímo ve volbách k ladicímu programu) - Open Qt preferences Otevřít nastavení Qt - Turn off helper usage Vypnout pomocnou knihovnu pro výstup dat - Continue anyway Přesto pokračovat - Debugging helper missing Pomocná knihovna pro výstup dat o ladění nebyla nalezena - The debugger could not load the debugging helper library. Ladicí program nemohl nahrát pomocnou knihovnu pro výstup dat o ladění. - 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. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. Pomocná knihovna pro výstup dat o ladění slouží k výstupu hodnot některých datových typů z Qt a standardních knihoven. Musí být sestavena pro každou používanou verzi Qt, což se děje na stránce s nastavením Qt výběrem instalace Qt a klepnutím na 'Sestavit znovu' v řádku pro pomocnou knihovnu pro výstup dat o ladění. - Stop Debugger Zastavit ladicí program @@ -14006,17 +14671,20 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Debugger::Internal::DebuggerListener - + A debugging session is still in progress. +Would you like to terminate it? + Ladicí program ještě běží. +Chcete jej ukončit? + + Close Debugging Session Ukončit ladicí program - A debugging session is still in progress. Would you like to terminate it? - Ladicí program ještě běží. Chcete jej ukončit? + Ladicí program ještě běží. Chcete jej ukončit? - A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? Ladicí program ještě běží. Ukončení sezení při současném stavu (%1) by mohlo vést ke kolísavému stavu vyšetřovaných procesů. Přesto jej chcete ukončit? @@ -14024,7 +14692,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Debugger::Internal::DebuggerRunControlFactory - Debug Ladění @@ -14032,7 +14699,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Debugger::Internal::DebuggerRunControl - Debugger Ladič @@ -14040,36 +14706,48 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Debugger::Internal::AbstractGdbAdapter - The Gdb process could not be stopped: %1 Proces Gdb se nepodařilo zastavit: %1 - + Application process could not be stopped: +%1 + Proces programu se nepodařilo zastavit: +%1 + + + Application started + Program spuštěn + + + Application running + Program běží + + + Attached to stopped application + Ladicí program připojen k zastavenému programu + + Inferior process could not be stopped: %1 - Laděný proces se nepodařilo zastavit: + Laděný proces se nepodařilo zastavit: %1 - Inferior started. - Laděný proces byl spuštěn. + Laděný proces byl spuštěn. - Inferior running. - Laděný proces běží. + Laděný proces běží. - Attached to stopped inferior. - Připojeno k zastavenému laděnému procesu. + Připojeno k zastavenému laděnému procesu. - Connecting to remote server failed: %1 Spojení se vzdáleným serverem se nepodařilo vytvořit: @@ -14079,133 +14757,117 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Debugger::Internal::CoreGdbAdapter - - - Error Loading Symbols - Chyba při nahrávání symbolů + Chyba při nahrávání symbolů - No executable to load symbols from specified. - Nebyl zadán žádný spustitelný soubor pro nahrání symbolů. + Nebyl zadán žádný spustitelný soubor pro nahrání symbolů. - Symbols found. - Symboly byly nalezeny. + Symboly byly nalezeny. - Loading symbols from "%1" failed: - Nahrání symbolů z "%1" se nepodařilo: + Nahrání symbolů z "%1" se nepodařilo: - Attached to core temporarily. - Dočasně připojeno k 'core' souboru. + Dočasně připojeno k 'core' souboru. - Unable to determine executable from core file. - Ze souboru 'core' se nepodařilo určit žádný spustitelný soubor. + Ze souboru 'core' se nepodařilo určit žádný spustitelný soubor. - Attached to core. - Připojeno k souboru 'core'. + Připojeno k souboru 'core'. - Attach to core "%1" failed: - Ladění souboru 'core' "%1" se nezdařilo. + Ladění souboru 'core' "%1" se nezdařilo. Debugger::Internal::PlainGdbAdapter - Cannot set up communication with child process: %1 - Spojení s podřízeným procesem se nepodařilo zřídit: %1 + Spojení s podřízeným procesem se nepodařilo zřídit: %1 - Starting executable failed: - Nepodařilo se spustit spustitelný soubor: + Nepodařilo se spustit spustitelný soubor: Debugger::Internal::RemoteGdbAdapter - The upload process failed to start. Shell missing? - Nahrání procesu se nepodařilo spustit. Možnou příčinou by mohl být chybějící shellový program. + Nahrání procesu se nepodařilo spustit. Možnou příčinou by mohl být chybějící shellový program. - The upload process crashed some time after starting successfully. - Proces nahrávání po určité době od úspěšného spuštění spadl. + Proces nahrávání po určité době od úspěšného spuštění spadl. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. - Došlo k překročení času u poslední funkce waitFor...(). Stav QProcess je nezměněn, a tak se můžete pokusit zavolat waitFor...() ještě jednou. + Došlo k překročení času u poslední funkce waitFor...(). Stav QProcess je nezměněn, a tak se můžete pokusit zavolat waitFor...() ještě jednou. - 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. - Při pokusu o zápis do procesu nahrávání se vyskytla chyba. Pravděpodobně proces neběží, nebo zavřel svůj vstupní kanál. + Při pokusu o zápis do procesu nahrávání se vyskytla chyba. Pravděpodobně proces neběží, nebo zavřel svůj vstupní kanál. - An error occurred when attempting to read from the upload process. For example, the process may not be running. - Při pokusu o čtení z procesu nahrávání se vyskytla chyba. Pravděpodobně proces neběží. + Při pokusu o čtení z procesu nahrávání se vyskytla chyba. Pravděpodobně proces neběží. - An unknown error in the upload process occurred. This is the default return value of error(). - V procesu nahrávání se vyskytla neznámá chyba. Je to výchozí zpětná hodnota error(). + V procesu nahrávání se vyskytla neznámá chyba. Je to výchozí zpětná hodnota error(). - Error - Chyba + Chyba - Adapter too old: does not support asynchronous mode. - Adaptér je zastaralý; nepodporuje asynchronní režim. + Adaptér je zastaralý; nepodporuje asynchronní režim. - Starting remote executable failed: - Nepodařilo se spustit spustitelný soubor na vzdáleném počítači: + Nepodařilo se spustit spustitelný soubor na vzdáleném počítači: Debugger::Internal::TermGdbAdapter - Debugger Error - Chyba v ladicím programu + Chyba v ladicím programu Debugger::Internal::TrkGdbAdapter - + Port specification missing. + Nebyla zadána žádná přípojka. + + + Unable to acquire a device on '%1'. It appears to be in use. + Nelze přistoupit k zařízení '%1'. Zdá se, že se již používá. + + Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. Proces byl spuštěn, PID: 0x%1, Vlákno s ID: 0x%2, Část kódu: 0x%3, Datová část: 0x%4. - Connecting to TRK server adapter failed: Připojení k adaptéru Trk serveru se nezdařilo: @@ -14215,205 +14877,149 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle TrkOptions - No Symbian gdb executable specified. - Nebyl zadán žádný spustitelný soubor pro Symbian gdb! + Nebyl zadán žádný spustitelný soubor pro Symbian gdb! - The Symbian gdb executable '%1' could not be found in the search path. - Spustitelný soubor pro Symbian gdb '%1' se v cestě pro hledání nepodařilo najít. + Spustitelný soubor pro Symbian gdb '%1' se v cestě pro hledání nepodařilo najít. Debugger::Internal::TrkOptionsPage - Symbian TRK - Symbian TRK + Symbian TRK NameDemanglerPrivate - Premature end of input Předčasný konec vstupu - Invalid encoding Neplatné kódování - Invalid name Neplatný název - - Invalid nested-name Neplatný hnízdní název - - Invalid template args Neplatné argumenty předlohy - - Invalid template-param Neplatné parametry předlohy - Invalid qualifiers: unexpected 'volatile' Neplatné modifikátory: neočekávané ('volatile') - Invalid qualifiers: 'const' appears twice Neplatné modifikátory: 'const' se objevuje dvakrát - Invalid non-negative number Neplatné ne-záporné číslo - - - Invalid template-arg Neplatný argument předlohy - - - Invalid expression Neplatný výraz - Invalid primary expression Neplatný prvořadý výraz - - - Invalid expr-primary Neplatný prvořadý výraz - - - Invalid type Neplatný typ - Invalid built-in type Neplatný vestavěný typ - Invalid builtin-type Neplatný vestavěný typ - - Invalid function type Neplatný typ funkce - - Invalid unqualified-name Neplatný nezpůsobilý název - Invalid operator-name '%s' Neplatný název operátoru '%s' - - Invalid array-type Neplatný typ pole - Invalid pointer-to-member-type Neplatný typ ukazovátka na člena - - - Invalid substitution Neplatné nahrazení - Invalid substitution: element %1 was requested, but there are only %2 Neplatné nahrazení: byl požadován prvek %1, ale jsou jen %2 - Invalid substitution: There are no elements Neplatné nahrazení: Nejsou žádné prvky - Invalid special-name Neplatný zvláštní název - - - Invalid local-name Neplatný místní název - Invalid discriminator Neplatný diskriminátor - - - Invalid ctor-dtor-name Neplatný ctor-dtor název - - Invalid call-offset Neplatný posun volání - Invalid v-offset Neplatný v-posun - Invalid digit Neplatná číslice - At position %1: V poloze %1: @@ -14421,37 +15027,50 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Debugger::Internal::WatchModel - decimal Desítkový - hexadecimal Šestnáctkový - binary Dvojkový - octal Osmičkový - + Bald pointer + Prosté ukazovátko + + + Latin1 string + Řetězec Latin1 + + + UTF8 string + Řetězec UTF8 + + + UTF16 string + Řetězec UTF16 + + + UCS4 string + Řetězec UCS4 + + Name Název - Value Hodnota - Type Typ @@ -14459,7 +15078,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Designer::FormWindowEditor - untitled Bez názvu @@ -14467,17 +15085,18 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle GenericProjectManager::Internal::GenericBuildConfigurationFactory - Create - Vytvořit + Vytvořit - - New configuration - Nové nastavení - + Build + Sestavování + + + New configuration + Nové nastavení + - New Configuration Name: Název nového nastavení: @@ -14485,12 +15104,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Git::Internal::CloneWizard - Clones a project from a git repository. - Vytvoří přesnou kopii projektu ze skladiště jménem Git. + Vytvoří přesnou kopii projektu ze skladiště jménem Git. + + + Clones a Git repository and tries to load the contained project. + Vytvoří klon skladiště Git a pokusí se nahrát obsažený projekt. - Git Repository Clone Klon skladiště Git @@ -14498,12 +15119,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Git::CloneWizardPage - + Location + Umístění + + Specify repository URL, checkout directory and path. - Zadejte adresu skladiště (URL), adresář pro odhlášení a cestu. + Zadejte adresu skladiště (URL), adresář pro přezkoušení (checkout; dostat kopii) a cestu. - Clone URL: Adresa (URL) klonu: @@ -14511,17 +15134,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Gitorious::Internal::Gitorious - Error parsing reply from '%1': %2 Chyba při vyhodnocování odpovědi '%1': %2 - Request failed for '%1': %2 Požadavek '%1' se nezdařil: %2 - Open source projects that use Git. Projekty s otevřeným zdrojovým kódem, které používají Git. @@ -14529,12 +15149,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Gitorious::Internal::GitoriousCloneWizard - Clones a project from a Gitorious repository. - Vytvoří přesnou kopii projektu ze skladiště jménem Git. + Vytvoří přesnou kopii projektu ze skladiště jménem Git. + + + Clones a Gitorious repository and tries to load the contained project. + Vytvoří klon skladiště Gitorious a pokusí se nahrát obsažený projekt. - Gitorious Repository Clone Klon skladiště Git @@ -14542,7 +15164,10 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Gitorious::Internal::GitoriousHostWizardPage - + Host + Hostitelský počítač + + Select a host. Vyberte hostitelský počítač (server). @@ -14550,7 +15175,10 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Gitorious::Internal::GitoriousProjectWizardPage - + Project + Projekt + + Choose a project from '%1' Vyberte projekt z '%1' @@ -14558,33 +15186,30 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Help::Internal::GeneralSettingsPage - General settings - Obecná nastavení + Obecná nastavení - Help - Nápověda + Nápověda + + + General Settings + Obecná nastavení - Open Image Otevřít soubor - - Files (*.xbel) Soubory XBEL (*.xbel) - There was an error while importing bookmarks! Při zavádění záložek se vyskytla chyba. - Save File Uložit soubor @@ -14592,12 +15217,10 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Help::Internal::XbelReader - The file is not an XBEL version 1.0 file. Soubor není souborem XBEL ve verzi 1.0. - Unknown title Neznámý název @@ -14605,28 +15228,26 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Locator::Internal::DirectoryFilter - Generic Directory Filter Obecný adresářový filtr - Filter Configuration Nastavení filtru - - Choose a directory to add - Vyberte, prosím, adresář, který se má přidat + Vyberte, prosím, adresář, který se má přidat + + + Select Directory + Vybrat adresář - %1 filter update: 0 files %1 stav filtru: žádný soubor - %1 filter update: %n files %1 stav filtru: jeden soubor @@ -14635,7 +15256,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle - %1 filter update: canceled %1 stav filtru: zrušeno @@ -14643,7 +15263,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Locator::Internal::FileSystemFilter - Files in file system Soubory v souborovém systému @@ -14651,17 +15270,14 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Locator::ILocatorFilter - Filter Configuration Nastavení filtru - Limit to prefix Omezit na předponu - Prefix: Předpona: @@ -14669,7 +15285,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Locator::Internal::LocatorFiltersFilter - Available filters Dostupné filtry @@ -14677,7 +15292,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Locator::Internal::LocatorPlugin - Indexing Rejstříkování @@ -14685,27 +15299,26 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Locator::Internal::LocatorWidget - Refresh Obnovit - Configure... Nastavení... - Locate... Najít... - Type to locate Vzor hledání - + Options + Volby + + <type here> <Sem napište> @@ -14713,7 +15326,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Locator::Internal::OpenDocumentsFilter - Open documents Otevřít dokumenty @@ -14721,25 +15333,25 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle Locator::Internal::SettingsPage - %1 (Prefix: %2) + %1 (Předpona: %2) + + + %1 (prefix: %2) %1 (Předpona: %2) ProjectExplorer::ApplicationLauncher - Failed to start program. Path or permissions wrong? Program se nepodařilo spustit. Možná nesouhlasí cesta, nebo nejsou dostatečná oprávnění? - The program has unexpectedly finished. Program neočekávaně spadl. - Some error has occurred while running the program. Při spouštění programu se vyskytla chyba. @@ -14747,7 +15359,6 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle ProjectExplorer::Internal::LocalApplicationRunControlFactory - Run Spustit @@ -14755,12 +15366,10 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle ProjectExplorer::Internal::LocalApplicationRunControl - Starting %1... Spouští se %1... - %1 exited with code %2 %1 ukončen. Vrácená hodnota %2 @@ -14768,22 +15377,18 @@ Abyste to provedl, napište tuto zkraku v zadávacím poli vyhledávače, násle ProjectExplorer::DebuggingHelperLibrary - The target directory %1 could not be created. Cílový adresář %1 se nepodařilo vytvořit. - The existing file %1 could not be removed. Stávající soubor %1 se nepodařilo odstranit. - The file %1 could not be copied to %2. Soubor %1 se nepodařilo zkopírovat do %2. - The debugger helpers could not be built in any of the directories: - %1 @@ -14793,30 +15398,24 @@ Reason: %2 Důvod: %2 - Building debugging helper library in %1 Vytváří se pomocná knihovna pro výstup dat o ladění v %1 - Running %1 %2... Provádí se %1 %2... - - %1 not found in PATH %1 se v CESTĚ (PATH) nepodařilo najít - - Running %1 ... Provádí se %1... @@ -14826,12 +15425,10 @@ Důvod: %2 ProjectExplorer::Internal::ProcessStepConfigWidget - <b>%1</b> %2 %3 %4 <b>%1</b> %2 %3 %4 - (disabled) (vypnuto) @@ -14839,42 +15436,38 @@ Důvod: %2 ProjectExplorer::Internal::BuildConfigDialog - Change build configuration && continue Změnit nastavení sestavování && pokračovat - Cancel Zrušit - Continue anyway Pokračovat tak jako tak - Run configuration does not match build configuration Nastavení spouštění neodpovídá nastavení sestavování - The active build configuration builds a target that cannot be used by the active run configuration. Činné nastavení sestavování vytváří cíl, který nemůže být použit činným nastavením spouštění. - This can happen if the active build configuration uses the wrong Qt version and/or tool chain for the active run configuration (for example, running in Symbian emulator requires building with the WINSCW tool chain). - To se může stát, když činné nastavení sestavování používá nesprávnou verzi Qt a/nebo řetěz nástrojů pro nastavení spouštění (například spuštění v napodobovateli Symbianu vyžaduje sestavení s řetězem nástrojů WINSCW). + To se může stát, když činné nastavení sestavování používá nesprávnou verzi Qt a/nebo řetěz nástrojů pro nastavení spouštění (například spuštění v napodobovateli jinak též emulátoru Symbianu vyžaduje sestavení s řetězem nástrojů WINSCW). - No valid build configuration found. Nepodařilo se nalézt žádné platné nastavení sestavování. - + Active run configuration + Činné nastavení spuštění + + Choose build configuration: Vybrat nastavení sestavování: @@ -14882,16 +15475,13 @@ Důvod: %2 ProjectExplorer::Internal::ActiveConfigurationWidget - - Active run configuration - Činné nastavení spuštění + Činné nastavení spuštění ProjectExplorer::Internal::ProjectWelcomePage - Develop Vývoj @@ -14899,96 +15489,91 @@ Důvod: %2 ProjectExplorer::Internal::ProjectLabel - Edit Project Settings for Project <b>%1</b> - Upravit projektová nastavení pro projekt <b>%1</b> + Upravit projektová nastavení pro projekt <b>%1</b> - No Project loaded - Nenahrán žádný projekt + Nenahrán žádný projekt ProjectExplorer::Internal::ProjectPushButton - Select Project - Vybrat projekt + Vybrat projekt ProjectExplorer::Internal::RunSettingsWidget - Add Přidat - Remove Odstranit - <a href="#">Make %1 active.</a> - <a href="#">Udělat %1 činným.</a> + <a href="#">Udělat %1 činným.</a> ToolChain - GCC GCC - Intel C++ Compiler (Linux) Intel C++-Compiler (Linux) - Microsoft Visual C++ Microsoft Visual C++ - Windows CE Windows CE - WINSCW WINSCW - GCCE GCCE - + GCCE/GnuPoc + GCCE/GnuPoc + + + RVCT (ARMV6)/GnuPoc + RVCT (ARMV6)/GnuPoc + + RVCT (ARMV5) RVCT (ARMV5) - RVCT (ARMV6) RVCT (ARMV6) - + GCC for Maemo + GCC pro Maemo + + Other Jiné - <Invalid> <Neplatný> - <Unknown> <Neznámý> @@ -14996,139 +15581,121 @@ Důvod: %2 QmlParser - Illegal character Neplatný znak - Unclosed string at end of line Neuzavřený řetězec na konci řádku - Illegal escape squence Neplatná posloupnost 'escape' - Illegal unicode escape sequence Neplatná posloupnost 'unicode escape' - Unclosed comment at end of file Neuzavřená poznámka na konci řádku - Illegal syntax for exponential number Neplatná skladba exponentu čísla - Identifier cannot start with numeric literal Identifikátor nemůže začínat číselným znakem - Unterminated regular expression literal - Neuzavřený pravidelně se opakující výraz + Neuzavřený regulární výraz tvořený písmeny - Invalid regular expression flag '%0' - Neplatný příznak pro pravidelně se opakující výraz '%0' + Neplatný příznak pro regulární výraz '%0' - Unexpected token '%1' - Neočekávaný symbol '%1' + Neočekávaný symbol '%1' - - Expected token '%1' - Očekávaný symbol '%1' + Očekávaný symbol '%1' - Syntax error Chyba ve skladbě + + Unexpected token `%1' + Neočekávaný symbol `%1' + + + Expected token `%1' + Očekávaný symbol `%1' + QmlEditor::Internal::ScriptEditor - <Select Symbol> - <Vybrat symbol> + <Vybrat symbol> - Rename... - Přejmenovat... + Přejmenovat... - New id: - Nové ID: + Nové ID: - Rename id '%1'... - Přejmenovat ID '%1'... + Přejmenovat ID '%1'... QmlEditor::Internal::QmlEditorPlugin - Qt - Qt + Qt - Creates a Qt QML file. - Vytvoří soubor Qt QML. + Vytvoří soubor Qt QML. - Qt QML File - Soubor Qt QML + Soubor Qt QML QmlEditor::Internal::QmlModelManager - Indexing - Rejstříkování + Rejstříkování QmlProjectManager::Internal::QmlMakeStepConfigWidget - <b>QML Make</b> - <b>QML Make</b> + <b>QML Make</b> Qt4ProjectManager::Internal::ClassList - - <New class> <Nová třída> - Confirm Delete Potvrdit smazání - Delete class %1 from list? Má se smazat třída %1 na seznamu? @@ -15136,38 +15703,48 @@ Důvod: %2 Qt4ProjectManager::Internal::CustomWidgetWizard - Qt4 Designer Custom Widget - Uživatelsky stanovený prvek pro Qt4 Designer + Uživatelsky stanovený prvek pro Qt4 Designer - Creates a Qt4 Designer Custom Widget or a Custom Widget Collection. - Vytvoří jeden nebo více uživatelsky stanovených prvků pro Qt4 Designer. + Vytvoří jeden nebo více uživatelsky stanovených prvků pro Qt4 Designer. + + + Qt Custom Designer Widget + Uživatelsky stanovený prvek pro Qt Designer + + + Creates a Qt Custom Designer Widget or a Custom Widget Collection. + Vytvoří jeden nebo více uživatelsky stanovených prvků pro Qt Designer. Qt4ProjectManager::Internal::CustomWidgetWizardDialog - This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. Tento průvodce vytvoří projekt Qt4 s jedním nebo více uživatelsky stanovenými prvky pro Qt4 Designer. + + Custom Widgets + Uživatelsky stanovené prvky + + + Plugin Details + Podrobnosti přídavného modulu + Qt4ProjectManager::Internal::PluginGenerator - Cannot open icon file %1. Nelze otevřít soubor s ikonou '%1'. - Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. Vytvoření více knihoven prvků (%1, %2) v jednom projektu (%3) není podporováno. - Cannot open %1: %2 Nelze otevřít soubor '%1': %2 @@ -15175,7 +15752,6 @@ Důvod: %2 Qt4ProjectManager::Internal::GettingStartedWelcomePage - Getting Started Rychlý nástup @@ -15183,7 +15759,6 @@ Důvod: %2 Qt4ProjectManager::Internal::MakeStepFactory - Make Make @@ -15191,51 +15766,55 @@ Důvod: %2 Qt4ProjectManager::QMakeStepConfigWidget - <b>QMake:</b> No Qt version set. QMake can not be run. - <b>QMake:</b> Není nastavena verze Qt. QMake nelze spustit. + <b>QMake:</b> Není nastavena verze Qt. QMake nelze spustit. - <b>QMake:</b> %1 %2 - <b>QMake:</b> %1 %2 + <b>QMake:</b> %1 %2 - No valid Qt version set. - Není nastavena platná verze Qt. + Není nastavena platná verze Qt. + + + <b>qmake:</b> No Qt version set. Cannot run qmake. + <b>qmake:</b> Není nastavena verze Qt. qmake nelze spustit. + + + <b>qmake:</b> %1 %2 + <b>qmake:</b> %1 %2 Qt4ProjectManager::Internal::QMakeStepFactory - QMake - QMake + QMake + + + qmake + qmake Qt4ProjectManager::Internal::S60DeviceRunConfiguration - %1 on Symbian Device %1 na zařízení Symbian - QtS60DeviceRunConfiguration Nastavení spuštění zařízení Qt4 S60 - Could not parse %1. The QtS60 Device run configuration %2 can not be started. - %1 se nepodařilo vyhodnotit. Nastavení spuštění zařízení Qt4 S60 %2 se nepodařilo spustit. + %1 se nepodařilo vyhodnotit. Nastavení spuštění zařízení Qt4 S60 %2 se nepodařilo spustit. Qt4ProjectManager::Internal::S60DeviceRunConfigurationFactory - %1 on Symbian Device %1 na zařízení Symbian @@ -15243,151 +15822,157 @@ Důvod: %2 Qt4ProjectManager::Internal::S60DeviceRunControlBase - There is no device plugged in. Není připojeno žádné zařízení. - Creating %1.sisx ... - Vytváří se %1.sisx ... + Vytváří se %1.sisx ... - Executable file: %1 Spustitelný soubor: %1 - Debugger for Symbian Platform Ladicí program pro platformu Symbian - - %1 %2 - %1 %2 + %1 %2 - Could not read template package file '%1' - Předlohový soubor pro popis balíčku '%1' se nepodařilo přečíst + Předlohový soubor pro popis balíčku '%1' se nepodařilo přečíst - Could not write package file '%1' - Soubor s popisem balíčku '%1' se nepodařilo zapsat + Soubor s popisem balíčku '%1' se nepodařilo zapsat - - An error occurred while creating the package. - Při vytváření instalačního balíčku se vyskytla chyba. + Při vytváření instalačního balíčku se vyskytla chyba. + + + Unable to remove existing file '%1': %2 + Stávající soubor '%1' se nepodařilo odstranit: %2 + + + Unable to rename file '%1' to '%2': %3 + Soubor '%1' se nepodařilo přejmenovat na '%2': %3 + + + Deploying + Posílá se + + + Renaming new package '%1' to '%2' + Přejmenovává se nový balíček '%1' na '%2' + + + Removing old package '%1' + Odstraňuje se starý balíček '%1' + + + Package file not found + Soubor s balíčkem nenalezen + + + Failed to find package '%1': %2 + Nepodařilo se najít balíček '%1': %2 - Package: %1 Deploying application to '%2'... Instalační balíček: %1 Program se instaluje do '%2'... - Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running. Nepodařilo vytvořit žádné spojení k zařízení telefonu přes přípojku '%1': %2 Prověřte, prosím, zda je telefon připojen a zda běží program Trk. - Could not create file %1 on device: %2 Soubor %1 se nepodařilo vytvořit na zařízení: %2 - Could not write to file %1 on device: %2 Soubor %1 se nepodařilo zapsat na zařízení: %2 - Could not close file %1 on device: %2. It will be closed when App TRK is closed. Soubor %1 se nepodařilo uzavřít na zařízení: %2. Bude uzavřen při ukončení programu Trk. - Could not connect to App TRK on device: %1. Restarting App TRK might help. K programu Trk se přes přípojku: %1 nepodařilo vytvořit žádné spojení. Pokuste se, prosím, program Trk spustit znovu. - - Copying install file... + Copying installation file... Kopíruje se instalační soubor... - + The device '%1' has been disconnected + Zařízení '%1' bylo odpojeno + + + Copying install file... + Kopíruje se instalační soubor... + + %1% copied. - %1% zkopírován. + %1% zkopírován. - Installing application... Instaluje se program... - Could not install from package %1 on device: %2 Instalace balíčku %1 se nezdařila na zařízení: %2 - Waiting for App TRK Čeká se na program Trk - Please start App TRK on %1. Spusťte, prosím, program Trk na %1. - Canceled. Zrušeno. - Failed to start %1. - Nepodařilo se spustit %1. + Nepodařilo se spustit %1. - %1 has unexpectedly finished. - %1 neočekávaně spadl. + %1 neočekávaně spadl. - An error has occurred while running %1. - Při spouštění %1 se vyskytla chyba. + Při spouštění %1 se vyskytla chyba. Qt4ProjectManager::Internal::S60DeviceRunControl - Finished. Dokončeno. - Starting application... Spouští se program... - Application running with pid %1. Program běží s ID procesu: %1. - Could not start application: %1 Nepodařilo se spustit program: %1 @@ -15395,17 +15980,14 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. Qt4ProjectManager::Internal::S60DeviceDebugRunControl - Warning: Cannot locate the symbol file belonging to %1. Varování: Nepodařilo se najít symbolický soubor patřící '%1'. - Launching debugger... Spouští se ladicí program... - Debugging finished. Ladění dokončeno. @@ -15413,78 +15995,75 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget - Device: Zařízení: - Name: Název: - - Install File: + Arguments: + Argumenty: + + + Installation file: Instalační soubor: - - Device on Serial Port: + Device on serial port: Zařízení na sériové přípojce: - + Install File: + Instalační soubor: + + + Device on Serial Port: + Zařízení na sériové přípojce: + + Queries the device for information Vyvolává informace ze zařízení - Self-signed certificate - Osobně podepsané osvědčení + Osobně podepsané osvědčení - Choose certificate file (.cer) - Zadejte soubor s osvědčením (.cer) + Zadejte soubor s osvědčením (.cer) - Custom certificate: - Uživatelsky stanovené osvědčení: + Uživatelsky stanovené osvědčení: - Choose key file (.key / .pem) - Zadejte soubor s klíčem (.key/.pem) + Zadejte soubor s klíčem (.key/.pem) - Key file: - Soubor s klíčem: + Soubor s klíčem: - <No Device> Summary text of S60 device run configuration - <Žádné zařízení> + <Žádné zařízení> - (custom certificate) - (uživatelsky stanovené osvědčení) + (uživatelsky stanovené osvědčení) - (self-signed certificate) - (osobně podepsané osvědčení) + (osobně podepsané osvědčení) - Summary: Run on '%1' %2 - Souhrn: Spustit na '%1' z %2 + Souhrn: Spustit na '%1' z %2 - Connecting... Spojuje se... @@ -15492,27 +16071,22 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. Qt4ProjectManager::Internal::S60Devices::Device - Id: ID: - Name: Název: - EPOC: EPOC: - Tools: Nástroje: - Qt: Qt: @@ -15520,69 +16094,62 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. Qt4ProjectManager::Internal::S60DevicesWidget - No Qt installed - Qt není nainstalováno + Qt není nainstalováno Qt4ProjectManager::Internal::S60EmulatorRunConfiguration - %1 in Symbian Emulator - %1 v napodobovateli Symbianu + %1 v napodobovateli jinak též emulátoru Symbianu + + + Qt Symbian Emulator RunConfiguration + Nastavení běhu Qt napodobovatele jinak též emulátoru pro Symbian - QtSymbianEmulatorRunConfiguration - QtSymbianEmulatorRunConfiguration + QtSymbianEmulatorRunConfiguration - Could not parse %1. The Qt for Symbian emulator run configuration %2 can not be started. - %1 se nepodařilo vyhodnotit. Nastavení spuštění napodobovatele Qt pro Symbian %2 se nepodařilo spustit. + %1 se nepodařilo vyhodnotit. Nastavení spuštění napodobovatele Qt pro Symbian %2 se nepodařilo spustit. Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget - Name: Název: - Executable: Spustitelný soubor: - Summary: Run %1 in emulator - Souhrn: Spustit '%1' v napodobovateli + Souhrn: Spustit '%1' v napodobovateli Qt4ProjectManager::Internal::S60EmulatorRunConfigurationFactory - %1 in Symbian Emulator - %1 v napodobovateli Symbianu + %1 v napodobovateli jinak též emulátoru Symbianu Qt4ProjectManager::Internal::S60EmulatorRunControl - Starting %1... Spouští se %1... - [Qt Message] [Hlášení Qt] - %1 exited with code %2 %1 ukončen. Vrácená hodnota %2 @@ -15590,17 +16157,14 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. Qt4ProjectManager::Internal::S60Manager - Run in Emulator - Spustit v napodobovateli + Spustit v napodobovateli jinak též emulátoru - Run on Device Spustit na zařízení - Debug on Device Ladit na zařízení @@ -15608,66 +16172,77 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. Qt4ProjectManager::Qt4BuildConfigurationFactory - Using Default Qt Version - Používá se výchozí verze Qt + Používá se výchozí verze Qt - Using Qt Version "%1" - Používá se verze Qt "%1" + Používá se verze Qt "%1" - New configuration - Nové nastavení + Nové nastavení - New Configuration Name: - Název nového nastavení: + Název nového nastavení: - %1 Debug - %1 ladění + %1 ladění - %1 Release - %1 vydání + %1 vydání QApplication - The Qt Version has no toolchain. - Tato verze Qt nemá přiřazen žádný řetěz nástrojů. + Tato verze Qt nemá přiřazen žádný řetěz nástrojů. + + + EditorManager + Next Open Document in History + Další otevřený dokument v historii + + + EditorManager + Previous Open Document in History + Předchozí otevřený dokument v historii Subversion::Internal::CheckoutWizard - Checks out a project from a Subversion repository. - Odhlásí projekt ze skladiště Subversion. + Odhlásí projekt ze skladiště Subversion. + + + Checks out a Subversion repository and tries to load the contained project. + Vytvoří přezkoušení (checkout; dostat kopii) skladiště Subversion a zkusí tam nahrát obsažený projekt. - Subversion Checkout - Odhlášení ze Subversion + Přezkoušet (checkout; dostat kopii) Subversion Subversion::Internal::CheckoutWizardPage - Specify repository, checkout directory and path. - Zadejte skladiště, adresář pro odhlášení a cestu. + Zadejte skladiště, adresář pro odhlášení a cestu. + + + Location + Umístění + + + Specify repository URL, checkout directory and path. + Zadejte adresu skladiště (URL), adresář pro přezkoušení (checkout; dostat kopii) a cestu. - Repository: Skladiště: @@ -15675,7 +16250,6 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. TextEditor::Internal::ColorScheme - Not a color scheme file. Není souborem znázornění barev: @@ -15683,7 +16257,6 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. TextEditor::Internal::FontSettings - Customized Uživatelsky stanovený @@ -15691,32 +16264,26 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. VCSBase::BaseCheckoutWizard - Cannot Open Project Chyba při otevírání projektu - Failed to open project in '%1'. Nepodařilo se otevřít projekt v '%1'. - Could not find any project files matching (%1) in the directory '%2'. V adresáři '%2' se nepodařilo najít žádné projektové soubory, které by odpovídaly (%1). - The Project Explorer is not available. Projektový průzkumník není dostupný. - '%1' does not exist. '%1' neexistuje. - Unable to open the project '%1'. Projekt '%1' se nepodařilo otevřít. @@ -15724,27 +16291,22 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. VCSBase::ProcessCheckoutJob - Unable to start %1: %2 Nelze spustit %1: %2 - The process terminated with exit code %1. Proces byl ukončen. Vrácená hodnota %1. - The process returned exit code %1. Proces vrátil hodnotu %1. - The process terminated in an abnormal way. Proces byl ukončen neobvyklým způsobem. - Stopping... Zastavuje se... @@ -15752,17 +16314,18 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. VCSBase::Internal::CheckoutProgressWizardPage - + Checkout + Přezkoušet (checkout; dostat kopii) + + Checkout started... - Prověření spuštěno... + Přezkoušení (checkout; dostat kopii) spuštěno... - Failed. Nepodařilo se. - Succeeded. Mělo úspěch. @@ -15770,12 +16333,14 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. VCSBase::VCSBaseOutputWindow - + Open "%1" + Otevřít "%1" + + Clear Smazat - Version Control Ověření verzí @@ -15783,45 +16348,41 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. Welcome::Internal::CommunityWelcomePage - Community - Společenství + Společenství + + + News && Support + Zprávy && Podpora trk::BluetoothListener - %1: Stopping listener %2... %1: Zastavuje se proces %2... - %1: Starting Bluetooth listener %2... %1: Spouští se modrozubí proces %2... - Unable to run '%1': %2 '%1' nelze spustit: %2 - %1: Bluetooth listener running (%2). %1: Běží modrozubí proces (%2). - %1: Process %2 terminated with exit code %3. %1: Proces %2 byl ukončen. Vrácená hodnota %3. - %1: Process %2 crashed. %1: Proces %2 spadl. - %1: Process error %2: %3 %1: Chyba v procesu %2: %3 @@ -15829,27 +16390,22 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. trk::promptStartCommunication - Connection on %1 canceled. Spojení s %1 bylo zrušeno. - Waiting for App TRK Čeká se na program Trk - Waiting for App TRK to start on %1... Čeká se na program Trk kvůli spuštění na %1... - Waiting for Bluetooth Connection Čeká se na modrozubí spojení - Connecting to %1... Spojuje se s %1... @@ -15857,7 +16413,6 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. trk::BaseCommunicationStarter - %1: timed out after %n attempts using an interval of %2ms. %1: Překročení času po jednom pokusu (období %2ms). @@ -15866,12 +16421,10 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. - %1: Connection attempt %2 succeeded. %1: Spojení vytvořeno při pokusu %2. - %1: Connection attempt %2 failed: %3 (retrying)... %1: Spojení se při pokusu %2 nepodařilo: %3 (zkusí se ještě jednou)... @@ -15879,40 +16432,33 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. 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 Program TRK: v%1.%2 Protokol 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 - big endian velký endian - little endian malý endian - , type size: %1 will be inserted into s60description , velikost typu: %1 - , float size: %1 will be inserted into s60description , plovoucí velikost: %1 @@ -15921,139 +16467,5647 @@ Prověřte, prosím, zda je telefon připojen a zda běží program Trk. MimeType - unknown - Neznámý + Neznámý - CMake Project file Projektový soubor CMake - C Source file Zdrojový soubor C - C Header file Hlavičkový soubor C - C++ Header file Hlavičkový soubor C++ - C++ header Hlavičkový soubor C++ - C++ Source file Zdrojový soubor C++ - C++ source code Zdrojový kód C++ - Objective-C source code Zdrojový kód Objective-C - CVS submit template Předloha předložení CVS - Qt Designer file Soubor Qt Designeru - Generic Qt Creator Project file Obecný projektový soubor Qt Creatoru - Generic Project Files Obecné projektové soubory - Generic Project Include Paths Cesty include pro obecné projekty - Generic Project Configuration File Soubor s nastavením projektu pro obecné projekty - Perforce submit template Předloha předložení Perforce - QML file Soubor QML - Qml Project file - Projektový soubor QML + Projektový soubor QML - Qt Project file Projektový soubor Qt - Qt Project include file Soubor include projektu Qt - message catalog Soubor se zprávami - Qt Script file Soubor se skriptem Qt - + BMP image + Soubor s obrázkem BMP + + + GIF image + Soubor s obrázkem GIF + + + ICO image + Soubor s obrázkem ICO + + + JPEG image + Soubor s obrázkem JPEG + + + MNG video + Soubor s videem MNG + + + PBM image + Soubor s obrázkem PBM + + + PGM image + Soubor s obrázkem PGM + + + PNG image + Soubor s obrázkem PNG + + + PPM image + Soubor s obrázkem PPM + + + SVG image + Soubor s obrázkem SVG + + + TIFF image + Soubor s obrázkem TIFF + + + XBM image + Soubor s obrázkem XBM + + + XPM image + Soubor s obrázkem XPM + + + QML Project file + Projektový soubor QML + + + Qt Project feature file + Soubor s funkcí projektu Qt + + Qt Resource file Zdrojový soubor Qt - Subversion submit template Předloha předložení Subversion - Plain text document Soubor s prostým textem - XML document Dokument XML - Differences between files Rozdíly mezi soubory + + CommandMappings + + Command Mappings + Přiřazení příkazů + + + Command + Příkaz + + + Label + Štítek + + + Target + Cíl + + + Defaults + Výchozí + + + Import... + Zavést... + + + Export... + Vyvést... + + + Target Identifier + Identifikátor cíle + + + Target: + Cíl: + + + Reset + Nastavit znovu + + + + CodePaster::FileShareProtocolSettingsWidget + + Form + Formulář + + + &Path: + &Cesta: + + + &Display: + &Zobrazit: + + + entries + Záznamy + + + The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. + Protokol vložení založený na sdílení souborů umožňuje sdílení kousků kódu pomocí jednoduchých souborů na sdílené síťové diskové jednotce. Soubory nejsou nikdy mazány. + + + + Git::Internal::StashDialog + + Stashes + Ulité změny + + + Name + Název + + + Branch + Větev + + + Message + Označení + + + Delete all... + Smazat vše... + + + Delete... + Smazat... + + + Show + Ukázat + + + Restore... + Obnovit... + + + Restore to branch... + Restore a git stash to new branch to be created + Obnovit jako větev... + + + Refresh + Obnovit + + + <No repository> + <Žádné skladiště> + + + Repository: %1 + Skladiště: %1 + + + Delete stashes + Smazat ulité změny + + + Do you want to delete all stashes? + Chcete smazat všechny ulité změny? + + + Do you want to delete %n stash(es)? + + Chcete smazat jednu ulitou změnu? + Chcete smazat %n ulité změny? + Chcete smazat %n ulitých změn? + + + + Repository modified + Skladiště upraveno + + + %1 cannot be restored since the repository is modified. +You can choose between stashing the changes or discarding them. + %1 nelze obnovit, protože skladiště bylo upraveno. +Můžete si vybrat mezi ulitím změn do jedné ukryté zásoby nebo jejich vyhozením. + + + Stash + Ulít + + + Discard + Vyhodit + + + Restore Stash to Branch + Obnovit ulitou změnu jako větev + + + Branch: + Větev: + + + Stash Restore + Obnovení ulité změny + + + Would you like to restore %1? + Chcete obnovit %1? + + + Error restoring %1 + Chyba při obnově %1 + + + + Mercurial::Internal::MercurialCommitPanel + + General Information + Obecné informace + + + Repository: + Skladiště: + + + repository + Skladiště + + + Branch: + Větev: + + + branch + Větev + + + Commit Information + Informace o odeslání + + + Author: + Autor: + + + Email: + E-mailová adresa: + + + + Mercurial::Internal::OptionsPage + + Form + Formulář + + + Configuration + Nastavení + + + Command: + Příkaz: + + + User + Uživatel + + + Username to use by default on commit. + Uživatelské jméno, které se použije jako výchozí při odeslání. + + + Default username: + Výchozí uživatelské jméno: + + + Email to use by default on commit. + Adresa elektronické pošty, která se použije jako výchozí při odeslání. + + + Default email: + Výchozí adresa elektronické pošty: + + + Miscellaneous + Různé + + + Log count: + Počet zápisů omezit na: + + + The number of recent commit logs to show, choose 0 to see all enteries + Počet ukázaných nedávných zápisů o odeslání. Vyberte 0, abyste viděl všechny záznamy + + + Timeout: + Časové omezení: + + + s + s + + + Prompt on submit + Potvrdit předložení + + + Mercurial + Mercurial + + + + Mercurial::Internal::RevertDialog + + Revert + Vrátit + + + Specify a revision other than the default? + Chcete uvést jinou změnu, než je ta výchozí? + + + Revision: + Revize: + + + + Mercurial::Internal::SrcDestDialog + + Dialog + Dialog + + + Default Location + Výchozí umístění + + + Local filesystem: + Místní souborový systém: + + + e.g. https://[user[:pass]@]host[:port]/[path] + např. https://[user[:pass]@]host[:port]/[path] + + + Specify Url: + Adresa (URL): + + + + ProjectExplorer::Internal::AddTargetDialog + + Add target + Přidat cíl + + + Target: + Cíl: + + + + ProjectExplorer::Internal::DoubleTabWidget + + DoubleTabWidget + DoubleTabWidget + + + + ProjectExplorer::Internal::TargetSettingsWidget + + TargetSettingsWidget + TargetSettingsWidget + + + + BehaviorDialog + + Dialog + Dialog + + + Type: + Typ: + + + Id: + ID: + + + Property Name: + Název vlastnosti: + + + Animation + Vykreslování + + + SpringFollow + SpringFollow + + + Settings + Nastavení + + + Duration: + Doba trvání: + + + Curve: + Křivka: + + + easeNone + easeNone + + + Source: + Zdroj: + + + Velocity: + Rychlost: + + + Spring: + Pružina: + + + Damping: + Tlumení: + + + + + GradientDialog + + Edit Gradient + Upravit přechod + + + + GradientEditor + + Form + Formulář + + + Gradient Editor + Úpravy přechodů + + + This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. + Tato oblast ukazuje náhled na gradient, který je upravován. Také vám umožňuje upravovat parametry vlastní gradientům, jako jsou počáteční a koncový bod, poloměr atd. pomocí funkce táhni a pusť. + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + + + 5 + 5 + + + Gradient Stops Editor + Editor bodů zastavení přechodu + + + This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. + Tato oblast vám umožňuje upravovat body zastavení přechodu. Dvakrát klepněte na stávající bod zastavení pro jeho zdvojení. Dvakrát klepněte mimo stávající bod zastavení pro vytvoření nového bodu zastavení. Táhněte a pusťte bod zastavení, abyste jej přemístil. Použijte pravé tlačítko myši pro vyvolání vyskakovací nabídky se souvisejícími činnostmi navíc. + + + Zoom + Zvětšení + + + Reset Zoom + Nastavit znovu zvětšení + + + Position + Poloha + + + Hue + Barevný odstín + + + H + BO + + + Saturation + Sytost + + + S + S + + + Sat + Syt + + + Value + Hodnota + + + V + H + + + Val + Hodn + + + Alpha + Alfa + + + A + A + + + Type + Typ + + + Spread + Rozšiřování + + + Color + Barva + + + Current stop's color + Barva nynějšího zastavení + + + Show HSV specification + Ukázat přesné vymezení HSV + + + HSV + HSV + + + Show RGB specification + Ukázat přesné vymezení RGB + + + RGB + RGB + + + Current stop's position + Poloha nynějšího zastavení + + + % + % + + + Zoom In + Přiblížit + + + Zoom Out + Oddálit + + + Toggle details extension + Přidat další volby + + + > + > + + + Linear Type + Přímočarý typ + + + ... + ... + + + Radial Type + Paprskovitý typ + + + Conical Type + Kuželovitý typ + + + Pad Spread + Doplnit rozšiřování + + + Repeat Spread + Opakovat rozšiřování + + + Reflect Spread + Zrcadlit rozšiřování + + + Start X + Začáteční hodnota x + + + Start Y + Začáteční hodnota y + + + Final X + Koncová hodnota x + + + Final Y + Koncová hodnota y + + + Central X + Střední bod x + + + Central Y + Střed y + + + Focal X + Ohnisko x + + + Focal Y + Ohnisko y + + + Radius + Poloměr + + + Angle + Úhel + + + Linear + Přímočarý + + + Radial + Paprskovitý + + + Conical + Kuželovitý + + + Pad + Doplnit + + + Repeat + Opakovat + + + Reflect + Zrcadlit + + + + QtGradientDialog + + Edit Gradient + Upravit přechod + + + + QtGradientEditor + + Form + Formulář + + + Gradient Editor + Úpravy přechodů + + + This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. + Tato oblast ukazuje náhled na gradient, který je upravován. Také vám umožňuje upravovat parametry vlastní gradientům, jako jsou počáteční a koncový bod, poloměr atd. pomocí funkce táhni a pusť. + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + + + 5 + 5 + + + Gradient Stops Editor + Editor bodů zastavení přechodu + + + This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. + Tato oblast vám umožňuje upravovat body zastavení přechodu. Dvakrát klepněte na stávající bod zastavení pro jeho zdvojení. Dvakrát klepněte mimo stávající bod zastavení pro vytvoření nového bodu zastavení. Táhněte a pusťte bod zastavení, abyste jej přemístil. Použijte pravé tlačítko myši pro vyvolání vyskakovací nabídky se souvisejícími činnostmi navíc. + + + Zoom + Zvětšení + + + Reset Zoom + Nastavit znovu zvětšení + + + Position + Poloha + + + Hue + Barevný odstín + + + H + BO + + + Saturation + Sytost + + + S + S + + + Sat + Syt + + + Value + Hodnota + + + V + H + + + Val + Hodn + + + Alpha + Alfa + + + A + A + + + Type + Typ + + + Spread + Rozšiřování + + + Color + Barva + + + Current stop's color + Barva nynějšího zastavení + + + Show HSV specification + Ukázat přesné vymezení HSV + + + HSV + HSV + + + Show RGB specification + Ukázat přesné vymezení RGB + + + RGB + RGB + + + Current stop's position + Poloha nynějšího zastavení + + + % + % + + + Zoom In + Přiblížit + + + Zoom Out + Oddálit + + + Toggle details extension + Přidat další volby + + + > + > + + + Linear Type + Přímočarý typ + + + ... + ... + + + Radial Type + Paprskovitý typ + + + Conical Type + Kuželovitý typ + + + Pad Spread + Doplnit rozšiřování + + + Repeat Spread + Opakovat rozšiřování + + + Reflect Spread + Zrcadlit rozšiřování + + + Start X + Začáteční hodnota x + + + Start Y + Začáteční hodnota y + + + Final X + Koncová hodnota x + + + Final Y + Koncová hodnota y + + + Central X + Střední bod x + + + Central Y + Střední bod y + + + Focal X + Ohnisko x + + + Focal Y + Ohnisko y + + + Radius + Poloměr + + + Angle + Úhel + + + Linear + Přímočarý + + + Radial + Paprskovitý + + + Conical + Kuželovitý + + + Pad + Doplnit + + + Repeat + Opakovat + + + Reflect + Zrcadlit + + + + QtGradientView + + Gradient View + Pohled na přechod + + + New... + Nový... + + + Edit... + Upravit... + + + Rename + Přejmenovat + + + Remove + Odstranit + + + Grad + Přechod + + + Remove Gradient + Odstranit přechod + + + Are you sure you want to remove the selected gradient? + Opravdu chcete odstranit vybraný přechod? + + + + QtGradientViewDialog + + Select Gradient + Vybrat přechod + + + + QmlDesigner::Internal::SettingsPage + + Form + Formulář + + + Snapping + Zapadávání do mřížky + + + Item spacing + Odstup + + + Snap margin + Okraj + + + Qt Quick Designer + Qt Quick Designer + + + + StartExternalQmlDialog + + Start Simultaneous QML and C++ Debugging + Souběžné spuštění ladění QML a C++ + + + Debugging address: + Adresa pro ladění: + + + Debugging port: + Přípojka pro ladění: + + + 127.0.0.1 + 127.0.0.1 + + + Project: + Projekt: + + + <No project> + <Žádný projekt> + + + Viewer path: + Cesta k prohlížeči: + + + Viewer arguments: + Argumenty pro prohlížeč: + + + To switch languages while debugging, go to Debug->Language menu. + Pro přepnutí jazyků během ladění jděte do nabídky Ladění->Jazyk. + + + + MaemoConfigTestDialog + + Device Configuration Test + Zkouška nastavení zařízení + + + + MaemoPackageCreationWidget + + Check this if you build the package externally. It still needs to be at the location listed above +and the remote executable is assumed to be in the directory mentioned below. + Toto zaškrtněte v případě, že balíček sestavujete zevně. Stále musí být v umístění uvedeném v seznamu výše, +a předpokladem je, že vzdálený spustitelný soubor bude v adresáři zmiňovaném níže. + + + Skip Packaging Step + Přeskočit krok balení + + + Package contents: + Obsah balíčku: + + + Add File to Package + Přidat soubor do balíčku + + + Remove File from Package + Odstranit soubor z balíčku + + + Check this if you want the files below to be deployed directly. + Zaškrtněte toto, jestliže chcete, aby soubory níže byly nasazeny přímo. + + + Skip packaging step + Přeskočit krok balení + + + Version number: + Číslo verze: + + + Major: + Větší: + + + Minor: + Menší: + + + Patch: + Opravný program neboli záplata: + + + Files to deploy: + Soubory pro nasazení: + + + + MaemoSettingsWidget + + Maemo Device Configurations + Nastavení zařízení Maemo + + + Configuration: + Nastavení: + + + Name + Název + + + Device type: + Typ zařízení: + + + Remote device + Vzdálené zařízení + + + Maemo emulator + Napodobovatel jinak též emulátor Maemo + + + Authentication type: + Druh ověření pravosti: + + + Password + Heslo + + + Key + Klíč + + + Host name: + Název hostitelského počítače: + + + IP or host name of the device + IP nebo název hostitelského počítače zařízení + + + Ports: + Přípojky: + + + SSH: + SSH: + + + Gdb server: + Server Gdb: + + + Connection timeout: + Časové omezení pro spojení: + + + s + s + + + Username: + Uživatelské jméno: + + + Password: + Heslo: + + + Private key file: + Soubor se soukromým klíčem: + + + Add + Přidat + + + Remove + Odstranit + + + Test + Vyzkoušet + + + Generate SSH Key ... + Vytvořit klíč SSH... + + + Deploy Public Key ... + Poslat veřejný klíč... + + + + MaemoSshConfigDialog + + SSH Key Configuration + Nastavení klíče SSH + + + Options + Volby + + + Key size: + Velikost klíče: + + + Key algorithm: + Algoritmus klíče: + + + RSA + RSA + + + DSA + DSA + + + Key + Klíč + + + Generate SSH Key + Vytvořit klíč SSH + + + Save Public Key... + Uložit veřejný klíč... + + + Save Private Key... + Uložit soukromý klíč... + + + Close + Zavřít + + + + Qt4ProjectManager::Internal::S60CreatePackageStepWidget + + Form + Formulář + + + Self-signed certificate + Osobně podepsané osvědčení + + + Custom certificate: + Uživatelsky stanovené osvědčení: + + + Choose certificate file (.cer) + Zadejte soubor s osvědčením (.cer) + + + Key file: + Soubor s klíčem: + + + + Qt4ProjectManager::Internal::TargetSetupPage + + Setup targets for your project + Nastavte cíl pro svůj projekt + + + Qt Creator can set up the following targets: + Qt Creator může nastavit následující cíle: + + + Qt Version + Verze Qt + + + Status + Stav + + + Build Directory + Adresář pro sestavování + + + Import Existing Shadow Build... + Zavést stávající stínové sestavení... + + + Import + Is this an import of an existing build or a new one? + Zavést + + + New + Is this an import of an existing build or a new one? + Nový + + + Qt Creator can set up the following targets for project <b>%1</b>: + %1: Project name + Qt Creator může pro projekt nastavit následující cíle <b>%1</b>: + + + Choose a directory to scan for additional shadow builds + Vyberte adresář, který se má prohledat kvůli dodatečným stínovým sestavením + + + No builds found + Žádná sestavení nebyla nalezena + + + No builds for project file "%1" were found in the folder "%2". + %1: pro-file, %2: directory that was checked. + V adresáři "%2" se nepodařilo nalézt žádná sestavení projektu "%1". + + + <b>Error:</b> + Severity is Task::Error + <b>Chyba:</b> + + + <b>Warning:</b> + Severity is Task::Warning + <b>Varování:</b> + + + + Qt4ProjectManager::Internal::TestWizardPage + + WizardPage + WizardPage + WizardPage + + + Specify basic information about the test class for which you want to generate skeleton source code file. + Zadejte základní parametry zkušební třídy, pro kterou se má vytvořit zdrojový soubor. + + + Class name: + Název třídy: + + + Type: + Typ: + + + Test + Zkouška + + + Benchmark + Srovnávací zkouška + + + File: + Soubor: + + + Generate initialization and cleanup code + Vytvořit kód pro inicializaci a úklid + + + Test slot: + Zkušební místo: + + + Requires QApplication + Vyžaduje QApplication + + + Use a test data set + Použít zkušební soubor dat + + + Test Class Information + Parametry zkušební třídy + + + + VCSBase::CleanDialog + + Clean Repository + Uklidit skladiště + + + The directory %1 could not be deleted. + Adresář %1 se nepodařilo smazat. + + + The file %1 could not be deleted. + Soubor %1 se nepodařilo smazat. + + + There were errors when cleaning the repository %1: + Chyby při úklidu skladiště %1: + + + Delete... + Smazat... + + + Name + Název + + + Repository: %1 + Skladiště: %1 + + + %1 bytes, last modified %2 + %1 bytů, naposledy změněno %2 + + + Delete + Smazat + + + Do you want to delete %n files? + + Chcete smazat jeden soubor? + Chcete smazat %n soubory? + Chcete smazat %n souborů? + + + + Cleaning %1 + Uklízí se %1 + + + + CommonSettingsPage + + Wrap submit message at: + Zalomit popis předložení na: + + + characters + znacích + + + 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. + Spustitelný soubor, který je zavolán s popisem předložení v dočasném souboru jako první argument příkazového řádku. Při neúspěchu by měl vrátit zpět hodnotu rozdílnou od nuly (!= 0) a odpovídající zprávu o obvyklé chybě kvůli poukázání na selhání. + + + Submit message check script: + Skript k ověření popisu předložení: + + + A file listing user names and email addresses in a 4-column mailmap format: +name <email> alias <email> + Soubor, který obsahuje jména uživatelů a e-mailové adresy ve čtyřsloupcovém formátu (mailmap): +Jméno <E-mail> Přezdívka <E-mail> + + + User/alias configuration file: + Soubor s nastavením uživatele/přezdívky: + + + A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. + Soubor, který obsahuje řádky s názvy polí (například "Reviewed-By:"), který bude bude přidán pod okno editoru předložení. + + + User fields configuration file: + Soubor s nastavením polí uživatele: + + + + BorderImageSpecifics + + Image + Obrázek + + + Source + Zdroj + + + Source Size + Velikost zdroje + + + Left + Vlevo + + + Right + Vpravo + + + Top + Nahoře + + + Bottom + Dole + + + + emptyPane + + none or multiple items selected + nevybrána žádná nebo více položek + + + + ExpressionEditor + + Expression + Výraz + + + + Extended + + Effect + Efekt + + + Blur Radius: + Poloměr šmouhy: + + + Pixel Size: + Velikost pixelu: + + + x Offset: + Posun x: + + + y Offset: + Posun y: + + + + ExtendedFunctionButton + + Reset + Nastavit znovu + + + Set Expression + Nastavit výraz + + + + FontGroupBox + + Font + Písmo + + + Size + Velikost + + + Font Style + Druh písma + + + Style + Styl + + + + Geometry + + Geometry + Uspořádání + + + Position + Poloha + + + Size + Velikost + + + Lock aspect ratio + Zamknout poměr stran + + + + ImageSpecifics + + Image + Obrázek + + + Source + Zdroj + + + Fill Mode + Režim výplně + + + Aliasing + Vyhlazování + + + Smooth + Jemné + + + Source Size + Velikost zdroje + + + Painted Size + Namalovaná velikost + + + + Layout + + Layout + Rozvržení + + + Anchors + Kotvy + + + Target + Cíl + + + Margin + Okraj + + + + Modifiers + + Manipulation + Zacházení + + + Rotation + Otáčení + + + z + z + + + + RectangleColorGroupBox + + Colors + Barvy + + + Stops + Body zastavení + + + Gradient Stops + Body zastavení přechodů + + + Rectangle + Obdélník + + + Border + Rám + + + + RectangleSpecifics + + Rectangle + Obdélník + + + Border + Rám + + + Radius + Poloměr + + + + StandardTextColorGroupBox + + Color + Barva + + + Text + Text + + + Style + Styl + + + Selection + Výběr + + + Selected + Vybráno + + + + StandardTextGroupBox + + Text + Text + + + Wrap Mode + Režim zalamování + + + Alignment + Zarovnání + + + + + + + Aliasing + Vyhlazování + + + Smooth + Jemné + + + + Switches + + special properties + Zvláštní vlastnosti + + + layout and geometry + Rozvržení a uspořádání + + + Geometry + Uspořádání + + + advanced properties + Pokročilé vlastnosti + + + Advanced + Pokročilé + + + + TextEditSpecifics + + Text Edit + Upravit text + + + Format + Formát + + + + TextInputGroupBox + + Text Input + Zadávání textu + + + Input Mask + Zadávací maska + + + Echo Mode + Režim ozvěny + + + Pass. Char + Znak hesla + + + Password Character + Znak hesla + + + Flags + Příznaky + + + Read Only + Pouze pro čtení + + + Cursor Visible + Ukazovátko je viditelné + + + Focus On Press + Soustředění se na stisknutí + + + Auto Scroll + Automaticky projíždět + + + + Transformation + + Transformation + Proměna + + + Origin + Původ + + + Top Left + Nahoře vlevo + + + Top + Nahoře + + + Top Right + Nahoře vpravo + + + Left + Vlevo + + + Center + Na střed + + + Right + Vpravo + + + Bottom Left + Dole vlevo + + + Bottom + Dole + + + Bottom Right + Dole vpravo + + + Scale + Změna velikosti + + + Rotation + Otáčení + + + + Type + + Type + Typ + + + Id + ID + + + + Visibility + + Visibility + Viditelnost + + + Is visible + Je viditelný + + + Clip + Oříznout + + + Opacity + Neprůhlednost + + + + WebViewSpecifics + + WebView + WebView + + + Preferred Width + Upřednostňovaná šířka + + + Page Height + Výška stránky + + + + ExtensionSystem::PluginDetailsView + + None + Žádná + + + + ExtensionSystem::PluginView + + Load on Startup + Nahrát při spuštění + + + Utilities + Pomůcky + + + + QmlJS::Check + + unknown value for enum + Neznámá hodnota pro 'enum' + + + value might be 'undefined' + Hodnota může být 'undefined' + + + enum value is not a string or number + Hodnota 'enum' není řetězcem ani číslem + + + numerical value expected + Očekávána číselná hodnota + + + boolean value expected + Očekávána booleánská hodnota + + + string value expected + Očekáván řetězec + + + not a valid color + Není platnou barvou + + + expected anchor line + Očekáván kotevní řádek + + + unknown type + Neznámý typ + + + expected id + Očekáváno ID + + + using string literals for ids is discouraged + Od používání řetězců znaků tvořených písmeny jako ID se odrazuje + + + ids must be lower case + ID musí začínat malým písmenem + + + '%1' is not a valid property name + ' %1' není jednoznačný název pro vlastnost + + + '%1' does not have members + ' %1' nemá členy + + + '%1' is not a member of '%2' + ' %1' nepatří k '%2' + + + + QmlJS::Interpreter::QmlXmlReader + + The file is not module file. + Soubor není souborem modulu. + + + Unexpected element <%1> in <%2> + Neočekávaný prvek <%1> v <%2> + + + invalid value '%1' for attribute %2 in <%3> + Neplatná hodnota '%1' pro vlastnost %2 v <%3> + + + <%1> has no valid %2 attribute + <%1> nemá žádnou platnou vlastnost %2 + + + %1: %2 + %1: %2 + + + + QmlJS::Link + + could not find file or directory + Soubor nebo adresář se nepodařilo najít + + + expected two numbers separated by a dot + Byla očekávána dvě čísla oddělená čárkou + + + package import requires a version number + Zavedení balíčku vyžaduje číslo verze + + + package not found + Balíček nenalezen + + + + Utils::FancyMainWindow + + Locked + Ukotveno + + + Reset to Default Layout + Nastavit znovu výchozí rozvržení + + + + Utils::FileWizardDialog + + Location + Umístění + + + + Utils::FilterLineEdit + + Filter + Filtr + + + Clear text + Smazat text + + + + Utils::fileDeletedPrompt + + File has been removed + Soubor byl odstraněn + + + The file %1 has been removed outside Qt Creator. Do you want to save it under a different name, or close the editor? + Soubor %1 byl odstraněn mimo Qt Creator. Chcete jej uložit pod jiným názvem, nebo zavřít editor? + + + Close + Zavřít + + + Save as... + Uložit jako... + + + Save + Uložit + + + + 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>Proměnná</th><th>Roztáhne se k</th></tr><tr><td>%d</td><td>adresáři současného souboru</td></tr><tr><td>%f</td><td>souborový název (s úplnou cestou)</td></tr><tr><td>%n</td><td>souborový název (bez cesty)</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 + Desetinná hodnota jsoucí bez znaménka (malý endian): %1 +Desetinná hodnota jsoucí bez znaménka (velký endian): %2 +Desetinná hodnota se znaménkem (malý endian): %3 +Desetinná hodnota se znaménkem (velký endian): %4 + + + Copying Failed + Kopírování se nezdařilo + + + You cannot copy more than 4 MB of binary data. + Nemůžete kopírovat více jak 4 MB binárních dat. + + + Copy Selection as ASCII Characters + Kopírovat výběr jako znaky ASCII + + + Copy Selection as Hex Values + Kopírovat výběr jako šestnáctkové hodnoty + + + Jump to Address in This Window + Jít na adresu v tomto okně + + + Jump to Address in New Window + Jít na adresu v novém okně + + + Jump to Address 0x%1 in This Window + Jít na adresu 0x%1 v tomto okně + + + Jump to Address 0x%1 in New Window + Jít na adresu 0x%1 v novém okně + + + + BINEditor::Internal::ImageViewerFactory + + Image Viewer + Prohlížeč obrázků + + + + CMakeProjectManager::Internal::CMakeRunConfiguration + + Clean Environment + Smazat prostředí + + + System Environment + Prostředí systému + + + Build Environment + Prostředí pro sestavování + + + (disabled) + (zakázáno) + + + + CMakeProjectManager::Internal::CMakeTarget + + Desktop + CMake Default target display name + Stolní počítač + + + + CMakeProjectManager::Internal::MakeStep + + Make + CMakeProjectManager::MakeStep display name. + Make + + + + CMakeProjectManager::Internal::MakeStepFactory + + Make + Display name for CMakeProjectManager::MakeStep id. + Make + + + + Core::CommandMappings + + Command + Příkaz + + + Label + Štítek + + + + Core + + Qt + Qt + + + Environment + Prostředí + + + + Core::DesignMode + + Design + Návrh + + + + Core::Internal::SystemEditor + + Could not open url %1. + Nepodařilo se otevřít adresu (URL) %1. + + + + Core::EditorToolBar + + Copy full path to clipboard + Kopírovat celou cestu do schránky + + + Copy Full Path to Clipboard + Kopírovat celou cestu do schránky + + + Make writable + Udělat zapisovatelným + + + File is writable + Soubor je zapisovatelný + + + + Core::HelpManager + + Unfiltered + Nezpracovaný + + + + GenericSshConnection + + Could not connect to host. + Nepodařilo se spojit s hostitelským počítačem. + + + Error in cryptography backend: %1 + Chyba v šifrovacím jádře: %1 + + + + Core::InteractiveSshConnection + + Error sending input + Chyba při posílání vstupních dat + + + + Core::SftpConnection + + Error setting up SFTP subsystem + Chyba při nastavování podsystému SFTP + + + Could not open file '%1' + Nepodařilo se otevřít soubor '%1' + + + Could not uplodad file '%1' + Nepodařilo se nahrát soubor '%1' + + + Could not copy remote file '%1' to local file '%2' + Vzdálený soubor '%1' se nepodařilo zkopírovat (přenést) do místního souboru '%2' + + + Could not create remote directory + Nepodařilo se vytvořit vzdálený adresář + + + Could not remove remote directory + Nepodařilo se odstranit vzdálený adresář + + + Could not get remote directory contents + Nepodařilo se určit obsah vzdáleného adresáře + + + Could not remove remote file + Nepodařilo se odstranit vzdálený soubor + + + Could not change remote working directory + Nepodařilo se změnit vzdálený pracovní adresář + + + + SshKeyGenerator + + Error creating temporary files. + Nepodařilo se vytvořit žádné dočasné soubory. + + + Error generating keys: %1 + Nepodařilo se vytvořit žádné klíče: %1 + + + Error reading temporary files. + Dočasné soubory se nepodařilo přečíst. + + + + CodePaster + + Code Pasting + Vkládání kódu + + + + CodePaster::FileShareProtocol + + Cannot open %1: %2 + Nelze otevřít soubor '%1': %2 + + + %1 does not appear to be a paster file. + Soubor %1 není souborem vkládání. + + + Error in %1 at %2: %3 + Chyba v %1 u %2: %3 + + + Please configure a path. + Zadejte, prosím, cestu. + + + Unable to open a file for writing in %1: %2 + V adresáři %1 se pro zápis nepodařilo otevřít žádný soubor: %2 + + + Pasted: %1 + Vloženo: %1 + + + + CodePaster::FileShareProtocolSettingsPage + + Fileshare + Sdílení souboru + + + + CodePaster::PasteBinDotComSettings + + Pastebin.com + Pastebin.com + + + + CodePaster::PasteView + + <Comment> + <Poznámka> + + + Paste + Vložit + + + + CodePaster::Protocol + + %1 - Configuration Error + %1 - Chyba v nastavení + + + Settings... + Nastavení... + + + + CppEditor + + C++ + C++ + + + + CppTools::QuickFix + + Rewrite Using %1 + Přepsat za použití %1 + + + Swap Operands + Vyměnit operandy + + + Rewrite Condition Using || + Přepsat podmínku za použití operátoru || + + + Split Declaration + Rozdělit prohlášení + + + Add Curly Braces + Přidat složené závorky + + + Move Declaration out of Condition + Odstranit prohlášení z podmínky + + + Split if Statement + Rozdělit příkaz if + + + Enclose in QLatin1String(...) + Uzavšít do QLatin1String(...) + + + Convert to Objective-C String Literal + Převést na řetězec znaků tvořený písmeny Objective-C + + + Use Fast String Concatenation with % + Použít účinné zřetězení řetězce za použití operátoru % + + + + VCS + + CVS Commit Editor + Editor odeslání pro CVS + + + CVS Command Log Editor + Editor zápisů příkazů pro CVS + + + CVS File Log Editor + Editor zápisů souborů pro CVS + + + CVS Annotation Editor + Editor poznámek pro CVS + + + CVS Diff Editor + Editor rozdílů pro CVS + + + Git Command Log Editor + Editor zápisů příkazů pro Git + + + Git File Log Editor + Editor zápisů souborů pro Git + + + Git Annotation Editor + Editor poznámek pro Git + + + Git Diff Editor + Editor rozdílů pro Git + + + Git Submit Editor + Editor předložení pro Git + + + Mercurial Command Log Editor + Editor zápisů příkazů pro Mercurial + + + Mercurial File Log Editor + Editor zápisů souborů pro Mercurial + + + Mercurial Annotation Editor + Editor poznámek pro Mercurial + + + Mercurial Diff Editor + Editor rozdílů pro Mercurial + + + Mercurial Commit Log Editor + Editor zápisu odeslání pro Mercurial + + + Perforce.SubmitEditor + Editor předložení pro Perforce + + + Perforce CommandLog Editor + Editor zápisů příkazů pro Perforce + + + Perforce Log Editor + Editor zápisů pro Perforce + + + Perforce Diff Editor + Editor rozdílů pro Perforce + + + Perforce Annotation Editor + Editor poznámek pro Perforce + + + Subversion Editor + Editor Subversion + + + Subversion Commit Editor + Editor odeslání pro Subversion + + + Subversion Command Log Editor + Editor zápisů příkazů pro Subversion + + + Subversion File Log Editor + Editor zápisů souborů pro Subversion + + + Subversion Annotation Editor + Editor poznámek pro Subversion + + + Subversion Diff Editor + Editor rozdílů pro Subversion + + + + CVS::Internal::CVSEditor + + Annotate revision "%1" + Opatřit vysvětlivkami revizi "%1" + + + + Debugger::Internal::CdbOptionsPage + + Cdb + Cdb + + + + CdbSymbolGroupContext + + <Unknown Type> + <Neznámý typ> + + + <Unknown Value> + <Neznámá hodnota> + + + <Unknown> + <Neznámý> + + + + Debugger::Cdb + + Unable to load the debugger engine library '%1': %2 + Nepodařilo se nahrát knihovnu pro stroj ladicího programu '%1': %2 + + + Unable to resolve '%1' in the debugger engine library '%2' + '%1' se v knihovně pro stroj ladicího programu nepodařilo nalézt '%2' + + + + CdbCore::CoreEngine + + Unable to set the image path to %1: %2 + Cestu k obázku nelze nastavit na %1: %2 + + + Unable to create a process '%1': %2 + Nepodařilo se spustit žádný proces '%1': %2 + + + Attaching to a process failed for process id %1: %2 + Ladicímu programu se nepodařilo připojit k procesu s ID %1: %2 + + + + Debugger::DebuggerUISwitcher + + &Languages + &Jazyky + + + Alt+L + Alt+L + + + Language + Jazyk + + + + GdbChooserWidget + + Unable to run '%1': %2 + '%1' nelze spustit: %2 + + + + Debugger::Internal::GdbChooserWidget + + Unable to run '%1': %2 + '%1' nelze spustit: %2 + + + Binary + Spustitelný soubor + + + Toolchains + Řetězce nástrojů + + + Duplicate binary + Spustitelný soubor již existuje + + + The binary '%1' already exists. + Spustitelný soubor '%1' již existuje. + + + + Debugger::Internal::ToolChainSelectorWidget + + Desktop/General + Desktop/Obecné + + + Symbian + Symbian + + + Maemo + Maemo + + + + Debugger::Internal::BinaryToolChainDialog + + Select binary and toolchains + Vyberte spustitelný soubor a řetězec nástrojů + + + Gdb binary + Spustitelný soubor pro Gdb + + + Path: + Cesta: + + + + Debugger::Internal::PdbEngine + + Running requested... + Požadováno pokračování... + + + Unable to start pdb '%1': %2 + Nepodařilo se spustit ladicí program pdb '%1': %2 + + + Adapter start failed + Spuštění adaptéru se nepodařilo + + + '%1' contains no identifier + '%1' neobsahuje žádný identifikátor + + + String literal %1 + Řetězec znaků tvořený písmeny %1 + + + Cowardly refusing to evaluate expression '%1' with potential side effects + Nevyhodnocovat výraz '%1' s možnými postranními účinky + + + Pdb I/O Error + Vstupní/Výstupní chyba Pdb + + + The Pdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. + Spuštění procesu Pdb se nezdařilo. Buď chybí spustitelný soubor '%1', nebo nemáte dostatečná oprávnění pro spuštění programu. + + + The Pdb process crashed some time after starting successfully. + +Proces Pdb po určité době od úspěšného spuštění spadl. + + + The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. + Došlo k překročení času u poslední funkce waitFor...(). Stav QProcess je nezměněn, a tak se můžete pokusit zavolat waitFor...() ještě jednou. + + + 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. + Při pokusu o zápis do procesu Pdb se vyskytla chyba. Pravděpodobně proces neběží, nebo zavřel svůj vstupní kanál. + + + An error occurred when attempting to read from the Pdb process. For example, the process may not be running. + Při pokusu o čtení z procesu Pdb se vyskytla chyba. Pravděpodobně proces neběží. + + + An unknown error in the Pdb process occurred. + V Pdb procesu se vyskytla neznámá chyba. + + + + Debugger::Internal::SnapshotHandler + + Function: + Funkce: + + + File: + Soubor: + + + Date: + Datum: + + + ... + ... + + + <More> + <Více> + + + Function + Funkce + + + Date + Datum + + + Location + Umístění + + + + Debugger::Internal::SnapshotWindow + + Snapshots + Snímky + + + Adjust Column Widths to Contents + Vždy přizpůsobit šířku sloupců obsahu + + + Always Adjust Column Widths to Contents + Vždy přizpůsobit šířku sloupců obsahu + + + + Designer::Internal::FormEditorFactory + + This file can only be edited in <b>Design</b> mode. + Tento soubor lze upravovat pouze v <b>Režimu návrhu</b>. + + + Switch mode + Přepnout režim + + + + Designer::Internal::FormFileWizardDialog + + Location + Umístění + + + + FakeVim::Internal::FakeVimHandler::Private + + Not an editor command: %1 + Není příkazem editoru: %1 + + + + FakeVim::Internal::FakeVimExCommandsPage + + Ex Command Mapping + Přiřazení příkazů + + + FakeVim + FakeVim + + + Ex Trigger Expression + Příkaz + + + Regular expression: + Regulární výraz: + + + Ex Command + Příkaz + + + + Find::FindPlugin + + &Find/Replace + &Hledat/Nahradit + + + Advanced Find + Rozšířené hledání + + + Open Advanced Find... + Otevřít rozšířené hledání... + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + GenericProjectManager::Internal::GenericMakeStep + + Make + Make + + + + GenericProjectManager::Internal::Manager + + Failed opening project '%1': Project already open + Projekt '%1' se nepodařil otevřít, neboť projekt je již otevřen + + + + Git::Internal::RemoteBranchModel + + (no branch) + <žádná větev> + + + + GitClient + + Unable to determine the repository for %1. + Skladiště pro %1 se nepodařilo určit. + + + + Git::Internal::GitCommand + + Error: Git timed out after %1s. + Chyba: Překročení času u Gitu po %1s. + + + + Git::Internal::GitEditor + + Blame %1 + Vina pro %1 + + + + Help + + Help + Nápověda + + + + Help::Internal::HelpViewer + + Open Link + Otevřít adresu odkazu + + + Open Link as New Page + Otevřít adresu odkazu jako novou stránku + + + Copy Link + Kopírovat odkaz + + + Copy + Kopírovat + + + Reload + Nahrát znovu + + + + Help::Internal::OpenPagesModel + + (Untitled) + (Bez názvu) + + + + Help::Internal::OpenPagesWidget + + Close %1 + Zavřít %1 + + + Close All Except %1 + Zavřít vše mimo %1 + + + + Mercurial::Internal::CloneWizard + + Clones a Mercurial repository and tries to load the contained project. + Vytvoří klon skladiště Mercurial a pokusí se nahrát obsažený projekt. + + + Mercurial Clone + Klon Mercurialu + + + + Mercurial::Internal::CloneWizardPage + + Location + Umístění + + + Specify repository URL, checkout directory and path. + Zadejte adresu skladiště (URL), adresář pro přezkoušení (checkout; dostat kopii) a cestu. + + + Clone URL: + Adresa (URL) klonu: + + + + Mercurial::Internal::CommitEditor + + Commit Editor + Editor odeslání + + + + Mercurial::Internal::MercurialClient + + Unable to find parent revisions of %1 in %2: %3 + Nadřazenou revizi %1 ve skladišti %2 se nepodařilo určit: %3 + + + Cannot parse output: %1 + Nepodařilo se vyhodnotit výstup: %1 + + + Hg Annotate %1 + Opatřit vysvětlivkami (Hg annotate) "%1" + + + Hg diff %1 + Hg diff %1 + + + Hg log %1 + Hg log %1 + + + Hg incoming %1 + Hg přícházející %1 + + + Hg outgoing %1 + Hg odcházející %1 + + + Working... + Pracuje... + + + + Mercurial::Internal::MercurialControl + + Mercurial + Mercurial + + + + Mercurial::Internal::MercurialEditor + + Annotate %1 + Opatřit vysvětlivkami %1 + + + + Mercurial::Internal::MercurialJobRunner + + Executing: %1 %2 + + Provádí se: %1 %2 + + + + Unable to start mercurial process '%1': %2 + Nepodařilo se spustit mercurialový proces '%1': %2 + + + Timed out after %1s waiting for mercurial process to finish. + Překročení času %1s při čekání na ukončení Procesu Mercurialu. + + + + Mercurial::Internal::MercurialPlugin + + Mercurial + Mercurial + + + Annotate Current File + Opatřit nynější soubor vysvětlivkami + + + Annotate "%1" + Opatřit vysvětlivkami "%1" + + + Diff Current File + Rozdíly (diff) nynějšího souboru + + + Diff "%1" + Rozdíly (diff) pro "%1" + + + Alt+H,Alt+D + Alt+H,Alt+D + + + Log Current File + Zápis pro nynější soubor + + + Log "%1" + Zápis pro "%1" + + + Alt+H,Alt+L + Alt+H,Alt+L + + + Status Current File + Stav nynějšího souboru + + + Status "%1" + Stav "%1" + + + Alt+H,Alt+S + Alt+H,Alt+S + + + Add + Přidat + + + Add "%1" + Přidat "%1" + + + Delete... + Smazat... + + + Delete "%1"... + Smazat "%1"... + + + Revert Current File... + Vrátit zpět změny v nynějším souboru... + + + Revert "%1"... + Vrátit zpět změny v "%1"... + + + Diff + Rozdíly (diff) + + + Log + Zápis + + + Revert... + Vrátit... + + + Status + Stav + + + Pull... + Vytáhnout (pull)... + + + Push... + Zatlačit (push)... + + + Update... + Obnovit... + + + Import... + Zavést... + + + Incoming... + Přícházející... + + + Outgoing... + Odcházející... + + + Commit... + Odeslat... + + + Alt+H,Alt+C + Alt+H,Alt+C + + + Create Repository... + Vytvořit skladiště... + + + Pull Source + Vytáhnout zdroj + + + Push Destination + Zatlačit cíl + + + Update + Obnovit + + + Incoming Source + Přícházející zdroj + + + Commit + Odeslat + + + Diff Selected Files + Rozdíly (diff) pro vybrané soubory + + + &Undo + &Zpět + + + &Redo + &Znovu + + + There are no changes to commit. + Nejsou zde žádné změny pro odeslání. + + + Unable to generate a temporary file for the commit editor. + Nepodařilo se vytvořit žádný dočasný soubor pro editor pro odeslání. + + + Unable to create an editor for the commit. + Nepodařilo se vytvořit žádný editor pro odeslání. + + + Unable to create a commit editor. + Nepodařilo se vytvořit žádný editor pro odeslání. + + + Commit changes for "%1". + Odeslat změny pro "%1". + + + Close commit editor + Zavřít editor pro odeslání + + + Do you want to commit the changes? + Chcete odeslat změny? + + + Message check failed. Do you want to proceed? + Ověření popisu se nezdařilo. Přesto chcete soubory odeslat? + + + + Mercurial::Internal::OptionsPageWidget + + Mercurial Command + Příkaz 'Mercurial' + + + + Perforce::Internal::PerforceChecker + + No executable specified + Nebyl zadán žádný spustitelný soubor + + + "%1" timed out after %2ms. + Překročení času při provedení "%1"(%2ms). + + + Unable to launch "%1": %2 + "%1" se nepodařilo spustit: %2 + + + "%1" crashed. + "%1" spadl. + + + "%1" terminated with exit code %2: %3 + Proces '%1" byl ukončen (vrácená hodnota %2): %3 + + + The client does not seem to contain any mapped files. + 'Perforce' klient zřejmě neobsahuje žádná přiřazení souborů. + + + Unable to determine the client root. + Unable to determine root of the p4 client installation + Kořenový adresář instalace Perforce se nepodařilo určit. + + + The repository "%1" does not exist. + Skladiště "%1" neexistuje. + + + + Perforce::Internal::PerforceEditor + + Annotate change list "%1" + Opatřit vysvětlivkami seznam se změnami "%1" + + + + ProjectExplorer::BaseProjectWizardDialog + + Location + Umístění + + + untitled + File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks. + Bez názvu + + + + ProjectExplorer::BuildConfiguration + + System Environment + Prostředí systému + + + Clean Environment + Smazat prostředí + + + + ProjectExplorer::BuildEnvironmentWidget + + Clear system environment + Vyprázdnit prostředí systému + + + Build Environment + Prostředí pro sestavování + + + + BuildSettingsPanelFactory + + Build Settings + Nastavení sestavování + + + + BuildSettingsPanel + + Build Settings + Nastavení sestavování + + + + ProjectExplorer::CustomWizard + + Details + Default short title for custom wizard page to be shown in the progress pane of the wizard. + Podrobnosti + + + Creates a C++ plugin to extend the funtionality of the QML runtime. + Vytvoří přídavný modul C++ pro rozšíření funkčnosti doby běhu QML. + + + QML Runtime Plug-in + Přídavný modul doby běhu QML + + + QML Runtime Plug-in Parameters + Parametry přídavného modulu doby běhu QML + + + Example Object Class-name: + Název třídy příkladového předmětu: + + + + ProjectExplorer::CustomProjectWizard + + The project %1 could not be opened. + Projekt %1 se nepodařilo otevřít. + + + + ProjectExplorer::Internal::CustomWizardPage + + Path: + Cesta: + + + + ProjectExplorer::Internal::DependenciesModel + + <No other projects in this session> + <Žádné další projekty v tomto sezení> + + + + DependenciesPanel + + Dependencies + Závislosti + + + + DependenciesPanelFactory + + Dependencies + Závislosti + + + + EditorSettingsPanelFactory + + Editor Settings + Nastavení editoru + + + + EditorSettingsPanel + + Editor Settings + Nastavení editoru + + + + ProjectExplorer::Internal::FolderNavigationWidget + + Open + Otevřít + + + Open parent folder + Otevřít rodičovskou složku + + + Open "%1" + Otevřít "%1" + + + Open with + Otevřít s + + + Choose folder... + Vybrat složku... + + + Choose folder + Vybrat složku + + + Show in Explorer... + Ukázat v průzkumníku... + + + Show in Finder... + Ukázat v hledáčku... + + + Show containing folder... + Ukázat obsaženou složku... + + + Open Command Prompt here... + Otevřít výzvu k příkazu zde... + + + Open Terminal here... + Otevřít terminál zde... + + + Launching a file browser failed + Spuštění prohlížeče souborů se nezdařilo + + + Unable to start the file manager: + +%1 + + + Prohlížeč souborů se nepodařilo spustit: + +%1 + + + + + '%1' returned the following error: + +%2 + Chyba při provádění '%1': + +%2 + + + Settings... + Nastavení... + + + Launching Windows Explorer failed + Spuštění Windows Exploreru se nezdařilo + + + Could not find explorer.exe in path to launch Windows Explorer. + Windows Explorer se nepodařilo spustit, protože se v cestě nepodařilo nalézt soubor explorer.exe. + + + + ProjectExplorer::Internal::MiniTargetWidget + + Select active build configuration + Vybrat nastavení sestavení + + + Select active run configuration + Vybrat nastavení spuštění + + + Build: + Sestavení: + + + Run: + Spuštění: + + + + ProjectExplorer::Internal::MiniProjectTargetSelector + + Project + Projekt + + + Select active project + Vybrat projekt + + + Build: + Sestavení: + + + Run: + Spuštění: + + + <html><nobr><b>Project:</b> %1<br/>%2%3<b>Run:</b> %4%5</html> + <html><nobr><b>Projekt:</b> %1<br/>%2%3<b>Spuštění:</b> %4%5</html> + + + <b>Target:</b> %1<br/> + <b>Cíl:</b> %1<br/> + + + <b>Build:</b> %2<br/> + <b>Sestavení:</b> %2<br/> + + + <br/>%1 + <br/>%1 + + + + ProjectExplorer::ProjectConfiguration + + Clone of %1 + Klon %1 + + + + ProjectExplorer + + Projects + Projekty + + + Other Project + Jiný projekt + + + + TargetSettingsPanelFactory + + Targets + Cíle + + + + RunSettingsPanelFactory + + Run Settings + Nastavení spuštění + + + + RunSettingsPanel + + Run Settings + Nastavení spuštění + + + + ProjectExplorer::Internal::SessionNameInputDialog + + Enter the name of the session: + Zadejte název sezení: + + + + ProjectExplorer::Internal::TargetSelector + + Run + Spuštění + + + Build + Sestavení + + + + ProjectExplorer::Internal::TargetSettingsPanelWidget + + No target defined. + Není stanoven cíl. + + + Qt Creator + Qt Creator + + + Do you really want to remove the +"%1" target? + Opravdu chcete odstranit cíl +"%1"? + + + + ProjectExplorer::TaskWindow + + Build Issues + Potíže při sestavování + + + &Copy + &Kopírovat + + + &Annotate + &Opatřit vysvětlivkami + + + Show Warnings + Ukázat varování + + + Filter by categories + Filtrovat podle skupin + + + + GenericProjectManager::GenericTarget + + Desktop + Generic desktop target display name + Desktop + + + + Qt4ProjectManager::Internal::Qt4Target + + Desktop + Qt4 Desktop target display name + Desktop + + + Symbian Emulator + Qt4 Symbian Emulator target display name + Napodobovatel jinak též emulátor Symbianu + + + Symbian Device + Qt4 Symbian Device target display name + Zařízení Symbian + + + Maemo Emulator + Qt4 Maemo Emulator target display name + Napodobovatel jinak též emulátor Maemo + + + Maemo Device + Qt4 Maemo Device target display name + Zařízení Maemo + + + Maemo + Qt4 Maemo target display name + Maemo + + + Qt Simulator + Qt4 Simulator target display name + Qt Simulator + + + <b>Device:</b> Not connected + <b>Zařízení:</b> Nepřipojeno + + + <b>Device:</b> %1 + <b>Zařízení:</b> %1 + + + <b>Device:</b> %1, %2 + <b>Zařízení:</b> %1, %2 + + + + QmlProjectManager::QmlTarget + + QML Viewer + QML Viewer target display name + Prohlížeč QML + + + + QmlDesigner::FormEditorWidget + + Snap to guides (E) + Umístit na vodítka (E) + + + Show bounding rectangles (A) + Ukázat rámce (A) + + + Only select items with content (S) + Vybrat pouze prvky s obsahem (S) + + + + QmlDesigner::ComponentView + + whole document + celý dokument + + + + QmlDesigner::DesignDocumentController + + -New Form- + -Nový formulář- + + + Cannot save to file "%1": permission denied. + Soubor "%1" se nepodařilo kvůli nepostačujícím oprávněním zapsat. + + + Parent folder "%1" for file "%2" does not exist. + Nadřazený adresář "%1" souboru %2" neexistuje. + + + Cannot write file: "%1". + Soubor "%1" nelze zapsat. + + + + QmlDesigner::XUIFileDialog + + Open file + Otevřít soubor + + + Save file + Uložit soubor + + + Declarative UI files (*.qml) + Prohlašující soubory UI (*.qml) + + + All files (*) + Všechny soubory (*) + + + + QmlDesigner::ItemLibrary + + Library + Title of library view + Knihovna + + + Items + Title of library items view + Položky + + + Resources + Title of library resources view + Zdroje + + + <Filter> + Library search input hint text + <Filtr> + + + + QmlDesigner::NavigatorTreeModel + + Invalid Id + Neplatné ID + + + + QmlDesigner::NavigatorWidget + + Navigator + Title of navigator view + Navaděč + + + + QmlDesigner::PluginManager + + About plugins + O přídavných modulech + + + + WidgetPluginManager + + Failed to create instance. + Vytvoření instance se nezdařilo. + + + Not a QmlDesigner plugin. + Není přídavný modul QmlDesigner. + + + Failed to create instance of file '%1': %2 + Vytvoření instance souboru '%1' se nezdařilo: %2 + + + Failed to create instance of file '%1'. + Vytvoření instance souboru '%1' se nezdařilo. + + + File '%1' is not a QmlDesigner plugin. + Soubor '%1' není přídavný modul QmlDesigner. + + + + QmlDesigner::AllPropertiesBox + + Properties + Title of properties view. + Vlastnosti + + + + FileWidget + + Open File + Otevřít soubor + + + + QmlDesigner::PropertyEditor + + Invalid Id + Neplatné ID + + + + qdesigner_internal::QtGradientStopsController + + H + BO + + + S + S + + + V + H + + + Hue + Barevný odstín + + + Sat + Sytost + + + Val + Hodnota + + + Saturation + Sytost + + + Value + Hodnota + + + R + R + + + G + G + + + B + B + + + Red + Červená + + + Green + Zelená + + + Blue + Modrá + + + + QtGradientStopsWidget + + New Stop + Nový bod zastavení + + + Delete + Smazat + + + Flip All + Obrátit vše + + + Select All + Vybrat vše + + + Zoom In + Přiblížit + + + Zoom Out + Oddálit + + + Reset Zoom + Nastavit znovu zvětšení + + + + QmlDesigner::Internal::StatesEditorModel + + base state + Implicit default state + Základní stav + + + Invalid state name + Neplatný název stavu + + + The empty string as a name is reserved for the base state. + Prázdný řetězec znaků je vyhrazen jako název základního stavu. + + + Name already used in another state + Název je již používán jiným stavem + + + + QmlDesigner::Internal::StatesEditorWidgetPrivate + + base state + Základní stav + + + State%1 + Default name for newly created states + Stav %1 + + + + QmlDesigner::StatesEditorWidget + + States + Title of Editor widget + Stavy + + + + QmlDesigner::InvalidArgumentException + + Failed to create item of type %1 + Nepodařilo se vytvořit prvek typu %1 + + + + InvalidIdException + + Ids have to be unique: + ID musí být jednoznačná: + + + Invalid Id: + Neplatné ID: + + + +Only alphanumeric characters and underscore allowed. +Ids must begin with a lowercase letter. + +Jsou povoleny pouze alfanumerické znaky a podtržítka. +ID musí začínat malým písmenem. + + + Only alphanumeric characters and underscore allowed. +Ids must begin with a lowercase letter. + +Jsou povoleny pouze alfanumerické znaky a podtržítka. +ID musí začínat malým písmenem. + + + Ids have to be unique. + ID musí být jednoznačná. + + + Invalid Id: %1 +%2 + Neplatné ID: %1 +%2 + + + + QmlDesigner::Internal::SubComponentManagerPrivate + + QML Components + Součástky QML + + + + QmlDesigner::Internal::ModelPrivate + + invalid type + Neplatný typ + + + + QmlDesigner::QmlModelView + + Invalid Id + Neplatné ID + + + + QmlDesigner::RewriterView + + Error parsing + Chyba při zpracování + + + Internal error + Vnitřní chyba + + + "%1" + "%1" + + + line %1 + Řádek %1 + + + column %1 + Sloupec %1 + + + + QmlDesigner::Internal::DocumentWarningWidget + + <a href="goToError">Go to error</a> + <a href="goToError">Jít na chybu</a> + + + %3 (%1:%2) + %3 (%1:%2) + + + Internal error (%1) + Vnitřní chyba (%1) + + + + QmlDesigner::Internal::DesignModeWidget + + &Undo + &Zpět + + + &Redo + &Znovu + + + Delete + Smazat + + + Delete "%1" + Smazat "%1" + + + Cu&t + Vyj&mout + + + Cut "%1" + Vyjmout "%1" + + + &Copy + &Kopírovat + + + Copy "%1" + Kopírovat "%1" + + + &Paste + &Vložit + + + Paste "%1" + Vložit "%1" + + + Select &All + Vybrat &vše + + + Select All "%1" + Vybrat vše "%1" + + + Toggle Full Screen + Přepnout na celou obrazovku + + + &Restore Default View + &Obnovit výchozí pohled + + + Toggle &Left Sidebar + Přepnout &levý postranní panel + + + Toggle &Right Sidebar + Přepnout &pravý postranní panel + + + Projects + Projekty + + + File System + Souborový systém + + + Open Documents + Otevřít dokumenty + + + + QmlDesigner::Internal::BauhausPlugin + + Switch Text/Design + Přepnout Text/Návrh + + + Save %1 As... + Uložit '%1' jako... + + + &Save %1 + &Uložit %1 + + + Revert %1 to Saved + Vrátit %1 k uloženému + + + Close %1 + Zavřít %1 + + + Close All Except %1 + Zavřít vše mimo %1 + + + Close Others + Zavřít jiné + + + + Qt Quick + + Qt Quick + Qt Quick + + + + Qml::Internal::QLineGraph + + Frame rate + Počet snímků + + + + Qml::Internal::GraphWindow + + Total time elapsed (ms) + Celkový uplynulý čas (ms) + + + + Qml::Internal::CanvasFrameRate + + Resolution: + Rozlišení: + + + Clear + Smazat + + + New Graph + Nový nákres + + + Enabled + Povoleno + + + + Qml::Internal::ExpressionQueryWidget + + <Type expression to evaluate> + <Zadejte výraz pro vyhodnocení> + + + Write and evaluate QtScript expressions. + Zapsat a vyhodnotit výrazy QtScriptu. + + + Clear Output + Smazat výstup + + + Script Console + + Skriptovací konzole + + + + Expression queries + Výrazy pro vyhledávání + + + Expression queries (using context for %1) + Selected object + Výrazy pro vyhledávání (za použití souvislosti pro %1) + + + <%n items> + + <Jeden prvek> + <%n prvky> + <%n prvky> + + + + + Qml::Internal::ObjectPropertiesView + + Name + Název + + + Value + Hodnota + + + Type + Typ + + + &Watch expression + &Sledovat výraz + + + &Remove watch + &Odstranit sledovaný výraz + + + Show &unwatchable properties + Ukázat vlastnosti, pro které není možné žá&dné sledování + + + &Group by item type + &Seskupit podle typu prvku + + + <%n items> + + <Jeden prvek> + <%n prvky> + <%n prvky> + + + + Watch expression '%1' + Sledovat výraz '%1' + + + Hide unwatchable properties + Skrýt vlastnosti, pro které není možné žádné sledování + + + Show unwatchable properties + Ukázat vlastnosti, pro které není možné žádné sledování + + + + Qml::Internal::ObjectTree + + Add watch expression... + Přidat sledovaný výraz... + + + Show uninspectable items + Ukázat prvky, které nejsou dozorovatelné + + + Go to file + Jít na soubor + + + Watch expression + Sledovat výraz + + + Expression: + Výraz: + + + + Qml::Internal::WatchTableModel + + Name + Název + + + Value + Hodnota + + + + Qml::Internal::WatchTableView + + Stop watching + Odstranit ze sledovaných výrazů + + + + Qml::InspectorOutputWidget + + Output + Výstup + + + Clear + Smazat + + + + Qml::Internal::EngineComboBox + + Engine %1 + engine number + Stroj %1 + + + + Qml::QmlInspector + + Failed to connect to debugger + Žádné spojení s ladicím programem + + + Could not connect to debugger server. + Nepodařilo se vytvořit žádné spojení s ladicím serverem. + + + Invalid project, debugging canceled. + Neplatný projekt. Ladění zrušeno. + + + Cannot find project run configuration, debugging canceled. + Nelze najít žádné nastavení spuštění projektu. Ladění zrušeno. + + + [Inspector] set to connect to debug server %1:%2 + [Dozorčí] nastaven pro spojení s ladicím serverem %1:%2 + + + [Inspector] disconnected. + + + [Dozorčí] odpojen. + + + + + [Inspector] resolving host... + [Dozorčí] zavírá se... + + + [Inspector] connecting to debug server... + [Dozorčí] spojuje se s ladicím serverem... + + + [Inspector] connected. + + [Dozorčí] spojen. + + + + + [Inspector] closing... + [Dozorčí] zavírá se... + + + [Inspector] error: (%1) %2 + %1=error code, %2=error message + [Dozorčí] Chyba: (%1) %2 + + + QML engine: + Stroj QML: + + + Object Tree + Předmětový strom + + + Properties and Watchers + Vlastnosti a sledované výrazy + + + Script Console + Skriptovací konzole + + + Output of the QML inspector, such as information on connecting to the server. + Výstup dozorčího QML, jako například informace o spojení se serverem. + + + Start Debugging C++ and QML Simultaneously... + Spustit ladění C++ a QML souběžně... + + + No project was found. + Nepodařilo se nalézt žádný projekt. + + + No run configurations were found for the project '%1'. + Pro projekt '%1' se nepodařilo nalézt žádná nastavení spuštění. + + + No valid run configuration was found for the project %1. Only locally runnable configurations are supported. +Please check your project settings. + Pro projekt '%1' se nepodařilo nalézt žádné platné nastavení spuštění. Jsou podporována pouze místní spustitelná nastavení. +Ověřte, prosím, nastavení svého projektu. + + + A valid run control was not registered in Qt Creator for this project run configuration. + Pro nastavení spuštění tohoto projektu nebylo v Qt Creatoru zapsáno platné ověření spuštění. + + + Debugging failed: could not start C++ debugger. + Chyba při ladění: Ladicí program C++ se nepodařilo spustit. + + + + Qml::Internal::StartExternalQmlDialog + + <No project> + <Žádný projekt> + + + + QmlJSEditor::Internal::QmlJSTextEditor + + Rename... + Přejmenovat... + + + New id: + Nové ID: + + + Unused variable + Nepoužívaná proměnná + + + Rename id '%1'... + Přejmenovat ID '%1'... + + + <Select Symbol> + <Vybrat symbol> + + + + QmlJSEditor::Internal::QmlJSEditorFactory + + Do you want to enable the experimental Qt Quick Designer? + Chcete zapnout pokusný Qt Quick Designer? + + + Enable Qt Quick Designer + Zapnout Qt Quick Designer + + + Qt Creator -> About Plugins... + Qt Creator -> O přídavných modulech... + + + Help -> About Plugins... + Nápověda -> O přídavných modulech... + + + Enable experimental Qt Quick Designer? + Chcete zapnout pokusný Qt Quick Designer? + + + Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'. + Chcete zapnout pokusný Qt Quick Designer? Po jeho povolení dostanete přístup ke grafické funkci návrhu, když přepnete do režimu návrhu. Toto ovšem může ovlivnit stabilitu Qt Creatoru. Abyste Qt Quick Designer znovu vypnul, vyberte '%1' a vypněte 'QmlDesigner' v ukázaném okně. + + + Cancel + Zrušit + + + Please restart Qt Creator + Spusťte, prosím, Qt Creator znovu + + + Please restart Qt Creator to make the change effective. + Spusťte, prosím, Qt Creator znovu, aby se změny projevily. + + + + QmlJSEditor::Internal::QmlJSEditorPlugin + + Creates a Qt QML file. + Vytvoří soubor Qt QML. + + + Qt QML File + Soubor Qt QML + + + Qt Quick + Qt Quick + + + Ctrl+Alt+R + Ctrl+Alt+R + + + Follow Symbol Under Cursor + Následovat symbol pod ukazovátkem + + + + QmlJSEditor::Internal::ModelManager + + Indexing + Rejstříkování + + + + QmlJSEditor::Internal::QmlJSPreviewRunner + + Failed to preview Qt Quick file + Soubor Qt Quick se ukázat nepodařilo + + + Could not preview Qt Quick (QML) file. Reason: +%1 + Soubor Qt Quick (QML) se ukázat nepodařilo. Důvod: +%1 + + + + QmlProjectManager::QmlProject + + Error while loading project file! + Chyba při nahrávání projektového souboru! + + + + QmlProjectManager::Internal::QmlProjectApplicationWizardDialog + + New QML Project + Nový projekt QML + + + This wizard generates a QML application project. + Tento průvodce vytvoří jeden projekt programu QML. + + + + QmlProjectManager::Internal::QmlProjectApplicationWizard + + Qt QML Application + Program Qt QML + + + Creates a Qt QML application project with a single QML file containing the main view. + +QML application projects are executed through the QML runtime and do not need to be built. + + + + File generated by QtCreator + qmlproject Template + Comment added to generated .qmlproject file + + + + Include .qml, .js, and image files from current directory and subdirectories + qmlproject Template + Comment added to generated .qmlproject file + Zahrnout soubory .qml, .js a soubory s obrázky z nynějšího adresáře a podadresářů + + + List of plugin directories passed to QML runtime + qmlproject Template + Comment added to generated .qmlproject file + Seznam adresářů s přídavnými moduly podaný pro dobu běhu QML + + + + QmlProjectManager + + Qt Quick Project + Projekt Qt Quick + + + + QmlProjectManager::Internal::QmlProjectImportWizardDialog + + Import Existing Qt QML Directory + Zavést stávající adresář Qt QML + + + Project Name and Location + Název a adresář projektu + + + Project name: + Název projektu: + + + Location: + Umístění: + + + Location + Umístění + + + + QmlProjectManager::Internal::QmlProjectImportWizard + + Import Existing Qt QML Directory + Zavést stávající adresář Qt QML + + + Creates a QML project from an existing directory of QML files. + Vytvoří projekt QML ze stávajícího adresáře se soubory QML. + + + File generated by QtCreator + qmlproject Template + Comment added to generated .qmlproject file + Soubor vytvořený programem Qt Creator + + + Include .qml, .js, and image files from current directory and subdirectories + qmlproject Template + Comment added to generated .qmlproject file + Zahrnout soubory .qml, .js a soubory s obrázky z nynějšího adresáře a podadresářů + + + List of plugin directories passed to QML runtime + qmlproject Template + Comment added to generated .qmlproject file + Seznam adresářů s přídavnými moduly podaný pro dobu běhu QML + + + + QmlProjectManager::Internal::Manager + + Failed opening project '%1': Project already open + Projekt '%1' se nepodařil otevřít, neboť projekt je již otevřen + + + + QmlProjectManager::QmlProjectRunConfiguration + + QML Viewer + QMLRunConfiguration display name. + Prohlížeč QML + + + QML Viewer + Prohlížeč QML + + + QML Viewer arguments: + Argumenty pro prohlížeč QML: + + + Main QML File: + Hlavní soubor QML: + + + Debugging Address: + Adresa pro ladění: + + + Debugging Port: + Přípojka pro ladění: + + + + QmlManager + + <Current File> + <Nynější soubor> + + + + QmlProjectManager::Internal::QmlProjectRunConfigurationFactory + + Run QML Script + Spustit skript QML + + + + QmlProjectManager::Internal::QmlRunControl + + Starting %1 %2 + Spouští se %1 %2 + + + %1 exited with code %2 + %1 ukončen. Vrácená hodnota %2 + + + + QmlProjectManager::Internal::QmlRunControlFactory + + Run + Spustit + + + + QmlProjectManager::Internal::QmlTaskManager + + QML + QML + + + + Qt4ProjectManager::Internal::MaemoConfigTestDialog + + Testing configuration... + Zkouška nastavení... + + + Stop Test + Zastavit zkoušku + + + Device configuration test failed: +%1 + Zkouška nastavení zařízení se nezdařila: +%1 + + + +Did you start Qemu? + +Spustil jste Qemu? + + + Qt version mismatch! Expected Qt on device: 4.6.2 or later. + Přezkoušení verze Qt se nezdařilo! Na zařízení musí být nainstalována verze Qt 4.6.2 nebo novější. + + + Close + Zavřít + + + Device configuration test failed: Unexpected output: +%1 + Zkouška nastavení zařízení se nezdařila: Neočekávaný výstup: +%1 + + + Hardware architecture: %1 + + Architektura technického vybavení počítače: %1 + + + + Kernel version: %1 + + Verze jádra: %1 + + + + Device configuration successful. + + Zkouška nastavení zařízení proběhla úspěšně. + + + + No Qt packages installed. + Nenainstalovány žádné balíčky Qt. + + + List of installed Qt packages: + Seznam nainstalových balíčků Qt: + + + + Qt4ProjectManager::Internal::MaemoPackageContents + + Local File Path + Místní souborová cesta + + + Remote File Path + Vzdálená souborová cesta + + + + Qt4ProjectManager::Internal::MaemoPackageCreationStep + + Creating package file ... + Vytváří se soubor s balíčkem... + + + Cannot open MADDE config file '%1'. + Soubor s nastavením MADDE '%1' nelze otevřít. + + + Packaging Error: Cannot open file '%1'. + Chyba při vytváření balíčku: Nelze otevřít soubor '%1'. + + + Packaging Error: Cannot write file '%1'. + Chyba při vytváření balíčku: Nelze zapsat soubor '%1'. + + + Packaging Error: Could not create directory '%1'. + Chyba při vytváření balíčku: Nepodařilo se vytvořit adresář '%1'. + + + Packaging Error: Could not replace file '%1'. + Chyba při vytváření balíčku: Nepodařilo se nahradit soubor '%1'. + + + Packaging Error: Could not copy '%1' to '%2'. + Chyba při vytváření balíčku: Soubor '%1' se nepodařilo zkopírovat do '%2'. + + + Package created. + Soubor s balíčkem byl vytvořen. + + + Package Creation: Running command '%1'. + Vytvoření balíčku: Provádí se příkaz '%1'. + + + Packaging failed. + Vytvoření balíčku se nezdařilo. + + + Packaging error: Could not start command '%1'. Reason: %2 + Chyba při vytváření balíčku: Nepodařilo se spustit příkaz '%1': Důvod %2 + + + Exit code: %1 + Kód ukončení: %1 + + + Packaging Error: Command '%1' timed out. + Chyba při vytváření balíčku: Překročení času u příkazu '%1'. + + + Packaging Error: Command '%1' failed. + Chyba při vytváření balíčku: Příkaz '%1' se nepodařilo provést. + + + Reason: %1 + Důvod: %1 + + + Output was: + Výstup byl: + + + + Qt4ProjectManager::Internal::MaemoPackageCreationWidget + + <b>Create Package:</b> + <b>Vytvořit soubor s balíčkem:</b> + + + Choose a local file + Vyberte místní soubor + + + File already in package + Soubor je již v balíčku obsažen + + + You have already added this file. + Tento soubor jste již přidal. + + + + Qt4ProjectManager::Internal::MaemoRunConfiguration + + New Maemo Run Configuration + Nové nastavení spouštění Maemo + + + + Qt4ProjectManager::Internal::MaemoRunConfigurationWidget + + Run configuration name: + Název nastavení spuštění: + + + <a href="%1">Manage device configurations</a> + <a href="%1">Spravovat nastavení zařízení</a> + + + <a href="%1">Set Debugger</a> + <a href="%1">Nastavit ladicí program</a> + + + Device configuration: + Nastavení zařízení: + + + Executable: + Spustitelný soubor: + + + Arguments: + Argumenty: + + + + Qt4ProjectManager::Internal::AbstractMaemoRunControl + + No device configuration set for run configuration. + Pro nastavení spuštění není nastaveno žádné nastavení zařízení. + + + Cleaning up remote leftovers first ... + Mažou se nejprve zbylé soubory z předcházejících spuštění... + + + Initial cleanup canceled by user. + Mazání zrušeno uživatelem. + + + Error running initial cleanup: %1. + Chyba při mazání: %1. + + + Initial cleanup done. + Mazání hotovo. + + + Deploying + Nasazení + + + Files to deploy: %1. + Soubory pro nasazení: %1. + + + Starting remote application. + Spouští se vzdálený program. + + + Deployment canceled by user. + Nasazení zrušeno uživatelem. + + + Deployment failed: %1 + Nasazení se nezdařilo: %1 + + + Deployment finished. + Nasazení hotovo. + + + Remote execution canceled due to user request. + Vzdálené spuštění zrušeno na základě požadavku uživatele. + + + Error running remote process: %1 + Chyba při spouštění vzdáleného procesu na zařízení: %1 + + + Finished running remote process. + Spouštění vzdáleného procesu na zařízení ukončeno. + + + Remote Execution Failure + Chyba při spouštění na zařízení + + + + Qt4ProjectManager::Internal::MaemoRunConfigurationFactory + + New Maemo Run Configuration + Nové nastavení spouštění Maemo + + + + Qt4ProjectManager::Internal::MaemoRunControlFactory + + Run on device + Spustit na zařízení + + + + Qt4ProjectManager::Internal::MaemoSettingsPage + + Maemo Device Configurations + Nastavení zařízení Maemo + + + + Qt4ProjectManager::Internal::MaemoSettingsWidget + + New Device Configuration %1 + Standard Configuration name with number + Nové nastavení zařízení %1 + + + Choose Public Key File + Vyberte soubor s veřejným klíčem + + + Public Key Files(*.pub);;All Files (*) + Soubory s veřejným klíčem (*.pub);;Všechny soubory (*) + + + Deployment Failed + Nasazení se nezdařilo + + + Could not read public key file '%1'. + Soubor s veřejným klíčem %1' se nepodařilo přečíst. + + + Stop Deploying + Zastavit nasazení + + + Key deployment failed: %1 + Nasazení klíče se nezdařilo: %1 + + + Deployment Succeeded + Nasazení se podařilo + + + Key was successfully deployed. + Klíč byl úspěšně nasazen. + + + Deploy Public Key ... + Poslat veřejný klíč... + + + + Qt4ProjectManager::Internal::MaemoSshConfigDialog + + Save Public Key File + Uložit soubor s veřejným klíčem + + + Save Private Key File + Uložit soubor se soukromým klíčem + + + Error writing file + Chyba při zápisu souboru + + + Could not write file '%1': + %2 + Soubor '%1' se nepodařilo zapsat: + %2 + + + + Qt4ProjectManager::Internal::QemuRuntimeManager + + Start Maemo Emulator + Spustit napodobovatele jinak též emulátor Maemo + + + Qemu has been shut down, because you removed the corresponding Qt version. + Qemu bylo zastaveno, protože jste odstranil odpovídající verzi Qt. + + + Qemu finished with error: Exit code was %1. + Qemu skončilo s chybou. Kód ukončení byl %1. + + + Qemu failed to start: %1 + Qemu se nepodařilo spustit: %1 + + + Qemu crashed + Qemu spadlo + + + Qemu error + Chyba v Qemu + + + Stop Maemo Emulator + Zastavit napodobovatele jinak též emulátor Maemo + + + + Qt4ProjectManager::Internal::S60CreatePackageStep + + Create SIS Package + Create SIS package build step name + Vytvořit balíček SIS + + + + Qt4ProjectManager::Internal::S60CreatePackageStepFactory + + Create SIS Package + Vytvořit balíček SIS + + + + Qt4ProjectManager::Internal::S60CreatePackageStepConfigWidget + + self-signed + osobně podepsáno + + + signed with certificate %1 and key file %2 + podepsáno osvědčením %1 a souborem s klíčem %2 + + + <b>Create SIS Package:</b> %1 + <b>Vytvořit balíček SIS:</b> %1 + + + + Qt4ProjectManager::Internal::S60DevicesBaseWidget + + Default + Výchozí + + + SDK Location + Umístění SDK + + + Qt Location + Umístění Qt + + + Choose Qt folder + Vybrat složku s Qt + + + + Qt4ProjectManager::Internal::S60DevicesModel + + No Qt installed + Qt není nainstalováno + + + + Qt4ProjectManager::Internal::GnuPocS60DevicesWidget + + Step 1 of 2: Choose GnuPoc folder + Krok 1 ze 2: Vybrat složku s GnuPoc + + + Step 2 of 2: Choose Qt folder + Krok 2 ze 2: Vybrat složku s Qt + + + Adding GnuPoc + Přidat GnuPoc + + + GnuPoc and Qt folders must not be identical. + Složky GnuPoc a Qtse musí lišit. + + + + ProjectExplorer::Internal::S60ProjectChecker + + The Symbian SDK and the project sources must reside on the same drive. + Symbian SDK a projekt se musí nacházet na stejné diskové jednotce. + + + The Symbian SDK was not found for Qt version %1. + Nepodařilo se nalézt žádné Symbian SDK pro verzi Qt %1. + + + The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. + Přídavný modul "Open C/C++" není nainstalován v Symbian SDK, nebo je cesta pro Symbian SDK u verze Qt %1 špatně nastavená. + + + The Symbian toolchain does not handle special characters in a project path well. + Zvláštní znaky v zadání projektové cesty mohou vést u nástrojového řetězce pro Symbian k potížím. + + + + Qt4ProjectManager::Internal::Qt4BuildConfigurationFactory + + Using Qt Version "%1" + Používá se verze Qt "%1" + + + New configuration + Nové nastavení + + + New Configuration Name: + Název nového nastavení: + + + %1 Debug + %1 ladění + + + %1 Release + %1 vydání + + + + Qt4ProjectManager::Qt4Project + + Evaluating + Vyhodnocení + + + + Qt4ProjectManager + + Qt4 + Qt4 + + + Qt Versions + Verze Qt + + + Qt C++ Project + Projekt Qt C++ + + + + Qt4ProjectManager::Internal::Qt4TargetFactory + + Debug + Ladění + + + Release + Vydání + + + + Qt4ProjectManager::QtVersion + + The Qt version is invalid: %1 + %1: Reason for being invalid + Verze Qt je neplatná: %1 + + + The qmake command "%1" was not found or is not executable. + %1: Path to qmake executable + Příkaz qmake: "%1" se nepodařilo nalézt, nebo není spustitelný. + + + + QtVersion + + No qmake path set + Není nastavena žádná cesta ke qmake + + + Qt version has no name + Verze Qt nemá název + + + Qt version is not properly installed, please run make install + Verze Qt není správně nainstalována. Proveďte, prosím, příkaz "make install" + + + Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong? + Cestu ke spustitelným souborům instalace Qt se nepodařilo určit. Možná je cesta k qmake chybná? + + + The Qt Version has no toolchain. + Tato verze Qt nemá přiřazen žádný řetěz nástrojů. + + + + Qt4ProjectManager::Internal::MobileGuiAppWizard + + Mobile Qt Application + Program Qt pro přenosná zařízení + + + Creates a Qt application optimized for mobile devices with a Qt Designer-based main window. + +Preselects Qt for Simulator and mobile targets if available + Vytvoří program napsaný v Qt určený pro přenosná zařízení s jedním hlavním oknem založeným na Qt Designeru. + +Vybere pro napodobovatele a přenosné cíle vhodné verze Qt, jsou-li dostupné. + + + + Qt4ProjectManager::Internal::BaseQt4ProjectWizardDialog + + Modules + Moduly + + + Qt Versions + Verze Qt + + + + Qt4ProjectManager::Internal::TestWizard + + Qt Unit Test + Jednotková zkouška 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. + Vytvoří na QTestLib založenou jednotkovou zkoušku pro funkci nebo třídu. Jednotkové zkoušky slouží k přezkoušení použitelnosti kódu a ke zjištění zpětného vývoje (regresí). + + + + Qt4ProjectManager::Internal::TestWizardDialog + + This wizard generates a Qt unit test consisting of a single source file with a test class. + Tento průvodce vytvoří jednotkovou zkoušku Qt sestávající z jednoho zdrojového souboru s jednou zkouškovou třídou. + + + Details + Podrobnosti + + + + Subversion::Internal::SubversionEditor + + Annotate revision "%1" + Opatřit vysvětlivkami revizi "%1" + + + + TextEditor + + Text Editor + Textový editor + + + + VCSBase::VCSBasePlugin + + Version Control + Ověření verzí + + + The file '%1' could not be deleted. + Soubor '%1' se nepodařilo smazat. + + + Choose Repository Directory + Vybrat adresář pro skladiště + + + The directory '%1' is already managed by a version control system (%2). Would you like to specify another directory? + Adresář '%1' je již spravován systémem na ověřování verzí (%2). Chcete zadat jiný adresář? + + + Repository already under version control + Skladiště je již spravováno systémem na ověřování verzí + + + Repository created + Skladiště vytvořeno + + + A version control repository has been created in %1. + Skladiště pro ověřování verzí bylo vytvořeno v %1. + + + Repository creation failed + Vytvoření skladiště se nezdařilo + + + A version control repository could not be created in %1. + Skladiště pro ověřování verzí se v %1 vytvořit nepodařilo. + + + + trk::Launcher + + Cannot open remote file '%1': %2 + Soubor '%1' na zařízení se nepodařilo otevřít: %2 + + + Cannot open '%1': %2 + Nelze otevřít '%1': %2 + + + Unable to acquire a device for port '%1'. It appears to be in use. + Nelze přistupovat k zařízení '%1'. Zřejmě se již používá. + + + + AboutDialog + + About Bauhaus + AboutDialog + O Bauhausu + + + + ContextPaneTextWidget + + Text + Text + + + Style + Styl + + + Normal + Obvyklý + + + Outline + Obrys + + + Raised + Vyvýšený + + + Sunken + Snížený + + + ... + ... + + + + QmlDesigner::ContextPaneWidget + + Disable permanently + Zakázat trvale + + -- cgit v1.2.1 From 1c095f88d05a22a7956645e002e78282cbe2576b Mon Sep 17 00:00:00 2001 From: Joerg Bornemann Date: Tue, 10 Aug 2010 14:07:28 +0200 Subject: maemo device configuration was not saved on MacOS The code relies on getting the dialog accepted after the editFinished singnals. This does not work on MacOS. Reviewed-by: ck --- src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.cpp | 8 ++++++-- src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.h | 1 + 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.cpp b/src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.cpp index 602cbe2c47..011e9644e9 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.cpp @@ -98,13 +98,16 @@ MaemoSettingsWidget::MaemoSettingsWidget(QWidget *parent) m_ui(new Ui_MaemoSettingsWidget), m_devConfs(MaemoDeviceConfigurations::instance().devConfigs()), m_nameValidator(new NameValidator(m_devConfs)), - m_keyDeployer(0) + m_keyDeployer(0), + m_saveSettingsRequested(false) { initGui(); } MaemoSettingsWidget::~MaemoSettingsWidget() { + if (m_saveSettingsRequested) + MaemoDeviceConfigurations::instance().setDevConfigs(m_devConfs); } QString MaemoSettingsWidget::searchKeywords() const @@ -225,7 +228,8 @@ void MaemoSettingsWidget::fillInValues() void MaemoSettingsWidget::saveSettings() { - MaemoDeviceConfigurations::instance().setDevConfigs(m_devConfs); + // We must defer this step because of a stupid bug on MacOS. See QTCREATORBUG-1675. + m_saveSettingsRequested = true; } MaemoDeviceConfig &MaemoSettingsWidget::currentConfig() diff --git a/src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.h b/src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.h index e8c676696a..d7a195f392 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.h +++ b/src/plugins/qt4projectmanager/qt-maemo/maemosettingswidget.h @@ -103,6 +103,7 @@ private: MaemoDeviceConfig m_lastConfigSim; NameValidator * const m_nameValidator; MaemoSshRunner *m_keyDeployer; + bool m_saveSettingsRequested; }; } // namespace Internal -- cgit v1.2.1 From b751543bc27a5309d55d04d6c8593c230fd70f0e Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 11 Aug 2010 11:26:04 +0200 Subject: debugger: fix QTCREATORBUG-814 (cherry picked from commit 99adbf1582aa332e820c6857bbd1b24c3f2ae682) --- share/qtcreator/gdbmacros/gdbmacros.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index cfb71cd2eb..2c7840e0ec 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -1811,6 +1811,8 @@ def qdump__std__set(d, item): def qdump__std__string(d, item): data = item.value["_M_dataplus"]["_M_p"] baseType = item.value.type.unqualified().strip_typedefs() + if baseType.code == gdb.TYPE_CODE_REF: + baseType = baseType.target().unqualified().strip_typedefs() charType = baseType.template_argument(0) repType = lookupType("%s::_Rep" % baseType).pointer() rep = (data.cast(repType) - 1).dereference() -- cgit v1.2.1 From 069a0cb72e6d16f8f958161f77b0d15aed9d1b7f Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 11 Aug 2010 15:14:33 +0200 Subject: fakevim: Fix mark interpretion for d'a etc. http://bugreports.qt.nokia.com/browse/QTCREATORBUG-1342 (cherry picked from commit 91c909120b1c4200fd052d49b7341bb583bd4c75) --- src/plugins/fakevim/fakevimhandler.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/fakevim/fakevimhandler.cpp b/src/plugins/fakevim/fakevimhandler.cpp index 9f8a0e3230..2b5137c2e6 100644 --- a/src/plugins/fakevim/fakevimhandler.cpp +++ b/src/plugins/fakevim/fakevimhandler.cpp @@ -1867,6 +1867,8 @@ EventResult FakeVimHandler::Private::handleCommandMode(const Input &input) } } else if (input.is('`')) { m_subsubmode = BackTickSubSubMode; + if (m_submode != NoSubMode) + m_movetype = MoveLineWise; } else if (input.is('#') || input.is('*')) { // FIXME: That's not proper vim behaviour QTextCursor tc = m_tc; @@ -1888,6 +1890,8 @@ EventResult FakeVimHandler::Private::handleCommandMode(const Input &input) //updateMiniBuffer(); } else if (input.is('\'')) { m_subsubmode = TickSubSubMode; + if (m_submode != NoSubMode) + m_movetype = MoveLineWise; } else if (input.is('|')) { moveToStartOfLine(); moveRight(qMin(count(), rightDist()) - 1); -- cgit v1.2.1 From 316b7e80970df48cae0acfc8417a2c9037791e5e Mon Sep 17 00:00:00 2001 From: axasia Date: Wed, 11 Aug 2010 15:50:40 +0200 Subject: Update japanese translation for 2.0 Merge-request: 2171 Reviewed-by: Oswald Buddenhagen --- share/qtcreator/translations/qtcreator_ja.ts | 4659 ++------------------------ 1 file changed, 372 insertions(+), 4287 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_ja.ts b/share/qtcreator/translations/qtcreator_ja.ts index 18c8b12461..75b7c05003 100644 --- a/share/qtcreator/translations/qtcreator_ja.ts +++ b/share/qtcreator/translations/qtcreator_ja.ts @@ -4,22 +4,18 @@ Application - Failed to load core: %1 coreプラグインの読込に失敗しました: %1 - Unable to send command line arguments to the already running instance. It appears to be not responding. 実行中のインスタンスにコマンドライン引数を送信する事ができませんでした。応答がありません。 - Could not find 'Core.pluginspec' in %1 %1 に 'Core.pluginspec' が見つかりませんでした - Qt Creator - Plugin loader messages Qt Creator - プラグイン ローダからのメッセージ @@ -27,17 +23,14 @@ AttachCoreDialog - Start Debugger デバッガ起動 - Executable: 実行ファイル: - Core File: コアファイル: @@ -45,12 +38,10 @@ AttachExternalDialog - Start Debugger デバッガ起動 - Attach to process ID: アタッチするプロセスID: @@ -58,12 +49,10 @@ BINEditor::Internal::BinEditorPlugin - &Undo 元に戻す(&U) - &Redo やり直す(&R) @@ -71,46 +60,34 @@ BookmarkDialog - Add Bookmark ブックマークの追加 - Bookmark: ブックマーク: - Add in Folder: 追加先フォルダ: - + + - New Folder 新しいフォルダ - - - - - Bookmarks ブックマーク - Delete Folder フォルダの削除 - Rename Folder フォルダ名の変更 @@ -118,23 +95,18 @@ BookmarkManager - Bookmarks ブックマーク - Remove 削除 - - New Folder 新しいフォルダ - You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue? フォルダを削除すると中身も削除されますが、続行しますか? @@ -142,42 +114,34 @@ BookmarkWidget - Delete Folder フォルダの削除 - Rename Folder フォルダ名の変更 - Show Bookmark ブックマークを開く - Show Bookmark in New Tab ブックマークを新しいタブで開く - Delete Bookmark ブックマークの削除 - Rename Bookmark ブックマークの名前変更 - Add 追加 - Remove 削除 @@ -185,28 +149,22 @@ Bookmarks::Internal::BookmarkView - - Bookmarks ブックマーク - Move Up 上に移動 - Move Down 下に移動 - &Remove 削除(&R) - Remove All すべて削除 @@ -214,63 +172,50 @@ Bookmarks::Internal::BookmarksPlugin - &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 ドキュメント内の次のブックマークに移動 @@ -278,12 +223,10 @@ BreakByFunctionDialog - Function to break on: ブレークさせる関数: - Set Breakpoint at Function 関数にブレークポイントを設定する @@ -291,12 +234,10 @@ BreakCondition - Condition: 条件: - Ignore count: 無視する回数: @@ -304,17 +245,14 @@ CMakeProjectManager::Internal::CMakeBuildConfigurationFactory - Build ビルド - New configuration 新しい構成 - New Configuration Name: 新しい構成名: @@ -322,7 +260,6 @@ CMakeProjectManager::Internal::CMakeBuildSettingsWidget - &Change 変更(&C) @@ -330,7 +267,6 @@ CMakeProjectManager::Internal::CMakeOpenProjectWizard - CMake Wizard CMake ウィザード @@ -338,47 +274,38 @@ CMakeProjectManager::Internal::CMakeRunConfigurationWidget - Arguments: 引数: - Select Working Directory 作業ディレクトリの選択 - Reset to default デフォルトに戻す - Working Directory: 作業ディレクトリ: - Run Environment 実行時の環境変数 - Base environment for this runconfiguration: 実行構成の元となる環境: - Clean Environment 環境変数なし - System Environment システム環境変数 - Build Environment ビルド時の環境変数 @@ -386,12 +313,10 @@ CMakeProjectManager::Internal::InSourceBuildPage - 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. <b>ソースツリー: %1</b>内でビルドを実行しようとしています。ソースツリー内でビルドを行なうとシャドウビルドが不可能になり、ビルドディレクトリの変更が行なえません。シャドウビルドを行なう場合にはソースディレクトリをきれいにしてから、プロジェクトを再度開いてください。 - Build Location ビルド パス @@ -399,78 +324,62 @@ CMakeProjectManager::Internal::CMakeRunPage - Please specify the path to the cmake executable. No cmake executable was found in the path. cmake の実行ファイルにパスが通っていない為、cmake 実行ファイルのパスを指定してください。 - The cmake executable (%1) does not exist. cmake 実行ファイル (%1) が存在しません。 - The path %1 is not a executable. パス (%1) は実行ファイルではありません。 - The path %1 is not a valid cmake. パス (%1) は、有効な cmake 実行ファイルのパスではありません。 - - Run CMake CMake の実行 - Arguments 引数 - The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly ディレクトリ %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 ファイルが存在しません。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 ファイルのバージョンが古すぎます。cmake を実行してファイルを更新してください。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 ファイルが存在しません。cmake を実行して cbp ファイルを再作成してください。プロジェクトによっては最初の cmake の実行にコマンドライン引数が必要になります。注意: cmake は以前に実行した際のコマンドライン引数を記憶しています。 - Qt Creator needs to run cmake in the new build directory. Some projects require command line arguments to the initial cmake call. 新しいビルドディレクトリで cmake を実行してください。プロジェクトによっては最初の cmake の実行にコマンドライン引数が必要になります。 - NMake Generator NMake ジェネレータ - NMake Generator (%1) NMake ジェネレータ (%1) - MinGW Generator MinGW ジェネレータ - No valid cmake executable specified. 有効な cmake 実行ファイルが指定されていません。 @@ -478,12 +387,10 @@ CMakeProjectManager::Internal::CMakeSettingsPage - CMake CMake - Executable: 実行ファイル: @@ -491,28 +398,23 @@ CMakeProjectManager::Internal::MakeStepConfigWidget - Additional arguments: 追加の引数: - Targets: ターゲット: - Make CMakeProjectManager::MakeStepConfigWidget display name. Make - <b>Make:</b> %1 %2 <b>Make:</b> %1 %2 - <b>Unknown Toolchain</b> <b>不明なツールチェイン</b> @@ -520,22 +422,18 @@ CMakeProjectManager::Internal::ShadowBuildPage - 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 ではソースディレクトリ内でのビルドは推奨していません。ソースディレクトリとビルドディレクトリを分けることでソースをきれいに保ち、異なる設定での複数のビルドを行うことができます。 - Build directory: ビルド ディレクトリ: - Build Location ビルド パス @@ -543,12 +441,10 @@ CPlusPlus::OverviewModel - <Select Symbol> <シンボルの選択> - <No Symbols> <シンボルなし> @@ -556,77 +452,67 @@ CdbOptionsPageWidget - These options take effect at the next start of Qt Creator. これらのオプションは次回の Qt Creator の起動時から有効になります。 - Path: パス: - 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">Debugging Tools for Windows</a> (%2) のパスを指定してください。</p><p><b>メモ:</b> この設定を有効にするには Qt Creator を再起動する必要があります。</p></p></body></html> + <html><body><p>ここに <a href="%1">Debugging Tools for Windows</a> (%2) のパスを指定してください。</p><p><b>メモ:</b> この設定を有効にするには Qt Creator を再起動する必要があります。</p></p></body></html> - 64-bit version - 64 bit バージョン + 64 bit バージョン - 32-bit version - 32 bit バージョン + 32 bit バージョン - CDB Placeholder CDB - Other Options その他のオプション - Verbose symbol loading 冗長なシンボル読み込み + + Fast loading of debugging helpers + デバッグ ヘルパの高速読み込み + ChangeSelectionDialog - Select 選択 - Change: リビジョン: - Repository location: リポジトリ パス: @@ -634,37 +520,30 @@ CodePaster::CodepasterPlugin - &Code Pasting コード貼り付け(&C) - Paste Snippet... スニペットを貼り付ける... - Alt+C,Alt+P Alt+C,Alt+P - Paste Clipboard... クリップボードに貼り付け... - Fetch Snippet... スニペットを取り出す... - Alt+C,Alt+F Alt+C,Alt+F - Empty snippet received for "%1". "%1" から空のスニペットを受信しました。 @@ -672,27 +551,22 @@ CodePaster::PasteSelectDialog - Paste: 貼り付け: - Protocol: プロトコル: - Refresh 更新 - Waiting for items リスト取得中 - This protocol does not support listing このプロトコルは一覧表示をサポートしていません @@ -700,27 +574,22 @@ CodePaster::SettingsPage - Username: ユーザー名: - General 概要 - Default protocol: デフォルト プロトコル: - Display Output pane after sending a post 貼り付け後にアウトプット ペインを表示 - Copy-paste URL to clipboard 貼り付けたURLをクリップボードにコピー @@ -728,62 +597,50 @@ CommonOptionsPage - Checking this will populate the source file view automatically but might slow down debugger startup considerably. "ソースファイル"タブのリストを自動的に計算します。ただし、デバッガの起動時間が遅くなります。 - Populate source file view automatically ソースファイルリストを自動的に計算 - Maximal stack depth: 最大スタック深度: - <unlimited> <無制限> - Use alternating row colors in debug views デバッガウィンドウで行ごとに色を変える - Use tooltips in main editor while debugging デバッグ中のメイン エディタでツールチップを使用する - Language 言語 - Changes the debugger language according to the currently opened file. 開いているファイルにあわせてデバッガ言語を切り替えます。 - Change debugger language automatically 自動的にデバッガ言語を変更する - Register Qt Creator for debugging crashed applications. Qt Creator をアプリケーションクラッシュ時のデバッグツールとして登録する。 - GUI Behavior GUI の挙動 - Use Qt Creator for post-mortem debugging Qt Creator を事後検証デバッグに使用する @@ -791,52 +648,42 @@ CompletionSettingsPage - Autocomplete common &prefix 共通のプレフィクスを自動的に補完する(&P) - Automatically insert (, ) and ; when appropriate. 必要に応じて自動的に"( )"や";"を挿入します。 - Insert the common prefix of available completion items. 共通のプレフィクスとして使用可能な補完候補を挿入します。 - &Automatically insert brackets 括弧を自動的に挿入する(&A) - Behavior 動作 - &Case-sensitivity: 大文字/小文字の区別(&C): - Full する - None しない - Insert &space after function name 関数名の末尾に空白を挿入する(&S) - First Letter 先頭文字のみ @@ -844,12 +691,10 @@ ContentWindow - Open Link リンクを開く - Open Link as New Page リンクを新しいページで開く @@ -857,63 +702,48 @@ 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] [読取専用] - [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? @@ -925,291 +755,226 @@ Would you like to overwrite them? 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 上下に分割 - Split Side by Side 左右に分割 - Remove Current Split 現在の分割ウィンドウを閉じる - Remove All Splits すべての分割ウィンドウを閉じる - Save %1 &As... %1 に名前をつけて保存(&A)... - &Advanced 拡張(&A) - Alt+V,Alt+I Alt+V,Alt+I - All Files (*) すべてのファイル (*) - - Opening File ファイルを開く - Cannot open file %1! ファイル %1 を開けません! - File is Read Only ファイルは読み取り専用です - The file %1 is read only. ファイル %1 は読み取り専用です。 - Open with VCS (%1) バージョン管理システム (%1) で開く - Save as ... 名前を付けて保存... - - Failed! エラー発生! - Could not set permissions to writable. 書込可能なパーミッションに設定できませんでした。 - <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 - Could not open the file for editing with SCC. ファイルを SCC で編集用に開けませんでした。 - &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>エディタの幅(pixel)</td></tr><tr><td>%h</td><td>エディタの高さ(pixel)</td></tr><tr><td>%W</td><td>エディタの幅(文字数)</td></tr><tr><td>%H</td><td>エディタの高さ(文字数)</td></tr><tr><td>%%</td><td>%</td></tr></table> @@ -1217,32 +982,26 @@ Would you like to overwrite them? Core::FileManager - Cannot save file ファイルの保存に失敗 - Cannot save changes to '%1'. Do you want to continue and lose your changes? '%1' の変更を保存できません。変更が失われますが、続行しますか? - Overwrite? 上書きしますか? - An item named '%1' already exists at this location. Do you want to overwrite it? '%1' という名前のファイルは既に同じパスに存在しています。上書きしますか? - Save File As 名前を付けて保存 - Open File ファイルを開く @@ -1250,7 +1009,6 @@ Would you like to overwrite them? Core::Internal::ComboBox - Activate %1 %1 をアクティブにする @@ -1258,7 +1016,6 @@ Would you like to overwrite them? Core::Internal::EditMode - Edit 編集 @@ -1266,72 +1023,58 @@ Would you like to overwrite them? 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 次のグループ - Move Document to Previous Group 前のグループのドキュメントに移動 - Move Document to Next Group 次のグループのドキュメントに移動 @@ -1339,13 +1082,10 @@ Would you like to overwrite them? Core::Internal::EditorView - - Placeholder プレースホルダ - Close 閉じる @@ -1353,102 +1093,82 @@ Would you like to overwrite them? Core::Internal::GeneralSettings - General 概要 - <System Language> <システム言語> - Restart required 再起動が必要です - The language change will take effect after a restart of Qt Creator. 言語の変更は、Qt Creator を再起動した後に反映されます。 - Variables 変数 - Reset to default デフォルトに戻す - R R - Terminal: 端末: - External editor: 外部エディタ: - ? ? - When files are externally modified: 外部でファイルが変更された時: - User Interface ユーザインターフェース - Color: 色: - Default file encoding: デフォルトの文字コード: - Language: 言語: - System システム - External file browser: 外部ファイルブラウザ: - Always Ask 常に問い合わせる - Reload All Unchanged Editors すべての未編集の開いているドキュメントを再読込する - Ignore Modifications 変更を無視する @@ -1456,193 +1176,151 @@ Would you like to overwrite them? Core::Internal::MainWindow - Qt Creator Qt Creator - &File ファイル(&F) - &Edit 編集(&E) - &Tools ツール(&T) - &Window ウィンドウ(&W) - &Help ヘルプ(&H) - &New File or Project... ファイル/プロジェクトの新規作成(&N)... - &Open File or Project... ファイル/プロジェクトを開く(&O)... - Open File &With... プログラムを指定して開く(&W)... - Recent &Files 最近使ったファイル(&F) - - &Save 保存(&S) - - Save &As... 名前を付けて保存(&A)... - - Ctrl+Shift+S Ctrl+Shift+S - Save A&ll すべて保存(&L) - &Print... 印刷(&P)... - E&xit 終了(&X) - Ctrl+Q Ctrl+Q - - &Undo 元に戻す(&U) - - &Redo やり直す(&R) - Cu&t 切り取り(&T) - &Copy コピー(&C) - &Paste 貼り付け(&P) - &Select All すべて選択(&S) - &Go To Line... 指定行にジャンプ(&G)... - Ctrl+L Ctrl+L - &Options... オプション(&O)... - Minimize 最小化 - Zoom ズーム - Show Sidebar サイド バーを表示する - Full Screen 全画面表示 - &Views 表示(&V) - About &Qt Creator Qt Creator について(&Q) - About &Qt Creator... Qt Creator について(&Q)... - About &Plugins... プラグインについて(&P)... - New Title of dialog 新規作成 - Open Project - プロジェクトを開く + プロジェクトを開く - Settings... 設定... @@ -1650,7 +1328,6 @@ Would you like to overwrite them? Core::Internal::MessageOutputWindow - General Messages 全体メッセージ @@ -1658,7 +1335,6 @@ Would you like to overwrite them? Core::Internal::NavComboBox - Activate %1 %1 をアクティブにします @@ -1666,12 +1342,10 @@ Would you like to overwrite them? Core::Internal::NavigationSubWidget - Split 上下に分割 - Close 閉じる @@ -1679,17 +1353,14 @@ Would you like to overwrite them? Core::Internal::NavigationWidget - Hide Sidebar サイド バーを隠す - Show Sidebar サイド バーを表示する - Activate %1 Pane %1 ペインをアクティブにします @@ -1697,27 +1368,22 @@ Would you like to overwrite them? Core::Internal::NewDialog - New Project 新しいプロジェクト - Choose a template: テンプレートを選択してください: - &Choose... 選択(&C)... - Projects プロジェクト - Files and Classes ファイルとクラス @@ -1725,33 +1391,26 @@ Would you like to overwrite them? Core::Internal::OpenEditorsWidget - - Open Documents 開いているドキュメント - Close %1 %1 を閉じる - Close Editor エディタを閉じる - Close All Except %1 %1 以外のすべてを閉じる - Close Other Editors 他のエディタを閉じる - Close All Editors すべてのエディタを閉じる @@ -1759,8 +1418,6 @@ Would you like to overwrite them? Core::Internal::OpenEditorsWindow - - * * @@ -1768,7 +1425,6 @@ Would you like to overwrite them? Core::Internal::OpenWithDialog - Open file '%1' with: 指定したエディタで '%1' を開く: @@ -1776,38 +1432,30 @@ Would you like to overwrite them? Core::Internal::OutputPaneManager - Output アウトプット - Clear クリア - Next Item 次の項目 - Previous Item 前の項目 - - Maximize Output Pane 出力ペインの最大化 - Output &Panes 出力ペイン(&P) - Minimize Output Pane 出力ペインの最小化 @@ -1815,37 +1463,30 @@ Would you like to overwrite them? Core::Internal::PluginDialog - Details 詳細 - Error Details エラーの詳細 - Close 閉じる - Restart required. 再起動が必要です。 - Installed Plugins インストール済みプラグイン - Plugin Details of %1 プラグイン %1 の詳細 - Plugin Errors of %1 プラグイン %1 のエラー情報 @@ -1853,7 +1494,6 @@ Would you like to overwrite them? Core::Internal::ProgressView - Processes プロセス @@ -1861,22 +1501,18 @@ Would you like to overwrite them? Core::Internal::SaveItemsDialog - Do not Save 保存しない - Save All すべて保存 - Save 保存 - Save Selected 選択して保存 @@ -1884,38 +1520,30 @@ Would you like to overwrite them? Core::Internal::ShortcutSettings - Keyboard キーボード - Keyboard Shortcuts キーボード ショートカット - Key sequence: キー シーケンス: - Shortcut ショートカット - Import Keyboard Mapping Scheme キーボード マッピング スキームのインポート - - Keyboard Mapping Scheme (*.kms) キーボード マッピング スキーム (*.kms) - Export Keyboard Mapping Scheme キーボード マッピング スキームのエクスポート @@ -1923,12 +1551,10 @@ Would you like to overwrite them? Core::Internal::SideBarWidget - Split 上下に分割 - Close 閉じる @@ -1936,23 +1562,19 @@ Would you like to overwrite them? 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/>%4 の %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/> @@ -1960,7 +1582,6 @@ Would you like to overwrite them? Core::ModeManager - Switch to <b>%1</b> mode <b>%1</b>モードに切り替える @@ -1968,14 +1589,12 @@ Would you like to overwrite them? Core::ScriptManager - Exception at line %1: %2 %3 %1 行目で例外発生: %2 %3 - Unknown error 未知のエラー @@ -1983,7 +1602,6 @@ Would you like to overwrite them? Core::StandardFileWizard - New %1 %1 の新規作成 @@ -1991,17 +1609,14 @@ Would you like to overwrite them? Utils::ClassNameValidatingLineEdit - The class name must not contain namespace delimiters. クラス名にはネームスペースの区切り文字を含めないでください。 - Please enter a class name. クラス名を入力してください。 - The class name contains invalid characters. クラス名に不正な文字が含まれています。 @@ -2009,62 +1624,50 @@ Would you like to overwrite them? Utils::ConsoleProcess - Cannot set up communication channel: %1 通信チャンネルを用意できません: %1 - Press <RETURN> to close this window... <リターン>キーを押してウィンドウを閉じてください... - Cannot create temporary file: %1 一時ファイルを作成できません: %1 - Cannot create temporary directory '%1': %2 一時ディレクトリ '%1' を作成できません: %2 - 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 プログラムのハンドルが取得できません: %1 - Cannot obtain exit status from inferior: %1 プログラムの終了ステータスが取得できません: %1 - Cannot start the terminal emulator '%1'. 端末エミュレータ '%1' を起動できません。 - Cannot create socket '%1': %2 ソケット '%1' を作成できません: %2 @@ -2072,49 +1675,41 @@ Would you like to overwrite them? Utils::FileNameValidatingLineEdit - Name is empty. - ファイル名が未入力です。 + ファイル名が未入力です。 - Name contains white space. - ファイル名に空白が含まれています。 + ファイル名に空白が含まれています。 - Invalid character '%1'. - '%1' は無効な文字です。 + '%1' は無効な文字です。 - Invalid characters '%1'. - '%1' は無効な文字列です。 + '%1' は無効な文字列です。 - Name matches MS Windows device. (%1). - ファイル名が MS Windows デバイス (%1) と一致しています。 + ファイル名が MS Windows デバイス (%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 件見つかりました。 @@ -2124,82 +1719,66 @@ Would you like to overwrite them? Utils::NewClassWidget - Invalid base class name 無効な基底クラス名 - Invalid header file name: '%1' 無効なヘッダーファイル名: '%1' - Invalid source file name: '%1' 無効なソースファイル名: '%1' - Invalid form file name: '%1' 無効なフォームファイル名: '%1' - Inherits QObject QObject を継承 - None なし - Inherits QWidget QWidget を継承 - &Class name: クラス名(&C): - &Base class: 基底クラス(&B): - &Type information: 型情報(&T): - Based on QSharedData QSharedData に基づく - &Header file: ヘッダーファイル(&H): - &Source file: ソースファイル(&S): - &Generate form: フォームを生成する(&G): - &Form file: フォーム ファイル(&F): - &Path: パス(&P): @@ -2207,47 +1786,38 @@ Would you like to overwrite them? Utils::PathChooser - Choose... 選択... - Browse... 参照... - Choose Directory ディレクトリを選択してください - Choose File ファイルを選択してください - The path must not be empty. パスは空にはできません。 - The path '%1' does not exist. パス '%1' は存在しません。 - The path '%1' is not a directory. パス '%1' はディレクトリではありません。 - The path '%1' is not a file. パス '%1' はファイルではありません。 - Path: パス: @@ -2255,27 +1825,22 @@ Would you like to overwrite them? Utils::PathListEditor - Insert... 挿入... - Add... 追加... - Delete Line 行削除 - Clear クリア - From "%1" "%1"から @@ -2283,37 +1848,30 @@ Would you like to overwrite them? 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 プロジェクトのデフォルトパスとして使用 @@ -2321,7 +1879,6 @@ Would you like to overwrite them? Utils::ProjectNameValidatingLineEdit - Invalid character '.'. '.'. は無効な文字です。 @@ -2329,17 +1886,14 @@ Would you like to overwrite them? Utils::SubmitEditorWidget - Subversion Submit Subversion コミット - Des&cription 説明(&C) - F&iles ファイル(&I) @@ -2347,17 +1901,14 @@ Would you like to overwrite them? Utils::WizardPage - Name: 名前: - Path: パス: - Choose the Location パスを選択してください @@ -2365,40 +1916,45 @@ Would you like to overwrite them? 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以外で変更されています。再読込して、変更内容を廃棄しますか? + 保存されていないファイル %1 は Qt Creator以外で変更されています。再読込して、変更内容を廃棄しますか? - The file %1 has changed outside Qt Creator. Do you want to reload it? - ファイル %1 は Qt Creator以外で変更されています。再読込しますか? + ファイル %1 は Qt Creator以外で変更されています。再読込しますか? CppEditor::Internal::CPPEditor - Sort alphabetically + アルファベット順にソート + + + Sort Alphabetically アルファベット順にソート - This change cannot be undone. この変更は正常に完了できない可能性があります。 - Yes, I know what I am doing. はい、分かっています。 - Unused variable 未使用の変数 @@ -2406,17 +1962,14 @@ Would you like to overwrite them? CppEditor::Internal::ClassNamePage - Enter Class Name クラス名を入力してください - The header and source file names will be derived from the class name ヘッダーファイルとソースファイルの名前はクラス名を元にします - Configure... 構成... @@ -2424,7 +1977,6 @@ Would you like to overwrite them? CppEditor::Internal::CppClassWizard - Error while generating file contents. ファイル生成中にエラーが発生。 @@ -2432,12 +1984,10 @@ Would you like to overwrite them? CppEditor::Internal::CppClassWizardDialog - C++ Class Wizard C++ クラス ウィザード - Details 詳細 @@ -2445,62 +1995,50 @@ Would you like to overwrite them? CppEditor::Internal::CppPlugin - C++ Header File C++ ヘッダーファイル - Creates a C++ header and a source file for a new class that you can add to a C++ project. C++ プロジェクトに追加可能な新しい 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 メソッドの宣言/定義を切り替えて表示する - Rename Symbol Under Cursor カーソル位置のシンボルの名前を変更する - Update Code Model コード モデルを更新する - C++ Class C++ クラス - Find Usages 出現箇所の検索 - Ctrl+Shift+U Ctrl+Shift+U @@ -2508,22 +2046,18 @@ Would you like to overwrite them? CppFileSettingsPage - Header suffix: ヘッダーの拡張子: - Source suffix: ソースの拡張子: - Lower case file names ファイル名を小文字にする - License template: ライセンス テンプレート: @@ -2531,7 +2065,6 @@ Would you like to overwrite them? CppPreprocessor - %1: No such file or directory %1: そのようなファイルもしくはディレクトリはありません @@ -2539,12 +2072,10 @@ Would you like to overwrite them? CppTools::Internal::CppModelManager - Scanning スキャン中 - Parsing 解析中 @@ -2552,12 +2083,10 @@ Would you like to overwrite them? CppTools - File Naming ファイル命名規則 - C++ C++ @@ -2565,7 +2094,6 @@ Would you like to overwrite them? CppTools::Internal::CompletionSettingsPage - Completion 補完 @@ -2573,7 +2101,6 @@ Would you like to overwrite them? CppTools::Internal::CppClassesFilter - Classes クラス @@ -2581,7 +2108,6 @@ Would you like to overwrite them? CppTools::Internal::CppFunctionsFilter - Methods メソッド @@ -2589,7 +2115,6 @@ Would you like to overwrite them? CppTools::Internal::CppLocatorFilter - Classes and Methods クラスとメソッド @@ -2597,12 +2122,10 @@ Would you like to overwrite them? CppTools::Internal::CppToolsPlugin - &C++ C++(&C) - Switch Header/Source ヘッダー/ソースの切替 @@ -2610,7 +2133,6 @@ Would you like to overwrite them? CppTools::Internal::FunctionArgumentWidget - %1 of %2 %1/%2 @@ -2618,37 +2140,115 @@ Would you like to overwrite them? Debugger - General 概要 - Debugger デバッガ - <Encoding error> <エンコーディングエラー> + + Error Loading Symbols + シンボル読み込みでエラー + + + No executable to load symbols from specified. + 指定されたシンボルを読み込む為の実行ファイルがありません。 + + + Symbols found. + シンボルが見つかりました。 + + + Loading symbols from "%1" failed: + + "%1" からのシンボル読み込みが失敗しました: + + + + Attached to core temporarily. + 一時的にコアファイルにアタッチしました。 + + + Unable to determine executable from core file. + コアファイルからの実行ファイル特定ができません。 + + + Attached to core. + コアファイルにアタッチしました。 + + + Attach to core "%1" failed: + + コアファイル "%1" へのアタッチが失敗しました: + + + + Cannot set up communication with child process: %1 + 子プロセスと通信できません: %1 + + + Starting executable failed: + + 実行ファイルの開始に失敗しました: + + + + The upload process failed to start. Shell missing? + アップロードプロセスの開始に失敗しました。シェルが失われていませんか? + + + 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()がデフォルト値で呼び出されている場合等に生じるエラーです。 + + + Error + エラー + + + Starting remote executable failed: + + リモート実行が開始できませんでした: + + + + Debugger Error + デバッガエラー + QtDumperHelper - Found an outdated version of the debugging helper library (%1); version %2 is required. 旧バージョンのデバッグヘルパライブラリ(%1)が見つかりました。バージョン %2 が必要です。 - %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 既知の型: %n, Qt バージョン: %1, Qt ネームスペース: %2, ダンパバージョン: %3 - <none> <なし> @@ -2656,12 +2256,10 @@ Would you like to overwrite them? Debugger::Internal::AttachCoreDialog - Select Executable 実行ファイルの選択 - Select Core File コアファイルの選択 @@ -2669,22 +2267,18 @@ Would you like to overwrite them? Debugger::Internal::AttachExternalDialog - Process ID プロセスID - Name 名前 - State 状態 - Refresh 更新 @@ -2692,12 +2286,10 @@ Would you like to overwrite them? Debugger::Internal::AddressDialog - Select start address 開始アドレスの選択 - Enter an address: アドレスを入力してください: @@ -2705,126 +2297,94 @@ Would you like to overwrite them? Debugger::Internal::BreakHandler - - Marker File: マークされたファイル: - - Marker Line: マークされた行: - - Breakpoint Number: ブレークポイントの番号: - - Breakpoint Address: ブレークポイントのアドレス: - Property プロパティ - Requested 要求したポイント - Obtained ブレークしたポイント - Internal Number: 内部番号: - - File Name: ファイル名: - - Function Name: 関数名: - - Line Number: 行番号: - Corrected Line Number: 行番号(補正済): - - Condition: 条件: - - Ignore Count: 無視する回数: - Function 関数 - File ファイル - Line 行番号 - Number 番号 - Condition 条件 - Ignore 無視 - Address アドレス - Breakpoint will only be hit if this condition is met. この条件を満たした時だけ有効なブレークポイントです。 - Breakpoint will only be hit after being ignored so many times. 指定された回数分、無視してから有効になるブレークポイントです。 @@ -2832,102 +2392,82 @@ Would you like to overwrite them? Debugger::Internal::BreakWindow - Breakpoints ブレークポイント - Delete Breakpoint ブレークポイントの削除 - Delete All Breakpoints すべてのブレークポイントの削除 - Delete Breakpoints of "%1" "%1" のブレークポイントの削除 - Delete Breakpoints of File ファイル内のブレークポイントの削除 - Adjust Column Widths to Contents 内容に合わせて列幅を調整する - Always Adjust Column Widths to Contents 常に内容に合わせて列幅を調整する - Edit Condition... 条件の編集... - Synchronize Breakpoints ブレークポイントの同期 - Disable Selected Breakpoints 選択されたブレークポイントの無効化 - Enable Selected Breakpoints 選択されたブレークポイントの有効化 - Disable Breakpoint ブレークポイントの無効化 - Enable Breakpoint ブレークポイントの有効化 - Use Short Path 短いパスを使用する - Use Full Path フルパスを使用する - Set Breakpoint at Function... 関数にブレークポイントを設定する... - Set Breakpoint at Function "main" "main"関数にブレークポイントを設定する - Set Breakpoint at "throw" "throw" にブレークポイントを設定する - Set Breakpoint at "catch" "catch" にブレークポイントを設定する - Conditions on Breakpoint %1 ブレークポイント(%1)の条件指定 @@ -2935,154 +2475,123 @@ Would you like to overwrite them? Debugger::Internal::CdbDebugEngine - The function "%1()" failed: %2 Function call failed 関数 "%1()" の実行に失敗しました: %2 - Version: %1 バージョン: %1 - <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> <html>インストール済み <i>Debugging Tools for Windows</i> (%1) は多少バージョンが古いです。Qt のデータ型を正しく表示できるようにする為、バージョン %2 へのアップグレードをお勧めします。</html> - Debugger デバッガ - The dumper library was not found at %1. %1 にダンパライブラリが見つかりません。 - The console stub process was unable to start '%1'. コンソールスタブプロセス '%1' が開始できません。 - Attaching to core files is not supported! コアファイルへのアタッチはサポートされていません! - 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 の停止中 - Running requested... 実行しようとしています... - Running up to %1:%2... %1:%2 行目まで実行中... - Running up to function '%1()'... 関数 '%1()' まで実行中... - Jump to line is not implemented 指定行まで実行 は未実装です - Unable to assign the value '%1' to '%2': %3 '%2' へ値 '%1' を割り当てられません: %3 - Unable to retrieve %1 bytes of memory at 0x%2: %3 メモリの 0x%2 から %1 bytes 分を読み取れません: %3 - Cannot retrieve symbols while the debuggee is running. デバッガの実行中にはシンボルの解決はできません。 - - Debugger Error デバッガエラー - 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 @@ -3090,57 +2599,46 @@ Would you like to overwrite them? Debugger::Internal::CdbDumperHelper - injection injection - debugger call デバッガ呼び出し - Loading the custom dumper library '%1' (%2) ... カスタムダンパライブラリ '%1' (%2) を読込中です... - Loading of the custom dumper library '%1' (%2) failed: %3 カスタムダンパライブラリ '%1' (%2) の読込に失敗しました: %3 - Loaded the custom dumper library '%1' (%2). カスタムダンパライブラリ '%1' (%2) を読み込みました。 - Stopped / Custom dumper library initialized. 停止中 / カスタムダンパライブラリを初期化しました。 - Disabling dumpers due to debuggee crash... デバッグ対象がクラッシュしたためダンパの使用を禁止します... - The debuggee does not appear to be Qt application. デバッグ対象は Qt のアプリケーションではありません。 - Initializing dumpers... ダンパの初期化中... - The custom dumper library could not be initialized: %1 カスタムダンパライブラリが初期化できませんでした: %1 - Querying dumpers for '%1'/'%2' (%3) ダンパの確認中 '%1'/'%2' (%3) @@ -3148,24 +2646,33 @@ Would you like to overwrite them? Debugger::Internal::CdbOptionsPageWidget - + <html><body><p>Specify the path to the <a href="%1">Debugging Tools for Windows</a> (%2) here.</p><p><b>Note:</b> Restarting Qt Creator is required for these settings to take effect.</p></p></body></html> + Label text for path configuration. %2 is "x-bit version". + <html><body><p>ここに <a href="%1">Debugging Tools for Windows</a> (%2) のパスを指定してください。</p><p><b>メモ:</b> この設定を有効にするには Qt Creator を再起動する必要があります。</p></p></body></html> + + + 64-bit version + 64 bit バージョン + + + 32-bit version + 32 bit バージョン + + Autodetect 自動検出 - "Debugging Tools for Windows" could not be found. "Windows用デバッグツール"が見つかりません。 - Checked: %1 確認したディレクトリ: %1 - Autodetection 自動検出 @@ -3173,17 +2680,14 @@ Would you like to overwrite them? Debugger::Internal::CdbSymbolPathListEditor - Symbol Server... シンボルサーバ... - Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. OS のライブラリのシンボルを提供している Microsoft Symbol Serverを追加する。ローカルシンボルキャッシュのあるディレクトリの指定が必要です。 - Pick a local cache directory ローカルのキャッシュディレクトリを選ぶ @@ -3191,7 +2695,6 @@ Would you like to overwrite them? Debugger::Internal::DebugMode - Debug デバッグ @@ -3199,166 +2702,130 @@ Would you like to overwrite them? Debugger::DebuggerManager - 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 Outermost Function 最上位の関数まで実行 - Immediately Return From Inner Function 内部関数からすぐに抜ける - - Jump to Line 指定行にジャンプ - Toggle Breakpoint ブレークポイントの切替 - - Add to Watch Window 監視ウィンドウに追加 - Snapshot スナップショット - Reverse Direction 逆方向 - Stopped 停止しました - Exited 終了しました - Turn off helper usage デバッグヘルパを使用しない - 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. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. デバッグ ヘルパは Qt や STL のデータ型の値を分かりやすくする為に使われます。デバッグ ヘルパはシステムにインストールされている Qt の各バージョン、それぞれにおいてコンパイルされている必要があります。デバッグ・ヘルパをコンパイルするにはオプションの Qt バージョンのページで、使用する Qt バージョンを選択して 'リビルド' をクリックしてください。 - Running... 実行中... - Changing breakpoint state requires either a fully running or fully stopped application. ブレークポイントの状態を変更するには、アプリケーションが完全に起動しているか停止している必要があります。 - Warning 警告 - Save Debugger Log デバッガ ログの保存 - Stop Debugger デバッガの停止 - Open Qt preferences Qt の設定画面を開く - The application requires the debugger engine '%1', which is disabled. アプリケーションが要求するデバッグ エンジン '%1' は、使用できません。 - Starting debugger for tool chain '%1'... ツール チェイン '%1' のデバッグ開始しています... - Cannot debug '%1' (tool chain: '%2'): %3 '%1' (ツール チェイン: '%2') のデバッグができません: %3 - %1 (explicitly set in the Debugger Options) %1 (デバッガ オプション内で設定) - Continue anyway 無視して続行 - Debugging helper missing デバッグヘルパが見つかりません @@ -3366,7 +2833,6 @@ Would you like to overwrite them? Debugger::Internal::DebuggerOutputWindow - Debugger デバッガ @@ -3374,102 +2840,82 @@ Would you like to overwrite them? Debugger::Internal::DebuggerPlugin - Option '%1' is missing the parameter. オプション %1 に必要なパラメータが不足しています。 - The parameter '%1' of option '%2' is not a number. オプション '%2' のパラメータ '%1' が数字ではありません。 - Invalid debugger option: %1 無効なデバッグオプション: %1 - Error evaluating command line arguments: %1 コマンドライン引数の評価中にエラーが発生しました: %1 - Start and Debug External Application... 外部アプリケーションのデバッグ実行... - Attach to Running External Application... 実行中の外部アプリケーションにアタッチ... - Attach to Core... コアファイルへアタッチ... - Start and Attach to Remote Application... リモートアプリケーションを実行してアタッチ... - Threads: スレッド: - Attaching to PID %1. PID %1 にアタッチしています。 - Remove Breakpoint ブレークポイントの削除 - Disable Breakpoint ブレークポイントの無効化 - Enable Breakpoint ブレークポイントの有効化 - Set Breakpoint ブレークポイントのセット - Warning 警告 - Cannot attach to PID 0 PID 0 にアタッチできません - Attaching to core %1. コアファイル %1 にアタッチします。 - Stop Debugger/Interrupt Debugger デバッグ停止/デバッガに割り込み - Detach Debugger デバッガのデタッチ - Reset Debugger デバッガのリセット @@ -3477,19 +2923,16 @@ Would you like to overwrite them? Debugger::Internal::DebuggerListener - A debugging session is still in progress. Would you like to terminate it? デバッグセッションは、まだ実行中です。 デバッグセッションを終了しますか? - Close Debugging Session デバッグセッションを閉じる - A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? デバッグセッションは、まだ実行中です。終了しようとしているセッションの現状態は (%1) ですが、終了すると不整合状態になる可能性があります。デバッグセッションを終了しますか? @@ -3497,237 +2940,190 @@ Would you like to terminate it? Debugger::Internal::DebuggerSettings - 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. このオプションでデバッガを命令操作モードに切り替えます。この操作モードにすると、ソース位置ビューと逆アセンブルビューにおけるステップの操作は1命令毎の操作になります。 - 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. このオプションでローカル変数&監視式ビューで自動的にポインタを逆参照するかどうかを切り替えます。これはツリービューの階層にも作用し、表示されていない中間レベルのデータが失われたりします。 - Debugger Properties... デバッガプロパティ... - Adjust Column Widths to Contents 内容に合わせて列幅を調整する - Always Adjust Column Widths to Contents 常に内容に合わせて列幅を調整する - Use Alternating Row Colors 行ごとに色を変える - Show a Message Box When Receiving a Signal シグナル受信時にメッセージボックスを表示する - Log Time Stamps タイムスタンプの表示 - Verbose Log 冗長なログ出力 - Operate by Instruction 命令で操作 - Dereference Pointers Automatically 自動的にポインタを逆参照する - Watch Expression "%1" 監視式 "%1" - Remove Watch Expression "%1" 監視式 "%1" の削除 - 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 デバッグヘルパが使用可能か再チェック - Synchronize Breakpoints ブレークポイントの同期 - 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. これを有効にするとステップ実行時にブレークポイントの同期が行われ、共有ライブラリを読み込んだ後にブレークポイント情報が最新の状態になります。しかしステップ実行が遅くなります。 - Break on "throw" "throw" で停止 - Break on "catch" "catch" で停止 - 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. デバッグ中に変数の値をツールチップで表示します。しかしデバッグ実行の速度が低下する上に、スコープを無視した不確かな情報しか表示しない為、デフォルトではチェックOFFとなっています。 - 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 事後検証デバッグとして登録する - Reload Full Stack すべてのスタックの再読込 - Create Full Backtrace 完全なバックトレースの生成 - Execute Line 一行実行 - Change debugger language automatically 自動的にデバッガ言語を変更する - Changes the debugger language according to the currently opened file. 開いているファイルにあわせてデバッガ言語を切り替えます。 - Checking this will enable tooltips in the locals view during debugging. これをチェックするとデバッグ中、ローカル変数 ビューでツールチップが有効になります。 - Checking this will enable tooltips in the breakpoints view during debugging. これをチェックするとデバッグ中、ブレークポイント ビューでツールチップが有効になります。 - Checking this will show a column with address information in the breakpoint view during debugging. これをチェックすると、デバッグ中にブレークポイント ビューでアドレス情報が表示されるようになります。 - Checking this will show a column with address information in the stack view during debugging. これをチェックすると、デバッグ中にスタック ビューでアドレス情報が表示されるようになります。 @@ -3735,17 +3131,14 @@ Would you like to terminate it? Debugger::Internal::DebuggingHelperOptionPage - Debugging Helper デバッグヘルパ - Choose DebuggingHelper Location デバッグヘルパの位置を選択する - Ctrl+Shift+F11 Ctrl+Shift+F11 @@ -3753,456 +3146,369 @@ Would you like to terminate it? Debugger::Internal::GdbEngine - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. Gdb プロセスの開始に失敗しました。Gdb コマンド '%1' が見つからないか、コマンドを起動する為のパーミッションがない可能性があります。 - The Gdb process crashed some time after starting successfully. Gdb プロセスは起動に成功した後、クラッシュしました。 - 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 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 プロセスからの応答待機中にエラーが発生しました。プロセスが既に終了している可能性があります。 - 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 秒間反応がありません。無限ループに陥っているか、操作に時間を要している可能性があります。継続して待機するかデバッグを中止する事ができます。 - Gdb not responding Gdb が応答しません - Give gdb more time 待機する - Stop debugging デバッグを停止します - <unknown> <不明> - Jumped. Stopped. - ジャンプして停止しました。 + ジャンプして停止しました。 - Application exited with exit code %1 アプリケーションは終了コード %1 で終了しました - Application exited after receiving signal %1 シグナル %1 を受けてアプリケーションが終了しました - Application exited normally アプリケーションは正常に終了しました - Loading %1... %1 を読み込んでいます... - Failed to start application: アプリケーションの開始に失敗しました: - Failed to start application アプリケーションの開始に失敗しました - An unknown error in the Gdb process occurred. Gdb プロセス内で不明なエラーが発生しました。 - Running... 実行中... - Stop requested... 停止させようとしています... - - - Executable failed 実行失敗 - Process failed to start. プロセスの開始に失敗しました。 - - Executable failed: %1 実行失敗: %1 - <p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table> <p>プログラムは、オペレーティング システムからのシグナルを受信した為、停止しました。<p><table><tr><td>シグナル名 : </td><td>%1</td></tr><tr><td>シグナルの意味 : </td><td>%2</td></tr></table> - Signal received シグナルを受信しました - Stopped: "%1" 停止: "%1" - Continuing after temporary stop... 一時停止後の継続中です... - Running requested... 実行しようとしています... - 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... 関数からすぐに抜けるように要求しています... - ATTEMPT BREAKPOINT SYNC ブレークポイントを同期しようとしています - <unknown> address End address of loaded module <不明> - Jumping out of bogus frame... 偽フレームから抜け出します... - Dumper version %1, %n custom dumpers found. ダンパ バージョン %1、%n 個のカスタムダンパが見つかりました。 - The debugging helper library was not found at %1. デバッグヘルパライブラリが %1 に見つかりませんでした。 - - - - Disassembler failed: %1 逆アセンブル失敗: %1 - Unable to start gdb '%1': %2 '%1' にある Gdb を開始できません: %2 - Gdb I/O Error Gdb I/O エラー - Unexpected Gdb Exit 予期しない Gdb の終了 - The gdb process exited unexpectedly (%1). Gdb プロセスは予期せず終了しました (%1)。 - + Jumped. Stopped + ジャンプして停止しました + + + Target line hit. Stopped + ブレークポイントにヒットし、停止しました + + Stopped at breakpoint %1 in thread %2. スレッド %2 内のブレークポイント %1 で停止しました。 - Stopped: %1 by signal %2 シグナル %2 によって %1 が停止しました - Failed to shut down application アプリケーションの終了に失敗しました - There is no gdb binary available for '%1' '%1' に使用可能な gdb バイナリがありません - Launching 起動中 - - Snapshot Creation Error スナップショット作成エラー - Cannot create snapshot file. スナップショット ファイルを作成できません。 - Cannot create snapshot: スナップショットを作成できません: - Snapshot Reloading スナップショットを再読込中 - In order to load snapshots the debugged process needs to be stopped. Continuation will not be possible afterwards. Do you want to stop the debugged process and load the selected snapshot? スナップショットを読み込むには、デバッグ中のプロセスを停止する必要があります。停止後に再開することはできません。 それでもデバッグ中のプロセスを停止して選択されたスナップショットを読み込みますか? - Finished retrieving data データの受信が完了しました - crashed クラッシュ - code %1 終了コード %1 - Adapter start failed アダプタの開始が失敗しました - - Setting breakpoints... ブレークポイントの設定... - Starting inferior... プログラムを開始しています... - <Unknown> name <不明> - <Unknown> meaning <不明> - - - Execution Error 実行エラー - - - Cannot continue debugged process: デバッグ プロセスを継続できません: - Adapter crashed アダプタがクラッシュしました - Thread group %1 created. - スレッドグループ %1 を作成しました。 + スレッドグループ %1 を作成しました。 - Reading %1... %1 を読み込み中... - Processing queued commands. キューイングされたコマンドを処理しています。 - - Stopped. 停止しました。 - 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> <項目なし> - <%n items> In string list @@ -4210,32 +3516,26 @@ Do you want to stop the debugged process and load the selected snapshot? - Debugging helpers not found. デバッグヘルパが見つかりません。 - Custom dumper setup: %1 カスタム ダンパー 設定: %1 - <shadowed> <隠された変数> - <n/a> <N/A> - <anonymous union> <無名の共用体> - <no information> About variable's value <不明> @@ -4244,12 +3544,10 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::GdbOptionsPage - Gdb Gdb - Choose Location of Startup Script File 起動スクリプトのパスを選択してください @@ -4257,32 +3555,26 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ModulesModel - yes はい - no いいえ - Module name モジュール名 - Symbols read シンボル有無 - Start address 開始アドレス - End address 終端アドレス @@ -4290,82 +3582,66 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ModulesWindow - Modules モジュール - Update Module List モジュールリストをアップデート - Show Source Files for Module "%1" モジュール "%1" のソースファイルを表示 - Load Symbols for All Modules すべてのモジュールのシンボルの読込 - Load Symbols for Module モジュールのシンボルの読込 - Edit File ファイルの編集 - Show Symbols シンボルを表示 - Load Symbols for Module "%1" モジュール "%1" のシンボルの読込 - Edit File "%1" ファイル "%1" を編集する - Show Symbols in File "%1" ファイル "%1" のシンボルを表示する - Adjust Column Widths to Contents 内容に合わせて列幅を調整する - Always Adjust Column Widths to Contents 常に内容に合わせて列幅を調整する - Address アドレス - Code コード - Symbol シンボル - Symbols in "%1" "%1" のシンボル @@ -4373,17 +3649,14 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::OutputCollector - Cannot create temporary file: %1 一時ファイルを作成できません: %1 - Cannot create FiFo %1: %2 FiFo %1 を作成できません: %2 - Cannot open FiFo %1: %2 FiFo %1 を開けません: %2 @@ -4391,12 +3664,10 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::RegisterHandler - Name 名前 - Value (base %1) 値 (%1進表示) @@ -4404,52 +3675,42 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::RegisterWindow - Registers レジスタ - Reload Register Listing レジスタのリストの再読込 - Open Memory Editor メモリ エディタを開く - Open Memory Editor at %1 アドレス位置 %1 でメモリ エディタを開く - Hexadecimal 16進数 - Decimal 10進数 - Octal 8進数 - Binary 2進数 - Adjust Column Widths to Contents 内容に合わせて列幅を調整する - Always Adjust Column Widths to Contents 常に内容に合わせて列幅を調整する @@ -4457,32 +3718,26 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ScriptEngine - 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. 停止しました。 @@ -4490,12 +3745,10 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::SourceFilesModel - Internal name 内部名 - Full name 完全名 @@ -4503,22 +3756,18 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::SourceFilesWindow - Source Files ソース ファイル - Reload Data データの再読込 - Open File ファイルを開く - Open File "%1"' ファイル "%1" を開く @@ -4526,73 +3775,54 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::StackHandler - ... ... - <More> <さらに表示> - - Address: アドレス: - - Function: 関数: - - File: ファイル: - - Line: 行番号: - - From: From: - - To: To: - Level 階層 - Function 関数 - File ファイル - Line 行番号 - Address アドレス @@ -4600,42 +3830,34 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ThreadsHandler - Function 関数 - File ファイル - Line 行番号 - Address アドレス - Thread: %1 スレッド: %1 - Thread: %1 at %2 (0x%3) スレッド: %1 は %2 (0x%3) で停止中 - Thread: %1 at %2, %3:%4 (0x%5) スレッド: %1 は %3:%4 行目の %2 (0x%5) で停止中 - Thread ID スレッドID @@ -4643,42 +3865,34 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::StackWindow - Stack スタック - Copy Contents to Clipboard 内容をクリップボードにコピー - Open Memory Editor メモリ エディタを開く - Open Memory Editor at %1 アドレス位置 %1 でメモリ エディタを開く - Open Disassembler 逆アセンブラを開く - Open Disassembler at %1 アドレス位置 %1 で逆アセンブラを開く - Adjust Column Widths to Contents 内容に合わせて列幅を調整する - Always Adjust Column Widths to Contents 常に内容に合わせて列幅を調整する @@ -4686,17 +3900,14 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::StartExternalDialog - Select Executable 実行ファイルの選択 - Executable: 実行ファイル: - Arguments: 引数: @@ -4704,22 +3915,18 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::StartRemoteDialog - Select Debugger デバッガの選択 - Select Executable 実行ファイルの選択 - Select Sysroot Sysroot の選択 - Select Start Script スタートアップ スクリプトの選択 @@ -4727,17 +3934,14 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::ThreadsWindow - Thread スレッド - Adjust Column Widths to Contents 内容に合わせて列幅を調整する - Always Adjust Column Widths to Contents 常に内容に合わせて列幅を調整する @@ -4745,13 +3949,10 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::WatchData - - <not in scope> <スコープ範囲外> - %1 <shadowed %2> %1 <%2 個の隠された変数> @@ -4759,77 +3960,62 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::WatchHandler - Name 名前 - Expression - ... <cut off> ... <省略> - Object Address オブジェクトアドレス - Internal ID 内部ID - Generation 世代 - <Edit> <編集> - Root ルート - Locals ローカル - Tooltip ツールチップ - unknown address 不明なアドレス - %1 object at %2 %2 の %1 型のオブジェクト - Watchers 監視式 - Value - Type @@ -4837,62 +4023,50 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::WatchModel - decimal 10進数 - hexadecimal 16進数 - binary 2進数 - octal 8進数 - Bald pointer 生ポインタ - Latin1 string Latin-1 文字列 - UTF8 string UTF-8 文字列 - UTF16 string UTF-16 文字列 - UCS4 string UCS-4 文字列 - Name 名前 - Value - Type @@ -4900,67 +4074,54 @@ Do you want to stop the debugged process and load the selected snapshot? Debugger::Internal::WatchWindow - Locals and Watchers ローカル変数と監視式 - Change Format for Type "%1" '%1' 型のフォーマットを変更 - Change Format for Type 型のフォーマットを変更 - Change Format for Object at %1 アドレス %1 のオブジェクトのフォーマットを変更 - Clear クリア - Change Format for Object オブジェクトのフォーマットを変更 - Insert New Watch Item 新しい監視式の挿入 - 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 常に内容に合わせて列幅を調整する @@ -4968,12 +4129,10 @@ Do you want to stop the debugged process and load the selected snapshot? DebuggerPane - Clear Contents 内容をクリア - Save Contents 内容を保存 @@ -4981,32 +4140,26 @@ Do you want to stop the debugged process and load the selected snapshot? DebuggingHelperOptionPage - Use debugging helper from custom location 指定した場所からデバッグヘルパを使用する - Location: パス: - Debug 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. このオプションをチェックすると、変数がデバッガ割り込み時に値が代入されているかどうかを調査する為に Qt Creator のコードモデルが使用されるようになります。 - Use code model コード モデルを使用する - <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> @@ -5015,7 +4168,6 @@ Do you want to stop the debugged process and load the selected snapshot? - Use Debugging Helper デバッグヘルパを使用する @@ -5023,12 +4175,10 @@ Do you want to stop the debugged process and load the selected snapshot? DependenciesModel - Unable to add dependency 依存関係の追加不可 - This would create a circular dependency. 循環依存を作り出してしまいます。 @@ -5036,49 +4186,40 @@ Do you want to stop the debugged process and load the selected snapshot? 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> にルート要素がありません。 - Xml Editor XML エディタ - Designer デザイナ - Class Generation クラス 生成 - Form Editor フォーム エディタ - The generated header of the form '%1' could 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' 向けに生成されたヘッダーがコードモデル内に見つかりませんでした。 @@ -5088,17 +4229,14 @@ Rebuilding the project might help. Designer::Internal::FormClassWizardDialog - Qt Designer Form Class Qt Designer フォーム クラス - Form Template フォーム テンプレート - Class Details クラスの詳細 @@ -5106,22 +4244,18 @@ Rebuilding the project might help. Designer::Internal::FormClassWizardPage - %1 - Error %1 - エラー - Class クラス - Configure... 構成... - Choose a Class Name クラス名を選択してください @@ -5129,22 +4263,18 @@ Rebuilding the project might help. Designer::Internal::FormEditorPlugin - Qt Designer Form Qt Designer フォーム - Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt C++ Project. 既存の Qt C++ プロジェクトに追加可能な Qt Designer フォームとそれに対応したクラス (C++ ヘッダーとソースファイル) を作成します。 - Creates a Qt Designer form that you can add to a Qt C++ project. This is useful if you already have an existing class for the UI business logic. Qt C++ プロジェクトに追加可能な Qt Designer フォームを作成します。これは既に UI ビジネスロジックを実装したクラスを持っている場合に役立ちます。 - Qt Designer Form Class Qt Designer フォーム クラス @@ -5152,136 +4282,106 @@ Rebuilding the project might help. Designer::Internal::FormEditorW - Widget Box ウィジェット ボックス - - Object Inspector オブジェクト インスペクタ - Widget box ウィジェット ボックス - - Property Editor プロパティ エディタ - - Action Editor アクション エディタ - For&m Editor フォーム エディタ(&M) - F3 F3 - F4 F4 - Edit Widgets ウィジェットの編集 - Edit Signals/Slots シグナル/スロットの編集 - Edit Buddies Buddy の編集 - Edit Tab Order タブ順序の編集 - Meta+H Meta+H - Ctrl+H Ctrl+H - Ctrl+L Ctrl+L - Meta+L Meta+L - Meta+G Mega+G - Ctrl+G Ctrl+G - Meta+J Mega+J - Ctrl+J Ctrl+J - - Signals && Slots Editor シグナル/スロット エディタ - Ctrl+Alt+R Ctrl+Alt+R - About Qt Designer plugins.... Qt Designer プラグインについて... - Preview in プレビュー - Designer デザイナ - The image could not be created: %1 画像を作成できません: %1 @@ -5289,12 +4389,10 @@ Rebuilding the project might help. Designer::Internal::FormTemplateWizardPage - Choose a Form Template フォーム テンプレートを選択してください - %1 - Error %1 - エラー @@ -5302,17 +4400,14 @@ Rebuilding the project might help. Designer::Internal::FormWindowFile - Error saving %1 %1 の保存中にエラーが発生 - Unable to open %1: %2 %1 を開けません: %2 - Unable to write to %1: %2 %1 に書き込めません: %2 @@ -5320,12 +4415,10 @@ Rebuilding the project might help. Designer::Internal::FormWizardDialog - Qt Designer Form Qt Designer フォーム - Form Template フォーム テンプレート @@ -5333,28 +4426,23 @@ Rebuilding the project might help. Designer::Internal::QtCreatorIntegration - The class definition of '%1' could not be found in %2. %2 に '%1' のクラス定義が見つかりませんでした。 - 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. メソッド定義を追加できません。 @@ -5362,22 +4450,18 @@ Rebuilding the project might help. DocSettingsPage - Registered Documentation 登録済みドキュメント - Add... 追加... - Remove 削除 - Add and remove compressed help files, .qch. 圧縮済みヘルプファイル(.qch)を追加したり、削除します。 @@ -5385,57 +4469,46 @@ Rebuilding the project might help. ExtensionSystem::Internal::PluginDetailsView - Name: 名前: - Version: バージョン: - Compatibility Version: 互換性のあるバージョン: - Vendor: ベンダー: - Url: URL: - Location: パス: - Description: 説明: - Copyright: Copyright: - License: ライセンス: - Dependencies: 依存関係: - Group: グループ: @@ -5443,12 +4516,10 @@ Rebuilding the project might help. ExtensionSystem::Internal::PluginErrorView - State: 状態: - Error Message: エラー メッセージ: @@ -5456,17 +4527,14 @@ Rebuilding the project might help. ExtensionSystem::Internal::PluginSpecPrivate - File does not exist: %1 ファイルが見つかりません: %1 - Could not open file for read: %1 ファイルを読み込もうとした所、開けませんでした: %1 - Error parsing file %1: %2, at line %3, column %4 ファイル %1 の %3 行目 %4 桁目を解析中にエラー: %2 @@ -5474,22 +4542,18 @@ Rebuilding the project might help. ExtensionSystem::Internal::PluginView - Name 名前 - Version バージョン - Vendor ベンダー - Load 読込 @@ -5497,82 +4561,66 @@ Rebuilding the project might help. 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 プラグインはライフサイクルに従って終了し、削除されました @@ -5580,27 +4628,22 @@ Rebuilding the project might help. ExtensionSystem::PluginManager - Circular dependency detected: 循環依存が見つかりました: - %1(%2) depends on %1(%2) の依存先 - %1(%2) %1(%2) - - Cannot load plugin because dependency failed to load: %1(%2) Reason: %3 %3 の理由により依存する %1(%2) を読み込めなかった為、プラグインを読み込めません @@ -5609,12 +4652,10 @@ Reason: %3 FakeVim::Internal - Use Vim-style Editing Vim スタイル編集を使用する - Read .vimrc .vimrc を読み込む @@ -5622,97 +4663,78 @@ Reason: %3 FakeVim::Internal::FakeVimHandler - Not implemented in FakeVim FakeVim では実装していません - %1%2% %1%2% - %1All %1All - - "%1" %2 %3L, %4C written "%1" %2 %3L, %4C 書き込みました - "%1" %2L, %3C "%1" %2L, %3C - %n lines filtered %n 行、フィルタしました - Can't open file %1 ファイル %1 を開けません - 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 行を %2 回 シフト(%1)しました - Pattern not found: パターンが見つかりません: - search hit BOTTOM, continuing at TOP 末尾まで到達したため、先頭から検索しました - search hit TOP, continuing at BOTTOM 先頭まで到達したため、末尾から検索しました - Already at oldest change これ以上、元に戻せません - Already at newest change これ以上、やり直せません @@ -5720,12 +4742,10 @@ Reason: %3 FakeVim::Internal::FakeVimOptionPage - General 概要 - FakeVim FakeVim @@ -5733,40 +4753,32 @@ Reason: %3 FakeVim::Internal::FakeVimPluginPrivate - Switch to next file 次のファイルに切り替える - Switch to previous file 前のファイルに切り替える - - Quit FakeVim FakeVim を終了する - File not saved ファイルは保存されませんでした - Saving succeeded 保存に成功しました - %n files not saved %n 個のファイルは保存されていません - FakeVim Information FakeVim 情報 @@ -5774,102 +4786,82 @@ Reason: %3 FakeVimOptionPage - Use FakeVim FakeVim を使用する - Shift width: シフト幅: - vim's "tabstop" option vim の "tabstop" オプション - Tabulator size: タブの幅: - Backspace: Backspace: - Read .vimrc .vimrc を読み込む - Vim Behavior Vim の挙動 - Automatic indentation 自動的にインデントする - Start of line ページアップ/ダウン時に行頭に移動する - Smart indentation スマートインデントを使用する - Use search dialog 検索ダイアログを使用する - Expand tabulators タブを展開する - Smart tabulators スマートタブを使用する - Highlight search results 検索結果をハイライトする - Incremental search インクリメンタルサーチ - Keyword characters: キーワード文字列: - Copy Text Editor Settings テキストエディタの設定をコピーする - Set Qt Style Qt のスタイルに設定する - Set Plain Style 素のスタイルに設定する - Show position of text marks マークの位置を表示する @@ -5877,12 +4869,10 @@ Reason: %3 FilterNameDialogClass - Add Filter Name フィルタの追加 - Filter Name: フィルタ名: @@ -5890,32 +4880,26 @@ Reason: %3 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. @@ -5930,42 +4914,34 @@ The attributes are defined in the documents. Select them to display a set of rel Find::Internal::FindDialog - Search for... 検索... - Sc&ope: 範囲(&O): - &Search 検索(&S) - Search &for: 検索文字列(&F): - Close 閉じる - &Case sensitive 大文字/小文字を区別する(&C) - &Whole words only 単語単位で検索する(&W) - Search && Replace 検索 && 置換 @@ -5973,62 +4949,50 @@ The attributes are defined in the documents. Select them to display a set of rel Find::Internal::FindToolBar - Find/Replace 検索/置換 - Enter Find String 検索する文字列の入力 - Ctrl+E Ctrl+E - Find Next 次を検索 - Find Previous 前を検索 - Replace && Find Next 置換して次を検索 - Ctrl+= Ctrl+= - Replace && Find Previous 置換して前を検索 - Replace All すべて置換 - Case Sensitive 大文字/小文字を区別する - Whole Words Only 単語単位で検索する - Use Regular Expressions 正規表現を使用する @@ -6036,27 +5000,22 @@ The attributes are defined in the documents. Select them to display a set of rel Find::Internal::FindWidget - Find 検索 - Find: 検索文字列: - Replace with: 置換文字列: - All すべて - ... ... @@ -6064,32 +5023,26 @@ The attributes are defined in the documents. Select them to display a set of rel Find::SearchResultWindow - Search Results 検索結果 - No matches found! 見つかりませんでした! - Expand All すべて展開 - Replace with: 置換文字列: - Replace all occurrences すべての出現箇所を置換します - Replace 置換 @@ -6097,57 +5050,46 @@ The attributes are defined in the documents. Select them to display a set of rel GdbOptionsPage - 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 のスタートアップスクリプト: - 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 Gdb - Gdb timeout: 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 @@ -6158,7 +5100,6 @@ on slow machines. In this case, the value should be increased. ソースファイルの一覧を表示する場合は不十分かも知れません。そのような場合は、この値を大きくしてください。 - When this option is checked, the debugger plugin attempts to extract full path information for all source files from gdb. This is a slow process but enables setting breakpoints in files with the same file @@ -6169,34 +5110,28 @@ name in different directories. 同名ファイルに設定したブレークポイントでも正しくデバッグできるようになります。 - Use full path information to set breakpoints ブレークポイント設定にフルパスを使用する - 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. このオプションがチェックされていると、デバッグをスムーズに行うために'ステップ イン'で行毎に停止する事がある程度抑止されます。 つまり、例としてアトミックな参照カウントのコードがスキップされたりシグナル発行部分の'ステップ イン'で接続先のスロットまで直接進んだりします。 - Skip known frames when stepping ステップ実行時は既知のフレームをスキップする - Show a message box when receiving a signal シグナル受信時にメッセージボックスを表示する - Behavior of Breakpoint Setting in Plugins プラグイン内に設定されたブレークポイントの動作 @@ -6204,17 +5139,14 @@ name in different directories. GenericMakeStep - Override %1: %1 の代わりに使用するコマンド: - Make arguments: Make の引数: - Targets: ターゲット: @@ -6222,17 +5154,14 @@ name in different directories. GenericProjectManager::Internal::GenericBuildConfigurationFactory - Build ビルド - New configuration 新しい構成 - New Configuration Name: 新しい構成名: @@ -6240,22 +5169,18 @@ name in different directories. GenericProjectManager::Internal::GenericBuildSettingsWidget - Configuration Name: 構成名: - Build directory: ビルド ディレクトリ: - Tool Chain: ツール チェイン: - Generic Manager 標準マネージャ @@ -6263,18 +5188,15 @@ name in different directories. GenericProjectManager::Internal::GenericMakeStepConfigWidget - Make GenericMakestep display name. Make - Override %1: %1 の代わりに使用するコマンド: - <b>Make:</b> %1 %2 <b>Make:</b> %1 %2 @@ -6282,12 +5204,10 @@ name in different directories. GenericProjectManager::Internal::GenericProjectWizard - Import Existing Project 既存プロジェクトのインポート - Imports existing projects that do not use qmake or CMake. This allows you to use Qt Creator as a code editor. qmake も CMake も使用しない既存のプロジェクトをインポートします。Qt Creator をコーディングする時のエディタとして使用する事ができます。 @@ -6295,27 +5215,22 @@ name in different directories. GenericProjectManager::Internal::GenericProjectWizardDialog - Import Existing Project 既存プロジェクトのインポート - Project Name and Location プロジェクト名とパス - Project name: プロジェクト名: - Location: パス: - Location パス @@ -6323,77 +5238,62 @@ name in different directories. Git::Internal::BranchDialog - Checkout チェックアウト - Diff Diff - Refresh 更新 - Delete... 削除... - Delete Branch ブランチの削除 - Would you like to delete the branch '%1'? ブランチ '%1' を削除しますか? - Failed to delete branch ブランチの削除に失敗 - Failed to create branch ブランチの作成に失敗 - Failed to stash stash に失敗 - Checkout failed チェックアウトに失敗しました - Would you like to create a local branch '%1' tracking the remote branch '%2'? リモートブランチ '%2' を追随するローカルブランチ '%1' を作成しますか? - Create branch ブランチの作成 - Failed to create a tracking branch - Branches ブランチ - Remote Branches リモートブランチ @@ -6401,22 +5301,18 @@ name in different directories. Git::Internal::ChangeSelectionDialog - Select a Git Commit Git コミットの選択 - Select Git Repository Git レポジトリの選択 - Error エラー - Selected directory is not a Git repository 選択されたディレクトリは git のレポジトリではありません @@ -6424,17 +5320,18 @@ name in different directories. Git::Internal::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. Qt Creator 用 git プラグイン はサーバとうまく連携できない点にご注意下さい。手動でのssh認証もうまく動きません。 - + Unable to determine the repository for %1. + リポジトリ %1 を確認することができません。 + + Unable to parse the file output. ファイル出力がパースできません。 - Executing: %1 %2 Executing: <executable> <arguments> @@ -6442,219 +5339,178 @@ name in different directories. - Waiting for data... データ待機中... - Git Diff Git 差分表示 - Git Diff %1 Git 差分表示 %1 - Git Diff Branch %1 Git ブランチ %1 との差分表示 - Git Log Git ログ表示 - Git Log %1 Git ログ表示 %1 - Cannot describe '%1'. '%1' を表示できません。 - Git Show %1 Git 表示 %1 - Git Blame %1 Git Blame %1 - Unable to checkout %1 of %2: %3 Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message %2 の %1 をチェックアウトできません: %3 - Unable to add %n file(s) to %1: %2 %n 個のファイルを %1 に追加できません: %2 - Unable to remove %n file(s) from %1: %2 %n 個のファイルを %1 から削除できません: %2 - Unable to reset %1: %2 %1 をリセットできません: %2 - Unable to reset %n file(s) in %1: %2 %1 内の %n 個のファイルがリセットできません: %2 - Unable to checkout %1 of %2 in %3: %4 Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message %3 の %2 (リビジョン: %1) をチェックアウトできません: %4 - Unable to find parent revisions of %1 in %2: %3 Failed to find parent revisions of a SHA1 for "annotate previous" %2 (リビジョン: %1) の親リビジョンが見つかりません: %3 - Invalid revision 不正なリビジョン - Unable to retrieve branch of %1: %2 %1 のブランチを取り出せません: %2 - Unable to retrieve top revision of %1: %2 %1 の先頭リビジョンを取り出せません: %2 - Unable to describe revision %1 in %2: %3 %2 (リビジョン: %1) を表示できません: %3 - Description: 説明: - Stash Description 退避情報の説明 - Unable to resolve stash message '%1' in %2 Look-up of a stash via its descriptive message failed. %2 の退避メッセージ '%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 %2 に %1 を適用中に警告がありました: %3 - Unable apply patch %1 to %2: %3 %2 にパッチ %1 を適用できません: %3 - Unable to restore stash %1: %2 %1 を復元できません: %2 - Unable to restore stash %1 to branch %2: %3 %2 をブランチ %1 として復元できません: %3 - Unable to remove stashes of %1: %2 %1 の退避情報を削除できません: %2 - Unable to remove stash %1 of %2: %3 %2 の退避情報 %1 を削除できません: %3 - Unable retrieve stash list of %1: %2 %1 の退避情報リストを取得できません: %2 - Unable to determine git version: %1 git バージョンを特定できません: %1 - Unable stash in %1: %2 %1 内で stash できません: %2 - Changes 変更あり - You have modified files. Would you like to stash your changes? 変更されたファイルがあります。これらの変更を stash しますか? - Unable to obtain the status: %1 状態が不明です: %1 - The repository %1 is not initialized yet. リポジトリ %1 は、まだ初期化されていません。 - You did not checkout a branch. ブランチをチェックアウトしていません。 - Committed %n file(s). @@ -6663,7 +5519,6 @@ name in different directories. - Unable to commit %n file(s): %1 @@ -6672,32 +5527,26 @@ name in different directories. - Revert 元に戻す - 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 ログ - There are no modified files. 変更されたファイルはありません。 @@ -6705,338 +5554,287 @@ name in different directories. Git::Internal::GitPlugin - &Git Git(&G) - Diff Current File 現在のファイルの差分表示 - Diff "%1" "%1" の差分表示 - Alt+G,Alt+D Alt+G,Alt+D - Log File ログファイルの表示 - Log of "%1" "%1" のログ表示 - Alt+G,Alt+L Alt+G,Alt+L - Blame 編集者の表示 - Blame for "%1" "%1" の編集者を表示 - Alt+G,Alt+B Alt+G,Alt+B - Undo Changes - 変更内容を元に戻す + 変更内容を元に戻す - Undo Changes for "%1" - "%1" の変更を元に戻す + "%1" の変更を元に戻す - Alt+G,Alt+U Alt+G,Alt+U - Stage File for Commit ファイルをコミット予定に追加 - Stage "%1" for Commit "%1" をコミット予定に追加 - Alt+G,Alt+A Alt+G,Alt+A - Unstage File from Commit ファイルをコミット予定から削除 - Unstage "%1" from Commit "%1" をコミット予定から削除 - Diff Current Project 現在のプロジェクトの差分表示 - Diff Project "%1" プロジェクト "%1" の差分表示 - Stash Snapshot... 現在の状態を退避する... - Log Project プロジェクトのログ - Log Project "%1" プロジェクト "%1" のログ - Alt+G,Alt+K Alt+G,Alt+K - Stash 退避する - Saves the current state of your work. 現在の作業状況を保存する。 - + Undo Unstaged Changes + ステージングされていない変更を元に戻す + + + Undo Unstaged Changes for "%1" + "%1" のステージングされていない変更を元に戻す + + + Undo Uncommitted Changes + コミットされていない変更を元に戻す + + + Undo Uncommitted Changes for "%1" + "%1" のコミットされていない変更を元に戻す + + Clean Project... プロジェクトをクリーン... - Clean Project "%1"... プロジェクト "%1" をクリーン... - Diff Repository リポジトリの差分 - Repository Status リポジトリの状態 - Log Repository リポジトリのログ - Apply Patch パッチの適用 - Apply "%1" "%1" の適用 - Apply Patch... パッチの適用... - Undo Repository Changes リポジトリに行った変更を元に戻す - Create Repository... リポジトリの作成... - Clean Repository... リポジトリをクリーン... - Saves the current state of your work and resets the repository. 現在の状態を保持し、リポジトリを元の状態に戻します。 - Pull Pull - Stash Pop 復帰する - Restores changes saved to the stash list using "Stash". "退避する"で保存させた作業状況を復帰させる。 - Commit... コミット... - Alt+G,Alt+C Alt+G,Alt+C - Push Push - Branches... ブランチ... - Stashes... 退避... - Would you like to revert all pending changes to the repository %1? リポジトリ %1 に加えた未保存の変更内容をすべて元に戻しますか? - Unable to retrieve file list ファイルリストを取得できません - Repository clean リポジトリをクリーン - The repository is clean. リポジトリは変更されていません。 - Patches (*.patch *.diff) パッチ (*.patch *.diff) - Choose patch パッチを選択してください - Patch %1 successfully applied to %2 パッチ %1 を %2 に適用しました - Show Commit... コミットの表示... - Subversion Subversion - Log ログ - Fetch フェッチ - Commit コミット - Diff Selected Files 選択済みファイルの差分表示 - &Undo 元に戻す(&U) - &Redo やり直す(&R) - 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 commit message check failed. Do you want to commit the change? コミットメッセージが確認できませんでした。変更をコミットしますか? @@ -7044,7 +5842,6 @@ name in different directories. Git::Internal::GitSettings - The binary '%1' could not be located in the path '%2' パス '%2' から実行ファイル '%1' が見つかりませんでした @@ -7052,7 +5849,6 @@ name in different directories. Git::Internal::GitSubmitEditor - Git Commit Git コミット @@ -7060,42 +5856,34 @@ name in different directories. Git::Internal::GitSubmitPanel - General Information 概要 - Repository: リポジトリ: - repository リポジトリ - Branch: ブランチ: - branch ブランチ - Commit Information コミット情報 - Author: 改訂者: - Email: Email: @@ -7103,12 +5891,10 @@ name in different directories. Git::Internal::LocalBranchModel - <New branch> <新しいブランチ> - Type to create a new branch 新しいブランチ名を入力してください @@ -7116,87 +5902,70 @@ name in different directories. Git::Internal::SettingsPage - PATH: パス: - <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: コミットログの表示件数: - Git Git - Git Settings git の設定 - Omit date from annotation output blame の出力結果から日付を除外する - 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 システム情報から取得 @@ -7204,7 +5973,6 @@ name in different directories. GitCommand - '%1' failed (exit code %2). @@ -7213,7 +5981,6 @@ name in different directories. - '%1' completed (exit code %2). @@ -7225,32 +5992,26 @@ name in different directories. HelloWorld::Internal::HelloWorldPlugin - Say "&Hello World!" "こんにちは世界!(&H)" の表示 - &Hello World こんにちは世界(&H)!! - Hello world! こんにちは世界! - Hello World PushButton! こんにちは世界 ボタン! - Hello World! こんにちは世界! - Hello World! Beautiful day today, isn't it? こんにちは世界! 今日はいい天気ですね? @@ -7258,12 +6019,10 @@ name in different directories. HelloWorld::Internal::HelloWorldWindow - Focus me to activate my context! コンテキストをアクティブにするために、ここにフォーカスをセットしてください! - Hello, world! こんにちは,世界! @@ -7271,7 +6030,6 @@ name in different directories. Help::Internal::CentralWidget - Print Document ドキュメントを印刷 @@ -7279,17 +6037,14 @@ name in different directories. Help::Internal::DocSettingsPage - Documentation ドキュメント - Add Documentation ドキュメントの追加 - Qt Help Files (*.qch) Qt ヘルプ ファイル (*.qch) @@ -7297,7 +6052,6 @@ name in different directories. Help::Internal::FilterSettingsPage - Filters フィルタ @@ -7305,7 +6059,6 @@ name in different directories. Help::Internal::HelpIndexFilter - Help index ヘルプ インデックス @@ -7313,7 +6066,6 @@ name in different directories. Help::Internal::HelpMode - Help ヘルプ @@ -7321,154 +6073,130 @@ name in different directories. Help::Internal::HelpPlugin - - Contents コンテンツ - - Index インデックス - Search 検索 - Bookmarks ブックマーク - Home ホーム - Previous 戻る - Next 進む - Add Bookmark ブックマークの追加 - Previous Page 前のページ - Next Page 次のページ - Context Help コンテキスト ヘルプ - Activate Index in Help mode ヘルプモードのインデックスをアクティブにします - Activate Contents 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 Search in Help mode + ヘルプモードの検索をアクティブにします + + + Activate Bookmarks in Help mode + ヘルプモードのブックマークをアクティブにします + + Open Pages ページを開く - Activate Open Pages in Help mode ヘルプモードで開いたページをアクティブにする - Go to Help Mode ヘルプ モードに移行 - Close current Page 現在のページを閉じる - Unfiltered フィルタなし - <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> <html><head><title>ドキュメントがありません</title></head><body><br/><center><b>%1</b><br/>使用可能なドキュメントがありません。</center></body></html> - Filtered by: フィルタ条件: @@ -7476,37 +6204,30 @@ name in different directories. Help::Internal::SearchWidget - Indexing 解析中 - Indexing Documentation... ドキュメント解析中... - Open Link リンクを開く - Open Link as New Page リンクを新しいページで開く - Copy Link リンクをコピー - Copy コピー - Reload 再読込 @@ -7514,12 +6235,10 @@ name in different directories. HelpViewer - <title>about:blank</title> <title>about:blank</title> - <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> <title>Error 404...</title><div align="center"><br><br><h1>ページが見つかりませんでした</h1><br><h3>'%1'</h3></div> @@ -7527,17 +6246,14 @@ name in different directories. IndexWindow - &Look for: 検索文字列(&L): - Open Link リンクを開く - Open Link as New Page リンクを新しいページで開く @@ -7545,7 +6261,6 @@ name in different directories. InputPane - Type Ctrl-<Return> to execute a line. Ctrl+<リターン>キーを押して一行実行してください。 @@ -7553,12 +6268,10 @@ name in different directories. Locator - Filters フィルタ - Locator クイック アクセス @@ -7566,177 +6279,143 @@ name in different directories. MainWindow - Bauhaus MainWindowClass Bauhaus - &File ファイル(&F) - &New... 新規作成(&N)... - Ctrl+N Ctrl+N - &Open... 開く(&O)... - Ctrl+O Ctrl+O - Recent Files 最近使ったファイル - &Save 保存(&S) - Ctrl+S Ctrl+S - Save &As... 名前を付けて保存(&A)... - &Preview プレビュー(&P) - Ctrl+R Ctrl+R - &Preview with Debug デバッグでプレビュー(&P) - Ctrl+D Ctrl+D - &Quit 終了(&Q) - &Edit 編集(&E) - Ctrl+Z Ctrl+Z - Ctrl+Y Ctrl+Y - Ctrl+Shift+Z Ctrl+Shift+Z - &Copy コピー(&C) - &Cut 切り取り(&C) - &Paste 貼り付け(&P) - &Delete 削除(&D) - Del Del - Backspace Backspace - &View 表示(&V) - &Help ヘルプ(&H) - &About... Bauhaus について(&A)... - Properties プロパティ - Could not open file <%1> ファイル <%1> を開けません - Qml Errors: QML エラー: - %1 %2:%3 - %4 %1 %2:%3 - %4 - %1:%2 - %3 %1:%2 - %3 - Ctrl+Q Ctrl+Q @@ -7744,12 +6423,10 @@ name in different directories. MakeStep - Override %1: %1 の代わりに使用するコマンド: - Make arguments: Make の引数: @@ -7757,9 +6434,6 @@ name in different directories. MyMain - - - N/A N/A @@ -7767,7 +6441,6 @@ name in different directories. NickNameDialog - Nick Names ニックネーム @@ -7775,12 +6448,10 @@ name in different directories. OpenWithDialog - Open File With... ファイルを開くプログラムを指定... - Open file extension with: ファイルを開くプログラムを指定: @@ -7788,12 +6459,10 @@ name in different directories. Perforce::Internal::ChangeNumberDialog - Change Number リビジョン番号 - Change Number: リビジョン番号: @@ -7801,22 +6470,18 @@ name in different directories. Perforce::Internal::PendingChangesDialog - P4 Pending Changes P4 保留中の変更点 - Submit サブミット - Cancel キャンセル - Change %1: %2 変更 %1: %2 @@ -7824,410 +6489,326 @@ name in different directories. Perforce::Internal::PerforcePlugin - &Perforce Perforce(&P) - 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 "%1" "%1" の差分表示 - Diff Current Project/Session 現在のプロジェクト/セッションの差分表示 - Diff Project "%1" プロジェクト "%1" の差分表示 - Alt+P,Alt+D Alt+P,Alt+D - Diff Opened Files 開いているファイルの差分表示 - Opened Opened - Alt+P,Alt+O Alt+P,Alt+O - Submit Project プロジェクトのサブミット - Alt+P,Alt+S Alt+P,Alt+S - Pending Changes... 保留中の変更点... - Update Project "%1" プロジェクト "%1" をアップデート - Describe... 説明... - - Annotate Current File 現在のファイルのアノテーション - Annotate "%1" "%1" のアノテーション - Annotate... アノテーション... - - Filelog Current File 現在のファイルのファイルログ - Filelog "%1" "%1" のファイルログ - Alt+P,Alt+F Alt+P,Alt+F - Filelog... ファイルログ... - Update All すべてアップデート - Delete... 削除... - Delete "%1"... "%1" を削除... - Log Project プロジェクトのログ - Log Project "%1" プロジェクト "%1" のログ - Submit Project "%1" プロジェクト "%1" をサブミット - Update Current Project 現在のプロジェクトをアップデート - Revert Unchanged 未変更を元に戻す - Revert Unchanged Files of Project "%1" プロジェクト "%1" の未変更のファイルを元に戻す - Revert Project プロジェクトを元に戻す - Revert Project "%1" プロジェクト "%1" を元に戻す - Repository Log リポジトリのログ - Submit サブミット - Diff Selected Files 選択済みファイルの差分表示 - &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 アノテーション - p4 annotate %1 p4 アノテーション %1 - p4 filelog p4 ファイルログ - p4 filelog %1 p4 ファイルログ %1 - Executing: %1 実行中: %1 - The process terminated with exit code %1. プロセスは終了コード %1 で終了しました。 - p4 submit failed: %1 p4 サブミットに失敗しました: %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. プロセスは異常終了しました。 - 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 差分表示 %1 - p4 describe %1 p4 説明 %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. 作業領域が古いためコミットできません。コミットを保留しました。 @@ -8235,7 +6816,6 @@ name in different directories. Perforce::Internal::PerforceSubmitEditor - Perforce Submit Perforce コミット @@ -8243,12 +6823,10 @@ name in different directories. Perforce::Internal::PromptDialog - Perforce Prompt Perforce プロンプト - OK OK @@ -8256,67 +6834,54 @@ name in different directories. Perforce::Internal::SettingsPage - Perforce Perforce - Test テスト - Configuration 構成 - P4 command: P4 コマンド: - P4 client: P4 クライアント: - P4 user: P4 ユーザ: - P4 port: P4 ポート: - Miscellaneous その他 - Timeout: タイムアウト: - s - Prompt on submit コミット前に確認する - Log count: ログ上限: - Environment Variables 環境変数 @@ -8324,17 +6889,14 @@ name in different directories. Perforce::Internal::SettingsPageWidget - Testing... テスト中... - Test succeeded (%1). テストが成功しました (%1)。 - Perforce Command Perforce コマンド @@ -8342,22 +6904,18 @@ name in different directories. Perforce::Internal::SubmitPanel - Submit サブミット - Change: リビジョン: - Client: クライアント: - User: ユーザ: @@ -8365,27 +6923,22 @@ name in different directories. PluginDialog - Details 詳細 - Error Details エラーの詳細 - Installed Plugins インストール済みプラグイン - Plugin Details of %1 プラグイン %1 の詳細 - Plugin Errors of %1 プラグイン %1 のエラー情報 @@ -8393,24 +6946,18 @@ name in different directories. PluginManager - - The plugin '%1' does not exist. プラグイン '%1' は存在しません。 - Unknown option %1 不明なオプション %1 - The option %1 requires an argument. オプション %1 には引数が必要です。 - - Failed Plugins 読み込みに失敗したプラグイン @@ -8418,77 +6965,62 @@ name in different directories. 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 読込済み状態でない為、依存関係の解決に失敗しました - Could not resolve dependency '%1(%2)' '%1(%2)' の依存関係を解決できませんでした - Loading the library failed because state != Resolved 解決済み状態でない為、ライブラリの読込に失敗しました - Plugin is not valid (does not derive from IPlugin) 無効なプラグインです (IPlugin から派生していません) - Initializing the plugin failed because state != Loaded 読込済み状態でない為、プラグインの初期化に失敗しました - Internal error: have no plugin instance to initialize 内部エラー: 初期化の為のプラグイン インスタンスがありません - Plugin initialization failed: %1 プラグイン初期化エラー: %1 - Cannot perform extensionsInitialized because state != Initialized 初期化済み状態でない為、extensionsInitialized は動作できません - Internal error: have no plugin instance to perform extensionsInitialized 内部エラー: extensionsInitialized が動作するプラグイン インスタンスが存在しません @@ -8496,29 +7028,24 @@ name in different directories. 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" がクラッシュしました。 - Could not start process "%1" プロセス "%1" を起動できません @@ -8526,49 +7053,38 @@ name in different directories. ProjectExplorer::BuildManager - Finished %1 of %n build steps %n 個中 %1 個のビルド ステップが完了 - Compile Category for compiler isses listened under 'Build Issues' コンパイル - Build System Category for build system isses listened under 'Build Issues' ビルド システム - Canceled build. ビルドを中止しました。 - - When executing build step '%1' ビルドステップ '%1' 実行中 - Running build steps for project %1... プロジェクト %1 のビルドステップを実行中... - Build ビルド - - - Error while building project %1 (target: %2) プロジェクト %1 をビルド中にエラー (ターゲット: %2) @@ -8576,33 +7092,26 @@ name in different directories. ProjectExplorer::CustomExecutableRunConfiguration - Custom Executable カスタム実行ファイル - Could not find the executable, please specify one. 実行ファイルが見つかりません。実行ファイルを指定してください。 - Clean Environment 環境変数なし - System Environment システム環境変数 - Build Environment ビルド時の環境変数 - - Run %1 %1 を実行 @@ -8610,8 +7119,6 @@ name in different directories. ProjectExplorer::CustomExecutableRunConfigurationFactory - - Custom Executable カスタム実行ファイル @@ -8619,34 +7126,28 @@ name in different directories. ProjectExplorer::EnvironmentModel - <UNSET> <未定義> - Value - Variable 変数 - <VARIABLE> Name when inserting a new variable <変数> - <VALUE> Value when inserting a new variable <値> - <VARIABLE> <変数> @@ -8654,42 +7155,34 @@ name in different directories. ProjectExplorer::EnvironmentWidget - &Edit 編集(&E) - &Add 追加(&A) - &Reset リセット(&R) - &Unset 解除(&U) - 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> を使用 @@ -8697,7 +7190,6 @@ name in different directories. ProjectExplorer::Internal::AllProjectsFilter - Files in any project いずれかのプロジェクトに含まれるファイル @@ -8705,12 +7197,10 @@ name in different directories. ProjectExplorer::Internal::AllProjectsFind - All Projects すべてのプロジェクト - File &pattern: ファイル パターン(&P): @@ -8718,47 +7208,38 @@ name in different directories. ProjectExplorer::Internal::BuildSettingsWidget - &Clone Selected 選択済みの構成を複製(&C) - Build Steps ビルド ステップ - No build settings available 有効なビルド設定がありません - Edit build configuration: ビルド構成を編集: - Add 追加 - Remove 削除 - Clean Steps クリーン ステップ - New Configuration Name: 新しい構成名: - Clone configuration 構成の複製 @@ -8766,52 +7247,42 @@ name in different directories. 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 ビルド ステップを追加 - Build Steps ビルド ステップ - Clean Steps クリーン ステップ @@ -8819,8 +7290,6 @@ name in different directories. ProjectExplorer::Internal::CompileOutputWindow - - Compile Output コンパイル出力 @@ -8828,27 +7297,22 @@ name in different directories. ProjectExplorer::Internal::CoreListenerCheckingForRunningBuild - Cancel Build && Close ビルドを中止して閉じる - A project is currently being built. プロジェクトは現在ビルド中です。 - Close Qt Creator? Qt Creator を閉じますか? - Do not Close 閉じない - Do you want to cancel the build process and close Qt Creator anyway? 進行中のビルドを中止して Qt Creator を閉じますか? @@ -8856,7 +7320,6 @@ name in different directories. ProjectExplorer::Internal::CurrentProjectFilter - Files in current project 現在のプロジェクトに含まれるファイル @@ -8864,12 +7327,10 @@ name in different directories. ProjectExplorer::Internal::CurrentProjectFind - Current Project 現在のプロジェクト - File &pattern: ファイル パターン(&P): @@ -8877,62 +7338,50 @@ name in different directories. ProjectExplorer::Internal::CustomExecutableConfigurationWidget - Name: 名前: - Executable: 実行ファイル: - Arguments: 引数: - Working Directory: 作業ディレクトリ: - Run in &Terminal 端末内で実行(&T) - 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 @@ -8940,7 +7389,6 @@ name in different directories. ProjectExplorer::Internal::EditorSettingsPropertiesPage - Default file encoding: デフォルトの文字コード: @@ -8948,12 +7396,10 @@ name in different directories. ProjectExplorer::Internal::FolderNavigationWidgetFactory - File System ファイル システム - Synchronize with Editor エディタと同期 @@ -8961,48 +7407,38 @@ name in different directories. ProjectExplorer::Internal::SessionDialog - Session Manager セッション マネージャ - &New 新規作成(&N) - &Rename 名前を変更(&R) - C&lone 複製(&L) - &Delete 削除(&D) - &Switch to 切替(&S) - - New session name 新しいセッションの名前 - Rename session セッション名の変更 - <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">セッションて何?</a> @@ -9010,38 +7446,34 @@ name in different directories. ProjectExplorer::Internal::OutputPane - Re-run this run-configuration この実行構成で再実行 - - Stop 停止 - + Application Output Window + アプリケーション出力ウィンドウ + + The application is still running. アプリケーションはまだ実行中です。 - Force it to quit? 強制終了しますか? - Force Quit 強制終了 - Application Output アプリケーション出力 - Unable to close 終了不可 @@ -9049,16 +7481,19 @@ name in different directories. ProjectExplorer::Internal::OutputWindow - Application Output Window - アプリケーション出力ウィンドウ + アプリケーション出力ウィンドウ + + + Additional output omitted + + 追加出力は省略されました + ProjectExplorer::Internal::ProcessStep - - Custom Process Step item in combobox 独自プロセス ステップ @@ -9067,12 +7502,10 @@ name in different directories. ProjectExplorer::Internal::ProcessStepConfigWidget - <b>%1</b> %2 %3 %4 <b>%1</b> %2 %3 %4 - (disabled) (使用不可) @@ -9080,27 +7513,22 @@ name in different directories. ProjectExplorer::Internal::ProcessStepWidget - Name: 名前: - Command: コマンド: - Enable custom process step 独自プロセスステップを有効にする - Working directory: 作業ディレクトリ: - Command arguments: コマンド引数: @@ -9108,7 +7536,6 @@ name in different directories. ProjectExplorer::Internal::ProjectExplorerSettingsPage - General 概要 @@ -9116,13 +7543,11 @@ name in different directories. ProjectExplorer::Internal::ProjectFileFactory - Project File Factory ProjectExplorer::ProjectFileFactory display name. プロジェクト ファイル ファクトリ - Could not open the following project: '%1' 以下のプロジェクトを開けませんでした: '%1' @@ -9130,8 +7555,6 @@ name in different directories. ProjectExplorer::Internal::ProjectFileWizardExtension - - <None> No version control system selected ---------- @@ -9139,19 +7562,16 @@ No project selected <なし> - Failed to add one or more files to project '%1' (%2). 1つ以上のファイルをプロジェクト '%1' に追加できませんでした (%2). - A version control system repository could not be created in '%1'. '%1' にバージョン管理システムリポジトリを作成できませんでした。 - Failed to add '%1' to the version control system. '%1' をバージョン管理システムに追加できませんでした。 @@ -9159,17 +7579,14 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidget - Simplify tree 簡易ツリー - Hide generated files 生成されたファイルを隠す - Synchronize with Editor エディタと同期 @@ -9177,12 +7594,10 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidgetFactory - Projects プロジェクト - Filter tree フィルタ ツリー @@ -9190,17 +7605,14 @@ No project selected ProjectExplorer::Internal::ProjectWizardPage - Summary サマリ - Files to be added: 追加されるファイル: - Files to be added in ファイルの追加先 @@ -9208,22 +7620,18 @@ No project selected ProjectExplorer::Internal::RemoveFileDialog - Remove File ファイルの削除 - &Delete file permanently 完全に削除(&D) - &Remove from Version Control バージョン管理システムからも削除(&R) - File to remove: 削除するファイル: @@ -9231,12 +7639,10 @@ No project selected ProjectExplorer::Internal::RunSettingsWidget - Add 追加 - Remove 削除 @@ -9244,17 +7650,14 @@ No project selected ProjectExplorer::Internal::RunSettingsPropertiesPage - + + - - - - Run configuration: 実行構成: @@ -9262,12 +7665,10 @@ No project selected ProjectExplorer::Internal::SessionFile - Session セッション - Untitled default file name to display 無題 @@ -9276,7 +7677,6 @@ No project selected ProjectExplorer::Internal::TaskDelegate - File not found: %1 ファイルが見つかりません: %1 @@ -9284,12 +7684,10 @@ No project selected ProjectExplorer::Internal::WinGuiProcess - The process could not be started! プロセスを開始できません! - Cannot retrieve debugging output! デバッグ出力を受け取ることができません! @@ -9297,12 +7695,10 @@ No project selected ProjectExplorer::Internal::WizardPage - Project management プロジェクト管理 - The following files will be added: @@ -9315,12 +7711,10 @@ No project selected - Add to &project: プロジェクトに追加(&P): - Add to &version control: バージョン管理システムに追加(&V): @@ -9328,274 +7722,222 @@ No project selected ProjectExplorer::ProjectExplorerPlugin - Projects プロジェクト - &Build ビルド(&B) - &Debug デバッグ(&D) - &Start Debugging デバッグ開始(&S) - Open With エディタを指定して開く - Session Manager... セッション マネージャ... - New Project... 新しいプロジェクト... - Ctrl+Shift+N Ctrl+Shift+N - Load Project... プロジェクトの読込... - Ctrl+Shift+O Ctrl+Shift+O - Open File ファイルを開く - Close Project プロジェクトを閉じる - Close Project "%1" プロジェクト "%1" を閉じる - Close All Projects すべてのプロジェクトを閉じる - Session セッション - Build All すべてビルド - Ctrl+Shift+B Ctrl+Shift+B - Rebuild All すべてリビルド - Clean All すべてクリーン - - Build Project プロジェクトをビルド - - Build Project "%1" プロジェクト "%1" をビルド - Ctrl+B Ctrl+B - - Rebuild Project プロジェクトをリビルド - - Rebuild Project "%1" プロジェクト "%1" をリビルド - - Clean Project プロジェクトをクリーン - - Clean Project "%1" プロジェクト "%1" をクリーン - Build Without Dependencies 依存関係を無視してビルド - Rebuild Without Dependencies 依存関係を無視してリビルド - Clean Without Dependencies 依存関係を無視してクリーン - - Run 実行 - Ctrl+R Ctrl+R - + Projects (%1) + プロジェクト (%1) + + + All Files (*) + すべてのファイル (*) + + Recent P&rojects 最近使ったプロジェクト(&R) - Cancel Build ビルドの中止 - - Start Debugging デバッグ開始 - F5 F5 - Add New... 新しいファイルを追加... - Add Existing Files... 既存のファイルを追加... - Remove File... ファイルの削除... - Rename 名前を変更 - Open Build/Run Target Selector... ビルド/実行ターゲット セレクタを開く... - Ctrl+T Ctrl+T - Load Project プロジェクトを読込 - New Project Title of dialog 新しいプロジェクト - Always save files before build ビルド前にすべてのファイルを保存する - Cannot run without a project. プロジェクトなしで実行はできません。 - Cannot debug without a project. プロジェクトなしでデバッグはできません。 - New File Title of dialog 新しいファイル - Add Existing Files 既存のファイルを追加 - Could not add following files to project %1: 以下のファイルをプロジェクト %1 に追加できません: - Add files to project failed プロジェクトへのファイル追加に失敗 - Add to Version Control バージョン管理システムへの追加 - Add files %1 to version control (%2)? @@ -9604,34 +7946,28 @@ to version control (%2)? をバージョン管理システム (%2) に追加しますか? - Could not add following files to version control (%1) 以下のファイルをバージョン管理システム (%1) に追加できません - Add files to version control failed バージョン管理システムへの追加に失敗 - Remove file failed ファイル削除に失敗 - Could not remove file %1 from project %2. プロジェクト %2 からファイル %1 を削除できません。 - Delete file failed ファイル削除に失敗 - Could not delete file %1. ファイル %1 を削除できません。 @@ -9639,47 +7975,38 @@ to version control (%2)? 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. 有効なビルド構成が見つかりません。 @@ -9687,38 +8014,30 @@ to version control (%2)? ProjectExplorer::SessionManager - Error while restoring session セッションの保存中にエラーが発生しました - Could not restore session %1 セッション %1 を復元できません - Error while saving session セッションの保存中にエラー - Could not save session to file %1 セッション %1 を保存できません - Qt Creator Qt Creator - - Untitled 無題 - Session ('%1') セッション ('%1') @@ -9726,27 +8045,22 @@ to version control (%2)? QMakeStep - Additional arguments: 追加の引数: - Effective qmake call: qmake 実行時のコマンドライン: - qmake build configuration: qmake のビルド構成: - Debug デバッグ - Release リリース @@ -9754,57 +8068,46 @@ to version control (%2)? QObject - Pass パス - Expected Failure 予期したエラー - Failure 失敗 - Expected Pass 期待通りの合格 - Warning 警告 - Qt Warning Qt 警告 - Qt Debug Qt デバッグ - Critical 致命的 - Fatal 失敗 - Skipped スキップ - Info 情報 @@ -9812,17 +8115,14 @@ to version control (%2)? QTestLib::Internal::QTestOutputPane - Test Results テスト結果 - Result 結果 - Message メッセージ @@ -9830,12 +8130,10 @@ to version control (%2)? QTestLib::Internal::QTestOutputWidget - All Incidents すべてのインシデント - Show Only: 表示のみ: @@ -9843,7 +8141,6 @@ to version control (%2)? QmlProjectManager::Internal::QmlRunConfiguration - QML Viewer QML ビューア @@ -9851,32 +8148,26 @@ to version control (%2)? QrcEditor - Add 追加 - Remove 削除 - Properties プロパティ - Prefix: プレフィクス: - Language: 言語: - Alias: エイリアス: @@ -9884,12 +8175,10 @@ to version control (%2)? Qt4ProjectManager::Internal::ConsoleAppWizard - 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. @@ -9901,7 +8190,6 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::ConsoleAppWizardDialog - This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. Qt4 コンソールアプリケーションのプロジェクトを生成するウィザードです。GUI を持たない QCoreApplication を派生したアプリケーションを生成します。 @@ -9909,12 +8197,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::DesignerExternalEditor - Qt Designer is not responding (%1). Qt Designer が応答しません (%1)。 - Unable to create server socket: %1 サーバソケットが作成できません: %1 @@ -9922,12 +8208,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::EmptyProjectWizard - Empty Qt Project 空の Qt プロジェクト - Creates a qmake-based project without any files. This allows you to create an application without any default classes. 何のファイルも持たない qmake ベースのプロジェクトを作成します。どんなデフォルトクラスも有しないアプリケーションのプロジェクトを作成できます。 @@ -9935,7 +8219,6 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::EmptyProjectWizardDialog - This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. このウィザードでは空の Qt4 プロジェクトを生成します。後で他のウィザード等を使ってファイルを追加してください。 @@ -9943,12 +8226,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::ExternalQtEditor - Unable to start "%1" "%1" を開始できません - The application "%1" could not be found. アプリケーション "%1" が見つかりません。 @@ -9956,12 +8237,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::FilesPage - Class Information クラス情報 - Specify basic information about the classes for which you want to generate skeleton source code files. 生成するソースコードファイルのクラスについての基本情報を指定して下さい。 @@ -9969,12 +8248,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::GuiAppWizard - 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. @@ -9983,7 +8260,6 @@ Preselects a desktop Qt for building the application if available. 可能であれば、あらかじめデスクトップ用アプリケーションとして設定されます。 - The template file '%1' could not be opened for reading: %2 テンプレートファイル '%1' を開けませんでした: %2 @@ -9991,12 +8267,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::GuiAppWizardDialog - This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. Qt4 GUIアプリケーションプロジェクトを生成するウィザードです。QApplicationを派生し、空のウィジェットを含んだアプリケーションが生成されます。 - Details 詳細 @@ -10004,12 +8278,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::LibraryWizard - 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>を作成できます。 @@ -10017,32 +8289,26 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::LibraryWizardDialog - Shared library 共有ライブラリ - Statically linked library 静的リンク ライブラリ - Qt 4 plugin Qt 4 プラグイン - Type - This wizard generates a C++ library project. このウィザードで、C++ ライブラリ プロジェクトを生成します。 - Details 詳細 @@ -10050,12 +8316,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::ModulesPage - Select required modules 必須モジュールの選択 - Select the modules you want to include in your project. The recommended modules for this project are selected by default. プロジェクトに含めたいモジュールを選択してください。推奨するモジュールはデフォルトで選択されています。 @@ -10063,7 +8327,6 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::ProjectLoadWizard - Project setup プロジェクト セットアップ @@ -10071,59 +8334,46 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::Qt4PriFileNode - Headers ヘッダー - Sources ソース - Forms フォーム - Resources リソース - Other files その他のファイル - - - Failed! エラー発生! - Could not open the file for edit with SCC. バージョン管理システムを使ってファイルを編集モードで開けませんでした。 - Could not set permissions to writable. 書込可能なパーミッションに設定できませんでした。 - There are unsaved changes for project file %1. プロジェクト ファイル %1 は変更されていますが、まだ保存されていません。 - Could not write project file %1. プロジェクトファイル %1 に書き込めません。 - Error while reading PRO file %1: %2 PRO ファイル %1 の読み込み中にエラー: %2 @@ -10131,13 +8381,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::Qt4ProFileNode - - Error while parsing file %1. Giving up. プロジェクトファイル '%1' の解析中にエラーが発生しました。中止します。 - Could not find .pro file for sub dir '%1' in '%2' '%2' 内のサブディレクトリ '%1' に .pro ファイルが見つかりませんでした @@ -10145,83 +8392,67 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::Qt4ProjectConfigWidget - <a href="import">Import existing build</a> <a href="import">既存ビルド構成のインポート</a> - Shadow Build Directory シャドウビルド ディレクトリ - 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 バージョン: <br>%1</b><br>ツールチェイン: <b>%2</b><br>ビルドディレクトリ: <b>%3</b> - General 概要 - 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 管理 - problemLabel 問題レベル - Configuration name: 構成名: - Qt version: Qt バージョン: - This Qt version is invalid. この Qt バージョンは無効です。 - Tool chain: ツール チェイン: - Shadow build: シャドウビルド: - Build directory: ビルド ディレクトリ: @@ -10229,23 +8460,18 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::Qt4ProjectManagerPlugin - - Run qmake qmake 実行 - Build ビルド - Run qmake in %1 %1 で qmake 実行 - Build in %1 %1 でビルド @@ -10253,22 +8479,18 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::Qt4RunConfiguration - Clean Environment 環境変数なし - System Environment システム環境変数 - Build Environment ビルド時の環境変数 - Qt4 RunConfiguration Qt4 実行構成 @@ -10276,67 +8498,54 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::Qt4RunConfigurationWidget - Arguments: 引数: - Select Working Directory 作業ディレクトリの選択 - Working directory: 作業ディレクトリ: - Run in terminal 端末内で実行 - Run Environment 実行時の環境変数 - Base environment for this runconfiguration: 実行構成の元となる環境: - Clean Environment 環境変数なし - System Environment システム環境変数 - Build Environment ビルド時の環境変数 - Name: 名前: - Executable: 実行ファイル: - Reset to default デフォルトに戻す - Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) デバッグバージョンのフレームワークを使用する (DYLD_IMAGE_SUFFIX=_debug) @@ -10344,98 +8553,80 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::QtOptionsPageWidget - <specify a name> <名前を入力> - <specify a qmake location> <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 マニュアル - Building helpers ヘルパビルド中 - <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>最終更新日時:</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 Symbian - Maemo Qt Version is meant for Maemo Maemo - 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) が見つかりました @@ -10443,27 +8634,22 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::QtVersionManager - Name 名前 - 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; } @@ -10476,57 +8662,46 @@ p, li { white-space: pre-wrap; } <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> - Show &Log ログの表示(&L) - &Rebuild リビルド(&R) - S60 SDK: S60 SDK: - qmake Location qmake のパス - Version name: バージョン名: - qmake location: qmake のパス: - MinGW directory: MinGW ディレクトリ: - Toolchain: ツール チェイン: - CSL/GCCE directory: CSL/GCCE ディレクトリ: - Carbide directory: Carbide ディレクトリ: - Debugging helper: デバッグヘルパ: @@ -10534,13 +8709,11 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::MakeStep - Make Qt4 MakeStep display name. Make - Could not find make command: %1 in the build environment ビルド環境に make コマンド: %1 が見つかりませんでした @@ -10548,17 +8721,14 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::MakeStepConfigWidget - Override %1: %1 の代わりに使用するコマンド: - <b>Make:</b> %1 not found in the environment. <b>Make:</b> %1 が環境変数内に見つかりませんでした。 - <b>Make:</b> %1 %2 in %3 <b>Make:</b> %1 %2 (%3 ディレクトリ) @@ -10566,7 +8736,6 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::MakeStepFactory - Make @@ -10574,18 +8743,15 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::QMakeStep - qmake QMakeStep display name. qmake - Configuration is faulty, please check the Build Issues view for details. 構成は不完全です。詳細は、ビルドの問題点で確認してください。 - Configuration unchanged, skipping qmake step. 構成が変更されていない為、qmake ステップをスキップします。 @@ -10593,12 +8759,10 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::QMakeStepConfigWidget - <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 @@ -10606,12 +8770,10 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Qt4Manager - Failed opening project '%1': Project file does not exist プロジェクト '%1' を開けません: プロジェクト ファイルが存在しません - Failed opening project '%1': Project already open プロジェクト '%1' を開けません: プロジェクトは既に開かれています @@ -10619,48 +8781,38 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::QtVersionManager - <not found> <見つかりません> - - Qt in PATH PATH に含まれる Qt - Name: 名前: - Source: ソース: - mkspec: mkspec: - qmake: qmake: - Default: デフォルト: - Version: バージョン: - Debugging helper: デバッグヘルパ: @@ -10668,13 +8820,11 @@ p, li { white-space: pre-wrap; } QApplication - EditorManager Next Open Document in History エディタ マネージャ - EditorManager Previous Open Document in History エディタ マネージャ @@ -10683,82 +8833,66 @@ p, li { white-space: pre-wrap; } QtModulesInfo - Core non-GUI classes used by other modules コアは、他のモジュールから使用されている非GUIクラスです - Graphical user interface components GUIコンポーネントです - Classes for network programming ネットワーク プログラム向けのクラスです - OpenGL support classes OpenGL をサポートするクラスです - Classes for database integration using SQL SQLを使ったデータベース統合の為のクラスです - Classes for evaluating Qt Scripts Qt Script を評価する為のクラスです - Additional Qt Script components Qt Script の追加機能 - Classes for displaying the contents of SVG files SVG ファイルを表示する為のクラスです - Classes for displaying and editing Web content Web コンテンツを表示したり編集したりする為のクラスです - Classes for handling XML XML を取り扱う為のクラスです - An XQuery/XPath engine for XML and custom data models XMLおよび独自データモデル用のXQuery/XPath エンジンです - Multimedia framework classes マルチメディア フレームワーク クラス - Classes for low-level multimedia functionality ローレベルなマルチメディア機能のためのクラス - Classes that ease porting from Qt 3 to Qt 4 Qt 3から Qt4 へ簡単に移植する為のクラスです - Tool classes for unit testing ユニット テスト用のツールクラス - Classes for Inter-Process Communication using the D-Bus D-Bus を使ったIPCを実現する為のクラスです @@ -10766,17 +8900,14 @@ p, li { white-space: pre-wrap; } Locator::ILocatorFilter - Filter Configuration フィルタ設定 - Limit to prefix プレフィックスを制限する - Prefix: プレフィクス: @@ -10784,35 +8915,28 @@ p, li { white-space: pre-wrap; } Locator::Internal::DirectoryFilter - Generic Directory Filter 通常のディレクトリ フィルタ - Filter Configuration フィルタ設定 - - Select Directory ディレクトリを選択してください - %1 filter update: %n files %1 フィルタは %n 個のファイルをアップデートしました - %1 filter update: 0 files フィルタ %1 でリフレッシュ: 0 個のファイル - %1 filter update: canceled フィルタ %1 でリフレッシュ: 中止しました @@ -10820,54 +8944,44 @@ p, li { white-space: pre-wrap; } Locator::Internal::DirectoryFilterOptions - Name: 名前: - 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: ファイルの種類: @@ -10875,7 +8989,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::FileSystemFilter - Files in file system ファイル システム上のファイル @@ -10883,27 +8996,22 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::FileSystemFilterOptions - Filter configuration フィルタ設定 - Prefix: プレフィクス: - Limit to prefix プレフィックスを制限する - Include hidden files 隠しファイルも含める - Filter: フィルタ: @@ -10911,7 +9019,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::OpenDocumentsFilter - Open documents 開いているドキュメント @@ -10919,7 +9026,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::LocatorFiltersFilter - Available filters 使用可能なフィルタ @@ -10927,7 +9033,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::LocatorPlugin - Indexing 解析中 @@ -10935,32 +9040,26 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::LocatorWidget - Refresh 更新 - Configure... 構成... - Locate... クイック アクセス... - Type to locate キーを入力してください - Options オプション - <type here> <入力してください> @@ -10968,7 +9067,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::SettingsPage - %1 (prefix: %2) %1 (プレフィクス: %2) @@ -10976,32 +9074,26 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::SettingsWidget - Configure Filters フィルタ設定 - Add 追加 - Remove 削除 - Edit 編集 - min - Refresh interval: 更新間隔: @@ -11009,102 +9101,82 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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 固定文字列 - Capture %1: Capture %1: - Match: 合致: - Regular Expression 正規表現 - Enter pattern from code... コードからパターンを入力... - Clear patterns パターンのクリア - Clear texts 文字列のクリア - Enter pattern from code コードからパターンを入力 - Pattern パターン @@ -11112,22 +9184,18 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ResourceEditor::Internal::ResourceEditorPlugin - Qt Resource file Qt リソースファイル - Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. Qt C++ プロジェクトに追加可能な Qt リソースファイル (.qrc) を作成します。 - &Undo 元に戻す(&U) - &Redo やり直す(&R) @@ -11135,7 +9203,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ResourceEditor::Internal::ResourceEditorW - untitled 無題 @@ -11143,17 +9210,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t SaveItemsDialog - Save Changes 変更内容を保存 - The following files have unsaved changes: 以下のファイルは変更後、保存されていません: - Automatically save all files before building ビルド前にすべてのファイルを自動的に保存する @@ -11161,62 +9225,50 @@ To do this, you type this shortcut and a space in the Locator entry field, and t SharedTools::QrcEditor - Add Files ファイルを追加 - Add Prefix プレフィックスを追加 - Copy コピー - Skip スキップ - Abort 中止する - 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 をコピーできませんでした。 @@ -11224,72 +9276,58 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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: エイリアス: @@ -11297,7 +9335,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ShowBuildLog - Debugging Helper Build Log デバッグヘルパのビルドログ @@ -11305,7 +9342,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Snippets::Internal::SnippetsPlugin - Snippets スニペット @@ -11313,7 +9349,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Snippets::Internal::SnippetsWindow - Snippets スニペット @@ -11321,22 +9356,18 @@ To do this, you type this shortcut and a space in the Locator entry field, and t StartExternalDialog - Executable: 実行ファイル: - Arguments: 引数: - Start Debugger デバッガ起動 - Break at 'main': 'main' 関数で停止: @@ -11344,42 +9375,34 @@ To do this, you type this shortcut and a space in the Locator entry field, and t StartRemoteDialog - Start Debugger デバッガ起動 - Host and port: ホストおよびポート番号: - Architecture: アーキテクチャ: - Use server start script: サーバのスタートアップスクリプトを使用: - Server start script: サーバのスタートアップスクリプト: - Debugger: デバッガ: - Local executable: ローカル実行ファイル: - Sysroot: Sysroot: @@ -11387,62 +9410,50 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Subversion::Internal::SettingsPage - Authentication 認証情報 - Password: パスワード: - Subversion Subversion - Configuration 構成 - Subversion command: Subversion コマンド: - Miscellaneous その他 - Timeout: タイムアウト: - s - Prompt on submit コミット前に確認する - Ignore whitespace changes in annotation アノテーション中で空白文字を無視 - Log count: ログ上限: - Username: ユーザー名: @@ -11450,7 +9461,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Subversion::Internal::SettingsPageWidget - Subversion Command Subversion コマンド @@ -11458,296 +9468,238 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Subversion::Internal::SubversionPlugin - &Subversion Subversion(&S) - Add 追加 - Add "%1" "%1" を追加 - Alt+S,Alt+A Alt+S,Alt+A - Diff Project プロジェクトの差分表示 - Diff Current File 現在のファイルの差分表示 - Diff "%1" "%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 "%1" "%1" のファイルログ - Annotate Current File 現在のファイルのアノテーション - Annotate "%1" "%1" のアノテーション - Describe... 説明... - Project Status プロジェクトの状態 - Delete... 削除... - Delete "%1"... "%1" を削除... - Revert... 元に戻す... - Revert "%1"... "%1" を元に戻す... - Diff Project "%1" プロジェクト "%1" の差分表示 - Status of Project "%1" プロジェクト "%1" の状態 - Log Project プロジェクトのログ - Log Project "%1" プロジェクト "%1" のログ - Update Project プロジェクトをアップデート - Update Project "%1" プロジェクト "%1" をアップデート - Commit Project プロジェクトのコミット - Commit Project "%1" プロジェクト "%1" をコミット - Diff Repository リポジトリの差分 - Repository Status リポジトリの状態 - Log Repository リポジトリのログ - Update Repository リポジトリを更新 - Revert Repository... リポジトリ全体を元に戻す... - Commit コミット - Diff Selected Files 選択済みファイルの差分表示 - &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 リポジトリ全体を元に戻す - Would you like to revert all changes to the 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. 別のコミットが実行中です。 - 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! subvesion 実行ファイルが指定されていません! - 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 ミリ秒) 内に応答を返しませんでした。 @@ -11755,7 +9707,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Subversion::Internal::SubversionSubmitEditor - Subversion Submit Subversion コミット @@ -11763,18 +9714,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseFileFind - - %1 found 一致 %1 件 - List of comma separated wildcard filters カンマで区切られたワイルドカード フィルタの一覧 - Use regular e&xpressions 正規表現を使用(&X) @@ -11782,12 +9729,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseTextDocument - untitled 無題 - <em>Binary data</em> <em>バイナリ データ</em> @@ -11795,17 +9740,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseTextEditor - Print Document ドキュメントを印刷 - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. <b>エラー:</b> "%1" を "%2" でデコードできませんでした。編集できません。 - Select Encoding 文字コードを選択してください @@ -11813,12 +9755,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseTextEditorEditable - Line: %1, Col: %2 行番号: %1, 列位置: %2 - Line: %1, Col: 999 行番号: %1, 列位置: 999 @@ -11826,142 +9766,114 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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. タブ設定に従って先頭の空白を正しくします。 - 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 を押した時に空白の代わりに1レベル上げます。 - &Backspace follows indentation Backspace でインデントに追随する(&B) - Insert &spaces instead of tabs タブの代わりに空白を挿入(&S) - Enable automatic &indentation 自動インデントを有効にする(&I) - Tab key performs auto-indent: タブキーで自動インデントを行う: - Never 実行しない - Always 常に行う - 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 スタイル - Mouse マウス - Enable &mouse navigation マウスナビゲーションを有効にする(&M) - Enable scroll &wheel zooming ホイール スクロールでの拡大縮小を有効にする(&W) - In Leading White Space 先頭が空白の場合 @@ -11969,72 +9881,58 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::DisplaySettingsPage - Display 表示 - Display line &numbers 行番号を表示する(&N) - Display &folding markers 折り畳みマーカーの表示(&F) - Show tabs and spaces. タブと空白を表示します。 - &Visualize whitespace 空白の可視化(&V) - Highlight current &line カーソル行をハイライトする(&L) - Text Wrapping 行の折り返し - Enable text &wrapping 行の折り返しを有効にする(&W) - 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) @@ -12042,52 +9940,42 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::FontSettingsPage - Font && Colors フォント && 色 - Copy Color Scheme カラースキームをコピー - 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 廃棄 @@ -12095,28 +9983,23 @@ To do this, you type this shortcut and a space in the Locator entry field, and t 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 指定された文字コードで保存 @@ -12124,7 +10007,6 @@ The following encodings are likely to fit: TextEditor::Internal::FindInCurrentFile - Current File 現在のファイル @@ -12132,27 +10014,22 @@ The following encodings are likely to fit: TextEditor::Internal::FindInFiles - Files on File System ファイル システム上のファイル - &Directory: ディレクトリ(&D): - &Browse 参照(&B) - File &pattern: ファイル パターン(&P): - Directory to search 検索対象ディレクトリの指定 @@ -12160,47 +10037,38 @@ The following encodings are likely to fit: TextEditor::Internal::FontSettingsPage - Family: フォント名: - Size: サイズ: - Font フォント - Color Scheme カラー スキーム - Antialias アンチエイリアス - Copy... コピー... - Delete 削除 - % % - Zoom: 拡大率: @@ -12208,12 +10076,10 @@ The following encodings are likely to fit: TextEditor::Internal::LineNumberFilter - Line in current document 現在のドキュメントの行番号 - Line %1 %1 行 @@ -12221,42 +10087,34 @@ The following encodings are likely to fit: TextEditor::Internal::TextEditorPlugin - 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 概要 - 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 @@ -12264,342 +10122,274 @@ The following encodings are likely to fit: 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+/ - Delete &Line 行削除(&L) - Reset Font Size フォントの大きさをリセット - Ctrl+0 Ctrl+0 - Go to Block Start ブロックの開始位置に移動 - Go to Block End ブロックの終了位置に移動 - Go to Block Start With Selection ブロックの開始位置に移動し、選択状態にする - Go to Block End With Selection ブロックの終了位置に移動し、選択状態にする - Shift+Del Shift+Del - &Rewrap Paragraph 段落の折り返しを再構築(&R) - %1+E, %2+V %1+E, %2+V - %1+E, %2+W %1+E, %2+W - 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+{ - 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 - Goto Line Start 行の先頭に移動 - Goto Line End 行の末尾に移動 - Goto Next Line 次の行に移動 - Goto Previous Line 前の行に移動 - Goto Previous Character 前の文字に移動 - Goto Next Character 次の文字に移動 - Goto Previous Word 前の単語に移動 - Goto Next Word 次の単語に移動 - Goto Line Start With Selection 行の先頭に移動し、選択状態にする - Goto Line End With Selection 行の末尾に移動し、選択状態にする - Goto Next Line With Selection 次の行に移動し、選択状態にする - Goto Previous Line With Selection 前の行に移動し、選択状態にする - Goto Previous Character With Selection 前の文字に移動し、選択状態にする - Goto Next Character With Selection 次の文字に移動し、選択状態にする - Goto Previous Word With Selection 前の単語に移動し、選択状態にする - Goto Next Word With Selection 次の単語に移動し、選択状態にする - <line number> <行番号> @@ -12607,152 +10397,122 @@ The following encodings are likely to fit: TextEditor::TextEditorSettings - Text テキスト - Link リンク - Selection 選択した部分 - Line Number 行番号 - Search Result 検索結果 - Search Scope 検索範囲 - Parentheses 括弧 - Current Line カーソル行 - Current Line Number 現在の行番号 - Occurrences ローカル変数 - Unused Occurrence 未使用のローカル変数 - Renaming Occurrence 改名中のローカル変数 - Number 番号 - String 文字列 - Type - Keyword キーワード - Operator 演算子 - Preprocessor プリプロセッサ - Label ラベル - Comment コメント - Doxygen Comment Doxygen 用コメント - Doxygen Tag Doxygen 用タグ - Visual Whitespace 空白の可視化 - Disabled Code 無効化されたコード - Added Line 追加した行 - Removed Line 削除した行 - Diff File 差分ファイル - Diff Location 差異のある行 - Behavior 動作 - Display 表示 @@ -12760,27 +10520,22 @@ The following encodings are likely to fit: TopicChooser - Choose a topic for <b>%1</b>: <b>%1</b> の検索先トピックを選択してください: - Choose Topic トピックの選択 - &Topics トピック(&T) - &Display 表示(&D) - &Close 閉じる(&C) @@ -12788,17 +10543,14 @@ The following encodings are likely to fit: VCSBase - Version Control バージョン管理システム - Common 共通 - Project from Version Control バージョン管理からのプロジェクト インポート @@ -12806,27 +10558,22 @@ The following encodings are likely to fit: VCSBase::Internal::NickNameDialog - Name 名前 - E-mail E-mail - Alias エイリアス - Alias e-mail エイリアスのE-mail - Cannot open '%1': %2 '%1' を開けません: %2 @@ -12834,12 +10581,10 @@ The following encodings are likely to fit: VCSBase::SubmitFileModel - State 状態 - File ファイル @@ -12847,17 +10592,14 @@ The following encodings are likely to fit: VCSBase::VCSBaseEditor - Annotate "%1" "%1" のアノテーション - Copy "%1" "%1" をコピー - Describe change %1 %1 の変更点についての説明 @@ -12865,57 +10607,46 @@ The following encodings are likely to fit: VCSBase::VCSBaseSubmitEditor - Check message メッセージをチェック - Insert name... 名前を挿入... - Prompt to submit コミット前に確認する - Submit Message Check failed メッセージチェックのサブミットに失敗しました - Executing %1 %1 を実行中 - Executing [%1] %2 [%1] %2 を実行中 - 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' crashed チェックスクリプト '%1' はクラッシュしました - The check script returned exit code %1. チェックスクリプトの終了コードは %1 です。 @@ -12923,12 +10654,10 @@ The following encodings are likely to fit: VCSManager - Version Control バージョン管理 - Would you like to remove this file from the version control system (%1)? Note: This might remove the local file. バージョン管理システム (%1) から、このファイルを削除しますか? @@ -12938,47 +10667,38 @@ Note: This might remove the local file. ViewDialog - Send to Codepaster コード ペースターに送る - &Username: ユーザー名(&U): - <Username> <ユーザ名> - &Description: 説明(&D): - <Description> <説明> - Patch 1 Patch 1 - Patch 2 Patch 2 - Protocol: プロトコル: - <!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; } @@ -12991,7 +10711,6 @@ p, li { white-space: pre-wrap; } <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;コメント&gt;</span></p></body></html> - Parts to Send to Server サーバに送る部品 @@ -12999,27 +10718,22 @@ p, li { white-space: pre-wrap; } mainClass - main main - Text1: Text1: - N/A N/A - Text2: Text2: - Text3: Text3: @@ -13027,17 +10741,14 @@ p, li { white-space: pre-wrap; } Utils::CheckableMessageBox - Dialog ダイアログ - TextLabel TextLabel - CheckBox チェックボックス @@ -13045,17 +10756,14 @@ p, li { white-space: pre-wrap; } PasteBinComSettingsWidget - Form フォーム - Server prefix: サーバ プレフィクス: - <html><head/><body> <p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> <p>Note that the plugin will use this for posting as well as fetching.</p></body></html> @@ -13067,57 +10775,46 @@ p, li { white-space: pre-wrap; } CVS::Internal::SettingsPage - CVS CVS - Configuration 構成 - CVS command: CVS コマンド: - CVS root: CVS ルート: - Miscellaneous その他 - Diff options: 差分表示オプション: - Prompt on submit コミット前に確認する - Describe all files matching commit id コミットIDで紐づいているすべてのファイルを表示する - Timeout: タイムアウト: - s - 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. このオプションをチェックしている場合、アノテーション ビュー内でリビジョン番号をクリックした時に、該当するコミットで変更されたファイル(コミットIDで紐づいているもの)をすべて表示します。チェックしていない場合は、それぞれのファイルだけを表示します。 @@ -13125,42 +10822,34 @@ p, li { white-space: pre-wrap; } Designer::Internal::CppSettingsPageWidget - Form フォーム - Embedding of the UI Class UIクラスの埋め込み方法 - Aggregation as a pointer member ポインタ型のメンバとして集約 - Aggregation 集約 - Code Generation コード生成 - Support for changing languages at runtime 実行時の言語変更をサポートする - Use Qt module name in #include-directive #include ディレクティブで Qt モジュール名を使う - Multiple inheritance 多重継承 @@ -13168,27 +10857,22 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousHostWidget - ... ... - <New Host> <新しいホスト> - Host ホスト - Projects プロジェクト - Description 説明 @@ -13196,27 +10880,22 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousProjectWidget - WizardPage ウィザードページ - ... ... - Keep updating 更新し続ける - Project プロジェクト - Description 説明 @@ -13224,57 +10903,46 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousRepositoryWizardPage - WizardPage ウィザードページ - Name 名前 - Owner オーナー - Description 説明 - Repository リポジトリ - Choose a repository of the project '%1'. プロジェクト '%1' のリポジトリを選択してください。 - Mainline Repositories Mainline リポジトリ - Clones Clones - Baseline Repositories Baseline リポジトリ - Shared Project Repositories 共有プロジェクト リポジトリ - Personal Repositories パーソナル リポジトリ @@ -13282,107 +10950,86 @@ p, li { white-space: pre-wrap; } GeneralSettingsPage - Form フォーム - Font フォント - Family: フォント名: - Style: スタイル: - Size: サイズ: - Startup スタートアップ - On context help: コンテキスト ヘルプを開く時: - On help start: ヘルプを開く時: - 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 最後のセッションで開いていたタブを開く @@ -13390,57 +11037,46 @@ p, li { white-space: pre-wrap; } ProjectExplorer::Internal::ProjectExplorerSettingsPageUi - Build and Run ビルドして実行 - Use jom instead of nmake nmake の代わりに jom を使用する - Projects Directory プロジェクト ディレクトリ - Current directory 現在のディレクトリ - directoryButtonGroup directoryButtonGroup - Directory ディレクトリ - Save all files before build ビルド前にすべてのファイルを保存する - Always build project before running 実行前に必ずプロジェクトをビルドする - Show compiler output on building ビルド中にコンパイラが出力する内容を表示する - Clear old application output on a new run 新規実行時に以前のアプリケーション出力をクリアする - <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="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Disable it if you experience problems with your builds. <i>jom</i> は、マルチコアCPU環境下における分散コンパイルの為に <i>nmake</i> の一時的な代替ツールです。最新版は、<a href="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a> から入手して下さい。お使いの環境で問題が発生した場合は、使用しないようにしてください。 @@ -13448,47 +11084,38 @@ p, li { white-space: pre-wrap; } ProjectExplorer::Internal::ProjectWelcomePageWidget - Form フォーム - Manage Sessions... セッション管理... - %1 (last session) %1 (最後のセッション) - %1 (current session) %1 (現在のセッション) - New Project 新しいプロジェクト - Recent Sessions 最近使ったセッション - Recent Projects 最近使ったプロジェクト - Open Project... プロジェクトを開く... - Create Project... 新しいプロジェクトの作成... @@ -13496,7 +11123,6 @@ p, li { white-space: pre-wrap; } ProjectWelcomePage - Form フォーム @@ -13504,132 +11130,106 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::ClassDefinition - 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) @@ -13637,47 +11237,38 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::CustomWidgetPluginWizardPage - 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 @@ -13685,27 +11276,22 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::CustomWidgetWidgetsWizardPage - Custom Qt Widget Wizard カスタム Qt ウィジェットウィザード - Custom Widget List カスタムウィジェットリスト - Widget &Classes: ウィジェットクラス(&C): - Specify the list of custom widgets and their properties. カスタムウィジェットのリストとプロパティを指定。 - ... ... @@ -13713,202 +11299,161 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget - Form フォーム - Tutorials チュートリアル - Did You Know? ご存じですか? - 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... サンプルプログラムを選ぶ... - Copy Project to writable Location? プロジェクトを書き込み可能なパスへコピーしますか? - <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>開こうとしているプロジェクトは書き込み不能なパスにあります:</p><blockquote>%1</blockquote><p>プロジェクトの編集可能なコピーを開くには、書き込み可能なパスを下記に指定して「プロジェクトをコピーして開く」を選択してください。このパスでプロジェクトを開くには「プロジェクトをコピーせずに開く」を選択してください。</p><p><b>注意:</b> このパスでプロジェクトを開いた場合、編集やコンパイルはできません。</p> - &Location: パス(&L): - &Copy Project and Open プロジェクトをコピーして開く(&C) - &Keep Project and Open プロジェクトをコピーせずに開く(&K) - Warning 警告 - The specified location already exists. Please specify a valid location. 指定されたパスは既に存在します。有効なパスを入力してください。 - New Project 新しいプロジェクト - - Cmd Shortcut key Cmd - Alt Shortcut key Alt - Ctrl Shortcut key Ctrl - If you add external libraries to your project, Qt Creator will automatically offer syntax highlighting and code completion. 外部ライブラリをプロジェクトに追加すれば、Qt Creator は自動的に構文の強調表示やコード補完機能を提供します。 - Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">dependencies</a> between projects. セッション内で、プロジェクト間の <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">依存関係</a> を追加する事ができます。 - You can show and hide the side bar using <tt>%1+0<tt>. <tt>%1+0</tt> キーでサイドバーの表示/非表示を切り替えられます。 - You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. <tt>検索</tt>機能は&quot;単語単位で検索する&quot;や&quot;大文字/小文字を区別する&quot;を選択することで、目的に合わせて検索結果を調整できます。検索文字列を入力する欄の右端にあるアイコンをクリックすることで機能を選択できます。 - The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. コード補完はキャメルケースに対応しています。たとえば <tt>namespaceUrl</tt> を補完したい場合、<tt>nU</tt> と入力して <tt>Ctrl+Space</tt> を押してください。 - You can force code completion at any time using <tt>Ctrl+Space</tt>. <tt>Ctrl+Space</tt> を押せば、任意のタイミングでコード補完を開始することができます。 - You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. Qt Creator の起動時にセッション名を渡す(<tt>qtcreator &lt;セッション名&gt;)とそのセッションを開始できます。 - You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. <tt>エスケープ</tt>キーでいつでも他のモードから編集モードに戻れます。 - You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> アウトプット欄は <tt>%1+数字</tt>キーで変更できます。使用する数字はウィンドウの下部のボタンに記述されています:<ul><li>1 - ビルドの問題点</li><li>2 - 検索結果</li><li>3 - アプリケーション出力</li><li>4 - コンパイル出力</li></ul> - You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). メソッドやクラス、ヘルプ等を素早く検索するには<a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">クイックアクセス</a> (<tt>%1+K</tt>)を使用します。 - You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">ビルド設定</a>で独自のビルドステップを追加できます。 - You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. 各プロジェクトの編集時の文字コードは<tt>プロジェクト -> エディタの設定 -> デフォルトの文字コード</tt>で指定できます。 - You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. Qt Creator では Subversion や Perforce、CVS、Git 等のさまざまな<a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">バージョン管理システム</a>を使用できます。 - 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> キーでヘッダーファイルとソースファイルを切り替えできます。 - Explore Qt C++ Examples Qt の C++ のサンプルを参照する - Examples not installed... サンプルプログラムがインストールされていません... - Explore Qt Quick Examples Qt Quick のサンプルを参照する - Open Project... プロジェクトを開く... - Create Project... 新しいプロジェクトの作成... @@ -13916,37 +11461,30 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::S60DevicesPreferencePane - Form フォーム - Refresh 更新 - S60 SDKs S60 SDK - Add 追加 - Change Qt version Qt バージョンの変更 - Remove 削除 - Error エラー @@ -13954,32 +11492,26 @@ p, li { white-space: pre-wrap; } TextEditor::Internal::ColorSchemeEdit - Bold 太字 - Italic 斜体 - Background: 背景色: - Foreground: 前景色: - Erase background 背景色をクリア - x x @@ -13987,17 +11519,14 @@ p, li { white-space: pre-wrap; } VCSBase::BaseCheckoutWizardPage - WizardPage ウィザードページ - Checkout Directory: チェックアウト ディレクトリ: - Path: パス: @@ -14005,57 +11534,46 @@ p, li { white-space: pre-wrap; } Welcome::Internal::CommunityWelcomePageWidget - Form フォーム - News From the Qt Labs Qt Labs Japan からのニュース - <b>Forum Nokia</b><br /><font color='gray'>Mobile Application Support</font> <b>Nokia フォーラム</b><br /><font color='gray'>モバイルアプリケーションサポート</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>Qt Home</b><br /><font color='gray'>Qt by Nokia on the web</font> <b>Qt ホーム</b><br /><font color='gray'>Nokia 社の 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 Apps</b><br /><font color='gray'>フリーの Qt ベースアプリを探す</font> - http://labs.trolltech.com/blogs/feed http://feeds.feedburner.com/QtLabsJapan - Qt Support Sites Qt サポート サイト - Qt Links Qt リンク @@ -14063,7 +11581,6 @@ p, li { white-space: pre-wrap; } Welcome::WelcomeMode - #headerFrame { border-image: url(:/welcome/images/center_frame_header.png) 0; border-width: 0; @@ -14076,17 +11593,14 @@ p, li { white-space: pre-wrap; } - Help us make Qt Creator even better Qt Creator の改善にご協力ください - Feedback フィードバック - Welcome ようこそ @@ -14094,7 +11608,6 @@ p, li { white-space: pre-wrap; } Utils::DetailsButton - Details 詳細 @@ -14102,52 +11615,42 @@ p, li { white-space: pre-wrap; } OpenWith::Editors - Plain Text Editor テキスト エディタ - Binary Editor バイナリ エディタ - C++ Editor C++ エディタ - .pro File Editor .pro ファイル エディタ - .files Editor .files エディタ - QMLJS Editor QML JavaScript エディタ - .qmlproject Editor .qmlproject エディタ - Qt Designer Qt Designer - Qt Linguist Qt Linguist - Resource Editor リソース エディタ @@ -14155,12 +11658,10 @@ p, li { white-space: pre-wrap; } Core::Internal::SettingsDialog - Preferences 設定 - Options オプション @@ -14168,17 +11669,14 @@ p, li { white-space: pre-wrap; } CodePaster::CodePasterProtocol - No Server defined in the CodePaster preferences. コードペースターの設定にサーバが定義されていません。 - No Server defined in the CodePaster options. コードペースターの設定にサーバが定義されていません。 - No such paste 貼り付けるものがありません @@ -14186,17 +11684,14 @@ p, li { white-space: pre-wrap; } CodePaster::CodePasterSettingsPage - CodePaster コード ペースター - Server: サーバ: - Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). メモ: コードペースター サービスを提供するホスト名を、プロトコルを含まず(例:codepaster.mycompany.com)に指定してください。 @@ -14204,7 +11699,6 @@ p, li { white-space: pre-wrap; } CppTools::Internal::CppCurrentDocumentFilter - Methods in current Document 現在のドキュメント内のメソッド @@ -14212,7 +11706,6 @@ p, li { white-space: pre-wrap; } CppTools::Internal::CppFileSettingsWidget - /************************************************************************** ** Qt Creator license header template ** Special keywords: %USER% %DATE% %YEAR% @@ -14229,22 +11722,18 @@ p, li { white-space: pre-wrap; } - Edit... 編集... - Choose Location for New License Template File 新しいライセンス テンプレート ファイルの保存先を指定して下さい - Template write error テンプレート ファイルの書き込みエラー - Cannot write to %1: %2 %1 に書き込めませんでした: %2 @@ -14252,8 +11741,6 @@ p, li { white-space: pre-wrap; } CppTools::Internal::CppFindReferences - - Searching 検索中 @@ -14261,12 +11748,10 @@ p, li { white-space: pre-wrap; } CVS::Internal::CheckoutWizard - Checks out a CVS repository and tries to load the contained project. CVS リポジトリをチェックアウトし、プロジェクトに読み込みます。 - CVS Checkout CVS チェックアウト @@ -14274,17 +11759,14 @@ p, li { white-space: pre-wrap; } CVS::Internal::CheckoutWizardPage - Location パス - Specify repository and path. リポジトリ名とパスを指定して下さい。 - Repository: リポジトリ: @@ -14292,289 +11774,237 @@ p, li { white-space: pre-wrap; } CVSPlugin - Cannot find repository for '%1' - '%1' のリポジトリが見つかりません + '%1' のリポジトリが見つかりません CVS::Internal::CVSPlugin - Parsing of the log output failed ログ出力の解析に失敗しました - &CVS CVS(&C) - Add 追加 - Add "%1" "%1" を追加 - Alt+C,Alt+A Alt+C,Alt+A - Diff Project プロジェクトの差分表示 - Diff Current File 現在のファイルの差分表示 - Diff "%1" "%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 現在のファイルのファイルログ - + Cannot find repository for '%1' + '%1' のリポジトリが見つかりません + + Filelog "%1" "%1" のファイルログ - Annotate Current File 現在のファイルのアノテーション - Annotate "%1" "%1" のアノテーション - Delete... 削除... - Delete "%1"... "%1" を削除... - Revert... 元に戻す... - Revert "%1"... "%1" を元に戻す... - Diff Project "%1" プロジェクト "%1" の差分表示 - Project Status プロジェクトの状態 - Status of Project "%1" プロジェクト "%1" の状態 - Log Project プロジェクトのログ - Log Project "%1" プロジェクト "%1" のログ - Update Project プロジェクトをアップデート - Update Project "%1" プロジェクト "%1" をアップデート - Repository Log リポジトリ ログ - Revert Repository... リポジトリ全体を元に戻す... - Commit コミット - Diff Selected Files 選択済みファイルの差分表示 - &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? コミットメッセージが確認できませんでした。変更をコミットしますか? - The files do not differ. 差分はありません。 - Revert repository リポジトリ全体を元に戻す - Would you like to revert all 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. 変更されたファイルはありません。 - Cannot create temporary file: %1 一時ファイルを作成できません: %1 - Project status プロジェクトの状態 - The initial revision %1 cannot be described. 初期リビジョン %1 に説明はありません。 - Could not find commits of id '%1' on %2. %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 ミリ秒) 内に応答を返しませんでした。 @@ -14582,17 +12012,14 @@ p, li { white-space: pre-wrap; } CVS::Internal::CVSSubmitEditor - Added 追加 - Removed 削除 - Modified 変更 @@ -14600,7 +12027,6 @@ p, li { white-space: pre-wrap; } CVS::Internal::SettingsPageWidget - CVS Command CVS コマンド @@ -14608,17 +12034,14 @@ p, li { white-space: pre-wrap; } CdbStackFrameContext - <Unknown Type> <不明な型> - <Unknown Value> <不明な値> - <Unknown> <不明> @@ -14626,7 +12049,6 @@ p, li { white-space: pre-wrap; } SymbolGroup - Out of scope スコープ範囲外 @@ -14634,17 +12056,14 @@ p, li { white-space: pre-wrap; } Debugger::Internal::MemoryViewAgent - Memory $ メモリ $ - No memory viewer available 利用可能なメモリ ビューアがありません - The memory contents cannot be shown as no viewer plugin for binary data has been loaded. バイナリデータを表示するためのビューアプラグインが読み込まれていない為、メモリの内容を表示できません。 @@ -14652,7 +12071,6 @@ p, li { white-space: pre-wrap; } Debugger::Internal::DebuggerRunControlFactory - Debug デバッグ @@ -14660,7 +12078,6 @@ p, li { white-space: pre-wrap; } Debugger::Internal::DebuggerRunControl - Debugger デバッガ @@ -14668,131 +12085,107 @@ p, li { white-space: pre-wrap; } Debugger::Internal::CoreGdbAdapter - - - Error Loading Symbols - シンボル読み込みでエラー + シンボル読み込みでエラー - No executable to load symbols from specified. - 指定されたシンボルを読み込む為の実行ファイルがありません。 + 指定されたシンボルを読み込む為の実行ファイルがありません。 - Loading symbols from "%1" failed: - "%1" からのシンボル読み込みが失敗しました: + "%1" からのシンボル読み込みが失敗しました: - Attached to core temporarily. - 一時的にコアファイルにアタッチしました。 + 一時的にコアファイルにアタッチしました。 - Unable to determine executable from core file. - コアファイルからの実行ファイル特定ができません。 + コアファイルからの実行ファイル特定ができません。 - Attach to core "%1" failed: - コアファイル "%1" へのアタッチが失敗しました: + コアファイル "%1" へのアタッチが失敗しました: - Symbols found. - シンボルが見つかりました。 + シンボルが見つかりました。 - Attached to core. - コアファイルにアタッチしました。 + コアファイルにアタッチしました。 Debugger::Internal::PlainGdbAdapter - Cannot set up communication with child process: %1 - 子プロセスと通信できません: %1 + 子プロセスと通信できません: %1 - Starting executable failed: - 実行ファイルの開始に失敗しました: + 実行ファイルの開始に失敗しました: Debugger::Internal::RemoteGdbAdapter - The upload process failed to start. Shell missing? - アップロードプロセスの開始に失敗しました。シェルが失われていませんか? + アップロードプロセスの開始に失敗しました。シェルが失われていませんか? - 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...() を呼び出せます。 + 直前の 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()がデフォルト値で呼び出されている場合等に生じるエラーです。 + アップロードプロセスで不明なエラーが発生しました。error()がデフォルト値で呼び出されている場合等に生じるエラーです。 - Error - エラー + エラー - Starting remote executable failed: - リモート実行が開始できませんでした: + リモート実行が開始できませんでした: Debugger::Internal::TrkGdbAdapter - Port specification missing. ポート定義が見つかりません。 - Unable to acquire a device on '%1'. It appears to be in use. デバイスのポート '%1' が使用中の為、獲得する事ができません。 - Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. プロセス(PID: 0x%1、スレッドID: %2、コード セグメント: 0x%3、データ セグメント: %4)が開始しました。 - Connecting to TRK server adapter failed: TRK サーバ アダプタへの接続に失敗しました: @@ -14802,183 +12195,130 @@ p, li { white-space: pre-wrap; } 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 不正なコンストラクタ/デストラクタ名 - - Invalid call-offset 不正な呼び出しオフセット - Invalid v-offset 不正な仮想呼び出しオフセット - Invalid digit 不正な数値 - At position %1: 位置 %1: @@ -14986,7 +12326,6 @@ p, li { white-space: pre-wrap; } Designer::FormWindowEditor - untitled 無題 @@ -14994,12 +12333,10 @@ p, li { white-space: pre-wrap; } Git::Internal::CloneWizard - Clones a Git repository and tries to load the contained project. Git リポジトリをクローンし、プロジェクトに読み込みます。 - Git Repository Clone Git リポジトリ クローン @@ -15007,17 +12344,14 @@ p, li { white-space: pre-wrap; } Git::CloneWizardPage - Location パス - Specify repository URL, checkout directory and path. リポジトリのURL、チェックアウト先ディレクトリおよびパスを指定して下さい。 - Clone URL: クローン URL: @@ -15025,17 +12359,14 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::Gitorious - Error parsing reply from '%1': %2 '%1' からの応答を解析中にエラー: %2 - Request failed for '%1': %2 '%1' への要求に失敗: %2 - Open source projects that use Git. Git を使ったオープン ソース プロジェクトです。 @@ -15043,12 +12374,10 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousCloneWizard - Clones a Gitorious repository and tries to load the contained project. Gitorious リポジトリをクローンし、プロジェクトに読み込みます。 - Gitorious Repository Clone Gitorious リポジトリ クローン @@ -15056,12 +12385,10 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousHostWizardPage - Host ホスト - Select a host. ホストを選択してください。 @@ -15069,12 +12396,10 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousProjectWizardPage - Project プロジェクト - Choose a project from '%1' '%1' からプロジェクトを選択 @@ -15082,28 +12407,22 @@ p, li { white-space: pre-wrap; } Help::Internal::GeneralSettingsPage - General Settings 基本設定 - Open Image ヘルプ ブックマークを開く - - Files (*.xbel) ファイル (*.xbel) - There was an error while importing bookmarks! ブックマークをインポート中にエラーが発生しました! - Save File ファイルの保存 @@ -15111,12 +12430,10 @@ p, li { white-space: pre-wrap; } Help::Internal::XbelReader - The file is not an XBEL version 1.0 file. ファイルは XBEL バージョン 1.0 形式のファイルではありません。 - Unknown title 不明なタイトル @@ -15124,17 +12441,14 @@ p, li { white-space: pre-wrap; } ProjectExplorer::ApplicationLauncher - Failed to start program. Path or permissions wrong? プログラムを開始できませんでした。パスかパーミッションに誤りはありませんか? - The program has unexpectedly finished. プログラムが突然終了しました。 - Some error has occurred while running the program. プログラムを実行中にいくつかエラーが発生しました。 @@ -15142,7 +12456,6 @@ p, li { white-space: pre-wrap; } ProjectExplorer::Internal::LocalApplicationRunControlFactory - Run 実行 @@ -15150,12 +12463,10 @@ p, li { white-space: pre-wrap; } ProjectExplorer::Internal::LocalApplicationRunControl - Starting %1... %1 を起動中... - %1 exited with code %2 %1 はコード %2 で終了しました @@ -15163,22 +12474,18 @@ p, li { white-space: pre-wrap; } 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 @@ -15189,30 +12496,24 @@ Reason: %2 理由: %2 - Building debugging helper library in %1 %1 でデバッグヘルパライブラリをビルド中 - Running %1 %2... 実行中です %1 %2... - - %1 not found in PATH %1 が環境変数 PATH に見つかりません - - Running %1 ... %1 を実行中... @@ -15222,7 +12523,6 @@ Reason: %2 ProjectExplorer::Internal::ProjectWelcomePage - Develop 開発 @@ -15230,72 +12530,58 @@ Reason: %2 ToolChain - GCC GCC - Intel C++ Compiler (Linux) インテル C++ コンパイラ (Linux) - Microsoft Visual C++ Microsoft Visual C++ - Windows CE Windows CE - WINSCW WINSCW - GCCE GCCE - GCCE/GnuPoc GCCE/GnuPoc - RVCT (ARMV6)/GnuPoc RVCT (ARMV6)/GnuPoc - RVCT (ARMV5) RVCT (ARMV5) - RVCT (ARMV6) RVCT (ARMV6) - GCC for Maemo GCC for Maemo - Other その他 - <Invalid> <無効> - <Unknown> <不明> @@ -15303,17 +12589,14 @@ Reason: %2 Qt4ProjectManager::Internal::ClassList - <New class> <新しいクラス> - Confirm Delete 削除の確認 - Delete class %1 from list? クラス %1 をリストから削除しますか? @@ -15321,12 +12604,10 @@ Reason: %2 Qt4ProjectManager::Internal::CustomWidgetWizard - Qt Custom Designer Widget Qt カスタム デザイナー ウィジェット - Creates a Qt Custom Designer Widget or a Custom Widget Collection. Qt カスタム Designer ウィジェット、またはカスタム ウィジェット コレクションを作成します。 @@ -15334,17 +12615,14 @@ Reason: %2 Qt4ProjectManager::Internal::CustomWidgetWizardDialog - This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. このウィザードでは Qt4 デザイナー用カスタムウィジェットもしくは Qt4 デザイナーカスタムウィジェットコレクションプロジェクトを生成します。 - Custom Widgets カスタムウィジェット - Plugin Details プラグインの詳細 @@ -15352,17 +12630,14 @@ Reason: %2 Qt4ProjectManager::Internal::PluginGenerator - 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 @@ -15370,7 +12645,6 @@ Reason: %2 Qt4ProjectManager::Internal::GettingStartedWelcomePage - Getting Started Qt Creator を始めよう @@ -15378,12 +12652,10 @@ Reason: %2 Qt4ProjectManager::Internal::S60DeviceRunConfiguration - QtS60DeviceRunConfiguration Qt for Symbian デバイス実行構成 - %1 on Symbian Device Symbian デバイス上の %1 @@ -15391,37 +12663,30 @@ Reason: %2 Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget - Device: デバイス: - Name: 名前: - Arguments: 引数: - Installation file: インストールするファイル: - Device on serial port: シリアルポートのデバイス: - Queries the device for information デバイスの情報を取得 - Connecting... 接続中... @@ -15429,7 +12694,6 @@ Reason: %2 Qt4ProjectManager::Internal::S60DeviceRunConfigurationFactory - %1 on Symbian Device Symbian デバイス上の %1 @@ -15437,121 +12701,98 @@ Reason: %2 Qt4ProjectManager::Internal::S60DeviceRunControlBase - There is no device plugged in. デバイスが接続されていません。 - Executable file: %1 実行ファイル: %1 - Debugger for Symbian Platform Symbian プラットフォーム用のデバッガ - Unable to remove existing file '%1': %2 存在しているファイル '%1' を削除できません: %2 - Unable to rename file '%1' to '%2': %3 ファイル '%1' を '%2' という名前に変更できません: %3 - Deploying 転送中 - 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 デバイスが接続済みであり、 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。TRK アプリケーションを閉じるときにファイルも閉じられます。 - Could not connect to App TRK on device: %1. Restarting App TRK might help. デバイスの TRK アプリケーションに接続できません: %1。 TRK アプリケーションを再起動してください。 - Copying installation file... インストールファイルをコピー中... - The device '%1' has been disconnected デバイス '%1' は切断しました - Installing application... アプリケーションのインストール中... - Could not install from package %1 on device: %2 デバイスにパッケージ %1 からインストールできません: %2 - Waiting for App TRK TRK アプリケーションを待機中 - Please start App TRK on %1. %1 で TRK アプリケーションを起動してください。 - Canceled. 中止しました。 @@ -15559,22 +12800,18 @@ Check if the phone is connected and App TRK is running. Qt4ProjectManager::Internal::S60DeviceRunControl - Finished. 終了。 - Starting application... アプリケーションの起動中... - Application running with pid %1. アプリケーションは pid %1 で動作中。 - Could not start application: %1 アプリケーションを起動できません: %1 @@ -15582,17 +12819,14 @@ Check if the phone is connected and App TRK is running. Qt4ProjectManager::Internal::S60DeviceDebugRunControl - Warning: Cannot locate the symbol file belonging to %1. 警告: %1に属するシンボルファイルを配置できません。 - Launching debugger... デバッガの起動中... - Debugging finished. デバッグ終了。 @@ -15600,12 +12834,10 @@ Check if the phone is connected and App TRK is running. Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget - Name: 名前: - Executable: 実行ファイル: @@ -15613,12 +12845,10 @@ Check if the phone is connected and App TRK is running. Qt4ProjectManager::Internal::S60EmulatorRunConfiguration - %1 in Symbian Emulator Symbian エミュレータ上の %1 - Qt Symbian Emulator RunConfiguration Qt Symbian エミュレータの実行構成 @@ -15626,7 +12856,6 @@ Check if the phone is connected and App TRK is running. Qt4ProjectManager::Internal::S60EmulatorRunConfigurationFactory - %1 in Symbian Emulator Symbian エミュレータ上の %1 @@ -15634,17 +12863,14 @@ Check if the phone is connected and App TRK is running. Qt4ProjectManager::Internal::S60EmulatorRunControl - Starting %1... %1 を起動中... - [Qt Message] [Qt メッセージ] - %1 exited with code %2 %1 はコード %2 で終了しました @@ -15652,17 +12878,14 @@ Check if the phone is connected and App TRK is running. Qt4ProjectManager::Internal::S60Manager - Run in Emulator エミュレータで実行 - Run on Device デバイスで実行 - Debug on Device デバイスでデバッグ @@ -15670,12 +12893,10 @@ Check if the phone is connected and App TRK is running. Subversion::Internal::CheckoutWizard - Checks out a Subversion repository and tries to load the contained project. Subversion リポジトリをチェックアウトし、プロジェクトに読み込みます。 - Subversion Checkout Subversion チェックアウト @@ -15683,17 +12904,14 @@ Check if the phone is connected and App TRK is running. Subversion::Internal::CheckoutWizardPage - Location パス - Specify repository URL, checkout directory and path. リポジトリのURL、チェックアウト先ディレクトリおよびパスを指定して下さい。 - Repository: リポジトリ: @@ -15701,7 +12919,6 @@ Check if the phone is connected and App TRK is running. TextEditor::Internal::ColorScheme - Not a color scheme file. カラースキームファイルではありません。 @@ -15709,7 +12926,6 @@ Check if the phone is connected and App TRK is running. TextEditor::Internal::FontSettings - Customized カスタムフォント @@ -15717,32 +12933,26 @@ Check if the phone is connected and App TRK is running. 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' が開けませんでした。 @@ -15750,27 +12960,22 @@ Check if the phone is connected and App TRK is running. 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... 停止中... @@ -15778,22 +12983,18 @@ Check if the phone is connected and App TRK is running. VCSBase::Internal::CheckoutProgressWizardPage - Checkout チェックアウト - Checkout started... チェックアウトを開始しました... - Failed. 失敗しました。 - Succeeded. 成功しました。 @@ -15801,17 +13002,14 @@ Check if the phone is connected and App TRK is running. VCSBase::VCSBaseOutputWindow - Open "%1" "%1" を開く - Clear クリア - Version Control バージョン管理 @@ -15819,7 +13017,6 @@ Check if the phone is connected and App TRK is running. Welcome::Internal::CommunityWelcomePage - News && Support ニュースとサポート @@ -15827,202 +13024,162 @@ Check if the phone is connected and App TRK is running. MimeType - 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 Designer ファイル - 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 ファイル - Qt Project file Qt プロジェクト ファイル - Qt Project include file Qt プロジェクト インクルード ファイル - message catalog メッセージ カタログ - Qt Script file Qt スクリプト ファイル - BMP image BMP 画像 - GIF image GIF 画像 - ICO image アイコンファイル - 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 画像 - QML Project file QML プロジェクト ファイル - Qt Project feature file Qt プロジェクト機能ファイル - Qt Resource file Qt リソースファイル - Subversion submit template Subversion コミット テンプレート - Plain text document テキスト文書 - XML document XML ドキュメント - Differences between files 差分ファイル @@ -16030,36 +13187,30 @@ Check if the phone is connected and App TRK is running. Debugger::Internal::AbstractGdbAdapter - 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 リモート サーバへの接続に失敗しました: @@ -16069,72 +13220,57 @@ Check if the phone is connected and App TRK is running. Debugger::Internal::TermGdbAdapter - Debugger Error - デバッガエラー + デバッガエラー QmlParser - Illegal character 無効な文字 - Unclosed string at end of line 文末で閉じられていない文字列 - Illegal escape squence 無効なエスケープシーケンス - Illegal unicode escape sequence 無効な UNICODE エスケープシーケンス - 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' - - Syntax error シンタックスエラー - Unexpected token `%1' 予期しないトークン `%1' - - Expected token `%1' 期待されるトークン `%1' @@ -16142,27 +13278,22 @@ Check if the phone is connected and App TRK is running. Qt4ProjectManager::Internal::S60Devices::Device - Id: ID: - Name: 名前: - EPOC: EPOC: - Tools: ツール: - Qt: Qt: @@ -16170,37 +13301,30 @@ Check if the phone is connected and App TRK is running. trk::BluetoothListener - %1: Stopping listener %2... %1: リスナ %2 を停止中... - %1: Starting Bluetooth listener %2... %1: Bluetooth リスナ %2 を起動中... - Unable to run '%1': %2 '%1' を実行できません: %2 - %1: Bluetooth listener running (%2). %1: Bluetooth リスナ (%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 @@ -16208,27 +13332,22 @@ Check if the phone is connected and App TRK is running. trk::promptStartCommunication - Connection on %1 canceled. %1 への接続が中止されました。 - Waiting for App TRK TRK アプリケーションを待機中 - Waiting for App TRK to start on %1... %1 で TRK アプリケーションを待機中... - Waiting for Bluetooth Connection Bluetooth 接続を待機中 - Connecting to %1... %1 へ接続中... @@ -16236,19 +13355,16 @@ Check if the phone is connected and App TRK is running. trk::BaseCommunicationStarter - %1: timed out after %n attempts using an interval of %2ms. %1: %2 ms の間隔で %n 回試行後にタイムアウトしました。 - %1: Connection attempt %2 succeeded. %1: %2 に接続しました。 - %1: Connection attempt %2 failed: %3 (retrying)... %1: %2 への接続に失敗しました: %3 (再試行中)... @@ -16256,40 +13372,33 @@ Check if the phone is connected and App TRK is running. 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 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 - big endian ビッグエンディアン - little endian リトルエンディアン - , type size: %1 will be inserted into s60description , 型サイズ: %1 - , float size: %1 will be inserted into s60description , float サイズ: %1 @@ -16298,52 +13407,42 @@ Check if the phone is connected and App TRK is running. CommandMappings - Command Mappings コマンド マッピング - Command コマンド - Label ラベル - Target ターゲット - Defaults デフォルト - Import... インポート... - Export... エクスポート... - Target Identifier ターゲット識別子 - Target: ターゲット: - Reset リセット @@ -16351,27 +13450,22 @@ Check if the phone is connected and App TRK is running. CodePaster::FileShareProtocolSettingsWidget - Form フォーム - &Path: パス(&P): - &Display: 表示(&D): - entries エントリ - The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. ファイル共有に基づいたペースター プロトコルは、共有されたネットワークドライブを使ったコードスニペットの共有をサポートしています。ファイルが削除されることはありません。 @@ -16379,128 +13473,103 @@ Check if the phone is connected and App TRK is running. Git::Internal::StashDialog - Stashes 退避情報 - Name 名前 - Branch ブランチ - Message メッセージ - Delete all... すべて削除... - Delete... 削除... - Show 表示 - Restore... 復元... - Restore to branch... Restore a git stash to new branch to be created ブランチとして復元... - Refresh 更新 - <No repository> <リポジトリなし> - Repository: %1 リポジトリ: %1 - - Delete stashes 退避情報の削除 - Do you want to delete all stashes? すべての退避情報を削除しますか? - Do you want to delete %n stash(es)? %n 個の退避情報を削除しますか? - 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 退避情報をブランチとして復元します - Branch: ブランチ: - Stash Restore 退避情報の復元 - Would you like to restore %1? %1 を復元しますか? - Error restoring %1 %1 の復元でエラー @@ -16508,42 +13577,34 @@ You can choose between stashing the changes or discarding them. Mercurial::Internal::MercurialCommitPanel - General Information 概要 - Repository: リポジトリ: - repository リポジトリ - Branch: ブランチ: - branch ブランチ - Commit Information コミット情報 - Author: 改訂者: - Email: Email: @@ -16551,77 +13612,62 @@ You can choose between stashing the changes or discarding them. Mercurial::Internal::OptionsPage - Form フォーム - Configuration 構成 - Command: コマンド: - User ユーザ情報 - Username to use by default on commit. コミット時にデフォルトで使用されるユーザ名です。 - Default username: ユーザ名: - Email to use by default on commit. コミット時にデフォルトで使用されるメールアドレスです。 - Miscellaneous その他 - Log count: ログ上限: - The number of recent commit logs to show, choose 0 to see all enteries 表示される最新のコミットログの上限数です。0 を指定するとすべて表示されます - Timeout: タイムアウト: - s - Prompt on submit コミット前に確認する - Mercurial Mercurial - Default email: メールアドレス: @@ -16629,17 +13675,14 @@ You can choose between stashing the changes or discarding them. Mercurial::Internal::RevertDialog - Revert 元に戻す - Specify a revision other than the default? デフォルト以外のリビジョンを指定しますか? - Revision: リビジョン: @@ -16647,27 +13690,22 @@ You can choose between stashing the changes or discarding them. Mercurial::Internal::SrcDestDialog - Dialog ダイアログ - Default Location デフォルト パス - Local filesystem: ローカルファイルシステム: - e.g. https://[user[:pass]@]host[:port]/[path] 例 https://[user[:pass]@]host[:port]/[path] - Specify Url: 指定URL: @@ -16675,12 +13713,10 @@ You can choose between stashing the changes or discarding them. ProjectExplorer::Internal::AddTargetDialog - Add target ターゲットを追加 - Target: ターゲット: @@ -16688,7 +13724,6 @@ You can choose between stashing the changes or discarding them. ProjectExplorer::Internal::DoubleTabWidget - DoubleTabWidget DoubleTabWidget @@ -16696,7 +13731,6 @@ You can choose between stashing the changes or discarding them. ProjectExplorer::Internal::TargetSettingsWidget - TargetSettingsWidget TargetSettingsWidget @@ -16704,72 +13738,58 @@ You can choose between stashing the changes or discarding them. BehaviorDialog - Dialog ダイアログ - Type: 型: - Id: ID: - Property Name: プロパティ名: - Animation アニメーション - SpringFollow スプリングフロー - Settings 設定 - Duration: 持続時間: - Curve: カーブ: - easeNone ゆるやか - Source: ソース: - Velocity: 速度: - Spring: スプリング: - Damping: ダンピング: @@ -16777,7 +13797,6 @@ You can choose between stashing the changes or discarding them. GradientDialog - Edit Gradient グラデーションの編集 @@ -16785,304 +13804,242 @@ You can choose between stashing the changes or discarding them. GradientEditor - Form フォーム - Gradient Editor グラデーション エディタ - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. この部分には編集中のグラデーションのプレビューが表示されます。始点や終点、半径等のグラデーションのパラメータをドラッグ & ドロップで編集できます。 - 1 1 - 2 2 - 3 3 - 4 4 - 5 5 - Gradient Stops Editor グラデーション移行ポイントエディタ - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. この部分でグラデーション移行ポイントを編集できます。設定済みのポイントをダブルクリックすると、移行ポイントが複製されます。設定済みの移行ポイント以外の部分をダブルクリックすると新しい移行ポイントを設定できます。設定した移行ポイントはドラッグ & ドロップで位置を調整できます。右クリックメニューから他の操作を行う事も可能です。 - Zoom 拡大率 - Reset Zoom 拡大率を戻す - Position 位置 - Hue 色相 - H H - Saturation 彩度 - S S - Sat 彩度 - Value - V V - Val - Alpha アルファ - A A - Type - Spread 拡散 - Color - Current stop's color 現在の移行ポイントの色 - Show HSV specification HSV仕様で表示 - HSV HSV - Show RGB specification RGB仕様で表示 - RGB 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 反射 @@ -17090,7 +14047,6 @@ You can choose between stashing the changes or discarding them. QtGradientDialog - Edit Gradient グラデーションの編集 @@ -17098,304 +14054,242 @@ You can choose between stashing the changes or discarding them. QtGradientEditor - Form フォーム - Gradient Editor グラデーション エディタ - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. この部分には編集中のグラデーションのプレビューが表示されます。始点や終点、半径等のグラデーションのパラメータをドラッグ & ドロップで編集できます。 - 1 1 - 2 2 - 3 3 - 4 4 - 5 5 - Gradient Stops Editor グラデーション移行ポイントエディタ - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. この部分でグラデーション移行ポイントを編集できます。設定済みのポイントをダブルクリックすると、移行ポイントが複製されます。設定済みの移行ポイント以外の部分をダブルクリックすると新しい移行ポイントを設定できます。設定した移行ポイントはドラッグ & ドロップで位置を調整できます。右クリックメニューから他の操作を行う事も可能です。 - Zoom 拡大率 - Reset Zoom 拡大率を戻す - Position 位置 - Hue 色相 - H H - Saturation 彩度 - S S - Sat 彩度 - Value - V V - Val - Alpha アルファ - A A - Type - Spread 拡散 - Color - Current stop's color 現在の移行ポイントの色 - Show HSV specification HSV仕様で表示 - HSV HSV - Show RGB specification RGB仕様で表示 - RGB 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 反射 @@ -17403,46 +14297,34 @@ You can choose between stashing the changes or discarding them. QtGradientView - Gradient View グラデーション 表示 - - New... 新規... - - Edit... 編集... - - Rename 名前を変更 - - Remove 削除 - Grad グラデーション - Remove Gradient グラデーションを削除 - Are you sure you want to remove the selected gradient? 選択されたグラデーションを削除しますか? @@ -17450,8 +14332,6 @@ You can choose between stashing the changes or discarding them. QtGradientViewDialog - - Select Gradient グラデーション選択 @@ -17459,27 +14339,22 @@ You can choose between stashing the changes or discarding them. QmlDesigner::Internal::SettingsPage - Form フォーム - Snapping スナップ - Item spacing アイテム間隔 - Snap margin マージン - Qt Quick Designer Qt Quick デザイナ @@ -17487,47 +14362,38 @@ You can choose between stashing the changes or discarding them. StartExternalQmlDialog - Start Simultaneous QML and C++ Debugging QML と C++ のデバッグを同時に始める - Debugging address: IPアドレス: - Debugging port: ポート: - 127.0.0.1 127.0.0.1 - Project: プロジェクト: - <No project> <プロジェクトがありません> - Viewer path: ビューア パス: - Viewer arguments: ビューア 引数: - To switch languages while debugging, go to Debug->Language menu. デバッグ -> 言語 メニューでデバッグ中の言語を切り替えられます。 @@ -17535,7 +14401,6 @@ You can choose between stashing the changes or discarding them. MaemoConfigTestDialog - Device Configuration Test デバイス構成のテスト @@ -17543,152 +14408,151 @@ You can choose between stashing the changes or discarding them. MaemoPackageCreationWidget - Package contents: - パッケージの内容: + パッケージの内容: - Add File to Package パッケージにファイルを追加 - Remove File from Package パッケージからファイルを削除 - Check this if you build the package externally. It still needs to be at the location listed above and the remote executable is assumed to be in the directory mentioned below. - もし外部でパッケージをビルドする場合は、これをチェックしてください。 + もし外部でパッケージをビルドする場合は、これをチェックしてください。 ディレクトリ配下にリモート実行ファイルが存在すると想定されている為、上記パス上に存在する必要があります。 - Skip Packaging Step + パッケージ作成ステップをスキップ + + + Check this if you want the files below to be deployed directly. + これをチェックすると以下のファイルが直接デプロイされるようになります。 + + + Skip packaging step パッケージ作成ステップをスキップ + + Version number: + バージョン番号: + + + Major: + メジャー: + + + Minor: + マイナー: + + + Patch: + パッチ: + + + Files to deploy: + デプロイするファイル: + MaemoSettingsWidget - Maemo Device Configurations Maemo デバイス構成 - Configuration: 構成: - Name 名前 - Device type: デバイス種類: - Authentication type: 認証方法: - Password パスワード - Key - IP or host name of the device デバイスのIPアドレス/ホスト名 - Ports: ポート: - SSH: SSH: - Gdb server: Gdb サーバ: - s - Password: パスワード: - Private key file: 秘密鍵ファイル: - Add 追加 - Remove 削除 - Test テスト - Generate SSH Key ... SSH 鍵の生成... - Deploy Public Key ... 公開鍵の転送... - Remote device リモート デバイス - Maemo emulator Maemo エミュレータ - Host name: ホスト名: - Connection timeout: 接続タイムアウト: - Username: ユーザー名: @@ -17696,57 +14560,46 @@ and the remote executable is assumed to be in the directory mentioned below. MaemoSshConfigDialog - SSH Key Configuration SSH 鍵の設定 - Options オプション - Key size: 鍵サイズ: - Key algorithm: 鍵アルゴリズム: - RSA RSA - DSA DSA - Key - Generate SSH Key SSH 鍵を生成 - Close 閉じる - Save Public Key... 公開鍵を保存... - Save Private Key... 秘密鍵を保存... @@ -17754,27 +14607,22 @@ and the remote executable is assumed to be in the directory mentioned below. Qt4ProjectManager::Internal::S60CreatePackageStepWidget - Form フォーム - Self-signed certificate 自己署名証明書 - Custom certificate: カスタム証明書: - Choose certificate file (.cer) 証明書ファイル(.cer)の選択 - Key file: 秘密鍵ファイル: @@ -17782,78 +14630,64 @@ and the remote executable is assumed to be in the directory mentioned below. Qt4ProjectManager::Internal::TargetSetupPage - Setup targets for your project プロジェクトのターゲットを設定 - Qt Creator can set up the following targets: 以下のターゲットが有効です: - Qt Version Qt バージョン - Status ステータス - Build Directory ビルド ディレクトリ - 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? 新規作成 - Qt Creator can set up the following targets for project <b>%1</b>: %1: Project name Qt Creator はプロジェクト <b>%1</b> 向けに以下のターゲットを設定できます: - Choose a directory to scan for additional shadow builds 追加のシャドウビルドを探すディレクトリを選択してください - 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" にはビルドがありません。 - <b>Error:</b> Severity is Task::Error <b>エラー:</b> - <b>Warning:</b> Severity is Task::Warning <b>警告:</b> - Import Existing Shadow Build... 既存のシャドウビルドをインポート... @@ -17861,62 +14695,50 @@ and the remote executable is assumed to be in the directory mentioned below. Qt4ProjectManager::Internal::TestWizardPage - WizardPage ウィザードページ - Specify basic information about the test class for which you want to generate skeleton source code file. 生成したいテストクラスについての基本的な情報を指定して下さい。 - Class name: クラス名: - Type: 種類: - Test テスト - Benchmark ベンチマーク - File: ファイル: - Generate initialization and cleanup code 初期化処理とクリーンアップ処理を生成する - Test slot: テストスロット: - Requires QApplication QApplication を要求する - Use a test data set テストデータセットを使用する - Test Class Information テストクラス情報 @@ -17924,59 +14746,48 @@ and the remote executable is assumed to be in the directory mentioned below. 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 - %1 bytes, last modified %2 %1 bytes、最終更新日時 %2 - Delete 削除 - Do you want to delete %n files? %n 個のファイルを削除しますか? - Cleaning %1 %1 をクリーニング中 - Clean Repository リポジトリをクリーン @@ -17984,44 +14795,36 @@ and the remote executable is assumed to be in the directory mentioned below. 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. コミットメッセージが書かれた一時ファイルを第一引数に取る実行ファイルです。エラーが発生した場合には標準エラー出力にメッセージを出力し、0以外の終了コードを返してください。 - Submit message check script: コミット時のメッセージチェックスクリプト: - A file listing user names and email addresses in a 4-column mailmap format: name <email> alias <email> 4列の mailmap フォーマットでユーザ名およびemailアドレスを記述したファイル: 名前 <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. サブミットエディタで追加したいフィールド名(たとえば"Reviewed-By:")を各行に記述したテキストファイル。 - User fields configuration file: ユーザフィールドの設定ファイル: @@ -18029,37 +14832,30 @@ name <email> alias <email> BorderImageSpecifics - Image 画像 - Source ソース - Source Size ソースサイズ - Left - Right - Top - Bottom @@ -18067,7 +14863,6 @@ name <email> alias <email> emptyPane - none or multiple items selected 何も選択されていないか複数のアイテムが選択されています @@ -18075,7 +14870,6 @@ name <email> alias <email> ExpressionEditor - Expression @@ -18083,28 +14877,22 @@ name <email> alias <email> Extended - Effect エフェクト - - Blur Radius: ブラー半径: - Pixel Size: ピクセルサイズ: - x Offset: X オフセット: - y Offset: Y オフセット: @@ -18112,12 +14900,10 @@ name <email> alias <email> ExtendedFunctionButton - Reset リセット - Set Expression 式を設定 @@ -18125,23 +14911,18 @@ name <email> alias <email> FontGroupBox - - Font フォント - Size サイズ - Font Style フォントスタイル - Style スタイル @@ -18149,22 +14930,18 @@ name <email> alias <email> Geometry - Geometry ジオメトリ - Position 位置 - Size サイズ - Lock aspect ratio アスペクト比を固定 @@ -18172,37 +14949,30 @@ name <email> alias <email> ImageSpecifics - Image 画像 - Source ソース - Fill Mode 塗りつぶし方 - Aliasing エイリアシング - Smooth スムース - Source Size 元サイズ - Painted Size 描画サイズ @@ -18210,32 +14980,18 @@ name <email> alias <email> Layout - Layout レイアウト - Anchors アンカー - - - - - - Target 基準 - - - - - - Margin マージン @@ -18243,17 +14999,14 @@ name <email> alias <email> Modifiers - Manipulation 操作 - Rotation 回転 - z Zオーダ @@ -18261,27 +15014,22 @@ name <email> alias <email> RectangleColorGroupBox - Colors - Stops 移行ポイント - Gradient Stops グラデーション移行ポイント - Rectangle 四角形 - Border 枠線 @@ -18289,17 +15037,14 @@ name <email> alias <email> RectangleSpecifics - Rectangle 四角形 - Border 枠線 - Radius 半径 @@ -18307,27 +15052,22 @@ name <email> alias <email> StandardTextColorGroupBox - Color - Text テキスト - Style スタイル - Selection 選択した部分 - Selected 選択状態 @@ -18335,33 +15075,26 @@ name <email> alias <email> StandardTextGroupBox - - Text テキスト - Wrap Mode 折り返し - Alignment 整列 - - Aliasing エイリアシング - Smooth スムース @@ -18369,27 +15102,22 @@ name <email> alias <email> Switches - special properties 固有プロパティ - layout and geometry レイアウトとジオメトリ - Geometry ジオメトリ - advanced properties 拡張プロパティ - Advanced 拡張 @@ -18397,12 +15125,10 @@ name <email> alias <email> TextEditSpecifics - Text Edit テキスト エディット - Format フォーマット @@ -18410,52 +15136,42 @@ name <email> alias <email> TextInputGroupBox - Text Input テキスト入力 - Input Mask 入力マスク - Echo Mode エコーモード - Pass. Char パス文字 - Password Character パスワード文字 - Flags フラグ - Read Only 書込禁止 - Cursor Visible カーソルの可視化 - Focus On Press 押下時にフォーカスを得る - Auto Scroll 自動スクロール @@ -18463,67 +15179,54 @@ name <email> alias <email> Transformation - Transformation 変形 - Origin 基点 - Top Left 左上 - Top - Top Right 右上 - Left - Center 中心 - Right - Bottom Left 左下 - Bottom - Bottom Right 右下 - Scale 倍率 - Rotation 回転 @@ -18531,13 +15234,10 @@ name <email> alias <email> Type - - Type - Id ID @@ -18545,23 +15245,18 @@ name <email> alias <email> Visibility - - Visibility 可視性 - Is visible 可視 - Clip クリップ - Opacity 不透明度 @@ -18569,17 +15264,14 @@ name <email> alias <email> WebViewSpecifics - WebView WebView - Preferred Width 希望幅 - Page Height ページの高さ @@ -18587,7 +15279,6 @@ name <email> alias <email> ExtensionSystem::PluginDetailsView - None なし @@ -18595,14 +15286,10 @@ name <email> alias <email> ExtensionSystem::PluginView - - - Load on Startup 起動時に読み込む - Utilities ユーティリティ @@ -18610,78 +15297,62 @@ name <email> alias <email> QmlJS::Check - numerical value expected 数値を指定して下さい - boolean value expected boolean 値を指定して下さい - string value expected 文字列を指定して下さい - value might be 'undefined' 値が未定義の可能性があります - unknown value for enum 不明な enum型 の値です - enum value is not a string or number enum値は文字列や数字ではありません - not a valid color 無効な色 - expected anchor line アンカーラインを指定して下さい - unknown type 不明な型 - - expected id 期待するID - using string literals for ids is discouraged ID に文字列リテラルを使用するのは推奨されません - ids must be lower case ID は小文字でなければなりません - '%1' is not a valid property name '%1' は無効なプロパティ名です - '%1' does not have members '%1' にはメンバはありません - '%1' is not a member of '%2' '%1' は '%2' のメンバではありません @@ -18689,27 +15360,22 @@ name <email> alias <email> 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 がありません - %1: %2 %1: %2 @@ -18717,22 +15383,18 @@ name <email> alias <email> QmlJS::Link - could not find file or directory ファイルまたはディレクトリが見つかりませんでした - expected two numbers separated by a dot ドットで区切られた2つの数字がありません - package import requires a version number パッケージをインポートするにはバージョン番号が含まれている必要があります - package not found パッケージが見つかりません @@ -18740,12 +15402,10 @@ name <email> alias <email> Utils::FancyMainWindow - Locked 固定する - Reset to Default Layout デフォルト レイアウトに戻す @@ -18753,7 +15413,6 @@ name <email> alias <email> Utils::FileWizardDialog - Location パス @@ -18761,12 +15420,10 @@ name <email> alias <email> Utils::FilterLineEdit - Filter フィルタ - Clear text 文字列のクリア @@ -18774,27 +15431,22 @@ name <email> alias <email> 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 の管理外で削除されています。現在のファイルを別名で保存するかエディタを閉じますか? - Close 閉じる - Save as... 名前を付けて保存... - Save 保存 @@ -18802,7 +15454,6 @@ name <email> alias <email> 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>Expands to</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> @@ -18810,7 +15461,6 @@ name <email> alias <email> Utils::LinearProgressWidget - ... ... @@ -18818,42 +15468,44 @@ name <email> alias <email> 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 + 10進 符号なし値 (リトル エンディアン): %1 +10進 符号なし値 (ビッグ エンディアン): %2 +10進 符号あり値 (リトル エンディアン): %3 +10進 符号あり値 (ビッグ エンディアン): %4 + + Copying Failed コピー失敗 - You cannot copy more than 4 MB of binary data. 4MB以上のバイナリデータはコピーできません。 - Copy Selection as ASCII Characters 選択部分を ASCII 文字としてコピー - Copy Selection as Hex Values 選択部分を16進数の値としてコピー - 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 にジャンプ @@ -18861,7 +15513,6 @@ name <email> alias <email> BINEditor::Internal::ImageViewerFactory - Image Viewer 画像ビューア @@ -18869,22 +15520,18 @@ name <email> alias <email> CMakeProjectManager::Internal::CMakeRunConfiguration - Clean Environment 環境変数なし - System Environment システム環境変数 - Build Environment ビルド時の環境変数 - (disabled) (使用不可) @@ -18892,8 +15539,6 @@ name <email> alias <email> CMakeProjectManager::Internal::CMakeTarget - - Desktop CMake Default target display name デスクトップ @@ -18902,7 +15547,6 @@ name <email> alias <email> CMakeProjectManager::Internal::MakeStep - Make CMakeProjectManager::MakeStep display name. Make @@ -18911,7 +15555,6 @@ name <email> alias <email> CMakeProjectManager::Internal::MakeStepFactory - Make Display name for CMakeProjectManager::MakeStep id. Make @@ -18920,12 +15563,10 @@ name <email> alias <email> Core::CommandMappings - Command コマンド - Label ラベル @@ -18933,12 +15574,10 @@ name <email> alias <email> Core - Qt Qt - Environment 環境 @@ -18946,7 +15585,6 @@ name <email> alias <email> Core::DesignMode - Design デザイン @@ -18954,7 +15592,6 @@ name <email> alias <email> Core::Internal::SystemEditor - Could not open url %1. URL %1 を開けませんでした。 @@ -18962,17 +15599,18 @@ name <email> alias <email> Core::EditorToolBar - Copy full path to clipboard + クリップボードにフルパスをコピー + + + Copy Full Path to Clipboard クリップボードにフルパスをコピー - Make writable 書込可能にする - File is writable ファイルは書込可能です @@ -18980,12 +15618,10 @@ name <email> alias <email> GenericSshConnection - Could not connect to host. ホストに接続できませんでした。 - Error in cryptography backend: %1 バックエンドの暗号化処理でエラー発生: %1 @@ -18993,7 +15629,6 @@ name <email> alias <email> Core::InteractiveSshConnection - Error sending input 入力を送信中にエラー @@ -19001,48 +15636,38 @@ name <email> alias <email> 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 リモートの作業ディレクトリを変更できませんでした @@ -19050,18 +15675,14 @@ name <email> alias <email> SshKeyGenerator - Error creating temporary files. 一時ファイルを作成できません。 - Error generating keys: %1 鍵の生成中にエラー: %1 - - Error reading temporary files. 一時ファイルを読み込めません。 @@ -19069,7 +15690,6 @@ name <email> alias <email> CodePaster - Code Pasting コード貼り付け @@ -19077,32 +15697,26 @@ name <email> alias <email> CodePaster::FileShareProtocol - Cannot open %1: %2 %1 を開けません: %2 - %1 does not appear to be a paster file. %1 はペースターファイルではありません。 - 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 @@ -19110,7 +15724,6 @@ name <email> alias <email> CodePaster::FileShareProtocolSettingsPage - Fileshare Fileshare @@ -19118,7 +15731,6 @@ name <email> alias <email> CodePaster::PasteBinDotComSettings - Pastebin.com Pastebin.com @@ -19126,12 +15738,10 @@ name <email> alias <email> CodePaster::PasteView - <Comment> <コメント> - Paste 貼り付け @@ -19139,12 +15749,10 @@ name <email> alias <email> CodePaster::Protocol - %1 - Configuration Error %1 - 設定エラー - Settings... 設定... @@ -19152,7 +15760,6 @@ name <email> alias <email> CppEditor - C++ C++ @@ -19160,132 +15767,106 @@ name <email> alias <email> VCS - CVS Commit Editor CVS コミット エディタ - CVS Command Log Editor CVS コマンド ログ エディタ - CVS File Log Editor CVS ファイル ログ エディタ - CVS Annotation Editor CVS アノテーション エディタ - CVS Diff Editor CVS 差分 エディタ - Git Command Log Editor Git コマンド ログ エディタ - Git File Log Editor Git ファイル ログ エディタ - Git Annotation Editor Git アノテーション エディタ - Git Diff Editor Git 差分 エディタ - Git Submit Editor Git コミット エディタ - Mercurial Command Log Editor Mercurial コマンド ログ エディタ - Mercurial File Log Editor Mercurial ファイル ログ エディタ - Mercurial Annotation Editor Mercurial アノテーション エディタ - Mercurial Diff Editor Mercurial 差分 エディタ - Mercurial Commit Log Editor Mercurial コミット ログ エディタ - Perforce.SubmitEditor Perforce コミット エディタ - Perforce CommandLog Editor Perforce コマンド ログ エディタ - Perforce Log Editor Perforce ログ エディタ - Perforce Diff Editor Perforce 差分 エディタ - 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 差分 エディタ @@ -19293,7 +15874,6 @@ name <email> alias <email> CVS::Internal::CVSEditor - Annotate revision "%1" リビジョン "%1" のアノテーション @@ -19301,7 +15881,6 @@ name <email> alias <email> Debugger::Internal::CdbOptionsPage - Cdb Cdb @@ -19309,17 +15888,14 @@ name <email> alias <email> CdbSymbolGroupContext - <Unknown Type> <不明な型> - <Unknown Value> <不明な値> - <Unknown> <不明> @@ -19327,12 +15903,10 @@ name <email> alias <email> Debugger::Cdb - Unable to load the debugger engine library '%1': %2 デバッガエンジンライブラリ '%1' の読込に失敗しました: %2 - Unable to resolve '%1' in the debugger engine library '%2' デバッガエンジンライブラリ '%2' に関数 '%1' が見つかりません @@ -19340,17 +15914,14 @@ name <email> alias <email> CdbCore::CoreEngine - Unable to set the image path to %1: %2 シンボル イメージのパスを %1 に設定できません: %2 - Unable to create a process '%1': %2 プロセス '%1' が実行できません: %2 - Attaching to a process failed for process id %1: %2 プロセスID %1 のプロセスへアタッチできません: %2 @@ -19358,17 +15929,14 @@ name <email> alias <email> Debugger::DebuggerUISwitcher - &Languages 言語(&L) - Alt+L Alt+L - Language 言語 @@ -19376,30 +15944,29 @@ name <email> alias <email> GdbChooserWidget - Unable to run '%1': %2 - '%1' を実行できません: %2 + '%1' を実行できません: %2 Debugger::Internal::GdbChooserWidget - + Unable to run '%1': %2 + '%1' を実行できません: %2 + + Binary バイナリ - Toolchains ツール チェイン - Duplicate binary 重複したバイナリ - The binary '%1' already exists. バイナリ '%1' は既に存在しています。 @@ -19407,17 +15974,14 @@ name <email> alias <email> Debugger::Internal::ToolChainSelectorWidget - Desktop/General デスクトップ/一般 - Symbian Symbian - Maemo Maemo @@ -19425,17 +15989,14 @@ name <email> alias <email> Debugger::Internal::BinaryToolChainDialog - Select binary and toolchains バイナリとツールチェインの選択 - Gdb binary Gdb バイナリ - Path: パス: @@ -19443,67 +16004,54 @@ name <email> alias <email> Debugger::Internal::PdbEngine - Running requested... 実行しようとしています... - Unable to start pdb '%1': %2 '%1' にある Pdb を開始できません: %2 - Adapter start failed アダプタの開始が失敗しました - '%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 プロセスの開始に失敗しました。Pdb コマンド '%1' が見つからないか、コマンドを起動する為のパーミッションがない可能性があります。 - The Pdb process crashed some time after starting successfully. Pdb プロセスは起動に成功した後、クラッシュしました。 - 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 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 プロセス内で不明なエラーが発生しました。 @@ -19511,44 +16059,34 @@ name <email> alias <email> Debugger::Internal::SnapshotHandler - - Function: 関数: - - File: ファイル: - Date: 日付: - ... ... - <More> <さらに表示> - Function 関数 - Date 日付 - Location パス @@ -19556,17 +16094,14 @@ name <email> alias <email> Debugger::Internal::SnapshotWindow - Snapshots スナップショット - Adjust Column Widths to Contents 内容に合わせて列幅を調整 - Always Adjust Column Widths to Contents 常に内容に合わせて列幅を調整 @@ -19574,12 +16109,10 @@ name <email> alias <email> Designer::Internal::FormEditorFactory - This file can only be edited in <b>Design</b> mode. このファイルは<b>デザイン</b>モード以外では編集できません。 - Switch mode モード切替 @@ -19587,7 +16120,6 @@ name <email> alias <email> Designer::Internal::FormFileWizardDialog - Location パス @@ -19595,28 +16127,22 @@ name <email> alias <email> FakeVim::Internal::FakeVimExCommandsPage - - Ex Command Mapping 外部コマンド マッピング - FakeVim FakeVim - Ex Trigger Expression 外部コマンド - Regular expression: 正規表現: - Ex Command 外部コマンド @@ -19624,22 +16150,18 @@ name <email> alias <email> Find::FindPlugin - &Find/Replace 検索/置換(&F) - Advanced Find 高度な検索 - Open Advanced Find... 検索ダイアログを開く... - Ctrl+Shift+F Ctrl+Shift+F @@ -19647,7 +16169,6 @@ name <email> alias <email> GenericProjectManager::Internal::GenericMakeStep - Make Make @@ -19655,7 +16176,6 @@ name <email> alias <email> Git::Internal::RemoteBranchModel - (no branch) (ブランチなし) @@ -19663,15 +16183,13 @@ name <email> alias <email> GitClient - Unable to determine the repository for %1. - リポジトリ %1 を確認することができません。 + リポジトリ %1 を確認することができません。 Git::Internal::GitCommand - Error: Git timed out after %1s. エラー: Git は %1 秒でタイムアウトしました。 @@ -19679,7 +16197,6 @@ name <email> alias <email> Git::Internal::GitEditor - Blame %1 "%1" の編集者を表示 @@ -19687,7 +16204,6 @@ name <email> alias <email> Help - Help ヘルプ @@ -19695,28 +16211,22 @@ name <email> alias <email> Help::Internal::HelpViewer - Open Link リンクを開く - - Open Link as New Page リンクを新しいページで開く - Copy Link リンクをコピー - Copy コピー - Reload 再読込 @@ -19724,7 +16234,6 @@ name <email> alias <email> Help::Internal::OpenPagesModel - (Untitled) (無題) @@ -19732,12 +16241,10 @@ name <email> alias <email> Help::Internal::OpenPagesWidget - Close %1 %1 を閉じる - Close All Except %1 %1 以外のすべてを閉じる @@ -19745,12 +16252,10 @@ name <email> alias <email> Mercurial::Internal::CloneWizard - Clones a Mercurial repository and tries to load the contained project. Mercurial リポジトリをクローンし、プロジェクトに読み込みます。 - Mercurial Clone Mercurial クローン @@ -19758,17 +16263,14 @@ name <email> alias <email> Mercurial::Internal::CloneWizardPage - Location パス - Specify repository URL, checkout directory and path. リポジトリのURL、チェックアウト先ディレクトリおよびパスを指定して下さい。 - Clone URL: クローン URL: @@ -19776,7 +16278,6 @@ name <email> alias <email> Mercurial::Internal::CommitEditor - Commit Editor コミット エディタ @@ -19784,43 +16285,34 @@ name <email> alias <email> Mercurial::Internal::MercurialClient - Unable to find parent revisions of %1 in %2: %3 %2 (リビジョン: %1) の親リビジョンが見つかりません: %3 - Cannot parse output: %1 出力内容を解析できません: %1 - Hg Annotate %1 Hg アノテーション %1 - Hg diff %1 Hg 差分表示 %1 - - Hg log %1 Hg ログ表示 %1 - Hg incoming %1 Hg %1 との差分を検出 - Hg outgoing %1 Hg %1 との差分を検出 - Working... 作業中... @@ -19828,7 +16320,6 @@ name <email> alias <email> Mercurial::Internal::MercurialControl - Mercurial Mercurial @@ -19836,7 +16327,6 @@ name <email> alias <email> Mercurial::Internal::MercurialEditor - Annotate %1 "%1" のアノテーション @@ -19844,19 +16334,16 @@ name <email> alias <email> Mercurial::Internal::MercurialJobRunner - 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 秒間待機しましたが、タイムアウトしました。 @@ -19864,237 +16351,190 @@ name <email> alias <email> Mercurial::Internal::MercurialPlugin - Mercurial Mercurial - Annotate Current File 現在のファイルのアノテーション - Annotate "%1" "%1" のアノテーション - Diff Current File 現在のファイルの差分表示 - Diff "%1" "%1" の差分表示 - Alt+H,Alt+D Alt+H,Alt+D - Log Current File 現在のファイルのログ - Log "%1" "%1" のログ - Alt+H,Alt+L Alt+H,Alt+L - Status Current File 現在のファイルの状態 - Status "%1" "%1" の状態 - Alt+H,Alt+S Alt+H,Alt+S - Add 追加 - Add "%1" "%1" を追加 - Delete... 削除... - Delete "%1"... "%1" を削除... - Revert Current File... 現在のファイルを元に戻す... - Revert "%1"... "%1" を元に戻す... - Diff 差分 - Log ログ - Revert... 元に戻す... - Status 状態 - Pull... Pull... - Push... Push... - Update... アップデート... - Import... インポート... - Incoming... 受信... - Outgoing... 送信... - Commit... コミット... - Alt+H,Alt+C Alt+H,Alt+C - Create Repository... リポジトリの作成... - Pull Source サーバからの Pull - Push Destination サーバへの Push - Update アップデート - Incoming Source サーバとの差分検出 - Commit コミット - Diff Selected Files 選択済みファイルの差分表示 - &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? 変更内容をコミットしますか? - Message check failed. Do you want to proceed? メッセージチェックに失敗しました。続けて処理しますか? @@ -20102,7 +16542,6 @@ name <email> alias <email> Mercurial::Internal::OptionsPageWidget - Mercurial Command Mercurial コマンド @@ -20110,43 +16549,35 @@ name <email> alias <email> Perforce::Internal::PerforceChecker - No executable specified 実行ファイルが指定されていません - "%1" timed out after %2ms. %2 ms 後に "%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 p4 クライアントのルートが確認できません。 - The repository "%1" does not exist. リポジトリ "%1" は存在しません。 @@ -20154,7 +16585,6 @@ name <email> alias <email> Perforce::Internal::PerforceEditor - Annotate change list "%1" チェンジリスト "%1" のアノテーション @@ -20162,12 +16592,10 @@ name <email> alias <email> 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. 無題 @@ -20176,12 +16604,10 @@ name <email> alias <email> ProjectExplorer::BuildConfiguration - System Environment システム環境変数 - Clean Environment 環境変数なし @@ -20189,12 +16615,10 @@ name <email> alias <email> ProjectExplorer::BuildEnvironmentWidget - Clear system environment システム環境変数を非表示にする - Build Environment ビルド時の環境変数 @@ -20202,7 +16626,6 @@ name <email> alias <email> BuildSettingsPanelFactory - Build Settings ビルド設定 @@ -20210,7 +16633,6 @@ name <email> alias <email> BuildSettingsPanel - Build Settings ビルド設定 @@ -20218,16 +16640,34 @@ name <email> alias <email> ProjectExplorer::CustomWizard - Details Default short title for custom wizard page to be shown in the progress pane of the wizard. 詳細 + + Creates a C++ plugin that makes it possible to offer extensions that can be loaded dynamically into applications using the QDeclarativeEngine class. + QDeclarativeEngine クラスを使用しているアプリケーションに動的に読み込ませる事が可能になる C++ プラグインを作成します。 + + + Custom QML Extension Plugin + カスタム QML 拡張プラグイン + + + QML Extension Plugin + QML 拡張プラグイン + + + Custom QML Extension Plugin Parameters + カスタム QML 拡張プラグイン パラメータ + + + Example Object Class-name: + サンプル オブジェクトクラスの名前: + ProjectExplorer::CustomProjectWizard - The project %1 could not be opened. プロジェクト %1 を開けませんでした。 @@ -20235,7 +16675,6 @@ name <email> alias <email> ProjectExplorer::Internal::CustomWizardPage - Path: パス: @@ -20243,7 +16682,6 @@ name <email> alias <email> ProjectExplorer::Internal::DependenciesModel - <No other projects in this session> <このセッション内に他のプロジェクトはありません> @@ -20251,7 +16689,6 @@ name <email> alias <email> DependenciesPanel - Dependencies 依存関係 @@ -20259,7 +16696,6 @@ name <email> alias <email> DependenciesPanelFactory - Dependencies 依存関係 @@ -20267,7 +16703,6 @@ name <email> alias <email> EditorSettingsPanelFactory - Editor Settings エディタの設定 @@ -20275,7 +16710,6 @@ name <email> alias <email> EditorSettingsPanel - Editor Settings エディタの設定 @@ -20283,67 +16717,54 @@ name <email> alias <email> ProjectExplorer::Internal::FolderNavigationWidget - Open 開く - Open parent folder 上位フォルダを開く - Open "%1" "%1" を開く - Open with エディタを指定して開く - Choose folder... フォルダ選択... - Choose folder フォルダ選択 - Show in Explorer... エクスプローラで表示... - Show in Finder... Finder で表示... - Show containing folder... 上位のフォルダを表示... - Open Command Prompt here... この位置でコマンドプロンプトを開く... - Open Terminal here... この位置で端末を開く... - Launching a file browser failed ファイル ブラウザの起動に失敗しました - Unable to start the file manager: %1 @@ -20356,7 +16777,6 @@ name <email> alias <email> - '%1' returned the following error: %2 @@ -20365,17 +16785,14 @@ name <email> alias <email> %2 - Settings... 設定... - Launching Windows Explorer failed Windows Explorer の起動に失敗 - Could not find explorer.exe in path to launch Windows Explorer. Windows Explorer を起動する為の explorer.exe にパスが通っていません。 @@ -20383,22 +16800,18 @@ name <email> alias <email> ProjectExplorer::Internal::MiniTargetWidget - Select active build configuration アクティブにするビルド構成を選んでください - Select active run configuration アクティブにする実行構成を選んでください - Build: ビルド: - Run: 実行: @@ -20406,42 +16819,34 @@ name <email> alias <email> ProjectExplorer::Internal::MiniProjectTargetSelector - Project プロジェクト - Select active project アクティブにするプロジェクトを選んでください - 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/> - <br/>%1 <br/>%1 @@ -20449,7 +16854,6 @@ name <email> alias <email> ProjectExplorer::ProjectConfiguration - Clone of %1 %1 をクローン @@ -20457,12 +16861,10 @@ name <email> alias <email> ProjectExplorer - Projects プロジェクト - Other Project 他のプロジェクト @@ -20470,7 +16872,6 @@ name <email> alias <email> TargetSettingsPanelFactory - Targets ターゲット @@ -20478,7 +16879,6 @@ name <email> alias <email> RunSettingsPanelFactory - Run Settings 実行時の設定 @@ -20486,7 +16886,6 @@ name <email> alias <email> RunSettingsPanel - Run Settings 実行時の設定 @@ -20494,7 +16893,6 @@ name <email> alias <email> ProjectExplorer::Internal::SessionNameInputDialog - Enter the name of the session: セッションの名前を入力してください: @@ -20502,12 +16900,10 @@ name <email> alias <email> ProjectExplorer::Internal::TargetSelector - Run 実行 - Build ビルド @@ -20515,17 +16911,14 @@ name <email> alias <email> ProjectExplorer::Internal::TargetSettingsPanelWidget - No target defined. ターゲットが定義されていません。 - Qt Creator Qt Creator - Do you really want to remove the "%1" target? 本当にターゲット "%1" を削除しますか? @@ -20534,28 +16927,22 @@ name <email> alias <email> ProjectExplorer::TaskWindow - - Build Issues ビルドの問題点 - &Copy コピー(&C) - &Annotate アノテーション(&A) - Show Warnings 警告を表示 - Filter by categories カテゴリでフィルタを適用します @@ -20563,7 +16950,6 @@ name <email> alias <email> GenericProjectManager::GenericTarget - Desktop Generic desktop target display name デスクトップ @@ -20572,62 +16958,49 @@ name <email> alias <email> Qt4ProjectManager::Internal::Qt4Target - - Desktop Qt4 Desktop target display name デスクトップ - - Symbian Emulator Qt4 Symbian Emulator target display name Symbian エミュレータ - - Symbian Device Qt4 Symbian Device target display name Symbian デバイス - Maemo Emulator Qt4 Maemo Emulator target display name Maemo エミュレータ - Maemo Device Qt4 Maemo Device target display name Maemo デバイス - Maemo Qt4 Maemo 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 @@ -20635,7 +17008,6 @@ name <email> alias <email> QmlProjectManager::QmlTarget - QML Viewer QML Viewer target display name QML ビューア @@ -20644,17 +17016,14 @@ name <email> alias <email> QmlDesigner::FormEditorWidget - Snap to guides (E) ガイドに接着 (E) - Show bounding rectangles (A) 枠線を常に表示 (A) - Only select items with content (S) 中身のあるアイテムだけを選択 (S) @@ -20662,7 +17031,6 @@ name <email> alias <email> QmlDesigner::ComponentView - whole document 対象のドキュメント @@ -20670,22 +17038,18 @@ name <email> alias <email> QmlDesigner::DesignDocumentController - -New Form- -新しいフォーム- - Cannot save to file "%1": permission denied. "%1" に保存できません: パーミッションがありません。 - Parent folder "%1" for file "%2" does not exist. "%2" の上位フォルダ "%1" が存在しません。 - Cannot write file: "%1". 書き込めませんでした: "%1"。 @@ -20693,22 +17057,18 @@ name <email> alias <email> QmlDesigner::XUIFileDialog - Open file ファイルを開く - Save file ファイルの保存 - Declarative UI files (*.qml) 宣言型 UI ファイル (*.qml) - All files (*) すべてのファイル (*) @@ -20716,25 +17076,21 @@ name <email> alias <email> 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 <フィルタ> @@ -20743,7 +17099,6 @@ name <email> alias <email> QmlDesigner::NavigatorTreeModel - Invalid Id 無効なID @@ -20751,7 +17106,6 @@ name <email> alias <email> QmlDesigner::NavigatorWidget - Navigator Title of navigator view ナビゲータ @@ -20760,7 +17114,6 @@ name <email> alias <email> QmlDesigner::PluginManager - About plugins プラグインについて @@ -20768,27 +17121,22 @@ name <email> alias <email> 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 プラグインではありません。 @@ -20796,7 +17144,6 @@ name <email> alias <email> QmlDesigner::AllPropertiesBox - Properties Title of properties view. プロパティ @@ -20805,7 +17152,6 @@ name <email> alias <email> FileWidget - Open File ファイルを開く @@ -20813,7 +17159,6 @@ name <email> alias <email> QmlDesigner::PropertyEditor - Invalid Id 無効なID @@ -20821,73 +17166,58 @@ name <email> alias <email> qdesigner_internal::QtGradientStopsController - H H - S S - V V - - Hue 色相 - Sat 彩度 - Val - Saturation 彩度 - Value - R R - G G - B B - Red - Green - Blue @@ -20895,37 +17225,30 @@ name <email> alias <email> QtGradientStopsWidget - New Stop 新しい移行ポイント - Delete 削除 - Flip All すべて反転 - Select All すべて選択 - Zoom In 拡大 - Zoom Out 縮小 - Reset Zoom 拡大率を戻す @@ -20933,23 +17256,19 @@ name <email> alias <email> 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 名前が他の状態名と重複しています @@ -20957,12 +17276,10 @@ name <email> alias <email> QmlDesigner::Internal::StatesEditorWidgetPrivate - base state 初期状態 - State%1 Default name for newly created states %1 状態 @@ -20971,7 +17288,6 @@ name <email> alias <email> QmlDesigner::StatesEditorWidget - States Title of Editor widget 状態 @@ -20980,7 +17296,6 @@ name <email> alias <email> QmlDesigner::InvalidArgumentException - Failed to create item of type %1 アイテム (種類:%1) の作成に失敗しました @@ -20988,29 +17303,41 @@ name <email> alias <email> InvalidIdException - Ids have to be unique: - ID は一意でなければいけません: + ID は一意でなければいけません: - Invalid Id: - 無効なID: + 無効なID: - Only alphanumeric characters and underscore allowed. Ids must begin with a lowercase letter. - + ID には英数字かアンダースコアのみ許されています。 また ID は小文字で始まっている必要があります。 + + 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::Internal::SubComponentManagerPrivate - QML Components QML コンポーネント @@ -21018,7 +17345,6 @@ ID には英数字かアンダースコアのみ許されています。 QmlDesigner::Internal::ModelPrivate - invalid type 無効な型 @@ -21026,27 +17352,22 @@ ID には英数字かアンダースコアのみ許されています。 QmlDesigner::RewriterView - Error parsing パース中にエラーが発生 - Internal error 内部エラー - "%1" "%1" - line %1 %1 行目 - column %1 %1 文字目 @@ -21054,17 +17375,14 @@ ID には英数字かアンダースコアのみ許されています。 QmlDesigner::Internal::DocumentWarningWidget - <a href="goToError">Go to error</a> <a href="goToError">エラーにジャンプ</a> - %3 (%1:%2) %3 (%1:%2) - Internal error (%1) 内部エラー (%1) @@ -21072,97 +17390,78 @@ ID には英数字かアンダースコアのみ許されています。 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) - Toggle &Left Sidebar 左サイドバーの表示切替(&L) - Toggle &Right Sidebar 右サイドバーの表示切替(&R) - Projects プロジェクト - File System ファイル システム - Open Documents 開いているドキュメント @@ -21170,37 +17469,30 @@ ID には英数字かアンダースコアのみ許されています。 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 他を閉じる @@ -21208,7 +17500,6 @@ ID には英数字かアンダースコアのみ許されています。 Qt Quick - Qt Quick Qt Quick @@ -21216,7 +17507,6 @@ ID には英数字かアンダースコアのみ許されています。 Qml::Internal::QLineGraph - Frame rate フレームレート @@ -21224,7 +17514,6 @@ ID には英数字かアンダースコアのみ許されています。 Qml::Internal::GraphWindow - Total time elapsed (ms) 総経過時間 (ms) @@ -21232,22 +17521,18 @@ ID には英数字かアンダースコアのみ許されています。 Qml::Internal::CanvasFrameRate - Resolution: 解像度: - Clear クリア - New Graph 新しいグラフ - Enabled 有効 @@ -21255,39 +17540,32 @@ ID には英数字かアンダースコアのみ許されています。 Qml::Internal::ExpressionQueryWidget - <Type expression to evaluate> <評価する式を入力> - Write and evaluate QtScript expressions. QtScript 式を入力したり評価できます。 - Clear Output 出力をクリア - Script Console スクリプト コンソール - Expression queries 問い合わせ式 - Expression queries (using context for %1) Selected object 問い合わせ式 (コンテキスト %1 で使用中) - <%n items> <%n 個の項目> @@ -21297,59 +17575,48 @@ ID には英数字かアンダースコアのみ許されています。 Qml::Internal::ObjectPropertiesView - Name 名前 - Value - Type - &Watch expression 監視式(&W) - &Remove watch 監視式を削除(&R) - Show &unwatchable properties 不可視プロパティを表示(&U) - &Group by item type アイテムの種類毎にまとめる(&G) - <%n items> <%n 個の項目> - Watch expression '%1' 監視式 "%1" - Hide unwatchable properties 不可視プロパティを隠す - Show unwatchable properties 不可視プロパティを表示する @@ -21357,27 +17624,22 @@ ID には英数字かアンダースコアのみ許されています。 Qml::Internal::ObjectTree - Add watch expression... 監視式を追加... - Show uninspectable items 検証できないアイテムを表示 - Go to file 該当ファイルを表示 - Watch expression 監視式 - Expression: 式: @@ -21385,12 +17647,10 @@ ID には英数字かアンダースコアのみ許されています。 Qml::Internal::WatchTableModel - Name 名前 - Value @@ -21398,7 +17658,6 @@ ID には英数字かアンダースコアのみ許されています。 Qml::Internal::WatchTableView - Stop watching 監視を中止 @@ -21406,12 +17665,10 @@ ID には英数字かアンダースコアのみ許されています。 Qml::InspectorOutputWidget - Output アウトプット - Clear クリア @@ -21419,7 +17676,6 @@ ID には英数字かアンダースコアのみ許されています。 Qml::Internal::EngineComboBox - Engine %1 engine number エンジン %1 @@ -21428,32 +17684,26 @@ ID には英数字かアンダースコアのみ許されています。 Qml::QmlInspector - 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. @@ -21462,88 +17712,71 @@ ID には英数字かアンダースコアのみ許されています。 - [Inspector] resolving host... [インスペクタ] ホスト名の解決中... - [Inspector] connecting to debug server... [インスペクタ] デバッグサーバに接続中... - [Inspector] connected. [インスペクタ] 接続しました。 - [Inspector] closing... [インスペクタ] 閉じています... - [Inspector] error: (%1) %2 %1=error code, %2=error message [インスペクタ] エラー: (%1) %2 - QML engine: QML エンジン: - Object Tree オブジェクト ツリー - Properties and Watchers プロパティと監視式 - Script Console スクリプト コンソール - Output of the QML inspector, such as information on connecting to the server. サーバに接続する際の情報等が出力される QML インスペクタの出力です。 - Start Debugging C++ and QML Simultaneously... QML と C++ のデバッグを同時に始める... - No project was found. プロジェクトが見つかりませんでした。 - - No run configurations were found for the project '%1'. プロジェクト '%1' 内に実行構成が見つかりません。 - No valid run configuration was found for the project %1. Only locally runnable configurations are supported. Please check your project settings. プロジェクト %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++ デバッガを開始できませんでした。 @@ -21551,7 +17784,6 @@ Please check your project settings. Qml::Internal::StartExternalQmlDialog - <No project> <プロジェクトがありません> @@ -21559,27 +17791,22 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSTextEditor - Rename... 名前を変更... - New id: 新しい ID: - Unused variable 未使用の変数 - Rename id '%1'... ID '%1' の名前を変更... - <Select Symbol> <シンボルの選択> @@ -21587,48 +17814,38 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSEditorFactory - Do you want to enable the experimental Qt Quick Designer? Qt Quick デザイナ(実験的)を有効にしますか? - - Enable Qt Quick Designer Qt Quick デザイナを有効にする - Qt Creator -> About Plugins... Qt Creator -> プラグインについて... - Help -> About Plugins... ヘルプ -> プラグインについて... - Enable experimental Qt Quick Designer? 実験的な Qt Quick デザイナを有効にしますか? - Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'. 実験的な Qt Quick デザイナを有効にしますか?有効にするとデザインモードに切り替えた際にヴィジュアルデザイン機能を使用できるようになりますが、Qt Creator 全体の安定性に影響を与えます。再度 Qt Quick デザイナを無効にしたい場合は、'%1' メニューで 'QmlDesinger' を無効にして下さい。 - Cancel キャンセル - Please restart Qt Creator Qt Creator を再起動してください - Please restart Qt Creator to make the change effective. 変更内容を適用する為、Qt Creator を再起動してください。 @@ -21636,27 +17853,22 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSEditorPlugin - Creates a Qt QML file. Qt QML ファイルを作成します。 - Qt QML File Qt QML ファイル - Qt Quick Qt Quick - Ctrl+Alt+R Ctrl+Alt+R - Follow Symbol Under Cursor カーソル位置のシンボルの定義へ移動 @@ -21664,7 +17876,6 @@ Please check your project settings. QmlJSEditor::Internal::ModelManager - Indexing 解析中 @@ -21672,12 +17883,10 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSPreviewRunner - Failed to preview Qt Quick file Qt Quick ファイルのプレビューに失敗しました - Could not preview Qt Quick (QML) file. Reason: %1 Qt Quick (QML) ファイルをプレビューできません。 理由: @@ -21687,7 +17896,6 @@ Please check your project settings. QmlProjectManager::QmlProject - Error while loading project file! プロジェクトファイルの読み込み中にエラー発生! @@ -21695,12 +17903,10 @@ Please check your project settings. QmlProjectManager::Internal::QmlProjectApplicationWizardDialog - New QML Project 新しい QML プロジェクト - This wizard generates a QML application project. このウィザードで、QML アプリケーションプロジェクトを生成します。 @@ -21708,35 +17914,42 @@ Please check your project settings. QmlProjectManager::Internal::QmlProjectApplicationWizard - Qt QML Application - Qt QML アプリケーション + Qt QML アプリケーション - Creates a Qt QML application project with a single QML file containing the main view. QML application projects are executed through the QML runtime and do not need to be built. - メインビューを含む1個の QML ファイルを持つ Qt QML アプリケーションプロジェクトを作成します。 + メインビューを含む1個の QML ファイルを持つ Qt QML アプリケーションプロジェクトを作成します。 QML アプリケーションプロジェクトは QML ランタイムによって実行され、ビルドする必要はありません。 - + QML Application + QML アプリケーション + + + Creates a QML application project with a single QML file containing the main view. + +QML application projects are executed by the Qt QML Viewer and do not need to be built. + メインビューを含む1個の QML ファイルを持つ QML アプリケーションプロジェクトを作成します。 + +QML アプリケーションプロジェクトは Qt QML ビューアによって実行され、ビルドの必要はありません。 + + File generated by QtCreator qmlproject Template Comment added to generated .qmlproject file QtCreator によって生成されたファイルです - 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 @@ -21746,7 +17959,6 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlProjectManager - Qt Quick Project Qt Quick プロジェクト @@ -21754,27 +17966,26 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlProjectManager::Internal::QmlProjectImportWizardDialog - Import Existing Qt QML Directory - 既存の Qt QML ディレクトリのインポート + 既存の Qt QML ディレクトリのインポート + + + Import Existing QML Directory + 既存の QML ディレクトリのインポート - Project Name and Location プロジェクト名とパス - Project name: プロジェクト名: - Location: パス: - Location パス @@ -21782,31 +17993,30 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlProjectManager::Internal::QmlProjectImportWizard - Import Existing Qt QML Directory - 既存の Qt QML ディレクトリのインポート + 既存の Qt QML ディレクトリのインポート + + + Import Existing QML Directory + 既存の 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 @@ -21816,7 +18026,6 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlProjectManager::Internal::Manager - Failed opening project '%1': Project already open プロジェクト '%1' を開けません: プロジェクトは既に開かれています @@ -21824,33 +18033,27 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlProjectManager::QmlProjectRunConfiguration - QML Viewer QMLRunConfiguration display name. QML ビューア - QML Viewer QML ビューア - QML Viewer arguments: QML ビューア引数: - Main QML File: メイン QML ファイル: - Debugging Address: IPアドレス: - Debugging Port: ポート: @@ -21858,7 +18061,6 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlManager - <Current File> <現在のファイル> @@ -21866,7 +18068,6 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlProjectManager::Internal::QmlProjectRunConfigurationFactory - Run QML Script QML スクリプトを実行 @@ -21874,12 +18075,10 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlProjectManager::Internal::QmlRunControl - Starting %1 %2 %1 %2 を起動中 - %1 exited with code %2 %1 はコード %2 で終了しました @@ -21887,7 +18086,6 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlProjectManager::Internal::QmlRunControlFactory - Run 実行 @@ -21895,7 +18093,6 @@ QML アプリケーションプロジェクトは QML ランタイムによっ QmlProjectManager::Internal::QmlTaskManager - QML QML @@ -21903,7 +18100,6 @@ QML アプリケーションプロジェクトは QML ランタイムによっ Qt4ProjectManager::Internal::QMakeStepFactory - qmake qmake @@ -21911,74 +18107,62 @@ QML アプリケーションプロジェクトは QML ランタイムによっ Qt4ProjectManager::Internal::MaemoConfigTestDialog - Testing configuration... 構成のテスト中... - Stop Test テストの停止 - Device configuration test failed: %1 デバイス構成のテストに失敗しました: %1 - Did you start Qemu? Qemu は起動していますか? - Qt version mismatch! Expected Qt on device: 4.6.2 or later. Qt バージョンが適合していません! デバイス上の Qt はバージョン 4.6.2 以降が必要です。 - 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 パッケージの一覧: @@ -21986,12 +18170,10 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MaemoPackageContents - Local File Path ローカルファイルパス - Remote File Path リモートファイルパス @@ -21999,101 +18181,85 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MaemoPackageCreationStep - 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 error: Could not start command '%1'. Reason: %2 パッケージ作成エラー: コマンド '%1' を開始できませんでした。理由: %2 - + Exit code: %1 + 終了コード: %1 + + Packaging Error: Command '%1' timed out. - パッケージ作成エラー: コマンド '%1' がタイムアウトしました。 + パッケージ作成エラー: コマンド '%1' がタイムアウトしました。 - Packaging Error: Command '%1' failed. パッケージ作成エラー: コマンド '%1' が失敗しました。 - Reason: %1 理由: %1 - Output was: - 出力: + 出力: Qt4ProjectManager::Internal::MaemoPackageCreationWidget - <b>Create Package:</b> <b>作成するパッケージ:</b> - Choose a local file ローカルファイルの選択 - File already in package パッケージに既存のファイル - You have already added this file. 既にパッケージに存在しています。 @@ -22101,7 +18267,6 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MaemoRunConfiguration - New Maemo Run Configuration Maemo の新しい実行構成 @@ -22109,32 +18274,26 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MaemoRunConfigurationWidget - Run configuration name: 実行構成名: - <a href="%1">Manage device configurations</a> <a href="%1">デバイス構成の管理</a> - <a href="%1">Set Debugger</a> <a href="%1">デバッガの設定</a> - Device configuration: デバイス構成: - Executable: 実行ファイル: - Arguments: 引数: @@ -22142,77 +18301,62 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::AbstractMaemoRunControl - No device configuration set for run configuration. 実行構成を設定する為のデバイス構成がありません。 - Cleaning up remote leftovers first ... リモートの残骸を先にクリーンアップしています... - Initial cleanup canceled by user. ユーザによって初回クリーンアップが中止されました。 - Error running initial cleanup: %1. 初回クリーンアップでエラー: %1。 - Initial cleanup done. 初回クリーンアップが完了しました。 - Deploying 転送中 - Files to deploy: %1. 転送対象ファイル: %1. - Starting remote application. リモートアプリケーションを開始しています。 - Deployment canceled by user. ユーザによって転送が中止されました。 - Deployment failed: %1 転送失敗: %1 - Deployment finished. 転送完了。 - Remote execution canceled due to user request. ユーザによってリモート実行は中止されました。 - Error running remote process: %1 実行中のリモート プロセスでエラー: %1 - Finished running remote process. 実行中のリモート プロセスは終了しました。 - Remote Execution Failure リモート実行失敗 @@ -22220,7 +18364,6 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MaemoRunConfigurationFactory - New Maemo Run Configuration Maemo の新しい実行構成 @@ -22228,7 +18371,6 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MaemoRunControlFactory - Run on device デバイスで実行 @@ -22236,7 +18378,6 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MaemoSettingsPage - Maemo Device Configurations Maemo デバイス構成 @@ -22244,54 +18385,43 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MaemoSettingsWidget - New Device Configuration %1 Standard Configuration name with number 新しいデバイス構成 %1 - Public Key Files(*.pub);;All Files (*) 公開鍵ファイル (*.pub);;すべてのファイル (*) - - Deployment Failed 転送失敗 - Could not read public key file '%1'. 公開鍵ファイル '%1' を読み込めませんでした。 - Choose Public Key File 公開鍵ファイルを選択してください - Stop Deploying 転送停止 - Key deployment failed: %1 鍵ファイルの転送に失敗: %1 - Deployment Succeeded 転送成功 - Key was successfully deployed. 鍵ファイルの転送に成功しました。 - Deploy Public Key ... 公開鍵の転送... @@ -22299,22 +18429,18 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MaemoSshConfigDialog - Save Public Key File 公開鍵ファイルの保存 - Save Private Key File 秘密鍵ファイルの保存 - Error writing file ファイル出力中のエラー - Could not write file '%1': %2 ファイル '%1' へ書き込めませんでした: @@ -22324,7 +18450,6 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::S60CreatePackageStepFactory - Create SIS Package SIS パッケージの作成 @@ -22332,17 +18457,14 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::S60CreatePackageStepConfigWidget - self-signed 自己署名 - signed with certificate %1 and key file %2 証明書 %1 と鍵ファイル %2 で署名されています - <b>Create SIS Package:</b> %1 <b>SIS パッケージの作成:</b> %1 @@ -22350,22 +18472,18 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::S60DevicesBaseWidget - Default デフォルト - SDK Location SDK のパス - Qt Location Qt のパス - Choose Qt folder Qt フォルダを選択してください @@ -22373,7 +18491,6 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::S60DevicesModel - No Qt installed Qt がインストールされていません @@ -22381,22 +18498,18 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::GnuPocS60DevicesWidget - 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 フォルダは異なっている必要があります。 @@ -22404,22 +18517,18 @@ Qemu は起動していますか? ProjectExplorer::Internal::S60ProjectChecker - The Symbian SDK and the project sources must reside on the same drive. Symbian SDK とプロジェクトのソースは同一ドライブ上にしておく必要があります。 - The Symbian SDK was not found for Qt version %1. Qt バージョン %1 用の Symbian SDK が見つかりませんでした。 - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. Qt バージョン %1 の、Symbian SDK に"Open C/C++ プラグイン" がインストールされていないか、Symbian SDK のパスの設定に誤りがあります。 - The Symbian toolchain does not handle special characters in a project path well. Symbian ツールチェインは、プロジェクトパスに特別な文字が含まれていると正しく扱えません。 @@ -22427,27 +18536,22 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::Qt4BuildConfigurationFactory - Using Qt Version "%1" Qt バージョン "%1" を使用 - New configuration 新しい構成 - New Configuration Name: 新しい構成名: - %1 Debug %1 デバッグ - %1 Release %1 リリース @@ -22455,7 +18559,6 @@ Qemu は起動していますか? Qt4ProjectManager::Qt4Project - Evaluating 評価中 @@ -22463,17 +18566,14 @@ Qemu は起動していますか? Qt4ProjectManager - Qt4 Qt4 - Qt Versions Qt バージョン - Qt C++ Project Qt C++ プロジェクト @@ -22481,12 +18581,10 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::Qt4TargetFactory - Debug デバッグ - Release リリース @@ -22494,13 +18592,11 @@ Qemu は起動していますか? Qt4ProjectManager::QtVersion - 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" が見つからないか、実行できません。 @@ -22509,27 +18605,22 @@ Qemu は起動していますか? QtVersion - No qmake path set qmake のパスが設定されていません - Qt version has no name Qt バージョンに名前がありません - 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 Qt Version has no toolchain. Qt バージョンのツールチェインが見つかりません。 @@ -22537,12 +18628,10 @@ Qemu は起動していますか? Qt4ProjectManager::Internal::MobileGuiAppWizard - 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 @@ -22554,13 +18643,10 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::BaseQt4ProjectWizardDialog - - Modules モジュール - Qt Versions Qt バージョン @@ -22568,12 +18654,10 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::TestWizard - 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 ベースのユニット テスト(リグレッション テストではありません)を作成します。 @@ -22581,12 +18665,10 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::TestWizardDialog - This wizard generates a Qt unit test consisting of a single source file with a test class. Qt ユニットテストとして1個のソースファイルで構成されたテストクラスを生成します。 - Details 詳細 @@ -22594,7 +18676,6 @@ Preselects Qt for Simulator and mobile targets if available Subversion::Internal::SubversionEditor - Annotate revision "%1" リビジョン "%1" のアノテーション @@ -22602,7 +18683,6 @@ Preselects Qt for Simulator and mobile targets if available TextEditor - Text Editor テキスト エディタ @@ -22610,47 +18690,38 @@ Preselects Qt for Simulator and mobile targets if available VCSBase::VCSBasePlugin - Version Control バージョン管理 - The file '%1' could not be deleted. ファイル '%1' は削除できませんでした。 - 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 リポジトリを作成しました - A version control repository has been created in %1. %1 にバージョン管理リポジトリを作成しました。 - Repository creation failed リポジトリの作成に失敗しました - A version control repository could not be created in %1. %1 にバージョン管理リポジトリを作成できませんでした。 @@ -22658,17 +18729,14 @@ Preselects Qt for Simulator and mobile targets if available trk::Launcher - Cannot open remote file '%1': %2 リモートファイル '%1' を開けません: %2 - Cannot open '%1': %2 '%1' を開けません: %2 - Unable to acquire a device for port '%1'. It appears to be in use. デバイスのポート '%1' が使用中の為、獲得する事ができません。 @@ -22676,7 +18744,6 @@ Preselects Qt for Simulator and mobile targets if available AboutDialog - About Bauhaus AboutDialog Bauhaus について @@ -22685,54 +18752,42 @@ Preselects Qt for Simulator and mobile targets if available 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 QLatin1String(...) QLatin1String()で囲む - Convert to Objective-C String Literal Objective-C 文字列リテラルに変換する - Use Fast String Concatenation with % % を使った高速な文字列連結にする @@ -22740,7 +18795,6 @@ Preselects Qt for Simulator and mobile targets if available GenericProjectManager::Internal::Manager - Failed opening project '%1': Project already open プロジェクト '%1' を開けません: プロジェクトは既に開かれています @@ -22748,7 +18802,6 @@ Preselects Qt for Simulator and mobile targets if available QmlDesigner::QmlModelView - Invalid Id 無効なID @@ -22756,33 +18809,30 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::QemuRuntimeManager - - Start Maemo Emulator Maemo エミュレータを開始します - Qemu has been shut down, because you removed the corresponding Qt version. 対応する Qt バージョンが削除された為、Qemu はシャットダウンしました。 - + Qemu finished with error: Exit code was %1. + Qemu は異常終了しました: 終了コードは %1 です。 + + Qemu failed to start: %1 Qemu を開始できませんでした: %1 - Qemu crashed Qemu がクラッシュしました - Qemu error Qemu エラー - Stop Maemo Emulator Maemo エミュレータを終了します @@ -22790,7 +18840,6 @@ Preselects Qt for Simulator and mobile targets if available Qt4ProjectManager::Internal::S60CreatePackageStep - Create SIS Package Create SIS package build step name SIS パッケージの作成 @@ -22799,7 +18848,6 @@ Preselects Qt for Simulator and mobile targets if available FakeVim::Internal::FakeVimHandler::Private - Not an editor command: %1 エディタのコマンドではありません: %1 @@ -22807,9 +18855,46 @@ Preselects Qt for Simulator and mobile targets if available Core::HelpManager - Unfiltered フィルタなし + + ContextPaneTextWidget + + Text + テキスト + + + Style + スタイル + + + Normal + ノーマル + + + Outline + アウトライン + + + Raised + 上付き + + + Sunken + 下付き + + + ... + ... + + + + QmlDesigner::ContextPaneWidget + + Disable permanently + 恒久的に無効にする + + -- cgit v1.2.1 From e253896b58ded12cf68c4cd5937e383a0342488b Mon Sep 17 00:00:00 2001 From: Jure Repinc Date: Wed, 11 Aug 2010 18:29:16 +0200 Subject: Updated Slovenian translation for Qt Creator 2.1 Merge-request: 2170 Reviewed-by: Oswald Buddenhagen --- share/qtcreator/translations/qtcreator_sl.ts | 22540 ++++++++++++++++--------- 1 file changed, 14437 insertions(+), 8103 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_sl.ts b/share/qtcreator/translations/qtcreator_sl.ts index 27d9091850..1b77745fad 100644 --- a/share/qtcreator/translations/qtcreator_sl.ts +++ b/share/qtcreator/translations/qtcreator_sl.ts @@ -1,69 +1,43 @@ - - - - - Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -This file is distributed under the same license as the PACKAGE package. - -Jure Repinc <jlp@holodeck1.com>, 2009. - - Last-Translator: Jure Repinc <jlp@holodeck1.com> -PO-Revision-Date: 2009-10-29 00:37+0100 -Project-Id-Version: qtcreator_sl -Language-Team: Slovenian <lugos-slo@lugos.si> -Content-Transfer-Encoding: 8bit -X-Generator: Lokalize 1.0 -MIME-Version: 1.0 -Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || n%100==4 ? 3 : 0); -Content-Type: text/plain; charset=UTF-8 - - - + 2010-08-09 04:32+0200 + MIME-Version,Content-Type,Content-Transfer-Encoding,Plural-Forms,X-Language,X-Qt-Contexts,Last-Translator,PO-Revision-Date,Project-Id-Version,Language-Team,X-Generator + Lokalize 1.1 + Slovenian <lugos-slo@lugos.si> + + # Jure Repinc <jlp@holodeck1.com>, 2010. + Jure Repinc <jlp@holodeck1.com> Application - Failed to load core: %1 Nalaganje jedra je spodletelo: %1 - Unable to send command line arguments to the already running instance. It appears to be not responding. Argumentov iz ukazne vrstice ni bilo moč poslati že zagnanemu izvodu. Kot kaže se ne odziva. - Could not find 'Core.pluginspec' in %1 »Core.pluginspec« v %1 ni bilo moč najti - Qt Creator - Plugin loader messages Qt Creator - sporočila nalagalnika vstavkov - - - Couldn't find 'Core.pluginspec' in %1 - V %1 ni bilo moč najti »Core.pluginspec« - AttachCoreDialog - Start Debugger Zaženi razhroščevalnik - Executable: Izvršljiva datoteka: - Core File: Datoteka posnetka: @@ -71,35 +45,21 @@ Content-Type: text/plain; charset=UTF-8 AttachExternalDialog - Start Debugger Zaženi razhroščevalnik - - Attach to Process ID: - Priklopi se na ID procesa: - - - - Filter: - Filter: - - - - Clear - Počisti + Attach to process ID: + Priklopi se na proces z ID-jem: BINEditor::Internal::BinEditorPlugin - &Undo &Razveljavi - &Redo &Uveljavi @@ -107,46 +67,34 @@ Content-Type: text/plain; charset=UTF-8 BookmarkDialog - Add Bookmark Dodaj zaznamek - Bookmark: Zaznamek: - Add in Folder: Dodaj v mapo: - + + - New Folder Nova mapa - - - - - Bookmarks Zaznamki - Delete Folder Zbriši mapo - Rename Folder Preimenuj mapo @@ -154,81 +102,53 @@ Content-Type: text/plain; charset=UTF-8 BookmarkManager - Bookmarks Zaznamki - Remove Odstrani - You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue? Nameravate zbrisati mapo, pri čemer bo zbrisana<br>tudi njena vsebina. Ali res želite nadaljevati? - - New Folder Nova mapa - - - Bookmark - Zaznamek - - - - You are going to delete a Folder which will also<br>remove its content. Are you sure to continue? - Nameravate zbrisati mapo, pri čemer bo zbrisana<br>tudi njena vsebina. Ali res želite nadaljevati? - BookmarkWidget - Delete Folder Zbriši mapo - Rename Folder Preimenuj mapo - Show Bookmark Prikaži zaznamek - Show Bookmark in New Tab Prikaži zaznamek v novem zavihku - Delete Bookmark Zbriši zaznamek - Rename Bookmark Preimenuj zaznamek - - Filter: - Filter: - - - Add Dodaj - Remove Odstrani @@ -236,105 +156,84 @@ Content-Type: text/plain; charset=UTF-8 Bookmarks::Internal::BookmarkView - - Bookmarks Zaznamki - - &Remove Bookmark - &Odstrani zaznamek + Move Up + Premakni gor - - Remove all Bookmarks - Odstrani vse zaznamke + Move Down + Premakni dol + + + &Remove + &Odstrani + + + Remove All + Odstrani vse Bookmarks::Internal::BookmarksPlugin - &Bookmarks &Zaznamki - - Toggle Bookmark Preklopi zaznamek - Ctrl+M - + Ctrl+M - Meta+M - - - - - Move Up - Premakni gor - - - - Move Down - Premakni dol + Meta+M - Previous Bookmark Predhodni zaznamek - Ctrl+, - + Ctrl+, - Meta+, - + Meta+, - Next Bookmark Naslednji zaznamek - Ctrl+. - + Ctrl+. - Meta+. - + Meta+. - - Previous Bookmark In Document + Previous Bookmark in Document Predhodni zaznamek v dokumentu - - Next Bookmark In Document + Next Bookmark in Document Naslednji zaznamek v dokumentu BreakByFunctionDialog - Set Breakpoint at Function Nastavi prekinitveno točko pri funkciji - Function to break on: Prekinitev pri funkciji: @@ -342,35 +241,25 @@ Content-Type: text/plain; charset=UTF-8 BreakCondition - Condition: Pogoj: - Ignore count: Število prezrtij: - - - Dialog - Pogovorno okno - CMakeProjectManager::Internal::CMakeBuildConfigurationFactory - - Create - Ustvari + Build + Zgradi - New configuration Nova nastavitev - New Configuration Name: Ime nove nastavitve: @@ -378,7 +267,6 @@ Content-Type: text/plain; charset=UTF-8 CMakeProjectManager::Internal::CMakeBuildSettingsWidget - &Change &Spremeni @@ -386,7 +274,6 @@ Content-Type: text/plain; charset=UTF-8 CMakeProjectManager::Internal::CMakeOpenProjectWizard - CMake Wizard Čarovnik za CMake @@ -394,168 +281,138 @@ Content-Type: text/plain; charset=UTF-8 CMakeProjectManager::Internal::InSourceBuildPage - 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 je zaznal <b>gradnjo znotraj mape %1 z izvorno kodo</b>, kar preprečuje gradnje izven te mape, zato vam Qt Creator ne bo dovolil spremeniti mape za gradnjo. Če želite gradnjo izven mape, počistite mapo z izvorno kodo in projekt odprite znova. - - Qt Creator has detected an in-source-build 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 je zaznal gradnjo znotraj mape z izvorno kodo, kar preprečuje gradnje izven te mape, zato vam Qt Creator ne bo dovolil spremeniti mape za gradnjo. Če želite gradnjo izven mape, počistite mapo z izvorno kodo in projekt odprite znova. - - - - 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. - Qt Creator je zaznal gradnjo znotraj mape z izvorno kodo. To preprečuje gradnje izven te mape, zato vam Qt Creator ne bo dovolil spremeniti mape za gradnjo. Če želite gradnjo izven mape, počistite mapo z izvorno kodo in projekt odprite znova. + Build Location + Lokacija gradnje CMakeProjectManager::Internal::CMakeRunPage - Please specify the path to the cmake executable. No cmake executable was found in the path. Določite pot do programa cmake. Programa cmak ni bilo moč najti v poti. - The cmake executable (%1) does not exist. Program cmake (%1) ne obstaja. - The path %1 is not a executable. Pot %1 ni izvršljiva. - The path %1 is not a valid cmake. Pot %1 ni veljaven cmake. - Run CMake Zaženi CMake - Arguments Argumenti - The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly Mapa %1 že vsebuje datoteko *.cbp, ki je dovolj nova. Podate lahko posebne argumente ali pa spremenite uporabljeno zaporedje orodij in znova zaženete cmake. Lahko tudi takoj zaključite čarovnika. - 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. Mapa %1 ne vsebuje datoteke *.cbp. Qt Creator mora s pomočjo programa cmake ustvariti to datoteko. Nekateri projekti pri prvem zagonu cmake potrebujejo posebne argumente v ukazni vrstici. - 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. Mapa %1 vsebuje zastarelo datoteko *.cbp. Qt Creator mora s pomočjo programa cmake posodobiti to datoteko. Če želite dodati argumente v ukazno vrstico, jih vnesite spodaj. Vedite, da si cmake zapomni argumente iz ukazne vrstice predhodnega zagona. - 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. V nastavitvah gradnje podana mapa %1 ne vsebuje datoteke *.cbp. Qt Creator mora s pomočjo programa cmake ustvariti to datoteko. Nekateri projekti pri prvem zagonu cmake potrebujejo posebne argumente v ukazni vrstici. Vedite, da si cmake zapomni argumente iz ukazne vrstice predhodnega zagona. - Qt Creator needs to run cmake in the new build directory. Some projects require command line arguments to the initial cmake call. Qt Creator mora v novi mapi za gradnjo zagnati cmake. Nekateri projekti pri prvem zagonu cmake potrebujejo posebne argumente v ukazni vrstici. - NMake Generator Ustvarjalnik za NMake - NMake Generator (%1) Ustvarjalnik za NMake (%1) - MinGW Generator Ustvarjalnik za MinGW - No valid cmake executable specified. Določenega ni nobenega veljavnega programa 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 in the below. Note, that cmake remembers command line arguments from the former runs. - Mapa %1 vsebuje zastarelo datoteko *.cbp. Qt Creator mora s pomočjo programa cmake posodobiti to datoteko. Če želite dodati argumente v ukazno vrstico, jih vnesite spodaj. Vedite, da si cmake zapomni argumente iz ukazne vrstice predhodnega zagona. - - - - 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. - V nastavitvah gradnje podana mapa %1 ne vsebuje datoteke *.cbp. Qt Creator mora s pomočjo programa cmake ustvariti to datoteko. Nekateri projekti pri prvem zagonu cmake potrebujejo posebne argumente v ukazni vrstici. Vedite, da si cmake zapomni argumente iz ukazne vrstice predhodnega zagona. - CMakeProjectManager::Internal::CMakeSettingsPage - - CMake CMake - - CMake executable - Program CMake + Executable: + Program: CMakeProjectManager::Internal::MakeStepConfigWidget - Additional arguments: Dodatni argumenti: - Targets: Cilji: - + Make + CMakeProjectManager::MakeStepConfigWidget display name. + Make + + <b>Make:</b> %1 %2 - + <b>Make:</b> %1 %2 + + + <b>Unknown Toolchain</b> + <b>Neznana veriga orodij</b> CMakeProjectManager::Internal::ShadowBuildPage - Please enter the directory in which you want to build your project. Vnesite mapo, v kateri želite zgraditi svoj projekt. - 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. Vnesite mapo, v kateri želite zgraditi svoj projekt. Qt Creator za gradnjo odsvetuje mapo z izvorno kodo. To zagotavlja, da mapa z izvorno kodo ostane čista, in omogoča več gradenj z različnimi nastavitvami. - Build directory: Mapa za gradnjo: + + Build Location + Lokacija gradnje + CPlusPlus::OverviewModel - <Select Symbol> <izberite simbol> - <No Symbols> <brez simbolov> @@ -563,429 +420,286 @@ Content-Type: text/plain; charset=UTF-8 CdbOptionsPageWidget - These options take effect at the next start of Qt Creator. Te možnosti stopijo v veljavo pri naslednjem zagonu Qt Creatorja. - - Cdb - Placeholder - - CDB - - - Debugger Paths Poti za razhroščevalnik - Symbol paths: Poti za simbole: - Source paths: Poti za izvorno kodo: - - <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>Tu določite pot do <a href="%1">Debugging Tools for Windows</a> (%2).</p><p><b>Vedite:</b> Da bi te spremembe stopile v veljavo je potreben ponoven zagon Qt Creatorja.</p></body></html> - - - - 64-bit version - 64-bitna različica - - - - 32-bit version - 32-bitna različica - - - Path: Pot: - - Other options - Ostale možnosti - - - - Verbose Symbol Loading - Zgovorno nalaganje simbolov - - - - Path to "Debugging Tools for Windows": - Pot do »Debugging Tools for Windows«: + CDB + Placeholder + + CDB - - Form - Obrazec + Other Options + Druge možnosti - - TextLabel - BesedilaOznaka + Verbose symbol loading + Gostobesedno nalaganje simbolov - - CDB - CDB + Fast loading of debugging helpers + Hitro nalaganje razhroščevalnih pomočnikov ChangeSelectionDialog - - Repository Location: - Lokacija skladišča: - - - Select Izberi - Change: Spremeni: - - Dialog - Pogovorno okno + Repository location: + Lokacija skladišča: CodePaster::CodepasterPlugin - &Code Pasting &Lepljenje kode - Paste Snippet... Prilepi delček ... - Alt+C,Alt+P - + Alt+C,Alt+P + + + Paste Clipboard... + Prilepi odložišče ... - Fetch Snippet... Dobi delček ... - Alt+C,Alt+F - - - - - This protocol supports no listing - Ta protokol ne podpira izpisa seznama - - - - Waiting for items - Čakanje na delčke + Alt+C,Alt+F - - &CodePaster - &CodePaster + Empty snippet received for "%1". + Za »%1« je bil prejet prazen delček CodePaster::PasteSelectDialog - Paste: Prilepi: - Protocol: Protokol: - - Dialog - Pogovorno okno + Refresh + Osveži + + + Waiting for items + Čakanje na delčke + + + This protocol does not support listing + Protokol ne podpira izpisa seznama CodePaster::SettingsPage - Username: Uporabniško ime: - - Copy Paste URL to clipboard - Skopiraj URL na odložišče - - - - Display Output Pane after sending a post - Po objavi prikaži podokno z rezultatom - - - - General Splošno - - CodePaster - CodePaster - - - - Default Protocol: - Privzeti protokol: - - - - Pastebin.ca - Pastebin.ca - - - - Pastebin.com - Pastebin.com - - - - Code Pasting - Prilepljanje kode + Display Output pane after sending a post + Po objavi prikaži podokno z izhodom - - CodePaster Server: - Strežnik za CodePaster: + Copy-paste URL to clipboard + Skopiraj URL na odložišče - - Form - Obrazec + Default protocol: + Privzeti protokol: CommonOptionsPage - - User interface - Uporabniški vmesnik - - - Checking this will populate the source file view automatically but might slow down debugger startup considerably. Če je omogočena ta možnost, bo prikaz datoteke z izvorno kodo zapolnjen samodejno, vendar to lahko močno upočasni zagon razhroščevalnika. - Populate source file view automatically Samodejno zapolni prikaz datoteke z izvorno kodo - - 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. - Če je omogočena ta možnost, ukaz »Vstopi« v določenih okoliščinah združi več korakov v enega, kar vodi do razhroščevanja z »manj dogajanja«. Tako bo npr. atomično štetje referenc preskočeno, -enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne prejemne reže. - - - - Skip known frames when stepping - Med stopanjem preskoči znane okvirje - - - Maximal stack depth: Največja globina sklada: - <unlimited> <neomejena> - Use alternating row colors in debug views V prikazih razhroščevalnika uporabi izmenjajoči se barvi vrstic - - Show a message box when receiving a signal - Ob prejemu signala prikaži okno s sporočilom - - - Use tooltips in main editor while debugging Med razhroščevanjem v glavnem oknu uporabljaj namige - - Enable reverse debugging - Omogoči obratno razhroščevanje + Language + Jezik - - Use tooltips while debugging - Med razhroščevanjem omogoči namige + Changes the debugger language according to the currently opened file. + Spremeni jezik razhroščevalnika glede na trenutno odprto datoteko. - - 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. - Če omogočite to možnost, bodo med razhroščevanjem omogočeni namigi z vrednostmi spremenljivk. Ker to lahko upočasni razhroščevanje in ne ponuja zanesljivih podatkov, saj ne uporablja podatkov o dosegu, je privzeto možnost onemogočena. + Change debugger language automatically + Samodejno spremeni jezik razhroščevalnika - - Form - Obrazec + GUI Behavior + Obnašanje uporabniškega vmesnika - - 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. - Če omogočite to možnost, bodo med razhroščevanjem omogočeni namigi z vrednostmi spremenljivk. Ker to lahko upočasni razhroščevanje in ne ponuja zanesljivih podatkov, saj ne uporablja podatkov o dosegu, je privzeto možnost onemogočena. + Register Qt Creator for debugging crashed applications. + Registriraj Qt Creator za razhroščevanje sesutih programov. + + + Use Qt Creator for post-mortem debugging + Uporabi Qt Creator za razhroščevanje po sesutju CompletionSettingsPage - - Code Completion - Dokončevanje kode - - - - Do a case-sensitive match for completion items. - Ujemanje za dokončevanje naj bo občutljivo na velikost črk. - - - - &Case-sensitive completion - &Dokončevanje občutljivo na velikost črk - - - Automatically insert (, ) and ; when appropriate. Ko je primerno, samodejno vstavi (, ) in ; - Insert the common prefix of available completion items. Vstavi skupni začetek razpoložljivih možnosti za dokončanje. - Autocomplete common &prefix Samodejno dokončaj skupni &začetek - &Automatically insert brackets &Samodejno vstavi oklepaje - - &Automatically insert braces - &Samodejno vstavi oklepaje + Behavior + Obnašanje - - Form - Obrazec + &Case-sensitivity: + &Razločevanje velikosti črk + + + Full + Polno + + + None + Brez + + + First Letter + Prva črka + + + Insert &space after function name + Za imenom funkcije vstavi &presledek ContentWindow - Open Link Odpri povezavo - - Open Link in New Tab - Odpri povezavo v novem zavihku + Open Link as New Page + Odpri povezavo kot novo stran Core::BaseFileWizard - - - - File Generation Failure Napaka ustvarjanja datoteke - - Existing files Obstoječe datoteke - Unable to create the directory %1. Ni moč ustvariti mape %1. - Unable to open %1 for writing: %2 Ni moč odpreti %1 za pisanje: %2 - Error while writing to %1: %2 Napaka pri pisanju v %1: %2 - Failed to open an editor for '%1'. Ni bilo moč odpreti urejevalnika za »%1«. - [read only] [samo za branje] - [directory] [mapa] - [symbolic link] [simbolna povezava] - The project directory %1 contains files which cannot be overwritten: %2. Projektna mapa %1 vsebuje datoteke, ki jih ni moč nadomestiti: %2. - The following files already exist in the directory %1: %2. Would you like to overwrite them? @@ -997,359 +711,260 @@ Ali jih želite nadomestiti? Core::EditorManager - - Revert to Saved Povrni na shranjeno - - Close Zapri - Close All Zapri vse - - Close Others Zapri ostale - Open in External Editor Odpri v zunanjem urejevalniku - Revert File to Saved Povrni datoteko na shranjeno - Ctrl+W - + Ctrl+W + + + 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 Razdeli - Split Side by Side Razdeli, da bo eno ob drugem - Remove Current Split Odstrani trenutni razdelek - Remove All Splits Odstrani vse razdelke - - Goto Other Split - Pojdi v drug razdelek + Save %1 &As... + Shrani %1 &kot ... - &Advanced &Napredno - Alt+V,Alt+I - + Alt+V,Alt+I - - Opening File Odpiranje datoteke - Cannot open file %1! Ni moč odpreti datoteke %1. - - Open File - Odpri datoteko - - - File is Read Only Datoteka je samo za branje - The file %1 is read only. Datoteka %1 je samo za branje. - Open with VCS (%1) Odpri v sistemu za nadzor različic (%1) - Save as ... Shrani kot ... - - Failed! Spodletelo. - Could not set permissions to writable. Dovoljenj ni bilo moč nastaviti na zapisljivo. - <b>Warning:</b> You are changing a read-only file. <b>Opozorilo:</b> spreminjate datoteko, ki je samo za branje. - - Make writable Spremeni v zapisljivo - Next Open Document in History Naslednji odprti dokument v zgodovini - Previous Open Document in History Predhodni odprti dokument v zgodovini - Go Back Pojdi nazaj - Go Forward Pojdi naprej - 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 + Pojdi na naslednji razdelek - %1,o - + %1,o - All Files (*) Vse datoteke (*) - Could not open the file for editing with SCC. Ni bilo moč odpreti datoteke za urejanje v SCC. - - Save %1 As... - Shrani %1 kot ... - - - &Save %1 &Shrani %1 - Revert %1 to Saved Povrni %1 na shranjeno - Close %1 Zapri %1 - Close All Except %1 Zapri vse, razen %1 - You will lose your current changes if you proceed reverting %1. Če nadaljujete s povračanjem %1, boste izgubili vse trenutne spremembe. - Proceed Nadaljuj - Cancel Prekliči - <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>Spremenljivka</th><th>Se razširi v</th></tr><tr><td>%f</td><td>ime datoteke</td></tr><tr><td>%l</td><td>številko trenutne vrstice</td></tr><tr><td>%c</td><td>številko trenutnega stolpca</td></tr><tr><td>%x</td><td>urejevalnikov vodoravni položaj na zaslonu</td></tr><tr><td>%y</td><td>urejevalnikov navpični položaj na zaslonu</td></tr><tr><td>%w</td><td>urejevalnikovo širino v pikah</td></tr><tr><td>%h</td><td>urejevalnikovo višino v pikah</td></tr><tr><td>%W</td><td>urejevalnikovo širino v znakih</td></tr><tr><td>%H</td><td>urejevalnikovo višino v znakih</td></tr><tr><td>%%</td><td>%</td></tr></table> + + + Core::FileManager - - Next Document in History - Naslednji dokument v zgodovini - - - - Previous Document in History - Predhodni dokument v zgodovini - - - - Go back - Pojdi nazaj - - - - Go forward - Pojdi naprej - - - - Could not open the file for edit with SCC. - Ni bilo moč odpreti datoteke za urejanje v SCC. - - - - Core::FileManager - - Cannot save file Ni moč shraniti datoteke - Cannot save changes to '%1'. Do you want to continue and lose your changes? Ni moč shraniti sprememb v »%1«. Ali želite nadaljevati in izgubiti svoje spremembe? - Overwrite? Nadomestim? - An item named '%1' already exists at this location. Do you want to overwrite it? Datoteka z imenom »%1« na tej lokaciji že obstaja. Ali jo želite nadomestiti? - Save File As Shrani datoteko kot - - Can't save file - Ni moč shraniti datoteke - - - - Can't save changes to '%1'. Do you want to continue and loose your changes? - Ni moč shraniti sprememb v »%1«. Ali želite nadaljevati in izgubiti svoje spremembe? + Open File + Odpri datoteko Core::Internal::ComboBox - Activate %1 Aktiviraj %1 @@ -1357,7 +972,6 @@ Ali jih želite nadomestiti? Core::Internal::EditMode - Edit Urejanje @@ -1365,72 +979,58 @@ Ali jih želite nadomestiti? Core::Internal::EditorSplitter - Split Left/Right Razdeli levo/desno - Split Top/Bottom Razdeli zgoraj/spodaj - Unsplit Odstrani razdelitev - Default Splitter Layout Privzeta postavitev delitelja - Save Current as Default Shrani trenutno kot privzeto - Restore Default Layout Obnovi privzeto postavitev - Previous Document Predhodni dokument - Alt+Left - + Alt+Left - Next Document Naslednji dokument - Alt+Right - + Alt+Right - Previous Group Predhodna skupina - Next Group Naslednja skupina - Move Document to Previous Group Premakni dokument v predhodno skupino - Move Document to Next Group Premakni dokument v naslednjo skupino @@ -1438,342 +1038,255 @@ Ali jih želite nadomestiti? Core::Internal::EditorView - - Go Back - Pojdi nazaj - - - - Go Forward - Pojdi naprej - - - - Placeholder Vsebnik - Close Zapri - - - Make writable - Spremeni v zapisljivo - - - - File is writable - Datoteka je zapisljiva - - - - Copy full path to clipboard - Skopiraj celotno pot na odložišče - Core::Internal::GeneralSettings - General Splošno - - Environment - Okolje + <System Language> + <sistemski jezik> - - Variables - Spremenljivke + Restart required + Potreben je ponovni zagon - - General settings - Splošne nastavitve + The language change will take effect after a restart of Qt Creator. + Sprememba jezika bo stopila v veljavo po ponovnem zagonu Qt Creatorja. - - User &interface color: - Barva &uporabniškega vmesnika: + Variables + Spremenljivke - Reset to default Ponastavi na privzeto - R P - Terminal: Konzola: - External editor: Zunanji urejevalnik: - ? ? - When files are externally modified: Ko so datoteke spremenjene od zunaj: - - Always ask - Vedno vprašaj + User Interface + Uporabniški vmesnik - - Reload all modified files - Znova naloži vse spremenjene datoteke + Color: + Barva: - - Ignore modifications - Prezri spremembe + Default file encoding: + Privzeti nabor znakov za datoteke: - - Form - Obrazec + Language: + Jezik: + + + System + Sistem + + + External file browser: + Zunanji brskalnik po datotekah: + + + Always Ask + Vedno vprašaj + + + Reload All Unchanged Editors + Znova naloži vse nespremenjene urejevalnike + + + Ignore Modifications + Prezri spremembe Core::Internal::MainWindow - Qt Creator Qt Creator - - Output - Izhod - - - &File &Datoteka - &Edit &Urejanje - &Tools &Orodja - &Window O&kno - &Help &Pomoč - &New File or Project... &Nova datoteka ali projekt ... - &Open File or Project... &Odpri datoteko ali projekt ... - - &Open File With... - &Odpri datoteko v ... + Open File &With... + Odpri datoteko &v ... - - Recent Files - Nedavne datoteke + Recent &Files + Nedavne &datoteke - - &Save &Shrani - - Save &As... Shrani &kot ... - - Ctrl+Shift+S - + Ctrl+Shift+S - Save A&ll Shrani &vse - &Print... &Natisni ... - E&xit Konča&j - Ctrl+Q - + Ctrl+Q - - &Undo &Razveljavi - - &Redo &Uveljavi - Cu&t &Izreži - &Copy S&kopiraj - &Paste Pri&lepi - &Select All &Izberi vse - &Go To Line... Pojdi v &vrstico ... - Ctrl+L - + Ctrl+L - &Options... &Možnosti ... - Minimize Pomanjšaj - Zoom Povečava - Show Sidebar Prikaži stranski pas - Full Screen Celozaslonski način - + &Views + &Prikazi + + About &Qt Creator O &Qt Creatorju - About &Qt Creator... O &Qt Creatorju ... - About &Plugins... O &vstavkih ... - - New... - Title of dialog - Novo ... - - - Settings... Nastavitve ... - - &New... - &Novo ... - - - - &Open... - &Odpri ... - - - - &Open With... - &Odpri z ... - - - New Title of dialog - Novo + Novo Core::Internal::MessageOutputWindow - - General - Splošno + General Messages + Splošna sporočila Core::Internal::NavComboBox - Activate %1 Aktiviraj %1 @@ -1781,12 +1294,10 @@ Ali jih želite nadomestiti? Core::Internal::NavigationSubWidget - Split Razdeli - Close Zapri @@ -1794,7 +1305,14 @@ Ali jih želite nadomestiti? Core::Internal::NavigationWidget - + Hide Sidebar + Skrij stranski pas + + + Show Sidebar + Prikaži stranski pas + + Activate %1 Pane Aktiviraj podokno %1 @@ -1802,51 +1320,49 @@ Ali jih želite nadomestiti? Core::Internal::NewDialog - New Project Nov projekt - - 1 - 1 + Choose a template: + Izberite predlogo: - - TextLabel - BesedilaOznaka + &Choose... + &Izbor ... + + + Projects + Projekti + + + Files and Classes + Datoteke in razredi Core::Internal::OpenEditorsWidget - - Open Documents Odprti dokumenti - Close %1 Zapri %1 - Close Editor Zapri urejevalnik - Close All Except %1 Zapri vse, razen %1 - Close Other Editors Zapri druge urejevalnike - Close All Editors Zapri vse urejevalnike @@ -1854,8 +1370,6 @@ Ali jih želite nadomestiti? Core::Internal::OpenEditorsWindow - - * * @@ -1863,7 +1377,6 @@ Ali jih želite nadomestiti? Core::Internal::OpenWithDialog - Open file '%1' with: Odpri datoteko »%1« v: @@ -1871,62 +1384,63 @@ Ali jih želite nadomestiti? Core::Internal::OutputPaneManager - Output Izhod - Clear Počisti - Next Item Naslednja postavka - Previous Item Predhodna postavka - + Maximize Output Pane + Razpni podokno z izhodom + + Output &Panes &Podokna z izhodom + + Minimize Output Pane + Pomanjšaj podokno z izhodom + Core::Internal::PluginDialog - Details Podrobnosti - Error Details Fehlermeldungen zu %1 Podrobnosti napake - Close Zapri - + Restart required. + Potreben je ponovni zagon. + + Installed Plugins Nameščeni vstavki - Plugin Details of %1 Podrobnosti vstavka %1 - Plugin Errors of %1 Napake vstavka %1 @@ -1934,7 +1448,6 @@ Ali jih želite nadomestiti? Core::Internal::ProgressView - Processes Procesi @@ -1942,56 +1455,49 @@ Ali jih želite nadomestiti? Core::Internal::SaveItemsDialog - Do not Save Ne shrani - Save All Shrani vse - Save Shrani - Save Selected Shrani izbrane - - - Don't Save - Ne shrani - Core::Internal::ShortcutSettings - Keyboard Tipkovnica - - Environment - Okolje + Keyboard Shortcuts + Tipkovnične bližnjice + + + Key sequence: + Zaporedje tipk: + + + Shortcut + Bližnjica - Import Keyboard Mapping Scheme Uvozi shemo preslikave tipkovnice - - Keyboard Mapping Scheme (*.kms) Shema preslikave tipkovnice (*.kms) - Export Keyboard Mapping Scheme Izvozi shemo preslikave tipkovnice @@ -1999,12 +1505,10 @@ Ali jih želite nadomestiti? Core::Internal::SideBarWidget - Split Razdeli - Close Zapri @@ -2012,47 +1516,40 @@ Ali jih želite nadomestiti? Core::Internal::VersionDialog - About Qt Creator O Qt Creatorju - + (%1) + (%1) + + From revision %1<br/> This gets conditionally inserted as argument %8 into the description string. Od revizije %1<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>Temelji na Qt %2 (%3-biten)<br/><br/>Zgrajen dne %4 ob %5<br /><br/>%8<br/>Avtorske pravice 2008-%6 %7. Vse pravice pridržane.<br/><br/>Program je na voljo KOT TAK, BREZ KAKRŠNEGAKOLI JAMSTVA, niti jamstva USTREZNOSTI ZA PRODAJO niti PRIMERNOSTI ZA UPORABO.<br/> - - - - <h3>Qt Creator %1</h3>Based on Qt %2<br/><br/>Built on - <h3>Qt Creator %1</h3>Temelji na Qt %2<br/><br/>Zgrajen + <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>Temelji na Qt %2 (%3-biten)<br/><br/>Zgrajen dne %4 ob %5<br /><br/>%9<br/>Avtorske pravice 2008-%6 %7. Vse pravice pridržane.<br/><br/>Program je na voljo KOT TAK, BREZ KAKRŠNEGAKOLI JAMSTVA, niti jamstva USTREZNOSTI ZA PRODAJO niti PRIMERNOSTI ZA UPORABO.<br/> Core::ModeManager - - Switch to %1 mode - Preklopi v način %1 + Switch to <b>%1</b> mode + Preklopi v način <b>%1</b> Core::ScriptManager - Exception at line %1: %2 %3 Izjema v vrstici %1: %2 %3 - Unknown error Neznana napaka @@ -2060,7 +1557,6 @@ Ali jih želite nadomestiti? Core::StandardFileWizard - New %1 TODO: Grammatical case problem @@ -2070,40 +1566,33 @@ Ali jih želite nadomestiti? CppEditor::Internal::CPPEditor - - Sort alphabetically + Sort Alphabetically Razvrsti po abecedi - This change cannot be undone. Te spremembe ni moč razveljaviti. - Yes, I know what I am doing. Da, vem kaj počnem. - - Reformat Document - Preoblikuj dokument + Unused variable + Neuporabljena spremenljivka CppEditor::Internal::ClassNamePage - - Enter class name + Enter Class Name Vnesite ime razreda - The header and source file names will be derived from the class name Imeni datotek z glavo in izvorno kodo bosta izpeljani iz imena razreda - Configure... Nastavi ... @@ -2111,7 +1600,6 @@ Ali jih želite nadomestiti? CppEditor::Internal::CppClassWizard - Error while generating file contents. Napaka med ustvarjanjem vsebine datotek. @@ -2119,139 +1607,87 @@ Ali jih želite nadomestiti? CppEditor::Internal::CppClassWizardDialog - C++ Class Wizard Čarovnik razreda C++ - - - CppEditor::Internal::CppHoverHandler - - Unfiltered - Nefiltrirano + Details + Podrobnosti CppEditor::Internal::CppPlugin - - C++ - C++ - - - C++ Header File Datoteka z glavo C++ - - Creates a C++ header file. - Ustvari datoteko z glavo C++. - - - - Creates a C++ source file. - Ustvari datoteko z izvorno kodo C++. - - - C++ Source File Datoteka z izvorno kodo C++ - C++ Class Razred C++ - - Creates a header and a source file for a new class. - Ustvari datoteki z glavo in izvorno kodo za nov razred. + Creates a C++ header and a source file for a new class that you can add to a C++ project. + Ustvari datoteki z glavo in izvorno kodo C++ za nov razred, ki ga lahko dodate v projekt C++. - - Follow Symbol under Cursor + Creates a C++ source file that you can add to a C++ project. + Ustvari datoteko z izvorno kodo C++, ki jo lahko dodate v projekt C++. + + + Creates a C++ header file that you can add to a C++ project. + Ustvari datoteko z glavo C++, ki jo lahko dodate v projekt C++. + + + Follow Symbol Under Cursor Sledi simbolu pod kazalcem - - Switch between Method Declaration/Definition + Switch Between Method Declaration/Definition Preklopi med deklaracijo in definicijo metode - Find Usages Najdi uporabe - Ctrl+Shift+U - + Ctrl+Shift+U - - Rename Symbol under Cursor + Rename Symbol Under Cursor Preimenuj simbol pod kazalcem - - Creates a new C++ header file. - Ustvari novo datoteko z glavo C++. - - - - Creates a new C++ source file. - Ustvari novo datoteko z izvorno kodo C++ + Update Code Model + Posodobi model izvorne kode CppFileSettingsPage - Header suffix: Končnica glave: - Source suffix: Končnica izvorne kode: - - File Naming Conventions - Pravila poimenovanja datotek - - - Lower case file names Imena datotek z malimi črkami - - License Template: + License template: Predloga za licenco: - - - This determines how the file names of the class wizards are generated ("MyClass.h" versus "myclass.h"). - To določa, kako so ustvarjena imena datotek v čarovnikih za razrede (»MojRazred.h« ali »mojrazred.h«). - - - - Lower case file names: - Imena datotek z malimi črkami: - - - - Form - Obrazec - CppPreprocessor - %1: No such file or directory %1: ta datoteka ali mapa ne obstaja @@ -2259,51 +1695,35 @@ Ali jih želite nadomestiti? CppTools::Internal::CppModelManager - Scanning Pregledovanje - - Indexing - Indeksiranje + Parsing + Razčlenjevanje CppTools - - File Naming Conventions - Pravila poimenovanja datotek + File Naming + Poimenovanje datotek - C++ C++ - - - File naming conventions - Pravila poimenovanja datotek - CppTools::Internal::CompletionSettingsPage - Completion Dokončevanje - - - Text Editor - Urejevalnik besedil - CppTools::Internal::CppClassesFilter - Classes Razredi @@ -2311,7 +1731,6 @@ Ali jih želite nadomestiti? CppTools::Internal::CppFunctionsFilter - Methods Metode @@ -2319,12 +1738,10 @@ Ali jih želite nadomestiti? CppTools::Internal::CppToolsPlugin - &C++ &C++ - Switch Header/Source Preklopi med glavo in izvorno kodo @@ -2332,7 +1749,6 @@ Ali jih želite nadomestiti? CppTools::Internal::FunctionArgumentWidget - %1 of %2 %1 od %2 @@ -2340,86 +1756,148 @@ Ali jih želite nadomestiti? Debugger - - Common + General Splošno - Debugger Razhroščevalnik - <Encoding error> <napaka nabora znakov> - - - QtDumperHelper - - Found an outdated version of the debugging helper library (%1); version %2 is required. - Najdena je bila zastarela različica knjižnice pomočnika za razhroščevanje (%1). Potrebna je različica %2. - - - - %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 - - - - - - + Error Loading Symbols + Napaka pri nalaganju simbolov - - <none> - <brez> - - - - %n known types, Qt version: %1, Qt namespace: %2 - - %n znana vrsta, različica Qt: %1, imenski prostor Qt: %2 - %n znani vrsti, različica Qt: %1, imenski prostor Qt: %2 - %n znane vrste, različica Qt: %1, imenski prostor Qt: %2 - %n znanih vrst, različica Qt: %1, imenski prostor Qt: %2 - + No executable to load symbols from specified. + Določenega ni nobenega programa za nalaganje simbolov. - - - Debugger::Internal::AttachCoreDialog - - Select Executable - Izberite izvršljivo datoteko + Symbols found. + Simboli najdeni. - - Select Core File - Izberite datoteko posnetka - + Loading symbols from "%1" failed: + + Nalaganje simbolov iz »%1« ni uspelo: + + + + Attached to core temporarily. + Začasno priklopljen na posnetek. + + + Unable to determine executable from core file. + Iz posnetka ni moč ugotoviti izvršljive datoteke. + + + Attached to core. + Priklopljen na posnetek. + + + Attach to core "%1" failed: + + Priklop na posnetek »%1« ni uspel: + + + + Cannot set up communication with child process: %1 + Ni moč vzpostaviti komunikacije s podprocesom: %1 + + + Starting executable failed: + + Zaganjanje izvršljive datoteke ni uspelo: + + + + The upload process failed to start. Shell missing? + Proces pošiljanja se ni uspel zagnati. Morda manjka lupina? + + + The upload process crashed some time after starting successfully. + Proces pošiljanja se je nekaj časa po uspešnem zagonu sesul. + + + The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. + Potekel je čas za zadnjo funkcijo waitFor...(). Stanje QProcess-a se ni spremenilo. Znova lahko poskusite klicati 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. + Med pisanjem v proces pošiljanja je prišlo do napake. Proces morda ne teče, ali pa je morda zaprl svoj vhodni kanal. + + + An error occurred when attempting to read from the upload process. For example, the process may not be running. + Med branjem iz procesa pošiljanja je prišlo do napake. Proces morda ne teče. + + + An unknown error in the upload process occurred. This is the default return value of error(). + Prišlo je do neznane napake v procesu pošiljanja. To je privzeta vrnjena vrednost funkcije error(). + + + Error + Napaka + + + Starting remote executable failed: + + Zaganjanje oddaljene izvršljive datoteke ni uspelo: + + + + Debugger Error + Napaka razhroščevalnika + + + + QtDumperHelper + + Found an outdated version of the debugging helper library (%1); version %2 is required. + Najdena je bila zastarela različica knjižnice pomočnika za razhroščevanje (%1). Potrebna je različica %2. + + + %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 + + %n znana vrsta, različica Qt: %1, imenski prostor Qt: %2, razlićica odlagalnika %3 + %n znani vrsti, različica Qt: %1, imenski prostor Qt: %2, razlićica odlagalnika %3 + %n znane vrste, različica Qt: %1, imenski prostor Qt: %2, razlićica odlagalnika %3 + %n znanih vrst, različica Qt: %1, imenski prostor Qt: %2, razlićica odlagalnika %3 + + + + <none> + <brez> + + + + Debugger::Internal::AttachCoreDialog + + Select Executable + Izberite izvršljivo datoteko + + + Select Core File + Izberite datoteko posnetka + Debugger::Internal::AttachExternalDialog - Process ID ID procesa - Name Ime - State Stanje - Refresh Osveži @@ -2427,12 +1905,10 @@ Ali jih želite nadomestiti? Debugger::Internal::AddressDialog - Select start address Izberite začetni naslov - Enter an address: Vnesite naslov: @@ -2440,112 +1916,94 @@ Ali jih želite nadomestiti? Debugger::Internal::BreakHandler - Marker File: - + Datoteka oznake: - Marker Line: - + Vrstica oznake: - Breakpoint Number: Številka prekinitvene točke: - Breakpoint Address: Naslov prekinitvene točke: - Property Lastnost - Requested Zahtevana - Obtained Pridobljena - Internal Number: Notranja številka: - File Name: Ime datoteke: - Function Name: Ime funkcije: - Line Number: Številka vrstice: - + Corrected Line Number: + Popravljena številka vrstice: + + Condition: Pogoj: - Ignore Count: Število prezrtij: - Number Številka - Function Funkcija - File Datoteka - Line Vrstica - Condition Pogoj - Ignore Prezri - Address Naslov - Breakpoint will only be hit if this condition is met. Prekinitvena točka velja, samo če je izpolnjen ta pogoj. - Breakpoint will only be hit after being ignored so many times. Prekinitvena točka velja, samo po tolikšnem številu prezrtij. @@ -2553,82 +2011,82 @@ Ali jih želite nadomestiti? Debugger::Internal::BreakWindow - Breakpoints Prekinitvene točke - - Delete breakpoint + Delete Breakpoint Zbriši prekinitveno točko - - Delete all breakpoints + Delete All Breakpoints Zbriši vse prekinitvene točke - - Delete breakpoints of "%1" + Delete Breakpoints of "%1" Zbriši prekinitvene točke za »%1« - - Delete breakpoints of file + Delete Breakpoints of File Zbriši prekinitvene točke za datoteko - - Adjust column widths to contents + Adjust Column Widths to Contents Širine stolpcev prilagodi vsebinam - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Širine stolpcev vedno prilagodi vsebinam - - Edit condition... + Edit Condition... Urejanje pogoja ... - - Synchronize breakpoints + Synchronize Breakpoints Uskladi prekinitvene točke - - Disable breakpoint + Disable Selected Breakpoints + Onemogoči izbrane prekinitvene točke + + + Enable Selected Breakpoints + Omogoči izbrane prekinitvene točke + + + Disable Breakpoint Onemogoči prekinitveno točko - - Enable breakpoint + Enable Breakpoint Omogoči prekinitveno točko - - Use short path + Use Short Path Uporabi kratko pot - - Use full path - Uporabi polno pot + Use Full Path + Uporabi celotno pot - Set Breakpoint at Function... Nastavi prekinitveno točko pri funkciji ... - Set Breakpoint at Function "main" Nastavi prekinitveno točko pri funkciji »main« - + Set Breakpoint at "throw" + Nastavi prekinitveno točko pri »throw« + + + Set Breakpoint at "catch" + Nastavi prekinitveno točko pri »catch« + + Conditions on Breakpoint %1 Pogoji pri prekinitveni točki %1 @@ -2636,316 +2094,221 @@ Ali jih želite nadomestiti? Debugger::Internal::CdbDebugEngine - - Unable to load the debugger engine library '%1': %2 - Ni moč naložiti knjižnice razhroščevalnega pogona »%1«: %2 - - - The function "%1()" failed: %2 Function call failed Funkcija »%1()« ni uspela: %2 - - Unable to resolve '%1' in the debugger engine library '%2' - Ni moč razrešiti »%1« v knjižnici razhroščevalnega pogona »%2« - - - Version: %1 Različica: %1 - <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> <html>Nameščena različica <i>Debugging Tools for Windows</i> (%1) je precej stara. Da bodo podatkovne vrste Qt pravilno prikazane, je priporočljiva nadgradnja na različico %2. - Debugger Razhroščevalnik - The dumper library was not found at %1. Knjižnica odlagalnika v %1 ni bila najdena. - The console stub process was unable to start '%1'. Konzolni nastavek procesa ni mogel zagnati »%1«. - Attaching to core files is not supported! Priklapljanje na datoteko s posnetkom ni podprto. - - Debugger running - Razhroščevalnik je zagnan - - - - Attaching to a process failed for process id %1: %2 - Priklapljanje na proces z ID-jem %1 ni uspelo: %2 - - - - Unable to set the image path to %1: %2 - Ni moč nastaviti poti slike na %1: %2 - - - - Unable to create a process '%1': %2 - Ni moč ustvariti procesa »%1«: %2 - - - The process exited with exit code %1. Proces se je končal z izhodno kodo %1. - Continuing with '%1'... Nadaljevanje z »%1« ... - Unable to continue: %1 Ni moč nadaljevati: %1 - Reverse stepping is not implemented. Korakanje nazaj ni implementirano. - Thread %1 cannot be stepped. Po niti %1 ni moč korakati. - Stepping %1 Korakanje po %1 - - Running to 0x%1... - Zaganjanje do 0x%1 ... - - - Running requested... Zaganjanje zahtevanega ... - Running up to %1:%2... Zaganjanje do %1:%2 ... - Running up to function '%1()'... Zaganjanje do funkcije »%1()« ... - Jump to line is not implemented Skakanje v vrstico ni implementirano - Unable to assign the value '%1' to '%2': %3 »%2« ni moč dodeliti vrednosti »%1«: %3 - Unable to retrieve %1 bytes of memory at 0x%2: %3 Ni moč pridobiti %1 B pomnilnika na 0x%2: %3 - Cannot retrieve symbols while the debuggee is running. Ni moč pridobiti simbolov, medtem ko je razhroščevan proces zagnan. - - Debugger Error Napaka razhroščevalnika - Ignoring initial breakpoint... Preziranje začetne prekinitvene točke ... - Interrupted in thread %1, current thread: %2 Prekinjeno v niti %1, trenutna nit: %2 - Stopped, current thread: %1 Ustavljeno, trenutna nit: %1 - Changing threads: %1 -> %2 Zamenjava niti: %1 → %2 - - Thread %1: Missing debug information for top stack frame (%2). - Nit %1: manjkajo razhroščevalni podatki za vrhnji okvir sklada (%2). - - - - Thread %1: No debug information available (%2). - Nit %1: razhroščevalni podatki niso razpoložljivi (%2). - - - - The dumper library '%1' does not exist. - Knjižnica odlagalnika »%1« ne obstaja. + Stopped at %1:%2 in thread %3. + Ustavljen pri %1:%2 v niti %3. - - CdbDebugEngine: Attach to core not supported! - CdbDebugEngine: priklapljanje na posnetek ni podprto. + Stopped at %1 in thread %2 (missing debug information). + Ustavljen pri %1 v niti %2 (manjkajo razhroščevalni podatki). - - Debugger Running - Razhroščevalnik je zagnan + Stopped at %1 (%2) in thread %3 (missing debug information). + Ustavljen pri %1 (%2) v niti %3 (manjkajo razhroščevalni podatki). - - AttachProcess failed for pid %1: %2 - AttachProcess je spodletel za PID %1: %2 + Stopped in thread %1 (missing debug information). + Ustavljen v niti %1 (manjkajo razhroščevalni podatki). - - CreateProcess2Wide failed for '%1': %2 - CreateProcess2Wide je spodletel za »%1«: %2 + Breakpoint: %1 + Prekinitvena točka: %1 Debugger::Internal::CdbDumperHelper - injection vstavek - debugger call klic razhroščevalnika - Loading the custom dumper library '%1' (%2) ... Nalaganje knjižnice odlagalnika po meri »%1« (%2) ... - Loading of the custom dumper library '%1' (%2) failed: %3 Nalaganje knjižnice odlagalnika po meri »%1« (%2) ni uspelo: %3 - Loaded the custom dumper library '%1' (%2). Knjižnica odlagalnika po meri »%1« (%2) je bila naložena. - Stopped / Custom dumper library initialized. Ustavljen / Knjižnica odlagalnika po meri je bila inicializirana. - Disabling dumpers due to debuggee crash... Onemogočanje odlagalnikov, ker se je razhroščevani sesul ... - The debuggee does not appear to be Qt application. Kot kaže razhroščevani ni program napisan s Qt. - Initializing dumpers... Inicializiranje odlagalnikov ... - The custom dumper library could not be initialized: %1 Knjižnice odlagalnika po meri ni bilo moč inicializirati: %1 - Querying dumpers for '%1'/'%2' (%3) Pri odlagalnikih poizvedujem po »%1«/»%2« (%3) - - - Custom dumper library initialized. - Knjižnica odlagalnika po meri je bila inicializirana. - Debugger::Internal::CdbOptionsPageWidget - - Cdb - CDB + <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>Tu določite pot do <a href="%1">Debugging Tools for Windows</a> (%2).</p><p><b>Vedite:</b> Da bi te spremembe stopile v veljavo je potreben ponoven zagon Qt Creatorja.</p></body></html> + + + 64-bit version + 64-bitna različica + + + 32-bit version + 32-bitna različica - Autodetect Samodejno zaznaj - "Debugging Tools for Windows" could not be found. Ni bilo moč najti »Debugging Tools for Windows«. - Checked: %1 Preverjeno: %1 - Autodetection Samodejna zaznava - - - CDB - CDB - Debugger::Internal::CdbSymbolPathListEditor - Symbol Server... Strežnik za simbole ... - Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. Doda strežnik za simbole za knjižnice operacijskega sistema. Potrebno je določiti mapo s krajevnim medpomnilnikom. - Pick a local cache directory Izberite mapo s krajevnim medpomnilnikom @@ -2953,7 +2316,6 @@ Ali jih želite nadomestiti? Debugger::Internal::DebugMode - Debug Razhroščevanje @@ -2961,163 +2323,106 @@ Ali jih želite nadomestiti? Debugger::Internal::DebuggerOutputWindow - Debugger Razhroščevalnik - - - Gdb - GDB - Debugger::Internal::DebuggerPlugin - Start and Debug External Application... Zaženi in razhroščuj zunanji program ... - Attach to Running External Application... Priklopi se na zagnan zunanji program ... - Attach to Core... Priklopi se na posnetek ... - Start and Attach to Remote Application... Zaženi in se priklopi na oddaljen program ... - Option '%1' is missing the parameter. Manjka parameter možnosti »%1«. - The parameter '%1' of option '%2' is not a number. Parameter »%1« možnosti »%2« ni število. - Invalid debugger option: %1 Neveljavna možnost razhroščevalnika: %1 - Error evaluating command line arguments: %1 Napaka pri vrednotenju argumentov v ukazni vrstici: %1 - Detach Debugger Odklopi razhroščevalnik - Stop Debugger/Interrupt Debugger Ustavi ali prekini razhroščevalnik - Reset Debugger Ponastavi razhroščevalnik - - &Views - &Prikazi - - - - Locked - Zaklenjeno - - - - Reset to default layout - Ponastavi na privzet razpored - - - Threads: Niti: - Attaching to PID %1. Priklapljanje na PID %1. - Remove Breakpoint Odstrani prekinitveno točko - Disable Breakpoint Onemogoči prekinitveno točko - Enable Breakpoint Omogoči prekinitveno točko - Set Breakpoint Nastavi prekinitveno točko - Warning Opozorilo - Cannot attach to PID 0 Ni se moč priklopiti na PID 0 - Attaching to core %1. Priklapljanje na jedro %1. - - - Attach to Running Tcf Agent... - Priklopi se na zagnanega posrednika TCF ... - - - - This attaches to a running 'Target Communication Framework' agent. - S tem se priklopi na zagnanega posrednika za »Target Communication Framework«. - - - - Detach debugger - Odklopi razhroščevalnik - Debugger::Internal::DebuggerListener - - Close Debugging Session - Zapri razhroščevalno sejo + A debugging session is still in progress. +Would you like to terminate it? + Razhroščevalna seja je še vedno v teku. +Ali jo žalite končati? - - A debugging session is still in progress. Would you like to terminate it? - Razhroščevalna seja je še vedno v teku. Ali jo žalite končati? + Close Debugging Session + Zapri razhroščevalno sejo - A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? Razhroščevalna seja je še vedno v teku. Če sejo končate v trenutnem stanju (%1), bo tarča morda ostala v neskladnem stanju. Ali še vedno želite končati sejo? @@ -3125,421 +2430,306 @@ Ali jih želite nadomestiti? Debugger::Internal::DebuggerSettings - - Debugger properties... + 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. + To preklopi razhroščevalnik v način delovanja po ukazih. V tem načinu korakanje deluje po posameznih ukazih, prikaz položaja v izvorni kodi pa prikazuje ukaze v zbirniku. + + + 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. + To v prikazu »Krajevno in opazovalci« vklopi samodejno dereferenciranje kazalcev. S tem se prihrani ena stopnja v drevesnem prikazu, a izgubi podatke o vmesni stopnji, ki sedaj manjka. + + + Debugger Properties... Lastnosti razhroščevalnika ... - - Adjust column widths to contents + Adjust Column Widths to Contents Širine stolpcev prilagodi vsebinam - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Širine stolpcev vedno prilagodi vsebinam - - Use alternating row colors + Use Alternating Row Colors Uporabi izmenjajoči se barvi vrstic - - Show a message box when receiving a signal + Show a Message Box When Receiving a Signal Ob prejemu signala prikaži okno s sporočilom - - Log time stamps + Log Time Stamps Časovne oznake v dnevniku - - Operate by instruction - Deluj po ukazih - - - - 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. - To preklopi razhroščevalnik v način delovanja po ukazih. V tem načinu korakanje deluje po posameznih ukazih, prikaz položaja v izvorni kodi pa prikazuje ukaze v zbirniku. + Verbose Log + Gostobeseden dnevnik - - Dereference pointers automatically - + Operate by Instruction + Deluj po ukazih - - 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. - + Dereference Pointers Automatically + Samodejno dereferenciraj kazalce - - Watch expression "%1" + Watch Expression "%1" Opazuj izraz »%1« - - Remove watch expression "%1" + Remove Watch Expression "%1" Odstrani opazovanje izraza »%1« - - Watch expression "%1" in separate window + Watch Expression "%1" in Separate Window Opazuj izraz »%1« v ločenem oknu - - Use tooltips in main editor when debugging - Med razhroščevanjem v glavnem oknu uporabljaj namige + Show "std::" Namespace in Types + V vrstah prikaži imenski prostor »std::« - - 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. - Če omogočite to možnost, bodo med razhroščevanjem omogočeni namigi z vrednostmi spremenljivk. Ker to lahko upočasni razhroščevanje in ne ponuja zanesljivih podatkov, saj ne uporablja podatkov o dosegu, je privzeto možnost onemogočena. + Show Qt's Namespace in Types + V vrstah prikaži imenski prostor Qt-a - - Use tooltips in locals view when debugging - Med razhroščevanjem v prikazu krajevnih uporabljaj namige + Use Debugging Helpers + Uporabi razhroščevalne pomočnike - - Checking this will enable tooltips in the locals view during debugging. - S tem med razhroščevanjem v prikazu krajevnih omogočite namige. + Debug Debugging Helpers + Razhroščuj razhroščevalne pomočnike - - Use tooltips in breakpoints view when debugging - Med razhroščevanjem v prikazu prekinitvenih točk uporabljaj namige + Use Code Model + Uporabi model izvorne kode - - Checking this will enable tooltips in the breakpoints view during debugging. - S tem med razhroščevanjem v prikazu prekinitvenih točk omogočite namige. + 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. + Če je to omogočeno, bo o obsegu spremenljivke povprašan model izvorne kode C++. Tako je lahko razhroščevanje hitrejše, a lahko pri optimizirani kodi spodleti. - - Show address data in breakpoints view when debugging - Med razhroščevanjem v prikazu prekinitvenih točk prikaži podatke o naslovih + Recheck Debugging Helper Availability + Znova preveri razpoložljivost razhroščevalnega pomočnika - - Checking this will show a column with address information in the breakpoint view during debugging. - S tem med razhroščevanjem v prikazu prekinitvenih točk vklopite prikaz stolpca s podatki o naslovih. + Synchronize Breakpoints + Uskladi prekinitvene točke - - Show address data in stack view when debugging - Med razhroščevanjem v prikazu sklada prikaži podatke o naslovih + Use Precise Breakpoints + Uporabi točne prekinitvene točke - - Checking this will show a column with address information in the stack view during debugging. - S tem med razhroščevanjem v prikazu sklada vklopite prikaz stolpca s podatki o naslovih. + 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. + Če je to omogočeno, bo po vsakem koraku upravljeno usklajevanje prekinitvenih točk. Tako bo podatek o razrešitvi prekinitvene točke po nalaganju deljenih knjižnic ažuren. To upočasni korakanje. - - Use debugging helper - Uporabi razhroščevalnega pomočnika + Break on "throw" + Prekini pri »throw« - - Debug debugging helper - Razhroščuj razhroščevalnega pomočnika + Break on "catch" + Prekini pri »catch« - - Use code model - Uporabi model kode + Automatically Quit Debugger + Samodejno končaj razhroščevalnik - - Recheck debugging helper availability - Znova preveri razpoložljivost razhroščevalnega pomočnika + Use tooltips in main editor when debugging + Med razhroščevanjem v glavnem oknu uporabljaj namige - - Synchronize breakpoints - Uskladi prekinitvene točke + 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. + Če omogočite to možnost, bodo med razhroščevanjem omogočeni namigi z vrednostmi spremenljivk. Ker to lahko upočasni razhroščevanje in ne ponuja zanesljivih podatkov, saj ne uporablja podatkov o dosegu, je privzeto možnost onemogočena. - - Automatically quit debugger - Samodejno končaj razhroščevalnik + Use Tooltips in Locals View When Debugging + Med razhroščevanjem v prikazu krajevnega uporabljaj namige - - List source files - Prikaži seznam datotek z izvorno kodo + Use Tooltips in Breakpoints View When Debugging + Med razhroščevanjem v prikazu prekinitvenih točk uporabljaj namige - - Skip known frames - Preskoči znane okvirje + Show Address Data in Breakpoints View When Debugging + Med razhroščevanjem v prikazu prekinitvenih točk prikaži podatke o naslovih - - Enable reverse debugging - Omogoči obratno razhroščevanje + Show Address Data in Stack View When Debugging + Med razhroščevanjem v prikazu sklada prikaži podatke o naslovih - - Reload full stack - Znova naloži ves sklad + List Source Files + Prikaži seznam datotek z izvorno kodo - - Execute line - Izvrši vrstico + Skip Known Frames + Preskoči znane okvirje - - Expand item - Razširi postavko + Selecting this results in well-known but usually not interesting frames belonging to reference counting and signal emission being skipped while single-stepping. + Če omogočite to možnost, bodo dobro znani in večinoma nezanimivi okvirji, ki pripadajo štetju referenc in oddajanju signalov, med korakanjem preskočeni. - - Collapse item - Skrči postavko + Enable Reverse Debugging + Omogoči obratno razhroščevanje - - Hexadecimal - Šestnajstiško + Register For Post-Mortem Debugging + Registriraj za razhroščevanje po sesutju - - Decimal - Desetiško + Reload Full Stack + Znova naloži ves sklad - - Octal - Osmiško + Create Full Backtrace + Ustvari celotno povratno sled - - Binary - Dvojiško + Execute Line + Izvrši vrstico - - Raw - Surovo + Change debugger language automatically + Samodejno spremeni jezik razhroščevalnika - - Natural - Naravno + Changes the debugger language according to the currently opened file. + Spremeni jezik razhroščevalnika glede na trenutno odprto datoteko. - - Use tooltips when debugging - Med razhroščevanjem omogoči namige + Checking this will enable tooltips in the locals view during debugging. + S tem med razhroščevanjem v prikazu krajevnih omogočite namige. - - Syncronize breakpoints - Uskladi prekinitvene točke + Checking this will enable tooltips in the breakpoints view during debugging. + S tem med razhroščevanjem v prikazu prekinitvenih točk omogočite namige. + + + Checking this will show a column with address information in the breakpoint view during debugging. + S tem med razhroščevanjem v prikazu prekinitvenih točk vklopite prikaz stolpca s podatki o naslovih. + + + Checking this will show a column with address information in the stack view during debugging. + S tem med razhroščevanjem v prikazu sklada vklopite prikaz stolpca s podatki o naslovih. Debugger::Internal::DebuggingHelperOptionPage - Debugging Helper Razhroščevalni pomočnik - Choose DebuggingHelper Location Izberite lokacijo razhroščevalnega pomočnika - Ctrl+Shift+F11 - + Ctrl+Shift+F11 Debugger::Internal::GdbEngine - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. Proces GDB se ni uspel zagnati. Bodisi manjka klicani program »%1« bodisi nimate zadosti pravic za klic programa. - The Gdb process crashed some time after starting successfully. Proces GDB se je nekaj časa po uspešnem zagonu sesul. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. Potekel je čas za zadnjo funkcijo waitFor...(). Stanje QProcessa se ni spremenilo. Znova lahko poskusite klicati waitFor...(). - An error occurred when attempting to write to the Gdb process. For example, the process may not be running, or it may have closed its input channel. Med pisanjem v proces GDB je prišlo do napake. Proces morda ne teče, ali pa je morda zaprl svoj vhodni kanal. - An error occurred when attempting to read from the Gdb process. For example, the process may not be running. Med branjem iz procesa GDB je prišlo do napake. Proces morda ne teče. - An unknown error in the Gdb process occurred. Prišlo je do neznane napake v procesu GDB. - - Library %1 loaded. - Knjižnica %1 je naložena. - - - - Library %1 unloaded. - Knjižnica %1 je odstranjena. - - - - Thread group %1 created. - Skupina niti %1 je ustvarjena. - - - - Thread %1 created. - Nit %1 je ustvarjena. - - - - Thread group %1 exited. - Skupina niti %1 je končala. - - - - Thread %1 in group %2 exited. - Nit %1 iz skupine %2 je končala. - - - - Thread %1 selected. - Nit %1 je izbrana. - - - Reading %1... Branje %1 ... - Stop requested... Zahtevanje ustavitve ... - - Executable failed Program ni uspel - Process failed to start. Proces se ni uspel zagnati. - Executable failed: %1 Program ni uspel: %1 - - Program exited with exit code %1. - Program se je končal z izhodno kodo %1. - - - - Program exited after receiving signal %1. - Program se je končal po sprejemu signala %1. - - - - Program exited normally. - Program se je končal normalno. - - - Execution Error Napaka pri izvajanju - Cannot continue debugged process: Razhroščevanega procesa ni moč nadaljevati: - - Inferior shutdown failed - - - - Continuing after temporary stop... Nadaljevanje po začasni ustavitvi ... - Running requested... Zahtevanje zagona ... - Step requested... Zahtevanje koraka ... - Step by instruction requested... Zahtevanje koraka po ukazu ... - Finish function requested... Zahtevanje zaključitve funkcije ... - Step next requested... Zahtevanje koraka naprej ... - Step next instruction requested... Zahtevanje koraka po ukazu naprej ... - Run to line %1 requested... Zahtevanje zagona do vrstice %1 ... - Run to function %1 requested... Zahtevanje zagona do funkcije %1 ... - Jumping out of bogus frame... Skok iz lažnega okvira ... - Retrieving data for watch view (%n requests pending)... Pridobivanje podatkov za prikaz opazovanj (%n čakajoč zahtevek) ... @@ -3549,7 +2739,6 @@ Ali jih želite nadomestiti? - Dumper version %1, %n custom dumpers found. Odlagalnik različice %1, najden %n odlagalnik po meri. @@ -3559,7 +2748,6 @@ Ali jih želite nadomestiti? - <%n items> In string list @@ -3571,551 +2759,384 @@ Ali jih želite nadomestiti? - The debugging helper library was not found at %1. Knjižnica pomočnika za razhroščevanje v %1 ni bila najdena. - - - Disassembler failed: %1 - + Razgrajevalnik ni uspel: %1 - Unable to start gdb '%1': %2 Ni moč zagnati GDB-ja »%1«: %2 - Gdb I/O Error V/I napaka GDB-ja - Unexpected Gdb Exit Nepričakovan izhod GDB-ja - The gdb process exited unexpectedly (%1). Proces GDB-ja se je nepričakovano končal (%1). - + Library %1 loaded + Knjižnica %1 je naložena + + + Library %1 unloaded + Knjižnica %1 je odstranjena + + + Thread group %1 created + Skupina niti %1 je ustvarjena + + + Thread %1 created + Nit %1 je ustvarjena + + + Thread group %1 exited + Skupina niti %1 je končala + + + Thread %1 in group %2 exited + Nit %1 iz skupine %2 je končala + + + Thread %1 selected + Nit %1 je izbrana + + + 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. + Proces GDB se v %1 s ni odzval na ukaz. To lahko pomeni, se je ujel v neskončno zanki ali pa izvajanje operacije traja dalj časa kot je pričakovano. +Lahko izberete čakanje ali pa prekličete razhroščevanje. + + + Gdb not responding + GDB se ne odziva + + + Give gdb more time + Daj GDB-ju več časa + + + Stop debugging + Ustavi razhroščevanje + + + Jumped. Stopped + Skočil. Ustavljeno + + + Target line hit. Stopped + Ciljna vrstica dosežena. Ustavljeno + + + Application exited with exit code %1 + Program se je končal z izhodno kodo %1 + + + Application exited after receiving signal %1 + Program se je končal po prejemu signala %1 + + + Application exited normally + Program se je normalno končal + + + Stopped at breakpoint %1 in thread %2. + Ustavljeno pri prekinitveni točki %1 v niti %2. + + + <Unknown> + name + <neznano> + + + <Unknown> + meaning + <neznan> + + + Stopped: %1 by signal %2 + Ustavljeno: %1 s signalom %2 + + + Failed to shut down application + Končanje programa ni uspelo + + + There is no gdb binary available for '%1' + Za »%1« ni na voljo nobenega programa GDB + + + Launching + Zaganjanje + + + Immediate return from function requested... + Zahtevana je bila takojšnja vrnitev iz funkcije ... + + + ATTEMPT BREAKPOINT SYNC + + + + <unknown> + address + End address of loaded module + + <neznan> + + + Snapshot Creation Error + Napaka pri ustvarjanju posnetka + + + Cannot create snapshot file. + Ni moč ustvariti datoteke s posnetkom. + + + Cannot create snapshot: + + Ni moč ustvariti posnetka: + + + + Snapshot Reloading + Ponovno nalaganje posnetka + + + In order to load snapshots the debugged process needs to be stopped. Continuation will not be possible afterwards. +Do you want to stop the debugged process and load the selected snapshot? + Da bi bilo moč naložiti posnetke, mora biti razhroščevani proces ustavljen. Nadaljevanje po tem ne bo možno. +Ali želite ustaviti razhroščevani proces in naložiti izbrani posnetek? + + + Finished retrieving data + Pridobivanje podatkov zaključeno + + crashed sesutje - code %1 koda %1 - Adapter start failed Zagon prilagojevalnika ni uspel - Starting inferior... - + Zaganjanje podrejenega ... - Setting breakpoints... Nastavljanje prekinitvenih točk ... - - Inferior start failed - + Failed to start application: + Zagon programa ni uspel: + + + Failed to start application + Zagon programa ni uspel - Adapter crashed Prilagojevalnik se je sesul - Stopping temporarily. Začasno ustavljanje. - - Jumped. Stopped. - Skočil. Ustavljeno. - - - Loading %1... Nalaganje %1 ... - - Stopped at breakpoint. - Ustavljeno pri prekinitveni točki. - - - <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> - - - - - - <Unknown> - <neznano> + <p>Podrejeni se je ustavil, ker je od operacijskega sistema prijel signal.<p><table><tr><td>Ime signala: </td><td>%1</td></tr><tr><td>Pomen signala: </td><td>%2</td></tr></table> - Signal received Prejet signal - Stopped: "%1" Ustavljeno: »%1« - - The debugger you are using identifies itself as: - Uporabljeni razhroščevalnik se predstavlja kot: - - - - 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. - Te različice Qt Creator uradno ne podpira. -Razhroščevanje verjetno ne bo delovalo dobro. -Močno priporočamo uporabo GDB-ja 6.7, ali novejšega. - - - Processing queued commands. Obdelovanje vrste z ukazi. - - Stopped. Ustavljeno. - Cannot find debugger initialization script Ni moč najti skripta za inicializacijo razhroščevalnika - 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. Nastavitve razhroščevalnika kažejo na skriptno datoteko »%1«, ki pa ni dosegljiva. Če skriptna datoteka ni potrebna, razmislite o tem, da bi počistili to nastavitev in se tako izognili temu opozorilu. - Unable to run '%1': %2 Ni moč zagnati »%1«: %2 - <unknown> - End address of loaded module - <neznan> - - Retrieving data for stack view... Pridobivanje podatkov za prikaz sklada ... - - Finished retrieving data. - Pridobivanje podatkov zaključeno. - - - Debugging helpers not found. Razhroščevalni pomočniki niso bili najdeni. - Custom dumper setup: %1 Nastavitev odlagalnika po meri: %1 - <0 items> <0 postavk> - <shadowed> <zakrita> - <n/a> <ni na voljo> - <anonymous union> <anonimna unija> - <no information> About variable's value <ni podatkov> - Running... Teče ... + + + Debugger::Internal::GdbOptionsPage - - An unknown error in the Gdb process occurred. This is the default return value of error(). - Prišlo je do neznane napake v procesu GDB. To je privzeta vrnjena vrednost funkcije error(). + Gdb + GDB - - Error - Napaka + Choose Location of Startup Script File + Izberite lokacijo datoteke zagonskega skripta + + + Debugger::Internal::ModulesModel - - The upload process failed to start. Either the invoked script '%1' is missing, or you may have insufficient permissions to invoke the program. - Proces pošiljanja se ni uspel zagnati. Bodisi manjka klicani skript »%1« bodisi nimate zadosti pravic za klic programa. + yes + da - - The upload process crashed some time after starting successfully. - Proces pošiljanja se je nekaj časa po uspešnem zagonu sesul. + no + ne - - 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. - Med pisanjem v proces pošiljanja je prišlo do napake. Proces morda ne teče, ali pa je morda zaprl svoj vhodni kanal. + Module name + Ime modula - - An error occurred when attempting to read from the upload process. For example, the process may not be running. - Med branjem iz procesa pošiljanja je prišlo do napake. Proces morda ne teče. + Symbols read + Prebrani simboli - - An unknown error in the upload process occurred. This is the default return value of error(). - Prišlo je do neznane napake v procesu pošiljanja. To je privzeta vrnjena vrednost funkcije error(). + Start address + Začetni naslov - - Debugger Error - Napaka razhroščevalnika + End address + Končni naslov + + + Debugger::Internal::ModulesWindow - - Continuing after temporary stop. - Nadaljevanje po začasni ustavitvi. + Modules + Moduli - - Core file loaded. - Datoteka s posnetkom naložena. + Update Module List + Posodobi seznam modulov - - Run to Function finished. Stopped. - Zaganjanje do funkcije je zaključeno. Ustavljeno. + Show Source Files for Module "%1" + Prikaži datoteke z izvorno kodo za modul »%1« - - Program exited with exit code %1 - Program se je končal z izhodno kodo %1 - - - - Program exited after receiving signal %1 - Program se je končal po sprejemu signala %1 - - - - Program exited normally - Program se je končal normalno - - - - Starting executable failed: - - Zaganjanje izvršljive datoteke ni uspelo: - - - - - Debugger Startup Failure - Spodletel zagon razhroščevalnika - - - - Cannot set up communication with child process: %1 - Ni moč vzpostaviti komunikacije s podprocesom: %1 - - - - Starting Debugger: - Zaganjanje razhroščevalnika: - - - - Cannot start debugger: %1 - Ni moč zagnati razhroščevalnika: %1 - - - - Gdb Running... - GDB teče ... - - - - Attached to running process. Stopped. - Priklopljeno na proces, ki teče. Ustavljeno. - - - - Connecting to remote server failed: - Povezovanje z oddaljenim strežnikom ni uspelo: - - - - Debugger exited. - Razhroščevalnik se je zaprl. - - - - <could not retreive module information> - <ni bilo moč pridobiti podatkov o modulu> - - - - '%1' contains no identifier - »%1« ne vsebuje nobenega identifikatorja - - - - Cowardly refusing to evaluate expression '%1' with potential side effects - Preprečujem ovrednotenje izraza »%1« zaradi možnih stranskih učinkov - - - - <not in scope> - Variable - - <ni v dosegu> - - - - Retrieving data for watch view (%1 requests pending)... - Pridobivanje podatkov za prikaz opazovanj (%1 čakajočih zahtevkov) ... - - - - Cannot evaluate expression: %1 - Ni moč ovrednotiti izraza: %1 - - - - %1 custom dumpers found. - Najdenih %1 odlagalnikov po meri. - - - - <%1 items> - In string list - - <%1 postavk> - - - - %1 <shadowed %2> - Variable %1 <FIXME: does something - bug Andre about it> - - %1 <zakriva %2> - - - - Unknown error: - Neznana napaka: - - - - %1 is a typedef. - %1 je definicija vrste. - - - - Retrieving data for tooltip... - Pridobivanje podatkov za namig ... - - - - The dumper library '%1' does not exist. - Knjižnica odlagalnika »%1« ne obstaja. - - - - Reading - Branje - - - - Temporarily stopped. - Začasno ustavljeno. - - - - Handling queued commands. - Obdelovanje vrste z ukazi. - - - - <unavailable> - Value for variable ----------- -Value for variable - - <ni na voljo> - - - - Debugger::Internal::GdbOptionsPage - - - Gdb - GDB - - - - Choose Gdb Location - Izberite lokacijo GDB-ja - - - - Choose Location of Startup Script File - Izberite lokacijo datoteke zagonskega skripta - - - - Debugger::Internal::ModulesModel - - - Module name - Ime modula + Load Symbols for All Modules + Naloži simbole za vse module - - Symbols read - Prebrani simboli + Load Symbols for Module + Naloži simbole za modul - - Start address - Začetni naslov + Edit File + Uredi datoteko - - End address - Končni naslov + Show Symbols + Prikaži simbole - - End addAress - Končni naslov + Load Symbols for Module "%1" + Naloži simbole za modul »%1« - - - Debugger::Internal::ModulesWindow - - Modules - Moduli + Edit File "%1" + Uredi datoteko »%1« - - Update module list - Posodobi seznam modulov + Show Symbols in File "%1" + Prikaži simbole v datoteki »%1« - - Adjust column widths to contents + Adjust Column Widths to Contents Širine stolpcev prilagodi vsebinam - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Širine stolpcev vedno prilagodi vsebinam - - Show source files for module "%1" - Prikaži datoteke z izvorno kodo za modul »%1« - - - - Load symbols for all modules - Naloži simbole za vse module - - - - Load symbols for module - Naloži simbole za modul - - - - Edit file - Urejanje datoteke - - - - Show symbols - Prikaži simbole - - - - Load symbols for module "%1" - Naloži simbole za modul »%1« - - - - Edit file "%1" - Urejanje datoteke »%1« - - - - Show symbols in file "%1" - Prikaži simbole v datoteki »%1« - - - Address Naslov - Code Koda - Symbol Simbol - Symbols in "%1" Simboli v »%1« @@ -4123,287 +3144,204 @@ Value for variable Debugger::Internal::OutputCollector - Cannot create temporary file: %1 Ni moč ustvariti začasne datoteke: %1 - Cannot create FiFo %1: %2 Ni moč ustvariti FIFO %1: %2 - Cannot open FiFo %1: %2 Ni moč odpreti FIFO %1: %2 - - - Cannot create temporary file: %2 - Ni moč ustvariti začasne datoteke: %2 - Debugger::Internal::RegisterHandler - Name Ime - Value (base %1) Vrednost (osnova %1) - - - Value - Vrednost - Debugger::Internal::RegisterWindow - Registers Registri - - Open memory editor + Reload Register Listing + Znova naloži seznam registrov + + + Open Memory Editor Odpri urejevalnik pomnilnika - - Open memory editor at %1 + Open Memory Editor at %1 Odpri urejevalnik pomnilnika na %1 - Hexadecimal Šestnajstiško - Decimal Desetiško - Octal Osmiško - Binary Dvojiško - - Adjust column widths to contents + Adjust Column Widths to Contents Širine stolpcev prilagodi vsebinam - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Širine stolpcev vedno prilagodi vsebinam - - - Reload register listing - Znova naloži seznam registrov - - - - Always reload register listing - Vedno znova naloži seznam registrov - Debugger::Internal::ScriptEngine - Running requested... Zahtevanje zagona ... - '%1' contains no identifier »%1« ne vsebuje nobenega identifikatorja - String literal %1 - + - Cowardly refusing to evaluate expression '%1' with potential side effects Preprečujem ovrednotenje izraza »%1« zaradi možnih stranskih učinkov - - - Stopped. - Ustavljeno. - - - - SourceFilesModel - - - Internal name - Notranje ime + Stopped at %1:%2. + Ustavljeno pri %1:%2. - - Full name - Polno ime + Stopped. + Ustavljeno. Debugger::Internal::SourceFilesWindow - Source Files Datoteke z izvorno kodo - - Reload data + Reload Data Znova naloži podatke - - Open file + Open File Odpri datoteko - - Open file "%1"' + Open File "%1"' Odpri datoteko »%1« Debugger::Internal::StackHandler - ... ... - <More> <več> - - Address: Naslov: - - Function: Funkcija: - - File: Datoteka: - - Line: Vrstica: - - From: Od: - - To: Do: - Level Stopnja - Function Funkcija - File Datoteka - Line Vrstica - Address Naslov - - - <table><tr><td>Address:</td><td>%1</td></tr><tr><td>Function: </td><td>%2</td></tr><tr><td>File: </td><td>%3</td></tr><tr><td>Line: </td><td>%4</td></tr><tr><td>From: </td><td>%5</td></tr></table><tr><td>To: </td><td>%6</td></tr></table> - Tooltip for variable - - <table><tr><td>Naslov:</td><td>%1</td></tr><tr><td>Funkcija: </td><td>%2</td></tr><tr><td>Datoteka: </td><td>%3</td></tr><tr><td>Vrstica: </td><td>%4</td></tr><tr><td>Od: </td><td>%5</td></tr></table><tr><td>Do: </td><td>%6</td></tr></table> - Debugger::Internal::ThreadsHandler - Function Funkcija - File Datoteka - Line Vrstica - Address Naslov - Thread: %1 Nit: %1 - Thread: %1 at %2 (0x%3) Nit: %1 pri %2 (0x%3) - Thread: %1 at %2, %3:%4 (0x%5) Nit: %1 pri %2, %3:%4 (0x%5) - Thread ID ID niti @@ -4411,60 +3349,49 @@ Value for variable Debugger::Internal::StackWindow - Stack Sklad - - Copy contents to clipboard + Copy Contents to Clipboard Skopiraj vsebino na odložišče - - Open memory editor + Open Memory Editor Odpri urejevalnik pomnilnika - - Open memory editor at %1 + Open Memory Editor at %1 Odpri urejevalnik pomnilnika na %1 - - Open disassembler - + Open Disassembler + Odpri razstavljalnik - - Open disassembler at %1 - + Open Disassembler at %1 + Odpri razstavljalnik na %1 - - Adjust column widths to contents + Adjust Column Widths to Contents Širine stolpcev prilagodi vsebinam - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Širine stolpcev vedno prilagodi vsebinam Debugger::Internal::StartExternalDialog - Select Executable Izberite izvršljivo datoteko - Executable: Izvršljiva datoteka: - Arguments: Argumenti: @@ -4472,39 +3399,44 @@ Value for variable Debugger::Internal::StartRemoteDialog - + Select Debugger + Izberite razhroščevalnik + + Select Executable Izberite izvršljivo datoteko - - + + Select Sysroot + Izberite vrhnjo mapo sistema + + + Select Start Script + Izberite zagonski skript + + + Debugger::Internal::ThreadsWindow - Thread Nit - - Adjust column widths to contents + Adjust Column Widths to Contents Širine stolpcev prilagodi vsebinam - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Širine stolpcev vedno prilagodi vsebinam Debugger::Internal::WatchData - - <not in scope> <ni v dosegu> - %1 <shadowed %2> %1 <zakriva %2> @@ -4512,125 +3444,113 @@ Value for variable Debugger::Internal::WatchHandler - Expression Izraz - ... <cut off> ... <odrezano> - Object Address Naslov objekta - - Stored Address - Shranjen naslov - - - Internal ID Notranji ID - Generation - + Ustvarjanje - <Edit> <urejanje> - Root Vrh - Locals Krajevno - Tooltip Namig - + unknown address + neznan naslov + + + %1 object at %2 + Objekt %1 na %2 + + Watchers Opazovalci - Value Vrednost - Type Vrsta - Name - Ime - - - - <No Locals> - <ni krajevnih> - - - - <No Tooltip> - <ni namigov> - - - - <No Watchers> - <ni opazovalcev> + Ime Debugger::Internal::WatchModel - decimal desetiško - hexadecimal šestnajstiško - binary dvojiško - octal osmiško - + Bald pointer + Surov kazalec + + + Latin1 string + Niz Latin1 + + + UTF8 string + Niz UTF8 + + + UTF16 string + Niz UTF16 + + + UCS4 string + Niz UCS4 + + Name Ime - Value Vrednost - Type Vrsta @@ -4638,511 +3558,323 @@ Value for variable Debugger::Internal::WatchWindow - Locals and Watchers - Krajevni in opazovalci + Krajevno in opazovalci - - Change format for type '%1' + Change Format for Type "%1" Spremeni obliko za vrsto »%1« - - Change format for expression '%1' - Spremeni obliko za izraz »%1« + Change Format for Type + Spremeni obliko za vrsto - - Change format for type - Spremeni obliko za vrsto + Change Format for Object at %1 + Spremeni obliko za objekt na %1 - - Change format for expression - Spremeni obliko za izraz + Clear + Počisti - - Select widget to watch + Change Format for Object + Spremeni obliko za objekt + + + Insert New Watch Item + Vstavi novo postavko opazovalca + + + Select Widget to Watch Izberite gradnik za opazovanje - - Open memory editor... + Open Memory Editor... Odpri urejevalnik pomnilnika ... - - Open memory editor at %1 + Open Memory Editor at %1 Odpri urejevalnik pomnilnika na %1 - - Refresh code model snapshot - Osveži posnetek modela kode + Refresh Code Model Snapshot + Osveži posnetek modela izvorne kode - - Adjust column widths to contents + Adjust Column Widths to Contents Širine stolpcev prilagodi vsebinam - - Always adjust column widths to contents + Always Adjust Column Widths to Contents Širine stolpcev vedno prilagodi vsebinam - - - Insert new watch item - Vstavi novo postavko opazovalca - - - - <Edit> - <urejanje> - DebuggerPane - - Clear contents + Clear Contents Počisti vsebino - - Save contents + Save Contents Shrani vsebino DebuggingHelperOptionPage - - This will enable nice display of Qt and Standard Library objects in the Locals&Watchers view - To omogoči lep prikaz objektov iz Qt in Standard Library v prikazu Krajevni in opazovalci - - - - Use debugging helper - Uporabi razhroščevalnega pomočnika - - - - This will load a dumper library - To naloži knjižnico odlagalnika - - - Use debugging helper from custom location Uporabi razhroščevalnega pomočnika z lokacije po meri - Location: Lokacija: - Debug debugging helper Razhroščuj razhroščevalnega pomočnika - - Debugging helper - Razhroščevalni pomočnik - - - 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. Uporabi Qt Creatorjev model kode, da ugotovi, ali je ob prekinitvi razhroščevalnika spremenljivki že bila prirejena vrednost. - Use code model Uporabi model kode - - Form - Obrazec + <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>Razhroščevalni pomočnik se uporablja le za lepo oblikovan prikaz objektov določenih vrst, na primer QString in std::map, v prikazu »Krajevno in opazovalci«.</p><p>Ni obvezen za razhroščevanje s Qt Creatorjem.</p></body></html> + + + Use Debugging Helper + Uporabi razhroščevalnega pomočnika DependenciesModel - Unable to add dependency Ni moč dodati odvisnosti - This would create a circular dependency. To bi ustvarilo krožno odvisnost. - - ProjectExplorer::Internal::DependenciesWidget - - - %1 has no dependencies. - %1 nima odvisnosti. - - - - %1 depends on %2. - %1 je odvisen od %2. - - - - %1 depends on: %2. - %1 je odvisen od: %2. - - - - Project Dependencies - Odvisnosti projekta - - - - Project Dependencies: - Odvisnosti projekta: - - Designer - The file name is empty. Ime datoteke je prazno. - XML error on line %1, col %2: %3 Napaka XML v vrstici %1 in stolpcu %2: %3 - The <RCC> root element is missing. Manjka vrhnji element <RCC>. - + Xml Editor + Urejevalnik XML + + Designer Designer - Class Generation Ustvarjanje razreda - - file name is empty - Ime datoteke je prazno + Form Editor + Urejevalnik obrazcev - - no <RCC> root element - Ni vrhnjega elementa <RCC> + The generated header of the form '%1' could be found. +Rebuilding the project might help. + Ni bilo moč najti samodejno ustvarjene glave za obrazec »%1«. +Morda lahko pomaga ponovna gradnja projekta. + + + The generated header '%1' could not be found in the code model. +Rebuilding the project might help. + V modelu izvorne kode ni bilo moč najti samodejno ustvarjene glave »%1« +Morda lahko pomaga ponovna gradnja projekta. Designer::Internal::FormClassWizardDialog - Qt Designer Form Class Razred obrazca Qt Designer + + Form Template + Predloga obrazca + + + Class Details + Podrobnosti razreda + Designer::Internal::FormClassWizardPage - %1 - Error %1 - Napaka - - Choose a class name - Izberite ime razreda - - - Class Razred - Configure... Nastavitve ... - - More - Več - - - - Embedding of the UI class - Vgrajevanje razreda uporabniškega vmesnika - - - - Aggregation as a pointer member - Združevanje s kazalcem kot članom - - - - Aggregation - Združevanje - - - - Multiple Inheritance - Dedovanje od večih - - - - Support for changing languages at runtime - Podpora za preklapljanje jezikov med tekom - - - - buttonGroup - skupinaGumbov + Choose a Class Name + Izberite ime razreda Designer::Internal::FormEditorPlugin - - Qt - Qt - - - Qt Designer Form Obrazec Qt Designer - - Creates a Qt Designer form file (.ui). - Ustvari datoteko z obrazcem Qt Designer (*.ui) + Creates a Qt Designer form that you can add to a Qt C++ project. This is useful if you already have an existing class for the UI business logic. + Ustvari obrazec Qt Designerja, ki ga lahko dodate v projekt C++. To je uporabno, če že imate obstoječ razred, ki vsebuje logiko za uporabniški vmesnik. - - Creates a Qt Designer form file (.ui) with a matching class. - Ustvari datoteko z obrazcem Qt Designer (*.ui) in ustrezen razred. + Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt C++ Project. + Ustvari obrazec Qt Designerja, skupaj z ustreznim razredom (glavo in izvorno kodo C++) za implementacijo. Obrazec in razred lahko dodate v obstoječ projekt Qt/C++. - Qt Designer Form Class Razred obrazca Qt Designer - - - This creates a new Qt Designer form file. - To ustvari novo datoteko obrazca Qt Designer. - - - - This creates a new Qt Designer form class. - To ustvari nov razred obrazca Qt Designer. - Designer::Internal::FormEditorW - - Widget Box Podokno z gradniki - - Object Inspector Preiskovalnik objektov - - - Property Editor - Urejevalnik lastnosti + Widget box + Podokno z gradniki - - Signals & Slots Editor - Urejevalnik signalov in rež + Property Editor + Urejevalnik lastnosti - - Action Editor Urejevalnik dejanj - - For&m editor - Urejevalnik &obrazcev + F3 + F3 - - Edit widgets - Urejanje gradnikov + F4 + F4 - - F3 - + For&m Editor + Urejevalnik &obrazcev - - Edit signals/slots - Urejanje signalov in rež + Edit Widgets + Urejanje gradnikov - - F4 - + Edit Signals/Slots + Urejanje signalov/rež - - Edit buddies - Urejanje povezav + Edit Buddies + Urejanje kolegov - - Edit tab order - Urejanje vrstnega reda tabulatorja + Edit Tab Order + Urejanja vrstnega reda tabulatorke - Meta+H - + Meta+H - Ctrl+H - + Ctrl+H - Meta+L - + Meta+L - Ctrl+L - + Ctrl+L - Meta+G - + Meta+G - Ctrl+G - + Ctrl+G - Meta+J - + Meta+J - Ctrl+J - - - - - Views - Prikazi + Ctrl+J - Signals && Slots Editor Urejevalnik signalov in rež - - Locked - Zaklenjeno - - - - Reset to Default Layout - Ponastavi na privzet razpored - - - Ctrl+Alt+R - + Ctrl+Alt+R - About Qt Designer plugins.... O vstavkih za Qt Designer ... - Preview in Prikaži ogled v - Designer - Snovalnik + Oblikovalnik - The image could not be created: %1 Slike ni bilo moč ustvariti: %1 - - - Designer widgetbox - Okvir z gradniki - - - - Object inspector - Preiskovalnik objektov - - - - Property editor - Urejevalnik lastnosti - - - - Signals and slots editor - Urejevalnik signalov in rež - - - - Action editor - Urejevalnik dejanj - - - - The image could not be create: %1 - Slike ni bilo moč ustvariti: %1 - Designer::Internal::FormTemplateWizardPage - - Choose a form template + Choose a Form Template Izberite predlogo za obrazec - %1 - Error %1 - Napaka @@ -5150,17 +3882,14 @@ Value for variable Designer::Internal::FormWindowFile - Error saving %1 Napaka shranjevanja %1 - Unable to open %1: %2 Ni moč odpreti %1: %2 - Unable to write to %1: %2 Ni moč pisati v %1: %2 @@ -5168,32 +3897,35 @@ Value for variable Designer::Internal::FormWizardDialog - Qt Designer Form Obrazec Qt Designer + + Form Template + Predloga obrazca + Designer::Internal::QtCreatorIntegration - The class definition of '%1' could not be found in %2. Definicije razreda »%1« ni bilo moč najti v %2. - Error finding/adding a slot. Napaka iskanja ali dodajanja reže. - + Internal error: No project could be found for %1. + Notranja napaka: Za %1 ni bilo moč najti nobenega projekta. + + No documents matching '%1' could be found. Rebuilding the project might help. Ni bilo moč najti nobenega dokumenta, ki se ujema z »%1«. Morda lahko pomaga ponovna gradnja projekta. - Unable to add the method definition. Ni moč dodati definicije metode. @@ -5201,162 +3933,91 @@ Morda lahko pomaga ponovna gradnja projekta. DocSettingsPage - Add... Dodaj ... - Remove Odstrani - Registered Documentation Registrirana dokumentacija - - Registered Documentation: - Registrirana dokumentacija: - - - - Form - Obrazec - - - - EmbeddedPropertiesPage - - - Skin: - Tema: - - - - 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. - Uporabi Virtual Box -Pomnite: To doda verigo orodij v okolje za gradnjo in program zažene v navideznem računalniku. -Prav tako samodejno nastavi pravo različico Qt. - - - - Form - Obrazec - - - - 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. - Uporabi Virtual Box -Pomnite: To doda verigo orodij v okolje za gradnjo in program zažene v navideznem računalniku. -Prav tako samodejno nastavi pravo različico Qt. + Add and remove compressed help files, .qch. + Dodajanje in odstranjevanje stisnjenih datotek s pomočjo, *.qch. ExtensionSystem::Internal::PluginDetailsView - Name: Ime: - Version: Različica: - Compatibility Version: Združljiva različica: - Vendor: Proizvajalec: - Url: URL: - Location: Lokacija: - Description: Opis: - Copyright: Avtorske pravice: - License: Licenca: - Dependencies: Odvisnosti: - - Form - Obrazec - - - - TextLabel - BesedilaOznaka + Group: + Skupina: ExtensionSystem::Internal::PluginErrorView - State: Stanje: - Error Message: Sporočilo napake: - - - Form - Obrazec - - - - TextLabel - BesedilaOznaka - ExtensionSystem::Internal::PluginSpecPrivate - File does not exist: %1 Datoteka ne obstaja: %1 - Could not open file for read: %1 Ni moč odpreti datoteke za branje: %1 - Error parsing file %1: %2, at line %3, column %4 Napaka razčlenjevanja datoteke %1: %2, v vrstici %3 in stolpcu %4 @@ -5364,153 +4025,108 @@ Prav tako samodejno nastavi pravo različico Qt. ExtensionSystem::Internal::PluginView - - State - Stanje - - - Name Ime - Version Različica - Vendor Proizvajalec - - Location - Lokacija - - - - Form - Obrazec + Load + Naloži ExtensionSystem::PluginErrorView - Invalid Neveljavno - Description file found, but error on read Datoteka z opisom je bila najdena, a je prišlo do napake pri branju - Read Prebrano - Description successfully read Opis je bil uspešno prebran - Resolved Razrešeno - Dependencies are successfully resolved Odvisnosti so bile uspešno razrešene - Loaded Naloženo - Library is loaded Knjižnica je bila naložena - Initialized Inicializirano - Plugin's initialization method succeeded Inicializacijska metoda vstavka je bila uspešna - Running Teče - Plugin successfully loaded and running Vstavek je bil uspešno naložen in teče - Stopped Ustavljeno - Plugin was shut down Vstavek je bil ustavljen - Deleted Zbrisano - Plugin ended its life cycle and was deleted Vstavek je končal svoj življenjski cikel in je bil izbrisan - - - Plugin ended it's life cycle and was deleted - Vstavek je prenehal obstajati in je bil zbrisan - ExtensionSystem::PluginManager - Circular dependency detected: Zaznana je bila krožna odvisnost: - %1(%2) depends on %1 (%2) je odvisen od - %1(%2) %1 (%2) - - Cannot load plugin because dependencies are not resolved - Ni moč naložiti vstavka, ker odvisnosti niso bile razrešene - - - - Cannot load plugin because dependency failed to load: %1(%2) Reason: %3 Ni moč naložiti vstavka, ker odvisnosti ni bilo moč naložiti: %1 (%2) @@ -5520,65 +4136,37 @@ Razlog: %3 FakeVim::Internal - - Toggle vim-style editing - Preklopi urejanje v slogu Vim + Use Vim-style Editing + Uporabi urejanje v slogu Vim-a - - FakeVim properties... - Lastnosti FakeVim ... + Read .vimrc + Preberi .vimrc FakeVim::Internal::FakeVimHandler - Not implemented in FakeVim Ni implementirano v FakeVim - - E20: Mark '%1' not set - E20: oznaka »%1« ni nastavljena - - - %1%2% %1%2% - %1All %1Vse - - File '%1' exists (add ! to override) - Datoteka »%1« že obstaja (da vsilite, dodajte !) - - - - Cannot open file '%1' for writing - Datoteke »%1« ni moč odpreti za pisanje - - - "%1" %2 %3L, %4C written zapisana »%1« %2 %3 V, %4 Z - - Cannot open file '%1' for reading - Ni moč odpreti datoteke »%1« za branje - - - "%1" %2L, %3C »%1« %2 V, %3 Z - %n lines filtered %n filtrirana vrstica @@ -5587,9 +4175,32 @@ Razlog: %3 %n filtriranih vrstic + + Pattern not found: + Vzorec ni bil najden: + + + Mark '%1' not set + Oznaka »%1« ni postavljena + + + Unknown option: + Neznana možnost: + + + File "%1" exists (add ! to override) + Datoteka »%1« že obstaja (da vsilite, dodajte !) + + + Cannot open file "%1" for writing + Datoteke »%1« ni moč odpreti za pisanje + + + Cannot open file "%1" for reading + Datoteke »%1« ni moč odpreti za branje + - - %n lines >ed %1 time + %n lines %1ed %2 time @@ -5598,70 +4209,33 @@ Razlog: %3 - - Pattern not found: - Vzorec ni bil najden: - - - - E512: Unknown option: - E512: Neznana možnost: + Can't open file %1 + Datoteke %1 ni moč odpreti - search hit BOTTOM, continuing at TOP iskanje doseglo DNO, nadaljevanje na VRHU - search hit TOP, continuing at BOTTOM iskanje doseglo VRH, nadaljevanje na DNU - Already at oldest change Že pri najstarejši spremembi - Already at newest change Že pri najnovejši spremembi - - - %1,%2 - %1, %2 - - - - %1 - %1 - - - - %1 lines filtered - filtriranih %1 vrstic - - - - E492: Not an editor command: - E492: Ni ukaz urejevalnika: - - - - E486: Pattern not found: - E486: Vzorec ni najden: - FakeVim::Internal::FakeVimOptionPage - General Splošno - FakeVim FakeVim @@ -5669,18 +4243,26 @@ Razlog: %3 FakeVim::Internal::FakeVimPluginPrivate - - + Switch to next file + Preklopi na naslednjo datoteko + + + Switch to previous file + Preklopi na predhodno datoteko + + Quit FakeVim Končaj FakeVim - + File not saved + Datoteka ni shranjena + + Saving succeeded Shranjevanje je uspelo - %n files not saved %n datoteka ni bila shranjena @@ -5690,12 +4272,6 @@ Razlog: %3 - - Not an editor command: %1 - Ni ukaz urejevalnika: %1 - - - FakeVim Information Podatki o FakeVim @@ -5703,105 +4279,93 @@ Razlog: %3 FakeVimOptionPage - Use FakeVim Uporabi FakeVim - - Vim style settings - Nastavitve sloga Vim + Shift width: + Širina zamika: - - vim's "expandtab" option - Vimova možnost »expandtab« + vim's "tabstop" option + Vimova možnost »tabstop« - - Expand tabulators: - Razširi tabulatorje: + Tabulator size: + Velikost tabulatorja: - - Highlight search results: - Poudari rezultate iskanja: + Backspace: + Vračalka: - - Shift width: - Širina zamika: + Read .vimrc + Preberi .vimrc - - Smart tabulators: - Pametni tabulatorji: + Vim Behavior + Obnašanje Vim - - Start of line: - Začetek vrstice: + Automatic indentation + Samodejno zamikanje - - vim's "tabstop" option - Vimova možnost »tabstop« + Start of line + Začetek vrstice - - Tabulator size: - Velikost tabulatorja: + Smart indentation + Pametno zamikanje - - Backspace: - Vračalka: + Use search dialog + Uporabi pogovorno okno za iskanje - - VIM's "autoindent" option - Vimova možnost »autoindent« + Expand tabulators + Razširi tabulatorje - - Automatic indentation: - Samodejno zamikanje: + Show position of text marks + Prikaži položaje besedilnih oznak - - Copy text editor settings - Skopiraj nastavitve urejevalnika besedil + Smart tabulators + Pametni tabulatorji - - Set Qt style - Nastavi slog Qt + Highlight search results + Poudari rezultate iskanja - - Set plain style - Nastavi navaden slog + Incremental search + Postopno iskanje - - Incremental search: - Postopno iskanje: + Keyword characters: + Znaki ključnih besed: - - Form - Obrazec + Copy Text Editor Settings + Skopiraj nastavitve urejevalnika besedil + + + Set Qt Style + Nastavi slog Qt + + + Set Plain Style + Nastavi navaden slog FilterNameDialogClass - Add Filter Name Dodaj ime filtra - Filter Name: Ime filtra: @@ -5809,166 +4373,115 @@ Razlog: %3 FilterSettingsPage - 1 1 - Add Dodaj - Remove Odstrani - Filters Filtri - Attributes Lastnosti - - Filter: - Filter: - - - - Attributes: - Lastnosti: - - - - Form - Obrazec + <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>Dodajte, spreminjajte in odstranite filtre za dokumente, ki določajo nabor dokumentacije, ki je prikazana v načinu pomoči. Lastnosti so določene v dokumentih. Izberite jih, tako da bo prikazana ustrezna dokumentacija. Vedite, da so nekatere lastnosti določene v več dokumentih.</p></body></html> Find::Internal::FindDialog - Search for... Poišči ... - Sc&ope: D&oseg: - &Search &Išči - Search &for: Poi&šči: - Close Zapri - &Case sensitive O&bčutljivo na velikost črk - &Whole words only Samo &cele besede - - - Find::Internal::FindPlugin - - - &Find/Replace - &Najdi in zamenjaj - - - - Find... - Najdi ... - - - Ctrl+Shift+F - - - - - Find Dialog - Pogovorno okno iskanja + Search && Replace + Iskanje in zamenjevanje Find::Internal::FindToolBar - - Current Document - Trenutni dokument + Find/Replace + Najdi in zamenjaj - Enter Find String Vnesite iskani niz - Ctrl+E - + Ctrl+E - Find Next Najdi naslednje - Find Previous Najdi prejšnje - Replace && Find Next Zamenjaj in najdi naslednje - Ctrl+= - + Ctrl+= - Replace && Find Previous Zamenjaj in najdi prejšnje - Replace All Zamenjaj vse - Case Sensitive Občutljivo na velikost črk - Whole Words Only Samo cele besede - Use Regular Expressions Uporabi regularne izraze @@ -5976,27 +4489,22 @@ Razlog: %3 Find::Internal::FindWidget - Find Najdi - Find: Najdi: - Replace with: Zamenjaj z: - All Vse - ... ... @@ -6004,32 +4512,26 @@ Razlog: %3 Find::SearchResultWindow - Search Results Rezultati iskanja - No matches found! Ni najdenih ujemanj. - Expand All Razširi vse - Replace with: Zamenjaj z: - Replace all occurrences Zamenjaj vse pojavitve - Replace Zamenjaj @@ -6037,121 +4539,113 @@ Razlog: %3 GdbOptionsPage - - Gdb interaction - Interakcija z GDB - - - - Gdb location: - Lokacija GDB-ja: - - - Environment: Okolje: - This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. To je bodisi prazno bodisi kaže na datoteko, ki vsebuje ukaze za GDB, ki bodo izvršeni takoj po zagonu GDB-ja. - Gdb startup script: Zagonski skript za GDB: - - Behaviour of breakpoint setting in plugins - Obnašanje nastavljanja prekinitvenih točk v vstavkih - - - This is the slowest but safest option. To je najpočasnejša in najvarnejša možnost. - Try to set breakpoints in plugins always automatically. Prekinitvene točke v vstavkih vedno poskušaj nastaviti samodejno. - Try to set breakpoints in selected plugins Poskusi nastaviti prekinitvene točke v izbranih vstavkih - Matching regular expression: Ujemajoče z regularnim izrazom: - Never set breakpoints in plugins automatically Nikoli samodejno ne nastavljaj prekinitvenih točk v vstavkih - - This is either a full absolute path leading to the gdb binary you intend to use or the name of a gdb binary that will be searched in your PATH. - To je bodisi polna absolutna pot do programa GDB, ki ga želite uporabiti, bodisi ime izvršljive datoteke programa GDB, ki bo posikana v mapah določenih v spremenljivki PATH. + Gdb + GDB - - Form - Obrazec + Gdb timeout: + Razpoložljivi čas za GDB: - - 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. - To je bodisi polna absolutna pot do programa GDB, ki ga želite uporabiti, bodisi ime izvršljive datoteke programa GDB, ki bo posikana v mapah določenih v spremenljivki PATH. + 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. + Koliko sekund naj Qt Creator čaka preden konča proces GDB, ki se ne odziva. Privzeta vrednost je 20 sekund in bi morala zadostovati za večino uporab. Obstajajo pa situacije, ko na počasnejših računalnikih nalaganje velikih knjižnic ali izpisovanje izvorne kode traja precej dlje. v tem primeru zvišajte vrednost. + + + When this option is checked, the debugger plugin attempts +to extract full path information for all source files from gdb. This is a +slow process but enables setting breakpoints in files with the same file +name in different directories. + Če omogočite to možnost, bo vstavek razhroščevalnika od GDB-ja poskusil pridobiti celotno pot za vse datoteke z izvorno kodo. To je počasno, a omogoča postavljanje prekinitvenih točk v datoteke z istim imenom, ki pa se nahajajo v različnih mapah. + + + Use full path information to set breakpoints + Za nastavljanje prekinitvenih točk uporabi celotno pot + + + Enable reverse debugging + Omogoči obratno razhroščevanje + + + 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. + Če je omogočena ta možnost, ukaz »Vstopi« v določenih okoliščinah združi več korakov v enega, kar vodi do razhroščevanja z »manj dogajanja«. Tako bo npr. atomično štetje referenc preskočeno, +enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne prejemne reže. + + + Skip known frames when stepping + Med stopanjem preskoči znane okvirje + + + Show a message box when receiving a signal + Ob prejemu signala prikaži okno s sporočilom + + + Behavior of Breakpoint Setting in Plugins + Obnašanje nastavljanja prekinitvenih točk v vstavkih GenericMakeStep - Override %1: Povozi %1: - Make arguments: Argumenti za Make: - Targets: Cilji: - - - Form - Obrazec - - - - GenericProject - - - <new> - <nov> - GenericProjectManager::Internal::GenericBuildConfigurationFactory - - Create - Ustvari + Build + Zgradi - New configuration Nova nastavitev - New Configuration Name: Ime nove nastavitve: @@ -6159,197 +4653,150 @@ Razlog: %3 GenericProjectManager::Internal::GenericBuildSettingsWidget - + Configuration Name: + Ime nastavitev: + + Build directory: Mapa za gradnjo: - Tool Chain: Zaporedje orodij: - Generic Manager Splošen upravljalnik - - - Toolchain: - Zaporedje orodij: - - - - Tool chain: - Veriga orodij: - GenericProjectManager::Internal::GenericMakeStepConfigWidget - + Make + GenericMakestep display name. + Make + + Override %1: Povozi %1: - <b>Make:</b> %1 %2 - + <b>Make:</b> %1 %2 GenericProjectManager::Internal::GenericProjectWizard - - Import of Makefile-based Project - Uvoz projekta temelječega na Makefile - - - - Creates a generic project, supporting any build system. - Ustvari splošen projekt, ki podpira katerikoli sistem za gradnjo. - - - - Projects - Projekti + Import Existing Project + Uvozi obstoječ projekt - - The project %1 could not be opened. - Projekta %1 ni bilo moč odpreti. + Imports existing projects that do not use qmake or CMake. This allows you to use Qt Creator as a code editor. + Uvozi obstoječe projekte, ki ne uporabljajo qmake ali CMake. To vam omogoča, da Qt Creator uporabljate kot urejevalnik izvorne kode. GenericProjectManager::Internal::GenericProjectWizardDialog - - Import of Makefile-based Project - Uvoz projekta temelječega na Makefile + Import Existing Project + Uvozi obstoječ projekt - - Generic Project - Splošen projekt + Project Name and Location + Ime in lokacija projekta - Project name: Ime projekta: - Location: Lokacija: - - Second Page Title - Naslov druge strani + Location + Lokacija Git::Internal::BranchDialog - Checkout - + - - Delete - Zbriši + Diff + - - Unable to find the repository directory for '%1'. - Ni moč najti mape skladišča za »%1«. + Refresh + Osveži + + + Delete... + Zbriši ... - Delete Branch Zbriši vejo - Would you like to delete the branch '%1'? Ali želite zbrisati vejo »%1«? - Failed to delete branch Izbris veje ni uspel - Failed to create branch Ustvaritev veje ni uspela - Failed to stash - + - - Would you like to create a local branch '%1' tracking the remote branch '%2'? + Checkout failed + + + + Would you like to create a local branch '%1' tracking the remote branch '%2'? Ali želite ustvariti krajevno vejo »%1«, ki sledi oddaljeni veji »%2«? - Create branch Ustvari vejo - Failed to create a tracking branch Ustvaritev sledilne veje ni uspela - Branches Veje - - General information - Splošni podatki - - - - Repository: - Skladišče: - - - - Remote branches + Remote Branches Oddaljene veje - - - TextLabel - BesedilaOznaka - Git::Internal::ChangeSelectionDialog - - Select a Git commit - + Select a Git Commit + - - Select Git repository + Select Git Repository Izberite skladišče Git - Error Napaka - Selected directory is not a Git repository Izbrana mapa ni skladišče Git @@ -6357,60 +4804,68 @@ Razlog: %3 Git::Internal::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. Vedite, da trenutno Qt Creatorjev vstavek za Git še ne more interagirati s strežnikom. Zato ročna identifikacija SSH in podobno ne bo delovalo. - Unable to determine the repository for %1. Ni moč ugotoviti skladišča za %1. - Unable to parse the file output. Ni moč razčleniti izhoda. - Executing: %1 %2 Executing: <executable> <arguments> - + Izvajanje: %1 %2 + - Waiting for data... Čakanje na podatke ... - Git Diff - + - Git Diff %1 - + + + + Git Diff Branch %1 + + + + Git Log + - Git Log %1 - + + + + Cannot describe '%1'. + - Git Show %1 - + - Git Blame %1 - + + + + Unable to checkout %1 of %2: %3 + Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message + + - Unable to add %n file(s) to %1: %2 Ni moč dodati %n datoteke v %1: %2 @@ -6420,7 +4875,19 @@ Razlog: %3 - + Unable to remove %n file(s) from %1: %2 + + + + + + + + + Unable to reset %1: %2 + + + Unable to reset %n file(s) in %1: %2 Ni moč ponastaviti %n datoteke v %1: %2 @@ -6429,56 +4896,121 @@ Razlog: %3 Ni moč ponastaviti %n datotek v %1: %2 - - - Unable to checkout %n file(s) in %1: %2 - - - - - - + + Unable to checkout %1 of %2 in %3: %4 + Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message + + - - Unable stash in %1: %2 - + Unable to find parent revisions of %1 in %2: %3 + Failed to find parent revisions of a SHA1 for "annotate previous" + + + + + Invalid revision + Neveljavna revizija + + + Unable to retrieve branch of %1: %2 + + + + Unable to retrieve top revision of %1: %2 + + + + Unable to describe revision %1 in %2: %3 + + + + Stash Description + + + + Description: + Opis: + + + Unable to resolve stash message '%1' in %2 + Look-up of a stash via its descriptive message failed. + + + + + Unable to run a 'git branch' command in %1: %2 + + + + Unable to run 'git show' in %1: %2 + + + + Unable to run 'git clean' in %1: %2 + + + + There were warnings while applying %1 to %2: +%3 + + + + Unable apply patch %1 to %2: %3 + + + + Unable to restore stash %1: %2 + + + + Unable to restore stash %1 to branch %2: %3 + + + + Unable to remove stashes of %1: %2 + + + + Unable to remove stash %1 of %2: %3 + + + + Unable retrieve stash list of %1: %2 + - - Unable to run branch command: %1: %2 - + Unable to determine git version: %1 + Ni moč ugotoviti različice Git-a: %1 - - Unable to run show: %1: %2 - + Unable stash in %1: %2 + - Changes Spremembe - You have modified files. Would you like to stash your changes? - + - Unable to obtain the status: %1 Ni moč pridobiti stanja: %1 - The repository %1 is not initialized yet. Skladišče %1 še ni inicializirano. + + You did not checkout a branch. + + - Committed %n file(s). - + @@ -6486,10 +5018,9 @@ Razlog: %3 - Unable to commit %n file(s): %1 - + @@ -6497,398 +5028,355 @@ Razlog: %3 - Revert Povrni - The file has been changed. Do you want to revert it? Datoteka je bila spremenjena. Ali jo želite povrniti? - The file is not modified. Datoteka ni spremenjena. - - There are no modified files. - Ni spremenjenih datotek. + The command 'git pull --rebase' failed, aborting rebase. + - - %1 Executing: %2 %3 - - <timestamp> Executing: <executable> <arguments> - - %1 Izvajanje: %2 %3 - + Git SVN Log + + + + There are no modified files. + Ni spremenjenih datotek. Git::Internal::GitPlugin - &Git &Git - Diff Current File - + - Diff "%1" - + Diff - Alt+G,Alt+D - - - - - File Status - Stanje datoteke - - - - Status Related to "%1" - + Alt+G,Alt+D - - Alt+G,Alt+S - - - - Log File - + Dnevniška datoteka - Log of "%1" - + Dnevnik za »%1« - Alt+G,Alt+L - + Alt+G,Alt+L - Blame Odgovornost - Blame for "%1" - + Odgovornost za »%1« - Alt+G,Alt+B - + Alt+G,Alt+B - - Undo Changes - Razveljavi spremembe - - - - Undo Changes for "%1" - - - - Alt+G,Alt+U - + Alt+G,Alt+U - Stage File for Commit - + - Stage "%1" for Commit - Alt+G,Alt+A - + Alt+G,Alt+A - Unstage File from Commit - + - Unstage "%1" from Commit - Diff Current Project - - - - - Diff Project "%1" - - Project Status - Stanje projekta - - - - Status Project "%1" + Diff Project "%1" - Log Project - + - Log Project "%1" - Alt+G,Alt+K - - - - - Undo Project Changes - Razveljavi spremembe projekta + Alt+G,Alt+K - Stash - + - Saves the current state of your work. Shrani trenutno stanje vašega dela. - - Pull - Potegni + Undo Unstaged Changes + - - Stash Pop - + Undo Unstaged Changes for "%1" + - - Restores changes saved to the stash list using "Stash". - + Undo Uncommitted Changes + - - Commit... - + Undo Uncommitted Changes for "%1" + - - Alt+G,Alt+C - + Clean Project... + Počisti projekt ... - - Push - Potisni + Clean Project "%1"... + Počisti projekt »%1« ... - - Branches... - Veje ... + Diff Repository + - - List Stashes - + Repository Status + Stanje skladišča - - Show Commit... - + Log Repository + - - Commit - + Apply Patch + Uveljavi popravek - - Diff Selected Files - + Apply "%1" + Uveljavi »%1« - - &Undo - &Razveljavi + Apply Patch... + Uveljavi popravek ... - - &Redo - &Uveljavi + Undo Repository Changes + Razveljavi spremembe v skladišču - - Could not find working directory - Ni bilo moč najti delovne mape + Create Repository... + Ustvari skladišče ... - - Revert - Povrni + Clean Repository... + - - Would you like to revert all pending changes to the project? + Stash Snapshot... - - Another submit is currently being executed. + Saves the current state of your work and resets the repository. - - Cannot create temporary file: %1 - Ni moč ustvariti začasne datoteke: %1 + Pull + Potegni - - Closing git editor - Zapiranje urejevalnika Git + Stash Pop + - - Do you want to commit the change? - + Restores changes saved to the stash list using "Stash". + - - The commit message check failed. Do you want to commit the change? - + Commit... + Uveljavi - - Revert... - Povrni ... + Alt+G,Alt+C + - - File - Datoteka + Push + Potisni - - Status Related to %1 - Stanje preusmerjeno v %1 + Branches... + Veje ... - - Log of %1 - Dnevnik za %1 + Stashes... + - - Blame for %1 - Odgovornost za %1 + Would you like to revert all pending changes to the repository +%1? + - - Undo Changes for %1 - Razveljavi spremembe za %1 + Unable to retrieve file list + - - Revert %1... - Povrni %1 ... + Repository clean + - - Status Project - Stanje projekta + The repository is clean. + - - Status Project %1 - Stanje projekta %1 + Patches (*.patch *.diff) + - - - Git::Internal::GitSettings - - The binary '%1' could not be located in the path '%2' - Izvršljive datoteke »%1« na poti »%2« ni bilo moč najti + Choose patch + - - - Git::Internal::GitSubmitEditor - - Git Commit - + Patch %1 successfully applied to %2 + - + + Show Commit... + + + + Subversion + Subversion + + + Log + Dnevnik + + + Fetch + Pri&dobi + + + Commit + Uveljavi + + + Diff Selected Files + + + + &Undo + &Razveljavi + + + &Redo + &Uveljavi + + + Revert + Povrni + + + Another submit is currently being executed. + + + + Cannot create temporary file: %1 + Ni moč ustvariti začasne datoteke: %1 + + + Closing git editor + Zapiranje urejevalnika Git + + + Do you want to commit the change? + + + + The commit message check failed. Do you want to commit the change? + + + + + Git::Internal::GitSettings + + The binary '%1' could not be located in the path '%2' + Izvršljive datoteke »%1« na poti »%2« ni bilo moč najti + + + + Git::Internal::GitSubmitEditor + + Git Commit + + + Git::Internal::GitSubmitPanel - General Information Splošni podatki - Repository: Skladišče: - repository skladišče - Branch: Veja: - branch veja - Commit Information - + - Author: Avtor: - Email: E-pošta: @@ -6896,12 +5384,10 @@ Razlog: %3 Git::Internal::LocalBranchModel - <New branch> <nova veja> - Type to create a new branch Vtipkajte, da ustvarite novo vejo @@ -6909,75 +5395,77 @@ Razlog: %3 Git::Internal::SettingsPage - Git Git - Git Settings Nastavitve Git - - Environment variables - Okoljske spremenljivke - - - PATH: PATH: - - From system - Od sistema - - - <b>Note:</b> <b>Opomba:</b> - Git needs to find Perl in the environment as well. Git mora v okolju najti tudi Perl. - Log commit display count: - + - Note that huge amount of commits might take some time. - + - - Timeout (seconds): - Časa na voljo (sekund): + Omit date from annotation output + - - Prompt to submit + Environment Variables + Okoljske spremenljivke + + + From System + Od sistema + + + Miscellaneous + Razno + + + Timeout: + Zakasnitev: + + + s + s + + + Prompt on submit - - Omit date from annotation output + Ignore whitespace changes in annotation - - Form - Obrazec + Use "patience diff" algorithm + + + + Pull with rebase + GitCommand - '%1' failed (exit code %2). @@ -6986,7 +5474,6 @@ Razlog: %3 - '%1' completed (exit code %2). @@ -6998,32 +5485,26 @@ Razlog: %3 HelloWorld::Internal::HelloWorldPlugin - Say "&Hello World!" Reci »&Pozdravljen, Svet!« - &Hello World &Pozdravljen, Svet - Hello world! Pozdravljen, Svet! - Hello World PushButton! Gumb Pozdravljen, Svet! - Hello World! Pozdravljen, Svet! - Hello World! Beautiful day today, isn't it? Pozdravljen, Svet! Danes je lep dan, kajne? @@ -7031,12 +5512,10 @@ Razlog: %3 HelloWorld::Internal::HelloWorldWindow - Focus me to activate my context! Fokusirajte me, da aktivirate moj kontekst! - Hello, world! Pozdravljen, Svet! @@ -7044,94 +5523,35 @@ Razlog: %3 Help::Internal::CentralWidget - - Add new page - Dodaj novo stran - - - Print Document Natisni dokument - - - - unknown - neznano - - - - Add New Page - Dodaj novo stran - - - - Close This Page - Zapri to stran - - - - Close Other Pages - Zapri druge strani - - - - Add Bookmark for this Page... - Dodaj zaznamek za to stran ... - Help::Internal::DocSettingsPage - - Documentation Dokumentacija - - Help - Pomoč - - - - Add Documentation Dodaj dokumentacijo - Qt Help Files (*.qch) Datoteke s pomočjo za Qt (*.qch) - - - The file %1 is not a valid Qt Help file! - Datoteka %1 ni veljavna datoteka s pomočjo za Qt. - - - - Cannot unregister documentation file %1! - Ni moč odregistrirati datoteke z dokumentacijo %1. - Help::Internal::FilterSettingsPage - Filters Filtri - - - Help - Pomoč - Help::Internal::HelpIndexFilter - Help index Seznam pomoči @@ -7139,7 +5559,6 @@ Razlog: %3 Help::Internal::HelpMode - Help Pomoč @@ -7147,221 +5566,194 @@ Razlog: %3 Help::Internal::HelpPlugin - - Contents Vsebina - - Index Kazalo - - Search Iskanje - Bookmarks Zaznamki - Home Domov - Previous Page Predhodna stran - Next Page Naslednja stran - Increase Font Size Povečaj velikost pisave - Ctrl++ - + Ctrl - Decrease Font Size Zmanjšaj velikost pisave - Ctrl+- - + Ctrl - Reset Font Size Ponastavi velikost pisave - Ctrl+0 + Ctrl + + + Alt+Tab + + + + Alt+Shift+Tab + + + + Ctrl+Tab + + + + Ctrl+Shift+Tab + + + + Activate Bookmarks in Help mode + + + + Open Pages + + + + Activate Open Pages in Help mode + + + + Go to Help Mode - Previous Predhodna - + Close current Page + + + Next Naslednja - Add Bookmark Dodaj zaznamek - Context Help Kontekstna pomoč - Activate Index in Help mode V načinu Pomoč aktiviraj Kazalo - Activate Contents in Help mode V načinu Pomoč aktiviraj Vsebino - Activate Search in Help mode V načinu Pomoč aktiviraj Iskanje - - - Unfiltered Nefiltrirano - <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> <html><head><title>Ni dokumentacije</title></head><body><br/><center><b>%1</b><br/>Na voljo ni nobene dokumentacije.</center></body></html> - Filtered by: Filtrirano z: - - - <html><head><title>No Documentation</title></head><body><br/><br/><center>No documentation available.</center></body></html> - <html><head><title>Ni dokumentacije</title></head><body><br/><br/><center>Na voljo ni nobene dokumentacije.</center></body></html> - Help::Internal::SearchWidget - - &Copy - S&kopiraj - - - - Copy &Link Location - Skopiraj &povezavo do lokacije - - - - Open Link in New Tab - Odpri povezavo v novem zavihku + Indexing + Indeksiranje - - Select All - Izberi vse + Indexing Documentation... + - Open Link - Odpri povezavo - - - - HelpViewer - - - Open Link in New Tab - Odpri povezavo v novem zavihku + Odpri povezavo - - <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> - <title>Napaka 404</title><div align="center"><br><br><h1>Strani ni bilo moč najti</h1><br><h3>»%1«</h3></div> + Open Link as New Page + - - Help - Pomoč + Copy Link + Skopiraj povezavo - - Unable to launch external application. - - Ni moč zagnati zunanjega programa. - + Copy + Kopiraj - - OK - V redu + Reload + Znova naloži + + + HelpViewer - - Copy &Link Location - Skopiraj &povezavo do lokacije + <title>about:blank</title> + about:blank - - Open Link in New Tab Ctrl+LMB - Odpri povezavo v novem zavihku Ctrl+LGM + <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> + <title>Napaka 404</title><div align="center"><br><br><h1>Strani ni bilo moč najti</h1><br><h3>»%1«</h3></div> IndexWindow - &Look for: &Išči: - Open Link Odpri povezavo - - Open Link in New Tab - Odpri povezavo v novem zavihku + Open Link as New Page + InputPane - Type Ctrl-<Return> to execute a line. Da izvršite vrstico, vtipkajte Ctrl+Vnašalka @@ -7369,12 +5761,10 @@ Razlog: %3 Locator - Filters Filtri - Locator Lokator @@ -7382,166 +5772,159 @@ Razlog: %3 MainWindow - - Ctrl+Q - + Bauhaus + MainWindowClass + - - - File - Datoteka + &File + &Datoteka - - Open file - Odpri datoteko + &New... + &Novo ... - - Ctrl+O - + Ctrl+N + - - Quit - Končaj + &Open... + &Odpri ... - - Run to main() - Zaženi do main() + Recent Files + Nedavne datoteke - - Ctrl+F5 - + &Save + &Shrani - - F5 - + Ctrl+S + Ctrl+S - - Shift+F5 - + Save &As... + Shrani &kot ... - - F6 - + &Preview + O&gled - - F7 - + Ctrl+R + CTRL+R - - Shift+F6 - + &Preview with Debug + - - Shift+F9 - + Ctrl+D + - - Shift+F7 - + &Quit + Konča&j - - Shift+F8 - + Ctrl+Q + Ctrl+Q - - F8 - + &Edit + &Urejanje - - ALT+D,ALT+W - + Ctrl+Z + - - Files - Datoteke + Ctrl+Y + - - Debug - Razhroščevanje + Ctrl+Shift+Z + - - Not a runnable project - Ni zaženljiv projekt + &Copy + S&kopiraj - - The current startup project can not be run. - Trenutnega začetnega projekta ni moč zagnati. + &Cut + Izreži - - Open File - Odpri datoteko + &Paste + Pri&lepi - - Cannot find special data dumpers - Ni moč najti odlagalnikov posebnih podatkov + &Delete + &Zbriši - - 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. - Razhroščevan program ne vsebuje podatkov, ki so potrebni za lep prikaz podatkovnih vrst Qt. - -Prepričajte se, da je v datoteki *.pro nekaj podobnega - -SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp + Del + Del - - Open Executable File - Odpri izvršljivo datoteko + Backspace + Vračalka - - - MakeStep - - Override %1: - Povozi %1: + &View + &Videz - - Make arguments: - Argumenti za Make: + &Help + &Pomoč - - Form - Obrazec + &About... + &O + + + Properties + Lastnosti + + + Could not open file <%1> + Ni moč odpreti datoteke %1 + + + Qml Errors: + + + + +%1 %2:%3 - %4 + S + + + +%1:%2 - %3 + S + + + Ctrl+O + Ctrl+O + + + + MakeStep + + Override %1: + Povozi %1: + + + Make arguments: + Argumenti za Make: MyMain - - - N/A Ni na voljo @@ -7549,30 +5932,17 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp NickNameDialog - Nick Names Druga imena - - - Filter: - Filter: - - - - Clear - Počisti - OpenWithDialog - Open File With... Odpri datoteko v ... - Open file extension with: Odpri končnico datoteke v: @@ -7580,12 +5950,10 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Perforce::Internal::ChangeNumberDialog - Change Number Številka spremebe - Change Number: Številka spremembe: @@ -7593,22 +5961,18 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Perforce::Internal::PendingChangesDialog - P4 Pending Changes Čakajoče spremebe P4 - Submit - + Pošlji - Cancel Prekliči - Change %1: %2 Sprememba %1: %2 @@ -7616,410 +5980,346 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Perforce::Internal::PerforcePlugin - &Perforce &Perforce - Edit Urejanje - Edit "%1" - + &Urejanje - Alt+P,Alt+E - + - Edit File Urejanje datoteke - Add Dodaj - Add "%1" - + Dodaj - Alt+P,Alt+A - + - Add File Dodaj datoteko - - Delete - Izbriši - - - - Delete "%1" - - - - Delete File Izbriši datoteko - Revert Povrni - Revert "%1" - + Povrni - Alt+P,Alt+R - + - Revert File Povrni datoteko - - Diff Current File - + - Diff "%1" - + Diff - Diff Current Project/Session - + - Diff Project "%1" - Alt+P,Alt+D - + - Diff Opened Files - + - Opened Odprta - Alt+P,Alt+O - + - Submit Project - + - Alt+P,Alt+S - + - Pending Changes... Čakajoče spremembe ... - - Update Current Project/Session - - - - Update Project "%1" - + Posodobi projekt - Describe... Opis ... - - Annotate Current File - + - Annotate "%1" - + Dodaj opombo - Annotate... - + Dodaj opombo - - Filelog Current File - + - Filelog "%1" - Alt+P,Alt+F - + - Filelog... - + - Update All - + &Posodobi vse - Submit - + Pošlji - Diff Selected Files - + - &Undo &Razveljavi - &Redo &Uveljavi - p4 revert - + - The file has been changed. Do you want to revert it? Datoteka je bila spremenjena. Ali jo želite povrniti? - Executing: %1 - + %1 Izvajanje: %2 %3 + - Another submit is currently executed. - + - Cannot create temporary file. Ni moč ustvariti začasne datoteke. - Project has no files Projekt nima nobene datoteke - p4 annotate - + - p4 annotate %1 - + - p4 filelog - + - p4 filelog %1 - + - The process terminated with exit code %1. Proces se je končal z izhodno kodo %1. - The process terminated abnormally. Proces se ni končal normalno. - - Could not start perforce '%1'. Please check your settings in the preferences. - Ni bilo moč zagnati perforce »%1«. Preverite nastavitve. + Delete... + &Zbriši - - Perforce did not respond within timeout limit (%1 ms). - Perforce se v za to namenjenem času (%1 ms) ni odzval. + Delete "%1"... + &Zbriši - - p4 diff %1 - + Log Project + - - p4 describe %1 - + Log Project "%1" + - - Closing p4 Editor - Zapiranje urejevalnika p4 + Submit Project "%1" + - - Do you want to submit this change list? - + Update Current Project + - - The commit message check failed. Do you want to submit this change list - + Revert Unchanged + - - Cannot open temporary file. + Revert Unchanged Files of Project "%1" - - - Cannot execute p4 submit. - + Revert Project + - - p4 submit failed (exit code %1). + Revert Project "%1" - - Pending change - Čakajoča sprememba + Repository Log + - - Could not submit the change, because your workspace was out of date. Created a pending submit instead. - + Do you want to revert all changes to the project "%1"? + + + + Could not start perforce '%1'. Please check your settings in the preferences. + Ni bilo moč zagnati perforce »%1«. Preverite nastavitve. + + + Perforce did not respond within timeout limit (%1 ms). + Perforce se v za to namenjenem času (%1 ms) ni odzval. - - Invalid configuration: %1 + Unable to write input data to process %1: %2 - - Timeout waiting for "where" (%1). - Čas za čakanje na »where« (%1) je potekel. + Perforce is not correctly configured. + - - Error running "where" on %1: The file is not mapped - Napaka poganjanja »where« na %1: datoteka ni preslikana + p4 diff %1 + - - No p4 executable specified! - Določen ni noben program p4. + p4 describe %1 + - - Edit %1 - Urejanje %1 + Closing p4 Editor + Zapiranje urejevalnika p4 - - Add %1 - Dodaj %1 + Do you want to submit this change list? + - - Delete %1 - Izbriši %1 + The commit message check failed. Do you want to submit this change list + - - Revert %1 - Povrni %1 + Cannot open temporary file. + - - %1 Executing: %2 - - %1 Izvajanje: %2 - + p4 submit failed: %1 + - - Resolve - Razreši + Error running "where" on %1: %2 + Failed to run p4 "where" to resolve a Perforce file name to a local file system name. + + + + + The file is not mapped + File is not managed by Perforce + + + + + Perforce repository: %1 + + + + Perforce: Unable to determine the repository: %1 + + + + Pending change + Čakajoča sprememba + + + Could not submit the change, because your workspace was out of date. Created a pending submit instead. + Perforce::Internal::PerforceSubmitEditor - Perforce Submit - + Perforce::Internal::PromptDialog - Perforce Prompt Poziv Perforce - OK V redu @@ -8027,70 +6327,69 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Perforce::Internal::SettingsPage - - P4 Command: - Ukaz P4: + Perforce + Perforce - - Use default P4 environment variables - Uporabi privzete okoljske spremenljivke za P4 + Test + Preizkus - - Environment variables - Okoljske spremenljivke + Configuration + Nastavitve - - P4 Client: - Odjemalec P4: + P4 command: + Ukaz P4: - - P4 User: - Uporabnik P4: + Environment Variables + Okoljske spremenljivke - - P4 Port: - Vrata P4: + P4 client: + Odjemalec P4: - - Perforce - Perforce + P4 user: + Uporabnik P4: - - Prompt to submit - + P4 port: + Vrata P4: - - Test + Miscellaneous + Razno + + + Timeout: + Zakasnitev: + + + s + s + + + Prompt on submit - - Form - Obrazec + Log count: + Perforce::Internal::SettingsPageWidget - Testing... - + Preverjanje ... - - Test succeeded. + Test succeeded (%1). - Perforce Command Ukaz Perforce @@ -8098,22 +6397,18 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp Perforce::Internal::SubmitPanel - Submit - + Pošlji - Change: Sprememba: - Client: Odjemalec: - User: Uporabnik: @@ -8121,27 +6416,22 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp PluginDialog - Details Podrobnosti - Error Details Podrobnosti napake - Installed Plugins Nameščeni vstavki - Plugin Details of %1 Podrobnosti vstavka %1 - Plugin Errors of %1 Napake vstavka %1 @@ -8149,202 +6439,175 @@ SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp PluginManager - - The plugin '%1' does not exist. Vstavek »%1« ne obstaja. - Unknown option %1 Neznana možnost %1 - The option %1 requires an argument. Možnost %1 potrebuje argument. + + Failed Plugins + + PluginSpec - '%1' misses attribute '%2' »%1« pogreša lastnost »%2« - '%1' has invalid format »%1« nima veljavne oblike - Invalid element '%1' Neveljaven element »%1« - Unexpected closing element '%1' Nepričakovan zaključni element »%1« - Unexpected token Nepričakovan žeton - Expected element '%1' as top level element Za vrhnji element je bil pričakovan »%1« - Resolving dependencies failed because state != Read Razreševanje odvisnosti ni uspelo, ker stanje ni enako Prebrano - Could not resolve dependency '%1(%2)' Ni bilo moč razrešiti odvisnosti »%1 (%2)« - Loading the library failed because state != Resolved Nalaganje knjižnice ni uspelo, ker stanje ni enako Razrešeno - Plugin is not valid (does not derive from IPlugin) Vstavek ni veljaven (ni izpeljan iz IPlugin) - Initializing the plugin failed because state != Loaded Inicializacija vstavka ni uspela, ker stanje ni enako Naložen - Internal error: have no plugin instance to initialize Notranja napaka: ni izvoda vstavka za inicializacijo - Plugin initialization failed: %1 Inicializacija vstavka ni uspela: %1 - Cannot perform extensionsInitialized because state != Initialized Ni moč izvesti extensionsInitialized, ker stanje ni enako Inicializirano - Internal error: have no plugin instance to perform extensionsInitialized Notranja napaka: ni izvoda vstavka, da bi se izvedlo extensionsInitialized - - - -Library base name: %1 - -Osnovno ime knjižnice: %1 - - - - Plugin is not valid (doesn't derive from IPlugin) - Vstavek ni veljaven (ni izpeljan iz IPlugin) - ProjectExplorer::AbstractProcessStep - - <font color="#0000ff">Starting: %1 %2</font> + Starting: "%1" %2 - <font color="#0000ff">Zaganjanje: %1 %2</font> + <font color="#0000ff">Zaganjanje: %1 %2</font> - - <font color="#0000ff">Exited with code %1.</font> - <font color="#0000ff">Končal s kodo %1.</font> + The process "%1" exited normally. + - - <font color="#ff0000"><b>Exited with code %1.</b></font> - <font color="#ff0000"><b>Končal s kodo %1.</b></font> + The process "%1" exited with code %2. + - - <font color="#ff0000">Could not start process %1 </b></font> - <font color="#ff0000">Ni moč zagnati procesa %1 </b></font> + The process "%1" crashed. + + + + Could not start process "%1" + Nis možno zagnati procesa %1. ProjectExplorer::BuildManager - - - <font color="#ff0000">Canceled build.</font> - <font color="#ff0000">Preklicana gradnja.</font> + + Finished %1 of %n build steps + + + + + + - - Build - Gradnja + Compile + Category for compiler isses listened under 'Build Issues' + - - - Finished %n of %1 build steps - - Zaključen %n od %1 korakov gradnje - Zaključena %n od %1 korakov gradnje - Zaključeni %n od %1 korakov gradnje - Zaključenih %n od %1 korakov gradnje - + + Build System + Category for build system isses listened under 'Build Issues' + Sistem za gradnjo: - - - <font color="#ff0000">Error while building project %1</font> - <font color="#ff0000">Napaka med gradnjo projekta %1</font> + Canceled build. + <font color="#ff0000">Preklicana gradnja.</font> - - - <font color="#ff0000">When executing build step '%1'</font> - <font color="#ff0000">Med izvajanjem koraka »%1«</font> + Build + Gradnja - - Error while building project %1 - Napaka med gradnjo projekta %1 + Error while building project %1 (target: %2) + - - <b>Running build steps for project %2...</b> - <b>Poganjanje korakov gradnje za projekt %2 ...</b> + When executing build step '%1' + <font color="#ff0000">Med izvajanjem koraka »%1«</font> - - Finished %1 of %2 build steps - Zaključil %1 od %2 korakov gradnje + Running build steps for project %1... + <b>Poganjanje korakov gradnje za projekt %2 ...</b> ProjectExplorer::CustomExecutableRunConfiguration - Custom Executable Izvršljiva datoteka po meri - Could not find the executable, please specify one. Ni bilo moč najti izvršljive datoteke. Določite jo. - - + Clean Environment + Čisto okolje + + + System Environment + Sistemsko okolje + + + Build Environment + Okolje za gradnjo + + Run %1 Zaženi %1 @@ -8352,8 +6615,6 @@ Osnovno ime knjižnice: %1 ProjectExplorer::CustomExecutableRunConfigurationFactory - - Custom Executable Izvršljiva datoteka po meri @@ -8361,75 +6622,70 @@ Osnovno ime knjižnice: %1 ProjectExplorer::EnvironmentModel - - <UNSET> <ni nastavljeno> - Variable Spremenljivka - Value Vrednost - - <VARIABLE> - <spremenljivka> + Name when inserting a new variable + <spremenljivka> - <VALUE> - <vrednost> + Value when inserting a new variable + <vrednost> - - + + <VARIABLE> + <spremenljivka> + + + ProjectExplorer::EnvironmentWidget - &Edit &Urejanje - &Add &Dodaj - &Reset &Ponastavi - &Unset &Odnastavi - Unset <b>%1</b> Odnastavi <b>%1</b> - Set <b>%1</b> to <b>%2</b> Nastavi <b>%1</b> na <b>%2</b> - - Summary: No changes to Environment - Povzetek: brez sprememb okolja + Using <b>%1</b> + + + + Using <b>%1</b> and + ProjectExplorer::Internal::AllProjectsFilter - Files in any project Datoteke v kateremkoli projektu @@ -8437,175 +6693,99 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::AllProjectsFind - All Projects Vsi projekti - File &pattern: Datotečni &vzorec: - - ProjectExplorer::Internal::BuildSettingsPanel - - - Build Settings - Nastavitve za gradnjo - - ProjectExplorer::Internal::BuildSettingsWidget - &Clone Selected Po&dvoji izbrano - Build Steps Koraki gradnje - - Edit Build Configuration: - Urejanje nastavitev za gradnjo: + No build settings available + + + + Edit build configuration: + Urejanje nastavitev za gradnjo: - Add Dodaj - Remove Odstrani - Clean Steps Koraki čiščenja - New Configuration Name: Ime nove nastavitve: - Clone configuration Podvoji nastavitev - - - Create &New - Ustvari &novo - - - - %1 - %2 - %1 - %2 - - - - General - Splošno - - - - Set as Active - Nastavi kot aktivno - - - - Clone - Podvoji - - - - Delete - Izbriši - - - - New configuration - Nova nastavitev - ProjectExplorer::Internal::BuildStepsPage - No Build Steps Brez korakov gradnje - - Add clean step - Dodaj korak čiščenja - - - - Add build step - Dodaj korak gradnje - - - - Remove clean step - Odstrani korak čiščenja - - - - Remove build step - Odstrani korak gradnje - - - Build Steps Koraki gradnje - Clean Steps Koraki čiščenja - - 1 - 1 + Move Up + Premakni gor - - + - + + Move Down + Premakni dol - - - - - + Remove Item + Odstrani postavko - - ^ - + Removing Step failed + - - v - + Can't remove build step while building + - - Form - Obrazec + Add Clean Step + Dodaj korak čiščenja + + + Add Build Step + Dodaj korak gradnje ProjectExplorer::Internal::CompileOutputWindow - - Compile Output Izhod prevajanja @@ -8613,40 +6793,29 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::CoreListenerCheckingForRunningBuild - Cancel Build && Close Prekliči gradnjo in zapri - A project is currently being built. Projekt se trenutno gradi. - Close Qt Creator? Ali zaprem Qt Creatorja? - Do not Close Ne zapri - Do you want to cancel the build process and close Qt Creator anyway? Ali vseeno želite preklicati gradnjo in zapreti Qt Creatorja? - - - Don't Close - Ne zapri - ProjectExplorer::Internal::CurrentProjectFilter - Files in current project Datoteke v trenutnem projektu @@ -8654,12 +6823,10 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::CurrentProjectFind - Current Project Trenutni projekt - File &pattern: Datotečni &vzorec: @@ -8667,233 +6834,157 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::CustomExecutableConfigurationWidget - Name: Ime: - Executable: Izvršljiva datoteka: - Arguments: Argumenti: - Working Directory: Delovna mapa: - Run in &Terminal Zaženi v &konzoli - Run Environment Okolje za zagon - Base environment for this runconfiguration: Osnovno okolje za te nastavitve zagona: - Clean Environment Čisto okolje - System Environment Sistemsko okolje - Build Environment Okolje za gradnjo - No Executable specified. Določen ni noben program. - Running executable: <b>%1</b> %2 Zaganjanje programa: <b>%1</b> %2 - - ProjectExplorer::Internal::DependenciesPanel - - - Dependencies - Odvisnosti - - - - ProjectExplorer::Internal::DetailedModel - - - %1 of project %2 - %1 projekta %2 - - - - Could not rename file - Ni moč preimenovati datoteke - - - - Renaming file %1 to %2 failed. - Preimenovanje datoteke %1 v %2 ni uspelo. - - - - ProjectExplorer::Internal::EditorSettingsPanel - - - Editor Settings - Nastavitve urejevalnika - - ProjectExplorer::Internal::EditorSettingsPropertiesPage - - Default File Encoding: - Privzeti nabor znakov: - - - - Form - Obrazec + Default file encoding: + Privzeti nabor znakov: ProjectExplorer::Internal::FolderNavigationWidgetFactory - File System Datotečni sistem - Synchronize with Editor Uskladi z urejevalnikom - ProjectExplorer::Internal::NewSessionInputDialog + ProjectExplorer::Internal::SessionDialog - - New session name - Ime nove seje + Session Manager + Upravljalnik sej - - Enter the name of the new session: - Vnesite ime nove seje: + &New + &Nov - - - ProjectExplorer::Internal::SessionDialog - - Switch to session - Preklopi na sejo + &Rename + Pre&imenuj - - Session Manager - Upravljalnik sej + C&lone + Podvoji - - Create New Session - Ustvari novo sejo + &Delete + &Zbriši - - Clone Session - Podvoji sejo + &Switch to + Preklopi na %1 - - Delete Session - Izbriši sejo + <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Kaj je seja?</a> - - <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">What is a Session?</a> - <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Kaj je seja?</a> + New session name + Ime nove seje - - Choose your session - Izberite sejo + Rename session + Preimenuj sejo ProjectExplorer::Internal::OutputPane - Re-run this run-configuration Znova zaženi te nastavitve za zagon - - Stop Ustavi - - Ctrl+Shift+R - + Application Output Window + Okno z izhodom programa - - Application Output - Izhod programa + The application is still running. + - - The application is still running. Close it first. - Program še vedno teče. Najprej ga zaprite. + Force it to quit? + - - Unable to close - Ni moč zapreti + Force Quit + - - Rerun this runconfiguration - Znova zaženi te nastavitve za zagon + Application Output + Izhod programa + + + Unable to close + Ni moč zapreti ProjectExplorer::Internal::OutputWindow - - Application Output Window - Okno z izhodom programa + Additional output omitted + + ProjectExplorer::Internal::ProcessStep - - Custom Process Step - Korak postopka po meri - - - Custom Process Step item in combobox Korak postopka po meri @@ -8902,12 +6993,10 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::ProcessStepConfigWidget - <b>%1</b> %2 %3 %4 <b>%1</b> %2 %3 %4 - (disabled) (onemogočen) @@ -8915,68 +7004,41 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::ProcessStepWidget - Name: Ime: - Command: Ukaz: - - Working Directory: - Delovna mapa: - - - - Command Arguments: - Argumenti za ukaz: - - - - Enable Custom Process Step - Omogoči korak postopka po meri + Enable custom process step + Omogoči korak postopka po meri - - Enable custom process step - Omogoči korak postopka po meri + Working directory: + Delovna mapa: - - Form - Obrazec + Command arguments: + Argumenti za ukaz: ProjectExplorer::Internal::ProjectExplorerSettingsPage - - Build and Run - Zgradi in zaženi - - - - Projects - Projekti - - - - Build and Run Settings - Nastavitve za gradnjo in zagon - - - - Projectexplorer - Raziskovalec projektov + General + Splošno ProjectExplorer::Internal::ProjectFileFactory - + Project File Factory + ProjectExplorer::ProjectFileFactory display name. + + + Could not open the following project: '%1' Ni bilo moč odpreti naslednjega projekta: »%1« @@ -8984,14 +7046,24 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::ProjectFileWizardExtension - + <None> + No version control system selected +---------- +No project selected + + + + Failed to add one or more files to project '%1' (%2). Dodajanje ene ali več datotek v projekt ni uspelo »%1« (%2). - + A version control system repository could not be created in '%1'. + + + Failed to add '%1' to the version control system. Dodajanje »%1« v sistem za nadzor različic ni uspelo. @@ -8999,17 +7071,14 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::ProjectTreeWidget - Simplify tree Poenostavi drevo - Hide generated files Skrij samodejno ustvarjene datoteke - Synchronize with Editor Uskladi z urejevalnikom @@ -9017,103 +7086,55 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::ProjectTreeWidgetFactory - Projects Projekti - Filter tree Filtriraj drevo - - ProjectExplorer::Internal::ProjectWindow - - - - Active Build and Run Configurations - Aktivne nastavitve gradnje in zagona - - - - No project loaded. - Naložen ni noben projekt. - - - - Project Explorer - Raziskovalec projektov - - - - Projects - Projekti - - - - Startup - Zagon - - - - Path - Pot - - ProjectExplorer::Internal::ProjectWizardPage - - Add to &VCS (%1) - Dodaj &v sistem za nadzor različic (%1) + Summary + Povzetek - Files to be added: Datoteke za dodati: + + Files to be added in + + ProjectExplorer::Internal::RemoveFileDialog - Remove File Odstrani datoteko - &Delete file permanently &Dokončno izbriši datoteko - &Remove from Version Control &Odstrani iz sistema za nadzor različic - File to remove: Datoteka za odstraniti: - - ProjectExplorer::Internal::RunSettingsPanel - - - Run Settings - Nastavitve za zagon - - ProjectExplorer::Internal::RunSettingsWidget - Add Dodaj - Remove Odstrani @@ -9121,45 +7142,25 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::RunSettingsPropertiesPage - + + - - - - - Edit run configuration: - Urejanje nastavitev za zagon: - - - - Run &configuration: - &Nastavitve za zagon: - - - - Settings - Nastavitve - - - - Form - Obrazec + Run configuration: + &Nastavitve za zagon: ProjectExplorer::Internal::SessionFile - Session Seja - Untitled default file name to display Neimenovana @@ -9168,39 +7169,17 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::TaskDelegate - File not found: %1 Datoteka ni bila najdena: %1 - - ProjectExplorer::Internal::TaskWindow - - - - Build Issues - Težave pri gradnji - - - - &Copy - S&kopiraj - - - - Show Warnings - Prikaži opozorila - - ProjectExplorer::Internal::WinGuiProcess - The process could not be started! Procesa ni bilo moč zagnati. - Cannot retrieve debugging output! Ni moč pridobiti izhoda razhroščevanja. @@ -9208,27 +7187,10 @@ Osnovno ime knjižnice: %1 ProjectExplorer::Internal::WizardPage - Project management Upravljanje projektov - - &Add to Project - &Dodaj k projektu - - - - &Project - &Projekt - - - - Add to &version control - Dodaj &v sistem za nadzor različic - - - The following files will be added: @@ -9241,271 +7203,229 @@ Osnovno ime knjižnice: %1 - - WizardPage - StranČarovnika + Add to &project: + &Dodaj k projektu + + + Add to &version control: + Dodaj &v sistem za nadzor različic ProjectExplorer::ProjectExplorerPlugin - Projects Projekti - &Build &Gradnja - &Debug &Razhroščevanje - &Start Debugging &Začni razhroščevati - Open With Odpri v - Session Manager... Upravljalnik sej ... - New Project... Nov projekt ... - Ctrl+Shift+N - + - Load Project... Naloži projekt ... - Ctrl+Shift+O - + - Open File Odpri datoteko - - Show in Explorer... - Prikaži v raziskovalcu ... - - - - Show in Finder... - Prikaži v Finderju ... - - - - Show containing folder... - Prikaži vsebujočo mapo ... - - - - Recent Projects - Nedavni projekti - - - Close Project Zapri projekt - Close All Projects Zapri vse projekte - Session Seja - - Set Build Configuration - Nastavi nastavitve za gradnjo - - - Build All Zgradi vse - Ctrl+Shift+B - + - Rebuild All Znova zgradi vse - Clean All Počisti vse - Build Project Zgradi projekt - Ctrl+B - + Ctrl+B - Rebuild Project Znova zgradi projekt - Rebuild Project "%1" Znova zgradi projekt »%1« - Clean Project Počisti projekt - Clean Project "%1" Počisti projekt »%1« - Build Without Dependencies Zgradi brez odvisnosti - Rebuild Without Dependencies Znova zgradi brez odvisnosti - Clean Without Dependencies Počisti brez odvisnosti - - Run Zaženi - Ctrl+R - + CTRL+R - - Set Run Configuration - Nastavi nastavitve za zagon + Projects (%1) + Projekti + + + All Files (*) + Vse datoteke (*) - Cancel Build Prekliči gradnjo - - Start Debugging Začni razhroščevati - F5 - + F5 - Add New... Dodaj novo ... - Add Existing Files... Dodaj obstoječo datoteko ... - Remove File... Odstrani datoteko ... - Rename Preimenuj - Load Project Naloži projekt - New Project Title of dialog Nov projekt - Close Project "%1" Zapri projekt »%1« - + Recent P&rojects + Nedavni projekti + + + Open Build/Run Target Selector... + + + + Ctrl+T + + + + Always save files before build + + + + Cannot run without a project. + + + + Cannot debug without a project. + + + New File Title of dialog Nova datoteka - Add Existing Files Dodaj obstoječo datoteko - Could not add following files to project %1: Naslednjih datotek ni bilo moč dodati v projekt %1: - Add files to project failed Dodajanje datotek v projekt ni uspelo - Add to Version Control Dodaj v sistem za nadzor različic - Add files %1 to version control (%2)? @@ -9514,332 +7434,148 @@ to version control (%2)? v sistem za nadzor različic (%2)? - Could not add following files to version control (%1) Naslednjih datotek ni bilo moč dodati v sistem za nadzor različic (%1) - Add files to version control failed Dodajanje datotek v sistem za nadzor različic ni uspelo - - Launching Windows Explorer failed - Zaganjanje Windows Explorer ni uspelo - - - - Could not find explorer.exe in path to launch Windows Explorer. - V poti ni bilo moč najti explorer.exe in zato ni bilo moč zagnati Windows Explorer. - - - - Launching a file explorer failed - Zaganjanje upravitelja datotek ni uspelo - - - - Could not find xdg-open to launch the native file explorer. - Ni bilo moč najti xdg-open in zato ni bilo moč zagnati upravitelja datotek. - - - Remove file failed Odstranitev datoteke ni uspela - Could not remove file %1 from project %2. Ni bilo moč odstraniti datoteke %1 iz projekta %2. - Delete file failed Izbris datoteke ni uspel - Could not delete file %1. Ni moč izbrisati datoteke %1. - Build Project "%1" Zgradi projekt »%1« - - - Project Only - Samo projekt - - - - Build Project Only - Zgradi samo projekt - - - - Rebuild Project only - Znova zgradi samo projekt - - - - Clean Project only - Počisti samo projekt - - - - Go to Task Window - Pojdi v okno z opravili - - - - Project only - Samo projekt - - - - Build Project only - Zgradi samo projekt - - - - Project "%1" only - Samo projekt »%1« - - - - Build Project "%1" only - Zgradi samo projekt »%1« - - - - Rebuild Project "%1" only - Znova zgradi samo projekt »%1« - - - - Clean Project "%1" only - Počisti samo projekt »%1« - - - - Unload Project - Zapri projekt - - - - Unload All Projects - Zapri vse projekte - - - - Unload Project "%1" - Zapri projekt »%1« - ProjectExplorer::SessionManager - Error while restoring session Napaka med obnavljanjem seje - Could not restore session %1 Ni bilo moč obnoviti seje %1 - Error while saving session Napaka med shranjevanjem seje - Could not save session to file %1 Ni bilo moč shraniti seje v datoteko %1 - Qt Creator Qt Creator - - Untitled Neimenovano - Session ('%1') Seja (%1) - - - Error while loading session - Napaka med nalaganjem seje - - - - Could not load session %1 - Ni bilo moč naložiti seje %1 - QMakeStep - - QMake Build Configuration: - Nastavitev gradnje QMake: - - - - debug - razhroščevanje - - - - release - izdaja - - - Additional arguments: Dodatni argumenti: - Effective qmake call: Dejanski klic qmake: - - Form - Obrazec + qmake build configuration: + Nastavitev gradnje QMake: + + + Debug + Razhrošči + + + Release + Izdaja QObject - Pass Uspeh - Expected Failure Pričakovan neuspeh - Failure Neuspeh - Expected Pass Pričakovan uspeh - Warning Opozorilo - Qt Warning Opozorilo Qt - Qt Debug Razhroščevanje Qt - Critical Kritično - Fatal Usodno - Skipped Izpuščeno - Info Podatek - - - File Changed - Datoteka spremenjena - - - - The file %1 has changed outside Qt Creator. Do you want to reload it? - Datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova? - - - - File is Read Only - Datoteka samo za branje - - - - The file %1 is read only. - Datoteka %1 je samo za branje. - - - - Open with VCS (%1) - Odpri v sistemu za nadzor različic (%1) - - - - Make writable - Spremeni v zapisljivo - - - - Save as ... - Shrani kot ... - - - - Toggle vim-style editing - Preklopi urejanje v slogu Vim - - - - FakeVim properties... - Lastnosti FakeVim ... - QTestLib::Internal::QTestOutputPane - Test Results Rezultati testa - Result Rezultat - Message Sporočilo @@ -9847,236 +7583,93 @@ v sistem za nadzor različic (%2)? QTestLib::Internal::QTestOutputWidget - All Incidents Vsi dogodki - Show Only: Prikaži samo: - QmlProjectManager::Internal::QmlNewProjectWizard - - - QML Application - Program QML - + QmlProjectManager::Internal::QmlRunConfiguration - - Creates a QML application. - Ustvari program QML. + QML Viewer + Pregledovalnik QML + + + QrcEditor - - Projects - Projekti + Add + Dodaj - - The project %1 could not be opened. - Projekta %1 ni bilo moč odpreti. + Remove + Odstrani - - - QmlProjectManager::Internal::QmlNewProjectWizardDialog - - New QML Project - Nov projekt QML + Properties + Lastnosti - - This wizard generates a QML application project. - Ta čarovnik ustvari projekt programa QML. + Prefix: + Predpona: - - - QmlProjectManager::Internal::QmlProjectWizard - - Import of existing QML directory - Uvoz obstoječe mape s QML + Language: + Jezik: - - Creates a QML project from an existing directory of QML files. - Ustvari projekt QML iz obstoječe mape z datotekami QML. + Alias: + Drugo ime: + + + Qt4ProjectManager::Internal::ConsoleAppWizard - - Projects - Projekti + Qt Console Application + Konzolni program Qt 4 - - The project %1 could not be opened. - Projekta %1 ni bilo moč odpreti. + Creates a project containing a single main.cpp file with a stub implementation. + +Preselects a desktop Qt for building the application if available. + - QmlProjectManager::Internal::QmlProjectWizardDialog + Qt4ProjectManager::Internal::ConsoleAppWizardDialog - - Import of QML Project - Uvoz projekta QML + This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. + Ta čarovnik ustvari projekt konzolnega programa Qt 4. Program je izpeljan iz QCoreApplication in nima grafičnega uporabniškega vmesnika. + + + Qt4ProjectManager::Internal::EmptyProjectWizard - - QML Project - Projekt QML + Empty Qt Project + Prazen projekt Qt 4 - - Project name: - Ime projekta: + Creates a qmake-based project without any files. This allows you to create an application without any default classes. + + + + Qt4ProjectManager::Internal::EmptyProjectWizardDialog - - Location: - Lokacija: + This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. + Ta čarovnik ustvari prazen projekt Qt 4. Datoteke dodajte kasneje z uporabo drugih čarovnikov. - QmlProjectManager::Internal::QmlRunConfiguration + Qt4ProjectManager::Internal::FilesPage - - - QML Viewer - Pregledovalnik QML + Class Information + Podatki o razredih - - - - <Current File> - <trenutna datoteka> - - - - QML Viewer arguments: - Argumenti pregledovalnika QML: - - - - Main QML File: - Glavna datoteka QML: - - - - Could not find the qmlviewer executable, please specify one. - Ni bilo moč najti izvršljive datoteke qmlviewer. Določite jo. - - - - QrcEditor - - - Add - Dodaj - - - - Remove - Odstrani - - - - Properties - Lastnosti - - - - Prefix: - Predpona: - - - - Language: - Jezik: - - - - Alias: - Drugo ime: - - - - Form - Obrazec - - - - Qt4ProjectManager::Internal::ConsoleAppWizard - - - Qt4 Console Application - Konzolni program Qt 4 - - - - Creates a Qt4 console application. - Ustvari konzolni program Qt 4. - - - - Qt4ProjectManager::Internal::ConsoleAppWizardDialog - - - This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. - Ta čarovnik ustvari projekt konzolnega programa Qt 4. Program je izpeljan iz QCoreApplication in nima grafičnega uporabniškega vmesnika. - - - - 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. - Ta čarovnik ustvari projekt konzolnega programa Qt 4. Program je izpeljan iz QCoreApplication in nima grafičnega uporabniškega vmesnika. Gumb »Zaključi« lahko kliknete kadarkoli. - - - - Qt4ProjectManager::Internal::EmbeddedPropertiesPanel - - - Embedded Linux - Vgrajeni Linux - - - - Qt4ProjectManager::Internal::EmptyProjectWizard - - - Empty Qt4 Project - Prazen projekt Qt 4 - - - - Creates an empty Qt project. - Ustvari prazen projekt Qt 4. - - - - Qt4ProjectManager::Internal::EmptyProjectWizardDialog - - - This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. - Ta čarovnik ustvari prazen projekt Qt 4. Datoteke dodajte kasneje z uporabo drugih čarovnikov. - - - - This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. You can press 'Finish' at any point in time. - Ta čarovnik ustvari prazen projekt Qt 4. Datoteke dodajte kasneje z uporabo drugih čarovnikov. Kadarkoli lahko kliknete »Zaključi«. - - - - Qt4ProjectManager::Internal::FilesPage - - - Class Information - Podatki o razredih - - - Specify basic information about the classes for which you want to generate skeleton source code files. Podajte osnovne podatke o razredih, za katere želite ustvariti datoteke z ogrodjem izvorne kode. @@ -10084,17 +7677,16 @@ v sistem za nadzor različic (%2)? Qt4ProjectManager::Internal::GuiAppWizard - - Qt4 Gui Application - Grafični program Qt 4 + Qt Gui Application + Grafični program Qt 4 - - Creates a Qt4 Gui Application with one form. - Ustvari program Qt 4 z grafičnim vmesnikom. + Creates a Qt application for the desktop. Includes a Qt Designer-based main window. + +Preselects a desktop Qt for building the application if available. + - The template file '%1' could not be opened for reading: %2 Datoteke s predlogo »%1« ni bilo moč odpreti za branje: %2 @@ -10102,699 +7694,398 @@ v sistem za nadzor različic (%2)? Qt4ProjectManager::Internal::GuiAppWizardDialog - This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. Ta čarovnik ustvari projekt programa Qt 4 z grafičnim uporabniškim vmesnikom. Program je privzeto izpeljan iz QApplication in vsebuje prazen gradnik. + + Details + Podrobnosti + Qt4ProjectManager::Internal::LibraryWizard - C++ Library Knjižnica C++ - - Creates a C++ Library. - Ustvari knjižnico 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>. + Qt4ProjectManager::Internal::LibraryWizardDialog - Shared library Deljena knjižnica - Statically linked library Statično povezana knjižnica - Qt 4 plugin Vstavek Qt 4 - Type Vrsta - This wizard generates a C++ library project. Ta čarovnik ustvari projekt knjižnice C++. + + Details + Podrobnosti + Qt4ProjectManager::Internal::ModulesPage - Select required modules Izberite potrebne module - Select the modules you want to include in your project. The recommended modules for this project are selected by default. Izberite module, ki jih želite vključiti v svoj projekt. Priporočeni moduli za ta projekt so privzeto izbrani. - Qt4ProjectManager::Internal::ProEditor - - - New - Nova - + Qt4ProjectManager::Internal::ProjectLoadWizard - - Remove - Odstrani + Project setup + + + + Qt4ProjectManager::Internal::Qt4PriFileNode - - Up - Gor + Headers + Glave - - Down - Dol + Sources + Izvorna koda - - Cut - Izreži + Forms + Obrazci - - Copy - Skopiraj + Resources + Viri - - Paste - Prilepi + Other files + Druge datoteke - - Ctrl+X - + Failed! + Spodletelo. - - Ctrl+C - + Could not open the file for edit with SCC. + Ni bilo moč odpreti datoteke za urejanje v SCC. - - Ctrl+V - + Could not set permissions to writable. + Dovoljenj ni bilo moč nastaviti na zapisljivo. - - Add Variable - Dodaj spremenljivko + There are unsaved changes for project file %1. + Obstajajo neshranjene spremembe za projektno datoteko %1. - - Add Scope - Dodaj doseg + Could not write project file %1. + - - Add Block - Dodaj blok + Error while reading PRO file %1: %2 + - Qt4ProjectManager::Internal::ProEditorModel + Qt4ProjectManager::Internal::Qt4ProFileNode - - <Global Scope> - <globalni doseg> + Error while parsing file %1. Giving up. + Napaka med razčlenjevanjem datoteke %1. - - Change Item - Spremeni postavko + Could not find .pro file for sub dir '%1' in '%2' + Ni bilo moč najti datoteke *.pro za podmapo »%1« v »%2« + + + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget - - Change Variable Assignment - Spremeni dodelitev spremenljivki + <a href="import">Import existing build</a> + <a href="import">Uvozi obstoječo gradnjo</a> - - Change Variable Type - Spremeni vrsto spremenljivke + Shadow Build Directory + Mapa za gradnjo izven mape z izvorno kodo - - Change Scope Condition - Spremeni pogoj dosega + using <font color="#ff0000">invalid</font> Qt Version: <b>%1</b><br>%2 + - - Change Expression - Spremeni izraz + No Qt Version found. + - - Move Item - Premakni postavko + using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> + uporaba različice Qt: <b>%1</b><br>z zaporedjem orodij <b>%2</b><br>grajenje v <b>%3</b> - - Remove Item - Odstrani postavko + General + Splošno - - Insert Item - Vstavi postavko + Building in subdirectories of the source directory is not supported by qmake. + - - - Qt4ProjectManager::Internal::ProjectLoadWizard - - - Import existing build settings - Uvozi obstoječe nastavitve za gradnjo + An incompatible build exists in %1, which will be overwritten. + %1 build directory + - - 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 je v mapi z izvorno kodo našel že obstoječo gradnjo.<br><br><b>Različica Qt:</b> %1<br><b>Nastavitev gradnje:</b> %2<br><b>Dodatni argumenti za QMake:</b>%3 + Manage + Upravljanje - - Import existing build settings. - Uvozi obstoječe nastavitve za gradnjo. + Configuration name: + Ime nastavitev - - <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>Opomba:</b> Uvoz nastavitev bo na seznam različic Qt samodejno dodal različico Qt, ki jo je identificiral <br><b>%1</b>. + Qt version: + Različica Qt: - - Import existing settings - Uvozi obstoječe nastavitve + This Qt version is invalid. + Različica Qt ni veljavna. - - 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> - Qt Creator je v mapi z izvorno kodo našel že obstoječo gradnjo.<br><br><b>Različica Qt:</b> %1<br><b>Nastavitev gradnje:</b> %2<br> + Tool chain: + Zaporedje orodij: - - <b>Note:</b> Importing the settings will automatically add the Qt Version from:<br><b>%1</b> to the list of Qt versions. - <b>Opomba:</b> Uvoz nastavitev bo na seznam različic Qt samodejno dodal različico Qt iz:<br><b>%1</b> + Shadow build: + Izven mape s kodo: - - <b>Note:</b> Importing the settings will automatically add the Qt Version from:<br><b>%1</b> to the list of qt versions. - <b>Opomba:</b> Uvoz nastavitev bo na seznam različic Qt samodejno dodal različico Qt iz:<br><b>%1</b> + Build directory: + Mapa za gradnjo: - - - Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget - - Clear system environment - Počisti sistemsko okolje + problemLabel + + + + Qt4ProjectManager::Internal::Qt4ProjectManagerPlugin - - Build Environment - Okolje za gradnjo + Run qmake + Zaženi qmake - - &Edit - &Urejanje + Build + Zgradi - - &Add - &Dodaj + Run qmake in %1 + - - &Reset - &Ponastavi + Build in %1 + + + + Qt4ProjectManager::Internal::Qt4RunConfiguration - - &Unset - &Odnastavi + Clean Environment + Čisto okolje - - Reset - Ponastavi + System Environment + Sistemsko okolje - - Remove - Odstrani + Build Environment + Okolje za gradnjo - - Form - Obrazec + Qt4 RunConfiguration + - Qt4ProjectManager::Internal::Qt4PriFileNode + Qt4ProjectManager::Internal::Qt4RunConfigurationWidget - - Headers - Glave + Arguments: + Argumenti: - - Sources - Izvorna koda + Select Working Directory + - - Forms - Obrazci + Working directory: + Delovna mapa: - - Resources - Viri + Run in terminal + Izvedi v terminalu - - Other files - Druge datoteke + Run Environment + Okolje za zagon - - - Failed! - Spodletelo. + Base environment for this runconfiguration: + Osnovno okolje za te nastavitve zagona: - - Could not open the file for edit with SCC. - Ni bilo moč odpreti datoteke za urejanje v SCC. - - - - Could not set permissions to writable. - Dovoljenj ni bilo moč nastaviti na zapisljivo. - - - - There are unsaved changes for project file %1. - Obstajajo neshranjene spremembe za projektno datoteko %1. - - - - Error while parsing file %1. Giving up. - Napaka med razčlenjevanjem datoteke %1. - - - - Error while changing pro file %1. - Napaka med spreminjanjem datoteke %1. - - - - Qt4ProjectManager::Internal::Qt4ProFileNode - - - Error while parsing file %1. Giving up. - Napaka med razčlenjevanjem datoteke %1. - - - - Could not find .pro file for sub dir '%1' in '%2' - Ni bilo moč najti datoteke *.pro za podmapo »%1« v »%2« - - - - Qt4ProjectManager::Internal::Qt4ProjectConfigWidget - - - Configuration Name: - Ime nastavitev - - - - Qt Version: - Različica Qt: - - - - This Qt-Version is invalid. - Različica Qt ni veljavna. - - - - Shadow Build: - Izven mape s kodo: - - - - Build Directory: - Mapa za gradnjo: - - - - <a href="import">Import existing build</a> - <a href="import">Uvozi obstoječo gradnjo</a> - - - - Shadow Build Directory - Mapa za gradnjo izven mape z izvorno kodo - - - - - Default Qt Version (%1) - Privzeta različica Qt (%1) - - - - No Qt Version set - Nastavljena ni nobena različica Qt - - - - using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> - uporaba različice Qt: <b>%1</b><br>z zaporedjem orodij <b>%2</b><br>grajenje v <b>%3</b> - - - - General - Splošno - - - - Manage - Upravljanje - - - - Tool Chain: - Zaporedje orodij: - - - - Manage Qt Versions - Upravljanje različic Qt - - - - Default Qt Version - Privzeta različica Qt - - - - Form - Obrazec - - - - Qt4ProjectManager::Internal::Qt4ProjectManagerPlugin - - - - Run qmake - Zaženi qmake - - - - Qt4ProjectManager::Internal::Qt4RunConfiguration - - - - Qt4RunConfiguration - - - - - Could not parse %1. The Qt4 run configuration %2 can not be started. - Ni bilo moč razčleniti %1. Nastavitev za zagon Qt 4 %2 ni moč zagnati. - - - - Qt4ProjectManager::Internal::Qt4RunConfigurationWidget - - - Arguments: - Argumenti: - - - - Run in Terminal - Zaženi v konzoli - - - - Run Environment - Okolje za zagon - - - - Base environment for this runconfiguration: - Osnovno okolje za te nastavitve zagona: - - - Clean Environment Čisto okolje - System Environment Sistemsko okolje - Build Environment Okolje za gradnjo - - Running executable: <b>%1</b> %2 (in terminal) - Zaganjanje programa: <b>%1</b> %2 (v konzoli) - - - - Running executable: <b>%1</b> %2 - Zaganjanje programa: <b>%1</b> %2 - - - Name: Ime: - Executable: Izvršljiva datoteka: - - Select the working directory - Izberite delovno mapo - - - Reset to default Ponastavi na privzeto - - Working Directory: - Delovna mapa: - - - Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) Uporabi razhroščevalne različice ogrodij (DYLD_IMAGE_SUFFIX=_debug) - - - &Arguments: - &Argumenti: - - - - Run in &Terminal - Zaženi v &konzoli - Qt4ProjectManager::Internal::QtOptionsPageWidget - <specify a name> <vnesite ime> - <specify a qmake location> <določite lokacijo qmake> - - Select QMake Executable - Izberite program QMake + Select qmake Executable + Izberite program QMake - Select the MinGW Directory Izberite mapo z MinGW - Select Carbide Install Directory Izberite mapo, kjer je nameščen Carbide - Select S60 SDK Root Izberite vrhnjo mapo z S60 SDK - + Select the CSL ARM Toolchain (GCCE) Directory + + + Auto-detected Zaznaj samodejno - Manual Ročno - Building helpers Pomočniki za gradnjo - <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>Datoteka:</td><td><pre>%1</pre></td></tr><tr><td>Nazadnje&nbsp;spremenjena:</td><td>%2</td></tr><tr><td>Velikost:</td><td>%3 B</td></tr></table></body></html> - - The Qt Version identified by %1 is not installed. Run make install - Različica Qt, ki jo je identificiral %1, ni nameščena. Zaženite »make install« - - - - %1 does not specify a valid Qt installation - %1 ne določa veljavne namestitve Qt - - - - Found Qt version %1, using mkspec %2 - Najden je Qt različice %1, uporabljen mkspec %2 + This Qt Version has a unknown toolchain. + - - <specify a path> - <vnesite pot> + Desktop + Qt Version is meant for the desktop + Namizje - - Select QTDIR - Izberite QTDIR + Symbian + Qt Version is meant for Symbian + - - Select the Qt Directory - Izberite mapo s Qt + Maemo + Qt Version is meant for Maemo + - - The Qt Version %1 is not installed. Run make install - Qt različice %1 ni nameščen. Zaženite »make install« + Qt Simulator + Qt Version is meant for Qt Simulator + - - %1 is not a valid Qt directory - %1 ni veljavna mapa s Qt + unkown + No idea what this Qt Version is meant for! + - - %1 is not a valid qt directory - %1 ni veljavna mapa s Qt + Found Qt version %1, using mkspec %2 (%3) + Najden je Qt različice %1, uporabljen mkspec %2 Qt4ProjectManager::Internal::QtVersionManager - - Qt versions - Različice Qt - - - + + - - - - Name Ime - Debugging Helper Razhroščevalni pomočnik - - Version Name: - Ime različice: - - - - MinGW Directory: - Mapa z MinGW: - - - - Debugging Helper: - Razhroščevalni pomočnik: - - - Show &Log Prikaži &dnevnik - &Rebuild &Znova zgradi - - Default Qt Version: - Privzeta različica Qt: - - - <!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; } @@ -10807,484 +8098,239 @@ p, li { white-space: pre-wrap; } <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;">Ni moč zaznati različice MSVC.</span></p></body></html> - - QMake Location - Lokacija QMake + S60 SDK: + S60 SDK: - - QMake Location: - Lokacija QMake: + qmake Location + Lokacija QMake - - MSVC Version: - Različica MSVC: + Version name: + Ime različice: - - S60 SDK: - S60 SDK: + qmake location: + Lokacija QMake - - Carbide Directory: - Mapa s Carbide: + MinGW directory: + Mapa z MinGW: - - Path: - Pot: + Toolchain: + Zaporedje orodij: - - Path - Pot + CSL/GCCE directory: + - - Form - Obrazec + Carbide directory: + Mapa s Carbide: - - - Qt4ProjectManager::Internal::QtWizard - - The project %1 could not be opened. - Projekta %1 ni bilo moč odpreti. + Debugging helper: + Razhroščevalni pomočnik: - Qt4ProjectManager::Internal::ValueEditor + Qt4ProjectManager::MakeStep - - Edit Variable - Urejanje spremenljivke + Make + Qt4 MakeStep display name. + Znamka - - Variable Name: - Ime spremenljivke: + Could not find make command: %1 in the build environment + <font color="#ff0000">Ni bilo moč najti ukaza make: %1 v okolju za gradnjo</font> + + + Qt4ProjectManager::MakeStepConfigWidget - - Assignment Operator: - Dodelitveni operator: + Override %1: + Povozi %1: - - Variable: - Spremenljivka: + <b>Make:</b> %1 not found in the environment. + - - Append (+=) - Dodaj (+=) + <b>Make:</b> %1 %2 in %3 + + + + Qt4ProjectManager::Internal::MakeStepFactory - - Remove (-=) - Odstrani (-=) + Make + Znamka + + + Qt4ProjectManager::QMakeStep - - Replace (~=) - Nadomesti (~=) + qmake + QMakeStep display name. + QMake - - Set (=) - Nastavi (=) + Configuration is faulty, please check the Build Issues view for details. + - - Unique (*=) - Edinstveno (*=) + Configuration unchanged, skipping qmake step. + <font color="#0000ff">Nastavitev se ni spremenila, izpuščam korak QMake.</font> + + + Qt4ProjectManager::QMakeStepConfigWidget - - Select Item - Izberite postavko + <b>qmake:</b> No Qt version set. Cannot run qmake. + - - Edit Item - Urejanje postavke + <b>qmake:</b> %1 %2 + qmake: + + + Qt4ProjectManager::Internal::QMakeStepFactory - - Select Items - Izberite postavke + qmake + QMake + + + Qt4ProjectManager::Qt4Manager - - Edit Items - Urejanje postavk + Failed opening project '%1': Project file does not exist + Odpiranje projekta »%1« ni uspelo: projektna datoteka ne obstaja - - New - Nova - - - - Remove - Odstrani - - - - Edit Values - Urejanje vrednosti - - - - Edit %1 - Urejanje %1 - - - - Edit Scope - Urejanje dosega - - - - Edit Advanced Expression - Urejanje naprednega izraza - - - - Qt4ProjectManager::MakeStep - - - <font color="#ff0000">Could not find make command: %1 in the build environment</font> - <font color="#ff0000">Ni bilo moč najti ukaza make: %1 v okolju za gradnjo</font> - - - - <font color="#0000ff"><b>No Makefile found, assuming project is clean.</b></font> - <font color="#0000ff">Datoteka Makefile ni bila najdena. Predpostavljam da je projekt čist.<b></b> - - - - Qt4ProjectManager::MakeStepConfigWidget - - - Override %1: - Povozi %1: - - - - <b>Make Step:</b> %1 not found in the environment. - - - - - <b>Make:</b> %1 %2 in %3 - - - - - Qt4ProjectManager::Internal::MakeStepFactory - - - Make - - - - - Qt4ProjectManager::QMakeStep - - - -<font color="#ff0000"><b>No valid Qt version set. Set one in Preferences </b></font> - - -<font color="#ff0000">Nastavljene ni veljavne različice Qt. Nastavite jo v nastavitvah.<b></b> - - - - - -<font color="#ff0000"><b>No valid Qt version set. Set one in Tools/Options </b></font> - - -<font color="#ff0000">Nastavljene ni veljavne različice Qt. Nastavite jo v Orodja → Možnosti.<b></b> - - - - - <font color="#0000ff">Configuration unchanged, skipping QMake step.</font> - <font color="#0000ff">Nastavitev se ni spremenila, izpuščam korak QMake.</font> - - - - QMAKESPEC from environment (%1) overrides mkspec of selected Qt (%2). - QMAKESPEC iz okolja (%1) povozi mkspec izbranega Qt (%2). - - - - Qt4ProjectManager::QMakeStepConfigWidget - - - <b>QMake:</b> No Qt version set. QMake can not be run. - <b>QMake:</b> Nastavljene ni nobene različice Qt. QMake ni moč zagnati. - - - - <b>QMake:</b> %1 %2 - <b>QMake:</b> %1 %2 - - - - No valid Qt version set. - Nastavljene ni nobene veljavne različice Qt. - - - - Qt4ProjectManager::Internal::QMakeStepFactory - - - QMake - QMake - - - - Qt4ProjectManager::Qt4Manager - - - Loading project %1 ... - Nalaganje projekta %1 ... - - - - Failed opening project '%1': Project file does not exist - Odpiranje projekta »%1« ni uspelo: projektna datoteka ne obstaja - - - - - Failed opening project - Odpiranje projekta ni uspelo - - - Failed opening project '%1': Project already open Odpiranje projekta »%1« ni uspelo: projekt je že odprt - - - Opening %1 ... - Odpiranje %1 ... - - - - Done opening project - Odpiranje projekta je zaključeno - Qt4ProjectManager::QtVersionManager - <not found> <ni najdeno> - - Qt in PATH Qt v PATH - Name: Ime: - Source: Vir: - mkspec: mkspec: - qmake: qmake: - Default: Privzeta: - - Compiler: - Prevajalnik: - - - Version: Različica: - Debugging helper: Razhroščevalni pomočnik: - - - Auto-detected Qt - Samodejno zaznan Qt - - - - QtScriptEditor::Internal::QtScriptEditorActionHandler - - - Qt Script Error - Napaka Qt Script - - - - QtScriptEditor::Internal::QtScriptEditorPlugin - - - Creates a Qt Script file. - Ustvari datoteko Qt Script. - - - - Qt Script file - Datoteka Qt Script - - - - Qt - Qt - - - - Run - Zaženi - - - - Ctrl+R - - - - - QtScriptEditor::Internal::ScriptEditor - - - <Select Symbol> - <izberite simbol> - RegExp::Internal::RegExpWindow - &Pattern: &Vzorec: - &Escaped Pattern: &Ubežan vzorec: - &Pattern Syntax: Skladnja &vzorca: - &Text: &Besedilo: - Case &Sensitive O&bčutljivo na velikost črk - &Minimal &Minimalno - Index of Match: Indeks ujemanja: - Matched Length: Dolžina ujemanja: - Regular expression v1 Regularni izraz v1 - Regular expression v2 Regularni izraz v2 - Wildcard Nadomestitelj - Fixed string Fiksen niz - Capture %1: Zajem %1: - Match: Ujemanje: - Regular Expression Regularni izraz - Enter pattern from code... Vnesi vzorec iz kode ... - Clear patterns Počisti vzorce - Clear texts Počisti besedila - Enter pattern from code Vnesi vzorec iz kode - Pattern Vzorec @@ -11292,40 +8338,25 @@ p, li { white-space: pre-wrap; } ResourceEditor::Internal::ResourceEditorPlugin - - Creates a Qt Resource file (.qrc). - Ustvari datoteko z viri za Qt (*.qrc). - - - Qt Resource file Datoteka z viri za Qt - - Qt - Qt + Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. + - &Undo &Razveljavi - &Redo &Uveljavi - - - Resource file - Datoteka z viri - ResourceEditor::Internal::ResourceEditorW - untitled neimenovana @@ -11333,98 +8364,65 @@ p, li { white-space: pre-wrap; } SaveItemsDialog - Save Changes Shrani spremembe - The following files have unsaved changes: Naslednje datoteke vsebujejo neshranjene spremembe: - Automatically save all files before building Pred gradnjo samodejno shrani vse datoteke - - - Automatically save all Files before building - Pred gradnjo samodejno shrani vse datoteke - - - - SettingsDialog - - - Options - Možnosti - - - - 0 - 0 - SharedTools::QrcEditor - Add Files Dodaj datoteke - Add Prefix Dodaj predpono - - Invalid file - Neveljavna datoteka - - - Copy Skopiraj - Skip Preskoči - Abort Prekliči - - The file %1 is not in a subdirectory of the resource file. Continuing will result in an invalid resource file. - Datoteka %1 ni podmapa datoteke z viri. Če nadaljujete, bo ustvarjena neveljavna datoteka z viri. + 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. + - Choose copy location Izberite lokacijo za kopiranje - Overwrite failed Nadomestitev ni uspela - Could not overwrite file %1. Ni bilo moč nadomestiti datoteke %1. - Copying failed Kopiranje ni uspelo - Could not copy the file to %1. Ni bilo moč skopirati datoteke v %1. @@ -11432,148 +8430,65 @@ p, li { white-space: pre-wrap; } SharedTools::ResourceView - Add Files... Dodaj datoteke ... - Change Alias... Spremeni drugo ime ... - Add Prefix... Dodaj predpono ... - Change Prefix... Spremeni predpono ... - Change Language... Spremeni jezik ... - Remove Item Odstrani postavko - Open file Odpri datoteko - All files (*) Vse datoteke (*) - Change Prefix Spremeni predpono - Input Prefix: Vhodna predpona: - Change Language Spremeni jezik - Language: Jezik: - Change File Alias Spremeni drugo ime datoteke - Alias: Drugo ime: - - ShortcutSettings - - - Keyboard Shortcuts - Tipkovnične bližnjice - - - - Filter: - Filter: - - - - Command - Ukaz - - - - Label - Oznaka - - - - Shortcut - Bližnjica - - - - Defaults - Privzetosti - - - - Import... - Uvozi ... - - - - Export... - Izvozi ... - - - - Key Sequence - Zaporedje tipk - - - - Shortcut: - Bližnjica: - - - - Reset - Ponastavi - - - - Remove - Odstrani - - - - Form - Obrazec - - ShowBuildLog - Debugging Helper Build Log Dnevnik gradnje razhroščevalnega pomočnika @@ -11581,7 +8496,6 @@ p, li { white-space: pre-wrap; } Snippets::Internal::SnippetsPlugin - Snippets Odseki @@ -11589,7 +8503,6 @@ p, li { white-space: pre-wrap; } Snippets::Internal::SnippetsWindow - Snippets Odseki @@ -11597,22 +8510,18 @@ p, li { white-space: pre-wrap; } StartExternalDialog - Start Debugger Zaženi razhroščevalnik - Executable: Izvršljiva datoteka: - Arguments: Argumenti: - Break at 'main': Prekini pri »main()«: @@ -11620,363 +8529,363 @@ p, li { white-space: pre-wrap; } StartRemoteDialog - Start Debugger Zaženi razhroščevalnik - Host and port: Gostitelj in vrata: - Architecture: Arhitektura: - Use server start script: Uporabi skript za zagon strežnika: - Server start script: Skript za zagon strežnika: - - localhost:5115 - localhost:5115 + Debugger: + Razhroščevalnik + + + Local executable: + + + + Sysroot: + Subversion::Internal::SettingsPage - - Subversion Command: - Ukaz Subversion: - - - Authentication Overjanje - - User name: - Uporabniško ime: - - - Password: Geslo: - Subversion Subversion - - Prompt to submit - + Configuration + Nastavitve - - Form - Obrazec + Subversion command: + Ukaz Subversion: - - - Subversion::Internal::SettingsPageWidget - - Subversion Command - Ukaz Subversion + Username: + Uporabniško ime: - - - Subversion::Internal::SubversionPlugin - - &Subversion - &Subversion + Miscellaneous + Razno - - Add - Dodaj + Timeout: + Zakasnitev: - - Add "%1" - + s + s - - Alt+S,Alt+A - + Prompt on submit + - - Delete - Izbriši + Ignore whitespace changes in annotation + - - Delete "%1" + Log count: + + + Subversion::Internal::SettingsPageWidget + + Subversion Command + Ukaz Subversion + + + + Subversion::Internal::SubversionPlugin - - Revert - Povrni + &Subversion + &Subversion - - Revert "%1" + Add + Dodaj + + + Add "%1" + Dodaj + + + Alt+S,Alt+A - Diff Project - + - Diff Current File - + - Diff "%1" - + Diff - Alt+S,Alt+D - + - Commit All Files - + - Commit Current File - + - Commit "%1" - + Uveljavi - Alt+S,Alt+C - + - Filelog Current File - + - Filelog "%1" - Annotate Current File - + - Annotate "%1" - + Dodaj opombo - Describe... Opis ... - Project Status Stanje projekta - Update Project Posodobi projekt - Commit - + Uveljavi - Diff Selected Files - + - &Undo &Razveljavi - &Redo &Uveljavi - Closing Subversion Editor Zapiranje urejevalnika Subversion - Do you want to commit the change? - + - The commit message check failed. Do you want to commit the change? - - - - - The commit list spans several repositories (%1). Please commit them one by one. - Executing: %1 %2 - Executing: <executable> <arguments> - - + %1 Izvajanje: %2 %3 + - The file has been changed. Do you want to revert it? Datoteka je bila spremenjena. Ali jo želite povrniti? - + Delete... + &Zbriši + + + Delete "%1"... + &Zbriši + + + Revert... + Povrni ... + + + Revert "%1"... + Povrni + + + Diff Project "%1" + + + + Status of Project "%1" + + + + Log Project + + + + Log Project "%1" + + + + Update Project "%1" + Posodobi projekt + + + Commit Project + + + + Commit Project "%1" + + + + Diff Repository + + + + Repository Status + + + + Log Repository + + + + Update Repository + + + + Revert Repository... + + + + Revert repository + + + + Would you like to revert all changes to the repository? + + + + Revert failed: %1 + + + Another commit is currently being executed. - + - There are no modified files. Ni spremenjenih datotek. - Cannot create temporary file: %1 Ni moč ustvariti začasne datoteke: %1 - Describe Opis - Revision number: Številka različice: - + Executing in %1: %2 %3 + + + + No subversion executable specified! Določen ni noben program Subversion. - The process terminated with exit code %1. Proces se je končal z izhodno kodo %1. - The process terminated abnormally. Proces se ni končal normalno. - Could not start subversion '%1'. Please check your settings in the preferences. Ni bilo moč zagnati subversion »%1«. Preverite nastavitve. - Subversion did not respond within timeout limit (%1 ms). Subversion se v za to namenjenem času (%1 ms) ni odzval. - - - Add %1 - Dodaj %1 - - - - Delete %1 - Izbriši %1 - - - - Revert %1 - Povrni %1 - - - - %1 Executing: %2 %3 - - <timestamp> Executing: <executable> <arguments> - - %1 Izvajanje: %2 %3 - - Subversion::Internal::SubversionSubmitEditor - Subversion Submit - + TextEditor::BaseFileFind - - %1 found najdenih: %1 - List of comma separated wildcard filters Seznam z vejico ločenih filtrov z nadomestitelji - - Use Regular E&xpressions - Uporabi &regularne izraze + Use regular e&xpressions + Uporabi regularne izraze TextEditor::BaseTextDocument - untitled neimenovana - <em>Binary data</em> <em>Dvojiški podatki</em> @@ -11984,17 +8893,14 @@ p, li { white-space: pre-wrap; } TextEditor::BaseTextEditor - Print Document Natisni dokument - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. <b>Napaka:</b> »%1« ni moč dekodirati z naborom znakov »%2«. Urejanje ni možno. - Select Encoding Izberite nabor znakov @@ -12002,12 +8908,10 @@ p, li { white-space: pre-wrap; } TextEditor::BaseTextEditorEditable - Line: %1, Col: %2 Vrstica: %1, Stolpec: %2 - Line: %1, Col: 999 Vrstica: %1, Stolpec: 999 @@ -12015,275 +8919,241 @@ p, li { white-space: pre-wrap; } TextEditor::BehaviorSettingsPage - Storage Shranjevanje - Removes trailing whitespace on saving. Pri shranjevanju odstrani presledke na koncu vrstic. - &Clean whitespace &Počisti presledke - Clean whitespace in entire document instead of only for changed parts. Počisti presledke v celotnem dokumentu in ne samo v spremenjenih vrsticah. - In entire &document V celotnem &dokumentu - Correct leading whitespace according to tab settings. Popravi presledke na začetku vrstic v skladu z nastavitvami tabulatorja. - Clean indentation Počisti zamikanje - &Ensure newline at end of file &Zagotovi novo vrstico na koncu datoteke - Tabs and Indentation Tabulator in zamikanje - Ta&b size: Velikost &tabulatorja: - &Indent size: Velikost &zamika: - Backspace will go back one indentation level instead of one space. Vračalka gre nazaj za en zamik in ne za en presledek. - &Backspace follows indentation &Vračalka sledi zamikom - Insert &spaces instead of tabs Vstavi &presledke in ne tabulatorjev - Enable automatic &indentation Omogoči &samodejno zamikanje - Tab key performs auto-indent: Tabulator izvede samodejni zamik: - Never Nikoli - Always Vedno - - In leading white space - V praznini na začetku + Automatically determine based on the nearest indented line (previous line preferred over next line) + - - Form - Obrazec + Based on the surrounding lines + + + + Block indentation style: + + + + Exclude Braces + + + + Include Braces + + + + GNU Style + + + + In Leading White Space + V praznini na začetku + + + Mouse + Miška + + + Enable &mouse navigation + Omogoči navigacijo z &miško + + + Enable scroll &wheel zooming + TextEditor::DisplaySettingsPage - Display Prikaz - Display line &numbers Prikaži &številke vrstic - Display &folding markers Prikaži &oznake za zvijanje - Show tabs and spaces. Prikaži tabulatorje in presledke. - &Visualize whitespace &Poudari presledke - Highlight current &line Poudari &trenutno vrstico - Text Wrapping Prelamljanje besedila - Enable text &wrapping Omogoči pre&lamljanje vrstic - Display right &margin at column: Prikaži desni &rob pri stolpcu: - Highlight &blocks Poudari &bloke - - Animate matching parentheses - Animiraj ujemanje oklepajev - - - - Navigation - Navigacija - - - - Enable &mouse navigation - Omogoči navigacijo z &miško + Mark &text changes + Označi spremembe besedila - - Mark text changes - Označi spremembe besedila + &Animate matching parentheses + Animiraj ujemanje oklepajev - - Form - Obrazec + Auto-fold first &comment + - - Use fancy style - Uporabi razkošen slog + Center &cursor on scroll + TextEditor::FontSettingsPage - - Font & Colors - Pisave in barve - - - Copy Color Scheme Skopiraj barvno shemo - - Color Scheme name: - Ime barvne sheme: + Font && Colors + Pisave in barve + + + Color scheme name: + Ime barvne sheme: - %1 (copy) %1 (kopija) - Delete Color Scheme Izbriši barvno shemo - Are you sure you want to delete this color scheme permanently? Ali res želite trajno zbrisati to barvno shemo? - Delete Izbriši - Color Scheme Changed Spremenjena barvna shema - The color scheme "%1" was modified, do you want to save the changes? Barvna shema »%1« je bila spremenjena. Ali želite shraniti spremembe? - Discard Zavrzi - - - - This is only an example. - - To je samo primer. - TextEditor::Internal::CodecSelector - Text Encoding Nabor znakov - The following encodings are likely to fit: Naslednji nabori znakov so verjetno ustrezni: - Select encoding for "%1".%2 Izberite nabor znakov za »%1«.%2 - Reload with Encoding Znova naloži z naborom znakov - Save with Encoding Shrani z naborom znakov @@ -12291,27 +9161,22 @@ Naslednji nabori znakov so verjetno ustrezni: TextEditor::Internal::FindInFiles - - Files on Disk - Datoteke na disku + Files on File System + - &Directory: &Mapa: - &Browse &Brskanje - File &pattern: Datotečni &vzorec: - Directory to search Išči v mapi @@ -12319,90 +9184,49 @@ Naslednji nabori znakov so verjetno ustrezni: TextEditor::Internal::FontSettingsPage - Font Pisava - Family: Družina: - Size: Velikost: - Color Scheme Barvna shema - Antialias Glajenje robov - Copy... Skopiraj ... - Delete Izbriši - - Bold - Polkrepko - - - - Italic - Ležeče - - - - Background: - Ozadje: - - - - Foreground: - Ospredje: - - - - Erase background - Počisti ozadje - - - - x - x - - - - Preview: - Ogled: + % + - - Form - Obrazec + Zoom: + Povečava: TextEditor::Internal::LineNumberFilter - Line in current document Vrstica v trenutnem dokumentu - Line %1 Vrstica %1 @@ -12410,290 +9234,309 @@ Naslednji nabori znakov so verjetno ustrezni: TextEditor::Internal::TextEditorPlugin - - Creates a text file (.txt). - Ustvari besedilno datoteko (*.txt). + Creates a text file. The default file extension is <tt>.txt</tt>. You can specify a different extension as part of the filename. + - Text File Besedilna datoteka - General Splošno - Triggers a completion in this scope Sproži dokončevanje v tem obsegu - Ctrl+Space - + - Meta+Space - + - Triggers a quick fix in this scope Sproži hiter popravek v tem obsegu - Alt+Return - - - This creates a new text file (.txt) - To ustvari novo datoteko z besedilom (*.txt) - TextEditor::TextEditorActionHandler - &Undo &Razveljavi - &Redo &Uveljavi - Select Encoding... Izbor nabora znakov ... - Auto-&indent Selection Samodejno &zamakni izbor - Ctrl+I - + CTRL+I - &Visualize Whitespace &Poudari presledke - Clean Whitespace Počisti presledke - Enable Text &Wrapping Omogoči pre&lamljanje vrstic - (Un)Comment &Selection Za&komentiraj/odkomentiraj izbor - Ctrl+/ - + Ctrl - Delete &Line Izbriši &vrstico - Shift+Del - + - Meta - + Meta - Ctrl - + Ctrl - &Rewrap Paragraph - %1+E, R - %1+E, %2+V - %1+E, %2+W - Cut &Line Izreži &vrstico - Collapse Skrči - Ctrl+< - + Ctrl - Expand Razširi - Ctrl+> - + Ctrl - (Un)&Collapse All Raz&širi/skrči vse - Increase Font Size Povečaj velikost pisave - Ctrl++ - + Ctrl - Decrease Font Size Zmanjšaj velikost pisave - Ctrl+- - + Ctrl - - Goto Block Start - Pojdi na začetek bloka + Reset Font Size + Ponastavi velikost pisave - - Ctrl+[ - + Ctrl+0 + Ctrl - - Goto Block End - Pojdi na konec bloka + Go to Block Start + - - Ctrl+] - + Go to Block End + - - Goto Block Start With Selection - Izberi do začetka bloka + Go to Block Start With Selection + - - Ctrl+{ - + Go to Block End With Selection + - - Goto Block End With Selection - Izberi do konca bloka + Ctrl+[ + Ctrl - - Ctrl+} - + Ctrl+] + Ctrl + + + Ctrl+{ + Ctrl + + + Ctrl+} + Ctrl - Select Block Up Izberi blok gor - Ctrl+U - + CTRL+U - Select Block Down Izberi blok dol - Move Line Up Pojdi za vrstico gor - Ctrl+Shift+Up - + - Move Line Down Pojdi za vrstico dol - Ctrl+Shift+Down - + - Copy Line Up Skopiraj vrstico navzgor - Ctrl+Alt+Up - Copy Line Down Skopiraj vrstico navzdol - Ctrl+Alt+Down - + Join Lines + Združi vrstice + + + Ctrl+J + + + + Goto Line Start + + + + Goto Line End + + + + Goto Next Line + + + + Goto Previous Line + + + + Goto Previous Character + + + + Goto Next Character + + + + Goto Previous Word + + + + Goto Next Word + + + + Goto Line Start With Selection + + + + Goto Line End With Selection + + + + Goto Next Line With Selection + + + + Goto Previous Line With Selection + + + + Goto Previous Character With Selection + + + + Goto Next Character With Selection + + + + Goto Previous Word With Selection + + + + Goto Next Word With Selection + + + <line number> <številka vrstice> @@ -12701,159 +9544,122 @@ Naslednji nabori znakov so verjetno ustrezni: TextEditor::TextEditorSettings - Text Besedilo - Link Povezava - Selection Izbor - Line Number Številka vrstice - Search Result Rezultat iskanja - Search Scope Obseg iskanja - Parentheses Oklepaji - Current Line Trenutna vrstica - Current Line Number Številka trenutne vrstice - Occurrences Pojavitve - Unused Occurrence Neuporabljena pojavitev - Renaming Occurrence Preimenovanje pojavitve - Number Številka - String Niz - Type Vrsta - Keyword Ključna beseda - Operator Operator - Preprocessor Predprocesor - Label Oznaka - Comment Komentar - Doxygen Comment Komentar Doxygen - Doxygen Tag Oznaka Doxygen - Visual Whitespace Vidna praznina - Disabled Code Onemogočena koda - Added Line Dodana vrstica - Removed Line Odstranjena vrstica - Diff File - + - Diff Location - - - - - - - Text Editor - Urejevalnik besedil + - Behavior Obnašanje - Display Prikaz @@ -12861,27 +9667,22 @@ Naslednji nabori znakov so verjetno ustrezni: TopicChooser - Choose a topic for <b>%1</b>: Izberite temo za <b>%1</b>: - Choose Topic Izberite temo - &Topics &Teme - &Display &Prikaz - &Close &Zapri @@ -12889,41 +9690,37 @@ Naslednji nabori znakov so verjetno ustrezni: VCSBase - - Version Control Nadzor različic - Common Splošno + + Project from Version Control + + VCSBase::Internal::NickNameDialog - Name Ime - E-mail E-pošta - Alias Drugo ime - Alias e-mail Druga e-pošta - Cannot open '%1': %2 Ni moč odpreti »%1«: %2 @@ -12931,12 +9728,10 @@ Naslednji nabori znakov so verjetno ustrezni: VCSBase::SubmitFileModel - State Stanje - File Datoteka @@ -12944,7 +9739,14 @@ Naslednji nabori znakov so verjetno ustrezni: VCSBase::VCSBaseEditor - + Annotate "%1" + Dodaj opombo + + + Copy "%1" + Kopiraj + + Describe change %1 Opis spremembe %1 @@ -12952,105 +9754,57 @@ Naslednji nabori znakov so verjetno ustrezni: VCSBase::VCSBaseSubmitEditor - Check message Preveri sporočilo - Insert name... Vstavi ime ... - Prompt to submit - Submit Message Check failed - - - - - Unable to open '%1': %2 - Ni moč odpreti »%1«: %2 - - - - The check script '%1' could not be started: %2 - Ni bilo moč zagnati skripta za preverjanje »%1«: %2 - - - - The check script '%1' could not be run: %2 - Ni bilo moč zagnati skripta za preverjanje »%1«: %2 - - - - The check script returned exit code %1. - Skript za preverjanje je vrnil izhodno kodo %1. - - - - VCSBaseSettingsPage - - - 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: - + Executing %1 + - - A file listing user names and email addresses in a 4-column mailmap format: -name <email> alias <email> - Datoteka s seznamom imen in e-poštnih naslovov v formatu mailmap s 4 stolpci: -ime <e-pošta> drugo_ime <druga_e-pošta> + Executing [%1] %2 + - - User/alias configuration file: - Nastavitvena datoteka: + Unable to open '%1': %2 + Ni moč odpreti »%1«: %2 - - A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. - + The check script '%1' could not be started: %2 + Ni bilo moč zagnati skripta za preverjanje »%1«: %2 - - User fields configuration file: - Nastavitvena datoteka s polji po meri: + The check script '%1' timed out. + - - Common - Splošno + The check script '%1' crashed + - - Form - Obrazec + The check script returned exit code %1. + Skript za preverjanje je vrnil izhodno kodo %1. VCSManager - Version Control Nadzor različic - Would you like to remove this file from the version control system (%1)? Note: This might remove the local file. Ali želite odstraniti to datoteko iz sistema za nadzor različic (%1)? @@ -13060,104 +9814,73 @@ Vedite: to lahko odstrani krajevno datoteko. ViewDialog - Send to Codepaster Pošlji na CodePaster - &Username: &Uporabniško ime: - <Username> <uporabniško ime> - &Description: &Opis: - <Description> <opis> - Patch 1 Popravek 1 - Patch 2 Popravek 2 - Protocol: Protokol: - <!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;"> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; 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;Comment&gt;</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!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;komentar&gt;</span></p></body></html> - - Parts to send to server - Deli, ki bodo poslani na strežnik - - - - <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> - <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;komentar&gt;</p></body></html> - - - - Parts to send to codepaster - Deli, ki bodo poslani na CodePaster + Parts to Send to Server + Deli, ki bodo poslani na strežnik mainClass - main glavni - Text1: Besedilo1: - N/A Ni na voljo - Text2: Besedilo2: - Text3: Besedilo3: @@ -13165,17 +9888,14 @@ p, li { white-space: pre-wrap; } Utils::CheckableMessageBox - Dialog Pogovorno okno - TextLabel BesedilaOznaka - CheckBox PotrditvenoPolje @@ -13183,131 +9903,127 @@ p, li { white-space: pre-wrap; } Utils::WizardPage - - Choose the location - Izberite lokacijo - - - Name: Ime: - Path: Pot: + + Choose the Location + Izberite lokacijo + Utils::NewClassWidget - - Class name: - Ime razreda: + Inherits QObject + Podeduje QObject - - Base class: - Osnovni razred: + Invalid base class name + Neveljavno ime osnovnega razreda - - Header file: - Datoteka z glavo: + Invalid header file name: '%1' + Neveljavno ime datoteke z glavo: »%1« - - Source file: - Datoteka z izvorno kodo: + Invalid source file name: '%1' + Neveljavno ime datoteke z izvorno kodo: »%1« - - Generate form: - Ustvari obrazec: + Invalid form file name: '%1' + Neveljavno ime datoteke z obrazcem: »%1« - - Form file: - Datoteka z obrazcem: + &Class name: + Ime razreda: - - Path: - Pot: + &Base class: + Osnovni razred: - - Inherits QObject - Podeduje QObject + &Type information: + - - Invalid base class name - Neveljavno ime osnovnega razreda + None + Brez - - Invalid header file name: '%1' - Neveljavno ime datoteke z glavo: »%1« + Inherits QWidget + - - Invalid source file name: '%1' - Neveljavno ime datoteke z izvorno kodo: »%1« + Based on QSharedData + - - Invalid form file name: '%1' - Neveljavno ime datoteke z obrazcem: »%1« + &Header file: + Datoteka z glavo: + + + &Source file: + Izvorna datoteka + + + &Generate form: + Ustvari obrazec: + + + &Form file: + Datoteka z obrazcem: + + + &Path: + &Pot: Utils::ProjectIntroPage - Introduction and project location Uvod in lokacija projekta - Name: Ime: - Create in: Ustvari v: - <Enter_Name> <vnesite ime> - The project already exists. Projekt že obstaja. - A file with that name already exists. Datoteka s tem imenom že obstaja. + + Use as default project location + + Utils::SubmitEditorWidget - Subversion Submit - Des&cription &Opis - F&iles &Datoteke @@ -13315,179 +10031,121 @@ p, li { white-space: pre-wrap; } PasteBinComSettingsWidget - Form Obrazec - - Server Prefix: - Predpona strežnika: + Server prefix: + Predpona strežnika: - - <!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;"><a href="http://pastebin.com"><span style=" text-decoration: underline; color:#0000ff;">pastebin.com</span></a><span style=" font-size:8pt;"> allows to send posts to custom subdomains (eg. qtcreator.pastebin.com). Fill in the desired prefix.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Note that the plugin will use this for posting as well as fetching.</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;"><a href="http://pastebin.com"><span style=" text-decoration: underline; color:#0000ff;">pastebin.com</span></a><span style=" font-size:8pt;"> omogoča pošiljati na poddomene po meri (npr. qtcreator.pastebin.com). Vnesite želeno predpono.</span></p> -<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vedite, da bo vstavek to uporabil tako za pošiljanje kot tudi za pridobivanje.</span></p></body></html> + <html><head/><body> +<p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> +<p>Note that the plugin will use this for posting as well as fetching.</p></body></html> + CVS::Internal::SettingsPage - - Prompt to submit - + CVS + CVS - - 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. - + Configuration + Nastavitve - - Describe all files matching commit id: + CVS command: - - CVS Command: + CVS root: - - CVS Root: - + Miscellaneous + Razno - - Diff Options: - + Diff options: + Možnosti diff - - CVS + Prompt on submit - - - Debugger::Internal::TrkOptionsWidget - - - Form - Obrazec - - - - Gdb - GDB - - - - Symbian ARM gdb location: - Lokacija GDB-ja za Symbian ARM: - - - - Communication - Komunikacija - - - Serial Port - Zaporedna vrata + 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. + - - Bluetooth - Bluetooth + Describe all files matching commit id + - - Port: - Vrata: + Timeout: + Zakasnitev: - - Device: - Naprava: + s + s Designer::Internal::CppSettingsPageWidget - Form Obrazec - Embedding of the UI Class Vgrajevanje razreda uporabniškega vmesnika - Aggregation as a pointer member Združevanje s kazalcem kot članom - Aggregation Združevanje - - Multiple Inheritance - Dedovanje od večih - - - Code Generation Ustvarjanje kode - Support for changing languages at runtime Podpora za preklapljanje jezikov med tekom - Use Qt module name in #include-directive V navodilu #include uporabi ime modula Qt + + Multiple inheritance + Dedovanje od večih + Gitorious::Internal::GitoriousHostWidget - ... ... - <New Host> <nov gostitelj> - Host Gostitelj - Projects Projekti - Description Opis @@ -13495,32 +10153,22 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousProjectWidget - WizardPage StranČarovnika - - Filter: - Filter: - - - ... ... - Keep updating Redno posodabljaj - Project Projekt - Description Opis @@ -13528,62 +10176,46 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousRepositoryWizardPage - WizardPage StranČarovnika - - Filter: - Filter: - - - - ... - ... - - - Name Ime - Owner Lastnik - Description Opis - + Repository + Skladišče + + Choose a repository of the project '%1'. Izberite skladišče za projekt »%1«. - Mainline Repositories Glavna skladišča - Clones Kloni - Baseline Repositories Osnovna skladišča - Shared Project Repositories - Personal Repositories Osebna skladišča @@ -13591,190 +10223,154 @@ p, li { white-space: pre-wrap; } GeneralSettingsPage - Form Obrazec - Font Pisava - Family: Družina: - Style: Slog: - Size: Velikost: - Startup Zagon - On context help: Kontekstna pomoč: - - Show side-by-side if possible - Prikaži ob strani, če je možno + On help start: + Ob zagonu pomoči: - - Always show side-by-side - Vedno prikaži ob strani + Use &Current Page + Uporabi &trenutno stran - - Always start full help - Vedno zaženi polno pomoč + Use &Blank Page + Uporabi &prazno stran - - On help start: - Ob zagonu pomoči: + Restore to Default + Ponastavi na privzeto - - Show my home page - Prikaži mojo domačo stran + Help Bookmarks + Zaznamki pomoči - - Show a blank page - Prikaži prazno stran + Import... + Uvozi ... - - Show my tabs from last session - Prikaži moje zavihke iz zadnje seje + Export... + Izvozi ... - - Home Page: - Domača stran: + Show Side-by-Side if Possible + Prikaži ob strani, če je možno - - Use &Current Page - Uporabi &trenutno stran + Always Show Side-by-Side + Vedno prikaži ob strani - - Use &Blank Page - Uporabi &prazno stran + Always Start Full Help + Vedno zaženi polno pomoč - - Restore to Default - Ponastavi na privzeto + Show My Home Page + Prikaži mojo domačo stran - - Help Bookmarks - Zaznamki pomoči + Show a Blank Page + Prikaži prazno stran - - Import... - Uvozi ... + Show My Tabs from Last Session + Prikaži moje zavihke iz zadnje seje - - Export... - Izvozi ... + Home page: + Domača stran: Locator::Internal::DirectoryFilterOptions - Name: Ime: - - File Types: - Vrste datotek: - - - Specify file name filters, separated by comma. Filters may contain wildcards. Določite filtre imen datotek, ločenih z vejico. Filtri lahko vsebujejo nadomestitelje. - Prefix: Predpona: - 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. Določite kratko besedo ali okrajšavo, ki se lahko uporabi za omejitev dokončevanja za datoteke iz tega drevesa map. Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskano besedo. - Limit to prefix Omeji na predpono - Add... Dodaj ... - Edit... Urejanje ... - Remove Odstrani - Directories: Mape: + + File types: + Vrste datotek: + Locator::Internal::FileSystemFilterOptions - Filter configuration Nastavitev filtra - Prefix: Predpona: - Limit to prefix Omeji na predpono - Include hidden files Vključi skrite datoteke - Filter: Filter: @@ -13782,116 +10378,119 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::Internal::SettingsWidget - Configure Filters Nastavitev filtrov - Add Dodaj - Remove Odstrani - Edit Urejanje - - Refresh Interval: - Čas med osvežitvami: - - - min min + + Refresh interval: + interval osveževanja: + ProjectExplorer::Internal::ProjectExplorerSettingsPageUi - Build and Run Zgradi in zaženi - - Save all files before Build - Pred gradnjo shrani vse datoteke + Use jom instead of nmake + Namesto nmake uporabi jom - - Always build Project before Running - Pred zagonom vedno zgradi projekt + Projects Directory + - - Show Compiler Output on building - Pri gradnji prikaži izhod prevajalnika + Current directory + - - Use jom instead of nmake - Namesto nmake uporabi jom + directoryButtonGroup + - - <i>jom</i> is a drop-in replacement for <i>nmake</i> which distributes the compilation process to multiple CPU cores. For more details, see the <a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a>. Disable it if you experience problems with your builds. - <i>jom</i> je nadomestek za <i>nmake</i>, ki prevajanje porazdeli med več jedri CPE-ja. Za podrobnosti si oglejte <a href="http://qt.gitorious.org/qt-labs/jom/">domačo stran jom-a</a>. Onemogočite ga, če se med gradnjami pojavljajo težave. + Directory + Mapa + + + Save all files before build + Pred gradnjo shrani vse datoteke + + + Always build project before running + Pred zagonom vedno zgradi projekt + + + Show compiler output on building + Pri gradnji prikaži izhod prevajalnika + + + Clear old application output on a new run + + + + <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="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Disable it if you experience problems with your builds. + ProjectExplorer::Internal::ProjectWelcomePageWidget - Form Obrazec - Manage Sessions... Upravljanje s sejami ... - - Create New Project... - Ustvari nov projekt ... + %1 (last session) + %1 (zadnja seja) - - Open Recent Project - Odpri nedavni projekt + %1 (current session) + %1 (trenutna seja) - - Resume Session - Nadaljuj sejo + New Project + Nov projekt - - %1 (last session) - %1 (zadnja seja) + Recent Sessions + - - %1 (current session) - %1 (trenutna seja) + Recent Projects + Nedavni projekti - - New Project... - Nov projekt ... + Open Project... + Odpri projekt + + + Create Project... + Ustvari projekt ProjectWelcomePage - Form Obrazec @@ -13899,132 +10498,106 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Qt4ProjectManager::Internal::ClassDefinition - Form Obrazec - The header file Datoteka z glavo - &Sources &Izvorna koda - Widget librar&y: &Knjižnica gradnika: - Widget project &file: &Projektna datoteka gradnika: - Widget h&eader file: Datoteka z &glavo gradnika: - The header file has to be specified in source code. Datoteka z glavo mora biti določena v izvorni kodi. - Widge&t source file: Datoteka z i&zvorno kodo gradnika: - Widget &base class: &Osnovni razred gradnika: - QWidget QWidget - Plugin class &name: I&me razreda vstavka: - Plugin &header file: D&atoteka z glavo vstavka: - Plugin sou&rce file: Datoteka z iz&vorno kodo vstavka: - Icon file: Datoteka z ikono: - &Link library Pov&eži knjižnico - Create s&keleton &Ustvari ogrodje - Include pro&ject Vstavi pro&jekt - &Description &Opis - G&roup: &Skupina: - &Tooltip: &Namig: - W&hat's this: &Kaj je to: - The widget is a &container &Gradnik je vsebnik - Property defa&ults Privzeto &za lastnosti - dom&XML: dom&XML: - Select Icon Izbor ikone - Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) Datoteke z ikono (*.png *.ico *.jpg *.xpm *.tif *.svg) @@ -14032,47 +10605,38 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Qt4ProjectManager::Internal::CustomWidgetPluginWizardPage - WizardPage StranČarovnika - Plugin and Collection Class Information Podatki o vstavku in razredu zbirke - Specify the properties of the plugin library and the collection class. Določite lastnosti knjižnice vstavka in razreda zbirke. - Collection class: Razred zbirke: - Collection header file: Datoteka z glavo zbirke: - Collection source file: Datoteka z izvirno kodo zbirke: - Plugin name: Ime vstavka: - Resource file: Datoteka z viri: - icons.qrc icons.qrc @@ -14080,289 +10644,242 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Qt4ProjectManager::Internal::CustomWidgetWidgetsWizardPage - Custom Qt Widget Wizard Čarovnik za gradnike Qt po meri - Custom Widget List Seznam gradnikov po meri - Widget &Classes: &Razredi gradnikov: - Specify the list of custom widgets and their properties. Določite seznam gradnikov po meri in njihovih lastnosti. + + ... + ... + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget - Form Obrazec - - Examples not installed - Primeri niso nameščeni - - - - Open - Odpri - - - Tutorials Vodniki - - Explore Qt Examples - Raziščite primere za Qt - - - Did You Know? Ali ste vedeli? - - <b>Qt Creator - A quick tour</b> - <b>Qt Creator - hitri vodič</b> + The Qt Creator User Interface + - - Creating an address book - Ustvarjanje adresarja + Building and Running an Example + - - Understanding widgets - Razumevanje gradnikov + Creating a Qt C++ Application + - - Building with qmake - Grajenje s qmake + Creating a Mobile Application + - - Writing test cases - Pisanje preizkusnih primerov + Creating a Qt Quick Application + - Choose an example... Izberite primer ... - Copy Project to writable Location? Ali želite skopirati projekt na zapisljivo lokacijo? - <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>Projekt, ki ga boste odprli, se nahaja na lokaciji, kamor ni moč pisati:</p><blockquote>%1</blockquote><p>Spodaj izberite zapisljivo lokacijo in kliknite »Skopiraj projekt in ga odpri«, da odprete kopijo projekta, ki ga bo moč spreminjati. V nasprotnem primeru kliknite »Obdrži projekt in ga odpri«, da odprete projekt s trenutne lokacije.</p><p><b>Vedite:</b> Če se odločite za trenutno lokacijo, projekta ne boste mogli spreminjati in prevajati.</p> - &Location: &Lokacija: - &Copy Project and Open &Skopiraj projekt in ga odpri - &Keep Project and Open &Obdrži projekt in ga odpri - Warning Opozorilo - The specified location already exists. Please specify a valid location. Navedena lokacija že obstaja. Določite drugo lokacijo. - - + New Project + Nov projekt + + Cmd Shortcut key - Alt Shortcut key - + Alt - Ctrl Shortcut key + Ctrl + + + If you add external libraries to your project, Qt Creator will automatically offer syntax highlighting and code completion. - - You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li><li></li><li>6 - Output</li></ul> - Med Qt Creatorjevimi načini lahko preklapljate s <tt>Ctrl+številka</tt>:<ul><li>1 - Dobrodošli</li><li>2 - Urejanje</li><li>3 - Razhroščevanje</li><li>4 - Projekti</li><li>5 - Pomoč</li><li></li><li>6 - Izhod</li></ul> + Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">dependencies</a> between projects. + Znotraj seje lahko dodate <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">odvisnosti</a> med projekti. + + + 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. + - You can show and hide the side bar using <tt>%1+0<tt>. - %1 gets replaced by Alt (Win/Unix) or Cmd (Mac) - Stranski pas lahko prikažete in skrijete z <tt>%1+0<tt>. - You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. <tt>Iskanje</tt> lahko nastavljate z izbiro možnosti &quot;Cele besede&quot; ali &quot;Občutljivo na velikost&quot;. Za to kliknite na ikono, ki je na desni strani iskalnega polja. - - If you add <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">external libraries</a>, Qt Creator will automatically offer syntax highlighting and code completion. - Če dodate <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">zunanje knjižnice</a>, bo Qt Creator zanje samodejno ponudil poudarjanje skladnje in dokončevanje kode. - - - The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. Dokončevanje kode se zaveda KameljeOblike. Na primer, da dokončate <tt>namespaceUri</tt>, preprosto vtipkajte <tt>nU</tt> in pritisnite <tt>Ctrl+Preslednica</tt>. - You can force code completion at any time using <tt>Ctrl+Space</tt>. Dokončevanje kode lahko kadarkoli vsilite z uporabo <tt>Ctrl+Preslednica</tt>. - You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. Qt Creator lahko zaženete s sejo, tako da uporabite ukaz <tt>qtcreator &lt;ime_seje&gt;</tt>. - You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. V način urejanja se iz kateregakoli drugega načina lahko kadarkoli vrnete z uporabo tipke <tt>Ubežnice</tt>. - You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> - %1 gets replaced by Alt (Win/Unix) or Cmd (Mac) - Med podokni z izhodom lahko preklapljate z uporabo <tt>%1+n</tt>, kjer je n številka, ki je napisana na gumbih na dnu okna:<ul><li>1 - Težave pri gradnji</li><li>2 - Rezultati iskanja</li><li>3 - Izhod programa</li><li>4 - Izhod prevajanja</li></ul> - You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). Metode, razrede, pomoč in ostalo lahko hitro najdete z uporabo <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Lokatorja</a> (<tt>%1+K</tt>). - You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. Korake gradnje po meri lahko dodate v <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">nastavitvah gradnje</a>. - - Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">dependencies</a> between projects. - Znotraj seje lahko dodate <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">odvisnosti</a> med projekti. - - - You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. Želeni nabor znakov za urejevalnik lahko za vsak projekt nastavite v <tt>Projekti → Nastavitve urejevalnika → Privzeti nabor znakov</tt>. - - You can modify the binary that is being executed when you press the <tt>Run</tt> button: Add a <tt>Custom Executable</tt> by clicking the <tt>+</tt> button in <tt>Projects -> Run Settings -> Run Configuration</tt> and then select the new target in the combo box. - Program, ki se zažene pri pritisku gumba <tt>Zaženi</tt>, lahko spremenite: Dodajte <tt>Izvršljivo datoteko po meri</tt>, tako da v <tt>Projekti → Nastavitve za zagon → Urejanje nastavitev za zagon</tt> kliknete gumb <tt>Dodaj</tt> in nato novi program izberete s spustnega seznama. - - - You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. Qt Creator lahko uporabljate z več <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">sistemi za nadzor različic</a>, kot so na primer Git, Subversion, CVS in Perforce. - - In the editor, <tt>F2</tt> toggles declaration and definition while <tt>F4</tt> toggles header file and source file. - V urejevalniku <tt>F2</tt> preklopi med deklaracijo in definicijo, medtem ko <tt>F4</tt> preklopi med datoteko z glavo in datoteko z izvorno kodo. + Explore Qt C++ Examples + + + + Examples not installed... + Primeri niso nameščeni + + + Explore Qt Quick Examples + + + + Open Project... + Odpri projekt + + + Create Project... + Ustvari projekt Qt4ProjectManager::Internal::S60DevicesPreferencePane - Form Obrazec - - Installed S60 SDKs: - Nameščeni S60 SDK-ji: + Refresh + Osveži - - SDK Location - Lokacija SDK-ja + S60 SDKs + S60 SDK-ji - - Qt Location - Lokacija Qt + Add + Dodaj - - Refresh - Osveži + Change Qt version + - - S60 SDKs - S60 SDK-ji + Remove + Odstrani + + + Error + Napaka TextEditor::Internal::ColorSchemeEdit - Bold Polkrepko - Italic Ležeče - Background: Ozadje: - Foreground: Ospredje: - Erase background Počisti ozadje - x x @@ -14370,17 +10887,14 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan VCSBase::BaseCheckoutWizardPage - WizardPage StranČarovnika - Checkout Directory: - Path: Pot: @@ -14388,71 +10902,53 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Welcome::Internal::CommunityWelcomePageWidget - Form Obrazec - News From the Qt Labs Novice s Qt Labs - - Qt Websites - Spletne strani o Qt + <b>Forum Nokia</b><br /><font color='gray'>Mobile Application Support</font> + - - http://labs.trolltech.com/blogs/feed - Add localized feed here only if one exists - - http://labs.trolltech.com/blogs/feed + <b>Qt LGPL Support</b><br /><font color='gray'>Buy commercial Qt support</font> + - - Qt Home - Domača stran Qt + <b>Qt Centre</b><br /><font color='gray'>Community based Qt support</font> + - - Qt Labs - Qt Labs + <b>Qt Home</b><br /><font color='gray'>Qt by Nokia on the web</font> + - - Qt Git Hosting - Gostovanje Git za Qt + <b>Qt Git Hosting</b><br /><font color='gray'>Participate in Qt development</font> + - - Qt Centre - Qt Centre + <b>Qt Apps</b><br /><font color='gray'>Find free Qt-based apps</font> + - - Qt Apps - Qt Apps + http://labs.trolltech.com/blogs/feed + http://labs.trolltech.com/blogs/feed - - Qt for Symbian at Forum Nokia - Qt za Symbian na Forum Nokia + Qt Support Sites + + + + Qt Links + Welcome::WelcomeMode - - #gradientWidget { - background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); -} - #gradientWidget { - background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); -} - - - #headerFrame { border-image: url(:/welcome/images/center_frame_header.png) 0; border-width: 0; @@ -14465,17 +10961,14 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan - Help us make Qt Creator even better Pomagajte nam še izboljšati Qt Creatorja - Feedback Odziv - Welcome Dobrodošli @@ -14483,17 +10976,14 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Utils::ClassNameValidatingLineEdit - The class name must not contain namespace delimiters. Ime razreda ne sme vsebovati ločiteljev imenskega prostora. - Please enter a class name. Vnesite ime razreda. - The class name contains invalid characters. Ime razreda vsebuje neveljavne znake. @@ -14501,62 +10991,50 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Utils::ConsoleProcess - Cannot set up communication channel: %1 Ni moč vzpostaviti komunikacijskega kanala: %1 - Press <RETURN> to close this window... Da zaprete to okno, pritisnite <Vnašalko> ... - Cannot create temporary file: %1 Ni moč ustvariti začasne datoteke: %1 - Cannot create temporary directory '%1': %2 Ni moč ustvariti začasne mape »%1«: %2 - Unexpected output from helper program. Nepričakovan izhod od pomožnega programa. - Cannot change to working directory '%1': %2 Ni se moč premakniti v delovno mapo »%1«: %2 - Cannot execute '%1': %2 Ni moč zagnati »%1«: %2 - Cannot start the terminal emulator '%1'. Ni moč zagnati emulatorja konzole »%1«. - Cannot create socket '%1': %2 Ni moč ustvariti vtičnice »%1«: %2 - The process '%1' could not be started: %2 Procesa »%1« ni bilo moč zagnati: %2 - Cannot obtain a handle to the inferior: %1 Ni moč dobiti reference za podproces: %1 - Cannot obtain exit status from inferior: %1 Ni moč dobiti izhodnega stanja od podprocesa: %1 @@ -14564,38 +11042,13 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Utils::DetailsButton - - Show Details - Prikaži podrobnosti - - - - Utils::FileNameValidatingLineEdit - - - The name must not be empty - Ime ne sme biti prazno - - - - The name must not contain any of the characters '%1'. - Ime ne sme vsebovati nobenega izmed znakov »%1«. - - - - The name must not contain '%1'. - Ime ne sme vsebovati »%1«. - - - - The name must not match that of a MS Windows device. (%1). - Ime se ne sme ujemati z imenom diska v MS Windows. (%1). + Details + Podrobnosti Utils::FileSearch - %1: canceled. %n occurrences found in %2 files. %1: preklicano. Najdena %n pojavitev v %2 datotekah. @@ -14605,7 +11058,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan - %1: %n occurrences found in %2 files. %1: najdena %n pojavitev v %2 datotekah. @@ -14615,7 +11067,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan - %1: %n occurrences found in %2 of %3 files. %1: najdena %n pojavitev v %2 od %3 datotek. @@ -14628,47 +11079,38 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Utils::PathChooser - Choose... Izbor ... - Browse... Brskanje ... - - Choose a directory - Izberite mapo + Choose Directory + - - Choose a file - Izberite datoteko + Choose File + Izberite datoteko - The path must not be empty. Pot ne sme biti prazna. - The path '%1' does not exist. Pot »%1« ne obstaja. - The path '%1' is not a directory. Pot »%1« ni mapa. - The path '%1' is not a file. Pot »%1« ni datoteka. - Path: Pot: @@ -14676,27 +11118,22 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Utils::PathListEditor - Insert... Vstavi ... - Add... Dodaj ... - - Delete line - Izbriši vrstico + Delete Line + Izbriši vrstico - Clear Počisti - From "%1" Iz »%1« @@ -14704,127 +11141,114 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Utils::ProjectNameValidatingLineEdit - - The name must not contain the '.'-character. - Ime ne sme vsebovati znaka ».«. + Invalid character '.'. + Neveljaven znak Utils::reloadPrompt - File Changed Datoteka spremenjena - - The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? - Neshranjena datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova in zavreči vse svoje spremembe? - - - - The file %1 has changed outside Qt Creator. Do you want to reload it? - Datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova? - - - - CMakeProjectManager::Internal::CMakeBuildEnvironmentWidget - - - Clear system environment - Počisti sistemsko okolje + The unsaved file <i>%1</i> has been changed outside Qt Creator. Do you want to reload it and discard your changes? + Neshranjena datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova in zavreči vse svoje spremembe? - - Build Environment - Okolje za gradnjo + The file <i>%1</i> has changed outside Qt Creator. Do you want to reload it? + Datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova? CMakeProjectManager::Internal::CMakeRunConfigurationWidget - Arguments: Argumenti: - - Select the working directory - Izberite delovno mapo + Select Working Directory + - Reset to default Ponastavi na privzeto - Working Directory: Delovna mapa: - Run Environment Okolje za zagon - Base environment for this runconfiguration: Osnovno okolje za to nastavitev: - Clean Environment Čisto okolje - System Environment Sistemsko okolje - Build Environment Okolje za gradnjo - - - Running executable: <b>%1</b> %2 - Zaganjanje programa: <b>%1</b> %2 - OpenWith::Editors - Plain Text Editor Urejevalniku navadnih besedil - Binary Editor Binarnem urejevalniku - C++ Editor Urejevalniku C++ - .pro File Editor Urejevalniku datotek *.pro + + .files Editor + + + + QMLJS Editor + + + + .qmlproject Editor + + + + Qt Designer + Qt Designer + + + Qt Linguist + Qt Linguist + + + Resource Editor + Urejevalnik virov + Core::Internal::SettingsDialog - Preferences Nastavitve - Options Možnosti @@ -14832,17 +11256,14 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan CodePaster::CodePasterProtocol - - No Server defined in the CodePaster preferences! - V nastavitvah za CodePaster ni določenega nobenega strežnika. + No Server defined in the CodePaster preferences. + V nastavitvah za CodePaster ni določenega nobenega strežnika. - - No Server defined in the CodePaster options! - V možnostih za CodePaster ni določenega nobenega strežnika. + No Server defined in the CodePaster options. + V možnostih za CodePaster ni določenega nobenega strežnika. - No such paste Tak prilepek ne obstaja @@ -14850,85 +11271,28 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan CodePaster::CodePasterSettingsPage - CodePaster CodePaster - - Code Pasting - Prilepljanje kode - - - Server: Strežnik: - Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). Opomba: Določite ime gostitelja za storitev CodePaster ne da bi na začetek dodali protokol (npr. samo codepaster.podjetje.si). - PasteBinDotComProtocol + CppTools::Internal::CppCurrentDocumentFilter - - Error during paste - Napaka med prilepljanjem + Methods in current Document + Metode v trenutnem dokumentu - PasteBinDotComSettings - - - Pastebin.com - Pastebin.com - + CppTools::Internal::CppFileSettingsWidget - - Code Pasting - Prilepljanje kode - - - - PasteView - - - Paste - Prilepi - - - - - <Username> - <uporabniško ime> - - - - - <Description> - <opis> - - - - - <Comment> - <komentar> - - - - CppTools::Internal::CppCurrentDocumentFilter - - - Methods in current Document - Metode v trenutnem dokumentu - - - - CppTools::Internal::CppFileSettingsWidget - - /************************************************************************** ** Qt Creator license header template ** Special keywords: %USER% %DATE% %YEAR% @@ -14944,22 +11308,18 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan - Edit... Urejanje ... - - Choose a location for the new license template file - Izberite lokacijo za novo datoteko s predlogo licence + Choose Location for New License Template File + - Template write error Napaka pri zapisovanju predloge - Cannot write to %1: %2 Ni moč pisati v %1: %2 @@ -14967,15 +11327,13 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan CppTools::Internal::CppFindReferences - - Searching... - Iskanje ... + Searching + Iskanje CppTools::Internal::CppLocatorFilter - Classes and Methods Razredi in metode @@ -14983,273 +11341,255 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan CVS::Internal::CheckoutWizard - - Checks out a project from a CVS repository. + Checks out a CVS repository and tries to load the contained project. - CVS Checkout - + Prevzem iz CVS CVS::Internal::CheckoutWizardPage - + Location + Lokacija + + Specify repository and path. - Repository: Skladišče: - - CVSPlugin - - - Cannot find repository for '%1' - - - CVS::Internal::CVSPlugin - Parsing of the log output failed - &CVS - + CVS - Add Dodaj - Add "%1" - + Dodaj - Alt+C,Alt+A - - Delete - - - - - Delete "%1" - - - - - Revert - Povrni - - - - Revert "%1" - - - - Diff Project - Diff Current File - Diff "%1" - + Diff - Alt+C,Alt+D - Commit All Files - Commit Current File - Commit "%1" - + Uveljavi - Alt+C,Alt+C - Filelog Current File - + Cannot find repository for '%1' + + + Filelog "%1" - Annotate Current File - Annotate "%1" + Dodaj opombo + + + Delete... + &Zbriši + + + Delete "%1"... + &Zbriši + + + Revert... + Povrni ... + + + Revert "%1"... + Povrni + + + Diff Project "%1" - Project Status Stanje projekta - + Status of Project "%1" + + + + Log Project + + + + Log Project "%1" + + + Update Project Posodobi projekt - - Commit + Update Project "%1" + Posodobi projekt + + + Repository Log + + + + Revert Repository... - + Commit + Uveljavi + + Diff Selected Files - &Undo &Razveljavi - &Redo &Uveljavi - Closing CVS Editor - Do you want to commit the change? - The commit message check failed. Do you want to commit the change? - The files do not differ. - - The file '%1' could not be deleted. + Revert repository - - The file has been changed. Do you want to revert it? - Datoteka je bila spremenjena. Ali jo želite povrniti? + Would you like to revert all changes to the repository? + - - The commit list spans several repositories (%1). Please commit them one by one. + Revert failed: %1 - + The file has been changed. Do you want to revert it? + Datoteka je bila spremenjena. Ali jo želite povrniti? + + Another commit is currently being executed. - There are no modified files. Ni spremenjenih datotek. - Cannot create temporary file: %1 Ni moč ustvariti začasne datoteke: %1 - Project status - + Stanje projekta - The initial revision %1 cannot be described. - Could not find commits of id '%1' on %2. - Executing: %1 %2 - + %1 Izvajanje: %2 %3 + - Executing in %1: %2 %3 - No cvs executable specified! - The process terminated with exit code %1. Proces se je končal z izhodno kodo %1. - The process terminated abnormally. Proces se ni končal normalno. - Could not start cvs '%1'. Please check your settings in the preferences. - CVS did not respond within timeout limit (%1 ms). @@ -15257,30 +11597,21 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan CVS::Internal::CVSSubmitEditor - Added Dodana - Removed Odstranjena - Modified Spremenjena - - - CVS Submit - - CVS::Internal::SettingsPageWidget - CVS Command @@ -15288,17 +11619,14 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan CdbStackFrameContext - <Unknown Type> <neznana vrsta> - <Unknown Value> <neznana vrednost> - <Unknown> <neznano> @@ -15306,7 +11634,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan SymbolGroup - Out of scope Izven obsega @@ -15314,157 +11641,145 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Debugger::Internal::MemoryViewAgent - Memory $ Pomnilnik $ + + No memory viewer available + + + + The memory contents cannot be shown as no viewer plugin for binary data has been loaded. + + Debugger::DebuggerManager - Continue Nadaljuj - - Interrupt Prekini - - Reset Debugger - Ponastavi razhroščevalnik - - - Step Over Prestopi - Step Into Vstopi - Step Out Izstopi - Run to Line Zaženi do vrstice - Run to Outermost Function Zaženi do najbolj zunanje funkcije - Jump to Line Skoči do vrstice - Toggle Breakpoint Preklopi prekinitveno točko - Add to Watch Window Dodaj v opazovalno okno - Reverse Direction Obrni smer - - Stopped. - Ustavljeno. - - - Running... Teče ... - - Exited. - Končano. + Abort Debugging + + + + Aborts debugging and resets the debugger to the initial state. + + + + Immediately Return From Inner Function + + + + Snapshot + posnetek + + + Stopped + Ustavljeno + + + Exited + Končano. - - Changing breakpoint state requires either a fully running or fully stopped application. Za spreminjanje stanja prekinitvene točke je potreben bodisi povsem zagnan bodisi povsem ustavljen program. - The application requires the debugger engine '%1', which is disabled. Program potrebuje razhroščevalni pogon »%1«, ki pa je onemogočen. - Starting debugger for tool chain '%1'... Zaganjanje razhroščevalnika za zaporedje orodij »%1« ... - Cannot debug '%1' (tool chain: '%2'): %3 Ni moč razhroščevati »%1« (zaporedje orodij: »%2«): %3 - Warning Opozorilo - Save Debugger Log Shrani dnevnik razhroščevalnika - %1 (explicitly set in the Debugger Options) %1 (izrecno nastavljeno v možnostih razhroščevalnika) - Open Qt preferences Odpri nastavitve Qt - Turn off helper usage Izklopi uporabo pomočnika - Continue anyway Vseeno nadaljuj - Debugging helper missing Razhroščevalni pomočnik manjka - The debugger could not load the debugging helper library. Razhroščevalnik ni mogel naložiti knjižnice razhroščevalnega pomočnika. - 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. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. Razhroščevalni pomočnik se uporablja za lepše oblikovanje vrednosti nekaterih podatkovnih vrst Qt in standardne knjižnice.Za vsako uporabljeno različico Qt mora biti preveden posebej. To lahko storite v nastavitvah Qt, tako da izberete namestitev Qt in v vrstici »Razhroščevalni pomočnik« kliknete gumb »Znova zgradi«. - Stop Debugger Ustavi razhroščevalnika @@ -15472,7 +11787,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Debugger::Internal::DebuggerRunControlFactory - Debug Razhroščevanje @@ -15480,7 +11794,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Debugger::Internal::DebuggerRunControl - Debugger Razhroščevalnik @@ -15488,35 +11801,29 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Debugger::Internal::AbstractGdbAdapter - The Gdb process could not be stopped: %1 Procesa GDB-ja ni bilo moč ustaviti: %1 - - Inferior process could not be stopped: + Application process could not be stopped: %1 - - Inferior started. + Application started - - Inferior running. + Application running - - Attached to stopped inferior. + Attached to stopped application - Connecting to remote server failed: %1 Povezovanje z oddaljenim strežnikom ni uspelo: @@ -15524,342 +11831,152 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan - Debugger::Internal::CoreGdbAdapter - - - - - Error Loading Symbols - Napaka pri nalaganju simbolov - - - - No executable to load symbols from specified. - Določenega ni nobenega programa za nalaganje simbolov. - - - - Symbols found. - Simboli najdeni. - - - - Loading symbols from "%1" failed: - - Nalaganje simbolov iz »%1« ni uspelo: - - - - - Attached to core temporarily. - Začasno priklopljen na jedro. - - - - Unable to determine executable from core file. - Iz posnetka ni moč ugotoviti izvršljive datoteke. - - - - Attached to core. - Priklopljen na posnetek. - - - - Attach to core "%1" failed: - - Priklop na posnetek »%1« ni uspel: - - - - - Debugger::Internal::PlainGdbAdapter - - - Cannot set up communication with child process: %1 - Ni moč vzpostaviti komunikacije s podprocesom: %1 - - - - Starting executable failed: - - Zaganjanje izvršljive datoteke ni uspelo: - - - - - Debugger::Internal::RemoteGdbAdapter - - - The upload process failed to start. Shell missing? - Proces pošiljanja se ni uspel zagnati. Morda manjka lupina? - - - - The upload process crashed some time after starting successfully. - Proces pošiljanja se je nekaj časa po uspešnem zagonu sesul. - - - - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. - Potekel je čas za zadnjo funkcijo waitFor...(). Stanje QProcessa se ni spremenilo. Znova lahko poskusite klicati 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. - Med pisanjem v proces pošiljanja je prišlo do napake. Proces morda ne teče, ali pa je morda zaprl svoj vhodni kanal. - - - - An error occurred when attempting to read from the upload process. For example, the process may not be running. - Med branjem iz procesa pošiljanja je prišlo do napake. Proces morda ne teče. - - - - An unknown error in the upload process occurred. This is the default return value of error(). - Prišlo je do neznane napake v procesu pošiljanja. To je privzeta vrnjena vrednost funkcije error(). - - - - Error - Napaka - - - - Adapter too old: does not support asynchronous mode. - Prilagojevalnik je prestar: ne podpira asinhronega načina. - + Debugger::Internal::TrkGdbAdapter - - Starting remote executable failed: - - Zaganjanje oddaljene izvršljive datoteke ni uspelo: - + Port specification missing. + - - - Debugger::Internal::TermGdbAdapter - - Debugger Error - Napaka razhroščevalnika + Unable to acquire a device on '%1'. It appears to be in use. + - - - Debugger::Internal::TrkGdbAdapter - Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. - - Connecting to trk server adapter failed: + Connecting to TRK server adapter failed: - - TrkOptions - - - No Symbian gdb executable specified. - Določenega ni nobenega programa GDB za Symbian. - - - - The Symbian gdb executable '%1' could not be found in the search path. - Programa GDB za Symbian »%1« ni bilo moč najti v poti iskanja. - - - - Debugger::Internal::TrkOptionsPage - - - Symbian Trk - Symbian Trk - - NameDemanglerPrivate - Premature end of input Predčasen konec vhoda - Invalid encoding Neveljavno kodiranje - Invalid name Neveljavno ime - - Invalid nested-name - - Invalid template args - - Invalid template-param - Invalid qualifiers: unexpected 'volatile' - Invalid qualifiers: 'const' appears twice - Invalid non-negative number Neveljavno nenegativno število - - - Invalid template-arg - - - Invalid expression Neveljaven izraz - Invalid primary expression - - - Invalid expr-primary - - - Invalid type Neveljavna vrsta - Invalid built-in type - Invalid builtin-type - - Invalid function type - - Invalid unqualified-name - Invalid operator-name '%s' - - Invalid array-type - Invalid pointer-to-member-type - - - Invalid substitution - Invalid substitution: element %1 was requested, but there are only %2 - Invalid substitution: There are no elements - Invalid special-name - - - Invalid local-name - Invalid discriminator - - - Invalid ctor-dtor-name - - Invalid call-offset - + - Invalid v-offset - + - Invalid digit Neveljavna števka - At position %1: Na mestu %1: @@ -15867,7 +11984,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Designer::FormWindowEditor - untitled brez naslova @@ -15875,12 +11991,10 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Git::Internal::CloneWizard - - Clones a project from a git repository. - Klonira projekt iz skladišča Git. + Clones a Git repository and tries to load the contained project. + - Git Repository Clone Klon skladišča Git @@ -15888,12 +12002,14 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Git::CloneWizardPage - + Location + Lokacija + + Specify repository URL, checkout directory and path. - + - Clone URL: URL za kloniranje: @@ -15901,17 +12017,14 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Gitorious::Internal::Gitorious - Error parsing reply from '%1': %2 Napaka pri razčlenjevanju odgovora od »%1«: %2 - Request failed for '%1': %2 Zahtevek za »%1« ni uspel: %2 - Open source projects that use Git. Odprto-kodni projekti, ki uporabljajo Git. @@ -15919,12 +12032,10 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Gitorious::Internal::GitoriousCloneWizard - - Clones a project from a Gitorious repository. - Klonira projekt iz skladišča Gitorious. + Clones a Gitorious repository and tries to load the contained project. + - Gitorious Repository Clone Klon skladišča Gitorious @@ -15932,7 +12043,10 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Gitorious::Internal::GitoriousHostWizardPage - + Host + Gostitelj + + Select a host. Izberite gostitelja. @@ -15940,7 +12054,10 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Gitorious::Internal::GitoriousProjectWizardPage - + Project + Projekt + + Choose a project from '%1' Izberite projekt z »%1« @@ -15948,33 +12065,22 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Help::Internal::GeneralSettingsPage - - General settings - Splošne nastavitve - - - - Help - Pomoč + General Settings + Splošne nastavitve - Open Image Odpri sliko - - Files (*.xbel) Datoteke (*.xbel) - There was an error while importing bookmarks! Med uvažanjem zaznamkov je prišlo do napake. - Save File Shrani datoteko @@ -15982,12 +12088,10 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Help::Internal::XbelReader - The file is not an XBEL version 1.0 file. Datoteka ni v obliki XBEL različice 1.0. - Unknown title Neznan naslov @@ -15995,28 +12099,22 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::Internal::DirectoryFilter - Generic Directory Filter Splošen filter map - Filter Configuration Nastavitev filtrov - - - Choose a directory to add - Izberite mapo za dodati + Select Directory + - %1 filter update: 0 files Posodobitev filtra %1: 0 datotek - %1 filter update: %n files Posodobitev filtra %1: %n datoteka @@ -16026,7 +12124,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan - %1 filter update: canceled Posodobitev filtra %1: preklicana @@ -16034,7 +12131,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::Internal::FileSystemFilter - Files in file system Datoteke v datotečnem sistemu @@ -16042,17 +12138,14 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::ILocatorFilter - Filter Configuration Nastavitev filtrov - Limit to prefix Omeji na predpono - Prefix: Predpona: @@ -16060,7 +12153,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::Internal::LocatorFiltersFilter - Available filters Razpoložljivi filtri @@ -16068,7 +12160,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::Internal::LocatorPlugin - Indexing Indeksiranje @@ -16076,27 +12167,26 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::Internal::LocatorWidget - Refresh Osveži - Configure... Nastavitve ... - Locate... Lociraj ... - Type to locate Tipkajte za lociranje - + Options + Možnosti + + <type here> <tipkajte sem> @@ -16104,7 +12194,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::Internal::OpenDocumentsFilter - Open documents Odprti dokumenti @@ -16112,58 +12201,21 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::Internal::SettingsPage - - %1 (Prefix: %2) - %1 (predpona: %2) - - - - Perforce::Internal - - - No executable specified - - - - - Unable to launch "%1": %2 - - - - - "%1" timed out after %2ms. - - - - - "%1" crashed. - - - - - "%1" terminated with exit code %2: %3 - - - - - The client does not seem to contain any mapped files. - + %1 (prefix: %2) + Predpona: ProjectExplorer::ApplicationLauncher - Failed to start program. Path or permissions wrong? Zagon programa ni uspel. Morda je napačna pot ali pa dovoljenja. - The program has unexpectedly finished. Program je nepričakovano končal. - Some error has occurred while running the program. Med poganjanjem programa je prišlo do neke napake. @@ -16171,7 +12223,6 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan ProjectExplorer::Internal::LocalApplicationRunControlFactory - Run Zaženi @@ -16179,12 +12230,10 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan ProjectExplorer::Internal::LocalApplicationRunControl - Starting %1... Zaganjanje %1 ... - %1 exited with code %2 %1 je končal s kodo %2 @@ -16192,22 +12241,18 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan ProjectExplorer::DebuggingHelperLibrary - The target directory %1 could not be created. Ciljne mape %1 ni bilo moč ustvariti. - The existing file %1 could not be removed. Obstoječe datoteke %1 ni bilo moč odstraniti. - The file %1 could not be copied to %2. Datoteke %1 ni bilo moč skopirati v %2. - The debugger helpers could not be built in any of the directories: - %1 @@ -16218,30 +12263,24 @@ Reason: %2 Razlog: %2 - Building debugging helper library in %1 Grajenje knjižnice razhroščevalnega pomočnika v %1 - Running %1 %2... Zaganjanje %1 %2 ... - - %1 not found in PATH %1 v PATH ni bil najden - - Running %1 ... Zaganjanje %1 ... @@ -16251,99 +12290,65 @@ Razlog: %2 ProjectExplorer::Internal::ProjectWelcomePage - Develop Razvoj - - ProjectExplorer::Internal::ActiveConfigurationWidget - - - Active run configuration - Aktivne nastavitve za zagon - - - - ProjectExplorer::Internal::ProjectLabel - - - Edit Project Settings for Project <b>%1</b> - Urejanje projektnih nastavitev za projekt <b>%1</b> - - - - No Project loaded - Naložen ni noben projekt - - - - ProjectExplorer::Internal::ProjectPushButton - - - Select Project - Izberite projekt - - ToolChain - GCC - Intel C++ Compiler (Linux) - - MinGW - - - - Microsoft Visual C++ - Windows CE - WINSCW - GCCE - + GCCE/GnuPoc + + + + RVCT (ARMV6)/GnuPoc + + + RVCT (ARMV5) - RVCT (ARMV6) - + + + + GCC for Maemo + - Other Drugo - <Invalid> <neveljavno> - <Unknown> <neznano> @@ -16351,139 +12356,65 @@ Razlog: %2 QmlParser - Illegal character Neveljaven znak - Unclosed string at end of line Nezaprt niz na koncu vrstice - Illegal escape squence Neveljavno ubežno zaporedje - Illegal unicode escape sequence Neveljavno ubežno zaporedje Unicode - Unclosed comment at end of file Nezaprt komentar na koncu datoteke - Illegal syntax for exponential number Neveljavna skladnja za eksponentno število - Identifier cannot start with numeric literal - Unterminated regular expression literal - Invalid regular expression flag '%0' Neveljavna zastavica »%0« regularnega izraza - Unexpected token `%1' Nepričakovan žeton »%1« - - Expected token `%1' Pričakovan žeton »%1« - Syntax error Skladenjska napaka - - QmlEditor::Internal::ScriptEditor - - - <Select Symbol> - <izberite simbol> - - - - Rename... - Preimenuj ... - - - - New id: - Novi ID: - - - - Rename id '%1'... - Preimenuj ID »%1« ... - - - - QmlEditor::Internal::QmlEditorPlugin - - - Qt - Qt - - - - Creates a Qt QML file. - Ustvari datoteko Qt QML. - - - - Qt QML File - Datoteka Qt QML - - - - QmlEditor::Internal::QmlModelManager - - - Indexing - Indeksiranje - - - - QmlProjectManager::Internal::QmlMakeStepConfigWidget - - - <b>QML Make</b> - <b>QML Make</b> - - Qt4ProjectManager::Internal::ClassList - - <New class> <nov razred> - Confirm Delete Potrditev izbrisa - Delete class %1 from list? Ali želite izbrisati razred %1 s seznama? @@ -16491,38 +12422,40 @@ Razlog: %2 Qt4ProjectManager::Internal::CustomWidgetWizard - - Qt4 Designer Custom Widget - Gradnik po meri za Qt Designer + Qt Custom Designer Widget + - - Creates a Qt4 Designer Custom Widget or a Custom Widget Collection. - Ustvari projekt gradnika po meri ali pa zbirke gradnikov po meri za Qt Designer. + Creates a Qt Custom Designer Widget or a Custom Widget Collection. + Qt4ProjectManager::Internal::CustomWidgetWizardDialog - This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. Ta čarovnik ustvari projekt gradnika po meri za Qt Designer ali pa projekt zbirke gradnikov po meri za Qt Designer. + + Custom Widgets + Gradniki po meri + + + Plugin Details + + Qt4ProjectManager::Internal::PluginGenerator - Cannot open icon file %1. Ni moč odpreti datoteke z ikono %1. - Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. Ustvarjanje več knjižnic gradnikov (%1, %2) v enem projektu (%3) ni podprto. - Cannot open %1: %2 Ni moč odpreti %1: %2 @@ -16530,12 +12463,10 @@ Razlog: %2 Qt4ProjectManager::Internal::ExternalQtEditor - Unable to start "%1" Ni moč zagnati »%1« - The application "%1" could not be found. Programa »%1« ni bilo moč najti. @@ -16543,12 +12474,10 @@ Razlog: %2 Qt4ProjectManager::Internal::DesignerExternalEditor - Qt Designer is not responding (%1). Qt Designer se ne odziva (%1). - Unable to create server socket: %1 Ni moč ustvariti vtičnice za strežnik: %1 @@ -16556,7 +12485,6 @@ Razlog: %2 Qt4ProjectManager::Internal::GettingStartedWelcomePage - Getting Started Začnite tu @@ -16564,25 +12492,17 @@ Razlog: %2 Qt4ProjectManager::Internal::S60DeviceRunConfiguration - %1 on Symbian Device %1 na napravi Symbian - QtS60DeviceRunConfiguration - - - Could not parse %1. The QtS60 Device run configuration %2 can not be started. - Ni bilo moč razčleniti %1. Nastavitev za zagon na napravi QtS60 %2 ni moč zagnati. - Qt4ProjectManager::Internal::S60DeviceRunConfigurationFactory - %1 on Symbian Device %1 na napravi Symbian @@ -16590,131 +12510,116 @@ Razlog: %2 Qt4ProjectManager::Internal::S60DeviceRunControlBase - - Creating %1.sisx ... - Ustvarjanje %1.sisx ... - - - Executable file: %1 Izvršljiva datoteka: %1 - Debugger for Symbian Platform Razhroščevalnik za platformo Symbian - - - %1 %2 - %1 %2 + Package: %1 +Deploying application to '%2'... + Paket: %1 +Razmeščanje programa na »%2« ... - - Could not read template package file '%1' - Ni bilo moč prebrati datoteke s predlogo paketa »%1« + Unable to remove existing file '%1': %2 + - - Could not write package file '%1' - Ni bilo moč zapisati datoteke paketa »%1« + Unable to rename file '%1' to '%2': %3 + - - - An error occurred while creating the package. - Med ustvarjanjem paketa je prišlo do napake. + Deploying + - - Package: %1 -Deploying application to '%2'... - Paket: %1 -Razmeščanje programa na »%2« ... + There is no device plugged in. + + + + Renaming new package '%1' to '%2' + + + + Removing old package '%1' + + + + Package file not found + + + + Failed to find package '%1': %2 + - Could not connect to phone on port '%1': %2 -Check if the phone is connected and the TRK application is running. - Ni se bilo moč povezati s telefonom na vratih »%1«: %2 -Preverite, ali je telefon povezan in ali program TRK teče. +Check if the phone is connected and App TRK is running. + - Could not create file %1 on device: %2 Ni bilo moč ustvariti datoteke %1 na napravi: %2 - Could not write to file %1 on device: %2 Ni bilo moč pisati v datoteko %1 na napravi: %2 - Could not close file %1 on device: %2. It will be closed when App TRK is closed. Ni bilo moč zapreti datoteke %1 na napravi: %2. Zaprta bo, ko bo zaprt program TRK. - Could not connect to App TRK on device: %1. Restarting App TRK might help. Ni se bilo moč povezati s programom TRK na napravi: %1. Morda bi pomagal ponovni zagon TRK. - - Copying install file... - Kopiranje namestitvene datoteke ... + Copying installation file... + - - %1% copied. - %1 % skopirano. + Waiting for App TRK + - - Installing application... - Nameščanje programa ... + Please start App TRK on %1. + - - Could not install from package %1 on device: %2 - Ni bilo moč namestiti iz paketa %1 na napravi: %2 + Canceled. + Preklicano. - - Failed to start %1. - Zagon %1 ni uspel. + The device '%1' has been disconnected + - - %1 has unexpectedly finished. - %1 je nepričakovano končal. + Installing application... + Nameščanje programa ... - - An error has occurred while running %1. - Pri zaganjanju %1 je prišlo do napake. + Could not install from package %1 on device: %2 + Ni bilo moč namestiti iz paketa %1 na napravi: %2 Qt4ProjectManager::Internal::S60DeviceRunControl - Finished. Zaključeno. - Starting application... Zaganjanje programa ... - Application running with pid %1. Program teče s PID %1. - Could not start application: %1 Ni bilo moč zagnati programa: %1 @@ -16722,17 +12627,14 @@ Preverite, ali je telefon povezan in ali program TRK teče. Qt4ProjectManager::Internal::S60DeviceDebugRunControl - Warning: Cannot locate the symbol file belonging to %1. Opozorilo: ni moč najti datoteke s simboli, ki pripada %1. - Launching debugger... Zaganjanje razhroščevalnika ... - Debugging finished. Razhroščevanje je zaključeno. @@ -16740,164 +12642,82 @@ Preverite, ali je telefon povezan in ali program TRK teče. Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget - Device: Naprava: - Name: Ime: - - Install File: - Namesti datoteko: - - - - Device on Serial Port: - Naprava na zaporednih vratih: - - - - Queries the device for information - Pri napravi poizve o podatkih - - - - Self-signed certificate - Samo-podpisano potrdilo - - - - Choose certificate file (.cer) - Izberite datoteko s potrdilom (*.cer) - - - - Custom certificate: - Potrdilo po meri: - - - - Choose key file (.key / .pem) - Izberite datoteko s ključem (*.key / *.pem) - - - - Key file: - Datoteka s ključem: - - - - <No Device> - Summary text of S60 device run configuration - - <brez naprave> + Arguments: + Argumenti: - - (custom certificate) - (potrdilo po meri) + Installation file: + - - (self-signed certificate) - (samo-podpisano potrdilo) + Device on serial port: + Naprava na zaporednih vratih: - - Summary: Run on '%1' %2 - Povzetek: zaženi na »%1« %2 + Queries the device for information + Pri napravi poizve o podatkih - Connecting... Povezovanje ... - - - A timeout occurred while querying the device. Check whether Trk is running - Med poizvedovanjem pri napravi je potekel čas. Preverite, ali Trk teče. - Qt4ProjectManager::Internal::S60Devices::Device - Id: ID: - Name: Ime: - EPOC: - Tools: Orodja: - Qt: Qt: - - Qt4ProjectManager::Internal::S60DevicesWidget - - - No Qt installed - Nameščen ni noben Qt - - Qt4ProjectManager::Internal::S60EmulatorRunConfiguration - %1 in Symbian Emulator %1 v emulatorju Symbian - - QtSymbianEmulatorRunConfiguration + Qt Symbian Emulator RunConfiguration - - - Could not parse %1. The Qt for Symbian emulator run configuration %2 can not be started. - Ni bilo moč razčleniti %1. Nastavitev za zagon Qt za emulator Symbian %2 ni moč zagnati. - Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget - Name: Ime: - Executable: Izvršljiva datoteka: - - - Summary: Run %1 in emulator - Povzetek: zaženi %1 v emulatorju - Qt4ProjectManager::Internal::S60EmulatorRunConfigurationFactory - %1 in Symbian Emulator %1 v emulatorju Symbian @@ -16905,17 +12725,14 @@ Preverite, ali je telefon povezan in ali program TRK teče. Qt4ProjectManager::Internal::S60EmulatorRunControl - Starting %1... Zaganjanje %1 ... - [Qt Message] [Sporočilo Qt] - %1 exited with code %2 %1 je končal s kodo %2 @@ -16923,213 +12740,81 @@ Preverite, ali je telefon povezan in ali program TRK teče. Qt4ProjectManager::Internal::S60Manager - Run in Emulator Zaženi v emulatorju - Run on Device Zaženi na napravi - Debug on Device Razhroščuj na napravi - Qt4ProjectManager::Qt4BuildConfigurationFactory + QtModulesInfo - - Using Default Qt Version - Uporablja privzeto različico Qt + Core non-GUI classes used by other modules + Osrednji razredi, ki niso za grafični vmesnik in jih uporabljajo drugi moduli - - Using Qt Version "%1" - Uporablja Qt različice »%1« + Graphical user interface components + Komponente za grafični uporabniški vmesnik - - New configuration - Nova nastavitev + Classes for network programming + Razredi za omrežno programiranje - - New Configuration Name: - Ime nove nastavitve: - - - - %1 Debug - %1, za razhroščevanje - - - - %1 Release - %1, za izdajo - - - - QtModulesInfo - - - QtCore Module - Modul QtCore - - - - Core non-GUI classes used by other modules - Osrednji razredi, ki niso za grafični vmesnik in jih uporabljajo drugi moduli - - - - QtGui Module - Modul QtGui - - - - Graphical user interface components - Komponente za grafični uporabniški vmesnik - - - - QtNetwork Module - Modul QtNetwork - - - - Classes for network programming - Razredi za omrežno programiranje - - - - QtOpenGL Module - Modul QtOpenGL - - - OpenGL support classes Razredi za podporo OpenGL - - QtSql Module - Modul QtSql - - - Classes for database integration using SQL Razredi za integracijo s podatkovnimi zbirkami z uporabo SQL - - QtScript Module - Modul QtScript - - - Classes for evaluating Qt Scripts Razredi za vrednotenje skript Qt Script - - QtScriptTools Module - Modul QtScriptTools - - - Additional Qt Script components Dodatne komponente Qt Script - - QtSvg Module - Modul QtSvg - - - Classes for displaying the contents of SVG files Razredi za prikaz datotek z raztegljivo vektorsko grafiko SVG - - QtWebKit Module - Modul QtWebKit - - - Classes for displaying and editing Web content Razredi za prikaz in urejanje spletnih vsebin - - QtXml Module - Modul QtXml - - - Classes for handling XML Razredi za delo z XML - - QtXmlPatterns Module - Modul QtXmlPatterns - - - An XQuery/XPath engine for XML and custom data models Pogon in lastni podatkovni modeli za XQuery in XPath - - Phonon Module - Modul Phonon - - - Multimedia framework classes Razredi za večpredstavnostno ogrodje - - QtMultimedia Module - Modul QtMultimedia - - - Classes for low-level multimedia functionality Razredi za večpredstavnost na nizkem nivoju - - Qt3Support Module - Modul Qt3Support - - - Classes that ease porting from Qt 3 to Qt 4 Razredi, ki olajšajo prenos s Qt 3 na Qt 4 - - QtTest Module - Modul QtTest - - - Tool classes for unit testing Orodni razredi za preizkušanje po enotah - - QtDBus Module - Modul QtDBus - - - Classes for Inter-Process Communication using the D-Bus Razredi za medprocesno komunikacijo z uporabo D-Busa @@ -17137,12 +12822,10 @@ Preverite, ali je telefon povezan in ali program TRK teče. Subversion::Internal::CheckoutWizard - - Checks out a project from a Subversion repository. + Checks out a Subversion repository and tries to load the contained project. - Subversion Checkout @@ -17150,12 +12833,14 @@ Preverite, ali je telefon povezan in ali program TRK teče. Subversion::Internal::CheckoutWizardPage - - Specify repository, checkout directory and path. + Location + Lokacija + + + Specify repository URL, checkout directory and path. - Repository: Skladišče: @@ -17163,7 +12848,6 @@ Preverite, ali je telefon povezan in ali program TRK teče. TextEditor::Internal::ColorScheme - Not a color scheme file. Ni datoteka z barvno shemo. @@ -17171,7 +12855,6 @@ Preverite, ali je telefon povezan in ali program TRK teče. TextEditor::Internal::FindInCurrentFile - Current File Trenutna datoteka @@ -17179,7 +12862,6 @@ Preverite, ali je telefon povezan in ali program TRK teče. TextEditor::Internal::FontSettings - Customized Prilagojeno @@ -17187,32 +12869,26 @@ Preverite, ali je telefon povezan in ali program TRK teče. VCSBase::BaseCheckoutWizard - Cannot Open Project Ni moč odpreti projekta - Failed to open project in '%1'. Odpiranje projekta iz »%1« ni uspelo. - Could not find any project files matching (%1) in the directory '%2'. V mapi »%2« ni bilo moč najti nobene projektne datoteke ki bi ustrezala (%1). - The Project Explorer is not available. Raziskovalec projektov ni na voljo. - '%1' does not exist. »%1« ne obstaja. - Unable to open the project '%1'. Ni moč odpreti projekta »%1«. @@ -17220,323 +12896,11185 @@ Preverite, ali je telefon povezan in ali program TRK teče. VCSBase::ProcessCheckoutJob - + Unable to start %1: %2 + Ni moč zagnati »%1« + + The process terminated with exit code %1. Proces se je končal z izhodno kodo %1. - The process returned exit code %1. Proces je vrnil izhodno kodo %1. - The process terminated in an abnormal way. Proces se je končal na neobičajen način. - - Stopping... - Ustavljanje ... + Stopping... + Ustavljanje ... + + + + VCSBase::Internal::CheckoutProgressWizardPage + + Checkout + Prevzem + + + Checkout started... + + + + Failed. + Neuspeh. + + + Succeeded. + Uspeh. + + + + VCSBase::VCSBaseOutputWindow + + Open "%1" + Odpri + + + Clear + Počisti + + + Version Control + Nadzor različic + + + + Welcome::Internal::CommunityWelcomePage + + News && Support + + + + + trk::BluetoothListener + + %1: Stopping listener %2... + %1: ustavljanje poslušalca %2 ... + + + %1: Starting Bluetooth listener %2... + %1: zaganjanje poslušalca Bluetooth %2 ... + + + Unable to run '%1': %2 + Ni moč zagnati »%1«: %2 + + + %1: Bluetooth listener running (%2). + %1: poslušalec Bluetooth teče (%2). + + + %1: Process %2 terminated with exit code %3. + %1: proces %2 se je končal z izhodno kodo %3. + + + %1: Process %2 crashed. + %1: proces %2 se je sesul. + + + %1: Process error %2: %3 + %1: napaka procesa %2: %3 + + + + trk::promptStartCommunication + + Connection on %1 canceled. + Povezava z %1 je bila preklicana. + + + Waiting for App TRK + + + + Waiting for App TRK to start on %1... + + + + Waiting for Bluetooth Connection + Čakanje na povezavo Bluetooth + + + Connecting to %1... + Povezovanje z %1 ... + + + + trk::BaseCommunicationStarter + + %1: timed out after %n attempts using an interval of %2ms. + + %1: čas je potekel po %n poskusu z uporabo intervala %2 ms. + %1: čas je potekel po %n poskusih z uporabo intervala %2 ms. + %1: čas je potekel po %n poskusih z uporabo intervala %2 ms. + %1: čas je potekel po %n poskusih z uporabo intervala %2 ms. + + + + %1: Connection attempt %2 succeeded. + %1: %2. poskus povezovanja je uspel. + + + %1: Connection attempt %2 failed: %3 (retrying)... + %1: %2. poskus povezovanja ni uspel: %3 (ponovno poskušanje) ... + + + + CMakeProjectManager::Internal::CMakeRunConfiguration + + Clean Environment + Čisto okolje + + + System Environment + Sistemsko okolje + + + Build Environment + Okolje za gradnjo + + + (disabled) + Onemogočeno + + + + Debugger::Internal::SourceFilesModel + + Internal name + Notranje ime + + + Full name + Polno ime + + + + CommandMappings + + Command Mappings + + + + Command + Ukaz + + + Label + Oznaka + + + Target + Cilj + + + Defaults + Privzetosti + + + Import... + Uvozi ... + + + Export... + Izvozi + + + Target Identifier + + + + Target: + Cilj: + + + Reset + Ponastavi + + + + CodePaster::FileShareProtocolSettingsWidget + + Form + Obrazec + + + &Path: + &Pot: + + + &Display: + Prikaz + + + entries + Vnosi: + + + The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. + + + + + Git::Internal::StashDialog + + Stashes + + + + Name + Ime + + + Branch + Veja + + + Message + Sporočilo + + + Delete all... + Zbriši vse + + + Delete... + &Zbriši + + + Show + Prikaži: + + + Restore... + Obnovi ... + + + Restore to branch... + Restore a git stash to new branch to be created + + + + + Refresh + Osveži + + + <No repository> + + + + Repository: %1 + Skladišče: + + + Delete stashes + + + + Do you want to delete all stashes? + + + + Do you want to delete %n stash(es)? + + + + + + + + + Repository modified + + + + %1 cannot be restored since the repository is modified. +You can choose between stashing the changes or discarding them. + + + + Stash + + + + Discard + Zavrzi + + + Restore Stash to Branch + + + + Branch: + Veja: + + + Stash Restore + + + + Would you like to restore %1? + + + + Error restoring %1 + + + + + Mercurial::Internal::MercurialCommitPanel + + General Information + Splošni podatki + + + Repository: + Skladišče: + + + repository + skladišče + + + Branch: + Veja: + + + branch + veja + + + Commit Information + + + + Author: + Avtor: + + + Email: + E-pošta: + + + + Mercurial::Internal::OptionsPage + + Form + Obrazec + + + Configuration + Nastavitve + + + Command: + Ukaz + + + User + Uporabnik + + + Username to use by default on commit. + + + + Default username: + + + + Email to use by default on commit. + + + + Default email: + + + + Miscellaneous + Razno + + + Log count: + + + + The number of recent commit logs to show, choose 0 to see all enteries + + + + Timeout: + Zakasnitev: + + + s + s + + + Prompt on submit + + + + Mercurial + + + + + Mercurial::Internal::RevertDialog + + Revert + Povrni + + + Specify a revision other than the default? + + + + Revision: + Različica: + + + + Mercurial::Internal::SrcDestDialog + + Dialog + Pogovorno okno + + + Default Location + + + + Local filesystem: + + + + e.g. https://[user[:pass]@]host[:port]/[path] + + + + Specify Url: + + + + + ProjectExplorer::Internal::AddTargetDialog + + Add target + + + + Target: + Cilj: + + + + ProjectExplorer::Internal::DoubleTabWidget + + DoubleTabWidget + + + + + ProjectExplorer::Internal::TargetSettingsWidget + + TargetSettingsWidget + + + + + BehaviorDialog + + Dialog + Pogovorno okno + + + Type: + Vrsta: + + + Id: + ID + + + Property Name: + Ime lastnosti + + + Animation + Animacija + + + SpringFollow + + + + Settings + Nastavitve + + + Duration: + Trajanje: + + + Curve: + Krivulja + + + easeNone + + + + Source: + Vir: + + + Velocity: + Hitrost: + + + Spring: + + + + Damping: + + + + + ContextPaneTextWidget + + Text + Besedilo + + + Style + Slog + + + Normal + Običajno + + + Outline + Obris + + + Raised + + + + Sunken + + + + ... + ... + + + + GradientDialog + + Edit Gradient + Uredi preliv + + + + GradientEditor + + Form + Obrazec + + + Gradient Editor + Urejevalnik preliva + + + This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. + To območje prikazuje ogled urejevanega preliva. Omogoča vam tudi urejanje parametrov, ki so specifični za vrsto preliva, na primer začetna in končna točka, polmer in podobno. Za to uporabite vlečenje in spuščanje. + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + + + 5 + 5 + + + Gradient Stops Editor + Urejevalnik postankov preliva + + + This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. + To območje vam omogoča urejanje postankov preliva. Da podvojite obstoječo ročko postanka dvokliknite nanjo. Za ustvaritev novega postanka dvokliknite izven obstoječih ročic postankov. Da spremenite položaj postanka povlecite in spustite njegovo ročko. Če kliknete z desnim gumbom miške, se bo pojavil priročni meni z dodatnimi dejanji. + + + Zoom + Povečava + + + Reset Zoom + Ponastavi povečavo + + + Position + Položaj + + + Hue + Odtenek + + + H + H + + + Saturation + Zasičenost + + + S + J + + + Sat + sob + + + Value + Vrednost + + + V + V + + + Val + Vre. + + + Alpha + Alfa + + + A + A4 + + + Type + Vrsta + + + Spread + Razširitev + + + Color + Barva + + + Current stop's color + Barva trenutnega postanka + + + Show HSV specification + Prikaži specifikacijo HSV + + + HSV + HSV + + + Show RGB specification + Prikaži specifikacijo RGB + + + RGB + RGB + + + Current stop's position + Položaj trenutnega postanka + + + % + + + + Zoom In + Približaj + + + Zoom Out + Oddalji + + + Toggle details extension + Preklopi prikaz podrobnosti + + + > + > + + + Linear Type + Linearna vrsta + + + ... + ... + + + Radial Type + Radialna vrsta + + + Conical Type + Stožčasta vrsta + + + Pad Spread + Razširitev z zapolnitvijo + + + Repeat Spread + Razširitev s ponovitvijo + + + Reflect Spread + Razširitev z odbojem + + + Start X + Začetni X + + + Start Y + Začetni Y + + + Final X + Končni X + + + Final Y + Končni Y + + + Central X + Središčni X + + + Central Y + Središčni Y + + + Focal X + Žariščni X + + + Focal Y + Žariščni Y + + + Radius + Polmer + + + Angle + Kot + + + Linear + Linearno + + + Radial + Radialen + + + Conical + Stožčast + + + Pad + Zapolni + + + Repeat + Ponovi + + + Reflect + Odbij + + + + QtGradientDialog + + Edit Gradient + Uredi preliv + + + + QtGradientEditor + + Form + Obrazec + + + Gradient Editor + Urejevalnik preliva + + + This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. + To območje prikazuje ogled urejevanega preliva. Omogoča vam tudi urejanje parametrov, ki so specifični za vrsto preliva, na primer začetna in končna točka, polmer in podobno. Za to uporabite vlečenje in spuščanje. + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + + + 5 + 5 + + + Gradient Stops Editor + Urejevalnik postankov preliva + + + This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. + To območje vam omogoča urejanje postankov preliva. Da podvojite obstoječo ročko postanka dvokliknite nanjo. Za ustvaritev novega postanka dvokliknite izven obstoječih ročic postankov. Da spremenite položaj postanka povlecite in spustite njegovo ročko. Če kliknete z desnim gumbom miške, se bo pojavil priročni meni z dodatnimi dejanji. + + + Zoom + Povečava + + + Reset Zoom + Ponastavi povečavo + + + Position + Položaj + + + Hue + Odtenek + + + H + H + + + Saturation + Zasičenost + + + S + J + + + Sat + sob + + + Value + Vrednost + + + V + V + + + Val + Vre. + + + Alpha + Alfa + + + A + A4 + + + Type + Vrsta + + + Spread + Razširitev + + + Color + Barva + + + Current stop's color + Barva trenutnega postanka + + + Show HSV specification + Prikaži specifikacijo HSV + + + HSV + HSV + + + Show RGB specification + Prikaži specifikacijo RGB + + + RGB + RGB + + + Current stop's position + Položaj trenutnega postanka + + + % + + + + Zoom In + Približaj + + + Zoom Out + Oddalji + + + Toggle details extension + Preklopi prikaz podrobnosti + + + > + > + + + Linear Type + Linearna vrsta + + + ... + ... + + + Radial Type + Radialna vrsta + + + Conical Type + Stožčasta vrsta + + + Pad Spread + Razširitev z zapolnitvijo + + + Repeat Spread + Razširitev s ponovitvijo + + + Reflect Spread + Razširitev z odbojem + + + Start X + Začetni X + + + Start Y + Začetni Y + + + Final X + Končni X + + + Final Y + Končni Y + + + Central X + Središčni X + + + Central Y + Središčni Y + + + Focal X + Žariščni X + + + Focal Y + Žariščni Y + + + Radius + Polmer + + + Angle + Kot + + + Linear + Linearno + + + Radial + Radialen + + + Conical + Stožčast + + + Pad + Zapolni + + + Repeat + Ponovi + + + Reflect + Odbij + + + + QtGradientView + + Gradient View + Prikaz preliva + + + New... + Novo ... + + + Edit... + Uredi ... + + + Rename + Preimenuj + + + Remove + Odstrani + + + Grad + Grad + + + Remove Gradient + Odstrani preliv + + + Are you sure you want to remove the selected gradient? + Ali res želite odstraniti izbrani preliv? + + + + QtGradientViewDialog + + Select Gradient + Izberite preliv + + + + QmlDesigner::Internal::SettingsPage + + Form + Obrazec + + + Snapping + Pripenjanje + + + Item spacing + + + + Snap margin + + + + Qt Quick Designer + + + + + StartExternalQmlDialog + + Start Simultaneous QML and C++ Debugging + + + + Debugging address: + + + + Debugging port: + + + + 127.0.0.1 + 127.0.0.1 + + + Project: + Projekt: + + + <No project> + + + + Viewer path: + + + + Viewer arguments: + + + + To switch languages while debugging, go to Debug->Language menu. + + + + + MaemoConfigTestDialog + + Device Configuration Test + + + + + MaemoPackageCreationWidget + + Check this if you want the files below to be deployed directly. + + + + Skip packaging step + + + + Version number: + Številka različice: + + + Major: + Velika + + + Minor: + Mala + + + Patch: + Popravek 1 + + + Files to deploy: + + + + Add File to Package + + + + Remove File from Package + + + + + MaemoSettingsWidget + + Maemo Device Configurations + + + + Configuration: + Nastavitve + + + Name + Ime + + + Device type: + Vrsta naprave: + + + Remote device + Oddaljena naprava + + + Maemo emulator + + + + Authentication type: + + + + Password + Geslo + + + Key + Ključ + + + Host name: + Ime gostitelja: + + + IP or host name of the device + + + + Ports: + + + + SSH: + ssh + + + Gdb server: + + + + Connection timeout: + + + + s + s + + + Username: + Uporabniško ime: + + + Password: + Geslo: + + + Private key file: + Datoteka z zasebnim ključem: + + + Add + Dodaj + + + Remove + Odstrani + + + Test + Preizkus + + + Generate SSH Key ... + + + + Deploy Public Key ... + + + + + MaemoSshConfigDialog + + SSH Key Configuration + + + + Options + Možnosti + + + Key size: + &Velikost ključa: + + + Key algorithm: + + + + RSA + RSA + + + DSA + DSA + + + Key + Ključ + + + Generate SSH Key + + + + Save Public Key... + + + + Save Private Key... + + + + Close + Zapri + + + + Qt4ProjectManager::Internal::S60CreatePackageStepWidget + + Form + Obrazec + + + Self-signed certificate + Samo-podpisano potrdilo + + + Custom certificate: + Potrdilo po meri: + + + Choose certificate file (.cer) + Izberite datoteko s potrdilom (*.cer) + + + Key file: + Datoteka s ključem: + + + + Qt4ProjectManager::Internal::TargetSetupPage + + Setup targets for your project + + + + Qt Creator can set up the following targets: + + + + Qt Version + Različica Qt: + + + Status + Stanje + + + Build Directory + &Mapa za gradnjo: + + + Import Existing Shadow Build... + + + + Import + Is this an import of an existing build or a new one? + Uvozi + + + New + Is this an import of an existing build or a new one? + Novo + + + Qt Creator can set up the following targets for project <b>%1</b>: + %1: Project name + + + + Choose a directory to scan for additional shadow builds + + + + No builds found + + + + No builds for project file "%1" were found in the folder "%2". + %1: pro-file, %2: directory that was checked. + + + + <b>Error:</b> + Severity is Task::Error + Napaka + + + <b>Warning:</b> + Severity is Task::Warning + Opozorilo + + + + Qt4ProjectManager::Internal::TestWizardPage + + WizardPage + StranČarovnika + + + Specify basic information about the test class for which you want to generate skeleton source code file. + + + + Class name: + Ime razreda: + + + Type: + Vrsta: + + + Test + Preizkus + + + Benchmark + + + + File: + &Datoteka + + + Generate initialization and cleanup code + + + + Test slot: + + + + Requires QApplication + + + + Use a test data set + + + + Test Class Information + + + + + VCSBase::CleanDialog + + Clean Repository + + + + The directory %1 could not be deleted. + + + + The file %1 could not be deleted. + + + + There were errors when cleaning the repository %1: + + + + Delete... + &Zbriši + + + Name + Ime + + + Repository: %1 + Skladišče: + + + %1 bytes, last modified %2 + + + + Delete + Zbriši + + + Do you want to delete %n files? + + + + + + + + + Cleaning %1 + + + + + CommonSettingsPage + + Wrap submit message at: + + + + characters + znak + + + 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> + Datoteka s seznamom imen in e-poštnih naslovov v formatu mailmap s 4 stolpci: +ime <e-pošta> drugo_ime <druga_e-pošta> + + + 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: + Nastavitvena datoteka s polji po meri: + + + + BorderImageSpecifics + + Image + Slika + + + Source + Vir + + + Source Size + Izvorna velikost + + + Left + Levo + + + Right + Desno + + + Top + Vrh + + + Bottom + Dno + + + + emptyPane + + none or multiple items selected + izbrana ni nobena postavka, ali pa je izbranih več + + + + ExpressionEditor + + Expression + Izraz + + + + Extended + + Effect + Učinek + + + Blur Radius: + Polmer zabrisanosti: + + + Pixel Size: + Velikost pike: + + + x Offset: + Zamik x: + + + y Offset: + Zamik y: + + + + ExtendedFunctionButton + + Reset + Ponastavi + + + Set Expression + Nastavi izraz + + + + FontGroupBox + + Font + Pisava + + + Size + Velikost + + + Font Style + Slog pisave + + + Style + Slog + + + + Geometry + + Geometry + Geometrija + + + Position + Položaj + + + Size + Velikost + + + Lock aspect ratio + Zakleni razmerje stranic + + + + ImageSpecifics + + Image + Slika + + + Source + Vir + + + Fill Mode + Način zapolnitve + + + Aliasing + + + + Smooth + Mehko + + + Source Size + Izvorna velikost + + + Painted Size + Izrisana velikost + + + + Layout + + Layout + Razpored + + + Anchors + Sidra + + + Target + Cilj + + + Margin + Odmik od roba + + + + Modifiers + + Manipulation + Rokovanje + + + Rotation + Zasuk + + + z + z + + + + RectangleColorGroupBox + + Colors + Barve + + + Stops + Postanki + + + Gradient Stops + Postanki preliva + + + Rectangle + Pravokotnik + + + Border + Rob + + + + RectangleSpecifics + + Rectangle + Pravokotnik + + + Border + Rob + + + Radius + Polmer + + + + StandardTextColorGroupBox + + Color + Barva + + + Text + Besedilo + + + Style + Slog + + + Selection + Izbor + + + Selected + Izbrano + + + + StandardTextGroupBox + + Text + Besedilo + + + Wrap Mode + + + + Alignment + Poravnava + + + Aliasing + + + + Smooth + + + + + Switches + + special properties + posebne lastnosti + + + layout and geometry + razpored in geometrija + + + Geometry + Geometrija + + + advanced properties + napredne lastnosti + + + Advanced + Napredno + + + + TextEditSpecifics + + Text Edit + Urejanje besedila + + + Format + Oblika + + + + TextInputGroupBox + + Text Input + Vnos besedila + + + Input Mask + Vhodna maska + + + Echo Mode + Način odmeva + + + Pass. Char + Ges. znak + + + Password Character + Znak za geslo + + + Flags + Zastavice + + + Read Only + Samo za branje + + + Cursor Visible + Kazalec je viden + + + Focus On Press + Fokus ob pritisku + + + Auto Scroll + Samodejno drsenje + + + + Transformation + + Transformation + Preoblikovanje + + + Origin + Izhodišče + + + Top Left + Zgoraj levo + + + Top + Vrh + + + Top Right + Zgoraj desno + + + Left + Levo + + + Center + Sredina + + + Right + Desno + + + Bottom Left + Spodaj levo + + + Bottom + Dno + + + Bottom Right + Spodaj desno + + + Scale + Merilo + + + Rotation + Zasuk + + + + Type + + Type + Vrsta + + + Id + ID + + + + Visibility + + Visibility + Vidnost + + + Is visible + Je vidno + + + Clip + + + + Opacity + Prekrivnost + + + + WebViewSpecifics + + WebView + WebView + + + Preferred Width + Želena širina + + + Page Height + Višina strani + + + + ExtensionSystem::PluginDetailsView + + None + Brez + + + + ExtensionSystem::PluginView + + Load on Startup + Naloži ob zagonu + + + Utilities + Potrebščine + + + + QmlJS::Check + + unknown value for enum + + + + value might be 'undefined' + vrednost je lahko »undefined« (nedoločena) + + + enum value is not a string or number + + + + numerical value expected + pričakovana je bila številska vrednost + + + boolean value expected + pričakovana je bila logična vrednost + + + string value expected + kot vrednost je bil pričakovan niz + + + not a valid color + ni veljavna barva + + + expected anchor line + pričakovana je bila vrstica s sidrom + + + unknown type + neznana vrsta + + + expected id + pričakovan je bil ID + + + using string literals for ids is discouraged + + + + ids must be lower case + ID-ji morajo imeti same male črke + + + '%1' is not a valid property name + »%1« ni veljavno ime lastnosti + + + '%1' does not have members + »%1« nima članov + + + '%1' is not a member of '%2' + »%1« ni član »%2« + + + + QmlJS::Interpreter::QmlXmlReader + + The file is not module file. + Datoteka ni datoteka modula. + + + Unexpected element <%1> in <%2> + Nepričakovan element <%1> v <%2> + + + invalid value '%1' for attribute %2 in <%3> + neveljavna vrednost »%1« za lastnost %2 v <%3> + + + <%1> has no valid %2 attribute + <%1> nima veljavne lastnosti %2 + + + %1: %2 + %1: %2 + + + + QmlJS::Link + + could not find file or directory + datoteke ali mape ni bilo moč najti + + + expected two numbers separated by a dot + pričakovani sta bili dve šrevili ločeni s piko + + + package import requires a version number + uvažanje paketa zahteva številko različice + + + package not found + paket ni bil najden + + + + Utils::FancyMainWindow + + Locked + Zaklenjena + + + Reset to Default Layout + Ponastavi na privzeti razpored + + + + Utils::FileWizardDialog + + Location + Lokacija + + + + Utils::FilterLineEdit + + Filter + Filter + + + Clear text + Počisti besedilo + + + + Utils::fileDeletedPrompt + + File has been removed + Datoteka je bila odstranjena + + + The file %1 has been removed outside Qt Creator. Do you want to save it under a different name, or close the editor? + Datoteka %1 je bila odstranjena izven Qt Creatorja. Ali jo želite shraniti pod drugim imenom ali zapreti urejevalnik? + + + Close + Zapri + + + Save as... + Shrani kot ... + + + Save + Shrani + + + + 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>Spremenljivka</th><th>Se razširi v</th></tr><tr><td>%d</td><td>mapa trenutne datoteke</td></tr><tr><td>%f</td><td>ime datoteke (s celotno potjo)</td></tr><tr><td>%n</td><td>ime datoteke (brez poti)</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 + Desetiška nepredznačena vrednost (najprej mali konec): %1 +Desetiška nepredznačena vrednost (najprej veliki konec): %2- +Desetiška predznačena vrednost (najprej mali konec): %3 +Desetiška predznačena vrednost (najprej veliki konec): %4 + + + Copying Failed + Kopiranje ni uspelo + + + You cannot copy more than 4 MB of binary data. + Več kot 4 MiB dvojiških podatkov ne morete kopirati. + + + Copy Selection as ASCII Characters + Skopiraj izbor kot znake ASCII + + + Copy Selection as Hex Values + Skopiraj izbor kot šestnajstiške vrednosti + + + Jump to Address in This Window + Skoči na naslov v tem oknu + + + Jump to Address in New Window + Skoči na naslov v novem oknu + + + Jump to Address 0x%1 in This Window + Skoči na naslov 0x%1 v tem oknu + + + Jump to Address 0x%1 in New Window + Skoči na naslov 0x%1 v novem oknu + + + + BINEditor::Internal::ImageViewerFactory + + Image Viewer + Pregledovalnik slik + + + + CMakeProjectManager::Internal::CMakeTarget + + Desktop + CMake Default target display name + Namizje + + + + CMakeProjectManager::Internal::MakeStep + + Make + CMakeProjectManager::MakeStep display name. + Make + + + + CMakeProjectManager::Internal::MakeStepFactory + + Make + Display name for CMakeProjectManager::MakeStep id. + Make + + + + Core::CommandMappings + + Command + Ukaz + + + Label + Oznaka + + + + Core + + Qt + Qt + + + Environment + Okolje + + + + Core::DesignMode + + Design + Oblikovanje + + + + Core::Internal::SystemEditor + + Could not open url %1. + Ni bilo moč odpreti URL-ja %1. + + + + Core::EditorToolBar + + Copy Full Path to Clipboard + Skopiraj celotno pot na odložišče + + + Make writable + Spremeni v zapisljivo + + + File is writable + Datoteka je zapisljiva + + + + Core::HelpManager + + Unfiltered + Nefiltrirano + + + + GenericSshConnection + + Could not connect to host. + Ni se možno povezati z gostiteljem. + + + Error in cryptography backend: %1 + Napaka v hrbtenici za šifriranje: %1 + + + + Core::InteractiveSshConnection + + Error sending input + Napaka pri pošiljanju vhoda + + + + Core::SftpConnection + + Error setting up SFTP subsystem + Napaka pri nastavljanju podsistema SFTP + + + Could not open file '%1' + Ni moč odpreti datoteke »%1« + + + Could not uplodad file '%1' + Ni bilo moč poslati datoteke »%1« + + + Could not copy remote file '%1' to local file '%2' + Ni bilo moč skopirati oddaljene datoteke »%1« v krajevno »%2« + + + Could not create remote directory + Ni bilo moč ustvariti oddaljene mape + + + Could not remove remote directory + Ni bilo moč odstraniti oddaljene mape + + + Could not get remote directory contents + Ni bilo moč pridobiti vsebine oddaljene mape + + + Could not remove remote file + Ni bilo moč odstraniti oddaljene datoteke + + + Could not change remote working directory + Ni bilo moč zamenjati oodaljene delovne mape + + + + SshKeyGenerator + + Error creating temporary files. + Napaka pri ustvarjanju začasnih datotek. + + + Error generating keys: %1 + Napaka pri ustvarjanju ključev: %1 + + + Error reading temporary files. + Napaka pri branju začasnih datotek. + + + + CodePaster + + Code Pasting + Prilepljanje kode + + + + CodePaster::FileShareProtocol + + Cannot open %1: %2 + Ni moč odpreti %1: %2 + + + %1 does not appear to be a paster file. + + + + Error in %1 at %2: %3 + Napaka v %1 pri %2: %3 + + + Please configure a path. + Nastavite pot. + + + Unable to open a file for writing in %1: %2 + Datoteke ni moč odpreti za pisanje v %1: %2 + + + Pasted: %1 + Prilepil. %1 + + + + CodePaster::FileShareProtocolSettingsPage + + Fileshare + Fileshare + + + + CodePaster::PasteBinDotComSettings + + Pastebin.com + Pastebin.com + + + + CodePaster::PasteView + + <Comment> + <komentar> + + + Paste + Prilepi + + + + CodePaster::Protocol + + %1 - Configuration Error + %1 - Napaka pri nastavitvi + + + Settings... + Nastavitve ... + + + + CppEditor + + C++ + C++ + + + + CppTools::QuickFix + + Rewrite Using %1 + Preoblikuj z uporabo »%1« + + + Swap Operands + Izmenjaj operanda + + + Rewrite Condition Using || + Preoblikuj pogoj z uporabo »||« + + + Split Declaration + Razdeli deklaracijo + + + Add Curly Braces + Dodaj zavite oklepaje + + + Move Declaration out of Condition + Deklaracijo premakni izven pogoja + + + Split if Statement + Razdeli stavek »if« + + + Enclose in QLatin1String(...) + Obdaj z QLatin1String(...) + + + Convert to Objective-C String Literal + + + + Use Fast String Concatenation with % + Uporabi hitro spajanje nizov z % + + + + VCS + + CVS Commit Editor + + + + CVS Command Log Editor + + + + CVS File Log Editor + + + + CVS Annotation Editor + + + + CVS Diff Editor + + + + Git Command Log Editor + + + + Git File Log Editor + + + + Git Annotation Editor + + + + Git Diff Editor + + + + Git Submit Editor + + + + Mercurial Command Log Editor + + + + Mercurial File Log Editor + + + + Mercurial Annotation Editor + + + + Mercurial Diff Editor + + + + Mercurial Commit Log Editor + + + + Perforce.SubmitEditor + + + + Perforce CommandLog Editor + + + + Perforce Log Editor + + + + Perforce Diff Editor + + + + Perforce Annotation Editor + + + + Subversion Editor + + + + Subversion Commit Editor + + + + Subversion Command Log Editor + + + + Subversion File Log Editor + + + + Subversion Annotation Editor + + + + Subversion Diff Editor + + + + + CVS::Internal::CVSEditor + + Annotate revision "%1" + + + + + Debugger::Internal::CdbOptionsPage + + Cdb + CDB + + + + CdbSymbolGroupContext + + <Unknown Type> + <neznana vrsta> + + + <Unknown Value> + <neznana vrednost> + + + <Unknown> + <neznano> + + + + Debugger::Cdb + + Unable to load the debugger engine library '%1': %2 + Ni moč naložiti knjižnice razhroščevalnega pogona »%1«: %2 + + + Unable to resolve '%1' in the debugger engine library '%2' + Ni moč razrešiti »%1« v knjižnici razhroščevalnega pogona »%2« + + + + CdbCore::CoreEngine + + Unable to set the image path to %1: %2 + Ni moč nastaviti poti slike na %1: %2 + + + Unable to create a process '%1': %2 + Ni moč ustvariti procesa »%1«: %2 + + + Attaching to a process failed for process id %1: %2 + Priklapljanje na proces z ID-jem %1 ni uspelo: %2 + + + + Debugger::DebuggerUISwitcher + + &Languages + &Jeziki + + + Alt+L + Alt+L + + + Language + Jezik + + + + Debugger::Internal::GdbChooserWidget + + Unable to run '%1': %2 + Ni moč zagnati »%1«: %2 + + + Binary + Program + + + Toolchains + Verige orodij + + + Duplicate binary + Podvojen program + + + The binary '%1' already exists. + Program »%1« že obstaja. + + + + Debugger::Internal::ToolChainSelectorWidget + + Desktop/General + Namizje/splošno + + + Symbian + Symbian + + + Maemo + Maemo + + + + Debugger::Internal::BinaryToolChainDialog + + Select binary and toolchains + Izberite program in verige orodij + + + Gdb binary + Program GDB + + + Path: + Pot: + + + + Debugger::Internal::PdbEngine + + Running requested... + Zahtevanje zagona ... + + + Unable to start pdb '%1': %2 + Ni moč zagnati PDB-ja »%1«: %2 + + + Adapter start failed + Zagon prilagojevalnika ni uspel + + + '%1' contains no identifier + »%1« ne vsebuje nobenega identifikatorja + + + String literal %1 + + + + Cowardly refusing to evaluate expression '%1' with potential side effects + Preprečujem ovrednotenje izraza »%1« zaradi možnih stranskih učinkov + + + Pdb I/O Error + V/I napaka PDB-ja + + + The Pdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. + Proces PDB se ni uspel zagnati. Bodisi manjka klicani program »%1« bodisi nimate zadosti pravic za klic programa. + + + The Pdb process crashed some time after starting successfully. + Proces PDB se je nekaj časa po uspešnem zagonu sesul. + + + The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. + Potekel je čas za zadnjo funkcijo waitFor...(). Stanje QProcessa se ni spremenilo. Znova lahko poskusite klicati waitFor...(). + + + 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. + Med pisanjem v proces PDB je prišlo do napake. Proces morda ne teče, ali pa je morda zaprl svoj vhodni kanal. + + + An error occurred when attempting to read from the Pdb process. For example, the process may not be running. + Med branjem iz procesa PDB je prišlo do napake. Proces morda ne teče. + + + An unknown error in the Pdb process occurred. + Prišlo je do neznane napake v procesu PDB. + + + + Debugger::Internal::SnapshotHandler + + Function: + Funkcija: + + + File: + Datoteka: + + + Date: + Datum: + + + ... + ... + + + <More> + <več> + + + Function + Funkcija + + + Date + Datum + + + Location + Lokacija + + + + Debugger::Internal::SnapshotWindow + + Snapshots + Posnetki + + + Adjust Column Widths to Contents + Širine stolpcev prilagodi vsebinam + + + Always Adjust Column Widths to Contents + Širine stolpcev vedno prilagodi vsebinam + + + + Designer::Internal::FormEditorFactory + + This file can only be edited in <b>Design</b> mode. + Datoteko je moč urejati le v načinu <b>Oblikovanje</b>. + + + Switch mode + Preklopi način + + + + Designer::Internal::FormFileWizardDialog + + Location + Lokacija + + + + FakeVim::Internal::FakeVimHandler::Private + + Not an editor command: %1 + Ni ukaz urejevalnika: %1 + + + + FakeVim::Internal::FakeVimExCommandsPage + + Ex Command Mapping + + + + FakeVim + FakeVim + + + Ex Trigger Expression + + + + Regular expression: + Regularni izraz: + + + Ex Command + + + + + Find::FindPlugin + + &Find/Replace + &Najdi in zamenjaj + + + Advanced Find + Napredno iskanje + + + Open Advanced Find... + Odpri napredno iskanje ... + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + GenericProjectManager::Internal::GenericMakeStep + + Make + Znamka + + + + GenericProjectManager::Internal::Manager + + Failed opening project '%1': Project already open + Odpiranje projekta »%1« ni uspelo: projekt je že odprt + + + + Git::Internal::RemoteBranchModel + + (no branch) + + + + + Git::Internal::GitCommand + + Error: Git timed out after %1s. + + + + + Git::Internal::GitEditor + + Blame %1 + + + + + Help + + Help + Pomoč + + + + QApplication + + EditorManager + Next Open Document in History + + + + EditorManager + Previous Open Document in History + + + + + Help::Internal::HelpViewer + + Open Link + Odpri povezavo + + + Open Link as New Page + Odpri povezavo kot novo stran + + + Copy Link + Skopiraj povezavo + + + Copy + Skopiraj + + + Reload + Znova naloži + + + + Help::Internal::OpenPagesModel + + (Untitled) + (neimenovano) + + + + Help::Internal::OpenPagesWidget + + Close %1 + Zapri %1 + + + Close All Except %1 + Zapri vse, razen %1 + + + + Mercurial::Internal::CloneWizard + + Clones a Mercurial repository and tries to load the contained project. + + + + Mercurial Clone + + + + + Mercurial::Internal::CloneWizardPage + + Location + Lokacija + + + Specify repository URL, checkout directory and path. + + + + Clone URL: + URL za kloniranje: + + + + Mercurial::Internal::CommitEditor + + Commit Editor + + + + + Mercurial::Internal::MercurialClient + + Unable to find parent revisions of %1 in %2: %3 + + + + Cannot parse output: %1 + + + + Hg Annotate %1 + + + + Hg diff %1 + + + + Hg log %1 + + + + Hg incoming %1 + + + + Hg outgoing %1 + + + + Working... + delam + + + + Mercurial::Internal::MercurialControl + + Mercurial + + + + + Mercurial::Internal::MercurialEditor + + Annotate %1 + Dodaj opombo za %1 + + + + Mercurial::Internal::MercurialJobRunner + + Executing: %1 %2 + + %1 Izvajanje: %2 %3 + + + + Unable to start mercurial process '%1': %2 + + + + Timed out after %1s waiting for mercurial process to finish. + + + + + Mercurial::Internal::MercurialPlugin + + Mercurial + + + + Annotate Current File + + + + Annotate "%1" + Dodaj opombo + + + Diff Current File + + + + Diff "%1" + Diff + + + Alt+H,Alt+D + + + + Log Current File + + + + Log "%1" + Dnevnik + + + Alt+H,Alt+L + + + + Status Current File + + + + Status "%1" + Stanje + + + Alt+H,Alt+S + + + + Add + Dodaj + + + Add "%1" + Dodaj + + + Delete... + &Zbriši + + + Delete "%1"... + &Zbriši + + + Revert Current File... + + + + Revert "%1"... + Povrni + + + Diff + Diff + + + Log + Dnevnik + + + Revert... + Povrni ... + + + Status + Stanje + + + Pull... + Potegni + + + Push... + Potisni + + + Update... + Posodobi + + + Import... + Uvozi ... + + + Incoming... + Prihajajoč + + + Outgoing... + Odhajajoč + + + Commit... + Uveljavi + + + Alt+H,Alt+C + + + + Create Repository... + + + + Pull Source + + + + Push Destination + + + + Update + Posodobi + + + Incoming Source + + + + Commit + Uveljavi + + + Diff Selected Files + + + + &Undo + &Razveljavi + + + &Redo + &Uveljavi + + + 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". + + + + Close commit editor + + + + Do you want to commit the changes? + + + + Message check failed. Do you want to proceed? + + + + + Mercurial::Internal::OptionsPageWidget + + Mercurial Command + + + + + Perforce::Internal::PerforceChecker + + No executable specified + Določen ni noben program. + + + "%1" timed out after %2ms. + + + + Unable to launch "%1": %2 + Ni moč zagnati %1. + + + "%1" crashed. + sesutje + + + "%1" terminated with exit code %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. + + + + + Perforce::Internal::PerforceEditor + + Annotate change list "%1" + + + + + ProjectExplorer::BaseProjectWizardDialog + + Location + Lokacija + + + untitled + File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks. + + neimenovan + + + + ProjectExplorer::Internal::BuildConfigDialog + + Change build configuration && continue + Spremeni nastavitve za gradnjo in nadaljuj + + + Cancel + Prekliči + + + Continue anyway + Vseeno nadaljuj + + + Run configuration does not match build configuration + Nastavitve za zagon se ne ujemajo z nastavitvami za gradnjo + + + The active build configuration builds a target that cannot be used by the active run configuration. + Aktivne nastavitve za gradnjo ustvarijo rezultat, ki ga aktivne nastavitve za zagon ne morejo uporabiti. + + + This can happen if the active build configuration uses the wrong Qt version and/or tool chain for the active run configuration (for example, running in Symbian emulator requires building with the WINSCW tool chain). + To se lahko zgodi, če aktivne nastavitve za gradnjo uporabljajo napačno različico Qt ali pa napačno verigo orodij za aktivne nastavitve zagona (npr. posnemovalnik Symbiana zahteva gradnjo z verigo orodij WINSCW). + + + No valid build configuration found. + Najdenih ni bilo nobenih nastavitev za gradnjo. + + + Active run configuration + Aktivne nastavitve za zagon + + + Choose build configuration: + Izberite nastavitve za gradnjo + + + + ProjectExplorer::BuildConfiguration + + System Environment + Sistemsko okolje + + + Clean Environment + Čisto okolje + + + + ProjectExplorer::BuildEnvironmentWidget + + Clear system environment + Počisti sistemsko okolje + + + Build Environment + Okolje za gradnjo + + + + BuildSettingsPanelFactory + + Build Settings + Nastavitve za gradnjo + + + + BuildSettingsPanel + + Build Settings + Nastavitve za gradnjo + + + + ProjectExplorer::CustomWizard + + Details + Default short title for custom wizard page to be shown in the progress pane of the wizard. + Podrobnosti + + + Creates a C++ plugin that makes it possible to offer extensions that can be loaded dynamically into applications using the QDeclarativeEngine class. + Ustvari vstavek C++, ki omogoča ponujanje razširitev, ki jih je moč dinamično naložiti v programe z uporabo razreda QDeclarativeEngine. + + + Custom QML Extension Plugin + Vstavek razširitev QML po meri + + + QML Extension Plugin + Vstavek razširitev QML + + + Custom QML Extension Plugin Parameters + Parametri vstavka razširitev QML po meri + + + Example Object Class-name: + + + + + ProjectExplorer::CustomProjectWizard + + The project %1 could not be opened. + Projekta %1 ni bilo moč odpreti. + + + + ProjectExplorer::Internal::CustomWizardPage + + Path: + Pot: + + + + ProjectExplorer::Internal::DependenciesModel + + <No other projects in this session> + <v tej seji ni nobenega drugega projekta> + + + + DependenciesPanel + + Dependencies + Odvisnosti + + + + DependenciesPanelFactory + + Dependencies + Odvisnosti + + + + EditorSettingsPanelFactory + + Editor Settings + Nastavitve urejevalnika + + + + EditorSettingsPanel + + Editor Settings + Nastavitve urejevalnika + + + + ProjectExplorer::Internal::FolderNavigationWidget + + Open + Odpri + + + Open parent folder + Odpri nadrejeno mapo + + + Open "%1" + Odpri »%1« + + + Open with + Odpri v + + + Choose folder... + Izbor mape ... + + + Choose folder + Izbor mape + + + Show in Explorer... + Prikaži v Explorerju ... + + + Show in Finder... + Prikaži v Finderju ... + + + Show containing folder... + Prikaži vsebujočo mapo ... + + + Open Command Prompt here... + Tu odpri ukazno vrstico ... + + + Open Terminal here... + Tu odpri terminal ... + + + Launching a file browser failed + Zagon upravljalnika datotek ni uspel + + + Unable to start the file manager: + +%1 + + + Ni bilo moč zagnati upravljalnika datotek: + +%1 + + + + + '%1' returned the following error: + +%2 + »%1« je vrnil naslednjo napako. + +%2 + + + Settings... + Nastavitve ... + + + Launching Windows Explorer failed + Zaganjanje Windows Explorer ni uspelo + + + Could not find explorer.exe in path to launch Windows Explorer. + V poti ni bilo moč najti explorer.exe in zato ni bilo moč zagnati Windows Explorer. + + + + ProjectExplorer::Internal::MiniTargetWidget + + Select active build configuration + Izberite aktivne nastavitve gradnje + + + Select active run configuration + Izberite aktivne nastavitve zagona + + + Build: + Gradnja: + + + Run: + Zagon: + + + + ProjectExplorer::Internal::MiniProjectTargetSelector + + Project + Projekt + + + Select active project + Izberite aktivni projekt + + + Build: + Gradnja: + + + Run: + Zagon: + + + <html><nobr><b>Project:</b> %1<br/>%2%3<b>Run:</b> %4%5</html> + <html><nobr><b>Projekt:</b> %1<br/>%2%3<b>Zagon:</b> %4%5</html> + + + <b>Target:</b> %1<br/> + <b>Cilj:</b> %1<br/> + + + <b>Build:</b> %2<br/> + <b>Gradnja:</b> %2<br/> + + + <br/>%1 + <br/>%1 + + + + ProjectExplorer::ProjectConfiguration + + Clone of %1 + Klon od %1 + + + + ProjectExplorer + + Projects + Projekti + + + Other Project + Drugi projekt + + + + TargetSettingsPanelFactory + + Targets + Cilji: + + + + RunSettingsPanelFactory + + Run Settings + Nastavitve za zagon + + + + RunSettingsPanel + + Run Settings + Nastavitve za zagon + + + + ProjectExplorer::Internal::SessionNameInputDialog + + Enter the name of the session: + Vnesite ime seje: + + + + ProjectExplorer::Internal::TargetSelector + + Run + Zaženi + + + Build + Zgradi + + + + ProjectExplorer::Internal::TargetSettingsPanelWidget + + No target defined. + Določenega ni nobenega cilja. + + + Qt Creator + Qt Creator + + + Do you really want to remove the +"%1" target? + Ali res želite odstraniti +cilj »%1«? + + + + ProjectExplorer::TaskWindow + + Build Issues + Težave pri gradnji + + + &Copy + S&kopiraj + + + &Annotate + Dodaj &opombo + + + Show Warnings + Prikaži opozorila + + + Filter by categories + Filtriraj po kategorijah + + + + GenericProjectManager::GenericTarget + + Desktop + Generic desktop target display name + Namizje + + + + Qt4ProjectManager::Internal::Qt4Target + + Desktop + Qt4 Desktop target display name + Namizje + + + Symbian Emulator + Qt4 Symbian Emulator target display name + Posnemovalnik Symbian + + + Symbian Device + Qt4 Symbian Device target display name + Naprava Symbian + + + Maemo Emulator + Qt4 Maemo Emulator target display name + Posnemovalnik Maemo + + + Maemo Device + Qt4 Maemo Device target display name + Naprava Maemo + + + Maemo + Qt4 Maemo target display name + Maemo + + + Qt Simulator + Qt4 Simulator target display name + Qt Simulator + + + <b>Device:</b> Not connected + <b>Naprava:</b> Ni povezana + + + <b>Device:</b> %1 + <b>Naprava:</b> %1 + + + <b>Device:</b> %1, %2 + <b>Naprava:</b> %1, %2 + + + + QmlProjectManager::QmlTarget + + QML Viewer + QML Viewer target display name + Pregledovalnik QML + + + + QmlDesigner::FormEditorWidget + + Snap to guides (E) + Pripni na vodila (E) + + + Show bounding rectangles (A) + Prikaži obdajajoče pravokotnike (A) + + + Only select items with content (S) + Izberi samo objekte z vsebino (S) + + + + QmlDesigner::ComponentView + + whole document + celoten dokument + + + + QmlDesigner::DesignDocumentController + + -New Form- + -Nov obrazec- + + + Cannot save to file "%1": permission denied. + Shranjevanje v datoteko »%1« ni mogoče: nimate dovoljenja. + + + Parent folder "%1" for file "%2" does not exist. + Mapa »%1« za datoteko »%2« ne obstaja. + + + Cannot write file: "%1". + Datoteke ni moč zapisati: »%1«. + + + + QmlDesigner::XUIFileDialog + + Open file + Odpri datoteko + + + Save file + Shrani datoteko + + + Declarative UI files (*.qml) + Deklarativni grafični vmesnik (*.qml) + + + All files (*) + Vse datoteke (*) + + + + QmlDesigner::ItemLibrary + + Library + Title of library view + Knjižnica + + + Items + Title of library items view + Objekti + + + Resources + Title of library resources view + Viri + + + <Filter> + Library search input hint text + <filter> + + + + QmlDesigner::NavigatorTreeModel + + Invalid Id + Neveljaven ID + + + + QmlDesigner::NavigatorWidget + + Navigator + Title of navigator view + Krmar + + + + QmlDesigner::PluginManager + + About plugins + O vstavkih + + + + WidgetPluginManager + + Failed to create instance. + Ustvaritev izvoda ni uspela. + + + Not a QmlDesigner plugin. + Ni vstavek QmlDesigner. + + + Failed to create instance of file '%1': %2 + Ustvaritev izvoda datoteke »%1« ni uspela: %2 + + + Failed to create instance of file '%1'. + Ustvaritev izvoda datoteke »%1« ni uspela. + + + File '%1' is not a QmlDesigner plugin. + Datoteka »%1« ni vstavek QmlDesigner. + + + + QmlDesigner::AllPropertiesBox + + Properties + Title of properties view. + Lastnosti + + + + QmlDesigner::ContextPaneWidget + + Disable permanently + Trajno onemogoči + + + + FileWidget + + Open File + Odpri datoteko + + + + QmlDesigner::PropertyEditor + + Invalid Id + Neveljaven ID + + + + qdesigner_internal::QtGradientStopsController + + H + O + + + S + Z + + + V + V + + + Hue + Odtenek + + + Sat + Zasič. + + + Val + Vredn. + + + Saturation + Zasičenost + + + Value + Vrednost + + + R + R + + + G + Z + + + B + M + + + Red + Rdeča + + + Green + Zelena + + + Blue + Modra + + + + QtGradientStopsWidget + + New Stop + Nov postanek + + + Delete + Zbriši + + + Flip All + Obrni vse + + + Select All + Izberi vse + + + Zoom In + Povečaj + + + Zoom Out + Zmanjšaj + + + Reset Zoom + Ponastavi povečavo + + + + QmlDesigner::Internal::StatesEditorModel + + base state + Implicit default state + osnovno stanje + + + Invalid state name + Neveljavno ime stanja + + + The empty string as a name is reserved for the base state. + Prazen niz za ime je rezervirano za osnovno stanje. + + + Name already used in another state + Ime je že uporabljeno v drugem stanju + + + + QmlDesigner::Internal::StatesEditorWidgetPrivate + + base state + osnovno stanje + + + State%1 + Default name for newly created states + Stanje%1 + + + + QmlDesigner::StatesEditorWidget + + States + Title of Editor widget + Stanja + + + + QmlDesigner::InvalidArgumentException + + Failed to create item of type %1 + Ni bilo moč ustvariti objekta vrste %1 + + + + InvalidIdException + + Only alphanumeric characters and underscore allowed. +Ids must begin with a lowercase letter. + Dovoljeni so samo alfanumerični znaki in podčrtaj. +ID-ji se morajo začeti z malo črko. + + + Ids have to be unique. + ID-ji morajo biti edinstveni. + + + Invalid Id: %1 +%2 + Neveljaven ID: %1 +%2 + + + + QmlDesigner::Internal::SubComponentManagerPrivate + + QML Components + Komponente QML + + + + QmlDesigner::Internal::ModelPrivate + + invalid type + Neveljavna vrsta + + + + QmlDesigner::QmlModelView + + Invalid Id + Neveljaven ID + + + + QmlDesigner::RewriterView + + Error parsing + Napaka razčlenjevanja + + + Internal error + Notranja napaka + + + "%1" + »%1« + + + line %1 + vrstica %1 + + + column %1 + stolpec %1 + + + + QmlDesigner::Internal::DocumentWarningWidget + + <a href="goToError">Go to error</a> + <a href="goToError">Pojdi do napake</a> + + + %3 (%1:%2) + %3 (%1:%2) + + + Internal error (%1) + Notranja napaka (%1) + + + + QmlDesigner::Internal::DesignModeWidget + + &Undo + &Razveljavi + + + &Redo + &Uveljavi + + + Delete + Zbriši + + + Delete "%1" + &Zbriši »%1« + + + Cu&t + &Izreži + + + Cut "%1" + Izreži »%1« + + + &Copy + S&kopiraj + + + Copy "%1" + Skopiraj »%1« + + + &Paste + Pri&lepi + + + Paste "%1" + Prilepi »%1« + + + Select &All + Izberi &vse + + + Select All "%1" + Izberi vse »%1« + + + Toggle Full Screen + Preklopi celozaslonski način + + + &Restore Default View + &Obnovi privzeti prikaz + + + Toggle &Left Sidebar + Preklopi &levi stranski pas + + + Toggle &Right Sidebar + Preklopi &desni stranski pas + + + Projects + Projekti + + + File System + Datotečni sistem + + + Open Documents + Odprt dokumenti + + + + QmlDesigner::Internal::BauhausPlugin + + Switch Text/Design + Preklopi med besedilom in oblikovanjem + + + Save %1 As... + Shrani %1 kot ... + + + &Save %1 + &Shrani %1 + + + Revert %1 to Saved + Povrni %1 na shranjeno + + + Close %1 + Zapri %1 + + + Close All Except %1 + Zapri vse, razen %1 + + + Close Others + Zapri ostale + + + + Qt Quick + + Qt Quick + Qt Quick + + + + Qml::Internal::QLineGraph + + Frame rate + Hitrost sličic + + + + Qml::Internal::GraphWindow + + Total time elapsed (ms) + Pretečeni čas (ms) + + + + Qml::Internal::CanvasFrameRate + + Resolution: + Ločljivost: + + + Clear + Počisti + + + New Graph + Nov graf + + + Enabled + Omogočeno + + + + Qml::Internal::ExpressionQueryWidget + + <Type expression to evaluate> + <vnesite izraz za ovrednotiti> + + + Write and evaluate QtScript expressions. + Pišite in ovrednostite izraze QtScript + + + Clear Output + Počisti izhod + + + Script Console + + Skriptna konzola + + + + Expression queries + + + + Expression queries (using context for %1) + Selected object + + + + <%n items> + + <%n postavka> + <%n postavki> + <%n postavke> + <%n postavk> + + + + + Qml::Internal::ObjectPropertiesView + + Name + Ime + + + Value + Vrednost + + + Type + Vrsta + + + &Watch expression + Opazovalni &izraz + + + &Remove watch + O&dstrani opazovalca + + + Show &unwatchable properties + Prikaži lastnosti, ki se jih ne da &opazovati + + + &Group by item type + &Združi glede na vrsto objekta + + + <%n items> + + <%n postavka> + <%n postavki> + <%n postavke> + <%n postavk> + + + + Watch expression '%1' + Opazovalni izraz »%1« + + + Hide unwatchable properties + Skrij lastnosti, ki se jih ne da opazovati + + + Show unwatchable properties + Prikaži lastnosti, ki se jih ne da opazovati + + + + Qml::Internal::ObjectTree + + Add watch expression... + Dodaj opazovalni izraz ... + + + Show uninspectable items + Prikaži objekte, ki se jih ne da preiskovati + + + Go to file + Pojdi v datoteko + + + Watch expression + Opazovalni izraz + + + Expression: + Izraz: + + + + Qml::Internal::WatchTableModel + + Name + Ime + + + Value + Vrednost + + + + Qml::Internal::WatchTableView + + Stop watching + Prenehaj opazovati + + + + Qml::InspectorOutputWidget + + Output + Izhod + + + Clear + Počisti + + + + Qml::Internal::EngineComboBox + + Engine %1 + engine number + Pogon %1 + + + + Qml::QmlInspector + + Failed to connect to debugger + Ni se bilo moč povezati z razhroščevalnikom. + + + Could not connect to debugger server. + Ni se bilo moč povezati s strežnikom za razhroščevanje. + + + Invalid project, debugging canceled. + Neveljaven projekt, razhroščevanje preklicano. + + + Cannot find project run configuration, debugging canceled. + + + + [Inspector] set to connect to debug server %1:%2 + [Preiskovalnik] pripravljen za povezavo s strežnikom za razhroščevanje %1:%2 + + + [Inspector] disconnected. + + + [Preiskovalnik] povezava prekinjena. + + + + + [Inspector] resolving host... + [Preiskovalnik] razreševanje gostitelja ... + + + [Inspector] connecting to debug server... + [Preiskovalnik] povezovanje s strežnikom za razhroščevanje ... + + + [Inspector] connected. + + [Preiskovalnik] povezan. + + + + [Inspector] closing... + [Preiskovalnik] zapiranje ... + + + [Inspector] error: (%1) %2 + %1=error code, %2=error message + [Preiskovalnik] napaka: (%1) %2 + + + QML engine: + Pogon QML: + + + Object Tree + Objektno drevo + + + Properties and Watchers + Lastnosti in opazovalci + + + Script Console + Skriptna konzola + + + Output of the QML inspector, such as information on connecting to the server. + Izhod preiskovalnika QML (na primer podatki o povezovanju s strežnikom). + + + Start Debugging C++ and QML Simultaneously... + Začni istočasno razhroščevanje C++ in QML ... + + + No project was found. + Najden ni bil noben projekt. + + + No run configurations were found for the project '%1'. + + + + No valid run configuration was found for the project %1. Only locally runnable configurations are supported. +Please check your project settings. + + + + A valid run control was not registered in Qt Creator for this project run configuration. + + + + Debugging failed: could not start C++ debugger. + Razhroščevanje ni uspelo: ni bilo moč zagnati razhroščevalnika za C++. + + + + Qml::Internal::StartExternalQmlDialog + + <No project> + <brez projekta> + + + + QmlJSEditor::Internal::QmlJSTextEditor + + Rename... + Preimenuj ... + + + New id: + Novi ID: + + + Unused variable + Neuporabljena spremenljivka + + + Rename id '%1'... + Preimenuj ID »%1« ... + + + <Select Symbol> + <izberite simbol> + + + + QmlJSEditor::Internal::QmlJSEditorFactory + + Do you want to enable the experimental Qt Quick Designer? + Ali želite omogočiti preizkusni Qt Quick Designer? + + + Enable Qt Quick Designer + Omogoči Qt Quick Designer + + + Qt Creator -> About Plugins... + Qt Creator → O vstavkih ... + + + Help -> About Plugins... + Pomoč → O vstavkih ... + + + Enable experimental Qt Quick Designer? + Ali želite omogočiti preizkusni Qt Quick Designer? + + + Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'. + Ali želite omogočiti preizkusni Qt Quick Designer? Ko ga omogočite, lahko funkcije za vizualno oblikovanje uporabljate s preklopom v način za oblikovanje. To lahko vpliva na stabilnost Qt Creatorja. Da onemogočite Qt Quick Designer uporabite meni »%1« in onemogočite QmlDesigner. + + + Cancel + Prekliči + + + Please restart Qt Creator + Znova zaženite Qt Creator + + + Please restart Qt Creator to make the change effective. + Da bi spremembe stopile v veljavo je potrebno znova zagnati Qt Creator. + + + + QmlJSEditor::Internal::QmlJSEditorPlugin + + Creates a Qt QML file. + Ustvari datoteko Qt QML. + + + Qt QML File + Datoteka Qt QML + + + Qt Quick + Qt Quick + + + Ctrl+Alt+R + Ctrl+Alt+R + + + Follow Symbol Under Cursor + Sledi simbolu pod kazalcem + + + + QmlJSEditor::Internal::ModelManager + + Indexing + Indeksiranje + + + + QmlJSEditor::Internal::QmlJSPreviewRunner + + Failed to preview Qt Quick file + Prikaz datoteke Qt Quick ni uspel + + + Could not preview Qt Quick (QML) file. Reason: +%1 + Ni bilo moč prikazati datoteke Qt Quick (QML). Razlog: +%1 + + + + QmlProjectManager::QmlProject + + Error while loading project file! + Napaka pri nalaganju projektne datoteke. + + + + QmlProjectManager::Internal::QmlProjectApplicationWizardDialog + + New QML Project + Nov projekt QML + + + This wizard generates a QML application project. + Ta čarovnik ustvari projekt programa QML. + + + + QmlProjectManager::Internal::QmlProjectApplicationWizard + + QML Application + Program QML + + + Creates a QML application project with a single QML file containing the main view. + +QML application projects are executed by the Qt QML Viewer and do not need to be built. + Ustvari projekt programa QML, ki vsebuje eno datoteko QML z glavnim prikazom. + +Projekte programov QML izvede pregledovalnik QML in jih ni potrebno zgraditi. + + + File generated by QtCreator + qmlproject Template + Comment added to generated .qmlproject file + + Datoteko je ustvaril Qt Creator + + + Include .qml, .js, and image files from current directory and subdirectories + qmlproject Template + Comment added to generated .qmlproject file + + Iz trenutne mape in podmap vključi datoteke *.qml, *.js in slike + + + List of plugin directories passed to QML runtime + qmlproject Template + Comment added to generated .qmlproject file + + Seznam map z vstavki, ki bo podan izvajalnemu okolju QML + + + + QmlProjectManager + + Qt Quick Project + Projekt Qt Quick + + + + QmlProjectManager::Internal::QmlProjectImportWizardDialog + + Import Existing QML Directory + Uvoz obstoječe mape s QML + + + Project Name and Location + Ime in lokacija projekta + + + Project name: + Ime projekta: + + + Location: + Lokacija: + + + Location + Lokacija + + + + QmlProjectManager::Internal::QmlProjectImportWizard + + Import Existing QML Directory + Uvoz obstoječe mape s QML + + + Creates a QML project from an existing directory of QML files. + Ustvari projekt QML iz obstoječe mape z datotekami QML. + + + File generated by QtCreator + qmlproject Template + Comment added to generated .qmlproject file + + Datoteko je ustvaril Qt Creator + + + Include .qml, .js, and image files from current directory and subdirectories + qmlproject Template + Comment added to generated .qmlproject file + + Iz trenutne mape in podmap vključi datoteke *.qml, *.js in slike + + + List of plugin directories passed to QML runtime + qmlproject Template + Comment added to generated .qmlproject file + + Seznam map z vstavki, ki bo podan izvajalnemu okolju QML + + + + QmlProjectManager::Internal::Manager + + Failed opening project '%1': Project already open + Odpiranje projekta »%1« ni uspelo: projekt je že odprt + + + + QmlProjectManager::QmlProjectRunConfiguration + + QML Viewer + QMLRunConfiguration display name. + Pregledovalnik QML + + + QML Viewer + Pregledovalnik QML + + + QML Viewer arguments: + Argumenti pregledovalnika QML: + + + Main QML File: + Glavna datoteka QML: + + + Debugging Address: + Naslov za razhroščevanje: + + + Debugging Port: + Vrata za razhroščevanje: + + + + QmlManager + + <Current File> + <trenutna datoteka> + + + + QmlProjectManager::Internal::QmlProjectRunConfigurationFactory + + Run QML Script + Zaženi skript QML + + + + QmlProjectManager::Internal::QmlRunControl + + Starting %1 %2 + Zaganjanje %1 %2 + + + %1 exited with code %2 + %1 je končal s kodo %2 + + + + QmlProjectManager::Internal::QmlRunControlFactory + + Run + Zaženi + + + + QmlProjectManager::Internal::QmlTaskManager + + QML + QML + + + + Qt4ProjectManager::Internal::MaemoConfigTestDialog + + Testing configuration... + Preizkušanje nastavitve ... + + + Stop Test + Ustavi preizkus + + + Device configuration test failed: +%1 + Preizkus nastavitev naprave ni uspel: +%1 + + + +Did you start Qemu? + +Ali ste zagnali Qemu? + + + Qt version mismatch! Expected Qt on device: 4.6.2 or later. + Neujemanje različic Qt. Pričakovana različica na napravi: 4.6.2 ali novejša. + + + Close + Zapri + + + Device configuration test failed: Unexpected output: +%1 + Preizkus nastavitev naprave ni uspel: nepričakovan izhod: +%1 + + + Hardware architecture: %1 + + Strojna arhitektura: %1 + + + + Kernel version: %1 + + Različica jedra: %1 + + + + Device configuration successful. + + Nastavitev naprave je bila uspešna. + + + + No Qt packages installed. + Nameščenega ni nobenega paketa Qt. + + + List of installed Qt packages: + Seznam nameščenih paketov Qt: + + + + Qt4ProjectManager::Internal::MaemoPackageContents + + Local File Path + Pot do krajevne datoteke + + + Remote File Path + Pot do oddaljene datoteke + + + + Qt4ProjectManager::Internal::MaemoPackageCreationStep + + Creating package file ... + Ustvarjanje datoteke paketa ... + + + Cannot open MADDE config file '%1'. + Ni moč odpreti datoteke »%1« z nastavitvami za MADDE. + + + Packaging Error: Cannot open file '%1'. + Napaka pri ustvarjanju paketa: ni moč odpreti datoteke »%1«. + + + Packaging Error: Cannot write file '%1'. + Napaka pri ustvarjanju paketa: ni moč pisati v datoteko »%1«. + + + Packaging Error: Could not create directory '%1'. + Napaka pri ustvarjanju paketa: ni bilo moč ustvariti mape: »%1«. + + + Packaging Error: Could not replace file '%1'. + Napaka pri ustvarjanju paketa: datoteke »%1« ni bilo moč nadomestiti. + + + Packaging Error: Could not copy '%1' to '%2'. + Napaka pri ustvarjanju paketa: »%1« ni bilo moč skopirati v »%2«. + + + Package created. + Paket je bil ustvarjen. + + + Package Creation: Running command '%1'. + Ustvarjanje paketa: zaganjanje ukaza »%1«. + + + Packaging failed. + Ustvarjanje paketa ni uspelo. + + + Packaging error: Could not start command '%1'. Reason: %2 + Napaka pri ustvarjanju paketa: ukaza »%1« ni moč zagnati. Razlog: %2 + + + Packaging Error: Command '%1' failed. + Napaka pri ustvarjanju paketa: ukaz »%1« ni uspel. + + + Reason: %1 + Razlog: %1 + + + Exit code: %1 + Izhodna koda. %1 + + + + Qt4ProjectManager::Internal::MaemoPackageCreationWidget + + <b>Create Package:</b> + <b>Ustvarjanje paketa:</b> + + + Choose a local file + Izberite krajevno datoteko + + + File already in package + Datoteka je že v paketu + + + You have already added this file. + To datoteko ste že dodali. + + + + Qt4ProjectManager::Internal::MaemoRunConfiguration + + New Maemo Run Configuration + + + + + Qt4ProjectManager::Internal::MaemoRunConfigurationWidget + + Run configuration name: + + + + <a href="%1">Manage device configurations</a> + <a href="%1">Upravljanje nastavitev naprave</a> + + + <a href="%1">Set Debugger</a> + <a href="%1">Nastavitev razhroščevalnika</a> + + + Device configuration: + Nastavitev naprave: + + + Executable: + Program: + + + Arguments: + Argumenti: + + + + Qt4ProjectManager::Internal::AbstractMaemoRunControl + + No device configuration set for run configuration. + + + + Cleaning up remote leftovers first ... + + + + Initial cleanup canceled by user. + Uporabnik je preklical začetno čiščenje. + + + Error running initial cleanup: %1. + Napaka pri izvajanju začetnega čiščenja: %1. + + + Initial cleanup done. + Začetno čiščenje je bilo opravljeno. + + + Deploying + + + + Files to deploy: %1. + + + + Starting remote application. + Zaganjanje oddaljenega programa. + + + Deployment canceled by user. + + + + Deployment failed: %1 + + + + Deployment finished. + + + + Remote execution canceled due to user request. + Uporabnik je preklical oddaljeno izvajanje. + + + Error running remote process: %1 + Napaka pri zagonu oddaljenega procesa: %1 + + + Finished running remote process. + Poganjanje oddaljenega procesa se je zaključilo. + + + Remote Execution Failure + Napaka pri oddaljeni izvedbi + + + + Qt4ProjectManager::Internal::MaemoRunConfigurationFactory + + New Maemo Run Configuration + + + + + Qt4ProjectManager::Internal::MaemoRunControlFactory + + Run on device + Zaženi na napravi + + + + Qt4ProjectManager::Internal::MaemoSettingsPage + + Maemo Device Configurations + Nastavitve naprave Maemo + + + + Qt4ProjectManager::Internal::MaemoSettingsWidget + + New Device Configuration %1 + Standard Configuration name with number + + + + Choose Public Key File + Izberite datoteko z javnim ključem + + + Public Key Files(*.pub);;All Files (*) + Datoteke z javnim ključem (*.pub);;Vse datoteke (*) + + + Deployment Failed + + + + Could not read public key file '%1'. + Ni bilo moč prebrati datoteke z javnim ključem »%1«. + + + Stop Deploying + + + + Key deployment failed: %1 + + + + Deployment Succeeded + + + + Key was successfully deployed. + + + + Deploy Public Key ... + + + + + Qt4ProjectManager::Internal::MaemoSshConfigDialog + + Save Public Key File + Shrani datoteko z javnim ključem + + + Save Private Key File + Shrani datoteko z zasebnim ključem + + + Error writing file + Napaka pri pisanju v datoteko + + + Could not write file '%1': + %2 + Ni moč pisati v datoteko »%1«: +%2 + + + + Qt4ProjectManager::Internal::QemuRuntimeManager + + Start Maemo Emulator + Zaženi posnemovalnik Maemo + + + Qemu has been shut down, because you removed the corresponding Qt version. + Qemu je bil ugasnjen, ker je bila ustrezna različica Qt odstranjena. + + + Qemu finished with error: Exit code was %1. + Qemu je končal z napako: izhodna koda je bila %1 + + + Qemu failed to start: %1 + Qemu se ni mogel zagnati: %1 + + + Qemu crashed + Qemu se je sesul + + + Qemu error + Napaka Qemu + + + Stop Maemo Emulator + Ustavi posnemovalnik Maemo + + + + Qt4ProjectManager::Internal::S60CreatePackageStep + + Create SIS Package + Create SIS package build step name + Ustvari paket SIS + + + + Qt4ProjectManager::Internal::S60CreatePackageStepFactory + + Create SIS Package + Ustvari paket SIS + + + + Qt4ProjectManager::Internal::S60CreatePackageStepConfigWidget + + self-signed + samo-podpisan + + + signed with certificate %1 and key file %2 + podpisan s potrdilom %1 in ključem %2 + + + <b>Create SIS Package:</b> %1 + <b>Ustvari paket SIS:</b> %1 + + + + Qt4ProjectManager::Internal::S60DevicesBaseWidget + + Default + Privzeto + + + SDK Location + Lokacija SDK-ja + + + Qt Location + Lokacija Qt + + + Choose Qt folder + Izberite mapo s Qt + + + + Qt4ProjectManager::Internal::S60DevicesModel + + No Qt installed + Nameščen ni noben Qt + + + + Qt4ProjectManager::Internal::GnuPocS60DevicesWidget + + Step 1 of 2: Choose GnuPoc folder + Korak 1 od 2: izberite mapo z GnuPoc + + + Step 2 of 2: Choose Qt folder + Korak 2 od 2: izberite mapo s Qt + + + Adding GnuPoc + Dodajanje GnuPoc + + + GnuPoc and Qt folders must not be identical. + Mapa za GnuPoc in Qt ne sme biti ista. + + + + ProjectExplorer::Internal::S60ProjectChecker + + The Symbian SDK and the project sources must reside on the same drive. + Symbian SDK in izvorna koda projekta se morata nahajati na istem pogonu. + + + The Symbian SDK was not found for Qt version %1. + Symbian SDK za Qt različice %1 ni bil najden. + + + The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. + Vstavek »Open C/C++« ni nameščen v Symbian SDK ali pa pot do Symbian SDK-ja za Qt različice %1 ni pravilno nastavljena. + + + The Symbian toolchain does not handle special characters in a project path well. + Veriga orodij za Symbian s posebnimi znaki v poti projekta ne zna rokovati najbolje. + + + + Qt4ProjectManager::Internal::Qt4BuildConfigurationFactory + + Using Qt Version "%1" + Uporablja Qt različice »%1« + + + New configuration + Nova nastavitev + + + New Configuration Name: + Ime nove nastavitve: + + + %1 Debug + %1, za razhroščevanje + + + %1 Release + %1, za izdajo + + + + Qt4ProjectManager::Qt4Project + + Evaluating + Vrednotenje + + + + Qt4ProjectManager + + Qt4 + Qt 4 + + + Qt Versions + Različice Qt + + + Qt C++ Project + Projekt Qt C++ + + + + Qt4ProjectManager::Internal::Qt4TargetFactory + + Debug + Razhroščevanje + + + Release + Izdaja + + + + Qt4ProjectManager::QtVersion + + The Qt version is invalid: %1 + %1: Reason for being invalid + + Različica Qt ni veljavna: %1 + + + The qmake command "%1" was not found or is not executable. + %1: Path to qmake executable + + Ukaza qmake »%1« ni bilo moč najti ali pa ni izvedljiv. + + + + QtVersion + + No qmake path set + Nastavljene ni nobene poti do qmake + + + Qt version has no name + Različica Qt nima imena + + + Qt version is not properly installed, please run make install + Različica Qt ni pravilno nameščena. Prosimo poženite »make install«. + + + Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong? + Ni bilo moč ugotoviti poti do programov namestitve Qt. Morda je pot do qmake napačna? + + + The Qt Version has no toolchain. + Različica Qt nima nobene verige orodij. + + + + Qt4ProjectManager::Internal::MobileGuiAppWizard + + Mobile Qt Application + Mobilni program 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 + Ustvari program Qt, ki je optimiziran za mobilne naprave in ima glavno okno, ki temelji na Qt Designerju. + +V naprej izbere Qt za simulator in razpoložljive ciljne mobilne naprave. + + + + Qt4ProjectManager::Internal::BaseQt4ProjectWizardDialog + + Modules + Moduli + + + Qt Versions + Različice Qt + + + + Qt4ProjectManager::Internal::TestWizard + + Qt Unit Test + Preizkus enot 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. + Ustvari preizkus enote, ki temelji na QTestLib. Preizkusi enot vam omogčajo preverjanje izvorne kode, da se prepričate ali je primerna za uporabo in brez regresij. + + + + Qt4ProjectManager::Internal::TestWizardDialog + + This wizard generates a Qt unit test consisting of a single source file with a test class. + Ta čarovnik ustvari preizkus enote Qt, ki je sestavljen iz ene datoteke z izvorno kodo za razred preizkusa. + + + Details + Podrobnosti + + + + Subversion::Internal::SubversionEditor + + Annotate revision "%1" + + + + + TextEditor + + Text Editor + Urejevalnik besedil + + + + VCSBase::VCSBasePlugin + + Version Control + Nadzor različic + + + 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 + Skladišče ustvarjeno + + + A version control repository has been created in %1. + + + + Repository creation failed + Ustvarjanje skladišča ni uspelo + + + A version control repository could not be created in %1. + + + + + trk::Launcher + + Cannot open remote file '%1': %2 + Ni moč odpreti oddaljene datoteke »%1«: %2 + + + Cannot open '%1': %2 + Ni moč odpreti »%1«: %2 + + + Unable to acquire a device for port '%1'. It appears to be in use. + Ni moč pridobiti naprave za vrata »%1«. Kot kaže je v uporabi. + + + + 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 + + CPE: različica %1.%2%3%4 + + + App TRK: v%1.%2 TRK protocol: 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 + + + big endian + največje na koncu + + + little endian + najmanjše na koncu + + + , type size: %1 + will be inserted into s60description + + , velikost vrste: %1 + + + , float size: %1 + will be inserted into s60description + + , velikost plavajoče vejice: %1 + + + + AboutDialog + + About Bauhaus + AboutDialog + O Bauhaus + + + + MimeType + + BMP image + Slika BMP + + + GIF image + Slika GIF + + + ICO image + Slika ICO + + + JPEG image + Slika JPEG + + + MNG video + Video MNG + + + PBM image + Slika PBM + + + PGM image + Slika PGM + + + PNG image + Slika PNG + + + PPM image + Slika PPM + + + SVG image + Slika SVG + + + TIFF image + Slika TIFF + + + XBM image + Slika XBM + + + XPM image + Slika XPM + + + CMake Project file + Datoteka projekta CMake + + + C Source file + Datoteka z izvorno kodo C + + + C Header file + Datoteka z glavo C + + + C++ Header file + Datoteka z glavo C++ + + + C++ header + Glava C++ + + + C++ Source file + Datoteka z izvorno kodo C++ + + + C++ source code + Izvorna koda C++ + + + Objective-C source code + Izvorna koda Objective-C + + + CVS submit template + + + + Qt Designer file + Datoteka za Qt Designer + + + Generic Qt Creator Project file + + + + Generic Project Files + + + + Generic Project Include Paths + + + + Generic Project Configuration File + + + + Perforce submit template + + + + QML file + Datoteka QML + + + Qt Script file + Datoteka s skriptom Qt Script + + + QML Project file + Datoteka s projektom QML + + + Qt Project file + Datoteka s projektom Qt + + + Qt Project include file + + + + Qt Project feature file + + + + message catalog + Katalog s sporočili + + + Qt Resource file + Datoteka z viri za Qt + + + Subversion submit template + + + + Plain text document + Dokument z navadnim besedilom + + + XML document + Dokument XML + + + Differences between files + Razlike med datotekami + + + + + + Couldn't find 'Core.pluginspec' in %1 + Application| + V %1 ni bilo moč najti »Core.pluginspec« + + + Attach to Process ID: + AttachExternalDialog| + Priklopi se na ID procesa: + + + Filter: + AttachExternalDialog| + Filter: + + + Clear + AttachExternalDialog| + Počisti + + + Bookmark + BookmarkManager| + Zaznamek + + + You are going to delete a Folder which will also<br>remove its content. Are you sure to continue? + BookmarkManager| + Nameravate zbrisati mapo, pri čemer bo zbrisana<br>tudi njena vsebina. Ali res želite nadaljevati? + + + Filter: + BookmarkWidget| + Filter: + + + &Remove Bookmark + Bookmarks::Internal::BookmarkView| + &Odstrani zaznamek + + + Remove all Bookmarks + Bookmarks::Internal::BookmarkView| + Odstrani vse zaznamke + + + Move Up + Bookmarks::Internal::BookmarksPlugin| + Premakni gor + + + Move Down + Bookmarks::Internal::BookmarksPlugin| + Premakni dol + + + Previous Bookmark In Document + Bookmarks::Internal::BookmarksPlugin| + Predhodni zaznamek v dokumentu + + + Next Bookmark In Document + Bookmarks::Internal::BookmarksPlugin| + Naslednji zaznamek v dokumentu + + + Dialog + BreakCondition| + Pogovorno okno + + + Create + CMakeProjectManager::Internal::CMakeBuildConfigurationFactory| + Ustvari + + + Qt Creator has detected an in-source-build 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. + CMakeProjectManager::Internal::InSourceBuildPage| + Qt Creator je zaznal gradnjo znotraj mape z izvorno kodo, kar preprečuje gradnje izven te mape, zato vam Qt Creator ne bo dovolil spremeniti mape za gradnjo. Če želite gradnjo izven mape, počistite mapo z izvorno kodo in projekt odprite znova. + + + 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. + CMakeProjectManager::Internal::InSourceBuildPage| + Qt Creator je zaznal gradnjo znotraj mape z izvorno kodo. To preprečuje gradnje izven te mape, zato vam Qt Creator ne bo dovolil spremeniti mape za gradnjo. Če želite gradnjo izven mape, počistite mapo z izvorno kodo in projekt odprite znova. + + + 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. + CMakeProjectManager::Internal::CMakeRunPage| + Mapa %1 vsebuje zastarelo datoteko *.cbp. Qt Creator mora s pomočjo programa cmake posodobiti to datoteko. Če želite dodati argumente v ukazno vrstico, jih vnesite spodaj. Vedite, da si cmake zapomni argumente iz ukazne vrstice predhodnega zagona. + + + 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. + CMakeProjectManager::Internal::CMakeRunPage| + V nastavitvah gradnje podana mapa %1 ne vsebuje datoteke *.cbp. Qt Creator mora s pomočjo programa cmake ustvariti to datoteko. Nekateri projekti pri prvem zagonu cmake potrebujejo posebne argumente v ukazni vrstici. Vedite, da si cmake zapomni argumente iz ukazne vrstice predhodnega zagona. + + + CMake executable + CMakeProjectManager::Internal::CMakeSettingsPage| + Program CMake + + + Cdb + CdbOptionsPageWidget| + Placeholder + + CDB + + + <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> + CdbOptionsPageWidget| + Label text for path configuration. %2 is "x-bit version". + + <html><body><p>Tu določite pot do <a href="%1">Debugging Tools for Windows</a> (%2).</p><p><b>Vedite:</b> Da bi te spremembe stopile v veljavo je potreben ponoven zagon Qt Creatorja.</p></body></html> + + + 64-bit version + CdbOptionsPageWidget| + 64-bitna različica + + + 32-bit version + CdbOptionsPageWidget| + 32-bitna različica + + + Other options + CdbOptionsPageWidget| + Ostale možnosti + + + Verbose Symbol Loading + CdbOptionsPageWidget| + Zgovorno nalaganje simbolov + + + Path to "Debugging Tools for Windows": + CdbOptionsPageWidget| + Pot do »Debugging Tools for Windows«: + + + Form + CdbOptionsPageWidget| + Obrazec + + + TextLabel + CdbOptionsPageWidget| + BesedilaOznaka + + + Repository Location: + ChangeSelectionDialog| + Lokacija skladišča: + + + Dialog + ChangeSelectionDialog| + Pogovorno okno + + + This protocol supports no listing + CodePaster::CodepasterPlugin| + Ta protokol ne podpira izpisa seznama + + + Waiting for items + CodePaster::CodepasterPlugin| + Čakanje na delčke + + + &CodePaster + CodePaster::CodepasterPlugin| + &CodePaster + + + Dialog + CodePaster::PasteSelectDialog| + Pogovorno okno + + + Copy Paste URL to clipboard + CodePaster::SettingsPage| + Skopiraj URL na odložišče + + + Display Output Pane after sending a post + CodePaster::SettingsPage| + Po objavi prikaži podokno z rezultatom + + + CodePaster + CodePaster::SettingsPage| + CodePaster + + + Default Protocol: + CodePaster::SettingsPage| + Privzeti protokol: + + + Pastebin.ca + CodePaster::SettingsPage| + Pastebin.ca + + + Pastebin.com + CodePaster::SettingsPage| + Pastebin.com + + + Code Pasting + CodePaster::SettingsPage| + Prilepljanje kode + + + CodePaster Server: + CodePaster::SettingsPage| + Strežnik za CodePaster: + + + Form + CodePaster::SettingsPage| + Obrazec + + + User interface + CommonOptionsPage| + Uporabniški vmesnik + + + 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. + CommonOptionsPage| + Če je omogočena ta možnost, ukaz »Vstopi« v določenih okoliščinah združi več korakov v enega, kar vodi do razhroščevanja z »manj dogajanja«. Tako bo npr. atomično štetje referenc preskočeno, +enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne prejemne reže. + + + Skip known frames when stepping + CommonOptionsPage| + Med stopanjem preskoči znane okvirje + + + Show a message box when receiving a signal + CommonOptionsPage| + Ob prejemu signala prikaži okno s sporočilom + + + Enable reverse debugging + CommonOptionsPage| + Omogoči obratno razhroščevanje + + + Use tooltips while debugging + CommonOptionsPage| + Med razhroščevanjem omogoči namige + + + 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. + CommonOptionsPage| + Če omogočite to možnost, bodo med razhroščevanjem omogočeni namigi z vrednostmi spremenljivk. Ker to lahko upočasni razhroščevanje in ne ponuja zanesljivih podatkov, saj ne uporablja podatkov o dosegu, je privzeto možnost onemogočena. + + + Form + CommonOptionsPage| + Obrazec + + + 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. + CommonOptionsPage| + Če omogočite to možnost, bodo med razhroščevanjem omogočeni namigi z vrednostmi spremenljivk. Ker to lahko upočasni razhroščevanje in ne ponuja zanesljivih podatkov, saj ne uporablja podatkov o dosegu, je privzeto možnost onemogočena. + + + Code Completion + CompletionSettingsPage| + Dokončevanje kode + + + Do a case-sensitive match for completion items. + CompletionSettingsPage| + Ujemanje za dokončevanje naj bo občutljivo na velikost črk. + + + &Case-sensitive completion + CompletionSettingsPage| + &Dokončevanje občutljivo na velikost črk + + + &Automatically insert braces + CompletionSettingsPage| + &Samodejno vstavi oklepaje + + + Form + CompletionSettingsPage| + Obrazec + + + Open Link in New Tab + ContentWindow| + Odpri povezavo v novem zavihku + + + Goto Other Split + Core::EditorManager| + Pojdi v drug razdelek + + + Open File + Core::EditorManager| + Odpri datoteko + + + Save %1 As... + Core::EditorManager| + Shrani %1 kot ... + + + Next Document in History + Core::EditorManager| + Naslednji dokument v zgodovini + + + Previous Document in History + Core::EditorManager| + Predhodni dokument v zgodovini + + + Go back + Core::EditorManager| + Pojdi nazaj + + + Go forward + Core::EditorManager| + Pojdi naprej + + + Could not open the file for edit with SCC. + Core::EditorManager| + Ni bilo moč odpreti datoteke za urejanje v SCC. + + + Can't save file + Core::FileManager| + Ni moč shraniti datoteke + + + Can't save changes to '%1'. Do you want to continue and loose your changes? + Core::FileManager| + Ni moč shraniti sprememb v »%1«. Ali želite nadaljevati in izgubiti svoje spremembe? + + + Go Back + Core::Internal::EditorView| + Pojdi nazaj + + + Go Forward + Core::Internal::EditorView| + Pojdi naprej + + + Make writable + Core::Internal::EditorView| + Spremeni v zapisljivo + + + File is writable + Core::Internal::EditorView| + Datoteka je zapisljiva + + + Copy full path to clipboard + Core::Internal::EditorView| + Skopiraj celotno pot na odložišče + + + Environment + Core::Internal::GeneralSettings| + Okolje + + + General settings + Core::Internal::GeneralSettings| + Splošne nastavitve + + + User &interface color: + Core::Internal::GeneralSettings| + Barva &uporabniškega vmesnika: + + + Always ask + Core::Internal::GeneralSettings| + Vedno vprašaj + + + Reload all modified files + Core::Internal::GeneralSettings| + Znova naloži vse spremenjene datoteke + + + Ignore modifications + Core::Internal::GeneralSettings| + Prezri spremembe + + + Form + Core::Internal::GeneralSettings| + Obrazec + + + Output + Core::Internal::MainWindow| + Izhod + + + &Open File With... + Core::Internal::MainWindow| + &Odpri datoteko v ... + + + Recent Files + Core::Internal::MainWindow| + Nedavne datoteke + + + New... + Core::Internal::MainWindow|Title of dialog + Novo ... + + + &New... + Core::Internal::MainWindow| + &Novo ... + + + &Open... + Core::Internal::MainWindow| + &Odpri ... + + + &Open With... + Core::Internal::MainWindow| + &Odpri z ... + + + General + Core::Internal::MessageOutputWindow| + Splošno + + + 1 + Core::Internal::NewDialog| + 1 + + + TextLabel + Core::Internal::NewDialog| + BesedilaOznaka + + + Don't Save + Core::Internal::SaveItemsDialog| + Ne shrani + + + Environment + Core::Internal::ShortcutSettings| + Okolje + + + <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/> + Core::Internal::VersionDialog| + <h3>Qt Creator %1</h3>Temelji na Qt %2 (%3-biten)<br/><br/>Zgrajen dne %4 ob %5<br /><br/>%8<br/>Avtorske pravice 2008-%6 %7. Vse pravice pridržane.<br/><br/>Program je na voljo KOT TAK, BREZ KAKRŠNEGAKOLI JAMSTVA, niti jamstva USTREZNOSTI ZA PRODAJO niti PRIMERNOSTI ZA UPORABO.<br/> + + + <h3>Qt Creator %1</h3>Based on Qt %2<br/><br/>Built on + Core::Internal::VersionDialog| + <h3>Qt Creator %1</h3>Temelji na Qt %2<br/><br/>Zgrajen + + + Switch to %1 mode + Core::ModeManager| + Preklopi v način %1 + + + Sort alphabetically + CppEditor::Internal::CPPEditor| + Razvrsti po abecedi + + + Reformat Document + CppEditor::Internal::CPPEditor| + Preoblikuj dokument + + + Enter class name + CppEditor::Internal::ClassNamePage| + Vnesite ime razreda + + + Unfiltered + CppEditor::Internal::CppHoverHandler| + Nefiltrirano + + + C++ + CppEditor::Internal::CppPlugin| + C++ + + + Creates a C++ header file. + CppEditor::Internal::CppPlugin| + Ustvari datoteko z glavo C++. + + + Creates a C++ source file. + CppEditor::Internal::CppPlugin| + Ustvari datoteko z izvorno kodo C++. + + + Creates a header and a source file for a new class. + CppEditor::Internal::CppPlugin| + Ustvari datoteki z glavo in izvorno kodo za nov razred. + + + Follow Symbol under Cursor + CppEditor::Internal::CppPlugin| + Sledi simbolu pod kazalcem + + + Switch between Method Declaration/Definition + CppEditor::Internal::CppPlugin| + Preklopi med deklaracijo in definicijo metode + + + Rename Symbol under Cursor + CppEditor::Internal::CppPlugin| + Preimenuj simbol pod kazalcem + + + Creates a new C++ header file. + CppEditor::Internal::CppPlugin| + Ustvari novo datoteko z glavo C++. + + + Creates a new C++ source file. + CppEditor::Internal::CppPlugin| + Ustvari novo datoteko z izvorno kodo C++ + + + File Naming Conventions + CppFileSettingsPage| + Pravila poimenovanja datotek + + + License Template: + CppFileSettingsPage| + Predloga za licenco: + + + This determines how the file names of the class wizards are generated ("MyClass.h" versus "myclass.h"). + CppFileSettingsPage| + To določa, kako so ustvarjena imena datotek v čarovnikih za razrede (»MojRazred.h« ali »mojrazred.h«). + + + Lower case file names: + CppFileSettingsPage| + Imena datotek z malimi črkami: + + + Form + CppFileSettingsPage| + Obrazec + + + Indexing + CppTools::Internal::CppModelManager| + Indeksiranje + + + File Naming Conventions + CppTools| + Pravila poimenovanja datotek + + + File naming conventions + CppTools| + Pravila poimenovanja datotek + + + Text Editor + CppTools::Internal::CompletionSettingsPage| + Urejevalnik besedil + + + Common + Debugger| + Splošno + + + %n known types, Qt version: %1, Qt namespace: %2 + QtDumperHelper| + + %n znana vrsta, različica Qt: %1, imenski prostor Qt: %2 + %n znani vrsti, različica Qt: %1, imenski prostor Qt: %2 + %n znane vrste, različica Qt: %1, imenski prostor Qt: %2 + %n znanih vrst, različica Qt: %1, imenski prostor Qt: %2 + + + + Delete breakpoint + Debugger::Internal::BreakWindow| + Zbriši prekinitveno točko + + + Delete all breakpoints + Debugger::Internal::BreakWindow| + Zbriši vse prekinitvene točke + + + Delete breakpoints of "%1" + Debugger::Internal::BreakWindow| + Zbriši prekinitvene točke za »%1« + + + Delete breakpoints of file + Debugger::Internal::BreakWindow| + Zbriši prekinitvene točke za datoteko + + + Adjust column widths to contents + Debugger::Internal::BreakWindow| + Širine stolpcev prilagodi vsebinam + + + Always adjust column widths to contents + Debugger::Internal::BreakWindow| + Širine stolpcev vedno prilagodi vsebinam + + + Edit condition... + Debugger::Internal::BreakWindow| + Urejanje pogoja ... + + + Synchronize breakpoints + Debugger::Internal::BreakWindow| + Uskladi prekinitvene točke + + + Disable breakpoint + Debugger::Internal::BreakWindow| + Onemogoči prekinitveno točko + + + Enable breakpoint + Debugger::Internal::BreakWindow| + Omogoči prekinitveno točko + + + Use short path + Debugger::Internal::BreakWindow| + Uporabi kratko pot + + + Use full path + Debugger::Internal::BreakWindow| + Uporabi polno pot + + + Unable to load the debugger engine library '%1': %2 + Debugger::Internal::CdbDebugEngine| + Ni moč naložiti knjižnice razhroščevalnega pogona »%1«: %2 + + + Unable to resolve '%1' in the debugger engine library '%2' + Debugger::Internal::CdbDebugEngine| + Ni moč razrešiti »%1« v knjižnici razhroščevalnega pogona »%2« + + + Debugger running + Debugger::Internal::CdbDebugEngine| + Razhroščevalnik je zagnan + + + Attaching to a process failed for process id %1: %2 + Debugger::Internal::CdbDebugEngine| + Priklapljanje na proces z ID-jem %1 ni uspelo: %2 + + + Unable to set the image path to %1: %2 + Debugger::Internal::CdbDebugEngine| + Ni moč nastaviti poti slike na %1: %2 + + + Unable to create a process '%1': %2 + Debugger::Internal::CdbDebugEngine| + Ni moč ustvariti procesa »%1«: %2 + + + Running to 0x%1... + Debugger::Internal::CdbDebugEngine| + Zaganjanje do 0x%1 ... + + + Thread %1: Missing debug information for top stack frame (%2). + Debugger::Internal::CdbDebugEngine| + Nit %1: manjkajo razhroščevalni podatki za vrhnji okvir sklada (%2). + + + Thread %1: No debug information available (%2). + Debugger::Internal::CdbDebugEngine| + Nit %1: razhroščevalni podatki niso razpoložljivi (%2). + + + The dumper library '%1' does not exist. + Debugger::Internal::CdbDebugEngine| + Knjižnica odlagalnika »%1« ne obstaja. + + + CdbDebugEngine: Attach to core not supported! + Debugger::Internal::CdbDebugEngine| + CdbDebugEngine: priklapljanje na posnetek ni podprto. + + + Debugger Running + Debugger::Internal::CdbDebugEngine| + Razhroščevalnik je zagnan + + + AttachProcess failed for pid %1: %2 + Debugger::Internal::CdbDebugEngine| + AttachProcess je spodletel za PID %1: %2 + + + CreateProcess2Wide failed for '%1': %2 + Debugger::Internal::CdbDebugEngine| + CreateProcess2Wide je spodletel za »%1«: %2 + + + Custom dumper library initialized. + Debugger::Internal::CdbDumperHelper| + Knjižnica odlagalnika po meri je bila inicializirana. + + + Cdb + Debugger::Internal::CdbOptionsPageWidget| + CDB + + + CDB + Debugger::Internal::CdbOptionsPageWidget| + CDB + + + Gdb + Debugger::Internal::DebuggerOutputWindow| + GDB + + + &Views + Debugger::Internal::DebuggerPlugin| + &Prikazi + + + Locked + Debugger::Internal::DebuggerPlugin| + Zaklenjeno + + + Reset to default layout + Debugger::Internal::DebuggerPlugin| + Ponastavi na privzet razpored + + + Attach to Running Tcf Agent... + Debugger::Internal::DebuggerPlugin| + Priklopi se na zagnanega posrednika TCF ... + + + This attaches to a running 'Target Communication Framework' agent. + Debugger::Internal::DebuggerPlugin| + S tem se priklopi na zagnanega posrednika za »Target Communication Framework«. + + + Detach debugger + Debugger::Internal::DebuggerPlugin| + Odklopi razhroščevalnik + + + A debugging session is still in progress. Would you like to terminate it? + Debugger::Internal::DebuggerListener| + Razhroščevalna seja je še vedno v teku. Ali jo žalite končati? + + + Debugger properties... + Debugger::Internal::DebuggerSettings| + Lastnosti razhroščevalnika ... + + + Adjust column widths to contents + Debugger::Internal::DebuggerSettings| + Širine stolpcev prilagodi vsebinam + + + Always adjust column widths to contents + Debugger::Internal::DebuggerSettings| + Širine stolpcev vedno prilagodi vsebinam + + + Use alternating row colors + Debugger::Internal::DebuggerSettings| + Uporabi izmenjajoči se barvi vrstic + + + Show a message box when receiving a signal + Debugger::Internal::DebuggerSettings| + Ob prejemu signala prikaži okno s sporočilom + + + Log time stamps + Debugger::Internal::DebuggerSettings| + Časovne oznake v dnevniku + + + Operate by instruction + Debugger::Internal::DebuggerSettings| + Deluj po ukazih + + + Watch expression "%1" + Debugger::Internal::DebuggerSettings| + Opazuj izraz »%1« + + + Remove watch expression "%1" + Debugger::Internal::DebuggerSettings| + Odstrani opazovanje izraza »%1« + + + Watch expression "%1" in separate window + Debugger::Internal::DebuggerSettings| + Opazuj izraz »%1« v ločenem oknu + + + Use tooltips in locals view when debugging + Debugger::Internal::DebuggerSettings| + Med razhroščevanjem v prikazu krajevnih uporabljaj namige + + + Use tooltips in breakpoints view when debugging + Debugger::Internal::DebuggerSettings| + Med razhroščevanjem v prikazu prekinitvenih točk uporabljaj namige + + + Show address data in breakpoints view when debugging + Debugger::Internal::DebuggerSettings| + Med razhroščevanjem v prikazu prekinitvenih točk prikaži podatke o naslovih + + + Show address data in stack view when debugging + Debugger::Internal::DebuggerSettings| + Med razhroščevanjem v prikazu sklada prikaži podatke o naslovih + + + Use debugging helper + Debugger::Internal::DebuggerSettings| + Uporabi razhroščevalnega pomočnika + + + Debug debugging helper + Debugger::Internal::DebuggerSettings| + Razhroščuj razhroščevalnega pomočnika + + + Use code model + Debugger::Internal::DebuggerSettings| + Uporabi model kode + + + Recheck debugging helper availability + Debugger::Internal::DebuggerSettings| + Znova preveri razpoložljivost razhroščevalnega pomočnika + + + Synchronize breakpoints + Debugger::Internal::DebuggerSettings| + Uskladi prekinitvene točke + + + Automatically quit debugger + Debugger::Internal::DebuggerSettings| + Samodejno končaj razhroščevalnik + + + List source files + Debugger::Internal::DebuggerSettings| + Prikaži seznam datotek z izvorno kodo + + + Skip known frames + Debugger::Internal::DebuggerSettings| + Preskoči znane okvirje + + + Enable reverse debugging + Debugger::Internal::DebuggerSettings| + Omogoči obratno razhroščevanje + + + Reload full stack + Debugger::Internal::DebuggerSettings| + Znova naloži ves sklad + + + Execute line + Debugger::Internal::DebuggerSettings| + Izvrši vrstico + + + Expand item + Debugger::Internal::DebuggerSettings| + Razširi postavko + + + Collapse item + Debugger::Internal::DebuggerSettings| + Skrči postavko + + + Hexadecimal + Debugger::Internal::DebuggerSettings| + Šestnajstiško + + + Decimal + Debugger::Internal::DebuggerSettings| + Desetiško + + + Octal + Debugger::Internal::DebuggerSettings| + Osmiško + + + Binary + Debugger::Internal::DebuggerSettings| + Dvojiško + + + Raw + Debugger::Internal::DebuggerSettings| + Surovo + + + Natural + Debugger::Internal::DebuggerSettings| + Naravno + + + Use tooltips when debugging + Debugger::Internal::DebuggerSettings| + Med razhroščevanjem omogoči namige + + + Syncronize breakpoints + Debugger::Internal::DebuggerSettings| + Uskladi prekinitvene točke + + + Library %1 loaded. + Debugger::Internal::GdbEngine| + Knjižnica %1 je naložena. + + + Library %1 unloaded. + Debugger::Internal::GdbEngine| + Knjižnica %1 je odstranjena. + + + Thread group %1 created. + Debugger::Internal::GdbEngine| + Skupina niti %1 je ustvarjena. + + + Thread %1 created. + Debugger::Internal::GdbEngine| + Nit %1 je ustvarjena. + + + Thread group %1 exited. + Debugger::Internal::GdbEngine| + Skupina niti %1 je končala. + + + Thread %1 in group %2 exited. + Debugger::Internal::GdbEngine| + Nit %1 iz skupine %2 je končala. + + + Thread %1 selected. + Debugger::Internal::GdbEngine| + Nit %1 je izbrana. + + + Program exited with exit code %1. + Debugger::Internal::GdbEngine| + Program se je končal z izhodno kodo %1. + + + Program exited after receiving signal %1. + Debugger::Internal::GdbEngine| + Program se je končal po sprejemu signala %1. + + + Program exited normally. + Debugger::Internal::GdbEngine| + Program se je končal normalno. + + + Jumped. Stopped. + Debugger::Internal::GdbEngine| + Skočil. Ustavljeno. + + + Stopped at breakpoint. + Debugger::Internal::GdbEngine| + Ustavljeno pri prekinitveni točki. + + + <Unknown> + Debugger::Internal::GdbEngine| + <neznano> + + + The debugger you are using identifies itself as: + Debugger::Internal::GdbEngine| + Uporabljeni razhroščevalnik se predstavlja kot: + + + 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. + Debugger::Internal::GdbEngine| + Te različice Qt Creator uradno ne podpira. +Razhroščevanje verjetno ne bo delovalo dobro. +Močno priporočamo uporabo GDB-ja 6.7, ali novejšega. + + + Finished retrieving data. + Debugger::Internal::GdbEngine| + Pridobivanje podatkov zaključeno. + + + An unknown error in the Gdb process occurred. This is the default return value of error(). + Debugger::Internal::GdbEngine| + Prišlo je do neznane napake v procesu GDB. To je privzeta vrnjena vrednost funkcije error(). + + + Error + Debugger::Internal::GdbEngine| + Napaka + + + The upload process failed to start. Either the invoked script '%1' is missing, or you may have insufficient permissions to invoke the program. + Debugger::Internal::GdbEngine| + Proces pošiljanja se ni uspel zagnati. Bodisi manjka klicani skript »%1« bodisi nimate zadosti pravic za klic programa. + + + The upload process crashed some time after starting successfully. + Debugger::Internal::GdbEngine| + Proces pošiljanja se je nekaj časa po uspešnem zagonu sesul. + + + 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. + Debugger::Internal::GdbEngine| + Med pisanjem v proces pošiljanja je prišlo do napake. Proces morda ne teče, ali pa je morda zaprl svoj vhodni kanal. + + + An error occurred when attempting to read from the upload process. For example, the process may not be running. + Debugger::Internal::GdbEngine| + Med branjem iz procesa pošiljanja je prišlo do napake. Proces morda ne teče. + + + An unknown error in the upload process occurred. This is the default return value of error(). + Debugger::Internal::GdbEngine| + Prišlo je do neznane napake v procesu pošiljanja. To je privzeta vrnjena vrednost funkcije error(). + + + Debugger Error + Debugger::Internal::GdbEngine| + Napaka razhroščevalnika + + + Continuing after temporary stop. + Debugger::Internal::GdbEngine| + Nadaljevanje po začasni ustavitvi. + + + Core file loaded. + Debugger::Internal::GdbEngine| + Datoteka s posnetkom naložena. + + + Run to Function finished. Stopped. + Debugger::Internal::GdbEngine| + Zaganjanje do funkcije je zaključeno. Ustavljeno. + + + Program exited with exit code %1 + Debugger::Internal::GdbEngine| + Program se je končal z izhodno kodo %1 + + + Program exited after receiving signal %1 + Debugger::Internal::GdbEngine| + Program se je končal po sprejemu signala %1 + + + Program exited normally + Debugger::Internal::GdbEngine| + Program se je končal normalno + + + Starting executable failed: + + Debugger::Internal::GdbEngine| + Zaganjanje izvršljive datoteke ni uspelo: + + + + Debugger Startup Failure + Debugger::Internal::GdbEngine| + Spodletel zagon razhroščevalnika + + + Cannot set up communication with child process: %1 + Debugger::Internal::GdbEngine| + Ni moč vzpostaviti komunikacije s podprocesom: %1 + + + Starting Debugger: + Debugger::Internal::GdbEngine| + Zaganjanje razhroščevalnika: + + + Cannot start debugger: %1 + Debugger::Internal::GdbEngine| + Ni moč zagnati razhroščevalnika: %1 + + + Gdb Running... + Debugger::Internal::GdbEngine| + GDB teče ... + + + Attached to running process. Stopped. + Debugger::Internal::GdbEngine| + Priklopljeno na proces, ki teče. Ustavljeno. + + + Connecting to remote server failed: + Debugger::Internal::GdbEngine| + Povezovanje z oddaljenim strežnikom ni uspelo: + + + Debugger exited. + Debugger::Internal::GdbEngine| + Razhroščevalnik se je zaprl. + + + <could not retreive module information> + Debugger::Internal::GdbEngine| + <ni bilo moč pridobiti podatkov o modulu> + + + '%1' contains no identifier + Debugger::Internal::GdbEngine| + »%1« ne vsebuje nobenega identifikatorja + + + Cowardly refusing to evaluate expression '%1' with potential side effects + Debugger::Internal::GdbEngine| + Preprečujem ovrednotenje izraza »%1« zaradi možnih stranskih učinkov + + + <not in scope> + Debugger::Internal::GdbEngine| + Variable + + <ni v dosegu> + + + Retrieving data for watch view (%1 requests pending)... + Debugger::Internal::GdbEngine| + Pridobivanje podatkov za prikaz opazovanj (%1 čakajočih zahtevkov) ... + + + Cannot evaluate expression: %1 + Debugger::Internal::GdbEngine| + Ni moč ovrednotiti izraza: %1 + + + %1 custom dumpers found. + Debugger::Internal::GdbEngine| + Najdenih %1 odlagalnikov po meri. + + + <%1 items> + Debugger::Internal::GdbEngine| + In string list + + <%1 postavk> + + + %1 <shadowed %2> + Debugger::Internal::GdbEngine| + Variable %1 <FIXME: does something - bug Andre about it> + + %1 <zakriva %2> + + + Unknown error: + Debugger::Internal::GdbEngine| + Neznana napaka: + + + %1 is a typedef. + Debugger::Internal::GdbEngine| + %1 je definicija vrste. + + + Retrieving data for tooltip... + Debugger::Internal::GdbEngine| + Pridobivanje podatkov za namig ... + + + The dumper library '%1' does not exist. + Debugger::Internal::GdbEngine| + Knjižnica odlagalnika »%1« ne obstaja. + + + Reading + Debugger::Internal::GdbEngine| + Branje + + + Temporarily stopped. + Debugger::Internal::GdbEngine| + Začasno ustavljeno. + + + Handling queued commands. + Debugger::Internal::GdbEngine| + Obdelovanje vrste z ukazi. + + + <unavailable> + Debugger::Internal::GdbEngine| + Value for variable +---------- +Value for variable + + <ni na voljo> + + + Choose Gdb Location + Debugger::Internal::GdbOptionsPage| + Izberite lokacijo GDB-ja + + + End addAress + Debugger::Internal::ModulesModel| + Končni naslov + + + Update module list + Debugger::Internal::ModulesWindow| + Posodobi seznam modulov + + + Adjust column widths to contents + Debugger::Internal::ModulesWindow| + Širine stolpcev prilagodi vsebinam + + + Always adjust column widths to contents + Debugger::Internal::ModulesWindow| + Širine stolpcev vedno prilagodi vsebinam + + + Show source files for module "%1" + Debugger::Internal::ModulesWindow| + Prikaži datoteke z izvorno kodo za modul »%1« + + + Load symbols for all modules + Debugger::Internal::ModulesWindow| + Naloži simbole za vse module + + + Load symbols for module + Debugger::Internal::ModulesWindow| + Naloži simbole za modul + + + Edit file + Debugger::Internal::ModulesWindow| + Urejanje datoteke + + + Show symbols + Debugger::Internal::ModulesWindow| + Prikaži simbole + + + Load symbols for module "%1" + Debugger::Internal::ModulesWindow| + Naloži simbole za modul »%1« + + + Edit file "%1" + Debugger::Internal::ModulesWindow| + Urejanje datoteke »%1« + + + Show symbols in file "%1" + Debugger::Internal::ModulesWindow| + Prikaži simbole v datoteki »%1« + + + Cannot create temporary file: %2 + Debugger::Internal::OutputCollector| + Ni moč ustvariti začasne datoteke: %2 + + + Value + Debugger::Internal::RegisterHandler| + Vrednost + + + Open memory editor + Debugger::Internal::RegisterWindow| + Odpri urejevalnik pomnilnika + + + Open memory editor at %1 + Debugger::Internal::RegisterWindow| + Odpri urejevalnik pomnilnika na %1 + + + Adjust column widths to contents + Debugger::Internal::RegisterWindow| + Širine stolpcev prilagodi vsebinam + + + Always adjust column widths to contents + Debugger::Internal::RegisterWindow| + Širine stolpcev vedno prilagodi vsebinam + + + Reload register listing + Debugger::Internal::RegisterWindow| + Znova naloži seznam registrov + + + Always reload register listing + Debugger::Internal::RegisterWindow| + Vedno znova naloži seznam registrov + + + Internal name + SourceFilesModel| + Notranje ime + + + Full name + SourceFilesModel| + Polno ime + + + Reload data + Debugger::Internal::SourceFilesWindow| + Znova naloži podatke + + + Open file + Debugger::Internal::SourceFilesWindow| + Odpri datoteko + + + Open file "%1"' + Debugger::Internal::SourceFilesWindow| + Odpri datoteko »%1« + + + <table><tr><td>Address:</td><td>%1</td></tr><tr><td>Function: </td><td>%2</td></tr><tr><td>File: </td><td>%3</td></tr><tr><td>Line: </td><td>%4</td></tr><tr><td>From: </td><td>%5</td></tr></table><tr><td>To: </td><td>%6</td></tr></table> + Debugger::Internal::StackHandler| + Tooltip for variable + + <table><tr><td>Naslov:</td><td>%1</td></tr><tr><td>Funkcija: </td><td>%2</td></tr><tr><td>Datoteka: </td><td>%3</td></tr><tr><td>Vrstica: </td><td>%4</td></tr><tr><td>Od: </td><td>%5</td></tr></table><tr><td>Do: </td><td>%6</td></tr></table> + + + Copy contents to clipboard + Debugger::Internal::StackWindow| + Skopiraj vsebino na odložišče + + + Open memory editor + Debugger::Internal::StackWindow| + Odpri urejevalnik pomnilnika + + + Open memory editor at %1 + Debugger::Internal::StackWindow| + Odpri urejevalnik pomnilnika na %1 + + + Adjust column widths to contents + Debugger::Internal::StackWindow| + Širine stolpcev prilagodi vsebinam + + + Always adjust column widths to contents + Debugger::Internal::StackWindow| + Širine stolpcev vedno prilagodi vsebinam + + + Adjust column widths to contents + Debugger::Internal::ThreadsWindow| + Širine stolpcev prilagodi vsebinam + + + Always adjust column widths to contents + Debugger::Internal::ThreadsWindow| + Širine stolpcev vedno prilagodi vsebinam + + + Stored Address + Debugger::Internal::WatchHandler| + Shranjen naslov + + + <No Locals> + Debugger::Internal::WatchHandler| + <ni krajevnih> + + + <No Tooltip> + Debugger::Internal::WatchHandler| + <ni namigov> + + + <No Watchers> + Debugger::Internal::WatchHandler| + <ni opazovalcev> + + + Change format for type '%1' + Debugger::Internal::WatchWindow| + Spremeni obliko za vrsto »%1« + + + Change format for expression '%1' + Debugger::Internal::WatchWindow| + Spremeni obliko za izraz »%1« + + + Change format for type + Debugger::Internal::WatchWindow| + Spremeni obliko za vrsto + + + Change format for expression + Debugger::Internal::WatchWindow| + Spremeni obliko za izraz + + + Select widget to watch + Debugger::Internal::WatchWindow| + Izberite gradnik za opazovanje + + + Open memory editor... + Debugger::Internal::WatchWindow| + Odpri urejevalnik pomnilnika ... + + + Open memory editor at %1 + Debugger::Internal::WatchWindow| + Odpri urejevalnik pomnilnika na %1 + + + Refresh code model snapshot + Debugger::Internal::WatchWindow| + Osveži posnetek modela kode + + + Adjust column widths to contents + Debugger::Internal::WatchWindow| + Širine stolpcev prilagodi vsebinam + + + Always adjust column widths to contents + Debugger::Internal::WatchWindow| + Širine stolpcev vedno prilagodi vsebinam + + + Insert new watch item + Debugger::Internal::WatchWindow| + Vstavi novo postavko opazovalca + + + <Edit> + Debugger::Internal::WatchWindow| + <urejanje> + + + Clear contents + DebuggerPane| + Počisti vsebino + + + Save contents + DebuggerPane| + Shrani vsebino + + + This will enable nice display of Qt and Standard Library objects in the Locals&Watchers view + DebuggingHelperOptionPage| + To omogoči lep prikaz objektov iz Qt in Standard Library v prikazu Krajevni in opazovalci + + + Use debugging helper + DebuggingHelperOptionPage| + Uporabi razhroščevalnega pomočnika + + + This will load a dumper library + DebuggingHelperOptionPage| + To naloži knjižnico odlagalnika + + + Debugging helper + DebuggingHelperOptionPage| + Razhroščevalni pomočnik + + + Form + DebuggingHelperOptionPage| + Obrazec + + + %1 has no dependencies. + ProjectExplorer::Internal::DependenciesWidget| + %1 nima odvisnosti. + + + %1 depends on %2. + ProjectExplorer::Internal::DependenciesWidget| + %1 je odvisen od %2. + + + %1 depends on: %2. + ProjectExplorer::Internal::DependenciesWidget| + %1 je odvisen od: %2. + + + Project Dependencies + ProjectExplorer::Internal::DependenciesWidget| + Odvisnosti projekta + + + Project Dependencies: + ProjectExplorer::Internal::DependenciesWidget| + Odvisnosti projekta: + + + file name is empty + Designer| + Ime datoteke je prazno + + + no <RCC> root element + Designer| + Ni vrhnjega elementa <RCC> + + + Choose a class name + Designer::Internal::FormClassWizardPage| + Izberite ime razreda + + + More + Designer::Internal::FormClassWizardPage| + Več + + + Embedding of the UI class + Designer::Internal::FormClassWizardPage| + Vgrajevanje razreda uporabniškega vmesnika + + + Aggregation as a pointer member + Designer::Internal::FormClassWizardPage| + Združevanje s kazalcem kot članom + + + Aggregation + Designer::Internal::FormClassWizardPage| + Združevanje + + + Multiple Inheritance + Designer::Internal::FormClassWizardPage| + Dedovanje od večih + + + Support for changing languages at runtime + Designer::Internal::FormClassWizardPage| + Podpora za preklapljanje jezikov med tekom + + + buttonGroup + Designer::Internal::FormClassWizardPage| + skupinaGumbov + + + Qt + Designer::Internal::FormEditorPlugin| + Qt + + + Creates a Qt Designer form file (.ui). + Designer::Internal::FormEditorPlugin| + Ustvari datoteko z obrazcem Qt Designer (*.ui) + + + Creates a Qt Designer form file (.ui) with a matching class. + Designer::Internal::FormEditorPlugin| + Ustvari datoteko z obrazcem Qt Designer (*.ui) in ustrezen razred. + + + This creates a new Qt Designer form file. + Designer::Internal::FormEditorPlugin| + To ustvari novo datoteko obrazca Qt Designer. + + + This creates a new Qt Designer form class. + Designer::Internal::FormEditorPlugin| + To ustvari nov razred obrazca Qt Designer. + + + Signals & Slots Editor + Designer::Internal::FormEditorW| + Urejevalnik signalov in rež + + + For&m editor + Designer::Internal::FormEditorW| + Urejevalnik &obrazcev + + + Edit widgets + Designer::Internal::FormEditorW| + Urejanje gradnikov + + + Edit signals/slots + Designer::Internal::FormEditorW| + Urejanje signalov in rež + + + Edit buddies + Designer::Internal::FormEditorW| + Urejanje povezav + + + Edit tab order + Designer::Internal::FormEditorW| + Urejanje vrstnega reda tabulatorja + + + Views + Designer::Internal::FormEditorW| + Prikazi + + + Locked + Designer::Internal::FormEditorW| + Zaklenjeno + + + Reset to Default Layout + Designer::Internal::FormEditorW| + Ponastavi na privzet razpored + + + Designer widgetbox + Designer::Internal::FormEditorW| + Okvir z gradniki + + + Object inspector + Designer::Internal::FormEditorW| + Preiskovalnik objektov + + + Property editor + Designer::Internal::FormEditorW| + Urejevalnik lastnosti + + + Signals and slots editor + Designer::Internal::FormEditorW| + Urejevalnik signalov in rež + + + Action editor + Designer::Internal::FormEditorW| + Urejevalnik dejanj + + + The image could not be create: %1 + Designer::Internal::FormEditorW| + Slike ni bilo moč ustvariti: %1 + + + Choose a form template + Designer::Internal::FormTemplateWizardPage| + Izberite predlogo za obrazec + + + Registered Documentation: + DocSettingsPage| + Registrirana dokumentacija: + + + Form + DocSettingsPage| + Obrazec + + + Skin: + EmbeddedPropertiesPage| + Tema: + + + 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. + EmbeddedPropertiesPage| + Uporabi Virtual Box +Pomnite: To doda verigo orodij v okolje za gradnjo in program zažene v navideznem računalniku. +Prav tako samodejno nastavi pravo različico Qt. + + + Form + EmbeddedPropertiesPage| + Obrazec + + + 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. + EmbeddedPropertiesPage| + Uporabi Virtual Box +Pomnite: To doda verigo orodij v okolje za gradnjo in program zažene v navideznem računalniku. +Prav tako samodejno nastavi pravo različico Qt. + + + Form + ExtensionSystem::Internal::PluginDetailsView| + Obrazec + + + TextLabel + ExtensionSystem::Internal::PluginDetailsView| + BesedilaOznaka + + + Form + ExtensionSystem::Internal::PluginErrorView| + Obrazec + + + TextLabel + ExtensionSystem::Internal::PluginErrorView| + BesedilaOznaka + + + State + ExtensionSystem::Internal::PluginView| + Stanje + + + Location + ExtensionSystem::Internal::PluginView| + Lokacija + + + Form + ExtensionSystem::Internal::PluginView| + Obrazec + + + Plugin ended it's life cycle and was deleted + ExtensionSystem::PluginErrorView| + Vstavek je prenehal obstajati in je bil zbrisan + + + Cannot load plugin because dependencies are not resolved + ExtensionSystem::PluginManager| + Ni moč naložiti vstavka, ker odvisnosti niso bile razrešene + + + Toggle vim-style editing + FakeVim::Internal| + Preklopi urejanje v slogu Vim + + + FakeVim properties... + FakeVim::Internal| + Lastnosti FakeVim ... + + + E20: Mark '%1' not set + FakeVim::Internal::FakeVimHandler| + E20: oznaka »%1« ni nastavljena + + + File '%1' exists (add ! to override) + FakeVim::Internal::FakeVimHandler| + Datoteka »%1« že obstaja (da vsilite, dodajte !) + + + Cannot open file '%1' for writing + FakeVim::Internal::FakeVimHandler| + Datoteke »%1« ni moč odpreti za pisanje + + + Cannot open file '%1' for reading + FakeVim::Internal::FakeVimHandler| + Ni moč odpreti datoteke »%1« za branje + + + E512: Unknown option: + FakeVim::Internal::FakeVimHandler| + E512: Neznana možnost: + + + %1,%2 + FakeVim::Internal::FakeVimHandler| + %1, %2 + + + %1 + FakeVim::Internal::FakeVimHandler| + %1 + + + %1 lines filtered + FakeVim::Internal::FakeVimHandler| + filtriranih %1 vrstic + + + E492: Not an editor command: + FakeVim::Internal::FakeVimHandler| + E492: Ni ukaz urejevalnika: + + + E486: Pattern not found: + FakeVim::Internal::FakeVimHandler| + E486: Vzorec ni najden: + + + Not an editor command: %1 + FakeVim::Internal::FakeVimPluginPrivate| + Ni ukaz urejevalnika: %1 + + + Vim style settings + FakeVimOptionPage| + Nastavitve sloga Vim + + + vim's "expandtab" option + FakeVimOptionPage| + Vimova možnost »expandtab« + + + Expand tabulators: + FakeVimOptionPage| + Razširi tabulatorje: + + + Highlight search results: + FakeVimOptionPage| + Poudari rezultate iskanja: + + + Smart tabulators: + FakeVimOptionPage| + Pametni tabulatorji: + + + Start of line: + FakeVimOptionPage| + Začetek vrstice: + + + VIM's "autoindent" option + FakeVimOptionPage| + Vimova možnost »autoindent« + + + Automatic indentation: + FakeVimOptionPage| + Samodejno zamikanje: + + + Copy text editor settings + FakeVimOptionPage| + Skopiraj nastavitve urejevalnika besedil + + + Set Qt style + FakeVimOptionPage| + Nastavi slog Qt + + + Set plain style + FakeVimOptionPage| + Nastavi navaden slog + + + Incremental search: + FakeVimOptionPage| + Postopno iskanje: + + + Form + FakeVimOptionPage| + Obrazec + + + Filter: + FilterSettingsPage| + Filter: + + + Attributes: + FilterSettingsPage| + Lastnosti: + + + Form + FilterSettingsPage| + Obrazec + + + &Find/Replace + Find::Internal::FindPlugin| + &Najdi in zamenjaj + + + Find... + Find::Internal::FindPlugin| + Najdi ... + + + Find Dialog + Find::Internal::FindPlugin| + Pogovorno okno iskanja + + + Current Document + Find::Internal::FindToolBar| + Trenutni dokument + + + Gdb interaction + GdbOptionsPage| + Interakcija z GDB + + + Gdb location: + GdbOptionsPage| + Lokacija GDB-ja: + + + Behaviour of breakpoint setting in plugins + GdbOptionsPage| + Obnašanje nastavljanja prekinitvenih točk v vstavkih + + + This is either a full absolute path leading to the gdb binary you intend to use or the name of a gdb binary that will be searched in your PATH. + GdbOptionsPage| + To je bodisi polna absolutna pot do programa GDB, ki ga želite uporabiti, bodisi ime izvršljive datoteke programa GDB, ki bo posikana v mapah določenih v spremenljivki PATH. + + + Form + GdbOptionsPage| + Obrazec + + + 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. + GdbOptionsPage| + To je bodisi polna absolutna pot do programa GDB, ki ga želite uporabiti, bodisi ime izvršljive datoteke programa GDB, ki bo posikana v mapah določenih v spremenljivki PATH. + + + Form + GenericMakeStep| + Obrazec + + + <new> + GenericProject| + <nov> + + + Create + GenericProjectManager::Internal::GenericBuildConfigurationFactory| + Ustvari + + + Toolchain: + GenericProjectManager::Internal::GenericBuildSettingsWidget| + Zaporedje orodij: + + + Tool chain: + GenericProjectManager::Internal::GenericBuildSettingsWidget| + Veriga orodij: + + + Import of Makefile-based Project + GenericProjectManager::Internal::GenericProjectWizard| + Uvoz projekta temelječega na Makefile + + + Creates a generic project, supporting any build system. + GenericProjectManager::Internal::GenericProjectWizard| + Ustvari splošen projekt, ki podpira katerikoli sistem za gradnjo. + + + Projects + GenericProjectManager::Internal::GenericProjectWizard| + Projekti + + + The project %1 could not be opened. + GenericProjectManager::Internal::GenericProjectWizard| + Projekta %1 ni bilo moč odpreti. + + + Import of Makefile-based Project + GenericProjectManager::Internal::GenericProjectWizardDialog| + Uvoz projekta temelječega na Makefile + + + Generic Project + GenericProjectManager::Internal::GenericProjectWizardDialog| + Splošen projekt + + + Second Page Title + GenericProjectManager::Internal::GenericProjectWizardDialog| + Naslov druge strani + + + Delete + Git::Internal::BranchDialog| + Zbriši + + + Unable to find the repository directory for '%1'. + Git::Internal::BranchDialog| + Ni moč najti mape skladišča za »%1«. + + + General information + Git::Internal::BranchDialog| + Splošni podatki + + + Repository: + Git::Internal::BranchDialog| + Skladišče: + + + Remote branches + Git::Internal::BranchDialog| + Oddaljene veje + + + TextLabel + Git::Internal::BranchDialog| + BesedilaOznaka + + + Select Git repository + Git::Internal::ChangeSelectionDialog| + Izberite skladišče Git + + + %1 Executing: %2 %3 + + Git::Internal::GitClient| + <timestamp> Executing: <executable> <arguments> + + %1 Izvajanje: %2 %3 + + + + File Status + Git::Internal::GitPlugin| + Stanje datoteke + + + Undo Changes + Git::Internal::GitPlugin| + Razveljavi spremembe + + + Project Status + Git::Internal::GitPlugin| + Stanje projekta + + + Undo Project Changes + Git::Internal::GitPlugin| + Razveljavi spremembe projekta + + + Could not find working directory + Git::Internal::GitPlugin| + Ni bilo moč najti delovne mape + + + Revert... + Git::Internal::GitPlugin| + Povrni ... + + + File + Git::Internal::GitPlugin| + Datoteka + + + Status Related to %1 + Git::Internal::GitPlugin| + Stanje preusmerjeno v %1 + + + Log of %1 + Git::Internal::GitPlugin| + Dnevnik za %1 + + + Blame for %1 + Git::Internal::GitPlugin| + Odgovornost za %1 + + + Undo Changes for %1 + Git::Internal::GitPlugin| + Razveljavi spremembe za %1 + + + Revert %1... + Git::Internal::GitPlugin| + Povrni %1 ... + + + Status Project + Git::Internal::GitPlugin| + Stanje projekta + + + Status Project %1 + Git::Internal::GitPlugin| + Stanje projekta %1 + + + Environment variables + Git::Internal::SettingsPage| + Okoljske spremenljivke + + + From system + Git::Internal::SettingsPage| + Od sistema + + + Timeout (seconds): + Git::Internal::SettingsPage| + Časa na voljo (sekund): + + + Form + Git::Internal::SettingsPage| + Obrazec + + + Add new page + Help::Internal::CentralWidget| + Dodaj novo stran + + + unknown + Help::Internal::CentralWidget| + neznano + + + Add New Page + Help::Internal::CentralWidget| + Dodaj novo stran + + + Close This Page + Help::Internal::CentralWidget| + Zapri to stran + + + Close Other Pages + Help::Internal::CentralWidget| + Zapri druge strani + + + Add Bookmark for this Page... + Help::Internal::CentralWidget| + Dodaj zaznamek za to stran ... + + + Help + Help::Internal::DocSettingsPage| + Pomoč + + + The file %1 is not a valid Qt Help file! + Help::Internal::DocSettingsPage| + Datoteka %1 ni veljavna datoteka s pomočjo za Qt. + + + Cannot unregister documentation file %1! + Help::Internal::DocSettingsPage| + Ni moč odregistrirati datoteke z dokumentacijo %1. + + + Help + Help::Internal::FilterSettingsPage| + Pomoč + + + <html><head><title>No Documentation</title></head><body><br/><br/><center>No documentation available.</center></body></html> + Help::Internal::HelpPlugin| + <html><head><title>Ni dokumentacije</title></head><body><br/><br/><center>Na voljo ni nobene dokumentacije.</center></body></html> + + + &Copy + Help::Internal::SearchWidget| + S&kopiraj + + + Copy &Link Location + Help::Internal::SearchWidget| + Skopiraj &povezavo do lokacije + + + Open Link in New Tab + Help::Internal::SearchWidget| + Odpri povezavo v novem zavihku + + + Select All + Help::Internal::SearchWidget| + Izberi vse + + + Open Link in New Tab + HelpViewer| + Odpri povezavo v novem zavihku + + + Help + HelpViewer| + Pomoč + + + Unable to launch external application. + + HelpViewer| + Ni moč zagnati zunanjega programa. + + + + OK + HelpViewer| + V redu + + + Copy &Link Location + HelpViewer| + Skopiraj &povezavo do lokacije + + + Open Link in New Tab Ctrl+LMB + HelpViewer| + Odpri povezavo v novem zavihku Ctrl+LGM + + + Open Link in New Tab + IndexWindow| + Odpri povezavo v novem zavihku + + + File + MainWindow| + Datoteka + + + Open file + MainWindow| + Odpri datoteko + + + Quit + MainWindow| + Končaj + + + Run to main() + MainWindow| + Zaženi do main() + + + Files + MainWindow| + Datoteke + + + Debug + MainWindow| + Razhroščevanje + + + Not a runnable project + MainWindow| + Ni zaženljiv projekt + + + The current startup project can not be run. + MainWindow| + Trenutnega začetnega projekta ni moč zagnati. + + + Open File + MainWindow| + Odpri datoteko + + + Cannot find special data dumpers + MainWindow| + Ni moč najti odlagalnikov posebnih podatkov + + + 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. + MainWindow| + Razhroščevan program ne vsebuje podatkov, ki so potrebni za lep prikaz podatkovnih vrst Qt. + +Prepričajte se, da je v datoteki *.pro nekaj podobnega + +SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.cpp + + + Open Executable File + MainWindow| + Odpri izvršljivo datoteko + + + Form + MakeStep| + Obrazec + + + Filter: + NickNameDialog| + Filter: + + + Clear + NickNameDialog| + Počisti + + + Delete + Perforce::Internal::PerforcePlugin| + Izbriši + + + Timeout waiting for "where" (%1). + Perforce::Internal::PerforcePlugin| + Čas za čakanje na »where« (%1) je potekel. + + + Error running "where" on %1: The file is not mapped + Perforce::Internal::PerforcePlugin| + Napaka poganjanja »where« na %1: datoteka ni preslikana + + + No p4 executable specified! + Perforce::Internal::PerforcePlugin| + Določen ni noben program p4. + + + Edit %1 + Perforce::Internal::PerforcePlugin| + Urejanje %1 + + + Add %1 + Perforce::Internal::PerforcePlugin| + Dodaj %1 + + + Delete %1 + Perforce::Internal::PerforcePlugin| + Izbriši %1 + + + Revert %1 + Perforce::Internal::PerforcePlugin| + Povrni %1 + + + %1 Executing: %2 + + Perforce::Internal::PerforcePlugin| + %1 Izvajanje: %2 + + + + Resolve + Perforce::Internal::PerforcePlugin| + Razreši + + + P4 Command: + Perforce::Internal::SettingsPage| + Ukaz P4: + + + Use default P4 environment variables + Perforce::Internal::SettingsPage| + Uporabi privzete okoljske spremenljivke za P4 + + + Environment variables + Perforce::Internal::SettingsPage| + Okoljske spremenljivke + + + P4 Client: + Perforce::Internal::SettingsPage| + Odjemalec P4: + + + P4 User: + Perforce::Internal::SettingsPage| + Uporabnik P4: + + + P4 Port: + Perforce::Internal::SettingsPage| + Vrata P4: + + + Form + Perforce::Internal::SettingsPage| + Obrazec + + + +Library base name: %1 + PluginSpec| + +Osnovno ime knjižnice: %1 + + + Plugin is not valid (doesn't derive from IPlugin) + PluginSpec| + Vstavek ni veljaven (ni izpeljan iz IPlugin) + + + <font color="#0000ff">Starting: %1 %2</font> + + ProjectExplorer::AbstractProcessStep| + <font color="#0000ff">Zaganjanje: %1 %2</font> + + + + <font color="#0000ff">Exited with code %1.</font> + ProjectExplorer::AbstractProcessStep| + <font color="#0000ff">Končal s kodo %1.</font> + + + <font color="#ff0000"><b>Exited with code %1.</b></font> + ProjectExplorer::AbstractProcessStep| + <font color="#ff0000"><b>Končal s kodo %1.</b></font> + + + <font color="#ff0000">Could not start process %1 </b></font> + ProjectExplorer::AbstractProcessStep| + <font color="#ff0000">Ni moč zagnati procesa %1 </b></font> + + + <font color="#ff0000">Canceled build.</font> + ProjectExplorer::BuildManager| + <font color="#ff0000">Preklicana gradnja.</font> + + + Finished %n of %1 build steps + ProjectExplorer::BuildManager| + + Zaključen %n od %1 korakov gradnje + Zaključena %n od %1 korakov gradnje + Zaključeni %n od %1 korakov gradnje + Zaključenih %n od %1 korakov gradnje + + + + <font color="#ff0000">Error while building project %1</font> + ProjectExplorer::BuildManager| + <font color="#ff0000">Napaka med gradnjo projekta %1</font> + + + <font color="#ff0000">When executing build step '%1'</font> + ProjectExplorer::BuildManager| + <font color="#ff0000">Med izvajanjem koraka »%1«</font> + + + Error while building project %1 + ProjectExplorer::BuildManager| + Napaka med gradnjo projekta %1 + + + <b>Running build steps for project %2...</b> + ProjectExplorer::BuildManager| + <b>Poganjanje korakov gradnje za projekt %2 ...</b> + + + Finished %1 of %2 build steps + ProjectExplorer::BuildManager| + Zaključil %1 od %2 korakov gradnje + + + <VALUE> + ProjectExplorer::EnvironmentModel| + <vrednost> + + + Summary: No changes to Environment + ProjectExplorer::EnvironmentWidget| + Povzetek: brez sprememb okolja + + + Build Settings + ProjectExplorer::Internal::BuildSettingsPanel| + Nastavitve za gradnjo + + + Edit Build Configuration: + ProjectExplorer::Internal::BuildSettingsWidget| + Urejanje nastavitev za gradnjo: + + + Create &New + ProjectExplorer::Internal::BuildSettingsWidget| + Ustvari &novo + + + %1 - %2 + ProjectExplorer::Internal::BuildSettingsWidget| + %1 - %2 + + + General + ProjectExplorer::Internal::BuildSettingsWidget| + Splošno + + + Set as Active + ProjectExplorer::Internal::BuildSettingsWidget| + Nastavi kot aktivno + + + Clone + ProjectExplorer::Internal::BuildSettingsWidget| + Podvoji + + + Delete + ProjectExplorer::Internal::BuildSettingsWidget| + Izbriši + + + New configuration + ProjectExplorer::Internal::BuildSettingsWidget| + Nova nastavitev + + + Add clean step + ProjectExplorer::Internal::BuildStepsPage| + Dodaj korak čiščenja + + + Add build step + ProjectExplorer::Internal::BuildStepsPage| + Dodaj korak gradnje + + + Remove clean step + ProjectExplorer::Internal::BuildStepsPage| + Odstrani korak čiščenja + + + Remove build step + ProjectExplorer::Internal::BuildStepsPage| + Odstrani korak gradnje + + + 1 + ProjectExplorer::Internal::BuildStepsPage| + 1 + + + + + ProjectExplorer::Internal::BuildStepsPage| + + + + + - + ProjectExplorer::Internal::BuildStepsPage| + - + + + ^ + ProjectExplorer::Internal::BuildStepsPage| + + + + v + ProjectExplorer::Internal::BuildStepsPage| + + + + Form + ProjectExplorer::Internal::BuildStepsPage| + Obrazec + + + Don't Close + ProjectExplorer::Internal::CoreListenerCheckingForRunningBuild| + Ne zapri + + + Dependencies + ProjectExplorer::Internal::DependenciesPanel| + Odvisnosti + + + %1 of project %2 + ProjectExplorer::Internal::DetailedModel| + %1 projekta %2 + + + Could not rename file + ProjectExplorer::Internal::DetailedModel| + Ni moč preimenovati datoteke + + + Renaming file %1 to %2 failed. + ProjectExplorer::Internal::DetailedModel| + Preimenovanje datoteke %1 v %2 ni uspelo. + + + Editor Settings + ProjectExplorer::Internal::EditorSettingsPanel| + Nastavitve urejevalnika + + + Default File Encoding: + ProjectExplorer::Internal::EditorSettingsPropertiesPage| + Privzeti nabor znakov: + + + Form + ProjectExplorer::Internal::EditorSettingsPropertiesPage| + Obrazec + + + New session name + ProjectExplorer::Internal::NewSessionInputDialog| + Ime nove seje + + + Enter the name of the new session: + ProjectExplorer::Internal::NewSessionInputDialog| + Vnesite ime nove seje: + + + Switch to session + ProjectExplorer::Internal::SessionDialog| + Preklopi na sejo + + + Create New Session + ProjectExplorer::Internal::SessionDialog| + Ustvari novo sejo + + + Clone Session + ProjectExplorer::Internal::SessionDialog| + Podvoji sejo + + + Delete Session + ProjectExplorer::Internal::SessionDialog| + Izbriši sejo + + + <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">What is a Session?</a> + ProjectExplorer::Internal::SessionDialog| + <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Kaj je seja?</a> + + + Choose your session + ProjectExplorer::Internal::SessionDialog| + Izberite sejo + + + The application is still running. Close it first. + ProjectExplorer::Internal::OutputPane| + Program še vedno teče. Najprej ga zaprite. + + + Rerun this runconfiguration + ProjectExplorer::Internal::OutputPane| + Znova zaženi te nastavitve za zagon + + + Application Output Window + ProjectExplorer::Internal::OutputWindow| + Okno z izhodom programa + + + Custom Process Step + ProjectExplorer::Internal::ProcessStep| + Korak postopka po meri + + + Working Directory: + ProjectExplorer::Internal::ProcessStepWidget| + Delovna mapa: + + + Command Arguments: + ProjectExplorer::Internal::ProcessStepWidget| + Argumenti za ukaz: + + + Enable Custom Process Step + ProjectExplorer::Internal::ProcessStepWidget| + Omogoči korak postopka po meri + + + Form + ProjectExplorer::Internal::ProcessStepWidget| + Obrazec + + + Build and Run + ProjectExplorer::Internal::ProjectExplorerSettingsPage| + Zgradi in zaženi + + + Projects + ProjectExplorer::Internal::ProjectExplorerSettingsPage| + Projekti + + + Build and Run Settings + ProjectExplorer::Internal::ProjectExplorerSettingsPage| + Nastavitve za gradnjo in zagon + + + Projectexplorer + ProjectExplorer::Internal::ProjectExplorerSettingsPage| + Raziskovalec projektov + + + Active Build and Run Configurations + ProjectExplorer::Internal::ProjectWindow| + Aktivne nastavitve gradnje in zagona + + + No project loaded. + ProjectExplorer::Internal::ProjectWindow| + Naložen ni noben projekt. + + + Project Explorer + ProjectExplorer::Internal::ProjectWindow| + Raziskovalec projektov + + + Projects + ProjectExplorer::Internal::ProjectWindow| + Projekti + + + Startup + ProjectExplorer::Internal::ProjectWindow| + Zagon + + + Path + ProjectExplorer::Internal::ProjectWindow| + Pot + + + Add to &VCS (%1) + ProjectExplorer::Internal::ProjectWizardPage| + Dodaj &v sistem za nadzor različic (%1) + + + Run Settings + ProjectExplorer::Internal::RunSettingsPanel| + Nastavitve za zagon + + + Edit run configuration: + ProjectExplorer::Internal::RunSettingsPropertiesPage| + Urejanje nastavitev za zagon: + + + Run &configuration: + ProjectExplorer::Internal::RunSettingsPropertiesPage| + &Nastavitve za zagon: + + + Settings + ProjectExplorer::Internal::RunSettingsPropertiesPage| + Nastavitve + + + Form + ProjectExplorer::Internal::RunSettingsPropertiesPage| + Obrazec + + + Build Issues + ProjectExplorer::Internal::TaskWindow| + Težave pri gradnji + + + &Copy + ProjectExplorer::Internal::TaskWindow| + S&kopiraj + + + Show Warnings + ProjectExplorer::Internal::TaskWindow| + Prikaži opozorila + + + &Add to Project + ProjectExplorer::Internal::WizardPage| + &Dodaj k projektu + + + &Project + ProjectExplorer::Internal::WizardPage| + &Projekt + + + Add to &version control + ProjectExplorer::Internal::WizardPage| + Dodaj &v sistem za nadzor različic + + + WizardPage + ProjectExplorer::Internal::WizardPage| + StranČarovnika + + + Show in Explorer... + ProjectExplorer::ProjectExplorerPlugin| + Prikaži v raziskovalcu ... + + + Show in Finder... + ProjectExplorer::ProjectExplorerPlugin| + Prikaži v Finderju ... + + + Show containing folder... + ProjectExplorer::ProjectExplorerPlugin| + Prikaži vsebujočo mapo ... + + + Recent Projects + ProjectExplorer::ProjectExplorerPlugin| + Nedavni projekti + + + Set Build Configuration + ProjectExplorer::ProjectExplorerPlugin| + Nastavi nastavitve za gradnjo + + + Set Run Configuration + ProjectExplorer::ProjectExplorerPlugin| + Nastavi nastavitve za zagon + + + Launching Windows Explorer failed + ProjectExplorer::ProjectExplorerPlugin| + Zaganjanje Windows Explorer ni uspelo + + + Could not find explorer.exe in path to launch Windows Explorer. + ProjectExplorer::ProjectExplorerPlugin| + V poti ni bilo moč najti explorer.exe in zato ni bilo moč zagnati Windows Explorer. + + + Launching a file explorer failed + ProjectExplorer::ProjectExplorerPlugin| + Zaganjanje upravitelja datotek ni uspelo + + + Could not find xdg-open to launch the native file explorer. + ProjectExplorer::ProjectExplorerPlugin| + Ni bilo moč najti xdg-open in zato ni bilo moč zagnati upravitelja datotek. + + + Project Only + ProjectExplorer::ProjectExplorerPlugin| + Samo projekt + + + Build Project Only + ProjectExplorer::ProjectExplorerPlugin| + Zgradi samo projekt + + + Rebuild Project only + ProjectExplorer::ProjectExplorerPlugin| + Znova zgradi samo projekt + + + Clean Project only + ProjectExplorer::ProjectExplorerPlugin| + Počisti samo projekt + + + Go to Task Window + ProjectExplorer::ProjectExplorerPlugin| + Pojdi v okno z opravili + + + Project only + ProjectExplorer::ProjectExplorerPlugin| + Samo projekt + + + Build Project only + ProjectExplorer::ProjectExplorerPlugin| + Zgradi samo projekt + + + Project "%1" only + ProjectExplorer::ProjectExplorerPlugin| + Samo projekt »%1« + + + Build Project "%1" only + ProjectExplorer::ProjectExplorerPlugin| + Zgradi samo projekt »%1« + + + Rebuild Project "%1" only + ProjectExplorer::ProjectExplorerPlugin| + Znova zgradi samo projekt »%1« + + + Clean Project "%1" only + ProjectExplorer::ProjectExplorerPlugin| + Počisti samo projekt »%1« + + + Unload Project + ProjectExplorer::ProjectExplorerPlugin| + Zapri projekt + + + Unload All Projects + ProjectExplorer::ProjectExplorerPlugin| + Zapri vse projekte + + + Unload Project "%1" + ProjectExplorer::ProjectExplorerPlugin| + Zapri projekt »%1« + + + Error while loading session + ProjectExplorer::SessionManager| + Napaka med nalaganjem seje + + + Could not load session %1 + ProjectExplorer::SessionManager| + Ni bilo moč naložiti seje %1 + + + QMake Build Configuration: + QMakeStep| + Nastavitev gradnje QMake: + + + debug + QMakeStep| + razhroščevanje + + + release + QMakeStep| + izdaja + + + Form + QMakeStep| + Obrazec + + + File Changed + QObject| + Datoteka spremenjena + + + The file %1 has changed outside Qt Creator. Do you want to reload it? + QObject| + Datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova? + + + File is Read Only + QObject| + Datoteka samo za branje + + + The file %1 is read only. + QObject| + Datoteka %1 je samo za branje. + + + Open with VCS (%1) + QObject| + Odpri v sistemu za nadzor različic (%1) + + + Make writable + QObject| + Spremeni v zapisljivo + + + Save as ... + QObject| + Shrani kot ... + + + Toggle vim-style editing + QObject| + Preklopi urejanje v slogu Vim + + + FakeVim properties... + QObject| + Lastnosti FakeVim ... + + + QML Application + QmlProjectManager::Internal::QmlNewProjectWizard| + Program QML + + + Creates a QML application. + QmlProjectManager::Internal::QmlNewProjectWizard| + Ustvari program QML. + + + Projects + QmlProjectManager::Internal::QmlNewProjectWizard| + Projekti + + + The project %1 could not be opened. + QmlProjectManager::Internal::QmlNewProjectWizard| + Projekta %1 ni bilo moč odpreti. + + + New QML Project + QmlProjectManager::Internal::QmlNewProjectWizardDialog| + Nov projekt QML + + + This wizard generates a QML application project. + QmlProjectManager::Internal::QmlNewProjectWizardDialog| + Ta čarovnik ustvari projekt programa QML. + + + Import of existing QML directory + QmlProjectManager::Internal::QmlProjectWizard| + Uvoz obstoječe mape s QML + + + Creates a QML project from an existing directory of QML files. + QmlProjectManager::Internal::QmlProjectWizard| + Ustvari projekt QML iz obstoječe mape z datotekami QML. + + + Projects + QmlProjectManager::Internal::QmlProjectWizard| + Projekti + + + The project %1 could not be opened. + QmlProjectManager::Internal::QmlProjectWizard| + Projekta %1 ni bilo moč odpreti. + + + Import of QML Project + QmlProjectManager::Internal::QmlProjectWizardDialog| + Uvoz projekta QML + + + QML Project + QmlProjectManager::Internal::QmlProjectWizardDialog| + Projekt QML + + + Project name: + QmlProjectManager::Internal::QmlProjectWizardDialog| + Ime projekta: + + + Location: + QmlProjectManager::Internal::QmlProjectWizardDialog| + Lokacija: + + + <Current File> + QmlProjectManager::Internal::QmlRunConfiguration| + <trenutna datoteka> + + + QML Viewer arguments: + QmlProjectManager::Internal::QmlRunConfiguration| + Argumenti pregledovalnika QML: + + + Main QML File: + QmlProjectManager::Internal::QmlRunConfiguration| + Glavna datoteka QML: + + + Could not find the qmlviewer executable, please specify one. + QmlProjectManager::Internal::QmlRunConfiguration| + Ni bilo moč najti izvršljive datoteke qmlviewer. Določite jo. + + + Form + QrcEditor| + Obrazec + + + Qt4 Console Application + Qt4ProjectManager::Internal::ConsoleAppWizard| + Konzolni program Qt 4 + + + Creates a Qt4 console application. + Qt4ProjectManager::Internal::ConsoleAppWizard| + Ustvari konzolni program Qt 4. + + + 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::ConsoleAppWizardDialog| + Ta čarovnik ustvari projekt konzolnega programa Qt 4. Program je izpeljan iz QCoreApplication in nima grafičnega uporabniškega vmesnika. Gumb »Zaključi« lahko kliknete kadarkoli. + + + Embedded Linux + Qt4ProjectManager::Internal::EmbeddedPropertiesPanel| + Vgrajeni Linux + + + Empty Qt4 Project + Qt4ProjectManager::Internal::EmptyProjectWizard| + Prazen projekt Qt 4 + + + Creates an empty Qt project. + Qt4ProjectManager::Internal::EmptyProjectWizard| + Ustvari prazen projekt Qt 4. + + + This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. You can press 'Finish' at any point in time. + Qt4ProjectManager::Internal::EmptyProjectWizardDialog| + Ta čarovnik ustvari prazen projekt Qt 4. Datoteke dodajte kasneje z uporabo drugih čarovnikov. Kadarkoli lahko kliknete »Zaključi«. + + + Qt4 Gui Application + Qt4ProjectManager::Internal::GuiAppWizard| + Grafični program Qt 4 + + + Creates a Qt4 Gui Application with one form. + Qt4ProjectManager::Internal::GuiAppWizard| + Ustvari program Qt 4 z grafičnim vmesnikom. + + + Creates a C++ Library. + Qt4ProjectManager::Internal::LibraryWizard| + Ustvari knjižnico C++. + + + New + Qt4ProjectManager::Internal::ProEditor| + Nova + + + Remove + Qt4ProjectManager::Internal::ProEditor| + Odstrani + + + Up + Qt4ProjectManager::Internal::ProEditor| + Gor + + + Down + Qt4ProjectManager::Internal::ProEditor| + Dol + + + Cut + Qt4ProjectManager::Internal::ProEditor| + Izreži + + + Copy + Qt4ProjectManager::Internal::ProEditor| + Skopiraj + + + Paste + Qt4ProjectManager::Internal::ProEditor| + Prilepi + + + Add Variable + Qt4ProjectManager::Internal::ProEditor| + Dodaj spremenljivko + + + Add Scope + Qt4ProjectManager::Internal::ProEditor| + Dodaj doseg + + + Add Block + Qt4ProjectManager::Internal::ProEditor| + Dodaj blok + + + <Global Scope> + Qt4ProjectManager::Internal::ProEditorModel| + <globalni doseg> + + + Change Item + Qt4ProjectManager::Internal::ProEditorModel| + Spremeni postavko + + + Change Variable Assignment + Qt4ProjectManager::Internal::ProEditorModel| + Spremeni dodelitev spremenljivki + + + Change Variable Type + Qt4ProjectManager::Internal::ProEditorModel| + Spremeni vrsto spremenljivke + + + Change Scope Condition + Qt4ProjectManager::Internal::ProEditorModel| + Spremeni pogoj dosega + + + Change Expression + Qt4ProjectManager::Internal::ProEditorModel| + Spremeni izraz + + + Move Item + Qt4ProjectManager::Internal::ProEditorModel| + Premakni postavko + + + Remove Item + Qt4ProjectManager::Internal::ProEditorModel| + Odstrani postavko + + + Insert Item + Qt4ProjectManager::Internal::ProEditorModel| + Vstavi postavko + + + Import existing build settings + Qt4ProjectManager::Internal::ProjectLoadWizard| + Uvozi obstoječe nastavitve za gradnjo + + + 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 + Qt4ProjectManager::Internal::ProjectLoadWizard| + Qt Creator je v mapi z izvorno kodo našel že obstoječo gradnjo.<br><br><b>Različica Qt:</b> %1<br><b>Nastavitev gradnje:</b> %2<br><b>Dodatni argumenti za QMake:</b>%3 + + + Import existing build settings. + Qt4ProjectManager::Internal::ProjectLoadWizard| + Uvozi obstoječe nastavitve za gradnjo. + + + <b>Note:</b> Importing the settings will automatically add the Qt Version identified by <br><b>%1</b> to the list of Qt versions. + Qt4ProjectManager::Internal::ProjectLoadWizard| + <b>Opomba:</b> Uvoz nastavitev bo na seznam različic Qt samodejno dodal različico Qt, ki jo je identificiral <br><b>%1</b>. + + + Import existing settings + Qt4ProjectManager::Internal::ProjectLoadWizard| + Uvozi obstoječe nastavitve + + + 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> + Qt4ProjectManager::Internal::ProjectLoadWizard| + Qt Creator je v mapi z izvorno kodo našel že obstoječo gradnjo.<br><br><b>Različica Qt:</b> %1<br><b>Nastavitev gradnje:</b> %2<br> + + + <b>Note:</b> Importing the settings will automatically add the Qt Version from:<br><b>%1</b> to the list of Qt versions. + Qt4ProjectManager::Internal::ProjectLoadWizard| + <b>Opomba:</b> Uvoz nastavitev bo na seznam različic Qt samodejno dodal različico Qt iz:<br><b>%1</b> + + + <b>Note:</b> Importing the settings will automatically add the Qt Version from:<br><b>%1</b> to the list of qt versions. + Qt4ProjectManager::Internal::ProjectLoadWizard| + <b>Opomba:</b> Uvoz nastavitev bo na seznam različic Qt samodejno dodal različico Qt iz:<br><b>%1</b> + + + Clear system environment + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget| + Počisti sistemsko okolje + + + Build Environment + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget| + Okolje za gradnjo + + + &Edit + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget| + &Urejanje + + + &Add + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget| + &Dodaj + + + &Reset + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget| + &Ponastavi + + + &Unset + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget| + &Odnastavi + + + Reset + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget| + Ponastavi + + + Remove + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget| + Odstrani + + + Form + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget| + Obrazec + + + Error while parsing file %1. Giving up. + Qt4ProjectManager::Internal::Qt4PriFileNode| + Napaka med razčlenjevanjem datoteke %1. + + + Error while changing pro file %1. + Qt4ProjectManager::Internal::Qt4PriFileNode| + Napaka med spreminjanjem datoteke %1. + + + Configuration Name: + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Ime nastavitev + + + Qt Version: + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Različica Qt: + + + This Qt-Version is invalid. + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Različica Qt ni veljavna. + + + Shadow Build: + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Izven mape s kodo: + + + Build Directory: + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Mapa za gradnjo: + + + Default Qt Version (%1) + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Privzeta različica Qt (%1) + + + No Qt Version set + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Nastavljena ni nobena različica Qt + + + Tool Chain: + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Zaporedje orodij: + + + Manage Qt Versions + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Upravljanje različic Qt + + + Default Qt Version + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Privzeta različica Qt + + + Form + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget| + Obrazec + + + Could not parse %1. The Qt4 run configuration %2 can not be started. + Qt4ProjectManager::Internal::Qt4RunConfiguration| + Ni bilo moč razčleniti %1. Nastavitev za zagon Qt 4 %2 ni moč zagnati. + + + Run in Terminal + Qt4ProjectManager::Internal::Qt4RunConfigurationWidget| + Zaženi v konzoli + + + Running executable: <b>%1</b> %2 (in terminal) + Qt4ProjectManager::Internal::Qt4RunConfigurationWidget| + Zaganjanje programa: <b>%1</b> %2 (v konzoli) + + + Running executable: <b>%1</b> %2 + Qt4ProjectManager::Internal::Qt4RunConfigurationWidget| + Zaganjanje programa: <b>%1</b> %2 + + + Select the working directory + Qt4ProjectManager::Internal::Qt4RunConfigurationWidget| + Izberite delovno mapo + + + Working Directory: + Qt4ProjectManager::Internal::Qt4RunConfigurationWidget| + Delovna mapa: + + + &Arguments: + Qt4ProjectManager::Internal::Qt4RunConfigurationWidget| + &Argumenti: + + + Run in &Terminal + Qt4ProjectManager::Internal::Qt4RunConfigurationWidget| + Zaženi v &konzoli + + + Select QMake Executable + Qt4ProjectManager::Internal::QtOptionsPageWidget| + Izberite program QMake + + + The Qt Version identified by %1 is not installed. Run make install + Qt4ProjectManager::Internal::QtOptionsPageWidget| + Različica Qt, ki jo je identificiral %1, ni nameščena. Zaženite »make install« + + + %1 does not specify a valid Qt installation + Qt4ProjectManager::Internal::QtOptionsPageWidget| + %1 ne določa veljavne namestitve Qt + + + Found Qt version %1, using mkspec %2 + Qt4ProjectManager::Internal::QtOptionsPageWidget| + Najden je Qt različice %1, uporabljen mkspec %2 + + + <specify a path> + Qt4ProjectManager::Internal::QtOptionsPageWidget| + <vnesite pot> + + + Select QTDIR + Qt4ProjectManager::Internal::QtOptionsPageWidget| + Izberite QTDIR + + + Select the Qt Directory + Qt4ProjectManager::Internal::QtOptionsPageWidget| + Izberite mapo s Qt + + + The Qt Version %1 is not installed. Run make install + Qt4ProjectManager::Internal::QtOptionsPageWidget| + Qt različice %1 ni nameščen. Zaženite »make install« + + + %1 is not a valid Qt directory + Qt4ProjectManager::Internal::QtOptionsPageWidget| + %1 ni veljavna mapa s Qt + + + %1 is not a valid qt directory + Qt4ProjectManager::Internal::QtOptionsPageWidget| + %1 ni veljavna mapa s Qt + + + Qt versions + Qt4ProjectManager::Internal::QtVersionManager| + Različice Qt + + + Version Name: + Qt4ProjectManager::Internal::QtVersionManager| + Ime različice: + + + MinGW Directory: + Qt4ProjectManager::Internal::QtVersionManager| + Mapa z MinGW: + + + Debugging Helper: + Qt4ProjectManager::Internal::QtVersionManager| + Razhroščevalni pomočnik: + + + Default Qt Version: + Qt4ProjectManager::Internal::QtVersionManager| + Privzeta različica Qt: + + + QMake Location + Qt4ProjectManager::Internal::QtVersionManager| + Lokacija QMake + + + QMake Location: + Qt4ProjectManager::Internal::QtVersionManager| + Lokacija QMake: + + + MSVC Version: + Qt4ProjectManager::Internal::QtVersionManager| + Različica MSVC: + + + Carbide Directory: + Qt4ProjectManager::Internal::QtVersionManager| + Mapa s Carbide: + + + Path: + Qt4ProjectManager::Internal::QtVersionManager| + Pot: + + + Path + Qt4ProjectManager::Internal::QtVersionManager| + Pot + + + Form + Qt4ProjectManager::Internal::QtVersionManager| + Obrazec + + + The project %1 could not be opened. + Qt4ProjectManager::Internal::QtWizard| + Projekta %1 ni bilo moč odpreti. + + + Edit Variable + Qt4ProjectManager::Internal::ValueEditor| + Urejanje spremenljivke + + + Variable Name: + Qt4ProjectManager::Internal::ValueEditor| + Ime spremenljivke: + + + Assignment Operator: + Qt4ProjectManager::Internal::ValueEditor| + Dodelitveni operator: + + + Variable: + Qt4ProjectManager::Internal::ValueEditor| + Spremenljivka: + + + Append (+=) + Qt4ProjectManager::Internal::ValueEditor| + Dodaj (+=) + + + Remove (-=) + Qt4ProjectManager::Internal::ValueEditor| + Odstrani (-=) + + + Replace (~=) + Qt4ProjectManager::Internal::ValueEditor| + Nadomesti (~=) + + + Set (=) + Qt4ProjectManager::Internal::ValueEditor| + Nastavi (=) + + + Unique (*=) + Qt4ProjectManager::Internal::ValueEditor| + Edinstveno (*=) + + + Select Item + Qt4ProjectManager::Internal::ValueEditor| + Izberite postavko + + + Edit Item + Qt4ProjectManager::Internal::ValueEditor| + Urejanje postavke + + + Select Items + Qt4ProjectManager::Internal::ValueEditor| + Izberite postavke + + + Edit Items + Qt4ProjectManager::Internal::ValueEditor| + Urejanje postavk + + + New + Qt4ProjectManager::Internal::ValueEditor| + Nova + + + Remove + Qt4ProjectManager::Internal::ValueEditor| + Odstrani + + + Edit Values + Qt4ProjectManager::Internal::ValueEditor| + Urejanje vrednosti + + + Edit %1 + Qt4ProjectManager::Internal::ValueEditor| + Urejanje %1 + + + Edit Scope + Qt4ProjectManager::Internal::ValueEditor| + Urejanje dosega + + + Edit Advanced Expression + Qt4ProjectManager::Internal::ValueEditor| + Urejanje naprednega izraza + + + <font color="#ff0000">Could not find make command: %1 in the build environment</font> + Qt4ProjectManager::MakeStep| + <font color="#ff0000">Ni bilo moč najti ukaza make: %1 v okolju za gradnjo</font> + + + <font color="#0000ff"><b>No Makefile found, assuming project is clean.</b></font> + Qt4ProjectManager::MakeStep| + <font color="#0000ff">Datoteka Makefile ni bila najdena. Predpostavljam da je projekt čist.<b></b> + + + +<font color="#ff0000"><b>No valid Qt version set. Set one in Preferences </b></font> + + Qt4ProjectManager::QMakeStep| + +<font color="#ff0000">Nastavljene ni veljavne različice Qt. Nastavite jo v nastavitvah.<b></b> + + + + +<font color="#ff0000"><b>No valid Qt version set. Set one in Tools/Options </b></font> + + Qt4ProjectManager::QMakeStep| + +<font color="#ff0000">Nastavljene ni veljavne različice Qt. Nastavite jo v Orodja → Možnosti.<b></b> + + + + <font color="#0000ff">Configuration unchanged, skipping QMake step.</font> + Qt4ProjectManager::QMakeStep| + <font color="#0000ff">Nastavitev se ni spremenila, izpuščam korak QMake.</font> + + + QMAKESPEC from environment (%1) overrides mkspec of selected Qt (%2). + Qt4ProjectManager::QMakeStep| + QMAKESPEC iz okolja (%1) povozi mkspec izbranega Qt (%2). + + + <b>QMake:</b> No Qt version set. QMake can not be run. + Qt4ProjectManager::QMakeStepConfigWidget| + <b>QMake:</b> Nastavljene ni nobene različice Qt. QMake ni moč zagnati. + + + <b>QMake:</b> %1 %2 + Qt4ProjectManager::QMakeStepConfigWidget| + <b>QMake:</b> %1 %2 + + + No valid Qt version set. + Qt4ProjectManager::QMakeStepConfigWidget| + Nastavljene ni nobene veljavne različice Qt. + + + QMake + Qt4ProjectManager::Internal::QMakeStepFactory| + QMake + + + Loading project %1 ... + Qt4ProjectManager::Qt4Manager| + Nalaganje projekta %1 ... + + + Failed opening project + Qt4ProjectManager::Qt4Manager| + Odpiranje projekta ni uspelo + + + Opening %1 ... + Qt4ProjectManager::Qt4Manager| + Odpiranje %1 ... + + + Done opening project + Qt4ProjectManager::Qt4Manager| + Odpiranje projekta je zaključeno + + + Compiler: + Qt4ProjectManager::QtVersionManager| + Prevajalnik: + + + Auto-detected Qt + Qt4ProjectManager::QtVersionManager| + Samodejno zaznan Qt + + + Qt Script Error + QtScriptEditor::Internal::QtScriptEditorActionHandler| + Napaka Qt Script + + + Creates a Qt Script file. + QtScriptEditor::Internal::QtScriptEditorPlugin| + Ustvari datoteko Qt Script. + + + Qt Script file + QtScriptEditor::Internal::QtScriptEditorPlugin| + Datoteka Qt Script + + + Qt + QtScriptEditor::Internal::QtScriptEditorPlugin| + Qt + + + Run + QtScriptEditor::Internal::QtScriptEditorPlugin| + Zaženi + + + <Select Symbol> + QtScriptEditor::Internal::ScriptEditor| + <izberite simbol> + + + Creates a Qt Resource file (.qrc). + ResourceEditor::Internal::ResourceEditorPlugin| + Ustvari datoteko z viri za Qt (*.qrc). + + + Qt + ResourceEditor::Internal::ResourceEditorPlugin| + Qt + + + Resource file + ResourceEditor::Internal::ResourceEditorPlugin| + Datoteka z viri + + + Automatically save all Files before building + SaveItemsDialog| + Pred gradnjo samodejno shrani vse datoteke + + + Options + SettingsDialog| + Možnosti + + + 0 + SettingsDialog| + 0 + + + Invalid file + SharedTools::QrcEditor| + Neveljavna datoteka + + + The file %1 is not in a subdirectory of the resource file. Continuing will result in an invalid resource file. + SharedTools::QrcEditor| + Datoteka %1 ni podmapa datoteke z viri. Če nadaljujete, bo ustvarjena neveljavna datoteka z viri. + + + Keyboard Shortcuts + ShortcutSettings| + Tipkovnične bližnjice + + + Filter: + ShortcutSettings| + Filter: + + + Command + ShortcutSettings| + Ukaz + + + Label + ShortcutSettings| + Oznaka + + + Shortcut + ShortcutSettings| + Bližnjica + + + Defaults + ShortcutSettings| + Privzetosti + + + Import... + ShortcutSettings| + Uvozi ... + + + Export... + ShortcutSettings| + Izvozi ... + + + Key Sequence + ShortcutSettings| + Zaporedje tipk + + + Shortcut: + ShortcutSettings| + Bližnjica: + + + Reset + ShortcutSettings| + Ponastavi + + + Remove + ShortcutSettings| + Odstrani + + + Form + ShortcutSettings| + Obrazec + + + localhost:5115 + StartRemoteDialog| + localhost:5115 + + + Subversion Command: + Subversion::Internal::SettingsPage| + Ukaz Subversion: + + + User name: + Subversion::Internal::SettingsPage| + Uporabniško ime: + + + Form + Subversion::Internal::SettingsPage| + Obrazec + + + Delete + Subversion::Internal::SubversionPlugin| + Izbriši + + + Revert + Subversion::Internal::SubversionPlugin| + Povrni + + + Add %1 + Subversion::Internal::SubversionPlugin| + Dodaj %1 + + + Delete %1 + Subversion::Internal::SubversionPlugin| + Izbriši %1 + + + Revert %1 + Subversion::Internal::SubversionPlugin| + Povrni %1 + + + %1 Executing: %2 %3 + + Subversion::Internal::SubversionPlugin| + <timestamp> Executing: <executable> <arguments> + + %1 Izvajanje: %2 %3 + + + + Use Regular E&xpressions + TextEditor::BaseFileFind| + Uporabi &regularne izraze + + + In leading white space + TextEditor::BehaviorSettingsPage| + V praznini na začetku + + + Form + TextEditor::BehaviorSettingsPage| + Obrazec + + + Animate matching parentheses + TextEditor::DisplaySettingsPage| + Animiraj ujemanje oklepajev + + + Navigation + TextEditor::DisplaySettingsPage| + Navigacija + + + Enable &mouse navigation + TextEditor::DisplaySettingsPage| + Omogoči navigacijo z &miško + + + Mark text changes + TextEditor::DisplaySettingsPage| + Označi spremembe besedila + + + Form + TextEditor::DisplaySettingsPage| + Obrazec + + + Use fancy style + TextEditor::DisplaySettingsPage| + Uporabi razkošen slog + + + Font & Colors + TextEditor::FontSettingsPage| + Pisave in barve + + + Color Scheme name: + TextEditor::FontSettingsPage| + Ime barvne sheme: + + + + This is only an example. + TextEditor::FontSettingsPage| + + To je samo primer. + + + Files on Disk + TextEditor::Internal::FindInFiles| + Datoteke na disku + + + Bold + TextEditor::Internal::FontSettingsPage| + Polkrepko + + + Italic + TextEditor::Internal::FontSettingsPage| + Ležeče + + + Background: + TextEditor::Internal::FontSettingsPage| + Ozadje: + + + Foreground: + TextEditor::Internal::FontSettingsPage| + Ospredje: + + + Erase background + TextEditor::Internal::FontSettingsPage| + Počisti ozadje + + + x + TextEditor::Internal::FontSettingsPage| + x + + + Preview: + TextEditor::Internal::FontSettingsPage| + Ogled: + + + Form + TextEditor::Internal::FontSettingsPage| + Obrazec + + + Creates a text file (.txt). + TextEditor::Internal::TextEditorPlugin| + Ustvari besedilno datoteko (*.txt). + + + This creates a new text file (.txt) + TextEditor::Internal::TextEditorPlugin| + To ustvari novo datoteko z besedilom (*.txt) + + + Goto Block Start + TextEditor::TextEditorActionHandler| + Pojdi na začetek bloka + + + Goto Block End + TextEditor::TextEditorActionHandler| + Pojdi na konec bloka + + + Goto Block Start With Selection + TextEditor::TextEditorActionHandler| + Izberi do začetka bloka + + + Goto Block End With Selection + TextEditor::TextEditorActionHandler| + Izberi do konca bloka + + + Text Editor + TextEditor::TextEditorSettings| + Urejevalnik besedil + + + The check script '%1' could not be run: %2 + VCSBase::VCSBaseSubmitEditor| + Ni bilo moč zagnati skripta za preverjanje »%1«: %2 + + + A file listing user names and email addresses in a 4-column mailmap format: +name <email> alias <email> + VCSBaseSettingsPage| + Datoteka s seznamom imen in e-poštnih naslovov v formatu mailmap s 4 stolpci: +ime <e-pošta> drugo_ime <druga_e-pošta> + + + User/alias configuration file: + VCSBaseSettingsPage| + Nastavitvena datoteka: + + + User fields configuration file: + VCSBaseSettingsPage| + Nastavitvena datoteka s polji po meri: + + + Common + VCSBaseSettingsPage| + Splošno + + + Form + VCSBaseSettingsPage| + Obrazec + + + <!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;Comment&gt;</span></p></body></html> + ViewDialog| + <!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;komentar&gt;</span></p></body></html> + + + Parts to send to server + ViewDialog| + Deli, ki bodo poslani na strežnik + + + <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> + ViewDialog| + <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;komentar&gt;</p></body></html> + + + Parts to send to codepaster + ViewDialog| + Deli, ki bodo poslani na CodePaster + + + Choose the location + Utils::WizardPage| + Izberite lokacijo + + + Class name: + Utils::NewClassWidget| + Ime razreda: + + + Base class: + Utils::NewClassWidget| + Osnovni razred: + + + Header file: + Utils::NewClassWidget| + Datoteka z glavo: + + + Source file: + Utils::NewClassWidget| + Datoteka z izvorno kodo: + + + Generate form: + Utils::NewClassWidget| + Ustvari obrazec: + + + Form file: + Utils::NewClassWidget| + Datoteka z obrazcem: + + + Path: + Utils::NewClassWidget| + Pot: + + + Server Prefix: + PasteBinComSettingsWidget| + Predpona strežnika: + + + <!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;"><a href="http://pastebin.com"><span style=" text-decoration: underline; color:#0000ff;">pastebin.com</span></a><span style=" font-size:8pt;"> allows to send posts to custom subdomains (eg. qtcreator.pastebin.com). Fill in the desired prefix.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Note that the plugin will use this for posting as well as fetching.</span></p></body></html> + PasteBinComSettingsWidget| + <!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;"><a href="http://pastebin.com"><span style=" text-decoration: underline; color:#0000ff;">pastebin.com</span></a><span style=" font-size:8pt;"> omogoča pošiljati na poddomene po meri (npr. qtcreator.pastebin.com). Vnesite želeno predpono.</span></p> +<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Vedite, da bo vstavek to uporabil tako za pošiljanje kot tudi za pridobivanje.</span></p></body></html> + + + Form + Debugger::Internal::TrkOptionsWidget| + Obrazec + + + Gdb + Debugger::Internal::TrkOptionsWidget| + GDB + + + Symbian ARM gdb location: + Debugger::Internal::TrkOptionsWidget| + Lokacija GDB-ja za Symbian ARM: + + + Communication + Debugger::Internal::TrkOptionsWidget| + Komunikacija + + + Serial Port + Debugger::Internal::TrkOptionsWidget| + Zaporedna vrata + + + Bluetooth + Debugger::Internal::TrkOptionsWidget| + Bluetooth + + + Port: + Debugger::Internal::TrkOptionsWidget| + Vrata: + + + Device: + Debugger::Internal::TrkOptionsWidget| + Naprava: + + + Multiple Inheritance + Designer::Internal::CppSettingsPageWidget| + Dedovanje od večih + + + Filter: + Gitorious::Internal::GitoriousProjectWidget| + Filter: + + + Filter: + Gitorious::Internal::GitoriousRepositoryWizardPage| + Filter: + + + ... + Gitorious::Internal::GitoriousRepositoryWizardPage| + ... + + + Show side-by-side if possible + GeneralSettingsPage| + Prikaži ob strani, če je možno + + + Always show side-by-side + GeneralSettingsPage| + Vedno prikaži ob strani + + + Always start full help + GeneralSettingsPage| + Vedno zaženi polno pomoč + + + Show my home page + GeneralSettingsPage| + Prikaži mojo domačo stran + + + Show a blank page + GeneralSettingsPage| + Prikaži prazno stran + + + Show my tabs from last session + GeneralSettingsPage| + Prikaži moje zavihke iz zadnje seje + + + Home Page: + GeneralSettingsPage| + Domača stran: + + + File Types: + Locator::Internal::DirectoryFilterOptions| + Vrste datotek: + + + Refresh Interval: + Locator::Internal::SettingsWidget| + Čas med osvežitvami: + + + Save all files before Build + ProjectExplorer::Internal::ProjectExplorerSettingsPageUi| + Pred gradnjo shrani vse datoteke + + + Always build Project before Running + ProjectExplorer::Internal::ProjectExplorerSettingsPageUi| + Pred zagonom vedno zgradi projekt + + + Show Compiler Output on building + ProjectExplorer::Internal::ProjectExplorerSettingsPageUi| + Pri gradnji prikaži izhod prevajalnika + + + <i>jom</i> is a drop-in replacement for <i>nmake</i> which distributes the compilation process to multiple CPU cores. For more details, see the <a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a>. Disable it if you experience problems with your builds. + ProjectExplorer::Internal::ProjectExplorerSettingsPageUi| + <i>jom</i> je nadomestek za <i>nmake</i>, ki prevajanje porazdeli med več jedri CPE-ja. Za podrobnosti si oglejte <a href="http://qt.gitorious.org/qt-labs/jom/">domačo stran jom-a</a>. Onemogočite ga, če se med gradnjami pojavljajo težave. + + + Create New Project... + ProjectExplorer::Internal::ProjectWelcomePageWidget| + Ustvari nov projekt ... + + + Open Recent Project + ProjectExplorer::Internal::ProjectWelcomePageWidget| + Odpri nedavni projekt + + + Resume Session + ProjectExplorer::Internal::ProjectWelcomePageWidget| + Nadaljuj sejo + + + New Project... + ProjectExplorer::Internal::ProjectWelcomePageWidget| + Nov projekt ... + + + Examples not installed + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Primeri niso nameščeni + + + Open + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Odpri + + + Explore Qt Examples + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Raziščite primere za Qt + + + <b>Qt Creator - A quick tour</b> + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + <b>Qt Creator - hitri vodič</b> + + + Creating an address book + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Ustvarjanje adresarja + + + Understanding widgets + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Razumevanje gradnikov + + + Building with qmake + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Grajenje s qmake + + + Writing test cases + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Pisanje preizkusnih primerov + + + You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li><li></li><li>6 - Output</li></ul> + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Med Qt Creatorjevimi načini lahko preklapljate s <tt>Ctrl+številka</tt>:<ul><li>1 - Dobrodošli</li><li>2 - Urejanje</li><li>3 - Razhroščevanje</li><li>4 - Projekti</li><li>5 - Pomoč</li><li></li><li>6 - Izhod</li></ul> + + + If you add <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">external libraries</a>, Qt Creator will automatically offer syntax highlighting and code completion. + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Če dodate <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">zunanje knjižnice</a>, bo Qt Creator zanje samodejno ponudil poudarjanje skladnje in dokončevanje kode. + + + Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">dependencies</a> between projects. + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Znotraj seje lahko dodate <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">odvisnosti</a> med projekti. + + + You can modify the binary that is being executed when you press the <tt>Run</tt> button: Add a <tt>Custom Executable</tt> by clicking the <tt>+</tt> button in <tt>Projects -> Run Settings -> Run Configuration</tt> and then select the new target in the combo box. + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + Program, ki se zažene pri pritisku gumba <tt>Zaženi</tt>, lahko spremenite: Dodajte <tt>Izvršljivo datoteko po meri</tt>, tako da v <tt>Projekti → Nastavitve za zagon → Urejanje nastavitev za zagon</tt> kliknete gumb <tt>Dodaj</tt> in nato novi program izberete s spustnega seznama. + + + In the editor, <tt>F2</tt> toggles declaration and definition while <tt>F4</tt> toggles header file and source file. + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget| + V urejevalniku <tt>F2</tt> preklopi med deklaracijo in definicijo, medtem ko <tt>F4</tt> preklopi med datoteko z glavo in datoteko z izvorno kodo. + + + Installed S60 SDKs: + Qt4ProjectManager::Internal::S60DevicesPreferencePane| + Nameščeni S60 SDK-ji: + + + SDK Location + Qt4ProjectManager::Internal::S60DevicesPreferencePane| + Lokacija SDK-ja + + + Qt Location + Qt4ProjectManager::Internal::S60DevicesPreferencePane| + Lokacija Qt + + + Qt Websites + Welcome::Internal::CommunityWelcomePageWidget| + Spletne strani o Qt + + + Qt Home + Welcome::Internal::CommunityWelcomePageWidget| + Domača stran Qt + + + Qt Labs + Welcome::Internal::CommunityWelcomePageWidget| + Qt Labs + + + Qt Git Hosting + Welcome::Internal::CommunityWelcomePageWidget| + Gostovanje Git za Qt + + + Qt Centre + Welcome::Internal::CommunityWelcomePageWidget| + Qt Centre + + + Qt Apps + Welcome::Internal::CommunityWelcomePageWidget| + Qt Apps + + + Qt for Symbian at Forum Nokia + Welcome::Internal::CommunityWelcomePageWidget| + Qt za Symbian na Forum Nokia + + + #gradientWidget { + background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); +} + Welcome::WelcomeMode| + #gradientWidget { + background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); +} + + + Show Details + Utils::DetailsButton| + Prikaži podrobnosti + + + The name must not be empty + Utils::FileNameValidatingLineEdit| + Ime ne sme biti prazno + + + The name must not contain any of the characters '%1'. + Utils::FileNameValidatingLineEdit| + Ime ne sme vsebovati nobenega izmed znakov »%1«. + + + The name must not contain '%1'. + Utils::FileNameValidatingLineEdit| + Ime ne sme vsebovati »%1«. + + + The name must not match that of a MS Windows device. (%1). + Utils::FileNameValidatingLineEdit| + Ime se ne sme ujemati z imenom diska v MS Windows. (%1). + + + Choose a directory + Utils::PathChooser| + Izberite mapo + + + Choose a file + Utils::PathChooser| + Izberite datoteko + + + Delete line + Utils::PathListEditor| + Izbriši vrstico + + + The name must not contain the '.'-character. + Utils::ProjectNameValidatingLineEdit| + Ime ne sme vsebovati znaka ».«. + + + The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? + Utils::reloadPrompt| + Neshranjena datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova in zavreči vse svoje spremembe? + + + The file %1 has changed outside Qt Creator. Do you want to reload it? + Utils::reloadPrompt| + Datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova? + + + Clear system environment + CMakeProjectManager::Internal::CMakeBuildEnvironmentWidget| + Počisti sistemsko okolje + + + Build Environment + CMakeProjectManager::Internal::CMakeBuildEnvironmentWidget| + Okolje za gradnjo + + + Select the working directory + CMakeProjectManager::Internal::CMakeRunConfigurationWidget| + Izberite delovno mapo + + + Running executable: <b>%1</b> %2 + CMakeProjectManager::Internal::CMakeRunConfigurationWidget| + Zaganjanje programa: <b>%1</b> %2 + + + No Server defined in the CodePaster preferences! + CodePaster::CodePasterProtocol| + V nastavitvah za CodePaster ni določenega nobenega strežnika. + + + No Server defined in the CodePaster options! + CodePaster::CodePasterProtocol| + V možnostih za CodePaster ni določenega nobenega strežnika. + + + Code Pasting + CodePaster::CodePasterSettingsPage| + Prilepljanje kode + + + Error during paste + PasteBinDotComProtocol| + Napaka med prilepljanjem + + + Pastebin.com + PasteBinDotComSettings| + Pastebin.com + + + Code Pasting + PasteBinDotComSettings| + Prilepljanje kode + + + Paste + PasteView| + Prilepi + + + <Username> + PasteView| + <uporabniško ime> + + + <Description> + PasteView| + <opis> + + + <Comment> + PasteView| + <komentar> + + + Choose a location for the new license template file + CppTools::Internal::CppFileSettingsWidget| + Izberite lokacijo za novo datoteko s predlogo licence + + + Searching... + CppTools::Internal::CppFindReferences| + Iskanje ... + + + Revert + CVS::Internal::CVSPlugin| + Povrni + + + Reset Debugger + Debugger::DebuggerManager| + Ponastavi razhroščevalnik + + + Stopped. + Debugger::DebuggerManager| + Ustavljeno. + + + Exited. + Debugger::DebuggerManager| + Končano. + + + Error Loading Symbols + Debugger::Internal::CoreGdbAdapter| + Napaka pri nalaganju simbolov + + + No executable to load symbols from specified. + Debugger::Internal::CoreGdbAdapter| + Določenega ni nobenega programa za nalaganje simbolov. + + + Symbols found. + Debugger::Internal::CoreGdbAdapter| + Simboli najdeni. + + + Loading symbols from "%1" failed: + + Debugger::Internal::CoreGdbAdapter| + Nalaganje simbolov iz »%1« ni uspelo: + + + + Attached to core temporarily. + Debugger::Internal::CoreGdbAdapter| + Začasno priklopljen na jedro. + + + Unable to determine executable from core file. + Debugger::Internal::CoreGdbAdapter| + Iz posnetka ni moč ugotoviti izvršljive datoteke. + + + Attached to core. + Debugger::Internal::CoreGdbAdapter| + Priklopljen na posnetek. + + + Attach to core "%1" failed: + + Debugger::Internal::CoreGdbAdapter| + Priklop na posnetek »%1« ni uspel: + + + + Cannot set up communication with child process: %1 + Debugger::Internal::PlainGdbAdapter| + Ni moč vzpostaviti komunikacije s podprocesom: %1 + + + Starting executable failed: + + Debugger::Internal::PlainGdbAdapter| + Zaganjanje izvršljive datoteke ni uspelo: + + + + The upload process failed to start. Shell missing? + Debugger::Internal::RemoteGdbAdapter| + Proces pošiljanja se ni uspel zagnati. Morda manjka lupina? + + + The upload process crashed some time after starting successfully. + Debugger::Internal::RemoteGdbAdapter| + Proces pošiljanja se je nekaj časa po uspešnem zagonu sesul. + + + The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. + Debugger::Internal::RemoteGdbAdapter| + Potekel je čas za zadnjo funkcijo waitFor...(). Stanje QProcessa se ni spremenilo. Znova lahko poskusite klicati 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. + Debugger::Internal::RemoteGdbAdapter| + Med pisanjem v proces pošiljanja je prišlo do napake. Proces morda ne teče, ali pa je morda zaprl svoj vhodni kanal. + + + An error occurred when attempting to read from the upload process. For example, the process may not be running. + Debugger::Internal::RemoteGdbAdapter| + Med branjem iz procesa pošiljanja je prišlo do napake. Proces morda ne teče. + + + An unknown error in the upload process occurred. This is the default return value of error(). + Debugger::Internal::RemoteGdbAdapter| + Prišlo je do neznane napake v procesu pošiljanja. To je privzeta vrnjena vrednost funkcije error(). + + + Error + Debugger::Internal::RemoteGdbAdapter| + Napaka + + + Adapter too old: does not support asynchronous mode. + Debugger::Internal::RemoteGdbAdapter| + Prilagojevalnik je prestar: ne podpira asinhronega načina. + + + Starting remote executable failed: + + Debugger::Internal::RemoteGdbAdapter| + Zaganjanje oddaljene izvršljive datoteke ni uspelo: + + + + Debugger Error + Debugger::Internal::TermGdbAdapter| + Napaka razhroščevalnika + + + No Symbian gdb executable specified. + TrkOptions| + Določenega ni nobenega programa GDB za Symbian. + + + The Symbian gdb executable '%1' could not be found in the search path. + TrkOptions| + Programa GDB za Symbian »%1« ni bilo moč najti v poti iskanja. + + + Symbian Trk + Debugger::Internal::TrkOptionsPage| + Symbian Trk + + + Clones a project from a git repository. + Git::Internal::CloneWizard| + Klonira projekt iz skladišča Git. + + + Clones a project from a Gitorious repository. + Gitorious::Internal::GitoriousCloneWizard| + Klonira projekt iz skladišča Gitorious. + + + General settings + Help::Internal::GeneralSettingsPage| + Splošne nastavitve + + + Help + Help::Internal::GeneralSettingsPage| + Pomoč + + + Choose a directory to add + Locator::Internal::DirectoryFilter| + Izberite mapo za dodati + + + %1 (Prefix: %2) + Locator::Internal::SettingsPage| + %1 (predpona: %2) + + + Active run configuration + ProjectExplorer::Internal::ActiveConfigurationWidget| + Aktivne nastavitve za zagon + + + Edit Project Settings for Project <b>%1</b> + ProjectExplorer::Internal::ProjectLabel| + Urejanje projektnih nastavitev za projekt <b>%1</b> + + + No Project loaded + ProjectExplorer::Internal::ProjectLabel| + Naložen ni noben projekt + + + Select Project + ProjectExplorer::Internal::ProjectPushButton| + Izberite projekt + + + <Select Symbol> + QmlEditor::Internal::ScriptEditor| + <izberite simbol> + + + Rename... + QmlEditor::Internal::ScriptEditor| + Preimenuj ... + + + New id: + QmlEditor::Internal::ScriptEditor| + Novi ID: + + + Rename id '%1'... + QmlEditor::Internal::ScriptEditor| + Preimenuj ID »%1« ... + + + Qt + QmlEditor::Internal::QmlEditorPlugin| + Qt + + + Creates a Qt QML file. + QmlEditor::Internal::QmlEditorPlugin| + Ustvari datoteko Qt QML. + + + Qt QML File + QmlEditor::Internal::QmlEditorPlugin| + Datoteka Qt QML + + + Indexing + QmlEditor::Internal::QmlModelManager| + Indeksiranje + + + <b>QML Make</b> + QmlProjectManager::Internal::QmlMakeStepConfigWidget| + <b>QML Make</b> + + + Qt4 Designer Custom Widget + Qt4ProjectManager::Internal::CustomWidgetWizard| + Gradnik po meri za Qt Designer + + + Creates a Qt4 Designer Custom Widget or a Custom Widget Collection. + Qt4ProjectManager::Internal::CustomWidgetWizard| + Ustvari projekt gradnika po meri ali pa zbirke gradnikov po meri za Qt Designer. + + + Could not parse %1. The QtS60 Device run configuration %2 can not be started. + Qt4ProjectManager::Internal::S60DeviceRunConfiguration| + Ni bilo moč razčleniti %1. Nastavitev za zagon na napravi QtS60 %2 ni moč zagnati. + + + Creating %1.sisx ... + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + Ustvarjanje %1.sisx ... + + + %1 %2 + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + %1 %2 + + + Could not read template package file '%1' + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + Ni bilo moč prebrati datoteke s predlogo paketa »%1« + + + Could not write package file '%1' + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + Ni bilo moč zapisati datoteke paketa »%1« + + + An error occurred while creating the package. + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + Med ustvarjanjem paketa je prišlo do napake. + + + Could not connect to phone on port '%1': %2 +Check if the phone is connected and the TRK application is running. + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + Ni se bilo moč povezati s telefonom na vratih »%1«: %2 +Preverite, ali je telefon povezan in ali program TRK teče. + + + Copying install file... + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + Kopiranje namestitvene datoteke ... + + + %1% copied. + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + %1 % skopirano. + + + Failed to start %1. + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + Zagon %1 ni uspel. + + + %1 has unexpectedly finished. + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + %1 je nepričakovano končal. + + + An error has occurred while running %1. + Qt4ProjectManager::Internal::S60DeviceRunControlBase| + Pri zaganjanju %1 je prišlo do napake. + + + Install File: + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Namesti datoteko: + + + Device on Serial Port: + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Naprava na zaporednih vratih: + + + Self-signed certificate + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Samo-podpisano potrdilo + + + Choose certificate file (.cer) + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Izberite datoteko s potrdilom (*.cer) + + + Custom certificate: + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Potrdilo po meri: + + + Choose key file (.key / .pem) + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Izberite datoteko s ključem (*.key / *.pem) + + + Key file: + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Datoteka s ključem: + + + <No Device> + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Summary text of S60 device run configuration + + <brez naprave> + + + (custom certificate) + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + (potrdilo po meri) + + + (self-signed certificate) + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + (samo-podpisano potrdilo) + + + Summary: Run on '%1' %2 + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Povzetek: zaženi na »%1« %2 + + + A timeout occurred while querying the device. Check whether Trk is running + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget| + Med poizvedovanjem pri napravi je potekel čas. Preverite, ali Trk teče. + + + No Qt installed + Qt4ProjectManager::Internal::S60DevicesWidget| + Nameščen ni noben Qt + + + Could not parse %1. The Qt for Symbian emulator run configuration %2 can not be started. + Qt4ProjectManager::Internal::S60EmulatorRunConfiguration| + Ni bilo moč razčleniti %1. Nastavitev za zagon Qt za emulator Symbian %2 ni moč zagnati. + + + Summary: Run %1 in emulator + Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget| + Povzetek: zaženi %1 v emulatorju + + + Using Default Qt Version + Qt4ProjectManager::Qt4BuildConfigurationFactory| + Uporablja privzeto različico Qt + + + Using Qt Version "%1" + Qt4ProjectManager::Qt4BuildConfigurationFactory| + Uporablja Qt različice »%1« + + + New configuration + Qt4ProjectManager::Qt4BuildConfigurationFactory| + Nova nastavitev + + + New Configuration Name: + Qt4ProjectManager::Qt4BuildConfigurationFactory| + Ime nove nastavitve: + + + %1 Debug + Qt4ProjectManager::Qt4BuildConfigurationFactory| + %1, za razhroščevanje - - - VCSBase::Internal::CheckoutProgressWizardPage - - Checkout started... - + %1 Release + Qt4ProjectManager::Qt4BuildConfigurationFactory| + %1, za izdajo - - Failed. - Neuspeh. + QtCore Module + QtModulesInfo| + Modul QtCore - - Succeeded. - Uspeh. + QtGui Module + QtModulesInfo| + Modul QtGui - - - VCSBase::VCSBaseOutputWindow - - Clear - Počisti + QtNetwork Module + QtModulesInfo| + Modul QtNetwork - - Version Control - Nadzor različic + QtOpenGL Module + QtModulesInfo| + Modul QtOpenGL - - - Welcome::Internal::CommunityWelcomePage - - Community - Skupnost + QtSql Module + QtModulesInfo| + Modul QtSql - - - trk::BluetoothListener - - %1: Stopping listener %2... - %1: ustavljanje poslušalca %2 ... + QtScript Module + QtModulesInfo| + Modul QtScript - - %1: Starting Bluetooth listener %2... - %1: zaganjanje poslušalca Bluetooth %2 ... + QtScriptTools Module + QtModulesInfo| + Modul QtScriptTools - - Unable to run '%1': %2 - Ni moč zagnati »%1«: %2 + QtSvg Module + QtModulesInfo| + Modul QtSvg - - %1: Bluetooth listener running (%2). - %1: poslušalec Bluetooth teče (%2). + QtWebKit Module + QtModulesInfo| + Modul QtWebKit - - %1: Process %2 terminated with exit code %3. - %1: proces %2 se je končal z izhodno kodo %3. + QtXml Module + QtModulesInfo| + Modul QtXml - - %1: Process %2 crashed. - %1: proces %2 se je sesul. + QtXmlPatterns Module + QtModulesInfo| + Modul QtXmlPatterns - - %1: Process error %2: %3 - %1: napaka procesa %2: %3 + Phonon Module + QtModulesInfo| + Modul Phonon - - - trk::promptStartCommunication - - Connection on %1 canceled. - Povezava z %1 je bila preklicana. + QtMultimedia Module + QtModulesInfo| + Modul QtMultimedia - - Waiting for TRK - Čakanje na TRK + Qt3Support Module + QtModulesInfo| + Modul Qt3Support - - Waiting for TRK to start on %1... - Čakanje na zagon TRK na %1 ... + QtTest Module + QtModulesInfo| + Modul QtTest - - Waiting for Bluetooth Connection - Čakanje na povezavo Bluetooth + QtDBus Module + QtModulesInfo| + Modul QtDBus - - Connecting to %1... - Povezovanje z %1 ... - - - - trk::BaseCommunicationStarter - - - %1: timed out after %n attempts using an interval of %2ms. - - %1: čas je potekel po %n poskusu z uporabo intervala %2 ms. - %1: čas je potekel po %n poskusih z uporabo intervala %2 ms. - %1: čas je potekel po %n poskusih z uporabo intervala %2 ms. - %1: čas je potekel po %n poskusih z uporabo intervala %2 ms. - + Community + Welcome::Internal::CommunityWelcomePage| + Skupnost - - %1: Connection attempt %2 succeeded. - %1: %2. poskus povezovanja je uspel. + Waiting for TRK + trk::promptStartCommunication| + Čakanje na TRK - - %1: Connection attempt %2 failed: %3 (retrying)... - %1: %2. poskus povezovanja ni uspel: %3 (ponovno poskušanje) ... + Waiting for TRK to start on %1... + trk::promptStartCommunication| + Čakanje na zagon TRK na %1 ... - - - AttachTcfDialog - Start Debugger + AttachTcfDialog| Zaženi razhroščevalnik - Host and port: + AttachTcfDialog| Gostitelj in vrata: - Architecture: + AttachTcfDialog| Arhitektura: - Use server start script: + AttachTcfDialog| Uporabi skript za zagon strežnika: - Server start script: + AttachTcfDialog| Skript za zagon strežnika: - localhost:5115 + AttachTcfDialog| localhost:5115 - - - CMakeProjectManager::Internal::CMakeRunConfiguration - Arguments: + CMakeProjectManager::Internal::CMakeRunConfiguration| Argumenti: - - - CMakeProjectManager::Internal::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. + CMakeProjectManager::Internal::XmlFileUpToDatePage| Qt Creator je našel datoteko *.cbp in jo bo razčlenil, da zbere podatke o projektu. Argumente za ukazno vrstico, ki se uporabi za ustvaritev te datoteke, lahko spremenite v projektnem načinu. Da naložite projekt, kliknite »Zaključi«. - 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 + CMakeProjectManager::Internal::XmlFileUpToDatePage| Qt Creator je našel datoteko *.cbp in jo bo razčlenil, da zbere podatke o projektu. Argumente za ukazno vrstico, ki se uporabi za ustvaritev te datoteke, lahko spremenite v projektnem načinu. Da naložite projekt, kliknite »Zaključi«. - - - CodePaster::CustomFetcher - CodePaster Error + CodePaster::CustomFetcher| Napaka CodePasterja - Could not fetch code + CodePaster::CustomFetcher| Ni bilo moč dobiti kode - - - CodePaster::CustomPoster - CodePaster Error + CodePaster::CustomPoster| Napaka CodePasterja - Some error occured while posting + CodePaster::CustomPoster| Med objavljanjem je prišlo do napake - - - Core::Internal::WelcomeMode - http://labs.trolltech.com/blogs/feed + Core::Internal::WelcomeMode| Add localized feed here only if one exists http://labs.trolltech.com/blogs/feed - Qt Labs + Core::Internal::WelcomeMode| Qt Labs - Qt Git Hosting + Core::Internal::WelcomeMode| Gostovanje Git za Qt - Qt Centre + Core::Internal::WelcomeMode| Qt Centre - Qt/S60 at Forum Nokia + Core::Internal::WelcomeMode| Qt/S60 na Forum Nokia - Qt Creator - A quick tour + Core::Internal::WelcomeMode| Qt Creator - hitri vodič - Understanding widgets + Core::Internal::WelcomeMode| Razumevanje gradnikov - Creating an address book + Core::Internal::WelcomeMode| Ustvarjanje adresarja - Building with qmake + Core::Internal::WelcomeMode| Grajenje s qmake - Writing test cases + Core::Internal::WelcomeMode| Pisanje preizkusnih primerov - Welcome + Core::Internal::WelcomeMode| Dobrodošli - %1 (last session) + Core::Internal::WelcomeMode| %1 (zadnja seja) - You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ol><li> - Welcome</li><li> - Edit</li><li>- Debug</li><li>- Projects</li><li>- Help</li><li></li><li>- Output</li></ol> + Core::Internal::WelcomeMode| Med Qt Creatorjevimi načini čahko preklapljate s <tt>Ctrl+številka</tt>:<ol><li> - Dobrodošli</li><li> - Urejanje</li><li> - Razhroščevanje</li><li> - Projekti</li><li> - Pomoč</li><li></li><li> - Izhod</li></ol> - You can show and hide the side bar using <tt>Alt+0<tt>. + Core::Internal::WelcomeMode| Stranski pas lahko prikažete in skrijete z <tt>Alt+0<tt>. - You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. + Core::Internal::WelcomeMode| <tt>Iskanje</tt> lahko nastavljate z izbiro možnosti &quot;Cele besede&quot; ali &quot;Občutljivo na velikost&quot;. Za to kliknite na ikono, ki je na desni strani iskalnega polja. - If you add <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">external libraries</a>, Qt Creator will automatically offer syntax highlighting and code completion. + Core::Internal::WelcomeMode| Če dodate <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">zunanje knjižnice</a>, bo Qt Creator zanje samodejno ponudil poudarjanje skladnje in dokončevanje kode. - - - Core::Internal::WelcomePage - * { border-image: url(:/core/images/welcomemode/btn_26.png) 7; border-width: 7; @@ -17551,6 +24089,7 @@ Preverite, ali je telefon povezan in ali program TRK teče. color: white; } + Core::Internal::WelcomePage| * { border-image: url(:/core/images/welcomemode/btn_26.png) 7; border-width: 7; @@ -17567,12 +24106,11 @@ Preverite, ali je telefon povezan in ali program TRK teče. - <qt>Restore Last Session &gt;&gt; + Core::Internal::WelcomePage| <qt>Obnovi zadnjo sejo &gt;&gt; - * { border-image: url(:/core/images/welcomemode/btn_26.png) 7; border-width: 7; @@ -17586,6 +24124,7 @@ Preverite, ali je telefon povezan in ali program TRK teče. color: white; } + Core::Internal::WelcomePage| * { border-image: url(:/core/images/welcomemode/btn_26.png) 7; border-width: 7; @@ -17601,40 +24140,40 @@ Preverite, ali je telefon povezan in ali program TRK teče. - <qt>Feedback&nbsp;&nbsp;<img src=":/core/images/welcomemode/feedback_arrow.png" /> + Core::Internal::WelcomePage| <qt>Komentarji &nbsp;&nbsp;<img src=":/core/images/welcomemode/feedback_arrow.png" /> - Help us make Qt Creator even better + Core::Internal::WelcomePage| Pomagajte nam še izboljšati Qt Creatorja - #Core--Internal--WelcomePage { background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); } + Core::Internal::WelcomePage| #Core--Internal--WelcomePage { background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); } - #gradientWidget { background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); } + Core::Internal::WelcomePage| #gradientWidget { background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 rgba(247, 247, 247, 255), stop:1 rgba(215, 215, 215, 255)); } - #headerFrame { border-image: url(:/core/images/welcomemode/center_frame_header.png) 0; border-width: 0; } + Core::Internal::WelcomePage| #headerFrame { border-image: url(:/core/images/welcomemode/center_frame_header.png) 0; border-width: 0; @@ -17642,37 +24181,36 @@ background-color: qlineargradient(spread:pad, x1:0.5, y1:0, x2:0.5, y2:1, stop:0 - Getting Started + Core::Internal::WelcomePage| Kako začeti - Develop + Core::Internal::WelcomePage| Razvoj - Community + Core::Internal::WelcomePage| Skupnost - Open + Core::Internal::WelcomePage| Odpri - < + Core::Internal::WelcomePage| < - > + Core::Internal::WelcomePage| > - <style> h1 { font-size: 24px; @@ -17696,6 +24234,7 @@ p { <p><strong>Started</strong> to begin developing with Qt Creator.</p> <hr style="margin-top:15px"/> + Core::Internal::WelcomePage| <style> h1 { font-size: 24px; @@ -17721,7 +24260,6 @@ p { - * { border-image: url(:/core/images/welcomemode/btn_27.png) 7; border-width: 7; @@ -17736,6 +24274,7 @@ p { color: white; } + Core::Internal::WelcomePage| * { border-image: url(:/core/images/welcomemode/btn_27.png) 7; border-width: 7; @@ -17752,17 +24291,17 @@ p { - <qt>Getting Started &gt;&gt; + Core::Internal::WelcomePage| <qt>Začetek &gt;&gt; - #recentSessionsFrame { border-image: url(:/core/images/welcomemode/rc_combined.png) 8; border-width: 8; } + Core::Internal::WelcomePage| #recentSessionsFrame { border-image: url(:/core/images/welcomemode/rc_combined.png) 8; border-width: 8; @@ -17770,126 +24309,114 @@ p { - #bottomWidget { background-image: url(:/core/images/welcomemode/feedback-bar-background.png); } + Core::Internal::WelcomePage| #bottomWidget { background-image: url(:/core/images/welcomemode/feedback-bar-background.png); } - - - Core::Utils::ClassNameValidatingLineEdit - The class name must not contain namespace delimiters. + Core::Utils::ClassNameValidatingLineEdit| Ime razreda ne sme vsebovati ločiteljev imenskega prostora. - Please enter a class name. + Core::Utils::ClassNameValidatingLineEdit| Vnesite ime razreda. - The class name contains invalid characters. + Core::Utils::ClassNameValidatingLineEdit| Ime razreda vsebuje neveljavne znake. - - - Core::Utils::ConsoleProcess - Cannot set up communication channel: %1 + Core::Utils::ConsoleProcess| Ni moč vzpostaviti komunikacijskega kanala: %1 - Cannot create temporary file: %1 + Core::Utils::ConsoleProcess| Ni moč ustvariti začasne datoteke: %1 - Press <RETURN> to close this window... + Core::Utils::ConsoleProcess| Da zaprete to okno, pritisnite <Vnašalko> ... - Cannot start the terminal emulator '%1'. + Core::Utils::ConsoleProcess| Ni moč zagnati emulatorja konzole »%1«. - Cannot create temporary directory '%1': %2 + Core::Utils::ConsoleProcess| Ni moč ustvariti začasne mape »%1«: %2 - Cannot create socket '%1': %2 + Core::Utils::ConsoleProcess| Ni moč ustvariti vtičnice »%1«: %2 - Cannot change to working directory '%1': %2 + Core::Utils::ConsoleProcess| Ni se moč premakniti v delovno mapo »%1«: %2 - Cannot execute '%1': %2 + Core::Utils::ConsoleProcess| Ni moč zagnati »%1«: %2 - Unexpected output from helper program. + Core::Utils::ConsoleProcess| Nepričakovan izhod od pomožnega programa. - The process '%1' could not be started: %2 + Core::Utils::ConsoleProcess| Procesa »%1« ni bilo moč zagnati: %2 - Cannot obtain a handle to the inferior: %1 + Core::Utils::ConsoleProcess| Ni moč dobiti reference za podproces: %1 - Cannot obtain exit status from inferior: %1 + Core::Utils::ConsoleProcess| Ni moč dobiti izhodnega stanja od podprocesa: %1 - - - Core::Utils::FileNameValidatingLineEdit - The name must not be empty + Core::Utils::FileNameValidatingLineEdit| Ime ne sme biti prazno - The name must not contain any of the characters '%1'. + Core::Utils::FileNameValidatingLineEdit| Ime ne sme vsebovati nobenega izmed znakov »%1«. - The name must not contain '%1'. + Core::Utils::FileNameValidatingLineEdit| Ime ne sme vsebovati »%1«. - The name must not match that of a MS Windows device. (%1). + Core::Utils::FileNameValidatingLineEdit| Ime se ne sme ujemati z imenom diska v MS Windows. (%1). - - - Core::Utils::FileSearch - %1: canceled. %n occurrences found in %2 files. + Core::Utils::FileSearch| %1: preklicano. Najdena %n pojavitev v %2 datotekah. %1: preklicano. Najdeni %n pojavitvi v %2 datotekah. @@ -17898,8 +24425,8 @@ p { - %1: %n occurrences found in %2 files. + Core::Utils::FileSearch| %1: najdena %n pojavitev v %2 datotekah. %1: najdeni %n pojavitvi v %2 datotekah. @@ -17908,8 +24435,8 @@ p { - %1: %n occurrences found in %2 of %3 files. + Core::Utils::FileSearch| %1: najdena %n pojavitev v %2 od %3 datotek. %1: najdeni %n pojavitvi v %2 od %3 datotek. @@ -17917,999 +24444,875 @@ p { %1: najdenih %n pojavitev v %2 od %3 datotek. - - - Core::Utils::NewClassWidget - Invalid base class name + Core::Utils::NewClassWidget| Neveljavno ime osnovnega razreda - Invalid header file name: '%1' + Core::Utils::NewClassWidget| Neveljavno ime datoteke z glavo: »%1« - Invalid source file name: '%1' + Core::Utils::NewClassWidget| Neveljavno ime datoteke z izvorno kodo: »%1« - Invalid form file name: '%1' + Core::Utils::NewClassWidget| Neveljavno ime datoteke z obrazcem: »%1« - Class name: + Core::Utils::NewClassWidget| Ime razreda: - Base class: + Core::Utils::NewClassWidget| Osnovni razred: - Header file: + Core::Utils::NewClassWidget| Datoteka z glavo: - Source file: + Core::Utils::NewClassWidget| Datoteka z izvorno kodo: - Generate form: + Core::Utils::NewClassWidget| Ustvari iz: - Form file: + Core::Utils::NewClassWidget| Datoteka z obrazcem: - Path: + Core::Utils::NewClassWidget| Pot: - Dialog + Core::Utils::NewClassWidget| Pogovorno okno - - - Core::Utils::PathChooser - Choose... + Core::Utils::PathChooser| Izbor ... - Browse... + Core::Utils::PathChooser| Brskanje ... - Choose a directory + Core::Utils::PathChooser| Izberite mapo - Choose a file + Core::Utils::PathChooser| Izberite datoteko - The path must not be empty. + Core::Utils::PathChooser| Pot ne sme biti prazna. - The path '%1' does not exist. + Core::Utils::PathChooser| Pot »%1« ne obstaja. - The path '%1' is not a directory. + Core::Utils::PathChooser| Pot »%1« ni mapa. - The path '%1' is not a file. + Core::Utils::PathChooser| Pot »%1« ni datoteka. - Path: + Core::Utils::PathChooser| Pot: - - - Core::Utils::PathListEditor - Insert... + Core::Utils::PathListEditor| Vstavi ... - Add... + Core::Utils::PathListEditor| Dodaj ... - Delete line + Core::Utils::PathListEditor| Izbriši vrstico - Clear + Core::Utils::PathListEditor| Počisti - From "%1" + Core::Utils::PathListEditor| Iz »%1« - - - Core::Utils::ProjectIntroPage - <Enter_Name> + Core::Utils::ProjectIntroPage| <vnesite ime> - The project already exists. + Core::Utils::ProjectIntroPage| Projekt že obstaja. - A file with that name already exists. + Core::Utils::ProjectIntroPage| Datoteka s tem imenom že obstaja. - Introduction and project location + Core::Utils::ProjectIntroPage| Uvod in lokacija projekta - Name: + Core::Utils::ProjectIntroPage| Ime: - Create in: + Core::Utils::ProjectIntroPage| Ustvari v: - WizardPage + Core::Utils::ProjectIntroPage| StranČarovnika - TextLabel + Core::Utils::ProjectIntroPage| BesedilaOznaka - - - Core::Utils::ProjectNameValidatingLineEdit - The name must not contain the '.'-character. + Core::Utils::ProjectNameValidatingLineEdit| Ime ne sme vsebovati znaka ».«. - - - Core::Utils::SubmitEditorWidget - Des&cription + Core::Utils::SubmitEditorWidget| &Opis - F&iles + Core::Utils::SubmitEditorWidget| &Datoteke - - - Core::Utils::WizardPage - Choose the location + Core::Utils::WizardPage| Izberite lokacijo - Name: + Core::Utils::WizardPage| Ime: - Path: + Core::Utils::WizardPage| Pot: - WizardPage + Core::Utils::WizardPage| StranČarovnika - - - Core::Utils::reloadPrompt - File Changed + Core::Utils::reloadPrompt| Datoteka spremenjena - The file %1 has changed outside Qt Creator. Do you want to reload it? + Core::Utils::reloadPrompt| Datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova? - - - CppTools::Internal::CppQuickOpenFilter - Classes and Methods + CppTools::Internal::CppQuickOpenFilter| Razredi in metode - - - Debugger::Internal::AttachTcfDialog - Select Executable + Debugger::Internal::AttachTcfDialog| Izberite izvršljivo datoteko - - - Debugger::Internal::DebuggerManager - Continue + Debugger::Internal::DebuggerManager| Nadaljuj - Interrupt + Debugger::Internal::DebuggerManager| Prekini - Reset Debugger + Debugger::Internal::DebuggerManager| Ponastavi razhroščevalnik - Step Over + Debugger::Internal::DebuggerManager| Preskoči - Step Into + Debugger::Internal::DebuggerManager| Vstopi - Step Over Instruction + Debugger::Internal::DebuggerManager| Preskoči ukaz - Step One Instruction + Debugger::Internal::DebuggerManager| Stopi za en ukaz naprej - Step Out + Debugger::Internal::DebuggerManager| Izstopi - Run to Line + Debugger::Internal::DebuggerManager| Zaženi do vrstice - Run to Outermost Function + Debugger::Internal::DebuggerManager| Zaženi do najbolj zunanje funkcije - Jump to Line + Debugger::Internal::DebuggerManager| Skoči do vrstice - Toggle Breakpoint + Debugger::Internal::DebuggerManager| Preklopi prekinitveno točko - Set Breakpoint at Function... + Debugger::Internal::DebuggerManager| Nastavi prekinitveno točko pri funkciji ... - Set Breakpoint at Function "main" + Debugger::Internal::DebuggerManager| Nastavi prekinitveno točko pri funkciji »main« - Add to Watch Window + Debugger::Internal::DebuggerManager| Dodaj v opazovalno okno - Stop requested... + Debugger::Internal::DebuggerManager| Zahtevanje ustavitve ... - Stopped. + Debugger::Internal::DebuggerManager| Ustavljen. - Running requested... + Debugger::Internal::DebuggerManager| Zahtevanje zagona ... - Running... + Debugger::Internal::DebuggerManager| Teče ... - Changing breakpoint state requires either a fully running or fully stopped application. + Debugger::Internal::DebuggerManager| Za spreminjanje stanja prekinitvene točke je potreben bodisi povsem zagnan bodisi povsem ustavljen program. - Debugging VS executables is not supported. + Debugger::Internal::DebuggerManager| Razhroščevanje izvršljivih datotek zgrajenih z Visual Studio ni podprto. - Warning + Debugger::Internal::DebuggerManager| Opozorilo - Cannot attach to PID 0 + Debugger::Internal::DebuggerManager| Ni se moč priklopiti na PID 0 - Cannot debug '%1': %2 + Debugger::Internal::DebuggerManager| Ni moč razhroščevati »%1«: %2 - Save Debugger Log + Debugger::Internal::DebuggerManager| Shrani dnevnik razhroščevalnika - Stop Debugger + Debugger::Internal::DebuggerManager| Ustavi razhroščevalnik - Open Qt preferences + Debugger::Internal::DebuggerManager| Odpri nastavitve Qt - Turn helper usage off + Debugger::Internal::DebuggerManager| Izklopi uporabo pomočnika - Continue anyway + Debugger::Internal::DebuggerManager| Vseeno nadaljuj - Debugging helper missing + Debugger::Internal::DebuggerManager| Razhroščevalni pomočnik manjka - The debugger did not find the debugging helper library. + Debugger::Internal::DebuggerManager| Razhroščevalnik ni našel knjižnice razhroščevalnega pomočnika. - The debugging helper is used to nicely format the values of Qt data types and some STL data types. It must be compiled for each Qt version which you can do in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' for the debugging helper. + Debugger::Internal::DebuggerManager| Razhroščevalni pomočnik se uporablja za lepo oblikovanje vrednosti podatkovnih vrst Qt in nekaterih podatkovnih vrst STL. Preveden mora biti za vsako različico Qt posebaj. To lahko storite iz nastavitev Qt, kjer izberete namestitev Qt in za razhroščevalnega pomočnika kliknete »Znova zgradi«. - Start and Debug External Application... + Debugger::Internal::DebuggerManager| Zaženi in razhroščuj zunanji program ... - Attach to Running External Application... + Debugger::Internal::DebuggerManager| Priklopi se na zagnan zunanji program ... - Attach to Core... + Debugger::Internal::DebuggerManager| Priklopi se na posnetek ... - The debugging helper is used to nicely format the values of Qt data types and some STL data types. It must be compiled for each Qt version, you can do this in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' for the debugging helper. + Debugger::Internal::DebuggerManager| Razhroščevalni pomočnik se uporablja za lepo oblikovanje vrednosti podatkovnih vrst Qt in nekaterih podatkovnih vrst STL. Preveden mora biti za vsako različico Qt posebaj. To lahko storite iz nastavitev Qt, kjer izberete namestitev Qt in za razhroščevalnega pomočnika kliknete »Znova zgradi«. - - - Debugger::Internal::DebuggerRunner - Debug + Debugger::Internal::DebuggerRunner| Razhroščevanje - - - Debugger::Internal::DisassemblerHandler - Address + Debugger::Internal::DisassemblerHandler| Naslov - Symbol + Debugger::Internal::DisassemblerHandler| Simbol - Mnemonic + Debugger::Internal::DisassemblerHandler| Mnemonik - - - Debugger::Internal::DisassemblerWindow - Disassembler + Debugger::Internal::DisassemblerWindow| Razstavljalnik - Adjust column widths to contents + Debugger::Internal::DisassemblerWindow| Širine stolpcev prilagodi vsebinam - Always adjust column widths to contents + Debugger::Internal::DisassemblerWindow| Širine stolpcev vedno prilagodi vsebinam - Reload disassembler listing + Debugger::Internal::DisassemblerWindow| Znova naloži seznam razstavljalnika - Always reload disassembler listing + Debugger::Internal::DisassemblerWindow| Vedno znova naloži seznam razstavljalnika - - - Debugger::Internal::SourceFilesModel - - - Internal name - Notranje ime - - - Full name - Polno ime - - - - Debugger::Internal::TcfEngine - - %1. + Debugger::Internal::TcfEngine| %1. - Stopped. + Debugger::Internal::TcfEngine| Ustavljeno. - Socket error: %1 + Debugger::Internal::TcfEngine| Napaka vtičnice: %1 - Error + Debugger::Internal::TcfEngine| Napaka - - - Designer::Internal::EditorWidget - Action editor + Designer::Internal::EditorWidget| Urejevalnik dejanj - Signals and slots editor + Designer::Internal::EditorWidget| Urejevalnik signalov in rež - - - Designer::Internal::FormWindowEditor - untitled + Designer::Internal::FormWindowEditor| neimenovano - - - Designer::Internal::SettingsPage - Designer + Designer::Internal::SettingsPage| Snovalnik - - - DuiEditor::Internal::DuiEditorPlugin - Qt QML File + DuiEditor::Internal::DuiEditorPlugin| Datoteka Qt QML - Qt + DuiEditor::Internal::DuiEditorPlugin| Qt - - - DuiEditor::Internal::ScriptEditor - <Select Symbol> + DuiEditor::Internal::ScriptEditor| <izberite simbol> - Rename... + DuiEditor::Internal::ScriptEditor| Preimenuj ... - New id: + DuiEditor::Internal::ScriptEditor| Nov ID: - Rename id '%1'... + DuiEditor::Internal::ScriptEditor| Preimenuj ID »%1« ... - - - Git::Internal::GitOutputWindow - Git Output + Git::Internal::GitOutputWindow| Izhod Git - Git + Git::Internal::GitOutputWindow| Git - - - Help::Internal::ContentsToolWidget - Contents + Help::Internal::ContentsToolWidget| Vsebina - - - Help::Internal::IndexThread - Failed to load keyword index file! + Help::Internal::IndexThread| Nalaganje datoteke s kazalom ključnih besed ni uspelo. - Cannot open the index file %1 + Help::Internal::IndexThread| Ni moč odpreti datoteke s kazalom %1 - Documentation file %1 does not exist! Skipping file. + Help::Internal::IndexThread| Datoteka z dokumentacijo %1 ne obstaja. Datoteka ne bo uporabljena. - - - Help::Internal::IndexToolWidget - Look for: + Help::Internal::IndexToolWidget| Išči: - Index + Help::Internal::IndexToolWidget| Kazalo - - - Help::Internal::TitleMapThread - Documentation file %1 does not exist! Skipping file. + Help::Internal::TitleMapThread| Datoteka z dokumentacijo %1 ne obstaja. Datoteka ne bo uporabljena. - Documentation file %1 is not compatible! Skipping file. + Help::Internal::TitleMapThread| Datoteka z dokumentacijo %1 ni združljiva. Datoteka ne bo uporabljena. - - - Perforce::Internal::PerforceOutputWindow - Perforce Output + Perforce::Internal::PerforceOutputWindow| Izhod Perforce - Perforce + Perforce::Internal::PerforceOutputWindow| Perforce - - - ProEditorContainer - Advanced Mode + ProEditorContainer| Napreden način - Form + ProEditorContainer| Obrazec - - - ProjectExplorer::Internal::ApplicationLauncher - Failed to start program. Path or permissions wrong? + ProjectExplorer::Internal::ApplicationLauncher| Zagon programa ni uspel. Morda je napačna pot ali pa dovoljenja. - The program has unexpectedly finished. + ProjectExplorer::Internal::ApplicationLauncher| Program je nepričakovano končal. - Some error has occurred while running the program. + ProjectExplorer::Internal::ApplicationLauncher| Med poganjanjem programa je prišlo do neke napake. - - - ProjectExplorer::Internal::ApplicationRunConfigurationRunner - Run + ProjectExplorer::Internal::ApplicationRunConfigurationRunner| Zaženi - - - ProjectExplorer::Internal::ApplicationRunControl - Starting %1... + ProjectExplorer::Internal::ApplicationRunControl| Zaganjanje %1 ... - %1 exited with code %2 + ProjectExplorer::Internal::ApplicationRunControl| %1 je končal s kodo %2 - - - ProjectExplorer::Internal::BuildSettingsPropertiesPage - Configurations + ProjectExplorer::Internal::BuildSettingsPropertiesPage| Nastavitve - + + ProjectExplorer::Internal::BuildSettingsPropertiesPage| + - - + ProjectExplorer::Internal::BuildSettingsPropertiesPage| - - Form + ProjectExplorer::Internal::BuildSettingsPropertiesPage| Obrazec - TextLabel + ProjectExplorer::Internal::BuildSettingsPropertiesPage| BesedilaOznaka - - - ProjectExplorer::Internal::ProjetExplorerSettingsPageUi - Build Settings + ProjectExplorer::Internal::ProjetExplorerSettingsPageUi| Nastavitve za gradnjo - Save all files before Build + ProjectExplorer::Internal::ProjetExplorerSettingsPageUi| Pred gradnjo shrani vse datoteke - Run Settings + ProjectExplorer::Internal::ProjetExplorerSettingsPageUi| Nastavitve za zagon - Always build Project before Running + ProjectExplorer::Internal::ProjetExplorerSettingsPageUi| Pred zagonom vedno zgradi projekt - Form + ProjectExplorer::Internal::ProjetExplorerSettingsPageUi| Obrazec - - - QLibrary - Could not mmap '%1': %2 + QLibrary| Ni bilo moč izvesti funkcije mmap za »%1«: %2 - Plugin verification data mismatch in '%1' + QLibrary| Neujemanje podatkov za potrjevanje vstavkov v »%1« - Could not unmap '%1': %2 + QLibrary| Ni bilo moč izvesti funkcije unmap za »%1«: %2 - The shared library was not found. + QLibrary| Deljena knjižnica ni bila najdena. - The file '%1' is not a valid Qt plugin. + QLibrary| Datoteka »%1« ni veljaven vstavek Qt. - The plugin '%1' uses incompatible Qt library. (%2.%3.%4) [%5] + QLibrary| Vstavek »%1« uporablja nezdružljivo knjižnico Qt. (%2.%3.%4) [%5] - The plugin '%1' uses incompatible Qt library. Expected build key "%2", got "%3" + QLibrary| Vstavek »%1« uporablja nezdružljivo knjižnico Qt. Pričakovan je bil ključ gradnje »%2«, dobljen je bil »%3« - The plugin '%1' uses incompatible Qt library. (Cannot mix debug and release libraries.) + QLibrary| Vstavek »%1« uporablja nezdružljivo knjižnico Qt. (Ni moč mešati knjižnic za razhroščevanje in izdajo.) - The plugin was not loaded. + QLibrary| Vstavek ni bil naložen. - Unknown error + QLibrary| Neznana napaka - Cannot load library %1: %2 + QLibrary| Ni moč naložiti knjižnice %1: %2 - Cannot unload library %1: %2 + QLibrary| Ni moč odstraniti knjižnice %1: %2 - Cannot resolve symbol "%1" in %2: %3 + QLibrary| Ni moč razrešiti simbola »%1« v %2: %3 - - - Qt4ProjectManager::Internal::EnvEditDialog - Build Environment + Qt4ProjectManager::Internal::EnvEditDialog| Okolje za gradnjo - Make Command: + Qt4ProjectManager::Internal::EnvEditDialog| Ukaz Make: - Build Environment: + Qt4ProjectManager::Internal::EnvEditDialog| Okolje za gradnjo: - mkspec: + Qt4ProjectManager::Internal::EnvEditDialog| mkspec: - 0 + Qt4ProjectManager::Internal::EnvEditDialog| 0 - 1 + Qt4ProjectManager::Internal::EnvEditDialog| 1 - Values: + Qt4ProjectManager::Internal::EnvEditDialog| Vrednosti: - Variable: + Qt4ProjectManager::Internal::EnvEditDialog| Spremenljivka: - Import + Qt4ProjectManager::Internal::EnvEditDialog| Uvozi - OK + Qt4ProjectManager::Internal::EnvEditDialog| V redu - Cancel + Qt4ProjectManager::Internal::EnvEditDialog| Prekliči - - - Qt4ProjectManager::Internal::EnvVariablesPage - Build Environments + Qt4ProjectManager::Internal::EnvVariablesPage| Okolja za gradnjo - Add... + Qt4ProjectManager::Internal::EnvVariablesPage| Dodaj ... - Edit... + Qt4ProjectManager::Internal::EnvVariablesPage| Urejanje ... - Delete + Qt4ProjectManager::Internal::EnvVariablesPage| Izbriši - Default mkspec: + Qt4ProjectManager::Internal::EnvVariablesPage| Privzeti mkspec: - Default make command: + Qt4ProjectManager::Internal::EnvVariablesPage| Privzeti ukaz make: - Form + Qt4ProjectManager::Internal::EnvVariablesPage| Obrazec - - - QuickOpen::IQuickOpenFilter - Filter Configuration + QuickOpen::IQuickOpenFilter| Nastavitev filtrov - Limit to prefix + QuickOpen::IQuickOpenFilter| Omeji na predpono - Prefix: + QuickOpen::IQuickOpenFilter| Predpona: - - - QuickOpen::Internal::DirectoryFilter - Generic Directory Filter + QuickOpen::Internal::DirectoryFilter| Splošen filter map - Filter Configuration + QuickOpen::Internal::DirectoryFilter| Nastavitev filtrov - Choose a directory to add + QuickOpen::Internal::DirectoryFilter| Izberite mapo za dodati - %1 filter update: 0 files + QuickOpen::Internal::DirectoryFilter| Posodobitev filtra %1: 0 datotek - %1 filter update: %n files + QuickOpen::Internal::DirectoryFilter| Posodobitev filtra %1: %n datoteka Posodobitev filtra %1: %n datoteki @@ -18918,813 +25321,744 @@ Datoteka ne bo uporabljena. - %1 filter update: canceled + QuickOpen::Internal::DirectoryFilter| Posodobitev filtra %1: preklicana - - - QuickOpen::Internal::DirectoryFilterOptions - Name: + QuickOpen::Internal::DirectoryFilterOptions| Ime: - File Types: + QuickOpen::Internal::DirectoryFilterOptions| Vrste datotek: - Specify file name filters, separated by comma. Filters may contain wildcards. + QuickOpen::Internal::DirectoryFilterOptions| Določite filtre imen datotek, ločenih z vejico. Filtri lahko vsebujejo nadomestitelje. - Prefix: + QuickOpen::Internal::DirectoryFilterOptions| Predpona: - Limit to prefix + QuickOpen::Internal::DirectoryFilterOptions| Omeji na predpono - Add... + QuickOpen::Internal::DirectoryFilterOptions| Dodaj ... - Edit... + QuickOpen::Internal::DirectoryFilterOptions| Urejanje ... - Remove + QuickOpen::Internal::DirectoryFilterOptions| Odstrani - Directories: + QuickOpen::Internal::DirectoryFilterOptions| Mape: - 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. + QuickOpen::Internal::DirectoryFilterOptions| Določite kratko besedo ali okrajšavo, ki se lahko uporabi za omejitev dokončevanja za datoteke iz tega drevesa map. Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskano besedo. - Dialog + QuickOpen::Internal::DirectoryFilterOptions| Pogovorno okno - - - QuickOpen::Internal::FileSystemFilter - Files in file system + QuickOpen::Internal::FileSystemFilter| Datoteke v datotečnem sistemu - - - QuickOpen::Internal::FileSystemFilterOptions - Filter configuration + QuickOpen::Internal::FileSystemFilterOptions| Nastavitev filtrov - Prefix: + QuickOpen::Internal::FileSystemFilterOptions| Predpona: - Limit to prefix + QuickOpen::Internal::FileSystemFilterOptions| Omeji na predpono - Include hidden files + QuickOpen::Internal::FileSystemFilterOptions| Vključi skrite datoteke - Filter: + QuickOpen::Internal::FileSystemFilterOptions| Filter: - - - QuickOpen::Internal::OpenDocumentsFilter - Open documents + QuickOpen::Internal::OpenDocumentsFilter| Odprti dokumenti - - - QuickOpen::Internal::QuickOpenFiltersFilter - Available filters + QuickOpen::Internal::QuickOpenFiltersFilter| Razpoložljivi filtri - - - QuickOpen::Internal::QuickOpenPlugin - Indexing + QuickOpen::Internal::QuickOpenPlugin| Indeksiranje - - - QuickOpen::Internal::QuickOpenToolWindow - Refresh + QuickOpen::Internal::QuickOpenToolWindow| Osveži - Configure... + QuickOpen::Internal::QuickOpenToolWindow| Nastavitve ... - Locate... + QuickOpen::Internal::QuickOpenToolWindow| Lociraj ... - Type to locate + QuickOpen::Internal::QuickOpenToolWindow| Tipkajte za lociranje - <type here> + QuickOpen::Internal::QuickOpenToolWindow| <tipkajte sem> - - - QuickOpen::Internal::SettingsDialog - Configure Filters + QuickOpen::Internal::SettingsDialog| Nastavitev filtrov - Add + QuickOpen::Internal::SettingsDialog| Dodaj - Remove + QuickOpen::Internal::SettingsDialog| Odstrani - min + QuickOpen::Internal::SettingsDialog| min - Refresh now! + QuickOpen::Internal::SettingsDialog| Osveži sedaj - Edit... + QuickOpen::Internal::SettingsDialog| Urejanje ... - Refresh Interval: + QuickOpen::Internal::SettingsDialog| Čas med osvežitvami: - Edit + QuickOpen::Internal::SettingsDialog| Urejanje - Refresh Intervall: + QuickOpen::Internal::SettingsDialog| Čas med osvežitvami: - - - QuickOpen::Internal::SettingsPage - %1 (Prefix: %2) + QuickOpen::Internal::SettingsPage| %1 (predpona: %2) - - - QuickOpen::Internal::SettingsWidget - Configure Filters + QuickOpen::Internal::SettingsWidget| Nastavitev filtrov - Add + QuickOpen::Internal::SettingsWidget| Dodaj - Remove + QuickOpen::Internal::SettingsWidget| Odstrani - Edit + QuickOpen::Internal::SettingsWidget| Urejanje - Refresh Interval: + QuickOpen::Internal::SettingsWidget| Čas med osvežitvami: - min + QuickOpen::Internal::SettingsWidget| min - - - SimpleProEditor - Debug and Release + SimpleProEditor| Razhroščevanje in izdaja - Debug specific + SimpleProEditor| Samo za razhroščevanje - Release specific + SimpleProEditor| Samo za izdajo - All platforms + SimpleProEditor| Vse platforme - MS Windows specific + SimpleProEditor| Samo za Windows - Linux/Unix specific + SimpleProEditor| Samo za Linux ali Unix - Mac OSX specific + SimpleProEditor| Samo za Mac OS X - Target Options + SimpleProEditor| Možnosti cilja - Type and name of the target. + SimpleProEditor| Vrsta in ime cilja. - Preprocessor Definitions + SimpleProEditor| Definicije za predprocesor - Setting of the preprocessor definitions. + SimpleProEditor| Nastavljanje definicij za predprocesor. - Include path + SimpleProEditor| Pot za vključevanje - Setting of the pathes where the header files are located. + SimpleProEditor| Nastavljanje poti, kjer se nahajajo datoteke z glavami. - Libraries + SimpleProEditor| Knjižnice - Defining the libraries to link the target against and the pathes where these are located. + SimpleProEditor| Določanje knjižnic s katerimi bo povezan cilj in poti v katerih se knjižnice nahajajo. - Source Files + SimpleProEditor| Datoteke z izvorno kodo - Header Files + SimpleProEditor| Datoteke z glavo - Forms + SimpleProEditor| Obrazci - Qt Modules + SimpleProEditor| Moduli Qt - Setting up which of the Qt modules will be used in the target application. + SimpleProEditor| Nastavljanje modulov Qt, ki bodo uporabljeni v ciljnem programu. - Resource files + SimpleProEditor| Datoteke z viri - Target name + SimpleProEditor| Ime cilja - The name of the resulting target. + SimpleProEditor| Ime končnega cilja. - Configuration + SimpleProEditor| Nastavitev - Configuration. + SimpleProEditor| Nastavitev. - Destination directory + SimpleProEditor| Ciljna mapa - Where the resulting target will be created. + SimpleProEditor| Kje bo ustvarjen končni cilj. - QtCore Module + SimpleProEditor| Modul QtCore - Core non-GUI classes used by other modules + SimpleProEditor| Osrednji razredi, ki niso za grafični vmesnik in jih uporabljajo drugi moduli - QtGui Module + SimpleProEditor| Modul QtGui - Graphical user interface components + SimpleProEditor| Komponente za grafični uporabniški vmesnik - QtNetwork Module + SimpleProEditor| Modul QtNetwork - Classes for network programming + SimpleProEditor| Razredi za omrežno programiranje - QtOpenGL Module + SimpleProEditor| Modul QtOpenGL - OpenGL support classes + SimpleProEditor| Razredi za podporo OpenGL - QtSql Module + SimpleProEditor| Modul QtSql - Classes for database integration using SQL + SimpleProEditor| Razredi za integracijo s podatkovnimi zbirkami z uporabo SQL - QtScript Module + SimpleProEditor| Modul QtScript - Classes for evaluating Qt Scripts + SimpleProEditor| Razredi za ovrednotenje skript Qt Script - QtSvg Module + SimpleProEditor| Modul QtSvg - Classes for displaying the contents of SVG files + SimpleProEditor| Razredi za prikaz datotek z raztegljivo vektorsko grafiko SVG - QtWebKit Module + SimpleProEditor| Modul QtWebKit - Classes for displaying and editing Web content + SimpleProEditor| Razredi za prikaz in urejanje spletnih vsebin - QtXml Module + SimpleProEditor| Modul QtXml - Classes for handling XML + SimpleProEditor| Razredi za delo z XML - QtXmlPatterns Module + SimpleProEditor| Modul QtXmlPatterns - An XQuery/XPath engine for XML and custom data models + SimpleProEditor| Pogon in lastni podatkovni modeli za XQuery in XPath - Phonon Module + SimpleProEditor| Modul Phonon - Multimedia framework classes + SimpleProEditor| Razredi za večpredstavnostno ogrodje - Qt3Support Module + SimpleProEditor| Modul Qt3Support - Classes that ease porting from Qt 3 to Qt 4 + SimpleProEditor| Razredi, ki olajšajo prenos s Qt 3 na Qt 4 - QtTest Module + SimpleProEditor| Modul QtTest - Tool classes for unit testing + SimpleProEditor| Orodni razredi za preizkušanje enot - QtDBus module + SimpleProEditor| Modul QtDBus - Classes for Inter-Process Communication using the D-Bus + SimpleProEditor| Razredi za medprocesno komunikacijo z uporabo D-Busa - Application + SimpleProEditor| Program - Create a standalone application + SimpleProEditor| Ustvari samostojen program - Dynamic Library + SimpleProEditor| Dinamična knjižnica - Create a dynamic library for usage in other applications + SimpleProEditor| Ustvari dinamično knjižnico za uporabo v drugih programih - Static Library + SimpleProEditor| Statična knjižnica - Create a static library for usage in other applications + SimpleProEditor| Ustvari statično knjižnico za uporabo v drugih programih - Add Operator + SimpleProEditor| Dodaj operator - Remove Operator + SimpleProEditor| Odstrani operator - Replace Operator + SimpleProEditor| Nadomesti operator - Set Operator + SimpleProEditor| Nastavi operator - Unique Add Operator + SimpleProEditor| Operator edinstvenega dodajanja - - - Subversion::Internal::SubversionOutputWindow - Subversion Output + Subversion::Internal::SubversionOutputWindow| Izhod Subversion - Subversion + Subversion::Internal::SubversionOutputWindow| Subversion - - - View - Paste + View| Prilepi - <Username> + View| <uporabniško ime> - <Description> + View| <opis> - <Comment> + View| <komentar> - - - AttachRemoteDialog - Start Debugger + AttachRemoteDialog| Zaženi razhroščevalnik - Attach to Process ID: + AttachRemoteDialog| Priklopi se na ID procesa: - Filter: + AttachRemoteDialog| Filter: - ... + AttachRemoteDialog| ... - - - CdbDumperHelper - Loading dumpers... + CdbDumperHelper| Nalaganje odlagalnikov ... - The debugger does not appear to be Qt application. + CdbDumperHelper| Kot kaže razhroščevalnik ni program napisan s Qt. - The dumper module appears to be already loaded. + CdbDumperHelper| Kot kaže je modul odlagalnika že naložen. - Dumper library '%1' loaded. + CdbDumperHelper| Odlagalna knjižnica »%1« je naložena. - The dumper library '%1' could not be loaded: %2 + CdbDumperHelper| Odlagalne knjižnice »%1« ni bilo moč naložiti: %2 - Querying dumpers for '%1'/'%2' (%3) + CdbDumperHelper| Pri odlagalnikih poizvedujem po »%1«/»%2« (%3) - - - CentralWidget - Add new page + CentralWidget| Dodaj novo stran - Print Document + CentralWidget| Natisni dokument - unknown + CentralWidget| neznano - Add New Page + CentralWidget| Dodaj novo stran - Close This Page + CentralWidget| Zapri to stran - Close Other Pages + CentralWidget| Zapri druge strani - Add Bookmark for this Page... + CentralWidget| Dodaj zaznamek za to stran ... - - - Core::Internal::CommandPrivate - Other + Core::Internal::CommandPrivate| Drugo - - - Debugger::Internal::AttachRemoteDialog - Refresh + Debugger::Internal::AttachRemoteDialog| Osveži - - - Designer::Internal::FormClassWizard - Internal error: FormClassWizard::generateFiles: empty template contents + Designer::Internal::FormClassWizard| Notranja napaka: FormClassWizard::generateFiles: prazna vsebina predloge - - - Designer::Internal::WorkbenchIntegration - The class definition of '%1' could not be found in %2. + Designer::Internal::WorkbenchIntegration| Definicije razreda »%1« ni bilo moč najti v %2. - Error finding/adding a slot. + Designer::Internal::WorkbenchIntegration| Napaka iskanja ali dodajanja reže. - No documents matching '%1' could be found. Rebuilding the project might help. + Designer::Internal::WorkbenchIntegration| Ni bilo moč najti nobenega dokumenta, ki se ujema z »%1«. Morda lahko pomaga ponovna gradnja projekta. - Unable to add the method definition. + Designer::Internal::WorkbenchIntegration| Ni moč dodati definicije metode. - - - MimeDatabase - Not a number '%1'. + MimeDatabase| Ni številka »%1« - Empty match value detected. + MimeDatabase| Zaznana ja prazna ujemajoča vrednost - Missing 'type'-attribute + MimeDatabase| Manjka lastnost »type« - Unexpected element <%1> + MimeDatabase| Nepričakovan element <%1> - An error has been encountered at line %1 of %2: %3: + MimeDatabase| Prišlo je do napake v vrstici %1 datoteke %2: %3 - Cannot open %1: %2 + MimeDatabase| Ni moč odpreti %1: %2 - - - OpenEditorsView - Form + OpenEditorsView| Obrazec - - - Perforce::Internal::WorkbenchClientUser - Perforce Error + Perforce::Internal::WorkbenchClientUser| Napaka Perforce - Closing p4 Editor + Perforce::Internal::WorkbenchClientUser| Zapiranje urejevalnika p4 -- cgit v1.2.1 From 1c303fc80e8c3d84598db3c0215fe70ce8d5398f Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 12 Aug 2010 12:35:53 +0200 Subject: debugger: fix dumper output of QLocale::timeFormat() --- share/qtcreator/gdbmacros/gdbmacros.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index 2c7840e0ec..60869f6e8d 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -491,9 +491,9 @@ def qdump__QLocale(d, item): d.putCallItem("measurementSystem", item, "measurementSystem()") d.putCallItem("numberOptions", item, "numberOptions()") d.putCallItem("timeFormat_(short)", item, - "timeFormat(" + d.ns + "QLocale::ShortFormat)") + "timeFormat('" + d.ns + "QLocale::ShortFormat')") d.putCallItem("timeFormat_(long)", item, - "timeFormat(" + d.ns + "QLocale::LongFormat)") + "timeFormat('" + d.ns + "QLocale::LongFormat')") d.putCallItem("decimalPoint", item, "decimalPoint()") d.putCallItem("exponential", item, "exponential()") d.putCallItem("percent", item, "percent()") -- cgit v1.2.1 From 214f1978bac5077d23bc087b5c83f48bb2da9cbe Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Thu, 12 Aug 2010 16:59:23 +0200 Subject: fix string and the source in all translations --- share/qtcreator/translations/qtcreator_cs.ts | 2 +- share/qtcreator/translations/qtcreator_de.ts | 2 +- share/qtcreator/translations/qtcreator_fr.ts | 2 +- share/qtcreator/translations/qtcreator_ja.ts | 2 +- share/qtcreator/translations/qtcreator_pl.ts | 2 +- share/qtcreator/translations/qtcreator_ru.ts | 2 +- share/qtcreator/translations/qtcreator_sl.ts | 2 +- src/plugins/designer/codemodelhelpers.cpp | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_cs.ts b/share/qtcreator/translations/qtcreator_cs.ts index a3918e3b8a..af044fa58d 100644 --- a/share/qtcreator/translations/qtcreator_cs.ts +++ b/share/qtcreator/translations/qtcreator_cs.ts @@ -4406,7 +4406,7 @@ Chcete zastavit laděný proces a nahrát vybraný snímek? Editor formulářů - The generated header of the form '%1' could be found. + The generated header of the form '%1' could not be found. Rebuilding the project might help. Automaticky vytvořený soubor hlavičky formuláře '%1 se nepodařilo najít. Zkuste projekt vytvořit znovu. diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts index f3dc93b308..84e24deb7a 100644 --- a/share/qtcreator/translations/qtcreator_de.ts +++ b/share/qtcreator/translations/qtcreator_de.ts @@ -4345,7 +4345,7 @@ Die Ausgabe-Hilfsbibliothek dient lediglich zur formatierten Ausgabe von Objekte Formulareditor - The generated header of the form '%1' could be found. + The generated header of the form '%1' could not be found. Rebuilding the project might help. Die automatisch erstellte Header-Datei '%1' des Formulars konnte nicht gefunden werden. Versuchen Sie, das Projekt neu zu erstellen. diff --git a/share/qtcreator/translations/qtcreator_fr.ts b/share/qtcreator/translations/qtcreator_fr.ts index 021069680b..23a5ae5725 100644 --- a/share/qtcreator/translations/qtcreator_fr.ts +++ b/share/qtcreator/translations/qtcreator_fr.ts @@ -6410,7 +6410,7 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. - The generated header of the form '%1' could be found. + The generated header of the form '%1' could not be found. Rebuilding the project might help. Impossible de trouver un en-tête généré pour l'interface graphique %1. Regénérer le projet peut résoudre ce problème. diff --git a/share/qtcreator/translations/qtcreator_ja.ts b/share/qtcreator/translations/qtcreator_ja.ts index 75b7c05003..0e377f35b3 100644 --- a/share/qtcreator/translations/qtcreator_ja.ts +++ b/share/qtcreator/translations/qtcreator_ja.ts @@ -4214,7 +4214,7 @@ Do you want to stop the debugged process and load the selected snapshot?フォーム エディタ - The generated header of the form '%1' could be found. + The generated header of the form '%1' could not be found. Rebuilding the project might help. フォーム '%1' 向けに生成されたヘッダーが見つかりました。 プロジェクトのリビルドをお奨めします。 diff --git a/share/qtcreator/translations/qtcreator_pl.ts b/share/qtcreator/translations/qtcreator_pl.ts index 30478f7eca..e5687b9336 100644 --- a/share/qtcreator/translations/qtcreator_pl.ts +++ b/share/qtcreator/translations/qtcreator_pl.ts @@ -9113,7 +9113,7 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. - The generated header of the form '%1' could be found. + The generated header of the form '%1' could not be found. Rebuilding the project might help. Nie można odnaleźć wygenerowanego pliku nagłówkowego dla formularza "%1". Spróbuj ponownie przebudować projekt. diff --git a/share/qtcreator/translations/qtcreator_ru.ts b/share/qtcreator/translations/qtcreator_ru.ts index 6f8eaa975e..01293438fd 100644 --- a/share/qtcreator/translations/qtcreator_ru.ts +++ b/share/qtcreator/translations/qtcreator_ru.ts @@ -5190,7 +5190,7 @@ Do you want to stop the debugged process and load the selected snapshot?Редактор форм - The generated header of the form '%1' could be found. + The generated header of the form '%1' could not be found. Rebuilding the project might help. Не удалось найти сгенерированный заголовочный файл для формы "%1". Пересборка проекта может помочь. diff --git a/share/qtcreator/translations/qtcreator_sl.ts b/share/qtcreator/translations/qtcreator_sl.ts index 1b77745fad..ce809f1e0d 100644 --- a/share/qtcreator/translations/qtcreator_sl.ts +++ b/share/qtcreator/translations/qtcreator_sl.ts @@ -3696,7 +3696,7 @@ Ali želite ustaviti razhroščevani proces in naložiti izbrani posnetek?Urejevalnik obrazcev - The generated header of the form '%1' could be found. + The generated header of the form '%1' could not be found. Rebuilding the project might help. Ni bilo moč najti samodejno ustvarjene glave za obrazec »%1«. Morda lahko pomaga ponovna gradnja projekta. diff --git a/src/plugins/designer/codemodelhelpers.cpp b/src/plugins/designer/codemodelhelpers.cpp index 8f5199015c..46ce1265ab 100644 --- a/src/plugins/designer/codemodelhelpers.cpp +++ b/src/plugins/designer/codemodelhelpers.cpp @@ -126,7 +126,7 @@ bool navigateToSlot(const QString &uiFileName, // Find the generated header. const QString generatedHeaderFile = generatedHeaderOf(uiFileName); if (generatedHeaderFile.isEmpty()) { - *errorMessage = QCoreApplication::translate("Designer", "The generated header of the form '%1' could be found.\nRebuilding the project might help.").arg(uiFileName); + *errorMessage = QCoreApplication::translate("Designer", "The generated header of the form '%1' could not be found.\nRebuilding the project might help.").arg(uiFileName); return false; } const CPlusPlus::Snapshot snapshot = CppTools::CppModelManagerInterface::instance()->snapshot(); -- cgit v1.2.1 From c5b027cd1f27cc23936a79429d2efed76ee72e83 Mon Sep 17 00:00:00 2001 From: shiroki Date: Thu, 12 Aug 2010 16:43:44 +0200 Subject: Add simplified chinese translation. This is a team work by shiroki@cuteqt.com, chloerei@gmail.com and xtfllbl@hotmail.com . Merge-request: 2173 --- share/qtcreator/translations/qtcreator_zh_CN.ts | 22607 ++++++++++++++++++++++ share/qtcreator/translations/translations.pro | 2 +- 2 files changed, 22608 insertions(+), 1 deletion(-) create mode 100644 share/qtcreator/translations/qtcreator_zh_CN.ts diff --git a/share/qtcreator/translations/qtcreator_zh_CN.ts b/share/qtcreator/translations/qtcreator_zh_CN.ts new file mode 100644 index 0000000000..eadd433fa5 --- /dev/null +++ b/share/qtcreator/translations/qtcreator_zh_CN.ts @@ -0,0 +1,22607 @@ + + + + + Application + + Failed to load core: %1 + 核心载入失败: %1 + + + Unable to send command line arguments to the already running instance. It appears to be not responding. + 无法将命令行参数发送到执行中的进程,看起来进程未响应. + + + Could not find 'Core.pluginspec' in %1 + 在%1 找不到 'Core.pluginspec' + + + Qt Creator - Plugin loader messages + Qt Creator - 插件载入信息 + + + + AttachCoreDialog + + Start Debugger + 启动调试器 + + + Executable: + 执行档: + + + Core File: + 核心文件: + + + + AttachExternalDialog + + Start Debugger + 启动调试器 + + + Attach to Process ID: + 挂接进程ID: + + + Filter: + 过滤器: + + + Clear + 清空 + + + Attach to process ID: + 关联进程ID: + + + + BINEditor::Internal::BinEditorPlugin + + &Undo + 撤销(&U) + + + &Redo + 恢复(&R) + + + + BookmarkDialog + + Add Bookmark + 添加书签 + + + Bookmark: + 书签: + + + Add in Folder: + 添加到文件夹: + + + + + + + + + New Folder + 新建文件夹 + + + Bookmarks + 书签 + + + Delete Folder + 删除文件夹 + + + Rename Folder + 重命名文件夹 + + + + BookmarkManager + + Bookmarks + 书签 + + + Remove + 删除 + + + New Folder + 新文件夹 + + + You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue? + 你将删除文件夹和其目录下的文件,你确定继续吗? + + + + BookmarkWidget + + Delete Folder + 删除文件夹 + + + Rename Folder + 重命名文件夹 + + + Show Bookmark + 显示书签 + + + Show Bookmark in New Tab + 在新标签显示书签 + + + Delete Bookmark + 删除书签 + + + Rename Bookmark + 重命名书签 + + + Filter: + 过滤器: + + + Add + 添加 + + + Remove + 删除 + + + + Bookmarks::Internal::BookmarkView + + Bookmarks + 书签 + + + Move Up + 向上移动 + + + Move Down + 向下移动 + + + &Remove + 删除(&R) + + + Remove All + 全部删除 + + + &Remove Bookmark + 删除书签(&R) + + + Remove all Bookmarks + 删除所有书签 + + + + Bookmarks::Internal::BookmarksPlugin + + &Bookmarks + 书签(&B) + + + Toggle Bookmark + 切换书签 + + + Ctrl+M + Ctrl+M + + + Meta+M + Meta+M + + + Move Up + 上移 + + + Move Down + 下移 + + + Previous Bookmark + 上个书签 + + + Ctrl+, + Ctrl+, + + + Meta+, + Meta+, + + + Next Bookmark + 下个书签 + + + Ctrl+. + Ctrl+. + + + Meta+. + Meta+. + + + Previous Bookmark in Document + 文档中的上个书签 + + + Next Bookmark in Document + 文档中的下个书签 + + + Previous Bookmark In Document + 上个文档内书签 + + + Next Bookmark In Document + 下个文档内书签 + + + + BreakByFunctionDialog + + Function to break on: + 设断点的函数: + + + Set Breakpoint at Function + 在函数处设定断点 + + + + BreakCondition + + Condition: + 条件: + + + Ignore count: + 忽视次数: + + + + CMakeProjectManager::Internal::CMakeBuildEnvironmentWidget + + Clear system environment + 清除系统环境变量 + + + Build Environment + 构建时的环境变量 + + + + CMakeProjectManager::Internal::CMakeBuildConfigurationFactory + + Create + 创建 + + + Build + 构建 + + + New configuration + 新配置 + + + New Configuration Name: + 新配置名称: + + + + CMakeProjectManager::Internal::CMakeBuildSettingsWidget + + &Change + 修改(&C) + + + + CMakeProjectManager::Internal::CMakeOpenProjectWizard + + CMake Wizard + CMake 向导 + + + + CMakeProjectManager::Internal::CMakeRunConfigurationWidget + + Arguments: + 参数: + + + Select the working directory + 选择工作文件夹 + + + Select Working Directory + 选择工作目录 + + + Reset to default + 重置至默认 + + + Working Directory: + 工作目录: + + + Run Environment + 运行环境 + + + Base environment for this runconfiguration: + 本次运行配置的基本环境变量: + + + Clean Environment + 清除环境变量 + + + System Environment + 系统环境变量 + + + Build Environment + 构建时的环境变量 + + + Running executable: <b>%1</b> %2 + 运行的执行档: <b>%1</b> %2 + + + + CMakeProjectManager::Internal::InSourceBuildPage + + 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 + 构建路径 + + + + CMakeProjectManager::Internal::CMakeRunPage + + 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 executable. + 路径 (%1) 不是可执行程序。 + + + The path %1 is not a valid cmake. + 路径 (%1) 不是有效的cmake。 + + + Run CMake + 执行CMake + + + Arguments + 参数 + + + The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly + 目录中 %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调用. + + + NMake Generator + NMake 创建器 + + + NMake Generator (%1) + NMake 创建器(%1) + + + MinGW Generator + MinGW 创建器 + + + No valid cmake executable specified. + 没有指定有效的cmake执行档。 + + + + CMakeProjectManager::Internal::CMakeSettingsPage + + CMake + + + + Executable: + 执行档: + + + CMake executable + 可执行的cmake + + + + CMakeProjectManager::Internal::MakeStepConfigWidget + + Additional arguments: + 额外的参数: + + + Targets: + 目标: + + + Make + CMakeProjectManager::MakeStepConfigWidget display name. + + + + <b>Make:</b> %1 %2 + <b>Make:</b> %1 %2 + + + <b>Unknown Toolchain</b> + <b>未知工具链</b> + + + + CMakeProjectManager::Internal::ShadowBuildPage + + 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 建议你不要使用源文件夹构建. 这能确保源文件夹的干净并且可以使用不同设定多次构建. + + + Build directory: + 用于构建的文件夹: + + + Build Location + 构建路径 + + + + CPlusPlus::OverviewModel + + <Select Symbol> + <选择符号> + + + <No Symbols> + <没有符号> + + + + CdbOptionsPageWidget + + These options take effect at the next start of Qt Creator. + 这些选项将在Qt Creator 下次启动时生效。 + + + Cdb + Placeholder + Cdb + + + Path: + 路径: + + + 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> + + + 64-bit version + 64 bit 版本 + + + 32-bit version + 32 bit 版本 + + + Other options + 其他选项 + + + Verbose Symbol Loading + 打印标记载入信息 + + + CDB + Placeholder + + + + Other Options + 其他选项 + + + Verbose symbol loading + 打印符号载入的详细信息 + + + fast loading of debugging helpers + 快速载入调试助手 + + + + ChangeSelectionDialog + + Repository Location: + 代码仓库地址: + + + Select + 选择 + + + Change: + 修改: + + + Repository location: + 代码仓库地址: + + + + CodePaster::CodepasterPlugin + + &Code Pasting + 粘贴代码(&C) + + + Paste Snippet... + 粘贴代码片段... + + + Alt+C,Alt+P + Alt+C,Alt+P + + + Paste Clipboard... + 粘贴剪贴板... + + + Fetch Snippet... + 取得代码片段... + + + Alt+C,Alt+F + Alt+C,Alt+F + + + Empty snippet received for "%1". + "%1"接收到空的片段. + + + This protocol supports no listing + 此协议不支持listing + + + Waiting for items + 等待数据项 + + + + CodePaster::PasteSelectDialog + + Paste: + 粘贴: + + + Protocol: + 协议: + + + Refresh + 刷新 + + + Waiting for items + 等待数据项 + + + This protocol does not support listing + 此协议不支持列表 + + + + CodePaster::SettingsPage + + Username: + 用户名: + + + Copy Paste URL to clipboard + 复制URL到剪贴板 + + + Display Output Pane after sending a post + 发送后显示输出对话框 + + + General + 概要 + + + CodePaster + CodePaster + + + Default Protocol: + 默认协议: + + + Code Pasting + 代码粘贴 + + + Default protocol: + 默认协议: + + + Display Output pane after sending a post + 发送后显示输出对话框 + + + Copy-paste URL to clipboard + 复制/粘帖URL到剪贴板 + + + + CommonOptionsPage + + 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. + 当此项被选中, "Step Into"某些情况下将把几步压缩成为一步, 以简化调试。 因此像原子操作计数等代码会被跳过, 到信号发送的"Step Into"会直接调到连接的槽函数。 + + + Skip known frames when stepping + 当stepping时跳过已知的frames + + + Maximal stack depth: + 最大堆栈深度: + + + <unlimited> + <无限制> + + + Use alternating row colors in debug views + 在调试视图交替行的颜色 + + + Enable reverse debugging + 打开反向调试 + + + Show a message box when receiving a signal + 当接受到一个信号时显示一个消息窗口 + + + Use tooltips in main editor while debugging + 当调试时在主编辑器中启用工具提示 + + + Language + 语言 + + + Changes the debugger language according to the currently opened file. + 根据所打开文件改变调试器语言。 + + + Change debugger language automatically + 自动改变调试器语言 + + + Gui behavior + 图形界面行为 + + + Register Qt Creator for debugging crashed applications. + 注册 Qt Creator 来调试崩溃的应用. + + + Use Creator for post-mortem debugging + 使用Creator进行运行后调试 + + + GUI Behavior + 图形界面行为 + + + Use Qt Creator for post-mortem debugging + 使用 Qt Creator 进行崩溃后(post-mortem)调试 + + + + CompletionSettingsPage + + &Case-sensitive completion + 区分大小写(&C) + + + Autocomplete common &prefix + 自动完成相同前缀(&P) + + + Code Completion + 代码自动完成 + + + Do a case-sensitive match for completion items. + 自动完成区分大小写 + + + 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 + 仅首字母 + + + + ContentWindow + + Open Link + 打开链接 + + + Open Link as New Page + 在新页面打开连接 + + + Open Link in New Tab + 在新页面打开链接 + + + + 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] + [只读] + + + [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 + 分栏 + + + Split Side by Side + 左右分栏 + + + Remove Current Split + 删除当前分隔 + + + Remove All Splits + 删除所有分隔 + + + 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. + 无法设置文件的可写权限。 + + + <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 + + + 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 + 保存文件失败 + + + Cannot save changes to '%1'. Do you want to continue and lose your changes? + 无法保存改变至'%1',你想继续并且丢失所有改变么? + + + Overwrite? + 覆盖? + + + An item named '%1' already exists at this location. Do you want to overwrite it? + 名为'%1'的项已经存在,是否想要覆盖它? + + + Save File As + 文件另存为 + + + Open File + 打开文件 + + + + 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 + 下个组 + + + Move Document to Previous Group + 移动文档至上个组 + + + Move Document to Next Group + 移动文档至下个组 + + + + Core::Internal::EditorView + + Go Back + 返回 + + + Go Forward + 前进 + + + Placeholder + 占位符 + + + Close + 关闭 + + + Make writable + 使文件可写 + + + File is writable + 文件可写 + + + Copy full path to clipboard + 复制全路径到剪贴板 + + + + 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 + 忽略修改 + + + + 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 + 最近使用的文件 + + + Open File &With... + 用...打开文件(&W) + + + Recent &Files + 最近访问的文件(&F) + + + &Save + 保存(&S) + + + Save &As... + 另存为(&A)... + + + Ctrl+Shift+S + Ctrl+Shift+S + + + Save A&ll + 保存所有文件(&l) + + + &Print... + 打印(&P)... + + + E&xit + 退出(&x) + + + Ctrl+Q + Ctrl+Q + + + &Undo + 撤销(&U) + + + &Redo + 恢复(&R) + + + Cu&t + 剪切(&t) + + + &Copy + 复制(&C) + + + &Paste + 粘贴(&P) + + + &Select All + 全选(&S) + + + &Go To Line... + 转到行(&G)... + + + Ctrl+L + Ctrl+L + + + &Options... + 选项(&O)... + + + Minimize + 最小化 + + + Zoom + 缩放 + + + Show Sidebar + 显示边栏 + + + Full Screen + 全屏 + + + &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 + 文件和类 + + + + Core::Internal::OpenEditorsWidget + + Open Documents + 打开文档 + + + Close %1 + 关闭 %1 + + + Close Editor + 关闭编辑器 + + + Close All Except %1 + 关闭所有除了%1 + + + Close Other Editors + 关闭其他编辑器 + + + Close All Editors + 关闭所有编辑器 + + + + Core::Internal::OpenEditorsWindow + + * + * + + + + Core::Internal::OpenWithDialog + + Open file '%1' with: + 打开文件 '%1',用: + + + + Core::Internal::OutputPaneManager + + Output + 输出 + + + Clear + 清空 + + + Next Item + 下一项 + + + Previous Item + 前一项 + + + Maximize Output Pane + 最大化输出窗口 + + + 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 + 仅保存选择的 + + + + 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) + + + + 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/>版权 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/> + + + <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 %1 mode + 切换至%1模式 + + + 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 create temporary directory '%1': %2 + 无法创建临时文件夹 '%1': %2 + + + 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 + + + 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)。 + + + + 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): + + + + Utils::PathChooser + + Choose... + 选择... + + + Browse... + 浏览... + + + Choose a directory + 选择目录 + + + Choose a file + 选择文件 + + + Choose Directory + 选择目录 + + + Choose File + 选择文件 + + + The path must not be empty. + 路径不能为空. + + + The path '%1' does not exist. + 路径 '%1' 不存在. + + + 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 + 设为默认的工程路径 + + + + Utils::ProjectNameValidatingLineEdit + + The name must not contain the '.'-character. + 名称不能包含 '.' + + + Invalid character '.'. + 无效字符 '.'. + + + + Utils::SubmitEditorWidget + + Subversion Submit + Subversion提交 + + + Des&cription + 说明(&c) + + + F&iles + 文件(&i) + + + + 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 + 在方法声明/定义之间切换 + + + Rename Symbol Under Cursor + 重命名光标位置的符号 + + + 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 + 分析中 + + + Indexing + 索引中 + + + + CppTools + + File Naming Conventions + 文件命名规则 + + + File Naming + 文件命名 + + + C++ + C++ + + + + CppTools::Internal::CompletionSettingsPage + + Completion + 补全 + + + Text Editor + 文本编辑器 + + + + CppTools::Internal::CppClassesFilter + + Classes + + + + + CppTools::Internal::CppFunctionsFilter + + Methods + 方法 + + + + CppTools::Internal::CppLocatorFilter + + Classes and Methods + 类和方法 + + + + CppTools::Internal::CppToolsPlugin + + &C++ + C++(&C) + + + Switch Header/Source + 切换头文件/源文件 + + + + CppTools::Internal::FunctionArgumentWidget + + %1 of %2 + %1/%2 + + + + Debugger + + Common + 共同 + + + General + 概要 + + + Debugger + 调试器 + + + <Encoding error> + <编码错误> + + + Error Loading Symbols + 载入符号错误 + + + No executable to load symbols from specified. + 没有指定可运行的程序来载入符号. + + + Symbols found. + 找到符号。 + + + Loading symbols from "%1" failed: + + 从 "%1" 载入符号失败: + + + + Attached to core temporarily. + 临时关联至核心。 + + + Unable to determine executable from core file. + 从核心文件无法定位可执行文件。 + + + Attached to core. + 关联至核心. + + + Attach to core "%1" failed: + + 关联至核心 %1失败: + + + + Cannot set up communication with child process: %1 + 无法与子进程建立通信: %1 + + + Starting executable failed: + + 启动执行档失败: + + + + 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()的默认返回值。 + + + Error + 错误 + + + Starting remote executable failed: + + 启动远程执行档失败: + + + + Debugger Error + 调试器错误 + + + + QtDumperHelper + + Found an outdated version of the debugging helper library (%1); version %2 is required. + 系统找到一个过期的调试帮助库(%1); 需要版本 %2 . + + + %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 + + %n 已知类型, Qt 版本: %1, Qt 命名空间: %2 Dumper version: %3 + + + + <none> + <无> + + + + Debugger::Internal::AttachCoreDialog + + Select Executable + 选择执行档 + + + Select Core File + 选择核心文件 + + + + Debugger::Internal::AttachExternalDialog + + Process ID + 进程ID + + + Name + 名称 + + + State + 状态 + + + Refresh + 刷新 + + + + Debugger::Internal::AddressDialog + + Select start address + 选择开始地址 + + + Enter an address: + 输入地址: + + + + Debugger::Internal::BreakHandler + + Marker File: + 标记文件: + + + Marker Line: + 标记行: + + + Breakpoint Number: + 断点编号: + + + Breakpoint Address: + 断点地址: + + + Property + 属性 + + + Requested + 请求 + + + Obtained + 获得 + + + Internal Number: + 内部编号: + + + File Name: + 文件名: + + + Function Name: + 函数名: + + + Line Number: + 行号: + + + Corrected Line Number: + 修正行号: + + + Condition: + 条件: + + + Ignore Count: + 忽略次数: + + + Function + 函数 + + + File + 文件 + + + Line + 行号 + + + Number + 编号 + + + Condition + 条件 + + + Ignore + 忽略 + + + Address + 地址 + + + Breakpoint will only be hit if this condition is met. + 只有当条件满足时才会到达断点。 + + + Breakpoint will only be hit after being ignored so many times. + 断点将会在被忽略足够次数后到达。 + + + + Debugger::Internal::BreakWindow + + Breakpoints + 断点 + + + Delete breakpoint + 删除断点 + + + Delete all breakpoints + 删除所有断点 + + + Delete breakpoints of "%1" + 删除断点"%1" + + + Delete breakpoints of file + 删除文件断点 + + + Adjust column widths to contents + 按内容调整宽度 + + + Always adjust column widths to contents + 总是按内容调整列的宽度 + + + Edit condition... + 编辑条件... + + + Synchronize breakpoints + 同步断点 + + + Disable breakpoint + 禁止断点 + + + Enable breakpoint + 开启断点 + + + Use short path + 使用短路径 + + + Use full path + 使用全路径 + + + Delete Breakpoint + 删除断点 + + + Delete All Breakpoints + 删除所有断点 + + + Delete Breakpoints of "%1" + 删除 "%1" 的断点 + + + Delete Breakpoints of File + 删除文件的断点 + + + Adjust Column Widths to Contents + 按内容调整列宽 + + + Always Adjust Column Widths to Contents + 总是按内容调整列宽 + + + Edit Condition... + 编辑条件... + + + Synchronize Breakpoints + 同步断点 + + + Disable Selected Breakpoints + 禁用选择的断点 + + + Enable Selected Breakpoints + 启用选择的断点 + + + Disable Breakpoint + 禁用断点 + + + Enable Breakpoint + 启用断点 + + + Use Short Path + 使用短路径 + + + Use Full Path + 使用全路径 + + + Set Breakpoint at Function... + 在函数位置设置断点... + + + Set Breakpoint at Function "main" + 在"main"函数设置断点 + + + Set Breakpoint at "throw" + 在抛出点(throw)设置断点 + + + Set Breakpoint at "catch" + 在捕获点(catch)设置断点 + + + Conditions on Breakpoint %1 + 断点%1 的条件 + + + + Debugger::Internal::CdbDebugEngine + + 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 + + + <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> + <html>安装的 <i>Windows下的调试工具</i> (%1) 版本太旧了. 建议升级到版本 %2 以正确显示 Qt的数据类型.</html> + + + Debugger + 调试器 + + + 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 + + + Running requested... + 执行请求... + + + Running up to %1:%2... + 运行至%1:%2... + + + Running up to function '%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. + 当被调试程序运行时无法获取符号信息。 + + + Debugger Error + 调试器错误 + + + 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::Internal::CdbDumperHelper + + 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::Internal::CdbOptionsPageWidget + + Cdb + Cdb + + + <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> + + + 64-bit version + 64 bit 版本 + + + 32-bit version + 32 bit 版本 + + + Autodetect + 自动检测 + + + "Debugging Tools for Windows" could not be found. + 找不到"Windows 下的调试工具"。 + + + Checked: +%1 + 已选择:\n%1 + + + Autodetection + 自动检测 + + + + Debugger::Internal::CdbSymbolPathListEditor + + Symbol Server... + 符号服务器... + + + Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. + 从微软符号服务器获得操作系统库的符号信息。需要指定一个本地缓存目录。 + + + Pick a local cache directory + 指定本地缓存目录 + + + + Debugger::Internal::DebugMode + + Debug + 调试 + + + + Debugger::DebuggerManager + + Continue + 继续 + + + Interrupt + 中断 + + + Reset Debugger + 重置调试器 + + + Abort Debugging + 终止调试 + + + Aborts debugging and resets the debugger to the initial state. + 终止调试并重置调试器到初始状态。 + + + Step Over + 单步跳过 + + + Step Into + 单步进入 + + + Step Out + 单步跳出 + + + Run to Line + 执行到行 + + + Run to Outermost Function + 运行至最外层函数 + + + Immediately Return From Inner Function + 从内部函数立即返回 + + + Jump to Line + 跳到指定行 + + + Toggle Breakpoint + 切换断点 + + + Add to Watch Window + 添加到监视窗口 + + + Snapshot + 快照 + + + Reverse Direction + 转变方向 + + + Stopped + 停止 + + + Exited + 退出 + + + Turn off helper usage + 关闭助手应用 + + + 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. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. + 调试助手用于格式化Qt和标准库数据类型的值, 必须为每个Qt版本单独编译。 可以在Qt首选项页面选择Qt安装, 然后点击“调试助手”行的"重建"按钮。 + + + Stopped. + 停止。 + + + Running... + 执行中... + + + Changing breakpoint state requires either a fully running or fully stopped application. + 只有在程序完全运行或完全停止的状态下方能修改断点状态。 + + + Warning + 警告 + + + Save Debugger Log + 保存调试器日志 + + + Stop Debugger + 停止调试 + + + Open Qt preferences + 打开Qt首选项 + + + Exited. + 已退出。 + + + The application requires the debugger engine '%1', which is disabled. + 程序需要调试器引擎 "%1", 而其被禁用。 + + + Starting debugger for tool chain '%1'... + 正在为编译工具链 "%1" 启动调试器... + + + Cannot debug '%1' (tool chain: '%2'): %3 + 无法调试 "%1" (工具链: "%2") : %3 + + + %1 (explicitly set in the Debugger Options) + %1 (在调试器选项中设定) + + + Continue anyway + 无论如何继续 + + + Debugging helper missing + 缺少调试助手 + + + + Debugger::Internal::DebuggerOutputWindow + + Debugger + 调试器 + + + + Debugger::Internal::DebuggerPlugin + + Option '%1' is missing the parameter. + 选项 '%1' 缺少参数. + + + The parameter '%1' of option '%2' is not a number. + 选项 '%2' 的参数 '%1' 不是一个数字. + + + Invalid debugger option: %1 + 无效的调试选项: %1 + + + Error evaluating command line arguments: %1 + 命令行参数赋值错误: %1 + + + Start and Debug External Application... + 启动和调试外部应用程序... + + + Attach to Running External Application... + 关联至运行中的外部应用程序... + + + Attach to Core... + 关联至核心... + + + Start and Attach to Remote Application... + 启动并关联至远程应用程序... + + + &Views + 视图(&V) + + + Locked + 锁定 + + + Reset to default layout + 重置为默认布局 + + + Threads: + 线程: + + + Attaching to PID %1. + 关联至PID %1. + + + Remove Breakpoint + 删除断点 + + + Disable Breakpoint + 禁用断点 + + + Enable Breakpoint + 启用断点 + + + Set Breakpoint + 设置断点 + + + Warning + 警告 + + + Cannot attach to PID 0 + 无法关联至PID 0 + + + Attaching to core %1. + 关联至核心 %1. + + + Stop Debugger/Interrupt Debugger + 停止/中断调试 + + + Detach Debugger + 脱离调试器 + + + Reset Debugger + 重置调试器 + + + + Debugger::Internal::DebuggerListener + + Close Debugging Session + 关闭调试会话 + + + A debugging session is still in progress. +Would you like to terminate it? + 调试会话仍在运行. + 你希望终止它吗? + + + A debugging session is still in progress. Would you like to terminate it? + 一个调试会话仍在运行,是否强行关闭? + + + A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? + 一个调试会话仍在运行,在当前状态(%1)下关闭会使目标处于不完整状态,仍然想要关闭吗? + + + + Debugger::Internal::DebuggerSettings + + Debugger properties... + 调试器属性... + + + Adjust column widths to contents + 根据内容调整列宽 + + + Always adjust column widths to contents + 总是按内容调整列宽 + + + Use alternating row colors + 使用交替行颜色 + + + Show a message box when receiving a signal + 当接受到信号时显示消息窗口 + + + Log time stamps + 记录时间戳 + + + Operate by instruction + 依照命令操作 + + + 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"模式, 对语句的单步操作和源码视图同时显示汇编指令。 + + + Dereference pointers automatically + 自动去除对指针的引用 + + + 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. + 切换本地变量&监视器视图到“自动去除指针引用”模式。 这将减少树形视图中的层次,但同时也减少了数据 - 缺少中间层次。 + + + Watch expression "%1" + 监视表达式 "%1" + + + Remove watch expression "%1" + 删除监视表达式"%1" + + + Watch expression "%1" in separate window + 在独立窗口中监视表达式 "%1" + + + Show std:: namespace for types + 显示类型的std::命名空间 + + + Show Qt's namespace for types + 显示类型的Qt命名空间 + + + Use code model + 使用代码模式 + + + Use precise breakpoints + 使用精确的断点 + + + Debugger Properties... + 调试器属性... + + + Adjust Column Widths to Contents + 按内容调整列宽 + + + Always Adjust Column Widths to Contents + 总是按内容调整列宽 + + + Use Alternating Row Colors + 使用交替行颜色 + + + Show a Message Box When Receiving a Signal + 当接收到信号时显示消息窗口 + + + Log Time Stamps + 记录时间戳 + + + Verbose Log + 详细日志 + + + Operate by Instruction + 依照命令操作 + + + Dereference Pointers Automatically + 自动去除对指针的引用 + + + Watch Expression "%1" + 监视表达式 "%1" + + + Remove Watch Expression "%1" + 删除监视表达式"%1" + + + 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 + 重新检查调试助手是否可用 + + + Synchronize Breakpoints + 同步断点 + + + 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. + 选中该项使断点同步在每步后都执行。这会让断点信息保持最新,无论断点在载入共享库后是否被解析,但会减慢单步调试的速度。 + + + Break on "throw" + 在抛出(throw)处中断 + + + Break on "catch" + 在捕获(catch)处中断 + + + 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 + 调试时在堆栈视图中显示地址信息 + + + 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 + 创建完整回溯 + + + 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. + 选中此项后调试时将在堆栈视图显示地址信息列。 + + + Use debugging helper + 使用调试助手 + + + Debug debugging helper + 调试调试助手 + + + Recheck debugging helper availability + 重新检查调试助手是否可用 + + + Synchronize breakpoints + 同步断点 + + + Automatically quit debugger + 自动退出调试器 + + + List source files + 列出源文件 + + + Skip known frames + 跳过已知帧 + + + Enable reverse debugging + 启用反向调试 + + + Reload full stack + 重新载入完整堆栈 + + + Execute line + 执行此行 + + + + Debugger::Internal::DebuggingHelperOptionPage + + Debugging Helper + 调试助手 + + + Choose DebuggingHelper Location + 选择调试助手位置 + + + Ctrl+Shift+F11 + Ctrl+Shift+F11 + + + + Debugger::Internal::GdbEngine + + 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进程在正常启动后崩溃。 + + + 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 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 进程读取时发生错误. 例如, 进程可能不在运行。 + + + 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 秒之内未对命令响应。可能由于进程陷入死循环或执行操作的时间超出预期。 +你可以选择继续等待或终止调试。 + + + <unknown> + <未知> + + + Jumped. Stopped. + 跳转。停止。 + + + Application exited with exit code %1 + 程序退出,退出代码 %1 + + + Application exited after receiving signal %1 + 程序接收到信号 %1 后退出 + + + Application exited normally + 程序正常退出 + + + Loading %1... + 正在载入 %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. + 在断点处停止。 + + + <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 + 接收到信号 + + + Stopped: "%1" + 停止: "%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. + 此版本不是Qt Creator官方支持的. +调试非常可能无法很好地工作. +强烈建议使用 gdb 6.7 或者更新的版本. + + + Continuing after temporary stop... + 临时停止后继续... + + + Running requested... + 请求执行... + + + 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... + 请求立即从函数中返回... + + + ATTEMPT BREAKPOINT SYNC + 尝试同步断点 + + + <unknown> + address + End address of loaded module + <未知> + + + Jumping out of bogus frame... + 跳出伪造框架... + + + Dumper version %1, %n custom dumpers found. + + Dumper 版本 %1, %n 找到自定义 dumpers . + + + + 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 二进制档 + + + Launching + 正在启动 + + + Snapshot Creation Error + 快照生成错误 + + + Cannot create snapshot file. + 无法创建快照文件。 + + + Cannot create snapshot: + + 无法创建快照: + + + + Snapshot Reloading + 快照重新载入中 + + + In order to load snapshots the debugged process needs to be stopped. Continuation will not be possible afterwards. +Do you want to stop the debugged process and load the selected snapshot? + 为了载入快照,需要停止调试进程,之后无法继续当前操作。 +你要停止调试进程并载入选中的快照吗? + + + Finished retrieving data + 获取数据完成 + + + crashed + 崩溃 + + + code %1 + 代码%1 + + + Adapter start failed + 适配器启动失败 + + + Setting breakpoints... + 正在设置断点... + + + Starting inferior... + 启动 inferior... + + + Jumped. Stopped + 跳转.停止 + + + Target line hit. Stopped + 目标行到达. 停止 + + + <Unknown> + name + <未知> + + + <Unknown> + meaning + <未知> + + + 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. + 处理队列中的命令。 + + + Stopped. + 停止。 + + + 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 项> + + + + Finished retrieving data. + 获取数据完成。 + + + Debugging helpers not found. + 没有找到调试助手。 + + + Custom dumper setup: %1 + 自定义dumper 安装: %1 + + + <shadowed> + <隐藏> + + + <n/a> + <N/A> + + + <anonymous union> + <匿名联合体> + + + <no information> + About variable's value + <无信息> + + + + Debugger::Internal::GdbOptionsPage + + Gdb + Gdb + + + Choose Gdb Location + 选择Gdb 位置 + + + Choose Location of Startup Script File + 选择启动脚本文件的位置 + + + + Debugger::Internal::ModulesModel + + yes + + + + no + + + + Module name + 模块名称 + + + Symbols read + 符号读取 + + + Start address + 起始地址 + + + End address + 结束地址 + + + + Debugger::Internal::ModulesWindow + + Modules + 模块 + + + Update module list + 更新模块列表 + + + Adjust column widths to contents + 按内容调整列宽 + + + Always adjust column widths to contents + 总是按内容调整列宽 + + + Show source files for module "%1" + 为模块 "%1" 显示源文件 + + + Load symbols for all modules + 为所有模块载入符号 + + + Load symbols for module + 为模块载入符号 + + + Edit file + 编辑文件 + + + Show symbols + 显示符号 + + + Load symbols for module "%1" + 为模块 "%1" 载入符号 + + + Edit file "%1" + 编辑文件 "%1" + + + Show symbols in file "%1" + 显示文件 "%1"中的符号 + + + Update Module List + 更新模块列表 + + + Show Source Files for Module "%1" + 为模块 "%1" 显示源文件 + + + Load Symbols for All Modules + 为所有模块载入符号 + + + Load Symbols for Module + 为模块载入符号 + + + Edit File + 编辑文件 + + + Show Symbols + 显示符号 + + + Load Symbols for Module "%1" + 为模块 "%1" 载入符号 + + + Edit File "%1" + 编辑文件 "%1" + + + Show Symbols in File "%1" + 显示文件 "%1" 中的符号 + + + Adjust Column Widths to Contents + 按内容调整列宽 + + + Always Adjust Column Widths to Contents + 总是按内容调整列宽 + + + Address + 地址 + + + Code + 代码 + + + Symbol + 符号 + + + Symbols in "%1" + "%1" 中的符号 + + + + Debugger::Internal::OutputCollector + + Cannot create temporary file: %1 + 无法创建临时文件: %1 + + + Cannot create FiFo %1: %2 + 无法创建FIFo %1 : %2 + + + Cannot open FiFo %1: %2 + 无法打开FIFo %1 : %2 + + + + Debugger::Internal::RegisterHandler + + Name + 名称 + + + Value (base %1) + 值 (%1进制) + + + + Debugger::Internal::RegisterWindow + + Registers + 寄存器 + + + Open memory editor + 打开内存编辑器 + + + Open memory editor at %1 + 在 %1打开内存编辑器 + + + Reload Register Listing + 重新载入寄存器列表 + + + Open Memory Editor + 打开内存编辑器 + + + Open Memory Editor at %1 + 在 %1 处打开内存编辑器 + + + Hexadecimal + 16进制 + + + Decimal + 10进制 + + + Octal + 8进制 + + + Binary + 2进制 + + + Adjust Column Widths to Contents + 按内容调整列宽 + + + Always Adjust Column Widths to Contents + 总是按内容调整列宽 + + + Adjust column widths to contents + 按内容调整列宽 + + + Always adjust column widths to contents + 总是按内容调整列宽 + + + Reload register listing + 重新载入寄存器列表 + + + + Debugger::Internal::ScriptEngine + + 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. + 停止。 + + + + Debugger::Internal::SourceFilesModel + + Internal name + 内部名称 + + + Full name + 全名 + + + + Debugger::Internal::SourceFilesWindow + + Source Files + 源文件 + + + Reload Data + 重新载入数据 + + + Open File + 打开文件 + + + Open File "%1"' + 打开文件 "%1" + + + Reload data + 重新载入数据 + + + Open file + 打开文件 + + + Open file "%1"' + 打开文件"%1" + + + + Debugger::Internal::StackHandler + + ... + ... + + + <More> + <更多> + + + Address: + 地址: + + + Function: + 函数: + + + File: + 文件: + + + Line: + 行号: + + + From: + 从: + + + To: + 到: + + + Level + 级别 + + + Function + 函数 + + + File + 文件 + + + Line + 行号 + + + Address + 地址 + + + + Debugger::Internal::ThreadsHandler + + Function + 函数 + + + File + 文件 + + + Line + 行号 + + + Address + 地址 + + + 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 + + + + Debugger::Internal::StackWindow + + Stack + + + + Copy Contents to Clipboard + 复制内容到剪贴板 + + + Open Memory Editor + 打开内存编辑器 + + + Open Memory Editor at %1 + 在 %1 处打开内存编辑器 + + + Open Disassembler + 打开反汇编程序 + + + Open Disassembler at %1 + 在 %1 处打开反汇编程序 + + + Adjust Column Widths to Contents + 按内容调整列宽 + + + Always Adjust Column Widths to Contents + 总是按内容调整列宽 + + + Copy contents to clipboard + 复制内容到剪贴板 + + + Open memory editor + 打开内存编辑器 + + + Open memory editor at %1 + 在 %1 处打开内存编辑器 + + + Open disassembler + 打开反汇编程序 + + + Open disassembler at %1 + 在 %1 打开反汇编程序 + + + Adjust column widths to contents + 按内容调整列宽 + + + Always adjust column widths to contents + 总是按内容调整列宽 + + + + Debugger::Internal::StartExternalDialog + + Select Executable + 选择执行档 + + + Executable: + 执行档: + + + Arguments: + 参数: + + + + Debugger::Internal::StartRemoteDialog + + Select Debugger + 选择调试器 + + + Select Executable + 选择执行档 + + + Select Sysroot + 选择Sysroot + + + Select Start Script + 选择启动脚本 + + + + Debugger::Internal::ThreadsWindow + + Thread + 线程 + + + Adjust Column Widths to Contents + 按内容调整列宽 + + + Always Adjust Column Widths to Contents + 总是按内容调整列宽 + + + Adjust column widths to contents + 按内容调整列宽 + + + Always adjust column widths to contents + 总是按内容调整列宽 + + + + Debugger::Internal::WatchData + + <not in scope> + <超出范围> + + + %1 <shadowed %2> + %1 <隐藏了 %2> + + + + Debugger::Internal::WatchHandler + + Expression + 表达式 + + + ... <cut off> + ... <省略> + + + Object Address + 对象地址 + + + Stored Address + 存储地址 + + + Internal ID + 内部ID + + + Generation + 创建 + + + unknown address + 未知地址 + + + %1 object at %2 + 在 %2 的 %1 对象 + + + <Edit> + <编辑> + + + Root + + + + Name + 名称 + + + Locals + 局部的 + + + Tooltip + 工具提示 + + + Watchers + 监视器 + + + Value + + + + Type + 类型 + + + + Debugger::Internal::WatchModel + + decimal + 10进制 + + + hexadecimal + 16进制 + + + binary + 2进制 + + + octal + 8进制 + + + Bald pointer + plain pointer + 普通指针 + + + Latin1 string + Latin1字符串 + + + UTF8 string + UTF8字符串 + + + UTF16 string + UTF16字符串 + + + UCS4 string + UCS4字符串 + + + Name + 名称 + + + Value + + + + Type + 类型 + + + + Debugger::Internal::WatchWindow + + 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 + 选择要监视的部件 + + + Open Memory Editor... + 打开内存编辑器... + + + Open Memory Editor at %1 + 在 %1 处打开内存编辑器 + + + Refresh Code Model Snapshot + 更新代码模型快照 + + + Adjust Column Widths to Contents + 按内容调整列宽 + + + Always Adjust Column Widths to Contents + 总是按内容调整列宽 + + + 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 + 插入新的监视项 + + + + DebuggerPane + + 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 + 使用调试助手 + + + + DependenciesModel + + 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元素缺失。 + + + 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 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"。 +重新构建工程可能有帮助。 + + + + Designer::Internal::FormClassWizardDialog + + Qt Designer Form Class + Qt 设计器界面类 + + + Form Template + 界面模板 + + + Class Details + 类详情 + + + + Designer::Internal::FormClassWizardPage + + %1 - Error + %1 - 错误 + + + Choose a class name + 选择类名 + + + Class + + + + Configure... + 配置... + + + Choose a Class Name + 选择类名 + + + + Designer::Internal::FormEditorPlugin + + Qt + Qt + + + Qt Designer Form + Qt 设计师界面 + + + Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt C++ Project. + 创建一个Qt设计师窗体文件和相应的类(C++头文件和源文件),你可以将此窗体文件和类加入到已经存在的Qt C++项目中。 + + + Creates a Qt Designer form that you can add to a Qt C++ project. This is useful if you already have an existing class for the UI business logic. + 创建一个Qt设计师窗体文件,你可以将此窗体文件和类加入到Qt C++项目中。 此功能在你已有为UI逻辑设计的类的情况下比较有用。 + + + Creates a Qt Designer form file (.ui). + 创建Qt设计师界面文件(.ui). + + + Creates a Qt Designer form file (.ui) with a matching class. + 创建与类匹配的Qt设计师界面文件(.ui)。 + + + Qt Designer Form Class + Qt 设计师界面类 + + + + Designer::Internal::FormEditorW + + Widget Box + 控件盒子 + + + Object Inspector + 对象查看器 + + + Property Editor + 属性编辑器 + + + Signals & Slots Editor + 信号和槽编辑器 + + + Action Editor + Action编辑器 + + + For&m editor + 窗体编辑器(&M) + + + Edit widgets + 编辑部件 + + + F3 + F3 + + + Edit signals/slots + 编辑信号/槽 + + + F4 + F4 + + + Edit buddies + 编辑伙伴 + + + Edit tab order + 编辑 Tab 顺序 + + + Meta+H + Meta+H + + + Ctrl+H + Ctrl+H + + + Ctrl+L + Ctrl+L + + + Meta+L + Meta+L + + + Meta+G + Mega+G + + + Ctrl+G + Ctrl+G + + + Meta+J + Mega+J + + + Ctrl+J + Ctrl+J + + + Views + 视图 + + + Signals && Slots Editor + 信号和槽编辑器 + + + Widget box + 控件盒子 + + + Locked + 锁定 + + + Reset to Default Layout + 重置至默认布局 + + + For&m Editor + 界面编辑器(&m) + + + Edit Widgets + 编辑控件 + + + Edit Signals/Slots + 编辑信号/槽 + + + Edit Buddies + 编辑伙伴 + + + Edit Tab Order + 编辑 Tab 顺序 + + + Ctrl+Alt+R + Ctrl+Alt+R + + + About Qt Designer plugins.... + 关于 Qt 设计师插件... + + + Preview in + 预览于 + + + Designer + 设计师 + + + The image could not be created: %1 + 图片无法创建: %1 + + + + Designer::Internal::FormTemplateWizardPage + + Choose a form template + 选择 界面模板 + + + Choose a Form Template + 选择界面模板 + + + %1 - Error + %1 - 错误 + + + + Designer::Internal::FormWindowFile + + Error saving %1 + 保存 %1出错 + + + Unable to open %1: %2 + 无法打开 %1: %2 + + + Unable to write to %1: %2 + 无法写入 %1: %2 + + + + Designer::Internal::FormWizardDialog + + Qt Designer Form + Qt 设计师文件 + + + Form Template + 界面模板 + + + + Designer::Internal::QtCreatorIntegration + + The class definition of '%1' could not be found in %2. + 类 '%1' 的定义 在 %2中找不到. + + + 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。 + + + + 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: + 组: + + + + ExtensionSystem::Internal::PluginErrorView + + State: + 状态: + + + Error Message: + 错误信息: + + + + ExtensionSystem::Internal::PluginSpecPrivate + + File does not exist: %1 + 文件不存在: %1 + + + Could not open file for read: %1 + 无法打开用于读取的文件: %1 + + + 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 次 + + + + Pattern not found: + 未找到模式: + + + search hit BOTTOM, continuing at TOP + 搜索至末尾, 从开头继续搜索 + + + search hit TOP, continuing at BOTTOM + 搜索至开头, 从结尾处继续搜索 + + + Already at oldest change + 已经处于最旧的改变了 + + + Already at newest change + 已经处于最新的改变了 + + + + FakeVim::Internal::FakeVimOptionPage + + General + 概要 + + + FakeVim + FakeVim + + + + FakeVim::Internal::FakeVimPluginPrivate + + Switch to next file + 切换到下一个文件 + + + Switch to previous file + 切换到前一个文件 + + + Quit FakeVim + 退出FakeVim + + + 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: + 制表符大小: + + + Backspace: + Backspace: + + + 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 + 显示文本标签的位置 + + + + 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> + + + + Find::Internal::FindDialog + + Search for... + 查找... + + + Sc&ope: + 范围(&o): + + + &Search + 搜索(&S) + + + Search &for: + 查找(&f): + + + Close + 关闭 + + + &Case sensitive + 区分大小写(&C) + + + &Whole words only + 全词匹配(&W) + + + Search && Replace + 查找和替换 + + + + 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 + 替换并且查找下一个 + + + Ctrl+= + Ctrl+= + + + Replace && Find Previous + 替换并且查找前一个 + + + Replace All + 替换所有 + + + Case Sensitive + 区分大小写 + + + Whole Words Only + 全词匹配 + + + Use Regular Expressions + 使用正则表达式 + + + + Find::Internal::FindWidget + + Find + 查找 + + + Find: + 查找: + + + Replace with: + 替换为: + + + All + 所有 + + + ... + ... + + + + Find::SearchResultWindow + + Search Results + 搜索结果 + + + No matches found! + 未找到匹配! + + + Expand All + 展开全部 + + + Replace with: + 替换为: + + + Replace all occurrences + 替换所有出现位置 + + + Replace + 替换 + + + + 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 + 从不自动在插件中设置断点 + + + This is either a full absolute 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二进制档的绝对路径或gdb二进制档的名称(将在PATH中搜索)。 + + + When this option is checked, the debugger plugin attempts +to extract full path information for all source files from gdb. This is a +slow process but enables setting breakpoints in files with the same file +name in different directories. + 此项选中后调试器插件将尝试 +从gdb中解析所有源文件的全路径信息。 +此过程比较缓慢, 但将使能 +为不同路径的同名文件设置断点。 + + + Use full path information to set breakpoints + 设置断点时使用全路径信息 + + + 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 + 在插件内的断点的行为 + + + + GenericMakeStep + + Override %1: + 覆盖 %1: + + + Make arguments: + Make 参数: + + + Targets: + 目标: + + + + GenericProject + + <new> + <新建> + + + + GenericProjectManager::Internal::GenericBuildConfigurationFactory + + Create + 新建 + + + Build + 构建 + + + New configuration + 新配置 + + + New Configuration Name: + 新配置名称: + + + + GenericProjectManager::Internal::GenericBuildSettingsWidget + + Configuration Name: + 配置名称: + + + Build directory: + 构建目录: + + + 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 or CMake. This allows you to use Qt Creator as a code editor. + 导入现有的不使用qmake或CMake的工程, 这样你可以将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: + 位置: + + + Location + 位置 + + + Second Page Title + 第二页题目 + + + + Git::Internal::BranchDialog + + Checkout + Checkout + + + Delete + 删除 + + + Unable to find the repository directory for '%1'. + 无法找到仓库目录'%1' + + + Diff + Diff + + + Refresh + 刷新 + + + Delete... + 删除... + + + 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 失败 + + + Would you like to create a local branch '%1' tracking the remote branch '%2'? + 你想创建一个本地 分支 '%1' 来追踪远程 分支 '%2'吗? + + + Create branch + 创建 分支 + + + Failed to create a tracking branch + 创建跟踪 分支 失败 + + + Branches + 分支 + + + General information + 概要 + + + Repository: + 仓库: + + + Remote branches + 远程 branches + + + Remote Branches + 远程 分支 + + + + Git::Internal::ChangeSelectionDialog + + Select a Git commit + 选择一个 Git commit + + + Select Git repository + 选择 Git 仓库 + + + Select a Git Commit + 选择一个 Git commit + + + Select Git Repository + 选择 Git 仓库 + + + Error + 错误 + + + Selected directory is not a Git repository + 选择的目录不是 一个Git 仓库 + + + + Git::Internal::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. + 请注意 git 插件无法与服务器交互,所以类似于“手动ssh身份认证”之类将无法工作。 + + + Unable to determine the repository for %1. + 无法为%1定位代码仓库. + + + Unable to parse the file output. + 无法分析文件输出。 + + + Executing: %1 %2 + + Executing: <executable> <arguments> + 正在执行: %1 %2 + + + + Waiting for data... + 等待数据... + + + Git Diff + + + + Git Diff %1 + + + + Git Diff Branch %1 + Git Diff Branch %1 + + + Git Log + + + + Git Log %1 + + + + Cannot describe '%1'. + 无法描述 '%1'。 + + + Git Show %1 + + + + Git Blame %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 reset %1: %2 + 无法 重置 %1: %2 + + + Unable to reset %n file(s) in %1: %2 + + 无法 重置 %n 个文件到 %1: %2 + + + + Unable to checkout %1 of %2 in %3: %4 + Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message + 无法从代码库 %3 中 检出文件 %2 的版本 %1: %4 + + + Unable to find parent revisions of %1 in %2: %3 + Failed to find parent revisions of a SHA1 for "annotate previous" + 无法在 %2 找到 %1 的父版本 : %3 + + + Invalid revision + 无效版本 + + + Unable to retrieve branch of %1: %2 + 无法获取 %1 的分支: %2 + + + Unable to retrieve top revision of %1: %2 + 无法获取 %1 的顶层版本: %2 + + + Unable to describe revision %1 in %2: %3 + 无法描述 %2 中的 %1: %3 + + + 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 + + + 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 + 修改 + + + You have modified files. Would you like to stash your changes? + stash 临时存储 + 你修改了文件,你想要 stash 你的修改么? + + + Unable to obtain the status: %1 + 无法获得状态: %1 + + + The repository %1 is not initialized yet. + 仓库 %1 还没有被初始化。 + + + You did not checkout a branch. + 你没有 checkout 分支。 + + + Committed %n file(s). + + + Commit 了 %n 个文件. + + + + + Unable to commit %n file(s): %1 + + + 无法 commit %n 个文件: %1 + + + + + Revert + 还原 + + + 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. + 没有被修改的文件。 + + + + Git::Internal::GitPlugin + + &Git + + + + Diff Current File + Diff 当前文件 + + + Diff "%1" + + + + 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 + + + + Blame + + + + Blame for "%1" + "%1"的 blame + + + Alt+G,Alt+B + Alt+G,Alt+B + + + Undo Changes + 撤销修改 + + + Undo Changes for "%1" + 撤销对"%1"的修改 + + + Alt+G,Alt+U + Alt+G,Alt+U + + + Stage File for Commit + 提交的Stage文件 + + + Stage "%1" for Commit + 提交的Stage "%1" + + + Alt+G,Alt+A + Alt+G,Alt+A + + + Unstage File from Commit + 从提交unstage文件 + + + Unstage "%1" from Commit + 从提交unstage文件 "%1" + + + Diff Current Project + Diff 当前项目 + + + Diff Project "%1" + Diff 项目 "%1" + + + 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... + Stashes... + + + Subversion + Subversion + + + Log + Log + + + Fetch + Fetch + + + Would you like to revert all pending changes to the repository +%1? + 你想要还原对仓库 %1 +的所有未处理的修改吗? + + + Unable to retrieve file list + 无法获取文件列表 + + + Repository clean + 代码仓库清理 + + + 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. + 保存当前状态。 + + + Stash Snapshot... + + + + Pull + Pull + + + Stash Pop + Stash Pop + + + Restores changes saved to the stash list using "Stash". + 使用 "Stash" 还原保存在临时存储列表中的修改。 + + + Commit... + Commit... + + + Alt+G,Alt+C + Alt+G,Alt+C + + + Push + Push + + + Branches... + Branches... + + + List Stashes + 列出临时分支 + + + Show Commit... + 显示提交... + + + Commit + Commit + + + Diff Selected Files + Diff 选中的文件 + + + &Undo + 撤销(&U) + + + &Redo + 重做(&R) + + + Could not find working directory + 找不到工作文件夹 + + + Revert + Revert + + + Would you like to revert all pending changes to the project? + 你想复原所有未执行的改变到项目中么? + + + Another submit is currently being executed. + 另一个提交操作正在执行。 + + + Cannot create temporary file: %1 + 无法创建临时文件: %1 + + + Closing git editor + 关闭 git 编辑器 + + + Do you want to commit the change? + 你想提交此修改吗? + + + The commit message check failed. Do you want to commit the change? + 提交信息检查失败,你想要提交此修改吗? + + + + Git::Internal::GitSettings + + The binary '%1' could not be located in the path '%2' + 无法在 '%2' 定位二进制档 '%1' + + + + Git::Internal::GitSubmitEditor + + Git Commit + Git Commit + + + + Git::Internal::GitSubmitPanel + + General Information + 概要 + + + Repository: + 仓库: + + + repository + 仓库 + + + Branch: + 分支: + + + branch + 分支 + + + Commit Information + Commit 信息 + + + Author: + 作者: + + + Email: + Email: + + + + Git::Internal::LocalBranchModel + + <New branch> + <新的分支> + + + Type to create a new branch + 创建新分支 + + + + Git::Internal::SettingsPage + + 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): + 超时 (秒): + + + Omit date from annotation output + 忽视注释输出的日期 + + + Miscellaneous + 其他 + + + Timeout: + 超时时间: + + + s + + + + Prompt on submit + 提交时弹出提示 + + + Ignore whitespace changes in annotation + 忽略注释中的空格变化 + + + Use "patience diff" algorithm + 使用 "patience diff” 算法 + + + Pull with rebase + git pull --rebase + + + Environment Variables + 环境变量 + + + From System + 从系统选择 + + + + GitCommand + + +'%1' failed (exit code %2). + + +'%1' 失败 (退出代码 %2)。 + + + + +'%1' completed (exit code %2). + + +'%1' 完成 (退出代码 %2)。 + + + + + HelloWorld::Internal::HelloWorldPlugin + + Say "&Hello World!" + 说 "世界,你好!(&H)" + + + &Hello World + 世界,你好!(&H) + + + Hello world! + 世界,你好! + + + Hello World PushButton! + "世界,你好!"按钮! + + + Hello World! + 世界,你好! + + + Hello World! Beautiful day today, isn't it? + 世界,你好!今天是个好天气,不是吗? + + + + HelloWorld::Internal::HelloWorldWindow + + Focus me to activate my context! + 焦点移至此处激活上下文! + + + Hello, world! + 世界,你好! + + + + Help::Internal::CentralWidget + + Add new page + 添加新页 + + + Print Document + 打印文档 + + + unknown + 未知 + + + Add New Page + 添加新页 + + + Close This Page + 关闭本页 + + + Close Other Pages + 关闭其他页 + + + Add Bookmark for this Page... + 为此页添加书签... + + + + Help::Internal::DocSettingsPage + + Documentation + 文档 + + + Help + 帮助 + + + Add Documentation + 添加文档 + + + Qt Help Files (*.qch) + Qt 帮助文件 (*.qch) + + + The file %1 is not a valid Qt Help file! + 文件 %1 不是一个有效的Qt帮助文件! + + + Cannot unregister documentation file %1! + 无法注销文件 %1 ! + + + + Help::Internal::FilterSettingsPage + + Filters + 过滤器 + + + Help + 帮助 + + + + Help::Internal::HelpIndexFilter + + Help index + 帮助索引 + + + + Help::Internal::HelpMode + + Help + 帮助 + + + + Help::Internal::HelpPlugin + + Contents + 目录 + + + Index + 索引 + + + Search + 查找 + + + Bookmarks + 书签 + + + Home + 主页 + + + Previous + 上一个 + + + Next + 下一个 + + + Add Bookmark + 添加书签 + + + Previous Page + 上一页 + + + Next Page + 下一页 + + + Context Help + 上下文相关帮助 + + + 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 + 关闭当前页 + + + Unfiltered + 未过滤 + + + <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> + <html><head><title>没有文档</title></head><body><br/><center><b>%1</b><br/>没有可用文档.</center></body></html> + + + Filtered by: + 过滤方式: + + + + Help::Internal::SearchWidget + + &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 + 重新载入 + + + + HelpViewer + + Open Link in New Tab + 在新页面打开链接 + + + <title>about:blank</title> + <title>空白页</title> + + + <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> + + + Help + 帮助 + + + Unable to launch external application. + + 无法执行外部应用。 + + + + OK + OK + + + Copy &Link Location + 复制链接位置(&L) + + + Open Link in New Tab Ctrl+LMB + 在新页面打开链接 Ctrl+LMB + + + + 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 + 打开文件 + + + Bauhaus + MainWindowClass + + + + &File + 文件(&F) + + + &New... + 新建(&N)... + + + Ctrl+N + + + + &Open... + 打开(&O)... + + + Ctrl+O + Ctrl+O + + + Recent Files + 最近使用的文件 + + + &Save + 保存(&S) + + + Ctrl+S + + + + Save &As... + 另存为(&A)... + + + &Preview + 预览(&P) + + + Ctrl+R + Ctrl+R + + + &Preview with Debug + 带调试的预览(&P) + + + Ctrl+D + + + + &Quit + 退出(&Q) + + + &Edit + 编辑(&E) + + + Ctrl+Z + + + + Ctrl+Y + + + + Ctrl+Shift+Z + + + + &Copy + 复制(&C) + + + &Cut + 剪切(&C) + + + &Paste + 粘贴(&P) + + + &Delete + 删除(&D) + + + Del + + + + Backspace + + + + &View + 视图(&V) + + + &Help + 帮助(&H) + + + &About... + 关于(&A)... + + + Properties + 属性 + + + Could not open file <%1> + 无法打开文件 <%1> + + + Qml Errors: + QML错误: + + + +%1 %2:%3 - %4 + + + + +%1:%2 - %3 + + + + 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/gdbmacros/gdbmacros.cpp + +in your .pro file. + 被调试的程序未包含用于正确显示Qt数据类型的信息。 + +请确保使用添加类似如下信息 + +SOURCES *= .../ide/main/bin/gdbmacros/gdbmacros.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 + 清空 + + + + 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 Number: + 改变数值: + + + + Perforce::Internal::PendingChangesDialog + + P4 Pending Changes + P4未完成的修改 + + + Submit + 提交 + + + Cancel + 取消 + + + Change %1: %2 + 修改 %1: %2 + + + + Perforce::Internal::PerforcePlugin + + &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 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... + 未完成的修改... + + + 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" + Annotate "%1" + + + Annotate... + 注释... + + + Filelog Current File + Filelog当前文件 + + + Filelog "%1" + Filelog "%1" + + + Alt+P,Alt+F + Alt+P,Alt+F + + + 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 还原 + + + 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 %1 + + + + p4 filelog + + + + p4 filelog %1 + + + + Executing: %1 + + 正在执行: %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. + 进程异常终止。 + + + Update Current Project + 更新当前项目 + + + 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 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 + 环境变量 + + + + 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 + 内部错误:没有可进行扩展初始化的插件实例 + + + + 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 + + + + 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" + 无法启动进程"%1" + + + + ProjectExplorer::BuildManager + + Finished %1 of %n build steps + + 完成 %n 之中的 %1 个构建步骤 + + + + Build System + Category for build system isses listened under 'Build Issues' + 构建系统 + + + 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> + + + + 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> + <变量> + + + <VALUE> + <值> + + + + ProjectExplorer::EnvironmentWidget + + &Edit + 编辑(&E) + + + &Add + 添加(&A) + + + &Reset + 重置(&R) + + + &Unset + 取消设置(&U) + + + 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 + 任何项目中的文件 + + + + ProjectExplorer::Internal::AllProjectsFind + + All Projects + 所有项目 + + + 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 + 删除 + + + 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 clean step + 添加清除步骤 + + + Add build step + 添加构建步骤 + + + Remove clean 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 + 不要关闭 + + + Do you want to cancel the build process and close Qt Creator anyway? + 你无论如何都要停止构建进程并且关闭Qt Creator 吗? + + + + ProjectExplorer::Internal::CurrentProjectFilter + + Files in current project + 当前项目中的文件 + + + + ProjectExplorer::Internal::CurrentProjectFind + + Current Project + 当前项目 + + + File &pattern: + 文件模式(&p): + + + + ProjectExplorer::Internal::CustomExecutableConfigurationWidget + + Name: + 名称: + + + Executable: + 执行档: + + + Arguments: + 参数: + + + Working Directory: + 工作目录: + + + Run in &Terminal + 在终端中运行(&T) + + + 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: + 默认文件编码: + + + + ProjectExplorer::Internal::FolderNavigationWidgetFactory + + File System + 文件系统 + + + 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://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">What is a Session?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">什么是会话?</a> + + + &New + 新建(&N) + + + &Rename + 重命名(&R) + + + C&lone + 克隆(&l) + + + &Delete + 删除(&D) + + + &Switch to + 切换至(&S) + + + New session name + 新会话名称 + + + Rename session + 重命名会话 + + + <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">什么是会话?</a> + + + + 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 + 自定义进程步骤 + + + Custom Process Step + item in combobox + 自定义处理步骤 + + + + ProjectExplorer::Internal::ProcessStepConfigWidget + + <b>%1</b> %2 %3 %4 + <b>%1</b> %2 %3 %4 + + + (disabled) + (禁用) + + + + ProjectExplorer::Internal::ProcessStepWidget + + Name: + 名称: + + + Command: + 命令: + + + Working Directory: + 工作目录: + + + Command Arguments: + 命令参数: + + + Enable Custom Process Step + 启用自定义进程步骤 + + + Enable custom process step + 启用自定义处理步骤 + + + Working directory: + 工作目录: + + + Command arguments: + 命令参数: + + + + ProjectExplorer::Internal::ProjectExplorerSettingsPage + + Build and Run + 构建和运行 + + + General + 概要 + + + Projects + 项目 + + + + ProjectExplorer::Internal::ProjectFileFactory + + Project File Factory + ProjectExplorer::ProjectFileFactory display name. + 项目文件工厂 + + + Could not open the following project: '%1' + 无法打开以下项目: '%1' + + + + ProjectExplorer::Internal::ProjectFileWizardExtension + + <None> + No version control system selected +---------- +No project selected + <无> + + + 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 + 隐藏生成的文件 + + + Synchronize with Editor + 与编辑器同步 + + + + ProjectExplorer::Internal::ProjectTreeWidgetFactory + + Projects + 项目 + + + Filter tree + 过滤视图 + + + + ProjectExplorer::Internal::ProjectWindow + + Active Build and Run Configurations + 激活构建和运行配置 + + + No project loaded. + 没有载入项目。 + + + + ProjectExplorer::Internal::ProjectWizardPage + + Add to &VCS (%1) + 添加到VCS(%1)(&V) + + + Summary + 汇总 + + + 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> + + + + ProjectExplorer::Internal::RunSettingsPropertiesPage + + + + + + + + - + - + + + Edit run configuration: + 编辑运行配置: + + + Run configuration: + 运行配置: + + + + ProjectExplorer::Internal::SessionFile + + Session + 会话 + + + Untitled + default file name to display + 未命名 + + + + ProjectExplorer::Internal::TaskDelegate + + File not found: %1 + 未找到文件: %1 + + + + ProjectExplorer::Internal::TaskWindow + + Build Issues + 构建问题 + + + &Copy + 复制(&C) + + + Show Warnings + 显示警告 + + + + ProjectExplorer::Internal::WinGuiProcess + + The process could not be started! + 无法启动进程! + + + Cannot retrieve debugging output! + 无法获取调试输出! + + + + ProjectExplorer::Internal::WizardPage + + Project management + 项目管理 + + + &Add to Project + 添加至项目(&A) + + + &Project + 项目(&P) + + + Add to &version control + 添加至版本控制系统(&v) + + + The following files will be added: + + + + + 以下文件将被添加: + + + + + + + Add to &project: + 添加至项目(&p): + + + Add to &version control: + 添加至版本控制系统(&v): + + + + ProjectExplorer::ProjectExplorerPlugin + + Projects + 项目 + + + &Build + 构建(&B) + + + &Debug + 调试(&D) + + + &Start Debugging + 开始调试(&S) + + + Open With + 用...打开 + + + 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 + 重新构建所有项目 + + + Clean All + 清理所有项目 + + + Build Project + 构建项目 + + + Build Project "%1" + 构建项目 "%1" + + + Ctrl+B + Ctrl+B + + + Rebuild Project + 重新构建项目 + + + Rebuild Project "%1" + 重新构建项目 "%1" + + + Clean Project + 清理项目 + + + Clean Project "%1" + 清理项目 "%1" + + + Build Without Dependencies + 忽略依赖关系来构建 + + + Rebuild Without Dependencies + 忽略依赖关系重新构建 + + + Clean Without Dependencies + 忽略依赖关系来清除 + + + Run + 运行 + + + Ctrl+R + Ctrl+R + + + Set Run Configuration + 设定运行配置 + + + Cancel Build + 取消构建 + + + Start Debugging + 开始调试 + + + F5 + F5 + + + Add New... + 添加新文件... + + + Add Existing Files... + 添加现有文件... + + + Remove File... + 删除文件... + + + Rename + 重命名 + + + Open Build/Run Target Selector... + 打开 构建/运行 目标选择器... + + + Ctrl+T + + + + Load Project + 载入项目 + + + New Project + Title of dialog + 新建项目 + + + Always save files before build + 构建之前总是先保存文件 + + + Cannot run without a project. + 无法在一个项目外运行. + + + Cannot debug without a project. + 无法在一个项目外调试. + + + New File + Title of dialog + 新建文件 + + + Add Existing Files + 添加现有文件 + + + Could not add following files to project %1: + + 无法添加以下文件到项目 %1 : + + + + Add files to project failed + 添加文件到项目失败 + + + Add to Version Control + 添加至版本控制系统 + + + Add files +%1 +to version control (%2)? + 添加文件 +%1 +至版本控制系统 (%2) ? + + + Could not add following files to version control (%1) + + 无法添加以下文件到版本控制系统 (%1) + + + + 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 + + + Error while saving session + 保存会话时发生错误 + + + Could not save session to file %1 + 无法保存会话至文件 %1 + + + Qt Creator + Qt Creator + + + Untitled + 未命名 + + + Session ('%1') + 会话 ('%1') + + + + QMakeStep + + QMake Build Configuration: + qmake 构建配置: + + + Additional arguments: + 额外的参数: + + + Effective qmake call: + 有效的qmake调用: + + + qmake Build Configuration: + qmake 构建配置: + + + qmake build configuration: + qmake 构建配置: + + + Debug + + + + Release + + + + + 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: + 别名: + + + + Qt4ProjectManager::Internal::ConsoleAppWizard + + Qt4 Console Application + Qt4 控制台应用 + + + Creates a Qt4 console application. + 创建一个Qt4 控制台应用。 + + + Qt Console Application + Qt4 控制台应用 + + + 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 控制台应用。 + + + + Qt4ProjectManager::Internal::ConsoleAppWizardDialog + + This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. + 本向导创建一个Qt4控制台应用项目,本项目继承自QCoreApplication 没有图形界面。 + + + + Qt4ProjectManager::Internal::DesignerExternalEditor + + Qt Designer is not responding (%1). + Qt设计师无响应 (%1)。 + + + Unable to create server socket: %1 + 无法创建服务器套接字: %1 + + + + Qt4ProjectManager::Internal::EmbeddedPropertiesPanel + + Embedded Linux + 嵌入式 Linux + + + + Qt4ProjectManager::Internal::EmptyProjectWizard + + 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 项目. + + + + Qt4ProjectManager::Internal::EmptyProjectWizardDialog + + This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. + 本向导将创建一个空的Qt4项目,稍后使用其他向导添加文件. + + + + Qt4ProjectManager::Internal::ExternalQtEditor + + Unable to start "%1" + 无法启动"%1" + + + The application "%1" could not be found. + 找不到应用 "%1"。 + + + + 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 + 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 + + + + Qt4ProjectManager::Internal::GuiAppWizardDialog + + This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. + 本向导将创建一个Qt4 GUI应用项目,应用程序默认继承自QApplication并且包含一个空白的窗体。 + + + Details + 详情 + + + + Qt4ProjectManager::Internal::LibraryWizard + + 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 Qt based C++ Library. + 创建 一个基于Qt的 C++ 库. + + + Creates a C++ Library. + 创建一个C++ 库 + + + + Qt4ProjectManager::Internal::LibraryWizardDialog + + Shared library + 共享库 + + + Statically linked library + 静态链接库 + + + Qt 4 plugin + Qt 4 插件 + + + Type + 类型 + + + This wizard generates a C++ library project. + 本向导将创建一个C++ 库项目. + + + Details + 详情 + + + + Qt4ProjectManager::Internal::ModulesPage + + Select required modules + 选择需要的模块 + + + Select the modules you want to include in your project. The recommended modules for this project are selected by default. + 选择你项目需要的模块,本项目的建议模块已经被默认选中. + + + + Qt4ProjectManager::Internal::ProEditor + + New + 新建 + + + Remove + 删除 + + + Up + 上移 + + + Down + 下移 + + + Cut + 剪切 + + + Copy + 复制 + + + Paste + 粘贴 + + + Ctrl+X + Ctrl+X + + + Ctrl+C + Ctrl+C + + + Ctrl+V + Ctrl+V + + + Add Variable + 添加参数 + + + Add Scope + 添加范围 + + + Add Block + 添加段落 + + + + Qt4ProjectManager::Internal::ProEditorModel + + <Global Scope> + <全局范围> + + + Change Item + 改变项目 + + + Change Variable Assignment + 改变参数的复制 + + + Change Variable Type + 改变参数的类型 + + + Change Scope Condition + 改变范围条件 + + + Change Expression + 改变表达式 + + + Move Item + 向上移动 + + + Remove Item + 删除项目 + + + Insert Item + 插入项目 + + + + Qt4ProjectManager::Internal::ProjectLoadWizard + + 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 + 项目设置 + + + Targets + 目标 + + + + Qt4ProjectManager::Internal::Qt4BuildEnvironmentWidget + + Clear system environment + 清除系统环境变量 + + + Build Environment + 构建环境 + + + + Qt4ProjectManager::Internal::Qt4PriFileNode + + Headers + 头文件 + + + Sources + 源文件 + + + Forms + 界面文件 + + + Resources + 资源文件 + + + Other files + 其他文件 + + + Failed! + 发生错误! + + + Could not open the file for edit with SCC. + 无法使用SCC打开用于编辑的文件. + + + Could not set permissions to writable. + 无法设置可写权限。 + + + There are unsaved changes for project file %1. + 项目文件 %1 中还有未保存的改变. + + + Could not write project file %1. + 无法写入工程文件 %1。 + + + Error while reading PRO file %1: %2 + 打开PRO文件%1出错: %2 + + + Error while parsing file %1. Giving up. + 分析文件 '%1'时发生错误。中止。 + + + Error while changing pro file %1. + 修改pro文件 %1 时发生错误 + + + + Qt4ProjectManager::Internal::Qt4ProFileNode + + Error while parsing file %1. Giving up. + 解析文件 '%1'时发生错误,终止。 + + + Could not find .pro file for sub dir '%1' in '%2' + 在'%2'的子目录'%1' 中找不到.pro文件 + + + + Qt4ProjectManager::Internal::Qt4ProjectConfigWidget + + 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>构建 + + + General + 概要 + + + 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: + 构建目录: + + + + Qt4ProjectManager::Internal::Qt4ProjectManagerPlugin + + Run qmake + 执行qmake + + + Build + 构建 + + + Run qmake in %1 + 在%1执行qmake + + + Build in %1 + 在%1构建 + + + + Qt4ProjectManager::Internal::Qt4RunConfiguration + + Qt4RunConfiguration + Qt4 运行配置 + + + Clean Environment + 清除时的环境变量 + + + System Environment + 系统环境变量 + + + Build Environment + 构建时的环境变量 + + + Qt4 RunConfiguration + Qt4 运行配置 + + + Could not parse %1. The Qt4 run configuration %2 can not be started. + 无法分析 %1. Qt4 运行配置 %2 无法被启动. + + + + Qt4ProjectManager::Internal::Qt4RunConfigurationWidget + + 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 + 在终端中运行 + + + Run Environment + 运行时的环境变量 + + + Base environment for this runconfiguration: + 运行配置的基本环境变量: + + + Clean Environment + 清理时的环境变量 + + + System Environment + 系统环境变量 + + + Build Environment + 构建时的环境变量 + + + Name: + 名称: + + + Executable: + 执行档: + + + Select the working directory + 选择工作目录 + + + Reset to default + 重置为默认 + + + Working Directory: + 工作目录: + + + Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) + 使用框架的调试版 (DYLD_IMAGE_SUFFIX=_debug) + + + + Qt4ProjectManager::Internal::QtOptionsPageWidget + + <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 + 手动设置 + + + Building helpers + 构建助手 + + + <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 + 塞班 + + + Maemo + Qt Version is meant for Maemo + + + + 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 + + + + Qt4ProjectManager::Internal::QtVersionManager + + 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: + 调试助手: + + + + Qt4ProjectManager::Internal::QtWizard + + The project %1 could not be opened. + 无法打开项目 %1 + + + + Qt4ProjectManager::Internal::ValueEditor + + Edit Variable + 编辑变量 + + + Variable Name: + 变量名称: + + + Assignment Operator: + 赋值运算符: + + + Variable: + 变量: + + + Append (+=) + 添加 (+=) + + + Remove (-=) + 删除(-=) + + + Replace (~=) + 覆盖(~=) + + + Set (=) + 设置(=) + + + Select Item + 选择项目 + + + Edit Item + 编辑项目 + + + Select Items + 选择项目 + + + Edit Items + 编辑项目 + + + New + 新建 + + + Remove + 删除 + + + Edit Values + 编辑数值 + + + Edit %1 + 编辑%1 + + + Edit Scope + 编辑范围 + + + Edit Advanced Expression + 编辑高级表达式 + + + + Qt4ProjectManager::MakeStep + + Make + Qt4 MakeStep display name. + + + + 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> + + + <font color="#0000ff"><b>No Makefile found, assuming project is clean.</b></font> + <font color="#0000ff"><b>找不到 Makefile , 假想项目是干净的.</b></font> + + + + Qt4ProjectManager::MakeStepConfigWidget + + Override %1: + 覆盖 %1: + + + <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 + + + + Qt4ProjectManager::Internal::MakeStepFactory + + Make + + + + + Qt4ProjectManager::QMakeStep + + +<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 display name. + + + + Configuration is faulty, please check the Build Issues view for details. + 配置有误,请检查“构建问题”视图来获得更多信息. + + + Configuration unchanged, skipping qmake step. + 配置没有改变, 跳过 qmake 步骤. + + + <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> + + + + Qt4ProjectManager::QMakeStepConfigWidget + + <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版本 + + + <b>qmake:</b> No Qt version set. Cannot run qmake. + <b>qmake:</b> 没有设置Qt版本,无法运行qmake. + + + <b>qmake:</b> %1 %2 + + + + + Qt4ProjectManager::Qt4Manager + + Loading project %1 ... + 载入项目 %1 ... + + + Failed opening project '%1': Project file does not exist + 打开项目 '%1'失败: 工程文件不存在 + + + Failed opening project + 打开项目失败 + + + Failed opening project '%1': Project already open + 打开项目 '%1'失败:项目已经被打开 + + + Opening %1 ... + 正在打开%1 ... + + + Done opening project + 完成打开项目 + + + + Qt4ProjectManager::QtVersionManager + + <not found> + <未找到> + + + Qt in PATH + PATH中的 Qt + + + Name: + 名称: + + + Source: + 源: + + + mkspec: + mkspec: + + + qmake: + qmake: + + + Default: + 默认: + + + Compiler: + 编译器: + + + Version: + 版本: + + + Debugging helper: + 调试助手: + + + + 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 + 编辑管理器 + + + + 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 + 帮助Qt3到Qt4移植的类 + + + 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: + 文件类型: + + + + Locator::Internal::FileSystemFilter + + Files in file system + 在文件系统中的文件 + + + + Locator::Internal::FileSystemFilterOptions + + Filter configuration + 过滤器设置 + + + Prefix: + 前缀: + + + Limit to prefix + 限制前缀 + + + Include hidden files + 包括隐藏文件 + + + Filter: + 过滤器: + + + + Locator::Internal::OpenDocumentsFilter + + Open documents + 打开的文档 + + + + Locator::Internal::LocatorFiltersFilter + + Available filters + 可使用的过滤器 + + + + Locator::Internal::LocatorPlugin + + 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 + 固定字符串 + + + Capture %1: + Capture %1: + + + Match: + 匹配: + + + Regular Expression + 正则表达式 + + + Enter pattern from code... + 从代码中输入模式... + + + Clear patterns + 清除模式 + + + Clear texts + 清除文字 + + + Enter pattern from code + 从代码中输入模式 + + + Pattern + 模式 + + + + ResourceEditor::Internal::ResourceEditorPlugin + + 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资源文件。 + + + &Undo + 撤销(&U) + + + &Redo + 重做(&R) + + + + ResourceEditor::Internal::ResourceEditorW + + 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 + 添加前缀 + + + 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 + 打开文件 + + + 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'函数断点: + + + + StartRemoteDialog + + Start Debugger + 启动调试器 + + + Host and port: + 主机和端口号: + + + Architecture: + 体系结构: + + + Use server start script: + 使用服务器启动脚本: + + + Server start script: + 服务器启动脚本: + + + Debugger: + 调试器: + + + Local executable: + 本地执行档: + + + Sysroot: + 系统根目录: + + + + 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 + + + + 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" + + + + 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 + 项目状态 + + + 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 + 还原仓库 + + + Would you like to revert all changes to the 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 项目 + + + Commit Project "%1" + Commit 项目 "%1" + + + Diff Repository + Diff 仓库 + + + Repository Status + 仓库 Status + + + Log Repository + Log 仓库 + + + Update Repository + Update 仓库 + + + 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 + + %1 found + 找到 %1 + + + List of comma separated wildcard filters + 以逗号分隔的通配符过滤器列表 + + + Use regular e&xpressions + 使用正则表达式(&x) + + + Use Regular E&xpressions + 使用正则表达式(&x) + + + + TextEditor::BaseTextDocument + + untitled + 未命名 + + + <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 + 选择编码 + + + + 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) + + + Tab key performs auto-indent: + 跳格键提供自动缩进: + + + 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 + 仅用于行首空白 + + + + TextEditor::DisplaySettingsPage + + Display + 显示 + + + Display line &numbers + 显示行号(&N) + + + Display &folding markers + 显示折叠标记(&F) + + + Show tabs and spaces. + 显示制表符和空白. + + + &Visualize whitespace + 标示空白(&V) + + + Highlight current &line + 高亮显示当前行(&l) + + + Text Wrapping + 文字折行 + + + Enable text &wrapping + 开启文字折行(&w) + + + Display right &margin at column: + 显示右边分界(&m)在列: + + + Highlight &blocks + 高亮显示段落(&b) + + + Animate matching parentheses + 动画显示对应的括号 + + + Navigation + 导航 + + + Enable &mouse navigation + 开启鼠标导航(&M) + + + Mark text changes + 标记文本改变 + + + Mark &text changes + 标记文本改变(&t) + + + &Animate matching parentheses + 动画显示对应的括号(&A) + + + Auto-fold first &comment + 自动折叠开头的注释(&c) + + + Center &cursor on scroll + 滚动时居中光标(&c) + + + + 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 + 当前文件 + + + + TextEditor::Internal::FindInFiles + + Files on Disk + 磁盘上的文件 + + + Files on File System + 在文件系统中的文件 + + + &Directory: + 目录(&D): + + + &Browse + 浏览(&B) + + + File &pattern: + 文件模式(&p): + + + Directory to search + 搜索目录 + + + + TextEditor::Internal::FontSettingsPage + + Family: + 字型: + + + Size: + 字号: + + + Font + 字体 + + + Color Scheme + 配色方案 + + + Antialias + 抗锯齿 + + + Copy... + 复制... + + + Delete + 删除 + + + % + + + + Zoom: + 缩放: + + + + TextEditor::Internal::LineNumberFilter + + Line in current document + 当前文档内的行 + + + Line %1 + 行%1 + + + + 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 + 概要 + + + 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 + + + + 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+/ + + + Delete &Line + 删除行(&L) + + + Reset Font Size + 重置字号 + + + Ctrl+0 + + + + Go to Block Start + 移至段落开头 + + + Go to Block End + 移至段落结尾 + + + Go to Block Start With Selection + 移至选中区域开头 + + + Go to Block End With Selection + 移至选中区域结尾 + + + Shift+Del + Shift+Del + + + &Rewrap Paragraph + 段落重新折行(&R) + + + %1+E, %2+V + %1+E, %2+V + + + %1+E, %2+W + %1+E, %2+W + + + Cut &Line + 剪切行(&L) + + + Collapse + 折叠 + + + Ctrl+< + Ctrl+< + + + Expand + 展开 + + + Ctrl+> + Ctrl+> + + + (Un)&Collapse All + (取消)折叠所有代码(&C) + + + Increase Font Size + 增大字号 + + + Ctrl++ + Ctrl++ + + + Decrease Font Size + 减小字号 + + + Ctrl+- + Ctrl+- + + + Goto Block Start + 移至段落开头 + + + Ctrl+[ + Ctrl+[ + + + Goto Block End + 移至段落结尾 + + + Ctrl+] + Ctrl+] + + + Goto Block Start With Selection + 移至选中区域开头 + + + Ctrl+{ + Ctrl+{ + + + Goto 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 + + + Goto Line Start + 移至行首 + + + Goto Line End + 移至行尾 + + + Goto Next Line + 移到下一行 + + + Goto Previous Line + 移到前一行 + + + Goto Previous Character + 移至上一字符 + + + Goto Next Character + 移至下一字符 + + + Goto Previous Word + 移至上一单词 + + + Goto Next Word + 移至下一单词 + + + Goto Line Start With Selection + 选中并移至行首 + + + Goto Line End With Selection + 选中并移至行尾 + + + Goto Next Line With Selection + 选中并移至下一行 + + + Goto Previous Line With Selection + 选中并移至上一行 + + + Goto Previous Character With Selection + 选中并移至上一字符 + + + Goto Next Character With Selection + 选中并移至下一字符 + + + Goto Previous Word With Selection + 选中并移至上一单词 + + + Goto Next Word With Selection + 选中并移至下一单词 + + + <line number> + <行号> + + + + TextEditor::TextEditorSettings + + Text + 文本 + + + Link + 链接 + + + Selection + 选择 + + + Line Number + 行号 + + + Search Result + 搜索结果 + + + Search Scope + 搜索范围 + + + Parentheses + 括号 + + + Current Line + 当前行 + + + Current Line Number + 当前行号 + + + Occurrences + 出现位置 + + + Unused Occurrence + 未使用的出现位置 + + + Renaming Occurrence + 重命名出现位置 + + + Number + + + + String + 字符串 + + + Type + 类型 + + + Keyword + 关键字 + + + Operator + 运算符 + + + Preprocessor + 预处理程序 + + + Label + 标签 + + + Comment + 注释 + + + Doxygen Comment + Doxgen注释 + + + Doxygen Tag + Doxgen标签 + + + Visual Whitespace + 标示空白 + + + Disabled Code + 禁用的代码 + + + Added Line + 添加的行 + + + Removed Line + 删除的行 + + + Diff File + Diff文件 + + + Diff Location + Diff路径 + + + Text Editor + 文本编辑器 + + + Behavior + 行为 + + + Display + 显示 + + + + TopicChooser + + Choose a topic for <b>%1</b>: + 为<b>%1</b>选择一个标题: + + + Choose Topic + 选择标题 + + + &Topics + 标题(&T) + + + &Display + 显示(&D) + + + &Close + 关闭(&C) + + + + VCSBase + + Version Control + 版本控制 + + + Common + 共同 + + + Project from Version Control + 项目来自于版本控制系统 + + + + VCSBase::Internal::NickNameDialog + + Name + 名称 + + + E-mail + 电子邮件 + + + Alias + 别名 + + + Alias e-mail + 别名电子邮件 + + + Cannot open '%1': %2 + 无法打开'%1' : %2 + + + + 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 + 提交信息检查失败 + + + Executing %1 + 正在执行 %1 + + + + Executing [%1] %2 + 正在执行 [%1] %2 + + + 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 + 版本控制 + + + Would you like to remove this file from the version control system (%1)? +Note: This might remove the local file. + 你想从版本控制系统中删除此文件么 (%1)? +注意: 本地文件有可能被删除. + + + + ViewDialog + + Send to Codepaster + 发送至CodePaster + + + &Username: + 用户名(&U): + + + <Username> + <用户名> + + + &Description: + 说明(&D): + + + <Description> + <说明> + + + Patch 1 + Patch 1 + + + Patch 2 + Patch 2 + + + Protocol: + 协议: + + + Parts to send to server + 发送到服务器的部分 + + + <!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:10pt; 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;Comment&gt;</span></p></body></html> + + + + Parts to Send to Server + 发送到服务器的部分 + + + + mainClass + + main + 主界面 + + + Text1: + 文本1: + + + N/A + N/A + + + Text2: + 文本2: + + + Text3: + 文本3: + + + + Utils::CheckableMessageBox + + Dialog + 对话框 + + + TextLabel + TextLabel + + + CheckBox + 复选框 + + + + PasteBinComSettingsWidget + + Form + 界面 + + + Server Prefix: + 服务器前缀: + + + <html><head/><body> +<p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. qtcreator.pastebin.com). Fill in the desired prefix.</p> +<p>Note that the plugin will use this for posting as well as fetching.</p></body></html> + <html><head/><body> +<p><a href="http://pastebin.com">pastebin.com</a> </p>允许发送代码到自定义的子区域(比如:qtcreator.pastebin.com).请填写你希望的前缀 +<p>注意本插件将会被用来贴出和取回代码.</p></body></html> + + + Server prefix: + 服务器前缀: + + + <html><head/><body> +<p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> +<p>Note that the plugin will use this for posting as well as fetching.</p></body></html> + <html><head/><body> +<p><a href="http://pastebin.com">pastebin.com</a> </p>允许发送代码到自定义的子区域(比如:qtcreator.pastebin.com).请填写你希望的前缀 +<p>注意本插件将会被用来发出和取回代码.</p></body></html> + + + + CVS::Internal::SettingsPage + + 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获取)的某个revision编号, 所有该commit涉及的文件都将被显示。 否则, 仅显示单个文件。 + + + + Debugger::Internal::TrkOptionsWidget + + Form + 界面 + + + Gdb + Gdb + + + Symbian ARM gdb location: + Symbian ARM 用 Gdb 位置: + + + Communication + 通信 + + + Serial Port + 连续端口 + + + Bluetooth + Bluetooth + + + Port: + 端口: + + + Device: + 设备: + + + + Designer::Internal::CppSettingsPageWidget + + 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-directive中使用Qt模块名 + + + Multiple inheritance + 多重继承 + + + + 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 + 显示上一次会话的打开页面 + + + + 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 + 在新的应用运行之前清除旧的应用输出 + + + <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="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Disable it if you experience problems with your builds. + <i>jom</i> 是<i>nmake</i>的替代品,它将自动分配编译工作给多核CPU. 最新的源代码在 <a href="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. 如果你的编译出现问题,请关闭它. + + + + 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... + 打开项目... + + + + ProjectWelcomePage + + Form + 界面 + + + + Qt4ProjectManager::Internal::ClassDefinition + + 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) + + + + Qt4ProjectManager::Internal::CustomWidgetPluginWizardPage + + 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 + + + + Qt4ProjectManager::Internal::CustomWidgetWidgetsWizardPage + + Custom Qt Widget Wizard + 自定义 Qt 控件向导 + + + Custom Widget List + 自定义控件列表 + + + Widget &Classes: + 控件类(&C): + + + Specify the list of custom widgets and their properties. + 指定自定义控件列表和他们的属性. + + + ... + ... + + + + Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget + + Form + 界面 + + + Examples not installed + 例子没有被安装 + + + Open + 打开 + + + Tutorials + 教程 + + + Explore Qt Examples + 浏览Qt例子 + + + Did You Know? + 你知道吗? + + + <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... + 选择一个例子... + + + Copy Project to writable Location? + 复制项目到可写位置? + + + <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>你正在打开的项目处于写入保护状态:</p><blockquote>%1</blockquote><p>请选择一个可写的位置然后单击"复制项目并且打开" 来打开一个可修改的项目拷贝或者单击 "保留项目然后打开" 就在此处打开项目.</p><p><b>Note:</b> 在当前位置,你将不能修改或者编译项目.</p> + + + &Location: + 路径(&L): + + + &Copy Project and Open + 复制项目并且打开(&C) + + + &Keep Project and Open + 保留项目并且打开(&K) + + + Warning + 警告 + + + The specified location already exists. Please specify a valid location. + 指定路径已经存在,请指定有效路径。 + + + New Project + 新建项目 + + + If you add external libraries to your project, Qt Creator will automatically offer syntax highlighting and code completion. + 如果你在项目中添加额外的库,Qt Creator 将会自动提供语法高亮和自动补全。 + + + Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">dependencies</a> between projects. + 在会话中,你可以在项目之间添加 <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">依赖关系</a> . + + + New Project... + 新建项目... + + + Cmd + Shortcut key + Cmd + + + Alt + Shortcut key + Alt + + + Ctrl + Shortcut key + Ctrl + + + You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li></ul> + 你可以切换 Qt Creator 的模式使用 <tt>Ctrl+number</tt>:<ul><li>1 - 欢迎</li><li>2 - 编辑</li><li>3 - 调试</li><li>4 - 项目</li><li>5 - 帮助</li><li> + + + You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">build settings</a>. + 你可以添加自定义构建步骤在 <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">构建设置</a>. + + + Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">dependencies</a> between projects. + 在会话中,你可以添加 <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">依赖关系</a> 在项目之间. + + + You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li><li></li><li>6 - Output</li></ul> + 你可以切换 Qt Creator 的模式使用 <tt>Ctrl+number</tt>:<ul><li>1 - 欢迎</li><li>2 - 编辑</li><li>3 - 调试</li><li>4 - 项目</li><li>5 - 帮助</li><li></li><li>6 - 输出</li></ul> + + + You can show and hide the side bar using <tt>%1+0<tt>. + 你可以使用 <tt>%1+0<tt>显示隐藏边栏. + + + You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. + 你可以通过选中 &quot;全词匹配&quot; 或者 &quot;区分大小写&quot;. 微调<tt>查找</tt> 功能,只需轻轻点击右端行尾的图标. + + + If you add <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">external libraries</a>, Qt Creator will automatically offer syntax highlighting and code completion. + 如果你添加了 <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">外部库</a>, Qt Creator 会自动提供语法高亮和自动完成. + + + The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. + 代码自动补全可以使用首字母替代方式(Camel case). 比如, 完成 <tt>namespaceUri</tt> 你只需要输入 <tt>nU</tt> 然后按下 <tt>Ctrl+Space</tt>。 + + + You can force code completion at any time using <tt>Ctrl+Space</tt>. + 你可以在任何时候强制代码补全,使用 <tt>Ctrl+Space</tt>。 + + + You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. + 你可以通过调用 <tt>qtcreator &lt;sessionname&gt;</tt>.启动带会话的 Qt Creator。 + + + You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. + 你可以在任何时候通过单击 <tt>Escape</tt>返回编辑模式. + + + You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> + 你可以单击 <tt>%1+n</tt>切换输出窗口 n 是底下窗口的编号:<ul><li>1 - 构建问题</li><li>2 - 搜索结果</li><li>3 - 应用程序输出</li><li>4 - 编译输出</li></ul> + + + You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). + 你可以使用 <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">定位栏</a> (<tt>%1+K</tt>)快速搜索函数,类,帮助等. + + + You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. + 你可以在 <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">构建设置</a>添加自定义构建步骤. + + + Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">dependencies</a> between projects. + 在会话中,你可以添加 <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">依赖关系</a> 在项目之间. + + + You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. + 你可以在<tt>项目 -> 编辑器设置 -> 默认编码</tt>为每个项目设置喜欢的编辑器编码. + + + You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. + 你可以使用 Qt Creator 和 <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">版本控制系统</a> 比如 Subversion, Perforce, CVS 和 Git. + + + 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... + 打开项目... + + + + Qt4ProjectManager::Internal::S60DevicesPreferencePane + + Form + 界面 + + + Installed S60 SDKs: + 已安装的 S60 SDKs: + + + SDK Location + SDK 路径 + + + 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 + + + + VCSBase::BaseCheckoutWizardPage + + WizardPage + 向导页面 + + + Checkout Directory: + 检出目录: + + + Path: + 路径: + + + + Welcome::Internal::CommunityWelcomePageWidget + + Form + 界面 + + + <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>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站点 + + + http://labs.trolltech.com/blogs/feed + + + + 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 + + + + Welcome::WelcomeMode + + #headerFrame { + border-image: url(:/welcome/images/center_frame_header.png) 0; + border-width: 0; +} + + + + + Help us make Qt Creator even better + 协助我们使Qt Creator 更加完美 + + + Feedback + 反馈 + + + Welcome + 欢迎 + + + + 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 + 资源编辑器 + + + + Core::Internal::SettingsDialog + + Preferences + 首选项 + + + Options + 选项 + + + + CodePaster::CodePasterProtocol + + No Server defined in the CodePaster preferences. + 在CodePaster首选项中没有定义服务器。 + + + No Server defined in the CodePaster options. + 在CodePaster选项中没有定义服务器。 + + + No such paste + 没有相关粘贴 + + + + CodePaster::CodePasterSettingsPage + + CodePaster + 代码粘贴 + + + Code Pasting + 代码粘贴 + + + 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 + 当前文档中的方法 + + + + CppTools::Internal::CppFileSettingsWidget + + /************************************************************************** +** 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 + 为新的许可模板文件选择一个存储位置 + + + Template write error + 模板写入错误 + + + Cannot write to %1: %2 + 无法写入%1 : %2 + + + + CppTools::Internal::CppFindReferences + + Searching... + 搜索中... + + + Searching + 搜索中 + + + + CVS::Internal::CheckoutWizard + + 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 + + + + CVS::Internal::CheckoutWizardPage + + Location + 位置 + + + Specify repository and path. + 指定仓库和路径。 + + + Repository: + 仓库: + + + + CVSPlugin + + Cannot find repository for '%1' + 无法为'%1'找到仓库 + + + + CVS::Internal::CVSPlugin + + 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" + + + + 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'找到仓库 + + + Filelog "%1" + + + + Annotate Current File + Annotate 当前文件 + + + Annotate "%1" + + + + Delete... + 删除... + + + Delete "%1"... + 删除 "%1"... + + + Revert... + 还原... + + + Revert "%1"... + 还原 "%1"... + + + Project Status + 项目状态 + + + 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 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 + 还原仓库 + + + 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 + + + Project status + 项目状态 + + + The initial revision %1 cannot be described. + 初始版本 %1 无法被描述. + + + Could not find commits of id '%1' on %2. + 无法在 %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 毫秒)内无响应。 + + + + CVS::Internal::CVSSubmitEditor + + Added + 已添加 + + + Removed + 已删除 + + + Modified + 已改变 + + + + CVS::Internal::SettingsPageWidget + + CVS Command + CVS 命令 + + + + CdbStackFrameContext + + <Unknown Type> + <未知类型> + + + <Unknown Value> + <未知数值> + + + <Unknown> + <未知> + + + + SymbolGroup + + Out of scope + 超出范围 + + + + Debugger::Internal::MemoryViewAgent + + Memory $ + 内存 $ + + + No memory viewer available + 没有可用的内存查看器 + + + The memory contents cannot be shown as no viewer plugin for binary data has been loaded. + 没有载入二进制数据查看器插件,无法显示内存内容。 + + + + Debugger::Internal::DebuggerRunControlFactory + + Debug + 调试 + + + + Debugger::Internal::DebuggerRunControl + + Debugger + 调试器 + + + + Debugger::Internal::CoreGdbAdapter + + Error Loading Symbols + 载入符号错误 + + + No executable to load symbols from specified. + 没有指定可运行的程序来载入符号。 + + + Loading symbols from "%1" failed: + + 从 "%1" 载入符号失败: + + + + Attached to core temporarily. + 临时关联至核心。 + + + Unable to determine executable from core file. + 无法从核心文件决定可执行文件。 + + + Attach to core "%1" failed: + + 关联至核心 %1失败: + + + + Symbols found. + 找到符号。 + + + Attached to core. + 关联至核心。 + + + + Debugger::Internal::PlainGdbAdapter + + Cannot set up communication with child process: %1 + 无法与子进程进行通信: %1 + + + Starting executable failed: + + 启动执行档失败: + + + + + Debugger::Internal::RemoteGdbAdapter + + 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...() 函数超时t。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()的默认返回值。 + + + Error + 错误 + + + Adapter too old: does not support asynchronous mode. + 适配器太旧:不支持异步模式 + + + Starting remote executable failed: + + 启动远程执行档失败: + + + + + Debugger::Internal::TrkGdbAdapter + + Port specification missing. + 缺少端口说明。 + + + Unable to acquire a device on '%1'. It appears to be in use. + 无法在 '%1' 获得设备。看起来此设备正在被使用。 + + + Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. + 进程启动, PID: 0x%1, 线程 id: 0x%2, 代码段: 0x%3, 数据段: 0x%4. + + + Connecting to TRK server adapter failed: + + 连接TRK 服务器适配器失败: + + + + + 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::FormWindowEditor + + untitled + 未命名 + + + + Git::Internal::CloneWizard + + 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仓库的克隆 + + + + Git::CloneWizardPage + + Location + 位置 + + + Specify repository URL, checkout directory and path. + 指定仓库URL,检出目录和路径。 + + + Clone URL: + 克隆 URL: + + + + Gitorious::Internal::Gitorious + + Error parsing reply from '%1': %2 + 分析 '%1' 的回应时发生错误: %2 + + + Request failed for '%1': %2 + 为 '%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 + Gitorious 仓库克隆 + + + + Gitorious::Internal::GitoriousHostWizardPage + + Host + 主机 + + + Select a host. + 选择主机。 + + + + Gitorious::Internal::GitoriousProjectWizardPage + + Project + 项目 + + + Choose a project from '%1' + 从'%1'选择一个项目 + + + + Help::Internal::GeneralSettingsPage + + General settings + 基本设置 + + + Help + 帮助 + + + General Settings + 基本设定 + + + Open Image + 打开图片 + + + Files (*.xbel) + 文件 (*.xbel) + + + There was an error while importing bookmarks! + 导入书签时发生错误! + + + Save File + 保存文件 + + + + Help::Internal::XbelReader + + 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. + 运行程序期间发生了一些错误。 + + + + ProjectExplorer::Internal::LocalApplicationRunControlFactory + + Run + 运行 + + + + ProjectExplorer::Internal::LocalApplicationRunControl + + 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 + + + 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 + + + GCCE/GnuPoc + + + + RVCT (ARMV6)/GnuPoc + + + + 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 + 索引中 + + + + Qt4ProjectManager::Internal::ClassList + + <New class> + <新类> + + + Confirm Delete + 确认删除 + + + Delete class %1 from list? + 从列表中删除类 %1 ? + + + + Qt4ProjectManager::Internal::CustomWidgetWizard + + 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. + 创建一个Qt4设计师自定义控件或者一个自定义控件集合。 + + + + Qt4ProjectManager::Internal::CustomWidgetWizardDialog + + This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. + 本向导将创建一个Qt4设计师自定义控件或者一个Qt4设计师自定义控件集合项目。 + + + Custom Widgets + 自定义控件 + + + Plugin Details + 插件详细信息 + + + + Qt4ProjectManager::Internal::PluginGenerator + + 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 + + + + Qt4ProjectManager::Internal::GettingStartedWelcomePage + + Getting Started + 入门 + + + + Qt4ProjectManager::Internal::S60DeviceRunConfiguration + + QtS60DeviceRunConfiguration + Qt S60 设备运行配置 + + + Could not parse %1. The QtS60 Device run configuration %2 can not be started. + 无法分析%1 。QtS60 设备的运行配置 %2 无法启动 + + + %1 on Symbian Device + Symbian 设备上的 %1 + + + + Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget + + Device: + 设备: + + + Name: + 名称: + + + Arguments: + 参数: + + + Installation file: + 安装文件: + + + Device on serial port: + 在串口上的设备: + + + Install File: + 安装文件: + + + Device on Serial Port: + 在连续端口上的设备: + + + Queries the device for information + 查询设备信息 + + + Self-signed certificate + 自己签名的证书 + + + Choose certificate file (.cer) + 选择证书文件(.cer) + + + Custom certificate: + 自定义证书: + + + Choose key file (.key / .pem) + 选择密钥文件(.key / .pem) + + + Key file: + 密钥文件: + + + <No Device> + Summary text of S60 device run configuration + <没有设备> + + + (custom certificate) + (自定义证书) + + + (self-signed certificate) + (自己签名的证书) + + + Summary: Run on '%1' %2 + 概要:在 '%1'执行 %2 + + + Connecting... + 正在连接... + + + + Qt4ProjectManager::Internal::S60DeviceRunConfigurationFactory + + %1 on Symbian Device + Symbian 设备上的 %1 + + + + Qt4ProjectManager::Internal::S60DeviceRunControlBase + + Deploying + 部署中 + + + There is no device plugged in. + 没有插入设备. + + + Executable file: %1 + 可执行文件:%1 + + + Debugger for Symbian Platform + 塞班平台的调试器 + + + %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 + + + Waiting for App TRK + 等待 App TRK + + + Please start App TRK on %1. + 请在%1上启动 App TRK. + + + Canceled. + 已取消. + + + %1 has unexpectedly finished. + %1 异常中止 + + + An error has occurred while running %1. + 运行%1 时发生了错误 + + + + Qt4ProjectManager::Internal::S60DeviceRunControl + + Finished. + 完成. + + + Starting application... + 正在启动应用... + + + Application running with pid %1. + 应用程序运行pid:%1. + + + Could not start application: %1 + 无法启动应用: %1 + + + + Qt4ProjectManager::Internal::S60DeviceDebugRunControl + + Warning: Cannot locate the symbol file belonging to %1. + 警告:无法打开属于%1的符号文件. + + + Launching debugger... + 启动调试器... + + + Debugging finished. + 调试完成. + + + + Qt4ProjectManager::Internal::S60DevicesWidget + + No Qt installed + 没有安装Qt + + + + Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget + + Name: + 名称: + + + Executable: + 执行档: + + + + Qt4ProjectManager::Internal::S60EmulatorRunConfiguration + + %1 in Symbian Emulator + %1 在Symbian 模拟器中 + + + Qt Symbian Emulator RunConfiguration + Qt Symbian 模拟器运行配置 + + + + Qt4ProjectManager::Internal::S60EmulatorRunConfigurationFactory + + %1 in Symbian Emulator + %1 在塞班模拟器上 + + + + Qt4ProjectManager::Internal::S60EmulatorRunControl + + Starting %1... + 启动%1 ... + + + [Qt Message] + [Qt 消息] + + + %1 exited with code %2 + %1 退出,退出代码: %2 + + + + Qt4ProjectManager::Internal::S60Manager + + Run in Emulator + 在模拟器中执行 + + + Run on Device + 在设备上执行 + + + Debug on Device + 在设备上调试 + + + + Qt4ProjectManager::Qt4BuildConfigurationFactory + + Using Default Qt Version + 使用默认Qt版本 + + + Using Qt Version "%1" + 使用Qt版本 "%1" + + + New configuration + 新建配置 + + + New Configuration Name: + 新配置名称: + + + %1 Debug + %1 调试 + + + %1 Release + %1 发布 + + + + Subversion::Internal::CheckoutWizard + + Checks out a Subversion repository and tries to load the contained project. + 从Subversion仓库中检出项目并载入其中的工程。 + + + 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 started... + 开始检出代码... + + + Failed. + 失败. + + + Succeeded. + 成功. + + + + VCSBase::VCSBaseOutputWindow + + Open "%1" + 打开 "%1" + + + Clear + 清空 + + + Version Control + 版本控制 + + + + Welcome::Internal::CommunityWelcomePage + + 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 脚本文件 + + + 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 图像 + + + QML Project file + QML 项目文件 + + + Qt Project feature file + Qt 项目特征文件 + + + Qt Resource file + Qt 源文件 + + + Subversion submit template + Subversion 提交模板 + + + Plain text document + 普通文本文档 + + + XML document + XML 文档 + + + Differences between files + 文件之间的区别 + + + + Debugger::Internal::AbstractGdbAdapter + + 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 + 关联到已停止的程序 + + + Inferior process could not be stopped: +%1 + Inferior 不可以被停止: +%1 + + + Connecting to remote server failed: +%1 + 连接远程服务器失败: +%1 + + + + Debugger::Internal::TermGdbAdapter + + Debugger Error + 调试器错误 + + + + Debugger::Internal::TrkOptionsPage + + Symbian TRK + Symbian TRK + + + + QmlParser + + Illegal character + 非法字符 + + + Unclosed string at end of line + 在行尾有未关闭的字符串 + + + Illegal escape squence + 非法的转义序列 + + + Illegal unicode escape sequence + 非法的unicode转义序列 + + + 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' + + + Unexpected token `%1' + 未预料到的符号 `%1' + + + Expected token `%1' + 预料中的符号 `%1' + + + Syntax error + 语法错误 + + + + Qt4ProjectManager::Internal::S60Devices::Device + + 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 + + + big endian + + + + little endian + + + + , type size: %1 + will be inserted into s60description + , 类型尺寸: %1 + + + , float size: %1 + will be inserted into s60description + , 浮点型尺寸: %1 + + + + Mercurial::Internal::MercurialCommitPanel + + General Information + 概要 + + + Repository: + 仓库: + + + repository + 仓库 + + + Branch: + 分支: + + + branch + 分支 + + + Commit Information + 提交信息 + + + Author: + 作者: + + + Email: + 电子邮件: + + + + Mercurial::Internal::OptionsPage + + 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 + + + + Log count: + 日志计数: + + + Default email: + 默认电子邮件: + + + + Mercurial::Internal::RevertDialog + + Revert + 还原 + + + Specify a revision other than the default? + 为其指定一个版本而不是默认版本? + + + Revision: + 版本: + + + + Mercurial::Internal::SrcDestDialog + + Dialog + 对话框 + + + Local filesystem: + 本地文件系统: + + + e.g. https://[user[:pass]@]host[:port]/[path] + 例如 https://[用户名[:密码]@]主机名[:端口]/[路径] + + + Specify Url: + 指定 Url: + + + Default Location + 默认位置 + + + + Qt4ProjectManager::Internal::TestWizardPage + + WizardPage + 向导页面 + + + 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::Internal::CMakeRunConfiguration + + Clean Environment + 清除环境变量 + + + System Environment + 系统环境变量 + + + Build Environment + 构建时的环境变量 + + + (disabled) + (禁用) + + + + Core + + Qt Files and Classes + Qt 文件和类 + + + Qt + + + + Environment + 环境 + + + + CodePaster + + Code Pasting + 粘贴代码 + + + + Debugger::Internal::CdbOptionsPage + + Cdb + Cdb + + + + Help + + Help + 帮助 + + + + Mercurial::Internal::CloneWizard + + Clone a Mercurial repository + 克隆一个 Mercurial 仓库 + + + Clones a Mercurial repository and tries to load the contained project. + 克隆一个Mercurial仓库并载入其中的工程。 + + + Mercurial Clone + Mercurial 克隆 + + + + Mercurial::Internal::CloneWizardPage + + Location + 位置 + + + Specify repository URL, checkout directory and path. + 指定仓库URL,检出目录和路径。 + + + Clone URL: + 克隆 URL: + + + + Mercurial::Internal::CommitEditor + + Commit Editor + 提交编辑器 + + + + Mercurial::Internal::MercurialClient + + Unable to find parent revisions of %1 in %2: %3 + 无法在 %2 找到 %1 的父版本: %3 + + + Cannot parse output: %1 + 无法分析输出: %1 + + + Hg Annotate %1 + + + + Hg diff %1 + + + + Hg log %1 + + + + Hg incoming %1 + + + + Hg outgoing %1 + + + + Working... + 工作中... + + + + Mercurial::Internal::MercurialControl + + Mercurial + + + + + Mercurial::Internal::MercurialJobRunner + + 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 秒后超时。 + + + + Mercurial::Internal::MercurialPlugin + + Mercurial + + + + Annotate Current File + Annotate 当前文件 + + + Annotate "%1" + Annotate "%1" + + + Diff Current File + Diff 当前文件 + + + Diff "%1" + Diff "%1" + + + Alt+H,Alt+D + + + + Log Current File + Log 当前文件 + + + Log "%1" + Log "%1" + + + Alt+H,Alt+L + + + + Status Current File + Status 当前文件 + + + Status "%1" + Status "%1" + + + Alt+H,Alt+S + + + + Add + 添加 + + + Add "%1" + 添加 "%1" + + + Delete... + 删除... + + + Delete "%1"... + 删除 "%1"... + + + Revert Current File... + 还原 当前文件... + + + Revert "%1"... + 还原 "%1"... + + + Diff + + + + Log + + + + Revert... + 还原... + + + Status + + + + Pull... + Pull... + + + Push... + Push... + + + Update... + 更新... + + + Import... + 导入... + + + Incoming... + 传入... + + + Outgoing... + 传出... + + + Commit... + 提交... + + + Alt+H,Alt+C + + + + Create Repository... + 创建代码仓库... + + + Pull Source + Pull 源码 + + + Push Destination + Push 目标 + + + Update + 更新 + + + Incoming Source + 传入源 + + + Commit + 提交 + + + 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? + 你想提交此修改吗? + + + Message check failed. Do you want to proceed? + 信息检查失败,你想要继续吗? + + + + Mercurial::Internal::OptionsPageWidget + + 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. + 未命名 + + + + ProjectExplorer::Internal::DependenciesModel + + <No other projects in this session> + <会话中没有其他项目> + + + + ProjectExplorer + + Projects + 项目 + + + Other Project + 其他项目 + + + + 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 + 运行 + + + + Qt4ProjectManager::Internal::MaemoRunConfiguration + + %1 on Maemo device + Maemo 设备上的 %1 + + + MaemoRunConfiguration + Maemo 运行配置 + + + New Maemo Run Configuration + 新建Maemo运行配置 + + + '%1' does not contain a valid Maemo simulator image. + '%1' 不存在一个有效的 Maemo 模拟器镜像。 + + + Simulator could not be found. Please check the Qt Version you are using and that a simulator image is already installed. + 无法找到模拟器。请检查你正在使用的 Qt 版本,并且确认模拟器已经安装。 + + + + Qt4ProjectManager::Internal::MaemoRunConfigurationFactory + + %1 on Maemo Device + Maemo 设备上的 %1 + + + New Maemo Run Configuration + 新建Maemo运行配置 + + + + Qt4ProjectManager::Internal::MaemoRunControlFactory + + Run on device + 在设备上运行 + + + + Qt4ProjectManager::Internal::MaemoSshConnection + + Could not connect to host + 无法连接主机 + + + + Qt4ProjectManager::Internal::MaemoInteractiveSshConnection + + Could not start remote shell: %1 + 不能启动远程 shell: %1 + + + Error running command: %1 + 运行命令发生错误: %1 + + + SSH error: %1 + SSH 错误: %1 + + + + Qt4ProjectManager::Internal::MaemoSftpConnection + + 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 + + + + Qt4ProjectManager + + Qt4 + + + + Qt Versions + Qt 版本 + + + Qt C++ Project + Qt C++ 项目 + + + + TextEditor + + Text Editor + 文本编辑器 + + + + CommandMappings + + Command Mappings + 命令映射 + + + Command + 命令 + + + Label + 标签 + + + Target + 目标 + + + Defaults + 默认 + + + Import... + 导入... + + + Export... + 导出... + + + Target Identifier + 目标标识符 + + + Target: + 目标: + + + Reset + 重置 + + + + Git::Internal::StashDialog + + Stashes + Stashes + + + Name + 名称 + + + Branch + 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? + 你想删除所有 stashes 吗? + + + Do you want to delete %n stash(es)? + + 你想删除 %n stash(es) 吗? + + + + Repository modified + 仓库已变更 + + + %1 cannot be restored since the repository is modified. +You can choose between stashing the changes or discarding them. + %1 不能被还原,因为仓库已经变更。 +你可以选择 stash 修改的内容或者丢弃修改。 + + + Stash + 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 + 目标设置控件 + + + + BehaviorDialog + + Dialog + 对话框 + + + Type: + 类型: + + + Id: + ID: + + + Property Name: + 属性名称: + + + Animation + 动画 + + + SpringFollow + 弹性随动 + + + Settings + 设置 + + + Duration: + 持续时间: + + + Curve: + 曲线: + + + easeNone + 缓慢(easeNone) + + + Source: + 源: + + + Velocity: + 速率: + + + Spring: + 弹性: + + + Damping: + 阻尼: + + + + GradientDialog + + Edit Gradient + 编辑渐进 + + + + GradientEditor + + Form + 界面 + + + Gradient Editor + 渐进编辑器 + + + This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. + 这个区域显示正在编辑的渐变的预览。你可以用拖拽方式编辑渐变的某些参数,如开始点,结束点和半径等. + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + + + 5 + 5 + + + Gradient Stops Editor + 渐进终止编辑器 + + + This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. + 这个区域允许你编辑渐进终止点。双击已存在的终止点可对其复制。在已存在的终止点以外区域双击可创建新终止点。拖动终止点可使之重定位。右键显示其余操作的菜单。 + + + Zoom + 缩放 + + + Reset Zoom + 重置缩放 + + + Position + 位置 + + + Hue + 色调 + + + H + + + + Saturation + 饱和度 + + + S + + + + Sat + 饱和度 + + + Value + + + + V + + + + Val + + + + Alpha + Alpha通道 + + + A + + + + Type + 类型 + + + Spread + 展开 + + + Color + 颜色 + + + Current stop's color + 当前终止点颜色 + + + Show HSV specification + 显示 HSV 信息 + + + HSV + + + + Show RGB specification + 显示 RGB 信息 + + + 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 + 渐变编辑器 + + + This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. + 这个区域显示正在编辑的渐变的预览。你可以用拖拽方式编辑渐变的某些参数,如开始点,结束点和半径等. + + + 1 + 1 + + + 2 + 2 + + + 3 + 3 + + + 4 + 4 + + + 5 + 5 + + + Gradient Stops Editor + 渐变终止点编辑器 + + + This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. + 这个区域允许你编辑渐变终止点。双击已存在的终止点可对其复制。在已存在的终止点以外区域双击可创建新终止点。拖动终止点可使之重定位。右键显示其余操作的菜单。 + + + Zoom + 缩放 + + + Reset Zoom + 重置缩放 + + + Position + 位置 + + + Hue + 色调 + + + H + + + + Saturation + 饱和度 + + + S + + + + Sat + 饱和度 + + + Value + + + + V + + + + Val + + + + Alpha + Alpha通道 + + + A + + + + Type + 类型 + + + Spread + 展开 + + + Color + 颜色 + + + Current stop's color + 当前终止点颜色 + + + Show HSV specification + 显示 HSV 信息 + + + HSV + + + + Show RGB specification + 显示 RGB 信息 + + + 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 + 删除渐变 + + + Are you sure you want to remove the selected gradient? + 你确定要删除选中的渐变吗? + + + + QtGradientViewDialog + + Select Gradient + 选择渐变 + + + + QmlDesigner::Internal::SettingsPage + + Form + 界面 + + + Files + 文件 + + + Open file in: + 打开文件: + + + Design mode + 设计模式 + + + Edit mode + 编辑模式 + + + Snapping + 快照 + + + Item spacing + 项之间的间隔 + + + Snap margin + + + + Qt Quick Designer + Qt Quick 设计器 + + + + 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: + 端口: + + + SSH: + + + + Gdb server: + Gdb 服务器: + + + Connection Timeout: + 连接超时: + + + Timeout value in milliseconds + 超时(毫秒) + + + User Name: + 用户名: + + + Password: + 密码: + + + Private key file: + 私钥文件: + + + s + + + + Generate SSH Key ... + 创建SSH密钥... + + + Deploy Public Key ... + 部署公钥... + + + Remote device + 远程设备 + + + Maemo emulator + Maemo模拟器 + + + Host name: + 主机名称: + + + Connection timeout: + 连接超时: + + + Username: + 用户名: + + + + 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: + 密钥算法: + + + RSA + + + + DSA + + + + Key + 密钥 + + + Save public Key... + 保存公钥文件... + + + Save private Key... + 保存私钥文件... + + + Save Public Key... + 保存公钥文件... + + + Save Private Key... + 保存私钥文件... + + + + Qt4ProjectManager::Internal::S60CreatePackageStepWidget + + Form + 界面 + + + Self-signed certificate + 自签名证书 + + + Custom certificate: + 自定义证书: + + + Choose certificate file (.cer) + 选择证书文件(.cer) + + + Key file: + 密钥文件: + + + + 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 + + + %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 地址的文件,使用四列的邮件映射格式: +名字 <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: + 用户字段配置文件: + + + + 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 + 未知的枚举值 + + + '%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 color + 不是一个有效的颜色 + + + expected anchor line + 期望anchor行 + + + expected id + 期望id + + + using string literals for ids is discouraged + 不推荐标识符使用字符串 + + + ids must be lower case + 标识符必须小写 + + + + 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 属性 + + + %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 + 无法找到软件包文件 + + + + 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.外部被删除,是否需要另存为其他名称或者关闭编辑器? + + + 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 + + + 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 + 复制选中部分作为十六进制值 + + + 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::Internal::CMakeTarget + + Desktop + CMake Default target display name + 桌面 + + + + CMakeProjectManager::Internal::MakeStep + + Make + CMakeProjectManager::MakeStep display name. + + + + + CMakeProjectManager::Internal::MakeStepFactory + + Make + Display name for CMakeProjectManager::MakeStep id. + + + + + Core::CommandMappings + + Command + 命令 + + + Label + 标签 + + + + Core::DesignMode + + Design + 设计 + + + + Core::Internal::SystemEditor + + Could not open url %1. + 无法打开url '%1'. + + + + Core::EditorToolBar + + Copy full path to clipboard + 复制全路径到剪贴板 + + + Copy Full Path to Clipboard + 复制完整路径到剪贴板 + + + Make writable + 使文件可写 + + + File is writable + 文件可写 + + + + CodePaster::PasteBinDotComSettings + + Pastebin.com + Pastebin.com + + + + CodePaster::PasteView + + <Comment> + <注释> + + + Paste + 粘贴 + + + + CppEditor + + C++ Files and Classes + 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 编辑器 + + + + CVS::Internal::CVSEditor + + Annotate revision "%1" + 注释版本 "%1" + + + + CdbSymbolGroupContext + + <Unknown Type> + <未知类型> + + + <Unknown Value> + <未知数值> + + + <Unknown> + <未知> + + + + Debugger::Cdb + + Unable to load the debugger engine library '%1': %2 + 无法载入调试引擎库 '%1': %2 + + + Unable to resolve '%1' in the debugger engine library '%2' + 在调试引擎库中 '%2'无法解析符号 '%1' + + + + CdbCore::CoreEngine + + Unable to set the image path to %1: %2 + 无法设置图像路径到 %1: %2 + + + Unable to create a process '%1': %2 + 无法创建进程 '%1': %2 + + + Attaching to a process failed for process id %1: %2 + 关联进程失败,进程 ID %1: %2 + + + + Debugger::DebuggerUISwitcher + + Locked + 锁定 + + + &Languages + 语言(&L) + + + Alt+L + + + + &Views + 视图(&V) + + + Reset to default layout + 重置为默认布局 + + + Language + 语言 + + + + GdbChooserWidget + + Unable to run '%1': %2 + 无法执行%1': %2 + + + + Debugger::Internal::GdbChooserWidget + + Unable to run '%1': %2 + 无法执行 '%1': %2 + + + Binary + 二进制档 + + + Toolchains + 工具链 + + + Duplicate binary + 复制二进制档 + + + The binary '%1' already exists. + 二进制档 '%1' 已经存在。 + + + + Debugger::Internal::ToolChainSelectorWidget + + Desktop/General + 桌面/概要 + + + Symbian + 塞班 + + + Maemo + + + + + Debugger::Internal::BinaryToolChainDialog + + Select binary and toolchains + 选择二进制和工具链 + + + Gdb binary + Gdb 二进制 + + + Path: + 路径: + + + + Debugger::Internal::SnapshotHandler + + Function: + 函数: + + + File: + 文件: + + + Date: + 日期: + + + ... + ... + + + <More> + <更多> + + + Function + 函数 + + + Date + 日期 + + + Location + 位置 + + + + Debugger::Internal::SnapshotWindow + + Snapshots + 快照 + + + Adjust Column Widths to Contents + 按内容调整列宽 + + + Always Adjust Column Widths to Contents + 总是按内容调整列宽 + + + + Designer::Internal::FormEditorFactory + + 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 + 切换模式 + + + + Designer::Internal::FormFileWizardDialog + + 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... + 打开高级查找... + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + GenericProjectManager::Internal::GenericMakeStep + + Make + Make + + + + Git::Internal::RemoteBranchModel + + (no branch) + (没有分支) + + + + GitClient + + Unable to determine the repository for %1. + 无法为 %1 决定仓库。 + + + + Git::Internal::GitCommand + + Error: Git timed out after %1s. + 错误: Git 在 %1秒后超时. + + + + Git::Internal::GitEditor + + Blame %1 + Blame %1 + + + + Help::HelpManager + + Unfiltered + 未过滤 + + + + Help::Internal::HelpViewer + + Open Link + 打开链接 + + + Open Link as New Page + 在新页面打开连接 + + + Copy Link + 复制链接 + + + Copy + 复制 + + + Reload + 重新载入 + + + + Help::Internal::OpenPagesModel + + (Untitled) + (未命名) + + + + Help::Internal::OpenPagesWidget + + Close %1 + 关闭%1 + + + Close All Except %1 + 除了%1 以外全部关闭 + + + + Mercurial::Internal::MercurialEditor + + Annotate %1 + 注释 "%1" + + + + Perforce::Internal::PerforceEditor + + Annotate change list "%1" + 注释变更列表 "%1" + + + + ProjectExplorer::BuildConfiguration + + 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: + 举例对象类名: + + + + ProjectExplorer::CustomProjectWizard + + The project %1 could not be opened. + 无法打开项目 %1 。 + + + + ProjectExplorer::Internal::CustomWizardPage + + Path: + 路径: + + + + DependenciesPanel + + Dependencies + 依赖关系 + + + + DependenciesPanelFactory + + Dependencies + 依赖关系 + + + + EditorSettingsPanelFactory + + Editor Settings + 编辑器设置 + + + + EditorSettingsPanel + + Editor Settings + 编辑器设置 + + + + ProjectExplorer::Internal::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... + 在此打开终端... + + + 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 失败 + + + 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 + 项目 + + + Select active project + 选择活动的项目 + + + 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/> + + + <br/>%1 + + + + + ProjectExplorer::ProjectConfiguration + + Clone of %1 + %1 的克隆 + + + + TargetSettingsPanelFactory + + Targets + 目标 + + + + RunSettingsPanelFactory + + Run Settings + 运行设置 + + + + RunSettingsPanel + + Run Settings + 运行设置 + + + + ProjectExplorer::Internal::TargetSettingsPanelWidget + + No target defined. + 没有定义目标. + + + Qt Creator + + + + Do you really want to remove the +"%1" target? + 你真的想删除 +目标"%1" ? + + + + GenericProjectManager::GenericTarget + + Desktop + Generic desktop target display name + 桌面 + + + + Qt4ProjectManager::Internal::Qt4Target + + 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设备 + + + Maemo + Qt4 Maemo target display name + + + + 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" 不存在. + + + Cannot write file: "%1". + 无法写入文件" %1". + + + + QmlDesigner::XUIFileDialog + + 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必须唯一. + + + Invalid Id + 无效标识符 + + + + QmlDesigner::NavigatorWidget + + Navigator + Title of navigator view + 导航 + + + + QmlDesigner::PluginManager + + 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 + + H + + + + S + + + + V + + + + Hue + 色调 + + + Sat + 饱和度 + + + Val + + + + Saturation + 饱和度 + + + Value + + + + R + R + + + G + + + + B + + + + 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" + + + + line %1 + 行 %1 + + + column %1 + 列 %1 + + + + QmlDesigner::Internal::DocumentWarningWidget + + <a href="goToError">Go to error</a> + <a href="goToError">转到错误</a> + + + %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) + + + Toggle &Left Sidebar + 切换左边栏(&L) + + + Toggle &Right Sidebar + 切换右边栏(&R) + + + Projects + 项目 + + + File System + 文件系统 + + + Open Documents + 打开的文档 + + + + 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 + 关闭其他 + + + + Qt Quick + + Qt Quick + + + + + 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 个项> + + + + Watch expression '%1' + 监视表达式 "%1" + + + 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... + [检查器] 正在关闭... + + + [Inspector] error: (%1) %2 + %1=error code, %2=error message + [检查器] 错误: (%1) %2 + + + Script console + 脚本控制台 + + + Start Debugging C++ and QML Simultaneously... + 同步启动QML和C++的调试... + + + No project was found. + 没有找到任何项目. + + + No run configurations were found for the project '%1'. + 在项目'%1'中没有找到运行配置. + + + No valid run configuration was found for the project %1. Only locally runnable configurations are supported. +Please check your project settings. + 项目%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::Internal::QmlJSTextEditor + + Rename... + 重命名... + + + New id: + 新ID: + + + Unused variable + 未使用的变量 + + + Rename id '%1'... + 重命名ID '%1' ... + + + <Select Symbol> + <选择符号> + + + + QmlJSEditor::Internal::QmlJSEditorFactory + + Do you want to enable the experimental Qt Quick Designer? + 你想启用尚处在实验阶段的Qt Quick 设计器吗? + + + Enable Qt Quick Designer + 启用Qt Quick 设计器 + + + Qt Creator -> About Plugins... + Qt Creator -> 关于插件... + + + Help -> About Plugins... + 帮助 -> 关于插件... + + + Enable experimental Qt Quick Designer? + 启用尚处在实验阶段的Qt Quick 设计器吗? + + + Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'. + 启用尚处在实验阶段的Qt Quick 设计器吗?启用之后,你可以通过设计按钮切换到设计模式.这可能会影响到Qt Creator的稳定性.如要关闭Qt Quick设计器,请访问菜单'%1'然后关闭'QmlDesigner'. + + + Cancel + 取消 + + + Please restart Qt Creator + 请重新启动Qt Creator + + + Please restart Qt Creator to make the change effective. + 请重新启动Qt Creator使配置生效. + + + + QmlJSEditor::Internal::QmlJSEditorPlugin + + Creates a Qt QML file. + 创建一个Qt QML 文件. + + + Qt QML File + Qt QML 文件 + + + Qt Quick + + + + Ctrl+Alt+R + + + + Follow Symbol Under Cursor + 跟踪光标位置的符号 + + + + QmlJSEditor::Internal::HoverHandler + + Unfiltered + 未过滤 + + + + QmlJSEditor::Internal::ModelManager + + Indexing + 索引中 + + + + QmlProjectManager::QmlProject + + Error while loading project file! + 载入项目文件时发生错误! + + + + QmlProjectManager::Internal::QmlProjectApplicationWizardDialog + + New QML Project + 新建 QML 项目 + + + This wizard generates a QML application project. + 本向导将创建一个QML 应用项目。 + + + + QmlProjectManager::Internal::QmlProjectApplicationWizard + + Qt QML Application + Qt QML 应用 + + + Creates a Qt QML application. + 创建一个Qt QML 应用。 + + + Creates a Qt QML application project with a single QML file containing the main view. + +QML application projects are executed through the QML runtime and do not need to be built. + 创建 Qt QML应用程序工程, 该工程带一个单一QML文件, 其中包含主视图。 + +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 + + 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'失败:项目已经被打开 + + + + QmlProjectManager::QmlProjectRunConfiguration + + QML Runtime + QMLRunConfiguration display name. + QML运行环境 + + + QML Runtime + QML运行环境 + + + QML Runtime arguments: + QML 运行参数: + + + QML Viewer + QMLRunConfiguration display name. + QML 查看器 + + + 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脚本 + + + + Qt4ProjectManager::Internal::QMakeStepFactory + + qmake + + + + + Qt4ProjectManager::Internal::MaemoConfigTestDialog + + Testing configuration... + 测试配置... + + + Stop Test + 停止测试 + + + Device configuration test failed: +%1 + 设备配置测试失败: +%1 + + + +Did you start Qemu? + +启动Qemu了吗? + + + Qt version mismatch! Expected Qt on device: 4.6.2 or later. + Qt版本不符合!需要Qt4.6.2或者更新的版本. + + + 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包列表: + + + + Qt4ProjectManager::Internal::MaemoManager + + Start Maemo Emulator + 启动Maemo模拟器 + + + Stop Maemo Emulator + 停止Maemo模拟器 + + + + Qt4ProjectManager::Internal::MaemoPackageCreationWidget + + Package Creation + 生成包 + + + <b>Create Package:</b> + <b>创建 包:</b> + + + Choose a local file + 选择一个本地文件 + + + File already in package + 文件已经存在于包中 + + + You have already added this file. + 你已经添加了此文件. + + + + Qt4ProjectManager::Internal::MaemoRunConfigurationWidget + + Run configuration name: + 运行配置名称: + + + <a href="%1">Manage device configurations</a> + <a href="%1">管理Maemo设备配置</a> + + + <a href="%1">Set Debugger</a> + <a href="%1">设置调试器</a> + + + Device configuration: + 设备配置: + + + Device Configuration: + 设备配置: + + + Executable: + 执行档: + + + Arguments: + 参数: + + + Simulator: + 模拟器: + + + + Qt4ProjectManager::Internal::AbstractMaemoRunControl + + Cleaning up remote leftovers first ... + 首先清理远程剩余的问题... + + + Initial cleanup canceled by user. + 初始化被用户手动取消. + + + Error running initial cleanup: %1. + 初始化发生错误:%1. + + + Initial cleanup done. + 初始化完成. + + + No device configuration set for run configuration. + 没有在运行配置中设置任何设备配置. + + + Deploying + 部署中 + + + Files to deploy: %1. + 部署文件:%1. + + + Starting remote application. + 启动远程应用. + + + Deployment canceled by user. + 部署被用户终止. + + + Deployment failed: %1 + 部署失败:%1 + + + Deployment finished. + 部署完成。 + + + Remote execution canceled due to user request. + 用户取消远程执行. + + + Error running remote process: %1 + 运行远程程序发生错误:%1 + + + Finished running remote process. + 远程程序运行完成. + + + Remote Execution Failure + 远程执行失败 + + + + Qt4ProjectManager::Internal::MaemoDebugRunControl + + Debugging failed: Could not parse gdbserver output. + 调试失败:无法分析gdb服务器的输出 + + + + Qt4ProjectManager::Internal::MaemoSettingsPage + + Maemo Device Configurations + Maemo设备配置 + + + + Qt4ProjectManager::Internal::MaemoSettingsWidget + + 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'. + + + 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 ... + 部署公钥... + + + + Qt4ProjectManager::Internal::MaemoSshConfigDialog + + Stop deploying + 停止部署 + + + Key deployment failed: %1 + 部署密钥失败:%1 + + + Key was successfully deployed. + 展开秘钥成功 + + + 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 + + + + Qt4ProjectManager::Internal::MaemoSshThread + + Error in cryptography backend: %1 + 后台加密发生错误:%1 + + + + Qt4ProjectManager::Internal::S60CreatePackageStep + + Create sis Package + Create sis package build step name + 创建sis包 + + + Create SIS Package + Create SIS package build step name + 创建SIS包 + + + + Qt4ProjectManager::Internal::S60CreatePackageStepFactory + + Create sis Package + 创建sis包 + + + Create SIS Package + 创建SIS包 + + + + Qt4ProjectManager::Internal::S60CreatePackageStepConfigWidget + + self-signed + 自签名 + + + signed with certificate %1 and key file %2 + 签名使用证书 %1 和密钥 %2 + + + <b>Create SIS Package:</b> %1 + <b>创建 SIS 包:</b> %1 + + + <b>Create sis Package:</b> %1 + <b>创建 sis 包:</b> %1 + + + + Qt4ProjectManager::Internal::S60DevicesBaseWidget + + Default + 默认 + + + SDK Location + SDK 路径 + + + Qt Location + Qt 路径 + + + Choose Qt folder + 选择Qt文件夹 + + + + Qt4ProjectManager::Internal::S60DevicesModel + + No Qt installed + 没有安装Qt + + + + Qt4ProjectManager::Internal::GnuPocS60DevicesWidget + + 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 不能为相同文件夹. + + + + Qt4ProjectManager::Internal::Qt4BuildConfigurationFactory + + Using Qt Version "%1" + 使用Qt版本 "%1" + + + New configuration + 新建配置 + + + New Configuration Name: + 新配置名称: + + + %1 Debug + %1 调试 + + + %1 Release + %1 发布 + + + + Qt4ProjectManager::Qt4Project + + Evaluating + 评估 + + + + Qt4ProjectManager::Internal::Qt4TargetFactory + + Debug + + + + Release + + + + + QtVersion + + No qmake path set + 没有设置qmake路径 + + + Qt version has no name + 没有设置Qt版本名称 + + + 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 Qt Version has no toolchain. + 此Qt 版本没有工具链. + + + + Qt4ProjectManager::Internal::MobileGuiAppWizard + + 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应用. + + + + Qt4ProjectManager::Internal::BaseQt4ProjectWizardDialog + + Modules + 模块 + + + Qt Versions + Qt版本 + + + + Qt4ProjectManager::Internal::TargetSetupPage + + Set up targets for your project + 为你的项目设置目标 + + + 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? + 新建 + + + Qt Creator can set up the following targets for project <b>%1</b>: + %1: Project name + Qt Creator 可以为工程<b>%1</b>设置如下目标: + + + 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"的构建. + + + <b>Error:</b> + Severity is Task::Error + <b>错误:</b> + + + <b>Warning:</b> + Severity is Task::Warning + <b>警告:</b> + + + Setup targets for your project + 为你的项目设置目标 + + + Build Directory + 构建目录 + + + Import existing shadow build... + 导入存在的shadow构建... + + + Import Existing Shadow Build... + 导入存在的shadow build... + + + + Qt4ProjectManager::Internal::TestWizard + + 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单元测试. + + + + Qt4ProjectManager::Internal::TestWizardDialog + + This wizard generates a Qt unit test consisting of a single source file with a test class. + 本向导将创建一个Qt单元测试,其中包括一个含有测试类的源文件. + + + Details + 详情 + + + + Subversion::Internal::SubversionEditor + + Annotate revision "%1" + 注释版本 "%1" + + + + TextEditor::TextEditorPlugin + + Creates a text file (.txt). + 创建一个文本文件(.txt). + + + Text File + 文本文件 + + + General + 概要 + + + 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 + + + + 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 + 代码仓库被创建 + + + 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 + + + Unable to acquire a device for port '%1'. It appears to be in use. + 无法监听设备端口'%1',看起来此端口正在被使用. + + + + AboutDialog + + About Bauhaus + AboutDialog + 关于Bauhaus + + + + CodePaster::FileShareProtocolSettingsWidget + + Form + 界面 + + + &Path: + 路径(&P): + + + &Display: + 显示(&D): + + + entries + + + + The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. + 文件共享剪贴板允许在共享的驱动器上共享代码片段. +文件永远不会被删除. + + + + StartExternalQmlDialog + + Start Simultaneous QML and C++ Debugging + 启动QML和C++的同步调试 + + + Debugging address: + 调试地址: + + + Debugging port: + 调试端口: + + + 127.0.0.1 + + + + Project: + 项目: + + + <No project> + <没有项目> + + + Viewer path: + 查看器路径: + + + Viewer arguments: + 查看器参数: + + + To switch languages while debugging, go to Debug->Language menu. + 调试中需要切换语言,请进入调试->语言菜单. + + + + MaemoPackageCreationWidget + + Form + 界面 + + + Package contents: + 软件包内容: + + + Check this if you want the files below to be deployed directly. + 如果你希望以下文件被直接展开,请选中此项. + + + Skip packaging step + 跳过打包步骤 + + + Version number: + 版本号: + + + Major: + 主版本: + + + Minor: + 副版本: + + + Patch: + 补丁: + + + Files to deploy: + 部署文件: + + + Add File to Package + 添加文件到包 + + + Remove File from Package + 从包中移除文件 + + + + 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. + 读取临时文件失败. + + + + CodePaster::FileShareProtocol + + Cannot open %1: %2 + 无法打开%1 : %2 + + + %1 does not appear to be a paster file. + %1似乎不是一个粘贴文件。 + + + 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" + + + + CodePaster::FileShareProtocolSettingsPage + + Fileshare + 文件共享 + + + + CodePaster::Protocol + + %1 - Configuration Error + %1 - 配置错误 + + + Settings... + 设定... + + + + ProjectExplorer::Internal::SessionNameInputDialog + + Enter the name of the session: + 输入会话的名称: + + + + Qml::Internal::EngineComboBox + + Engine %1 + engine number + 引擎 %1 + + + + Qml::Internal::StartExternalQmlDialog + + <No project> + <没有项目> + + + + QmlJSEditor::Internal::QmlJSPreviewRunner + + Failed to preview Qt Quick file + 预览Qt Quick文件失败 + + + Could not preview Qt Quick (QML) file. Reason: +%1 + 无法预览Qt Quick (QML) 文件. 原因: +%1 + + + + QmlProjectManager::Internal::QmlTaskManager + + QML + + + + + Qt4ProjectManager::Internal::MaemoPackageContents + + Local File Path + 本地文件路径 + + + Remote File Path + 远程文件路径 + + + + Qt4ProjectManager::Internal::MaemoPackageCreationStep + + 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 error: Could not start command '%1'. Reason: %2 + 打包错误:无法执行命令'%1' 原因'%2' + + + Reason: %1 + 原因 %1 + + + Exit code: %1 + 退出代码: %1 + + + Packaging Error: Command '%1' timed out. + 打包错误:命令%1'超时. + + + Packaging Error: Command '%1' failed. + 打包错误:命令%1'失败. + + + Output was: + 输出是: + + + + Debugger::Internal::PdbEngine + + Running requested... + 执行请求... + + + Unable to start pdb '%1': %2 + 无法启动 pdb '%1': %2 + + + Adapter start failed + 适配器启动失败 + + + '%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 进程在正常启动后崩溃。 + + + 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 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 + + Invalid Id + 无效标识符 + + + + ProjectExplorer::Internal::S60ProjectChecker + + 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. + 塞班的工具链无法处理项目路径中的特殊字符。 + + + + Qt4ProjectManager::QtVersion + + 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" 没有找到或不可执行。 + + + + 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 QLatin1String(...) + 用QLatin1String(...)封装 + + + Convert to Objective-C String Literal + 转换为Objective-C字符串 + + + Use Fast String Concatenation with % + 用%实现快速字符串连接 + + + + GenericProjectManager::Internal::Manager + + Failed opening project '%1': Project already open + 打开项目 '%1'失败:项目已经被打开 + + + + QmlDesigner::FormEditorWidget + + Snap to guides (E) + + + + Show bounding rectangles (A) + 显示外围边框(A) + + + Only select items with content (S) + 仅选择有内容的项目 (S) + + + + 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 + 正常 + + + Outline + + + + Raised + + + + Sunken + + + + ... + ... + + + + BorderImageSpecifics + + Image + 图像 + + + Source + 来源 + + + Source Size + 源文件尺寸 + + + Left + 左端 + + + Right + 右端 + + + Top + 顶部 + + + Bottom + 底部 + + + + emptyPane + + none or multiple items selected + 没有选中或选中多项 + + + + ExpressionEditor + + Expression + 表达式 + + + + Extended + + Effect + 效果 + + + Blur Radius: + 模糊半径: + + + Pixel Size: + 像素大小: + + + x Offset: + x 偏移: + + + y Offset: + y 偏移: + + + + ExtendedFunctionButton + + Reset + 重置 + + + Set Expression + 设置表达式 + + + + FontGroupBox + + Font + 字体 + + + Size + 字号 + + + Font Style + 字体风格 + + + Style + 风格 + + + + Geometry + + Geometry + 位置信息 + + + Position + 位置 + + + Size + 大小 + + + Lock aspect ratio + 锁定外观比率 + + + + ImageSpecifics + + Image + 图像 + + + Source + + + + Fill Mode + 填充模式 + + + Aliasing + anti-alias + 边缘锯齿 + + + Smooth + 平滑 + + + Source Size + 源文件尺寸 + + + Painted Size + 绘制尺寸 + + + + Layout + + Layout + 页面布局 + + + Anchors + 锚点 + + + Target + 目标 + + + Margin + 页面空白 + + + + Modifiers + + Manipulation + 操作 + + + Rotation + 旋转 + + + z + + + + + RectangleColorGroupBox + + Colors + 颜色 + + + Stops + 停止点 + + + Gradient Stops + 渐变停止点 + + + Rectangle + 矩形 + + + Border + 边框 + + + + RectangleSpecifics + + Rectangle + 矩形 + + + Border + 边框 + + + Radius + 半径 + + + + StandardTextColorGroupBox + + Color + 颜色 + + + Text + 文本 + + + Style + 风格 + + + Selection + 选择 + + + Selected + 选中 + + + + StandardTextGroupBox + + Text + 文本 + + + Wrap Mode + 折行模式 + + + Alignment + 对齐方式 + + + + + + + Aliasing + 别名 + + + Smooth + 平滑 + + + + Switches + + special properties + 特殊属性 + + + layout and geometry + 布局和位置 + + + Geometry + 位置 + + + advanced properties + 高级属性 + + + Advanced + 高级 + + + + TextEditSpecifics + + Text Edit + 编辑文本 + + + Format + 格式 + + + + TextInputGroupBox + + Text Input + 输入文本 + + + 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 + 顶端右侧 + + + Left + 左边 + + + Center + 中心 + + + Right + 右边 + + + Bottom Left + 底端左侧 + + + Bottom + 底端 + + + Bottom Right + 底端右侧 + + + Scale + 缩放比例 + + + Rotation + 旋转 + + + + Type + + Type + 类型 + + + Id + + + + + Visibility + + Visibility + 可见性 + + + Is visible + 可见的 + + + Clip + 剪贴 + + + Opacity + 不透明度 + + + + WebViewSpecifics + + WebView + 网页视图 + + + Preferred Width + 首选宽度 + + + Page Height + 页面高度 + + + + Core::HelpManager + + Unfiltered + 未过滤 + + + + FakeVim::Internal::FakeVimHandler::Private + + Not an editor command: %1 + 不是一个编辑器命令: %1 + + + + QmlDesigner::ContextPaneWidget + + Disable permanently + 永久禁止 + + + + Qt4ProjectManager::Internal::QemuRuntimeManager + + Start Maemo Emulator + 启动Maemo模拟器 + + + Qemu has been shut down, because you removed the corresponding Qt version. + Qemu 已经被关闭, 因为你移除了相应的 Qt 版本. + + + Qemu finished with error: Exit code was %1. + Qemu 在有错误的情况下结束: 退出代码 %1. + + + Qemu failed to start: %1 + Qemu 启动失败:%1 + + + Qemu crashed + Qemu崩溃了 + + + Qemu error + Qemu 错误 + + + Stop Maemo Emulator + 停止Maemo模拟器 + + + diff --git a/share/qtcreator/translations/translations.pro b/share/qtcreator/translations/translations.pro index a606ba6c93..d700079098 100644 --- a/share/qtcreator/translations/translations.pro +++ b/share/qtcreator/translations/translations.pro @@ -1,6 +1,6 @@ include(../../../qtcreator.pri) -LANGUAGES = de ja pl ru +LANGUAGES = de ja pl ru zh_CN #LANGUAGES = cs es fr hu it sl # var, prepend, append -- cgit v1.2.1 From ae55b43c3782a06d625805e2135f2a0c3b7754b2 Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 13 Aug 2010 09:50:14 +0200 Subject: debugger: fix display of QObject properties This is a backport of 5d645bfdfe87b22315997847191ac7d45b243e99 --- share/qtcreator/gdbmacros/dumper.py | 11 +++++++++++ share/qtcreator/gdbmacros/gdbmacros.py | 9 +++------ 2 files changed, 14 insertions(+), 6 deletions(-) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index 317224d52f..d49e1682fe 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -1326,6 +1326,13 @@ class Dumper: nsStrippedType = self.stripNamespaceFromType( typedefStrippedType).replace("::", "__") + # Is this derived from QObject? + try: + item.value['staticMetaObject'] + hasMetaObject = True + except: + hasMetaObject = False + #warn(" STRIPPED: %s" % nsStrippedType) #warn(" DUMPERS: %s" % self.dumpers) #warn(" DUMPERS: %s" % (nsStrippedType in self.dumpers)) @@ -1336,6 +1343,10 @@ class Dumper: self.putValue(value) self.putNumChild(0) + elif hasMetaObject and self.useFancy: + self.putType(item.value.type) + qdump__QObject(self, item) + elif nsStrippedType in self.dumpers: #warn("IS DUMPABLE: %s " % type) self.putType(item.value.type) diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index 60869f6e8d..4db5d3850c 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -578,9 +578,6 @@ def extractCString(table, offset): return result -def qdump__QWidget(d, item): - qdump__QObject(d, item) - def qdump__QObject(d, item): #warn("OBJECT: %s " % item.value) staticMetaObject = item.value["staticMetaObject"] @@ -617,15 +614,15 @@ def qdump__QObject(d, item): d.putNumChild(4) if d.isExpanded(item): with Children(d): + d.putFields(item) # Parent and children. d.putItem(Item(d_ptr["parent"], item.iname, "parent", "parent")) d.putItem(Item(d_ptr["children"], item.iname, "children", "children")) # Properties. with SubItem(d): - #propertyCount = metaData[6] - # FIXME: Replace with plain memory accesses. - propertyCount = call(mo, "propertyCount()") + propertyCount = metaData[6] + #propertyCount = call(mo, "propertyCount()") #warn("PROPERTY COUNT: %s" % propertyCount) propertyData = metaData[7] d.putName("properties") -- cgit v1.2.1 From b44efd097b03a89d1df1fd77b871ff5a238f66c5 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Fri, 13 Aug 2010 11:10:11 +0200 Subject: Custom wizard: Add boolean 'enabled' attribute to . Reviewed-by: Kai Koehne --- .../projectexplorer/customwizard/customwizard.cpp | 9 ++++-- .../customwizard/customwizardparameters.cpp | 33 ++++++++++++++-------- .../customwizard/customwizardparameters.h | 10 ++++--- 3 files changed, 34 insertions(+), 18 deletions(-) diff --git a/src/plugins/projectexplorer/customwizard/customwizard.cpp b/src/plugins/projectexplorer/customwizard/customwizard.cpp index b9c8e7e18a..81a141e315 100644 --- a/src/plugins/projectexplorer/customwizard/customwizard.cpp +++ b/src/plugins/projectexplorer/customwizard/customwizard.cpp @@ -331,13 +331,18 @@ QList CustomWizard::createWizards() if (dir.exists(configFile)) { CustomWizardParametersPtr parameters(new Internal::CustomWizardParameters); Core::BaseFileWizardParameters baseFileParameters; - if (parameters->parse(dir.absoluteFilePath(configFile), &baseFileParameters, &errorMessage)) { + switch (parameters->parse(dir.absoluteFilePath(configFile), &baseFileParameters, &errorMessage)) { + case Internal::CustomWizardParameters::ParseOk: parameters->directory = dir.absolutePath(); if (CustomWizardPrivate::verbose) verboseLog += parameters->toString(); if (CustomWizard *w = createWizard(parameters, baseFileParameters)) rc.push_back(w); - } else { + case Internal::CustomWizardParameters::ParseDisabled: + if (CustomWizardPrivate::verbose) + qWarning("Ignoring disabled wizard %s...", qPrintable(dir.absolutePath())); + break; + case Internal::CustomWizardParameters::ParseFailed: qWarning("Failed to initialize custom project wizard in %s: %s", qPrintable(dir.absolutePath()), qPrintable(errorMessage)); } diff --git a/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp b/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp index 2f3d902c88..034692039e 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp +++ b/src/plugins/projectexplorer/customwizard/customwizardparameters.cpp @@ -48,6 +48,7 @@ static const char customWizardElementC[] = "wizard"; static const char iconElementC[] = "icon"; static const char descriptionElementC[] = "description"; static const char displayNameElementC[] = "displayname"; +static const char wizardEnabledAttributeC[] = "enabled"; static const char idAttributeC[] = "id"; static const char kindAttributeC[] = "kind"; static const char klassAttributeC[] = "class"; @@ -329,9 +330,13 @@ static inline QString msgError(const QXmlStreamReader &reader, arg(fileName).arg(reader.lineNumber()).arg(reader.columnNumber()).arg(what); } -static inline bool booleanAttributeValue(const QXmlStreamReader &r, const char *name) +static inline bool booleanAttributeValue(const QXmlStreamReader &r, const char *nameC, + bool defaultValue) { - return r.attributes().value(QLatin1String(name)) == QLatin1String("true"); + const QStringRef attributeValue = r.attributes().value(QLatin1String(nameC)); + if (attributeValue.isEmpty()) + return defaultValue; + return attributeValue == QLatin1String("true"); } static inline int integerAttributeValue(const QXmlStreamReader &r, const char *name, int defaultValue) @@ -368,7 +373,8 @@ static inline QString localeLanguage() } // Main parsing routine -bool CustomWizardParameters::parse(QIODevice &device, +CustomWizardParameters::ParseResult + CustomWizardParameters::parse(QIODevice &device, const QString &configFileFullPath, Core::BaseFileWizardParameters *bp, QString *errorMessage) @@ -386,7 +392,7 @@ bool CustomWizardParameters::parse(QIODevice &device, switch (token) { case QXmlStreamReader::Invalid: *errorMessage = msgError(reader, configFileFullPath, reader.errorString()); - return false; + return ParseFailed; case QXmlStreamReader::StartElement: do { // Read out subelements applicable to current state @@ -401,8 +407,10 @@ bool CustomWizardParameters::parse(QIODevice &device, case ParseError: *errorMessage = msgError(reader, configFileFullPath, QString::fromLatin1("Unexpected start element %1").arg(reader.name().toString())); - return false; + return ParseFailed; case ParseWithinWizard: + if (!booleanAttributeValue(reader, wizardEnabledAttributeC, true)) + return ParseDisabled; bp->setId(attributeValue(reader, idAttributeC)); bp->setCategory(attributeValue(reader, categoryAttributeC)); bp->setKind(kindAttribute(reader)); @@ -411,14 +419,14 @@ bool CustomWizardParameters::parse(QIODevice &device, break; case ParseWithinField: // field attribute field.name = attributeValue(reader, fieldNameAttributeC); - field.mandatory = booleanAttributeValue(reader, fieldMandatoryAttributeC); + field.mandatory = booleanAttributeValue(reader, fieldMandatoryAttributeC, false); break; case ParseWithinFile: { // file attribute CustomWizardFile file; file.source = attributeValue(reader, fileNameSourceAttributeC); file.target = attributeValue(reader, fileNameTargetAttributeC); - file.openEditor = booleanAttributeValue(reader, fileNameOpenEditorAttributeC); - file.openProject = booleanAttributeValue(reader, fileNameOpenProjectAttributeC); + file.openEditor = booleanAttributeValue(reader, fileNameOpenEditorAttributeC, false); + file.openProject = booleanAttributeValue(reader, fileNameOpenProjectAttributeC, false); if (file.target.isEmpty()) file.target = file.source; if (file.source.isEmpty()) { @@ -438,7 +446,7 @@ bool CustomWizardParameters::parse(QIODevice &device, if (state == ParseError) { *errorMessage = msgError(reader, configFileFullPath, QString::fromLatin1("Unexpected end element %1").arg(reader.name().toString())); - return false; + return ParseFailed; } if (state == ParseWithinFields) { // Leaving a field element fields.push_back(field); @@ -449,17 +457,18 @@ bool CustomWizardParameters::parse(QIODevice &device, break; } } while (token != QXmlStreamReader::EndDocument); - return true; + return ParseOk; } -bool CustomWizardParameters::parse(const QString &configFileFullPath, +CustomWizardParameters::ParseResult + CustomWizardParameters::parse(const QString &configFileFullPath, Core::BaseFileWizardParameters *bp, QString *errorMessage) { QFile configFile(configFileFullPath); if (!configFile.open(QIODevice::ReadOnly|QIODevice::Text)) { *errorMessage = QString::fromLatin1("Cannot open %1: %2").arg(configFileFullPath, configFile.errorString()); - return false; + return ParseFailed; } return parse(configFile, configFileFullPath, bp, errorMessage); } diff --git a/src/plugins/projectexplorer/customwizard/customwizardparameters.h b/src/plugins/projectexplorer/customwizard/customwizardparameters.h index f71de2b612..3d5b223d4c 100644 --- a/src/plugins/projectexplorer/customwizard/customwizardparameters.h +++ b/src/plugins/projectexplorer/customwizard/customwizardparameters.h @@ -67,12 +67,14 @@ struct CustomWizardFile { struct CustomWizardParameters { public: + enum ParseResult { ParseOk, ParseDisabled, ParseFailed }; + CustomWizardParameters(); void clear(); - bool parse(QIODevice &device, const QString &configFileFullPath, - Core::BaseFileWizardParameters *bp, QString *errorMessage); - bool parse(const QString &configFileFullPath, - Core::BaseFileWizardParameters *bp, QString *errorMessage); + ParseResult parse(QIODevice &device, const QString &configFileFullPath, + Core::BaseFileWizardParameters *bp, QString *errorMessage); + ParseResult parse(const QString &configFileFullPath, + Core::BaseFileWizardParameters *bp, QString *errorMessage); QString toString() const; QString directory; -- cgit v1.2.1 From bbee4a6367c76798fb9bb558a2c53617549827af Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Fri, 13 Aug 2010 13:34:48 +0200 Subject: remove duplicated message :} --- share/qtcreator/translations/qtcreator_zh_CN.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_zh_CN.ts b/share/qtcreator/translations/qtcreator_zh_CN.ts index eadd433fa5..b79b28ce43 100644 --- a/share/qtcreator/translations/qtcreator_zh_CN.ts +++ b/share/qtcreator/translations/qtcreator_zh_CN.ts @@ -5147,12 +5147,6 @@ p, li { white-space: pre-wrap; } The generated header of the form '%1' could not be found. -Rebuilding the project might help. - 找不到界面 "%1"生成的头文件。 -重新构建工程可能有帮助。 - - - The generated header of the form '%1' could not be found. Rebuilding the project might help. 找不到界面 "%1"生成的头文件。 重新构建工程可能有帮助。 -- cgit v1.2.1 From e28e1f0c568dd91b0b534c1c0c968e8b3549a8bc Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Fri, 13 Aug 2010 11:57:19 +0200 Subject: Fix QtQuick->Preview shortcut to start a qmlviewer The executable has been renamed to 'qmlviewer' months ago --- src/plugins/qmljseditor/qmljspreviewrunner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmljseditor/qmljspreviewrunner.cpp b/src/plugins/qmljseditor/qmljspreviewrunner.cpp index edae36100f..6100360614 100644 --- a/src/plugins/qmljseditor/qmljspreviewrunner.cpp +++ b/src/plugins/qmljseditor/qmljspreviewrunner.cpp @@ -18,7 +18,7 @@ QmlJSPreviewRunner::QmlJSPreviewRunner(QObject *parent) : const QString searchPath = QCoreApplication::applicationDirPath() + Utils::SynchronousProcess::pathSeparator() + QString(qgetenv("PATH")); - m_qmlViewerDefaultPath = Utils::SynchronousProcess::locateBinary(searchPath, QLatin1String("qml")); + m_qmlViewerDefaultPath = Utils::SynchronousProcess::locateBinary(searchPath, QLatin1String("qmlviewer")); ProjectExplorer::Environment environment = ProjectExplorer::Environment::systemEnvironment(); m_applicationLauncher.setEnvironment(environment.toStringList()); -- cgit v1.2.1 From ceca9d9d7abba7a48b4388654a68b22073a050e2 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Fri, 13 Aug 2010 12:31:15 +0200 Subject: Disable "Qt Quick->Preview" action if no qmlviewer in the PATH An error dialog would be more explicit, but too late because of string freeze. --- src/plugins/qmljseditor/qmljseditorplugin.cpp | 2 ++ src/plugins/qmljseditor/qmljspreviewrunner.cpp | 4 ++++ src/plugins/qmljseditor/qmljspreviewrunner.h | 2 ++ 3 files changed, 8 insertions(+) diff --git a/src/plugins/qmljseditor/qmljseditorplugin.cpp b/src/plugins/qmljseditor/qmljseditorplugin.cpp index f998309ac1..e9d7926182 100644 --- a/src/plugins/qmljseditor/qmljseditorplugin.cpp +++ b/src/plugins/qmljseditor/qmljseditorplugin.cpp @@ -133,7 +133,9 @@ bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *e Core::Command *cmd = addToolAction(m_actionPreview, am, toolsMenuContext, QLatin1String("QtQuick.Preview"), menuQtQuick, tr("Ctrl+Alt+R")); connect(cmd->action(), SIGNAL(triggered()), SLOT(openPreview())); + m_previewRunner = new QmlJSPreviewRunner(this); + m_actionPreview->setEnabled(m_previewRunner->isReady()); QAction *followSymbolUnderCursorAction = new QAction(tr("Follow Symbol Under Cursor"), this); cmd = am->registerAction(followSymbolUnderCursorAction, Constants::FOLLOW_SYMBOL_UNDER_CURSOR, context); diff --git a/src/plugins/qmljseditor/qmljspreviewrunner.cpp b/src/plugins/qmljseditor/qmljspreviewrunner.cpp index 6100360614..7611cecc2b 100644 --- a/src/plugins/qmljseditor/qmljspreviewrunner.cpp +++ b/src/plugins/qmljseditor/qmljspreviewrunner.cpp @@ -24,6 +24,10 @@ QmlJSPreviewRunner::QmlJSPreviewRunner(QObject *parent) : m_applicationLauncher.setEnvironment(environment.toStringList()); } +bool QmlJSPreviewRunner::isReady() const +{ + return !m_qmlViewerDefaultPath.isEmpty(); +} void QmlJSPreviewRunner::run(const QString &filename) { diff --git a/src/plugins/qmljseditor/qmljspreviewrunner.h b/src/plugins/qmljseditor/qmljspreviewrunner.h index 869327b10c..1a3c26370f 100644 --- a/src/plugins/qmljseditor/qmljspreviewrunner.h +++ b/src/plugins/qmljseditor/qmljspreviewrunner.h @@ -13,6 +13,8 @@ class QmlJSPreviewRunner : public QObject Q_OBJECT public: explicit QmlJSPreviewRunner(QObject *parent = 0); + + bool isReady() const; void run(const QString &filename); signals: -- cgit v1.2.1 From faa38be87c9a9afc0ddc7672b655521ac829bb5f Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Fri, 13 Aug 2010 14:50:39 +0200 Subject: Debugger[Python]: Deactivate QObject-Properties temporarily due to it causing Windows gdb to crash. Reviewed-by: hjk --- share/qtcreator/gdbmacros/dumper.py | 10 +--------- share/qtcreator/gdbmacros/gdbmacros.py | 1 - 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index d49e1682fe..903efc214f 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -1327,11 +1327,7 @@ class Dumper: typedefStrippedType).replace("::", "__") # Is this derived from QObject? - try: - item.value['staticMetaObject'] - hasMetaObject = True - except: - hasMetaObject = False + hasMetaObject = False #warn(" STRIPPED: %s" % nsStrippedType) #warn(" DUMPERS: %s" % self.dumpers) @@ -1343,10 +1339,6 @@ class Dumper: self.putValue(value) self.putNumChild(0) - elif hasMetaObject and self.useFancy: - self.putType(item.value.type) - qdump__QObject(self, item) - elif nsStrippedType in self.dumpers: #warn("IS DUMPABLE: %s " % type) self.putType(item.value.type) diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index 4db5d3850c..295dd4e3ff 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -614,7 +614,6 @@ def qdump__QObject(d, item): d.putNumChild(4) if d.isExpanded(item): with Children(d): - d.putFields(item) # Parent and children. d.putItem(Item(d_ptr["parent"], item.iname, "parent", "parent")) d.putItem(Item(d_ptr["children"], item.iname, "children", "children")) -- cgit v1.2.1 From eb707d1a03715aadbbd067acb74fda529f2366ba Mon Sep 17 00:00:00 2001 From: Jure Repinc Date: Mon, 16 Aug 2010 11:59:24 +0200 Subject: Updated Slovenian translation for Qt Creator 2.1 Merge-request: 167 Reviewed-by: Oswald Buddenhagen --- share/qtcreator/translations/qtcreator_sl.ts | 1681 +++++++++++++------------- 1 file changed, 847 insertions(+), 834 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_sl.ts b/share/qtcreator/translations/qtcreator_sl.ts index ce809f1e0d..b36cf67cec 100644 --- a/share/qtcreator/translations/qtcreator_sl.ts +++ b/share/qtcreator/translations/qtcreator_sl.ts @@ -1,7 +1,7 @@ - 2010-08-09 04:32+0200 + 2010-08-14 19:48+0200 MIME-Version,Content-Type,Content-Transfer-Encoding,Plural-Forms,X-Language,X-Qt-Contexts,Last-Translator,PO-Revision-Date,Project-Id-Version,Language-Team,X-Generator Lokalize 1.1 Slovenian <lugos-slo@lugos.si> @@ -1531,7 +1531,7 @@ Ali jih želite nadomestiti? <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>Temelji na Qt %2 (%3-biten)<br/><br/>Zgrajen dne %4 ob %5<br /><br/>%9<br/>Avtorske pravice 2008-%6 %7. Vse pravice pridržane.<br/><br/>Program je na voljo KOT TAK, BREZ KAKRŠNEGAKOLI JAMSTVA, niti jamstva USTREZNOSTI ZA PRODAJO niti PRIMERNOSTI ZA UPORABO.<br/> + <h3>Qt Creator %1 %8</h3>Temelji na Qt %2 (%3-biten)<br/><br/>Zgrajen dne %4 ob %5<br /><br/>%9<br/>Avtorske pravice 2008-%6 %7. Vse pravice pridržane.<br/><br/>Prevedel: <a href="mailto:jlp@holodeck1.com">Jure Repinc</a>, <a href="http://www.lugos.si/">LUGOS</a><br/><br/>Program je na voljo KOT TAK, BREZ KAKRŠNEGAKOLI JAMSTVA, niti jamstva USTREZNOSTI ZA PRODAJO niti PRIMERNOSTI ZA UPORABO.<br/> @@ -5599,7 +5599,7 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Ctrl++ - Ctrl + Ctrl++ Decrease Font Size @@ -5607,7 +5607,7 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Ctrl+- - Ctrl + Ctrl+- Reset Font Size @@ -5615,39 +5615,39 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Ctrl+0 - Ctrl + 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 - + V načinu pomoči vklopi zaznamke Open Pages - + Odprte strani Activate Open Pages in Help mode - + V načinu pomoči vklopi odprte strani Go to Help Mode - + Preklopi v način pomoči Previous @@ -5655,7 +5655,7 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Close current Page - + Zapri trenutno stran Next @@ -5698,38 +5698,38 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Help::Internal::SearchWidget Indexing - Indeksiranje + Indeksiranje Indexing Documentation... - + Indeksiranje dokumentacije ... Open Link - Odpri povezavo + Odpri povezavo Open Link as New Page - + Odpri povezavo kot novo stran Copy Link - Skopiraj povezavo + Skopiraj povezavo Copy - Kopiraj + Skopiraj Reload - Znova naloži + Znova naloži HelpViewer <title>about:blank</title> - about:blank + <title>about:blank</title> <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> @@ -5748,7 +5748,7 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Open Link as New Page - + Odpri povezavo kot novo stran @@ -5774,141 +5774,143 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Bauhaus MainWindowClass - + Bauhaus &File - &Datoteka + &Datoteka &New... - &Novo ... + &Novo ... Ctrl+N - + Ctrl+N &Open... - &Odpri ... + &Odpri ... Recent Files - Nedavne datoteke + Nedavne datoteke &Save - &Shrani + &Shrani Ctrl+S - Ctrl+S + Ctrl+S Save &As... - Shrani &kot ... + Shrani &kot ... &Preview - O&gled + O&gled Ctrl+R - CTRL+R + Ctrl+R &Preview with Debug - + O&gled z razhroščevanjem Ctrl+D - + Ctrl+D &Quit - Konča&j + Konča&j Ctrl+Q - Ctrl+Q + Ctrl+Q &Edit - &Urejanje + &Urejanje Ctrl+Z - + Ctrl+Z Ctrl+Y - + Ctrl+Y Ctrl+Shift+Z - + Ctrl+Shift+Z &Copy - S&kopiraj + S&kopiraj &Cut - Izreži + &Izreži &Paste - Pri&lepi + Pri&lepi &Delete - &Zbriši + &Zbriši Del - Del + Del Backspace - Vračalka + Vračalka &View - &Videz + &Videz &Help - &Pomoč + &Pomoč &About... - &O + &O ... Properties - Lastnosti + Lastnosti Could not open file <%1> - Ni moč odpreti datoteke %1 + Ni bilo moč odpreti datoteke <%1> Qml Errors: - + Napake QML: %1 %2:%3 - %4 - S + +%1 %2:%3 – %4 %1:%2 - %3 - S + +%1:%2 – %3 Ctrl+O - Ctrl+O + Ctrl+O @@ -6452,7 +6454,7 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Failed Plugins - + Neuspeli vstavki @@ -6523,50 +6525,50 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Starting: "%1" %2 - <font color="#0000ff">Zaganjanje: %1 %2</font> + Zaganjanje: »%1« %2 The process "%1" exited normally. - + Proces »%1« je končal normalno. The process "%1" exited with code %2. - + Proces »%1« je končal z izhodno kodo %2. The process "%1" crashed. - + Proces »%1« se je sesul. Could not start process "%1" - Nis možno zagnati procesa %1. + Procesa »%1« ni bilo moč zagnati ProjectExplorer::BuildManager Finished %1 of %n build steps - - - - - + + Zaključen %1 od %n korakov gradnje + Zaključena %1 od %n korakov gradnje + Zaključeni %1 od %n korakov gradnje + Zaključenih %1 od %n korakov gradnje Compile Category for compiler isses listened under 'Build Issues' - + Prevajanje Build System Category for build system isses listened under 'Build Issues' - Sistem za gradnjo: + Sistem za gradnjo Canceled build. - <font color="#ff0000">Preklicana gradnja.</font> + Gradnja preklicana. Build @@ -6574,15 +6576,15 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Error while building project %1 (target: %2) - + Napaka med gradnjo projekta %1 (cilj: %2) When executing build step '%1' - <font color="#ff0000">Med izvajanjem koraka »%1«</font> + Med izvajanjem koraka »%1« Running build steps for project %1... - <b>Poganjanje korakov gradnje za projekt %2 ...</b> + Zaganjanje korakov gradnje za projekt %1 ... @@ -6597,15 +6599,15 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Clean Environment - Čisto okolje + Čisto okolje System Environment - Sistemsko okolje + Sistemsko okolje Build Environment - Okolje za gradnjo + Okolje za gradnjo Run %1 @@ -6636,12 +6638,12 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr <VARIABLE> Name when inserting a new variable - <spremenljivka> + <spremenljivka> <VALUE> Value when inserting a new variable - <vrednost> + <vrednost> <VARIABLE> @@ -6676,11 +6678,11 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Using <b>%1</b> - + Uporablja se <b>%1</b> Using <b>%1</b> and - + Uporabljata se <b>%1</b> in @@ -6713,11 +6715,11 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr No build settings available - + Na voljo ni nobenih nastavitev za gradnjo Edit build configuration: - Urejanje nastavitev za gradnjo: + Urejanje nastavitev za gradnjo: Add @@ -6756,31 +6758,31 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Move Up - Premakni gor + Premakni gor Move Down - Premakni dol + Premakni dol Remove Item - Odstrani postavko + Odstrani postavko Removing Step failed - + Odstranitev koraka gradnje ni uspela Can't remove build step while building - + Odstranitev koraka gradnje med gradnjo ni mogoča Add Clean Step - Dodaj korak čiščenja + Dodaj korak čiščenja Add Build Step - Dodaj korak gradnje + Dodaj korak gradnje @@ -6886,7 +6888,7 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr ProjectExplorer::Internal::EditorSettingsPropertiesPage Default file encoding: - Privzeti nabor znakov: + Privzeti nabor znakov: @@ -6908,35 +6910,35 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr &New - &Nov + &Nova &Rename - Pre&imenuj + Pre&imenuj C&lone - Podvoji + &Podvoji &Delete - &Zbriši + &Zbriši &Switch to - Preklopi na %1 + P&reklopi na <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> - <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Kaj je seja?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">Kaj je seja?</a> New session name - Ime nove seje + Ime nove seje Rename session - Preimenuj sejo + Preimenuj sejo @@ -6951,19 +6953,19 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Application Output Window - Okno z izhodom programa + Okno z izhodom programa The application is still running. - + Program še vedno teče. Force it to quit? - + Ali ga želite prisilno končati? Force Quit - + Prisilno končaj Application Output @@ -6979,7 +6981,8 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Additional output omitted - + Nekaj izhoda je bilo izpuščenega + @@ -7013,22 +7016,22 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Enable custom process step - Omogoči korak postopka po meri + Omogoči korak postopka po meri Working directory: - Delovna mapa: + Delovna mapa: Command arguments: - Argumenti za ukaz: + Argumenti za ukaz: ProjectExplorer::Internal::ProjectExplorerSettingsPage General - Splošno + Splošno @@ -7036,7 +7039,7 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Project File Factory ProjectExplorer::ProjectFileFactory display name. - + Tovarna datotek za projekt Could not open the following project: '%1' @@ -7051,7 +7054,7 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr ---------- No project selected - + <brez> Failed to add one or more files to project @@ -7061,7 +7064,7 @@ No project selected A version control system repository could not be created in '%1'. - + V »%1« ni bilo moč ustvariti skladišča za sistem za nadzor različic. Failed to add '%1' to the version control system. @@ -7098,7 +7101,7 @@ No project selected ProjectExplorer::Internal::ProjectWizardPage Summary - Povzetek + Povzetek Files to be added: @@ -7106,7 +7109,7 @@ No project selected Files to be added in - + Datoteke za dodati v @@ -7151,7 +7154,7 @@ No project selected Run configuration: - &Nastavitve za zagon: + Nastavitve za zagon: @@ -7204,11 +7207,11 @@ No project selected Add to &project: - &Dodaj k projektu + Dodaj v &projekt: Add to &version control: - Dodaj &v sistem za nadzor različic + Dodaj &v sistem za nadzor različic: @@ -7243,7 +7246,7 @@ No project selected Ctrl+Shift+N - + Ctrl+Shift+N Load Project... @@ -7251,7 +7254,7 @@ No project selected Ctrl+Shift+O - + Ctrl+Shift+O Open File @@ -7275,7 +7278,7 @@ No project selected Ctrl+Shift+B - + Ctrl+Shift+B Rebuild All @@ -7291,7 +7294,7 @@ No project selected Ctrl+B - Ctrl+B + Ctrl+B Rebuild Project @@ -7327,15 +7330,15 @@ No project selected Ctrl+R - CTRL+R + Ctrl+R Projects (%1) - Projekti + Projekti (%1) All Files (*) - Vse datoteke (*) + Vse datoteke (*) Cancel Build @@ -7347,7 +7350,7 @@ No project selected F5 - F5 + F5 Add New... @@ -7380,27 +7383,27 @@ No project selected Recent P&rojects - Nedavni projekti + Nedavni p&rojekti Open Build/Run Target Selector... - + Odpri izbirnik gradnje/zagona cilja ... Ctrl+T - + Ctrl+T Always save files before build - + Pred gradnjo vedno shrani datoteke Cannot run without a project. - + Brez projekta ni moč zagnati. Cannot debug without a project. - + Brez projekta ni moč razhroščevati. New File @@ -7507,15 +7510,15 @@ v sistem za nadzor različic (%2)? qmake build configuration: - Nastavitev gradnje QMake: + Nastavitev gradnje s QMake: Debug - Razhrošči + Razhroščevanje Release - Izdaja + Izdaja @@ -7629,13 +7632,15 @@ v sistem za nadzor različic (%2)? Qt4ProjectManager::Internal::ConsoleAppWizard Qt Console Application - Konzolni program Qt 4 + Konzolni program Qt Creates a project containing a single main.cpp file with a stub implementation. Preselects a desktop Qt for building the application if available. - + Ustvari projekt, ki vsebuje eno datoteko *.cpp z začetno implementacijo. + +Če je na voljo, za gradnjo programa Izbere Qt za namizje. @@ -7649,11 +7654,11 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::EmptyProjectWizard Empty Qt Project - Prazen projekt Qt 4 + Prazen projekt Qt Creates a qmake-based project without any files. This allows you to create an application without any default classes. - + Ustvari projekt temelječ na QMake, ki ne vsebuje nobene datoteke. To vam omogoča ustvariti program brez privzetega razreda. @@ -7678,13 +7683,15 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::GuiAppWizard Qt Gui Application - Grafični program Qt 4 + Grafični program Qt Creates a Qt application for the desktop. Includes a Qt Designer-based main window. Preselects a desktop Qt for building the application if available. - + Ustvari program Qt za namizje. Vsebuje glavno okno, ki temelji na Qt Designerju. + +Če je na voljo, za gradnjo programa izbere Qt za namizje. The template file '%1' could not be opened for reading: %2 @@ -7699,7 +7706,7 @@ Preselects a desktop Qt for building the application if available. Details - Podrobnosti + Podrobnosti @@ -7710,7 +7717,7 @@ Preselects a desktop Qt for building the application if available. 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>. - + Ustvari knjižnico C++ temelječo na QMake. To lahko uporabite, da ustvarite:<ul><li>deljeno knjižnico C++ za uporabo s <tt>QPluginLoader</tt>, ko program že teče (vstavki)</li><li>deljeno ali statično knjižnico C++ za uporabo v drugem projektu v času povezovanja</li></ul> @@ -7737,7 +7744,7 @@ Preselects a desktop Qt for building the application if available. Details - Podrobnosti + Podrobnosti @@ -7755,7 +7762,7 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::ProjectLoadWizard Project setup - + Nastavitev projekta @@ -7798,11 +7805,11 @@ Preselects a desktop Qt for building the application if available. Could not write project file %1. - + Ni bilo moč zapisati projektne datoteke %1. Error while reading PRO file %1: %2 - + Napaka med branjem projektne datoteke %1: %2 @@ -7828,11 +7835,11 @@ Preselects a desktop Qt for building the application if available. using <font color="#ff0000">invalid</font> Qt Version: <b>%1</b><br>%2 - + uporablja <font color="#ff0000">neveljavno</font> različico Qt: <b>%1</b><br>%2 No Qt Version found. - + Najdene ni bilo nobene različice Qt. using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> @@ -7844,12 +7851,12 @@ Preselects a desktop Qt for building the application if available. Building in subdirectories of the source directory is not supported by qmake. - + QMake ne podpira gradnje v podmapah mape z izvorno kodo. An incompatible build exists in %1, which will be overwritten. %1 build directory - + V %1 obstaja nezdružljiva gradnja, ki bo nadomeščena. Manage @@ -7857,31 +7864,31 @@ Preselects a desktop Qt for building the application if available. Configuration name: - Ime nastavitev + Ime nastavitev: Qt version: - Različica Qt: + Različica Qt: This Qt version is invalid. - Različica Qt ni veljavna. + Različica Qt ni veljavna. Tool chain: - Zaporedje orodij: + Zaporedje orodij: Shadow build: - Izven mape s kodo: + Izven mape s kodo: Build directory: - Mapa za gradnjo: + Mapa za gradnjo: problemLabel - + oznakaTežave @@ -7892,30 +7899,30 @@ Preselects a desktop Qt for building the application if available. Build - Zgradi + Zgradi Run qmake in %1 - + Zaženi qmake v %1 Build in %1 - + Zgradi v %1 Qt4ProjectManager::Internal::Qt4RunConfiguration Clean Environment - Čisto okolje + Čisto okolje System Environment - Sistemsko okolje + Sistemsko okolje Build Environment - Okolje za gradnjo + Okolje za gradnjo Qt4 RunConfiguration @@ -7930,15 +7937,15 @@ Preselects a desktop Qt for building the application if available. Select Working Directory - + Izberite delovno mapo Working directory: - Delovna mapa: + Delovna mapa: Run in terminal - Izvedi v terminalu + Zaženi v konzoli Run Environment @@ -7989,7 +7996,7 @@ Preselects a desktop Qt for building the application if available. Select qmake Executable - Izberite program QMake + Izberite program QMake Select the MinGW Directory @@ -8005,7 +8012,7 @@ Preselects a desktop Qt for building the application if available. Select the CSL ARM Toolchain (GCCE) Directory - + Izberite mapo s CSL ARM Toolchain (GCCE) Auto-detected @@ -8027,36 +8034,36 @@ Preselects a desktop Qt for building the application if available. This Qt Version has a unknown toolchain. - + Ta različica Qt ima neznano verigo orodij. Desktop Qt Version is meant for the desktop - Namizje + Namizje Symbian Qt Version is meant for Symbian - + Symbian Maemo Qt Version is meant for Maemo - + Maemo Qt Simulator Qt Version is meant for Qt Simulator - + Qt Simulator unkown No idea what this Qt Version is meant for! - + neznano Found Qt version %1, using mkspec %2 (%3) - Najden je Qt različice %1, uporabljen mkspec %2 + Najden je Qt različice %1, uporabljen mkspec %2 (%3) @@ -8103,35 +8110,35 @@ p, li { white-space: pre-wrap; } qmake Location - Lokacija QMake + Lokacija QMake Version name: - Ime različice: + Ime različice: qmake location: - Lokacija QMake + Lokacija QMake: MinGW directory: - Mapa z MinGW: + Mapa z MinGW: Toolchain: - Zaporedje orodij: + Zaporedje orodij: CSL/GCCE directory: - + Mapa z CSL/GCCE: Carbide directory: - Mapa s Carbide: + Mapa s Carbide: Debugging helper: - Razhroščevalni pomočnik: + Razhroščevalni pomočnik: @@ -8139,11 +8146,11 @@ p, li { white-space: pre-wrap; } Make Qt4 MakeStep display name. - Znamka + Make Could not find make command: %1 in the build environment - <font color="#ff0000">Ni bilo moč najti ukaza make: %1 v okolju za gradnjo</font> + Ni bilo moč najti ukaza make: %1 v okolju za gradnjo @@ -8154,18 +8161,18 @@ p, li { white-space: pre-wrap; } <b>Make:</b> %1 not found in the environment. - + <b>Make:</b> %1 v okolju ni bil najden. <b>Make:</b> %1 %2 in %3 - + <b>Make:</b> %1 %2 v %3 Qt4ProjectManager::Internal::MakeStepFactory Make - Znamka + Make @@ -8173,33 +8180,33 @@ p, li { white-space: pre-wrap; } qmake QMakeStep display name. - QMake + QMake Configuration is faulty, please check the Build Issues view for details. - + Nastavitve niso prave. Za podrobnosti si oglejte podokno »Težave pri gradnji«. Configuration unchanged, skipping qmake step. - <font color="#0000ff">Nastavitev se ni spremenila, izpuščam korak QMake.</font> + Nastavitve se niso spremenile, izpuščam korak QMake. Qt4ProjectManager::QMakeStepConfigWidget <b>qmake:</b> No Qt version set. Cannot run qmake. - + <b>QMake:</b> Nastavljene ni nobene različice Qt. Ni moč zagnati qmake. <b>qmake:</b> %1 %2 - qmake: + <b>QMake:</b> %1 %2 Qt4ProjectManager::Internal::QMakeStepFactory qmake - QMake + QMake @@ -8343,7 +8350,7 @@ p, li { white-space: pre-wrap; } Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. - + Ustvari datoteko z viri za Qt (*.qrc), katero lahko dodate v projekt Qt C++. &Undo @@ -8400,11 +8407,11 @@ p, li { white-space: pre-wrap; } Invalid file location - + Neveljavna lokacija datoteke 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. - + Datoteka %1 ni podmapa datoteke z viri. Imate možnost skopirati datoteko na veljavno lokacijo. Choose copy location @@ -8550,15 +8557,15 @@ p, li { white-space: pre-wrap; } Debugger: - Razhroščevalnik + Razhroščevalnik: Local executable: - + Krajevni program: Sysroot: - + Vrhnja mapa sistema: @@ -8577,27 +8584,27 @@ p, li { white-space: pre-wrap; } Configuration - Nastavitve + Nastavitve Subversion command: - Ukaz Subversion: + Ukaz Subversion: Username: - Uporabniško ime: + Uporabniško ime: Miscellaneous - Razno + Razno Timeout: - Zakasnitev: + Razpoložljivi čas: s - s + s Prompt on submit @@ -8609,7 +8616,7 @@ p, li { white-space: pre-wrap; } Log count: - + Dolžina dnevnika: @@ -8631,11 +8638,11 @@ p, li { white-space: pre-wrap; } Add "%1" - Dodaj + Dodaj »%1« Alt+S,Alt+A - + Alt+S,Alt+A Diff Project @@ -8651,7 +8658,7 @@ p, li { white-space: pre-wrap; } Alt+S,Alt+D - + Alt+S,Alt+D Commit All Files @@ -8667,7 +8674,7 @@ p, li { white-space: pre-wrap; } Alt+S,Alt+C - + Alt+S,Alt+C Filelog Current File @@ -8876,7 +8883,7 @@ p, li { white-space: pre-wrap; } Use regular e&xpressions - Uporabi regularne izraze + Uporabi r&egularne izraze @@ -8992,43 +8999,43 @@ p, li { white-space: pre-wrap; } Automatically determine based on the nearest indented line (previous line preferred over next line) - + Ugotovi samodejno glede na najbližjo zamaknjeno vrstico (predhodna vrstica ima prednost pred naslednjo) Based on the surrounding lines - + Temelječe na okoliških vrsticah Block indentation style: - + Slog zamikanja bloka: Exclude Braces - + Izvzemi oklepaje Include Braces - + Vključi oklepaje GNU Style - + GNU-jevski slog In Leading White Space - V praznini na začetku + V praznini na začetku Mouse - Miška + Miška Enable &mouse navigation - Omogoči navigacijo z &miško + Omogoči krmarjenje z &miško Enable scroll &wheel zooming - + Omogoči povečevanje/zmanjševanje s koleščkom @@ -9075,19 +9082,19 @@ p, li { white-space: pre-wrap; } Mark &text changes - Označi spremembe besedila + Označi &spremembe besedila &Animate matching parentheses - Animiraj ujemanje oklepajev + Animiraj &ujemanje oklepajev Auto-fold first &comment - + Samodejno zvij prvi &komentar Center &cursor on scroll - + Ob premiku &usredišči kazalec @@ -9098,11 +9105,11 @@ p, li { white-space: pre-wrap; } Font && Colors - Pisave in barve + Pisave in barve Color scheme name: - Ime barvne sheme: + Ime barvne sheme: %1 (copy) @@ -9162,7 +9169,7 @@ Naslednji nabori znakov so verjetno ustrezni: TextEditor::Internal::FindInFiles Files on File System - + Datoteke v datotečnem sistemu &Directory: @@ -9213,11 +9220,11 @@ Naslednji nabori znakov so verjetno ustrezni: % - + % Zoom: - Povečava: + Povečava: @@ -9235,7 +9242,7 @@ Naslednji nabori znakov so verjetno ustrezni: TextEditor::Internal::TextEditorPlugin Creates a text file. The default file extension is <tt>.txt</tt>. You can specify a different extension as part of the filename. - + Ustvari besedilno datoteko. Privzeta končnica datoteke je <tt>.txt</tt>. Kot del imena datoteke lahko določite drugo končnico. Text File @@ -9251,11 +9258,11 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+Space - + Ctrl+Space Meta+Space - + Meta+Space Triggers a quick fix in this scope @@ -9263,7 +9270,7 @@ Naslednji nabori znakov so verjetno ustrezni: Alt+Return - + Alt+Return @@ -9286,7 +9293,7 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+I - CTRL+I + Ctrl+I &Visualize Whitespace @@ -9306,7 +9313,7 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+/ - Ctrl + Ctrl+/ Delete &Line @@ -9314,31 +9321,31 @@ Naslednji nabori znakov so verjetno ustrezni: Shift+Del - + Shift+Del Meta - Meta + Meta Ctrl - Ctrl + Ctrl &Rewrap Paragraph - + &Znova prelomi vrstice odstavka %1+E, R - + %1+E, R %1+E, %2+V - + %1+E, %2+V %1+E, %2+W - + %1+E, %2+W Cut &Line @@ -9350,7 +9357,7 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+< - Ctrl + Ctrl+< Expand @@ -9358,7 +9365,7 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+> - Ctrl + Ctrl+> (Un)&Collapse All @@ -9370,7 +9377,7 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl++ - Ctrl + Ctrl++ Decrease Font Size @@ -9378,47 +9385,47 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+- - Ctrl + Ctrl+- Reset Font Size - Ponastavi velikost pisave + Ponastavi velikost pisave Ctrl+0 - Ctrl + Ctrl+0 Go to Block Start - + Pojdi na začetek bloka Go to Block End - + Pojdi na konec bloka Go to Block Start With Selection - + Izberi do začetka bloka Go to Block End With Selection - + Izberi do konca bloka Ctrl+[ - Ctrl + Ctrl+[ Ctrl+] - Ctrl + Ctrl+] Ctrl+{ - Ctrl + Ctrl+{ Ctrl+} - Ctrl + Ctrl+} Select Block Up @@ -9426,7 +9433,7 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+U - CTRL+U + Ctrl+U Select Block Down @@ -9438,7 +9445,7 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+Shift+Up - + Ctrl+Shift+Up Move Line Down @@ -9446,7 +9453,7 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+Shift+Down - + Ctrl+Shift+Down Copy Line Up @@ -9454,7 +9461,7 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+Alt+Up - + Ctrl+Alt+Up Copy Line Down @@ -9462,79 +9469,79 @@ Naslednji nabori znakov so verjetno ustrezni: Ctrl+Alt+Down - + Ctrl+Alt+Down Join Lines - Združi vrstice + Združi vrstice Ctrl+J - + Ctrl+J Goto Line Start - + Pojdi na začetek vrstice Goto Line End - + Pojdi na konec vrstice Goto Next Line - + Pojdi v naslednjo vrstico Goto Previous Line - + Pojdi v predhodno vrstico Goto Previous Character - + Pojdi na predhodni znak Goto Next Character - + Pojdi na naslednji znak Goto Previous Word - + Pojdi v predhodno besedo Goto Next Word - + Pojdi v naslednjo besedo Goto Line Start With Selection - + Izberi do začetka vrstice Goto Line End With Selection - + Izberi do konca vrstice Goto Next Line With Selection - + Izberi do naslednje vrstice Goto Previous Line With Selection - + Izberi do predhodne vrstice Goto Previous Character With Selection - + Izberi do predhodnega znaka Goto Next Character With Selection - + Izberi do naslednjega znaka Goto Previous Word With Selection - + Izberi do predhodne besede Goto Next Word With Selection - + Izberi do naslednje besede <line number> @@ -9649,11 +9656,11 @@ Naslednji nabori znakov so verjetno ustrezni: Diff File - + Datoteka v razliki Diff Location - + Lokacija v razliki Behavior @@ -9699,7 +9706,7 @@ Naslednji nabori znakov so verjetno ustrezni: Project from Version Control - + Projekt iz sistema za nadzor različic @@ -9744,7 +9751,7 @@ Naslednji nabori znakov so verjetno ustrezni: Copy "%1" - Kopiraj + Skopiraj »%1« Describe change %1 @@ -9771,11 +9778,11 @@ Naslednji nabori znakov so verjetno ustrezni: Executing %1 - + Izvajanje %1 Executing [%1] %2 - + Izvajanje [%1] %2 Unable to open '%1': %2 @@ -9787,11 +9794,11 @@ Naslednji nabori znakov so verjetno ustrezni: The check script '%1' timed out. - + Skriptu za preverjanje »%1« je potekel čas. The check script '%1' crashed - + Skript za preverjanje »%1« se je sesul The check script returned exit code %1. @@ -9851,15 +9858,15 @@ Vedite: to lahko odstrani krajevno datoteko. p, li { white-space: pre-wrap; } </style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; 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;Comment&gt;</span></p></body></html> - <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> + <!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;komentar&gt;</span></p></body></html> +</style></head><body style=" font-family:'DejaVu Sans'; font-size:10pt; 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;Komentar&gt;</span></p></body></html> Parts to Send to Server - Deli, ki bodo poslani na strežnik + uDeli, ki bodo poslani na strežnik @@ -9912,7 +9919,7 @@ p, li { white-space: pre-wrap; } Choose the Location - Izberite lokacijo + Izberite lokacijo @@ -9939,47 +9946,47 @@ p, li { white-space: pre-wrap; } &Class name: - Ime razreda: + Ime &razreda: &Base class: - Osnovni razred: + &Osnovni razred: &Type information: - + Podatki o &vrsti: None - Brez + Brez Inherits QWidget - + Podeduje od QWidget Based on QSharedData - + Temelji na QSharedData &Header file: - Datoteka z glavo: + Datoteka z &glavo: &Source file: - Izvorna datoteka + Datoteka z &izvorno kodo: &Generate form: - Ustvari obrazec: + &Ustvari obrazec: &Form file: - Datoteka z obrazcem: + Datoteka z &obrazcem: &Path: - &Pot: + &Pot: @@ -10010,7 +10017,7 @@ p, li { white-space: pre-wrap; } Use as default project location - + Uporabi kot privzeto lokacijo projekta @@ -10036,40 +10043,42 @@ p, li { white-space: pre-wrap; } Server prefix: - Predpona strežnika: + Predpona strežnika: <html><head/><body> <p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> <p>Note that the plugin will use this for posting as well as fetching.</p></body></html> - + <html><head/><body> +<p><a href="http://pastebin.com/">pastebin.com</a> omogoča pošiljanje na poddomene po meri (npr. creator.pastebin.com). Vnesite želeno predpono.</p> +<p>Vedite, da bo vstavek to uporabil tako za pošiljanje kot tudi za pridobivanje.</p></body></html> CVS::Internal::SettingsPage CVS - CVS + CVS Configuration - Nastavitve + Nastavitve CVS command: - + Ukaz CVS: CVS root: - + Vrhnja mapa CVS: Miscellaneous - Razno + Razno Diff options: - Možnosti diff + Prompt on submit @@ -10085,11 +10094,11 @@ p, li { white-space: pre-wrap; } Timeout: - Zakasnitev: + Razpoložljivi čas: s - s + s @@ -10124,7 +10133,7 @@ p, li { white-space: pre-wrap; } Multiple inheritance - Dedovanje od večih + Dedovanje od večih @@ -10193,7 +10202,7 @@ p, li { white-space: pre-wrap; } Repository - Skladišče + Skladišče Choose a repository of the project '%1'. @@ -10213,7 +10222,7 @@ p, li { white-space: pre-wrap; } Shared Project Repositories - + Deljena skladišča projektov Personal Repositories @@ -10280,31 +10289,31 @@ p, li { white-space: pre-wrap; } Show Side-by-Side if Possible - Prikaži ob strani, če je možno + Prikaži ob strani, če je možno Always Show Side-by-Side - Vedno prikaži ob strani + Vedno prikaži ob strani Always Start Full Help - Vedno zaženi polno pomoč + Vedno zaženi polno pomoč Show My Home Page - Prikaži mojo domačo stran + Prikaži mojo domačo stran Show a Blank Page - Prikaži prazno stran + Prikaži prazno stran Show My Tabs from Last Session - Prikaži moje zavihke iz zadnje seje + Prikaži moje zavihke iz zadnje seje Home page: - Domača stran: + Domača stran: @@ -10349,7 +10358,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan File types: - Vrste datotek: + Vrste datotek: @@ -10399,7 +10408,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Refresh interval: - interval osveževanja: + Interval osveževanja: @@ -10414,11 +10423,11 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Projects Directory - + Projektna mapa Current directory - + Trenutna mapa directoryButtonGroup @@ -10426,27 +10435,27 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Directory - Mapa + Mapa Save all files before build - Pred gradnjo shrani vse datoteke + Pred gradnjo shrani vse datoteke Always build project before running - Pred zagonom vedno zgradi projekt + Pred zagonom vedno zgradi projekt Show compiler output on building - Pri gradnji prikaži izhod prevajalnika + Pri gradnji prikaži izhod prevajalnika Clear old application output on a new run - + Ob novem zagonu počisti stari izhod programa <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="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Disable it if you experience problems with your builds. - + <i>jom</i> je nadomestek za <i>nmake</i>, ki prevajanje porazdeli med več jedri CPE-ja. Najnovejša različica je na voljo na strani <a href="ftp://ftp.qt.nokia.com/jom/">ftp.qt.nokia.com/jom</a>. Onemogočite ga, če se med gradnjami pojavljajo težave. @@ -10469,23 +10478,23 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan New Project - Nov projekt + Nov projekt Recent Sessions - + Nedavne seje Recent Projects - Nedavni projekti + Nedavni projekti Open Project... - Odpri projekt + Odpri projekt ... Create Project... - Ustvari projekt + Ustvari projekt ... @@ -10661,7 +10670,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan ... - ... + ... @@ -10680,23 +10689,23 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan The Qt Creator User Interface - + Uporabniški vmesnik Qt Creatorja Building and Running an Example - + Gradnja in zagon primera Creating a Qt C++ Application - + Izdelava programa C++ s Qt Creating a Mobile Application - + Izdelava programa za mobilno napravo Creating a Qt Quick Application - + Izdelava programa Qt Quick Choose an example... @@ -10732,34 +10741,34 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan New Project - Nov projekt + Nov projekt Cmd Shortcut key - + Cmd Alt Shortcut key - Alt + Alt Ctrl Shortcut key - Ctrl + Ctrl If you add external libraries to your project, Qt Creator will automatically offer syntax highlighting and code completion. - + Če v svoj projekt dodate zunanje knjižnice, bo Qt Creator zanje samodejno ponudil poudarjanje skladnje in dokončevanje kode. Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">dependencies</a> between projects. - Znotraj seje lahko dodate <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">odvisnosti</a> med projekti. + Znotraj seje lahko dodate <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">odvisnosti</a> med projekti. 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. - + V urejevalniku <tt>F2</tt> sledi definiciji simbola, <tt>Shift+F2</tt> preklopi med deklaracijo in definicijo, medtem ko <tt>F4</tt> preklopi med datoteko z glavo in datoteko z izvorno kodo. You can show and hide the side bar using <tt>%1+0<tt>. @@ -10807,23 +10816,23 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Explore Qt C++ Examples - + Raziščite primere C++ s Qt Examples not installed... - Primeri niso nameščeni + Primeri niso nameščeni ... Explore Qt Quick Examples - + Raziščite primere Qt Quick Open Project... - Odpri projekt + Odpri projekt ... Create Project... - Ustvari projekt + Ustvari projekt ... @@ -10842,19 +10851,19 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Add - Dodaj + Dodaj Change Qt version - + Spremeni različico Qt Remove - Odstrani + Odstrani Error - Napaka + Napaka @@ -10892,11 +10901,11 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Checkout Directory: - + Mapa za prevzem: Path: - Pot: + Pot: @@ -10911,27 +10920,27 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan <b>Forum Nokia</b><br /><font color='gray'>Mobile Application Support</font> - + <b>Forum Nokia</b><br /><font color='gray'>Programi za mobilne naprave</font> <b>Qt LGPL Support</b><br /><font color='gray'>Buy commercial Qt support</font> - + <b>Podpora za Qt</b><br /><font color='gray'>Kupite komercialno podporo za Qt</font> <b>Qt Centre</b><br /><font color='gray'>Community based Qt support</font> - + <b>Qt Centre</b><br /><font color='gray'>Podpora za Qt s strani skupnosti</font> <b>Qt Home</b><br /><font color='gray'>Qt by Nokia on the web</font> - + <b>Dom Qt</b><br /><font color='gray'>Spletna stran za Qt</font> <b>Qt Git Hosting</b><br /><font color='gray'>Participate in Qt development</font> - + <b>Izvorna koda Qt</b><br /><font color='gray'>Sodelujte pri razvoju Qt</font> <b>Qt Apps</b><br /><font color='gray'>Find free Qt-based apps</font> - + <b>Programi Qt</b><br /><font color='gray'>Najdite programe narejene s Qt</font> http://labs.trolltech.com/blogs/feed @@ -10939,11 +10948,11 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Qt Support Sites - + Strani s podporo za Qt Qt Links - + Povezave za Qt @@ -10962,7 +10971,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Help us make Qt Creator even better - Pomagajte nam še izboljšati Qt Creatorja + Pomagajte nam izboljšati Qt Creatorja Feedback @@ -11020,7 +11029,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Cannot start the terminal emulator '%1'. - Ni moč zagnati emulatorja konzole »%1«. + Ni moč zagnati posnemovalnika terminala »%1«. Cannot create socket '%1': %2 @@ -11043,7 +11052,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Utils::DetailsButton Details - Podrobnosti + Podrobnosti @@ -11088,11 +11097,11 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Choose Directory - + Izberite mapo Choose File - Izberite datoteko + Izberite datoteko The path must not be empty. @@ -11127,7 +11136,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Delete Line - Izbriši vrstico + Izbriši vrstico Clear @@ -11142,7 +11151,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Utils::ProjectNameValidatingLineEdit Invalid character '.'. - Neveljaven znak + Neveljaven znak ».«. @@ -11153,11 +11162,11 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan The unsaved file <i>%1</i> has been changed outside Qt Creator. Do you want to reload it and discard your changes? - Neshranjena datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova in zavreči vse svoje spremembe? + Neshranjena datoteka <i>%1</i> je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova in zavreči vse svoje spremembe? The file <i>%1</i> has changed outside Qt Creator. Do you want to reload it? - Datoteka %1 je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova? + Datoteka <i>%1</i> je bila spremenjena izven Qt Creatorja. Ali jo želite naložiti znova? @@ -11168,7 +11177,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Select Working Directory - + Izberite delovno mapo Reset to default @@ -11219,27 +11228,27 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan .files Editor - + Urejevalniku datotek *.files QMLJS Editor - + Urejevalniku QMLJS .qmlproject Editor - + Urejevalniku datotek *.qmlproject Qt Designer - Qt Designer + Qt Designerju Qt Linguist - Qt Linguist + Qt Linguistu Resource Editor - Urejevalnik virov + Urejevalnik virov @@ -11257,11 +11266,11 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan CodePaster::CodePasterProtocol No Server defined in the CodePaster preferences. - V nastavitvah za CodePaster ni določenega nobenega strežnika. + V nastavitvah za CodePaster ni določenega nobenega strežnika. No Server defined in the CodePaster options. - V možnostih za CodePaster ni določenega nobenega strežnika. + V možnostih za CodePaster ni določenega nobenega strežnika. No such paste @@ -11313,7 +11322,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Choose Location for New License Template File - + Izberite lokacijo za novo datoteko s predlogo licence Template write error @@ -11328,7 +11337,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan CppTools::Internal::CppFindReferences Searching - Iskanje + Iskanje @@ -11353,7 +11362,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan CVS::Internal::CheckoutWizardPage Location - Lokacija + Lokacija Specify repository and path. @@ -11646,11 +11655,11 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan No memory viewer available - + Na razpolago ni nobenega pregledovalnika pomnilnika The memory contents cannot be shown as no viewer plugin for binary data has been loaded. - + Vsebine pomnilnika ni moč prikazati, saj ni bil naložen noben vstavek za dvojiške podatke. @@ -11705,27 +11714,27 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Abort Debugging - + Prekliči razhroščevanje Aborts debugging and resets the debugger to the initial state. - + Prekliče razhroščevanje in ponastavi razhroščevalnik na začetno stanje. Immediately Return From Inner Function - + Takoj se vrni iz notranje funkcije Snapshot - posnetek + Posnetek Stopped - Ustavljeno + Ustavljeno Exited - Končano. + Končano Changing breakpoint state requires either a fully running or fully stopped application. @@ -11809,19 +11818,20 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Application process could not be stopped: %1 - + Procesa programa ni bilo moč ustaviti: +%1 Application started - + Program se je zagnal Application running - + Program teče Attached to stopped application - + Priklopljen na ustavljen program Connecting to remote server failed: @@ -11834,20 +11844,21 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Debugger::Internal::TrkGdbAdapter Port specification missing. - + Manjka določitev vrat. Unable to acquire a device on '%1'. It appears to be in use. - + Ni moč pridobiti naprave na »%1« Kot kaže je v uporabi. Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. - + Proces se je zagnal, PID: 0x%1, ID niti: 0x%2, odsek s kodo: 0x%3, odsek s podatki: 0x%4 Connecting to TRK server adapter failed: - + Povezovanje z strežnikom TRK ni uspelo: + @@ -11866,23 +11877,23 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Invalid nested-name - + Neveljavno vgnezdeno ime Invalid template args - + Neveljavni argumenti predloge Invalid template-param - + Neveljaven parameter predloge Invalid qualifiers: unexpected 'volatile' - + Neveljaven kvalifikator: nepričakovan »volatile« Invalid qualifiers: 'const' appears twice - + Neveljaven kvalifikator: »const« se pojavi dvakrat Invalid non-negative number @@ -11890,7 +11901,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Invalid template-arg - + Neveljaven argument predloge Invalid expression @@ -11898,11 +11909,11 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Invalid primary expression - + Neveljaven primarni izraz Invalid expr-primary - + Neveljaven primarni izraz Invalid type @@ -11910,63 +11921,63 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Invalid built-in type - + Neveljavna vgrajena vrsta Invalid builtin-type - + Neveljavna vgrajena vrsta Invalid function type - + Neveljavna vrsta funkcije Invalid unqualified-name - + Neveljavno nekvalificirano ime Invalid operator-name '%s' - + Neveljavno ime operatorja »%s« Invalid array-type - + Neveljavna vrsta polja Invalid pointer-to-member-type - + Neveljavna vrsta kazalca na člana Invalid substitution - + Neveljavna zamenjava Invalid substitution: element %1 was requested, but there are only %2 - + Neveljavna zamenjava: zahtevan je bil element %1, obstajajo pa samo %2 Invalid substitution: There are no elements - + Neveljavna zamenjava: ne obstaja noben element Invalid special-name - + Neveljavno posebno ime Invalid local-name - + Neveljavno krajevno ime Invalid discriminator - + Neveljaven razločevalnik Invalid ctor-dtor-name - + Neveljavno ime konstruktorja/destruktorja Invalid call-offset - + Neveljaven odmik klica Invalid v-offset @@ -11992,7 +12003,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Git::Internal::CloneWizard Clones a Git repository and tries to load the contained project. - + Sklonira skladišče Git in poskusi naložiti vsebovani projekt. Git Repository Clone @@ -12003,11 +12014,11 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Git::CloneWizardPage Location - Lokacija + Lokacija Specify repository URL, checkout directory and path. - + Določite URL skladišča, mapo za prevzem in pot. Clone URL: @@ -12033,7 +12044,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Gitorious::Internal::GitoriousCloneWizard Clones a Gitorious repository and tries to load the contained project. - + Sklonira skladišče z Gitoriousa in poskusi naložiti vsebovani projekt. Gitorious Repository Clone @@ -12044,7 +12055,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Gitorious::Internal::GitoriousHostWizardPage Host - Gostitelj + Gostitelj Select a host. @@ -12055,7 +12066,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Gitorious::Internal::GitoriousProjectWizardPage Project - Projekt + Projekt Choose a project from '%1' @@ -12066,7 +12077,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Help::Internal::GeneralSettingsPage General Settings - Splošne nastavitve + Splošne nastavitve Open Image @@ -12108,7 +12119,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Select Directory - + Izberite mapo %1 filter update: 0 files @@ -12184,7 +12195,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Options - Možnosti + Možnosti <type here> @@ -12202,7 +12213,7 @@ Za uporabo v polje Lokatorja vtipkajte to bližnjico in presledek ter nato iskan Locator::Internal::SettingsPage %1 (prefix: %2) - Predpona: + %1 (predpona: %2) @@ -12298,47 +12309,47 @@ Razlog: %2 ToolChain GCC - + GNU Compiler Collection (GCC) Intel C++ Compiler (Linux) - + Intel C++ Compiler (Linux) Microsoft Visual C++ - + Microsoft Visual C++ Windows CE - + Windows CE WINSCW - + WINSCW GCCE - + GCCE GCCE/GnuPoc - + GCCE/GnuPoc RVCT (ARMV6)/GnuPoc - + RVCT (ARMV6)/GnuPoc RVCT (ARMV5) - + RVCT (ARMV5) RVCT (ARMV6) - + RVCT (ARMV6) GCC for Maemo - + GCC za Maemo Other @@ -12381,11 +12392,11 @@ Razlog: %2 Identifier cannot start with numeric literal - + Identifikator se ne more začeti s številskim literalom Unterminated regular expression literal - + Nedokončan literal regularnega izraza Invalid regular expression flag '%0' @@ -12423,11 +12434,11 @@ Razlog: %2 Qt4ProjectManager::Internal::CustomWidgetWizard Qt Custom Designer Widget - + Gradnik za Qt Designer po meri Creates a Qt Custom Designer Widget or a Custom Widget Collection. - + Ustvari gradnik za Qt Designer po meri ali pa zbirko gradnikov po meri @@ -12438,11 +12449,11 @@ Razlog: %2 Custom Widgets - Gradniki po meri + Gradniki po meri Plugin Details - + Podrobnosti vstavka @@ -12525,11 +12536,11 @@ Razmeščanje programa na »%2« ... Unable to remove existing file '%1': %2 - + Obstoječe datoteke »%1« ni moč odstraniti.: %2 Unable to rename file '%1' to '%2': %3 - + Datoteke »%1« ni moč preimenovati v »%2«: %3 Deploying @@ -12537,28 +12548,29 @@ Razmeščanje programa na »%2« ... There is no device plugged in. - + Priključene ni nobene naprave. Renaming new package '%1' to '%2' - + Preimenovanje novega paketa »%1« v »%2« Removing old package '%1' - + Odstranjevanje starega paketa »%1« Package file not found - + Datoteka paketa ni bila najdena Failed to find package '%1': %2 - + Ni bilo moč najti paketa »%1«: %2 Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running. - + S telefonom na vratih »%1« se ni bilo moč povezati: %2 +Preverite, ali je telefon priključen in ali App TRK teče. Could not create file %1 on device: %2 @@ -12578,23 +12590,23 @@ Check if the phone is connected and App TRK is running. Copying installation file... - + Kopiranje namestitvene datoteke ... Waiting for App TRK - + Čakanje na App TRK Please start App TRK on %1. - + Zaženite App TRK na %1. Canceled. - Preklicano. + Preklicano. The device '%1' has been disconnected - + Naprava »%1« je bila izključena Installing application... @@ -12651,15 +12663,15 @@ Check if the phone is connected and App TRK is running. Arguments: - Argumenti: + Argumenti: Installation file: - + Namestitvena datoteka: Device on serial port: - Naprava na zaporednih vratih: + Naprava na zaporednih vratih: Queries the device for information @@ -12682,7 +12694,7 @@ Check if the phone is connected and App TRK is running. EPOC: - + EPOC: Tools: @@ -12823,11 +12835,11 @@ Check if the phone is connected and App TRK is running. Subversion::Internal::CheckoutWizard Checks out a Subversion repository and tries to load the contained project. - + Prevzame skladišče Subversion in poskusi naložiti vsebovani projekt. Subversion Checkout - + Prevzem iz Subversion @@ -12838,7 +12850,7 @@ Check if the phone is connected and App TRK is running. Specify repository URL, checkout directory and path. - + Določite URL skladišča, mapo za prevzem in pot. Repository: @@ -12897,7 +12909,7 @@ Check if the phone is connected and App TRK is running. VCSBase::ProcessCheckoutJob Unable to start %1: %2 - Ni moč zagnati »%1« + Ni moč zagnati »%1«: %2 The process terminated with exit code %1. @@ -12920,11 +12932,11 @@ Check if the phone is connected and App TRK is running. VCSBase::Internal::CheckoutProgressWizardPage Checkout - Prevzem + Prevzem Checkout started... - + Prevzemanje se je pričelo ... Failed. @@ -12939,7 +12951,7 @@ Check if the phone is connected and App TRK is running. VCSBase::VCSBaseOutputWindow Open "%1" - Odpri + Odpri »%1« Clear @@ -12954,7 +12966,7 @@ Check if the phone is connected and App TRK is running. Welcome::Internal::CommunityWelcomePage News && Support - + Novice in podpora @@ -12996,11 +13008,11 @@ Check if the phone is connected and App TRK is running. Waiting for App TRK - + Čakanje na App TRK Waiting for App TRK to start on %1... - + Čakanje na zagon App TRK na %1 ... Waiting for Bluetooth Connection @@ -13035,96 +13047,96 @@ Check if the phone is connected and App TRK is running. CMakeProjectManager::Internal::CMakeRunConfiguration Clean Environment - Čisto okolje + Čisto okolje System Environment - Sistemsko okolje + Sistemsko okolje Build Environment - Okolje za gradnjo + Okolje za gradnjo (disabled) - Onemogočeno + (onemogočeno) Debugger::Internal::SourceFilesModel Internal name - Notranje ime + Notranje ime Full name - Polno ime + Polno ime CommandMappings Command Mappings - + Preslikava ukazov Command - Ukaz + Ukaz Label - Oznaka + Oznaka Target - Cilj + Cilj Defaults - Privzetosti + Privzeto Import... - Uvozi ... + Uvozi ... Export... - Izvozi + Izvozi ... Target Identifier - + Identifikator cilja Target: - Cilj: + Cilj: Reset - Ponastavi + Ponastavi CodePaster::FileShareProtocolSettingsWidget Form - Obrazec + Obrazec &Path: - &Pot: + &Pot: &Display: - Prikaz + P&rikaz: entries - Vnosi: + vnosov The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. - + Protokol za prilepljanje, ki temelji na Fileshare, omogoča souporabo delčkov kode z uporabo preprostih datotek na deljenem omrežnem pogonu. Datoteke niso nikoli izbrisane. @@ -13374,11 +13386,11 @@ You can choose between stashing the changes or discarding them. ProjectExplorer::Internal::AddTargetDialog Add target - + Dodaj cilj Target: - Cilj: + Cilj: @@ -13399,23 +13411,23 @@ You can choose between stashing the changes or discarding them. BehaviorDialog Dialog - Pogovorno okno + Pogovorno okno Type: - Vrsta: + Vrsta: Id: - ID + ID: Property Name: - Ime lastnosti + Ime lastnosti: Animation - Animacija + Animacija SpringFollow @@ -13423,15 +13435,15 @@ You can choose between stashing the changes or discarding them. Settings - Nastavitve + Nastavitve Duration: - Trajanje: + Trajanje: Curve: - Krivulja + Krivulja: easeNone @@ -13439,15 +13451,15 @@ You can choose between stashing the changes or discarding them. Source: - Vir: + Vir: Velocity: - Hitrost: + Hitrost: Spring: - + Vzmet: Damping: @@ -13458,642 +13470,642 @@ You can choose between stashing the changes or discarding them. ContextPaneTextWidget Text - Besedilo + Besedilo Style - Slog + Slog Normal - Običajno + Običajno Outline - Obris + Obris Raised - + Dvignjeno Sunken - + Vgreznjeno ... - ... + ... GradientDialog Edit Gradient - Uredi preliv + Urejanje preliva GradientEditor Form - Obrazec + Obrazec Gradient Editor - Urejevalnik preliva + Urejevalnik preliva This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. - To območje prikazuje ogled urejevanega preliva. Omogoča vam tudi urejanje parametrov, ki so specifični za vrsto preliva, na primer začetna in končna točka, polmer in podobno. Za to uporabite vlečenje in spuščanje. + To območje prikazuje ogled urejevanega preliva. Omogoča vam tudi urejanje parametrov, ki so specifični za vrsto preliva, na primer začetna in končna točka, polmer in podobno. Za to uporabite vlečenje in spuščanje. 1 - 1 + 1 2 - 2 + 2 3 - 3 + 3 4 - 4 + 4 5 - 5 + 5 Gradient Stops Editor - Urejevalnik postankov preliva + Urejevalnik postankov preliva This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. - To območje vam omogoča urejanje postankov preliva. Da podvojite obstoječo ročko postanka dvokliknite nanjo. Za ustvaritev novega postanka dvokliknite izven obstoječih ročic postankov. Da spremenite položaj postanka povlecite in spustite njegovo ročko. Če kliknete z desnim gumbom miške, se bo pojavil priročni meni z dodatnimi dejanji. + To območje vam omogoča urejanje postankov preliva. Da podvojite obstoječo ročko postanka dvokliknite nanjo. Za ustvaritev novega postanka dvokliknite izven obstoječih ročic postankov. Da spremenite položaj postanka povlecite in spustite njegovo ročko. Če kliknete z desnim gumbom miške, se bo pojavil priročni meni z dodatnimi dejanji. Zoom - Povečava + Povečava Reset Zoom - Ponastavi povečavo + Ponastavi povečavo Position - Položaj + Položaj Hue - Odtenek + Odtenek H - H + O Saturation - Zasičenost + Zasičenost S - J + Z Sat - sob + Zas. Value - Vrednost + Vrednost V - V + V Val - Vre. + Vre. Alpha - Alfa + Alfa A - A4 + A Type - Vrsta + Vrsta Spread - Razširitev + Razširitev Color - Barva + Barva Current stop's color - Barva trenutnega postanka + Barva trenutnega postanka Show HSV specification - Prikaži specifikacijo HSV + Prikaži specifikacijo HSV HSV - HSV + HSV Show RGB specification - Prikaži specifikacijo RGB + Prikaži specifikacijo RGB RGB - RGB + RGB Current stop's position - Položaj trenutnega postanka + Položaj trenutnega postanka % - + % Zoom In - Približaj + Približaj Zoom Out - Oddalji + Oddalji Toggle details extension - Preklopi prikaz podrobnosti + Preklopi prikaz podrobnosti > - > + > Linear Type - Linearna vrsta + Linearna vrsta ... - ... + ... Radial Type - Radialna vrsta + Radialna vrsta Conical Type - Stožčasta vrsta + Stožčasta vrsta Pad Spread - Razširitev z zapolnitvijo + Razširitev z zapolnitvijo Repeat Spread - Razširitev s ponovitvijo + Razširitev s ponovitvijo Reflect Spread - Razširitev z odbojem + Razširitev z odbojem Start X - Začetni X + Začetni X Start Y - Začetni Y + Začetni Y Final X - Končni X + Končni X Final Y - Končni Y + Končni Y Central X - Središčni X + Središčni X Central Y - Središčni Y + Središčni Y Focal X - Žariščni X + Žariščni X Focal Y - Žariščni Y + Žariščni Y Radius - Polmer + Polmer Angle - Kot + Kot Linear - Linearno + Linearen Radial - Radialen + Radialen Conical - Stožčast + Stožčast Pad - Zapolni + Zapolni Repeat - Ponovi + Ponovi Reflect - Odbij + Odbij QtGradientDialog Edit Gradient - Uredi preliv + Urejanje preliva QtGradientEditor Form - Obrazec + Obrazec Gradient Editor - Urejevalnik preliva + Urejevalnik preliva This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. - To območje prikazuje ogled urejevanega preliva. Omogoča vam tudi urejanje parametrov, ki so specifični za vrsto preliva, na primer začetna in končna točka, polmer in podobno. Za to uporabite vlečenje in spuščanje. + To območje prikazuje ogled urejevanega preliva. Omogoča vam tudi urejanje parametrov, ki so specifični za vrsto preliva, na primer začetna in končna točka, polmer in podobno. Za to uporabite vlečenje in spuščanje. 1 - 1 + 1 2 - 2 + 2 3 - 3 + 3 4 - 4 + 4 5 - 5 + 5 Gradient Stops Editor - Urejevalnik postankov preliva + Urejevalnik postankov preliva This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. - To območje vam omogoča urejanje postankov preliva. Da podvojite obstoječo ročko postanka dvokliknite nanjo. Za ustvaritev novega postanka dvokliknite izven obstoječih ročic postankov. Da spremenite položaj postanka povlecite in spustite njegovo ročko. Če kliknete z desnim gumbom miške, se bo pojavil priročni meni z dodatnimi dejanji. + To območje vam omogoča urejanje postankov preliva. Da podvojite obstoječo ročko postanka dvokliknite nanjo. Za ustvaritev novega postanka dvokliknite izven obstoječih ročic postankov. Da spremenite položaj postanka povlecite in spustite njegovo ročko. Če kliknete z desnim gumbom miške, se bo pojavil priročni meni z dodatnimi dejanji. Zoom - Povečava + Povečava Reset Zoom - Ponastavi povečavo + Ponastavi povečavo Position - Položaj + Položaj Hue - Odtenek + Odtenek H - H + O Saturation - Zasičenost + Zasičenost S - J + Z Sat - sob + Zas. Value - Vrednost + Vrednost V - V + V Val - Vre. + Vre. Alpha - Alfa + Alfa A - A4 + A Type - Vrsta + Vrsta Spread - Razširitev + Razširitev Color - Barva + Barva Current stop's color - Barva trenutnega postanka + Barva trenutnega postanka Show HSV specification - Prikaži specifikacijo HSV + Prikaži specifikacijo HSV HSV - HSV + HSV Show RGB specification - Prikaži specifikacijo RGB + Prikaži specifikacijo RGB RGB - RGB + RGB Current stop's position - Položaj trenutnega postanka + Položaj trenutnega postanka % - + % Zoom In - Približaj + Približaj Zoom Out - Oddalji + Oddalji Toggle details extension - Preklopi prikaz podrobnosti + Preklopi prikaz podrobnosti > - > + > Linear Type - Linearna vrsta + Linearna vrsta ... - ... + ... Radial Type - Radialna vrsta + Radialna vrsta Conical Type - Stožčasta vrsta + Stožčasta vrsta Pad Spread - Razširitev z zapolnitvijo + Razširitev z zapolnitvijo Repeat Spread - Razširitev s ponovitvijo + Razširitev s ponovitvijo Reflect Spread - Razširitev z odbojem + Razširitev z odbojem Start X - Začetni X + Začetni X Start Y - Začetni Y + Začetni Y Final X - Končni X + Končni X Final Y - Končni Y + Končni Y Central X - Središčni X + Središčni X Central Y - Središčni Y + Središčni Y Focal X - Žariščni X + Žariščni X Focal Y - Žariščni Y + Žariščni Y Radius - Polmer + Polmer Angle - Kot + Kot Linear - Linearno + Linearen Radial - Radialen + Radialen Conical - Stožčast + Stožčast Pad - Zapolni + Zapolni Repeat - Ponovi + Ponovi Reflect - Odbij + Odbij QtGradientView Gradient View - Prikaz preliva + Prikaz preliva New... - Novo ... + Novo ... Edit... - Uredi ... + Urejanje ... Rename - Preimenuj + Preimenuj Remove - Odstrani + Odstrani Grad - Grad + Preliv Remove Gradient - Odstrani preliv + Odstrani preliv Are you sure you want to remove the selected gradient? - Ali res želite odstraniti izbrani preliv? + Ali res želite odstraniti izbrani preliv? QtGradientViewDialog Select Gradient - Izberite preliv + Izberite preliv QmlDesigner::Internal::SettingsPage Form - Obrazec + Obrazec Snapping - Pripenjanje + Pripenjanje Item spacing - + Razmik Snap margin - + Odmik za pripenjanje Qt Quick Designer - + Qt Quick Designer StartExternalQmlDialog Start Simultaneous QML and C++ Debugging - + Začni istočasno razhroščevanje C++ in QML Debugging address: - + Naslov za razhroščevanje: Debugging port: - + Vrata za razhroščevanje: 127.0.0.1 - 127.0.0.1 + 127.0.0.1 Project: - Projekt: + Projekt: <No project> - + <brez projekta> Viewer path: - + Pot do pregledovalnika: Viewer arguments: - + Argumenti pregledovalnika: To switch languages while debugging, go to Debug->Language menu. - + Za preklop jezika med razhroščevanje pojdite v meni Razhroščevanje → Jezik. MaemoConfigTestDialog Device Configuration Test - + Preizkus nastavitev naprave @@ -14104,23 +14116,23 @@ You can choose between stashing the changes or discarding them. Skip packaging step - + Preskoči korak ustvarjanja paketa Version number: - Številka različice: + Številka različice: Major: - Velika + Velika: Minor: - Mala + Mala: Patch: - Popravek 1 + Popravek: Files to deploy: @@ -14128,106 +14140,106 @@ You can choose between stashing the changes or discarding them. Add File to Package - + Dodaj datoteko v paket Remove File from Package - + Odstrani datoteko iz paketa MaemoSettingsWidget Maemo Device Configurations - + Nastavitve naprave Maemo Configuration: - Nastavitve + Nastavitve: Name - Ime + Ime Device type: - Vrsta naprave: + Vrsta naprave: Remote device - Oddaljena naprava + Oddaljena naprava Maemo emulator - + Posnemovalnik Maemo Authentication type: - + Vrsta overjanja: Password - Geslo + Geslo Key - Ključ + Ključ Host name: - Ime gostitelja: + Ime gostitelja: IP or host name of the device - + IP ali ime gostitelja naprave Ports: - + Vrata: SSH: - ssh + SSH: Gdb server: - + Strežnik GDB: Connection timeout: - + Razpoložljivi čas za povezavo: s - s + s Username: - Uporabniško ime: + Uporabniško ime: Password: - Geslo: + Geslo: Private key file: - Datoteka z zasebnim ključem: + Datoteka z zasebnim ključem: Add - Dodaj + Dodaj Remove - Odstrani + Odstrani Test - Preizkus + Preizkus Generate SSH Key ... - + Ustvari ključ SSH ... Deploy Public Key ... @@ -14238,238 +14250,238 @@ You can choose between stashing the changes or discarding them. MaemoSshConfigDialog SSH Key Configuration - + Nastavitev ključa SSH Options - Možnosti + Možnosti Key size: - &Velikost ključa: + Velikost ključa: Key algorithm: - + Algoritem za ključ: RSA - RSA + RSA DSA - DSA + DSA Key - Ključ + Ključ Generate SSH Key - + Ustvari ključ SSH Save Public Key... - + Shrani javni ključ ... Save Private Key... - + Shrani zasebni ključ ... Close - Zapri + Zapri Qt4ProjectManager::Internal::S60CreatePackageStepWidget Form - Obrazec + Obrazec Self-signed certificate - Samo-podpisano potrdilo + Samo-podpisano potrdilo Custom certificate: - Potrdilo po meri: + Potrdilo po meri: Choose certificate file (.cer) - Izberite datoteko s potrdilom (*.cer) + Izberite datoteko s potrdilom (*.cer) Key file: - Datoteka s ključem: + Datoteka s ključem: Qt4ProjectManager::Internal::TargetSetupPage Setup targets for your project - + Nastavite cilje za svoj projekt Qt Creator can set up the following targets: - + Qt Creator lahko nastavi naslednje cilje: Qt Version - Različica Qt: + Različica Qt Status - Stanje + Stanje Build Directory - &Mapa za gradnjo: + Mapa za gradnjo Import Existing Shadow Build... - + Uvozi obstoječo gradnjo ... Import Is this an import of an existing build or a new one? - Uvozi + Uvozi New Is this an import of an existing build or a new one? - Novo + Nova Qt Creator can set up the following targets for project <b>%1</b>: %1: Project name - + Qt Creator lahko nastavi naslednje cilje za projekt <b>%1</b>: Choose a directory to scan for additional shadow builds - + Izberite mapo, v kateri se bo preveril obstoj dodatne gradnje No builds found - + Najdene ni bilo nobene gradnje No builds for project file "%1" were found in the folder "%2". %1: pro-file, %2: directory that was checked. - + V mapi »%2« ni bilo najdene nobene gradnje za projektno datoteko »%1«. <b>Error:</b> Severity is Task::Error - Napaka + <b>Napaka:</b> <b>Warning:</b> Severity is Task::Warning - Opozorilo + <b>Opozorilo:</b> Qt4ProjectManager::Internal::TestWizardPage WizardPage - StranČarovnika + StranČarovnika Specify basic information about the test class for which you want to generate skeleton source code file. - + Podajte osnovne podatke o razredu, za katerega želite ustvariti datoteko z ogrodjem izvorne kode. Class name: - Ime razreda: + Ime razreda: Type: - Vrsta: + Vrsta: Test - Preizkus + Preizkus Benchmark - + Meritev hitrosti File: - &Datoteka + Datoteka: Generate initialization and cleanup code - + Ustvari kodo za inicalizacijo in čiščenje Test slot: - + Preizkusno mesto: Requires QApplication - + Potrebuje QApplication Use a test data set - + Uporabi nabor podatkov za preizkus Test Class Information - + Podatki o razredu za preizkus VCSBase::CleanDialog Clean Repository - + Počisti skladišče The directory %1 could not be deleted. - + Mape %1 ni bilo moč izbrisati. The file %1 could not be deleted. - + Datoteke %1 ni bilo moč izbrisati. There were errors when cleaning the repository %1: - + Med čiščenjem skladišča %1 je prišlo do napak: Delete... - &Zbriši + Izbriši ... Name - Ime + Ime Repository: %1 - Skladišče: + Skladišče: %1 %1 bytes, last modified %2 - + %1 B, nazadnje spremenjena %2 Delete - Zbriši + Zbriši Do you want to delete %n files? - - - - - + + Ali želite izbrisati %n datoteko? + Ali želite izbrisati %n datoteki? + Ali želite izbrisati %n datoteke? + Ali želite izbrisati %n datotek? Cleaning %1 - + Čiščenje %1 @@ -14480,7 +14492,7 @@ You can choose between stashing the changes or discarding them. characters - znak + znaku 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. @@ -14498,7 +14510,7 @@ ime <e-pošta> drugo_ime <druga_e-pošta> User/alias configuration file: - + Nastavitvena datoteka z uporabniki/aliasi: A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. @@ -15362,7 +15374,7 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 %1 does not appear to be a paster file. - + Kot kaže %1 ni datoteka za prilepljanje. Error in %1 at %2: %3 @@ -15717,7 +15729,7 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 String literal %1 - + Literal niza %1 Cowardly refusing to evaluate expression '%1' with potential side effects @@ -15873,28 +15885,28 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 GenericProjectManager::Internal::GenericMakeStep Make - Znamka + Make GenericProjectManager::Internal::Manager Failed opening project '%1': Project already open - Odpiranje projekta »%1« ni uspelo: projekt je že odprt + Odpiranje projekta »%1« ni uspelo: projekt je že odprt Git::Internal::RemoteBranchModel (no branch) - + (brez vej) Git::Internal::GitCommand Error: Git timed out after %1s. - + Napaka: po %1 s je Gitu potekel čas. @@ -15969,26 +15981,26 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Mercurial::Internal::CloneWizard Clones a Mercurial repository and tries to load the contained project. - + Sklonira skladišče Mercurial in poskusi naložiti vsebovani projekt. Mercurial Clone - + Klon skladišča Mercurial Mercurial::Internal::CloneWizardPage Location - Lokacija + Lokacija Specify repository URL, checkout directory and path. - + Določite URL skladišča, mapo za prevzem in pot. Clone URL: - URL za kloniranje: + URL za kloniranje: @@ -16006,7 +16018,7 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Cannot parse output: %1 - + Ni moč razčleniti izhoda: %1 Hg Annotate %1 @@ -16030,14 +16042,14 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Working... - delam + Delam ... Mercurial::Internal::MercurialControl Mercurial - + Mercurial @@ -16052,12 +16064,12 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Executing: %1 %2 - %1 Izvajanje: %2 %3 + Izvajanje: %1 %2 Unable to start mercurial process '%1': %2 - + Procesa mercurial »%1« ni moč zagnati: %2 Timed out after %1s waiting for mercurial process to finish. @@ -16068,7 +16080,7 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Mercurial::Internal::MercurialPlugin Mercurial - + Mercurial Annotate Current File @@ -16116,71 +16128,71 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Add - Dodaj + Dodaj Add "%1" - Dodaj + Dodaj »%1« Delete... - &Zbriši + Zbriši ... Delete "%1"... - &Zbriši + Zbriši »%1« ... Revert Current File... - + Povrni trenutno datoteko ... Revert "%1"... - Povrni + Povrni »%1« ... Diff - Diff + Razlika Log - Dnevnik + Dnevnik Revert... - Povrni ... + Povrni ... Status - Stanje + Stanje Pull... - Potegni + Potegni ... Push... - Potisni + Potisni ... Update... - Posodobi + Posodobi ... Import... - Uvozi ... + Uvozi ... Incoming... - Prihajajoč + Prihajajoče ... Outgoing... - Odhajajoč + Odhajajoče ... Commit... - Uveljavi + Alt+H,Alt+C @@ -16188,7 +16200,7 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Create Repository... - + Ustvari skladišče ... Pull Source @@ -16200,7 +16212,7 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Update - Posodobi + Posodobi Incoming Source @@ -16208,7 +16220,7 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Commit - Uveljavi + Diff Selected Files @@ -16216,11 +16228,11 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 &Undo - &Razveljavi + &Razveljavi &Redo - &Uveljavi + &Uveljavi There are no changes to commit. @@ -16252,37 +16264,37 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Message check failed. Do you want to proceed? - + Sporočila ni bilo moč preveriti. Ali želite nadaljevati? Mercurial::Internal::OptionsPageWidget Mercurial Command - + Ukaz Mercurial Perforce::Internal::PerforceChecker No executable specified - Določen ni noben program. + Določen ni noben program. "%1" timed out after %2ms. - + Čas za »%1« je potekel po %2 ms. Unable to launch "%1": %2 - Ni moč zagnati %1. + Ni moč zagnati »%1«: %2 "%1" crashed. - sesutje + »%1« se je sesul. "%1" terminated with exit code %2: %3 - + »%1« je končal z izhodno kodo %2: %3 The client does not seem to contain any mapped files. @@ -16296,7 +16308,7 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 The repository "%1" does not exist. - + Skladišče »%1« ne obstaja. @@ -16515,7 +16527,7 @@ Desetiška predznačena vrednost (najprej veliki konec): %4 Open Terminal here... - Tu odpri terminal ... + Tu odpri konzolo ... Launching a file browser failed @@ -17364,7 +17376,7 @@ ID-ji se morajo začeti z malo črko. <%n items> - + <%n postavka> <%n postavki> <%n postavke> @@ -17460,7 +17472,7 @@ ID-ji se morajo začeti z malo črko. Cannot find project run configuration, debugging canceled. - + Ni moč najti nastavitev za zagon projekta, razhroščevanje preklicano. [Inspector] set to connect to debug server %1:%2 @@ -17527,16 +17539,17 @@ ID-ji se morajo začeti z malo črko. No run configurations were found for the project '%1'. - + Za projekt »%1« niso bile najdene nobene nastavitve za zagon. No valid run configuration was found for the project %1. Only locally runnable configurations are supported. Please check your project settings. - + Za projekt »%1« niso bile najdene nobene veljavne nastavitve za zagon. Podprte so le nastavitve za krajevni zagon. +Preverite nastavitve projekta. A valid run control was not registered in Qt Creator for this project run configuration. - + Za zagonske nastavitve tega projekta v Qt Creatorju ni bil registriran veljaven nadzor zagona. Debugging failed: could not start C++ debugger. @@ -18001,14 +18014,14 @@ Ali ste zagnali Qemu? Qt4ProjectManager::Internal::MaemoRunConfiguration New Maemo Run Configuration - + Nove nastavitve za zagon za Maemo Qt4ProjectManager::Internal::MaemoRunConfigurationWidget Run configuration name: - + Ime nastavitev za zagon: <a href="%1">Manage device configurations</a> @@ -18035,11 +18048,11 @@ Ali ste zagnali Qemu? Qt4ProjectManager::Internal::AbstractMaemoRunControl No device configuration set for run configuration. - + V nastavitvah za zagon ni bilo nastavljenih nobenih nastavitev naprave. Cleaning up remote leftovers first ... - + Čiščenje oddaljenih ostankov ... Initial cleanup canceled by user. @@ -18098,7 +18111,7 @@ Ali ste zagnali Qemu? Qt4ProjectManager::Internal::MaemoRunConfigurationFactory New Maemo Run Configuration - + Nove nastavitve za zagon za Maemo @@ -18120,7 +18133,7 @@ Ali ste zagnali Qemu? New Device Configuration %1 Standard Configuration name with number - + Nove nastavitve naprave %1 Choose Public Key File @@ -18465,23 +18478,23 @@ V naprej izbere Qt za simulator in razpoložljive ciljne mobilne naprave.VCSBase::VCSBasePlugin Version Control - Nadzor različic + Nadzor različic The file '%1' could not be deleted. - + Datoteke »%1« ni bilo moč izbrisati. Choose Repository Directory - + Izberite mapo skladišča The directory '%1' is already managed by a version control system (%2). Would you like to specify another directory? - + Mapo »%1« že upravlja sistem za nadzor različic (%2). Ali želite določiti drugo mapo? Repository already under version control - + Skladišče že nadzaroveno glede različic Repository created @@ -18489,7 +18502,7 @@ V naprej izbere Qt za simulator in razpoložljive ciljne mobilne naprave. A version control repository has been created in %1. - + V %1 je bilo ustvarjeno skladišče z nadzorom različic. Repository creation failed @@ -18497,7 +18510,7 @@ V naprej izbere Qt za simulator in razpoložljive ciljne mobilne naprave. A version control repository could not be created in %1. - + V %1 ni bilo moč ustvariti skladišča z nadzorom različic. @@ -18525,7 +18538,7 @@ V naprej izbere Qt za simulator in razpoložljive ciljne mobilne naprave. App TRK: v%1.%2 TRK protocol: v%3.%4 - + App TRK: %1.%2 protokol TRK: %3.%4 %1, %2%3%4, %5 @@ -18658,19 +18671,19 @@ V naprej izbere Qt za simulator in razpoložljive ciljne mobilne naprave. Generic Qt Creator Project file - + Datoteka splošnega projekta Qt Creator Generic Project Files - + Datoteke splošnega projekta Generic Project Include Paths - + Poti do vključitev za splošni projekt Generic Project Configuration File - + Nastavitvena datoteka splošnega projekta Perforce submit template @@ -18694,7 +18707,7 @@ V naprej izbere Qt za simulator in razpoložljive ciljne mobilne naprave. Qt Project include file - + Vključitvena datoteka projekta Qt Qt Project feature file -- cgit v1.2.1 From 0ad6dfe09ed5950dcdf513e18509a6202560e2bd Mon Sep 17 00:00:00 2001 From: Leandro Melo Date: Tue, 17 Aug 2010 10:10:46 +0200 Subject: Do not prevent wrapping for long tooltips. Reviewed-by: Robert Loehning --- src/plugins/cppeditor/cpphoverhandler.cpp | 42 ++++++++++++++++++++++++------- src/plugins/cppeditor/cpphoverhandler.h | 2 +- 2 files changed, 34 insertions(+), 10 deletions(-) diff --git a/src/plugins/cppeditor/cpphoverhandler.cpp b/src/plugins/cppeditor/cpphoverhandler.cpp index 894e27a72e..4abc903ec1 100644 --- a/src/plugins/cppeditor/cpphoverhandler.cpp +++ b/src/plugins/cppeditor/cpphoverhandler.cpp @@ -61,6 +61,8 @@ #include #include #include +#include +#include using namespace CppEditor::Internal; using namespace CPlusPlus; @@ -105,7 +107,7 @@ void CppHoverHandler::showToolTip(TextEditor::ITextEditor *editor, const QPoint if (core->hasContext(dbgcontext)) return; - updateHelpIdAndTooltip(editor, pos); + updateHelpIdAndTooltip(editor, pos, QApplication::desktop()->screenNumber(point)); if (m_toolTip.isEmpty()) QToolTip::hideText(); @@ -238,7 +240,9 @@ static FullySpecifiedType resolve(const FullySpecifiedType &ty, return ty; } -void CppHoverHandler::updateHelpIdAndTooltip(TextEditor::ITextEditor *editor, int pos) +void CppHoverHandler::updateHelpIdAndTooltip(TextEditor::ITextEditor *editor, + int pos, + const int screen) { m_helpId.clear(); m_toolTip.clear(); @@ -395,16 +399,36 @@ void CppHoverHandler::updateHelpIdAndTooltip(TextEditor::ITextEditor *editor, in if (!formatTooltip.isEmpty()) m_toolTip = formatTooltip; + const int tipWidth = QFontMetrics(QToolTip::font()).width(m_toolTip); + bool preventWrapping = true; + + if (screen != -1) { +#ifdef Q_WS_MAC + int screenWidth = QApplication::desktop()->availableGeometry(screen).width(); +#else + int screenWidth = QApplication::desktop()->screenGeometry(screen).width(); +#endif + if (tipWidth > screenWidth * .8) + preventWrapping = false; + } + if (!m_helpId.isEmpty() && !helpLinks.isEmpty()) { if (showF1) { - // we need the original width without escape sequences - const int width = QFontMetrics(QToolTip::font()).width(m_toolTip); - m_toolTip = QString(QLatin1String("
" << StackHandler::tr("Address:") << "" << address << "
" << StackHandler::tr("Function:") << "" << function << "
" << StackHandler::tr("File:") << "" << QDir::toNativeSeparators(file) << "
" << StackHandler::tr("File:") << "" << filePath << "
" << StackHandler::tr("Line:") << "" << line << "
" << StackHandler::tr("From:") << "" << from << "
" << StackHandler::tr("To:") << "" << to << "
" - "
%1
")) - .arg(Qt::escape(m_toolTip)).arg(width); + if (preventWrapping) { + m_toolTip = QString(QLatin1String("" + "
%1
")) + .arg(Qt::escape(m_toolTip)).arg(tipWidth); + } else { + m_toolTip = QString(QLatin1String("" + "
%1
")) + .arg(Qt::escape(m_toolTip)); + } } editor->setContextHelpId(m_helpId); - } else if (!m_toolTip.isEmpty() && Qt::mightBeRichText(m_toolTip)) { - m_toolTip = QString(QLatin1String("%1")).arg(Qt::escape(m_toolTip)); + } else if (!m_toolTip.isEmpty()) { + if (preventWrapping) + m_toolTip = QString(QLatin1String("
%1
")).arg(Qt::escape(m_toolTip)).arg(tipWidth); + else if (!Qt::mightBeRichText(m_toolTip)) + m_toolTip = QString(QLatin1String("

%1

")).arg(Qt::escape(m_toolTip)); } } diff --git a/src/plugins/cppeditor/cpphoverhandler.h b/src/plugins/cppeditor/cpphoverhandler.h index 311b829223..3e8fa960f1 100644 --- a/src/plugins/cppeditor/cpphoverhandler.h +++ b/src/plugins/cppeditor/cpphoverhandler.h @@ -66,7 +66,7 @@ private slots: void editorOpened(Core::IEditor *editor); private: - void updateHelpIdAndTooltip(TextEditor::ITextEditor *editor, int pos); + void updateHelpIdAndTooltip(TextEditor::ITextEditor *editor, int pos, const int screen = -1); CppTools::CppModelManagerInterface *m_modelManager; QString m_helpId; -- cgit v1.2.1 From 294dfd10a3c2f8444e3c665a7d2ce388fbba500f Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Tue, 17 Aug 2010 11:46:18 +0200 Subject: Adjust to changes in qdoc from Qt 4.7. Reviewed-By: Leena Miettinen --- doc/doc.pri | 7 +- doc/templates/images/bg_l.png | Bin 139 -> 100 bytes doc/templates/images/bg_l_blank.png | Bin 123 -> 84 bytes doc/templates/images/bg_r.png | Bin 136 -> 96 bytes doc/templates/images/box_bg.png | Bin 129 -> 89 bytes doc/templates/images/breadcrumb.png | Bin 195 -> 134 bytes doc/templates/images/bullet_gt.png | Bin 185 -> 124 bytes doc/templates/images/bullet_sq.png | Bin 117 -> 74 bytes doc/templates/images/bullet_up.png | Bin 253 -> 210 bytes doc/templates/images/page_bg.png | Bin 126 -> 84 bytes doc/templates/scripts/functions.js | 28 +- doc/templates/scripts/narrow.js | 13 +- doc/templates/style/narrow.css | 25 +- doc/templates/style/style.css | 1393 ++++++++++++++++++++++------------- 14 files changed, 912 insertions(+), 554 deletions(-) diff --git a/doc/doc.pri b/doc/doc.pri index c161582f7f..8cf07f2c35 100644 --- a/doc/doc.pri +++ b/doc/doc.pri @@ -19,14 +19,13 @@ HELP_DEP_FILES = $$PWD/qtcreator.qdoc \ $$PWD/addressbook-sdk.qdoc \ $$PWD/qt-defines.qdocconf \ $$PWD/qt-html-templates.qdocconf \ - $$PWD/qtcreator.qdocconf \ - $$PWD/qtcreator-online.qdocconf + $$PWD/qtcreator.qdocconf -html_docs.commands = $$QDOC $$PWD/qtcreator.qdocconf +html_docs.commands = $$QDOC -creator $$PWD/qtcreator.qdocconf html_docs.depends += $$HELP_DEP_FILES html_docs.files = $$QHP_FILE -html_docs_online.commands = $$QDOC $$PWD/qtcreator-online.qdocconf +html_docs_online.commands = $$QDOC -online $$PWD/qtcreator.qdocconf html_docs_online.depends += $$HELP_DEP_FILES qch_docs.commands = $$HELPGENERATOR -o \"$$QCH_FILE\" $$QHP_FILE diff --git a/doc/templates/images/bg_l.png b/doc/templates/images/bg_l.png index 95470c78cc..90b1da10b9 100755 Binary files a/doc/templates/images/bg_l.png and b/doc/templates/images/bg_l.png differ diff --git a/doc/templates/images/bg_l_blank.png b/doc/templates/images/bg_l_blank.png index e0eca3f1c3..5a9673d81b 100755 Binary files a/doc/templates/images/bg_l_blank.png and b/doc/templates/images/bg_l_blank.png differ diff --git a/doc/templates/images/bg_r.png b/doc/templates/images/bg_r.png index 42a35a546f..f0fb121dea 100755 Binary files a/doc/templates/images/bg_r.png and b/doc/templates/images/bg_r.png differ diff --git a/doc/templates/images/box_bg.png b/doc/templates/images/box_bg.png index 232655a818..3322f923f8 100755 Binary files a/doc/templates/images/box_bg.png and b/doc/templates/images/box_bg.png differ diff --git a/doc/templates/images/breadcrumb.png b/doc/templates/images/breadcrumb.png index f0571ce1b5..0ded5514d2 100755 Binary files a/doc/templates/images/breadcrumb.png and b/doc/templates/images/breadcrumb.png differ diff --git a/doc/templates/images/bullet_gt.png b/doc/templates/images/bullet_gt.png index 88759256ce..7561b4edc4 100755 Binary files a/doc/templates/images/bullet_gt.png and b/doc/templates/images/bullet_gt.png differ diff --git a/doc/templates/images/bullet_sq.png b/doc/templates/images/bullet_sq.png index db85ee3400..a84845e3c7 100755 Binary files a/doc/templates/images/bullet_sq.png and b/doc/templates/images/bullet_sq.png differ diff --git a/doc/templates/images/bullet_up.png b/doc/templates/images/bullet_up.png index 285e7411b4..7de2f06954 100644 Binary files a/doc/templates/images/bullet_up.png and b/doc/templates/images/bullet_up.png differ diff --git a/doc/templates/images/page_bg.png b/doc/templates/images/page_bg.png index fb7d051a28..9b3bd999df 100755 Binary files a/doc/templates/images/page_bg.png and b/doc/templates/images/page_bg.png differ diff --git a/doc/templates/scripts/functions.js b/doc/templates/scripts/functions.js index 58a0248591..faa4ca4937 100644 --- a/doc/templates/scripts/functions.js +++ b/doc/templates/scripts/functions.js @@ -63,11 +63,9 @@ function processNokiaData(response){ if(propertyTags[i].getElementsByTagName('pageType')[0].firstChild.nodeValue == 'APIPage'){ lookupCount++; - for (var j=0; j< propertyTags[i].getElementsByTagName('pageWords').length; j++){ full_li_element = linkStart + propertyTags[i].getElementsByTagName('pageUrl')[j].firstChild.nodeValue; full_li_element = full_li_element + "'>" + propertyTags[i].getElementsByTagName('pageTitle')[0].firstChild.nodeValue + linkEnd; - $('#ul001').append(full_li_element); $('#ul001 .defaultLink').css('display','none'); @@ -77,7 +75,6 @@ function processNokiaData(response){ if(propertyTags[i].getElementsByTagName('pageType')[0].firstChild.nodeValue == 'Article'){ articleCount++; - for (var j=0; j< propertyTags[i].getElementsByTagName('pageWords').length; j++){ full_li_element = linkStart + propertyTags[i].getElementsByTagName('pageUrl')[j].firstChild.nodeValue; full_li_element =full_li_element + "'>" + propertyTags[i].getElementsByTagName('pageTitle')[0].firstChild.nodeValue + linkEnd ; @@ -103,10 +100,13 @@ function processNokiaData(response){ if(i==propertyTags.length){$('#pageType').removeClass('loading');} } + if(lookupCount > 0){$('#ul001 .menuAlert').remove();$('#ul001').prepend('
  • Found ' + lookupCount + ' hits
  • ');$('#ul001 li').css('display','block');$('.sidebar .search form input').removeClass('loading');} + if(articleCount > 0){$('#ul002 .menuAlert').remove();$('#ul002').prepend('
  • Found ' + articleCount + ' hits
  • ');$('#ul002 li').css('display','block');} + if(exampleCount > 0){$('#ul003 .menuAlert').remove();$('#ul003').prepend('
  • Found ' + articleCount + ' hits
  • ');$('#ul003 li').css('display','block');} - if(lookupCount == 0){$('#ul001').prepend('
  • Found no result
  • ');$('#ul001 li').css('display','block');$('.sidebar .search form input').removeClass('loading');} - if(articleCount == 0){$('#ul002').prepend('
  • Found no result
  • ');$('#ul002 li').css('display','block');} - if(exampleCount == 0){$('#ul003').prepend('
  • Found no result
  • ');$('#ul003 li').css('display','block');} + if(lookupCount == 0){$('#ul001 .menuAlert').remove();$('#ul001').prepend('
  • Found no result
  • ');$('#ul001 li').css('display','block');$('.sidebar .search form input').removeClass('loading');} + if(articleCount == 0){$('#ul002 .menuAlert').remove();$('#ul002').prepend('
  • Found no result
  • ');$('#ul002 li').css('display','block');} + if(exampleCount == 0){$('#ul003 .menuAlert').remove();$('#ul003').prepend('
  • Found no result
  • ');$('#ul003 li').css('display','block');} // reset count variables; lookupCount=0; articleCount = 0; @@ -121,6 +121,7 @@ function CheckEmptyAndLoadList() var pageVal = $('title').html(); $('#feedUrl').remove(); $('#pageVal').remove(); + $('.menuAlert').remove(); $('#feedform').append(''); $('#feedform').append(''); $('.liveResult').remove(); @@ -160,7 +161,8 @@ else var searchString = $('#pageType').val() ; if ((searchString == null) || (searchString.length < 3)) { $('#pageType').removeClass('loading'); - $('.liveResult').remove(); // replaces removeResults(); + $('.liveResult').remove(); + $('.searching').remove(); CheckEmptyAndLoadList(); $('.report').remove(); // debug$('.content').prepend('
  • too short or blank
  • '); // debug @@ -169,9 +171,8 @@ else if (this.timer) clearTimeout(this.timer); this.timer = setTimeout(function () { $('#pageType').addClass('loading'); - // debug$('.content').prepend('
  • new search started
  • ');// debug - // debug$('.content').prepend('

    Search string ' +searchString +'

    '); // debug - + $('.searching').remove(); + $('.list ul').prepend(''); $.ajax({ contentType: "application/x-www-form-urlencoded", url: 'http://' + location.host + '/nokiasearch/GetDataServlet', @@ -180,9 +181,10 @@ else type: 'post', success: function (response, textStatus) { - $('.liveResult').remove(); // replaces removeResults(); - $('#pageType').removeClass('loading'); - + $('.liveResult').remove(); + $('.searching').remove(); + $('#pageType').removeClass('loading'); + $('.list ul').prepend(''); processNokiaData(response); } diff --git a/doc/templates/scripts/narrow.js b/doc/templates/scripts/narrow.js index 12d0ce89d5..35c81bf4a4 100644 --- a/doc/templates/scripts/narrow.js +++ b/doc/templates/scripts/narrow.js @@ -59,9 +59,20 @@ var narrowInit = function() { } $(document).ready(function(){ - if ($('body').hasClass('narrow')) { +/* if ($('body').hasClass('narrow')) { narrowInit(); } + */ + if($(window).width()<600) { + $('body').addClass('narrow'); + + if ($("#narrowsearch").length == 0) { + narrowInit(); + } + } + else { + $('body').removeClass('narrow'); + } }); $(window).bind('resize', function () { diff --git a/doc/templates/style/narrow.css b/doc/templates/style/narrow.css index 05159aa568..349048fd8c 100644 --- a/doc/templates/style/narrow.css +++ b/doc/templates/style/narrow.css @@ -15,7 +15,12 @@ } .narrow .footer { - margin: 0; + margin: 0px; + } + + .creator .header, .creator .header .content, .creator .footer, .creator .wrapper { + margin: 0px; + min-width: 300px; } .narrow .header { @@ -49,7 +54,7 @@ .narrow .header .qtref a { - color: #363534; + color: #00732F; } .narrow .header .qtref span @@ -98,7 +103,7 @@ } .narrow .header #shortCut ul li a { - color: #44a51c; + color: #00732F; } .narrow .wrapper .hd @@ -126,6 +131,11 @@ margin: 0 5px 0 5px; } + .creator .wrap + { + margin: 0px; + background:#FFFFFF; + } .narrow .wrap .toolbar { border-bottom: none; @@ -135,7 +145,14 @@ { padding-top: 15px; } - + .creator .wrap .content + { + padding-top: 10px; + } + .creator .wrap .content .guide + { + padding-top: 15px; + } .narrow .wrap .feedback { display: none; diff --git a/doc/templates/style/style.css b/doc/templates/style/style.css index 90cfa2c214..190c60a1d9 100644 --- a/doc/templates/style/style.css +++ b/doc/templates/style/style.css @@ -1,6 +1,8 @@ @media screen { - html + +/* basic elements */ + html { color: #000000; background: #FFFFFF; @@ -18,6 +20,7 @@ fieldset, img { border: 0; + max-width:100%; } address, caption, cite, code, dfn, em, strong, th, var, optgroup { @@ -39,7 +42,6 @@ h1, h2, h3, h4, h5, h6 { font-size: 100%; -/* font-weight: normal; */ } q:before, q:after { @@ -50,11 +52,7 @@ border: 0; font-variant: normal; } - sup - { - vertical-align: baseline; - } - sub + sup, sub { vertical-align: baseline; } @@ -62,19 +60,6 @@ { word-spacing:5px; } - .heading - { - font: normal 600 16px/1.0 Arial; - padding-bottom: 15px; - } - .subtitle - { - font-size: 13px; - } - .small-subtitle - { - font-size: 13px; - } legend { color: #000000; @@ -90,9 +75,19 @@ { font-size: 100%; } + strong + { + font-weight: bold; + } + em + { + font-style: italic; + } + + /* adding Qt theme */ html { - background-color: #e5e5e5; + /* background-color: #e5e5e5;*/ } body { @@ -100,73 +95,119 @@ font: normal 13px/1.2 Verdana; color: #363534; } - strong + a { - font-weight: bold; + color: #00732f; + text-decoration: none; } - em + hr { - font-style: italic; + background-color: #E6E6E6; + border: 1px solid #E6E6E6; + height: 1px; + width: 100%; + text-align: left; + margin: 15px 0px 15px 0px; } - a + + pre { - color: #00732f; - text-decoration: none; + border: 1px solid #DDDDDD; + -moz-border-radius: 7px 7px 7px 7px; + -webkit-border-radius: 7px 7px 7px 7px; + border-radius: 7px 7px 7px 7px; + margin: 0 20px 10px 10px; + padding: 20px 15px 20px 20px; + overflow-x: auto; } - .header, .footer, .wrapper + table, pre { - min-width: 600px; - max-width: 1500px; - margin: 0 30px; + -moz-border-radius: 7px 7px 7px 7px; + -webkit-border-radius: 7px 7px 7px 7px; + border-radius: 7px 7px 7px 7px; + background-color: #F6F6F6; + border: 1px solid #E6E6E6; + border-collapse: separate; + font-size: 11px; + margin-bottom: 25px; } - .wrapper + pre.highlightedCode { + display: block; + overflow:hidden; + } + thead { - background: url(../images/bg_r.png) repeat-y 100% 0; + margin-top: 5px; + font:600 12px/1.2 Arial; } - .wrapper .hd + th { - padding-left: 216px; - height: 15px; - background: url(../images/page.png) no-repeat 0 0; - overflow: hidden; + padding: 5px 15px 5px 15px; + background-color: #E1E1E1; + border-left: 1px solid #E6E6E6; } - .offline .wrapper .hd + td { - background: url(../images/page.png) no-repeat 0 -15px; + padding: 3px 15px 3px 20px; } - .wrapper .hd span + tr.odd td:hover, tr.even td:hover {} + + td.rightAlign + { + padding: 3px 5px 3px 10px; + } + table tr.odd { - height: 15px; - display: block; - overflow: hidden; - background: url(../images/page.png) no-repeat 100% -30px; + border-left: 1px solid #E6E6E6; + background-color: #F6F6F6; + color: #66666E; } - .wrapper .bd + table tr.even { - background: url(../images/bg_l.png) repeat-y 0 0; - position: relative; + border-left: 1px solid #E6E6E6; + background-color: #ffffff; + color: #66666E; + } + table tr.odd td:hover, table tr.even td:hover + { + /* background-color: #E6E6E6;*/ /* disabled until further notice */ } - .offline .wrapper .bd + + span.comment { - background: url(../images/bg_l_blank.png) repeat-y 0 0; + color: #8B0000; + font-style: italic; } - .wrapper .ft + span.string, span.char { - padding-left: 216px; - height: 15px; - background: url(../images/page.png) no-repeat 0 -75px; - overflow: hidden; + color: #254117; + } + + +/* end basic elements */ + +/* font style elements */ + .heading + { + font: normal bold 16px/1.0 Arial; + padding-bottom: 15px; } - .offline .wrapper .ft + .subtitle { - background: url(../images/page.png) no-repeat 0 -90px; + font-size: 13px; } - .wrapper .ft span + .small-subtitle { - height: 15px; - display: block; - background: url(../images/page.png) no-repeat 100% -60px; - overflow: hidden; + font-size: 13px; + } +/* end font style elements */ + +/* global settings*/ + .header, .footer, .wrapper + { + min-width: 600px; + max-width: 1500px; + margin: 0 30px; } .header, .footer { @@ -174,6 +215,17 @@ clear: both; overflow: hidden; } + .header:after, .footer:after, .breadcrumb:after, .wrap .content:after, .group:after + { + content: "."; + display: block; + height: 0; + clear: both; + visibility: hidden; + } + +/* end global settings*/ +/* header elements */ .header { height: 115px; @@ -201,124 +253,348 @@ text-indent: -999em; background: url(../images/sprites-combined.png) no-repeat -78px -235px; } - - .sidebar + .content a:visited { - float: left; - margin-left: 5px; - width: 200px; - font-size: 11px; + color: #4c0033; + text-decoration: none; } - - .offline .sidebar, .offline .feedback, .offline .t_button + .content a:visited:hover { - display: none; + color: #4c0033; + text-decoration: underline; } - - .sidebar .searchlabel + + #nav-topright { - padding: 0 0 2px 17px; - font: normal bold 11px/1.2 Verdana; + height: 70px; } - .sidebar .search + #nav-topright ul { - padding: 0 15px 0 16px; + list-style-type: none; + float: right; + width: 370px; + margin-top: 11px; } - .sidebar .search form + #nav-topright li { - background: url(../images/sprites-combined.png) no-repeat -6px -348px; - height:21px; - padding:2px 0 0 5px; - width:167px; + display: inline-block; + margin-right: 20px; + float: left; } - .sidebar .search form input#pageType + #nav-topright li.nav-topright-last { - width: 158px; - height: 19px; - padding: 0; - border: none; - outline: none; - font: 13px/1.2 Verdana; + margin-right: 0; } - .sidebar .box + #nav-topright li a { - padding: 17px 15px 5px 16px; + background: transparent url(../images/sprites-combined.png) no-repeat; + height: 18px; + display: block; + overflow: hidden; + text-indent: -9999px; } - .sidebar .box .first + #nav-topright li.nav-topright-home a { - background-image: none; + width: 65px; + background-position: -2px -91px; } - .sidebar .box h2 + #nav-topright li.nav-topright-home a:hover { - font: normal 18px/1.2 Arial; - padding: 0; - min-height: 32px; + background-position: -2px -117px; } - .sidebar .box h2 span + + + #nav-topright li.nav-topright-dev a { - overflow: hidden; - display: inline-block; + width: 30px; + background-position: -76px -91px; } - .sidebar .box#lookup h2 + + #nav-topright li.nav-topright-dev a:hover { - background-image: none; + background-position: -76px -117px; } - .sidebar #lookup.box h2 span + + + #nav-topright li.nav-topright-labs a { - background: url(../images/sprites-combined.png) no-repeat -6px -311px; - width: 27px; - height: 35px; - margin-right: 13px; + width: 40px; + background-position: -114px -91px; } - .sidebar .box#topics h2 + + #nav-topright li.nav-topright-labs a:hover { - background-image: none; + background-position: -114px -117px; } - .sidebar #topics.box h2 span + + #nav-topright li.nav-topright-doc a { - background: url(../images/sprites-combined.png) no-repeat -94px -311px; - width: 27px; - height: 32px; - margin-right: 13px; + width: 32px; + background-position: -162px -91px; } - .sidebar .box#examples h2 + + #nav-topright li.nav-topright-doc a:hover, #nav-topright li.nav-topright-doc-active a { - background-image: none; + background-position: -162px -117px; } - .sidebar #examples.box h2 span + + #nav-topright li.nav-topright-blog a { - background: url(../images/sprites-combined.png) no-repeat -48px -311px; - width: 30px; - height: 31px; - margin-right: 9px; + width: 40px; + background-position: -203px -91px; } - .sidebar .box .list + #nav-topright li.nav-topright-blog a:hover, #nav-topright li.nav-topright-blog-active a { - display: block; - max-height:200px; - overflow-y:auto; - overflow-x:none; + background-position: -203px -117px; } - .sidebar .box .live + + #nav-topright li.nav-topright-shop a { - display: none; - height: 100px; - overflow: auto; + width: 40px; + background-position: -252px -91px; } - .list li a:hover, .live li a:hover - { + + #nav-topright li.nav-topright-shop a:hover, #nav-topright li.nav-topright-shop-active a + { + background-position: -252px -117px; + } + + #nav-logo + { + background: transparent url(../images/sprites-combined.png ) no-repeat 0 -225px; + left: -3px; + position: absolute; + width: 75px; + height: 75px; + top: 13px; + } + #nav-logo a + { + width: 75px; + height: 75px; + display: block; + text-indent: -9999px; + overflow: hidden; + } + + + .shortCut-topleft-inactive + { + padding-left: 3px; + background: transparent url( ../images/sprites-combined.png) no-repeat 0px -58px; + height: 20px; + width: 47px; + } + .shortCut-topleft-inactive span + { + font-variant: normal; + } + .shortCut-topleft-inactive span a:hover, .shortCut-topleft-active a:hover + { + text-decoration:none; + } + #shortCut + { + padding-top: 10px; + font-weight: bolder; + color: #b0adab; + } + #shortCut ul + { + list-style-type: none; + float: left; + width: 347px; + margin-left: 100px; + } + #shortCut li + { + display: inline-block; + margin-right: 25px; + float: left; + white-space: nowrap; + } + #shortCut li a + { + color: #b0adab; + } + #shortCut li a:hover + { + color: #44a51c; + } + + + +/* end header elements */ +/* content and sidebar elements */ + .wrapper + { + background: url(../images/bg_r.png) repeat-y 100% 0; + } + .wrapper .hd + { + padding-left: 216px; + height: 15px; + background: url(../images/page.png) no-repeat 0 0; + overflow: hidden; + } + + + + + .wrapper .hd span + { + height: 15px; + display: block; + overflow: hidden; + background: url(../images/page.png) no-repeat 100% -30px; + } + .wrapper .bd + { + background: url(../images/bg_l.png) repeat-y 0 0; + position: relative; + } + + + + + .wrapper .ft + { + padding-left: 216px; + height: 15px; + background: url(../images/page.png) no-repeat 0 -75px; + overflow: hidden; + } + + + + + .wrapper .ft span + { + height: 15px; + display: block; + background: url(../images/page.png) no-repeat 100% -60px; + overflow: hidden; + } + .navTop{ + float:right; + display:block; + padding-right:15px; + + + } + + + +/* end content and sidebar elements */ +/* sidebar elements */ + .sidebar + { + float: left; + margin-left: 5px; + width: 200px; + font-size: 11px; + } + + + + + + + .sidebar .searchlabel + { + padding: 0 0 2px 17px; + font: normal bold 11px/1.2 Verdana; + } + + .sidebar .search + { + padding: 0 15px 0 16px; + } + + .sidebar .search form + { + background: url(../images/sprites-combined.png) no-repeat -6px -348px; + height:21px; + padding:2px 0 0 5px; + width:167px; + } + + .sidebar .search form input#pageType + { + width: 158px; + height: 19px; + padding: 0; + border: 0px; + outline: none; + font: 13px/1.2 Verdana; + } + + .sidebar .box + { + padding: 17px 15px 5px 16px; + } + + .sidebar .box .first + { + background-image: none; + } + + .sidebar .box h2 + { + font: bold 16px/1.2 Arial; + padding: 0; + } + .sidebar .box h2 span + { + overflow: hidden; + display: inline-block; + } + .sidebar .box#lookup h2 + { + background-image: none; + } + .sidebar #lookup.box h2 span + { + } + .sidebar .box#topics h2 + { + background-image: none; + } + .sidebar #topics.box h2 span + { + } + .sidebar .box#examples h2 + { + background-image: none; + } + .sidebar #examples.box h2 span + { + } + + .sidebar .box .list + { + display: block; + max-height:200px; + min-height:120px; + overflow-y:auto; + overflow-x:none; + } + .list li a:hover + { text-decoration: underline; } .sidebar .box ul { - padding:10px; + padding-bottom:5px; + padding-left:10px; + padding-top:5px; } .sidebar .box ul li { @@ -330,15 +606,52 @@ { background: url(../images/box_bg.png) repeat-x 0 bottom; } + .sidebar .box ul li.noMatch + { + background: none; + color:#FF2A00; + font-style:italic; + } + .sidebar .box ul li.hit + { + background: none; + color:#AAD2F0; + font-style:italic; + } + .sidebar .search form input.loading + { + background:url("../images/spinner.gif") no-repeat scroll right center transparent; + } + +.floatingResult{ + z-index:1; + position:relative; + padding-top:0px; + background-color:white; + border:solid 1px black; + height:250px; + width:600px; + overflow-x:hidden; + overflow-y:auto; +} + + .floatingResult:hover{ + display:block; + } + .floatingResult:hover{ + } + +/* end sidebar elements */ +/* content elements */ .wrap { margin: 0 5px 0 208px; overflow: visible; } - .offline .wrap - { - margin: 0 5px 0 5px; - } + + + + .wrap .toolbar { background-color: #fafafa; @@ -424,8 +737,11 @@ color: #00732F; } - .offline .wrap .breadcrumb + + .wrap .content { + padding: 30px; + word-wrap:break-word; } .wrap .breadcrumb ul @@ -453,378 +769,124 @@ padding-left: 0; margin-left: 0; } - .wrap .content - { - padding: 30px; - word-wrap: break-word; - } - - .wrap .content li - { - padding-left: 12px; - background: url(../images/bullet_sq.png) no-repeat 0 5px; - font: normal 400 10pt/1 Verdana; - /* color: #44a51c;*/ - margin-bottom: 10px; - } - .content li:hover - { - /* text-decoration: underline;*/ - } - .wrap .content ol li { - background:none; - font: inherit; - margin-bottom:10px; - padding-left: 0px - } - .wrap .content ol li { - list-style-type:decimal; - } - .wrap .content .descr ol li { - margin-left: 45px; - } - .wrap .content { - padding-top: 15px; - } + .wrap .content ol li { + background:none; + font:normal 10pt/1 Verdana; - .wrap .content ol img { - vertical-align: middle; - } - .wrap .content ul img { - vertical-align: middle; - } - - .wrap .content h1 - { - font: 600 18px/1.2 Arial; - } - .wrap .content h2 - { - font: 600 16px/1.2 Arial; - } - .wrap .content h3 - { - font: 600 14px/1.2 Arial; - } - .wrap .content p - { - line-height: 20px; - padding: 5px; - } - .wrap .content table p - { - line-height: 20px; - padding: 0px; - } - .wrap .content ul - { - padding-left: 25px; - padding-top: 10px; - } - a:hover - { - color: #4c0033; - text-decoration: underline; - } - .content a:visited - { - color: #4c0033; - text-decoration: none; - } - .content a:visited:hover - { - color: #4c0033; - text-decoration: underline; - } .footer - { - min-height: 100px; - color: #797775; - font: normal 9px/1 Verdana; - text-align: center; - padding-top: 40px; - background-color: #E6E7E8; - margin: 0; - } - .feedback - { - float: none; - position: absolute; - right: 15px; - bottom: 10px; - font: normal 8px/1 Verdana; - color: #B0ADAB; - } - .feedback:hover - { - float: right; - font: normal 8px/1 Verdana; - color: #00732F; - text-decoration: underline; - } - .header:after, .footer:after, .breadcrumb:after, .wrap .content:after, .group:after - { - content: "."; - display: block; - height: 0; - clear: both; - visibility: hidden; - } - #nav-topright - { - height: 70px; - } - - #nav-topright ul - { - list-style-type: none; - float: right; - width: 370px; - margin-top: 11px; - } - - #nav-topright li - { - display: inline-block; - margin-right: 20px; - float: left; - } - - #nav-topright li.nav-topright-last - { - margin-right: 0; - } - - #nav-topright li a - { - background: transparent url(../images/sprites-combined.png) no-repeat; - height: 18px; - display: block; - overflow: hidden; - text-indent: -9999px; - } - - #nav-topright li.nav-topright-home a - { - width: 65px; - background-position: -2px -91px; - } - - #nav-topright li.nav-topright-home a:hover - { - background-position: -2px -117px; - } - - - #nav-topright li.nav-topright-dev a - { - width: 30px; - background-position: -76px -91px; - } - - #nav-topright li.nav-topright-dev a:hover - { - background-position: -76px -117px; - } - - - #nav-topright li.nav-topright-labs a - { - width: 40px; - background-position: -114px -91px; - } - - #nav-topright li.nav-topright-labs a:hover - { - background-position: -114px -117px; - } - - #nav-topright li.nav-topright-doc a - { - width: 32px; - background-position: -162px -91px; - } - - #nav-topright li.nav-topright-doc a:hover, #nav-topright li.nav-topright-doc-active a - { - background-position: -162px -117px; - } - - #nav-topright li.nav-topright-blog a - { - width: 40px; - background-position: -203px -91px; - } - - #nav-topright li.nav-topright-blog a:hover, #nav-topright li.nav-topright-blog-active a - { - background-position: -203px -117px; - } - - #nav-topright li.nav-topright-shop a - { - width: 40px; - background-position: -252px -91px; - } - - #nav-topright li.nav-topright-shop a:hover, #nav-topright li.nav-topright-shop-active a - { - background-position: -252px -117px; - } - - #nav-logo - { - background: transparent url(../images/sprites-combined.png ) no-repeat 0 -225px; - left: -3px; - position: absolute; - width: 75px; - height: 75px; - top: 13px; - } - #nav-logo a - { - width: 75px; - height: 75px; - display: block; - text-indent: -9999px; - overflow: hidden; - } - - - .shortCut-topleft-inactive - { - padding-left: 3px; - padding-right: 3px; - background: transparent url( ../images/sprites-combined.png) no-repeat 0px -58px; - height: 20px; - } - .shortCut-topleft-inactive span - { - font-variant: normal; - } - .shortCut-topleft-inactive span a:hover, .shortCut-topleft-active a:hover - { - text-decoration:none; + margin-bottom:10px; + margin-left:12px; + /*list-style-type:disc;*/ } - #shortCut - { - padding-top: 10px; - font-weight: bolder; - color: #b0adab; - } - #shortCut ul - { - list-style-type: none; - float: left; - margin-left: 100px; - } - #shortCut li - { - display: inline-block; - margin-right: 25px; - float: left; - white-space: nowrap; - } - #shortCut li a - { - color: #b0adab; - } - #shortCut li a:hover - { - color: #44a51c; - } - - hr - { - background-color: #E6E6E6; - border: 1px solid #E6E6E6; - height: 1px; - width: 100%; - text-align: left; - margin: 15px 0px 15px 0px; - } - - .content .alignedsummary - { - margin: 15px; - } - pre - { - border: 1px solid #DDDDDD; - margin: 0 20px 10px 10px; - padding: 20px 15px 20px 20px; - overflow-x: auto; - } - table, pre + + .wrap .content li { - -moz-border-radius: 7px 7px 7px 7px; - background-color: #F6F6F6; - border: 1px solid #E6E6E6; - border-collapse: separate; - font-size: 11px; - /*min-width: 395px;*/ - margin-bottom: 25px; - display: inline-block; + background: url(../images/bullet_sq.png) no-repeat 0 5px; + font: normal 400 10pt/1 Verdana; + margin-bottom: 10px; + padding-left:12px; } - thead + + + + + + + + + + .content li:hover {} + + .wrap .content h1 { - margin-top: 5px; - font:600 12px/1.2 Arial; + font: bold 18px/1.2 Arial; } - th + .wrap .content h2 { - padding: 5px 15px 5px 15px; - background-color: #E1E1E1; - /* border-bottom: 1px solid #E6E6E6;*/ - border-left: 1px solid #E6E6E6; - /* border-right: 1px solid #E6E6E6;*/ + border-bottom:1px solid #DDDDDD; + font:600 16px/1.2 Arial; + margin-top:15px; + width:100%; } - td + .wrap .content h3 { - padding: 3px 15px 3px 20px; - /* border-left: 1px solid #E6E6E6; - border-right: 1px solid #E6E6E6;*/ + font: bold 14px/1.2 Arial; + font:600 16px/1.2 Arial; + margin-top:15px; + width:100%; } - tr.odd td:hover, tr.even td:hover + .wrap .content p { - /* border-right: 1px solid #C3C3C3; - border-left: 1px solid #C3C3C3;*/ + line-height: 20px; + padding: 5px; } - - td.rightAlign - { - padding: 3px 15px 3px 10px; - } - table tr.odd + .wrap .content table p { - border-left: 1px solid #E6E6E6; - background-color: #F6F6F6; - color: #66666E; + line-height: 20px; + padding: 0px; + } + .wrap .content ul + { + padding-left: 25px; + padding-top: 10px; } - table tr.even + a:hover { - border-left: 1px solid #E6E6E6; - background-color: #ffffff; - color: #66666E; + color: #4c0033; + text-decoration: underline; } - table tr.odd td:hover, table tr.even td:hover + .feedback { - background-color: #E6E6E6; + float: none; + position: absolute; + right: 15px; + bottom: 10px; + font: normal 8px/1 Verdana; + color: #B0ADAB; } - - span.comment + .feedback:hover { - color: #8B0000; - font-style: italic; + float: right; + font: normal 8px/1 Verdana; + color: #00732F; + text-decoration: underline; } - span.string, span.char + .alphaChar{ + width:100%; + background-color:#F6F6F6; + border:1px solid #E6E6E6; + -moz-border-radius: 7px 7px 7px 7px; + border-radius: 7px 7px 7px 7px; + -webkit-border-radius: 7px 7px 7px 7px; + font-size:12pt; + padding-left:10px; + margin-top:10px; + margin-bottom:10px; + } + .flowList{ + vertical-align:top; + } + + .flowList dl{ + } + .flowList dd{ + display:inline-block; + margin-left:10px; + width:250px; + } + .wrap .content .flowList p{ + padding:0px; + } + + .content .alignedsummary { - color: #254117; + margin: 15px; } + .qmltype { text-align: center; @@ -832,12 +894,14 @@ } .qmlreadonly { + padding-left: 5px; float: right; color: #254117; } .qmldefault { + padding-left: 5px; float: right; color: red; } @@ -849,16 +913,17 @@ *.qmlitem p { } - #feedbackBox { display: none; -moz-border-radius: 7px 7px 7px 7px; + -webkit-border-radius: 7px 7px 7px 7px; + border-radius: 7px 7px 7px 7px; border: 1px solid #DDDDDD; position: fixed; top: 100px; left: 33%; - height: 190px; + height: 230px; width: 400px; padding: 5px; background-color: #e6e7e8; @@ -882,12 +947,25 @@ height: 120px; margin: 0px 25px 10px 15px; } + #noteHead + { + font-weight:bold; + padding:10px 10px 10px 20px; + } #feedsubmit { display: inline; float: right; margin: 4px 32px 0 0; } + + .note + { + font-size:7pt; + padding-bottom:3px; + padding-left:20px; + } + #blurpage { display: none; @@ -904,6 +982,8 @@ { float: right; -moz-border-radius: 7px 7px 7px 7px; + -webkit-border-radius: 7px 7px 7px 7px; + border-radius: 7px 7px 7px 7px; background-color: #F6F6F6; border: 1px solid #DDDDDD; margin: 0 20px 10px 10px; @@ -914,14 +994,16 @@ .toc h3, .generic a { - font: 600 12px/1.2 Arial; + font: bold 12px/1.2 Arial; } .generic{ - max-width:75%; } .generic td{ - padding:0; + padding:5px; + } + .generic .alphaChar{ + margin-top:5px; } .generic .odd .alphaChar{ @@ -935,7 +1017,9 @@ .alignedsummary{} .propsummary{} .memItemLeft{} - .memItemRight{} + .memItemRight{ + padding:3px 15px 3px 0; + } .bottomAlign{} .highlightedCode { @@ -943,7 +1027,9 @@ } .LegaleseLeft{} .valuelist{} - .annotated{} + .annotated td{ + padding: 3px 5px 3px 5px; + } .obsolete{} .compat{} .flags{} @@ -963,6 +1049,16 @@ padding-left: 0px; } + .wrap .content .toc h3{ + border-bottom:0px; + margin-top:0px; + } + + .wrap .content .toc h3 a:hover{ + color:#00732F; + text-decoration:none; + } + .wrap .content .toc .level2 { @@ -979,10 +1075,11 @@ font: normal 10px/1.2 Verdana; background: url(../images/bullet_dn.png) no-repeat 0 5px; } - .relpage { -moz-border-radius: 7px 7px 7px 7px; + -webkit-border-radius: 7px 7px 7px 7px; + border-radius: 7px 7px 7px 7px; border: 1px solid #DDDDDD; padding: 25px 25px; clear: both; @@ -998,12 +1095,16 @@ } h3.fn, span.fn { + -moz-border-radius:7px 7px 7px 7px; + -webkit-border-radius:7px 7px 7px 7px; + border-radius:7px 7px 7px 7px; background-color: #F6F6F6; border-width: 1px; border-style: solid; border-color: #E6E6E6; font-weight: bold; word-spacing:3px; + padding:3px 5px; } .functionIndex { @@ -1014,6 +1115,9 @@ border-width: 1px; border-style: solid; border-color: #E6E6E6; + -moz-border-radius: 7px 7px 7px 7px; + -webkit-border-radius: 7px 7px 7px 7px; + border-radius: 7px 7px 7px 7px; width:100%; } @@ -1040,6 +1144,24 @@ .functionIndex a{ display:inline-block; } + +/* end content elements */ +/* footer elements */ + + .footer + { + min-height: 100px; + color: #797775; + font: normal 9px/1 Verdana; + text-align: center; + padding-top: 40px; + background-color: #E6E7E8; + margin: 0; + } +/* end footer elements */ + + + /* start index box */ .indexbox @@ -1051,15 +1173,15 @@ .indexboxcont { display: block; - /* overflow: hidden;*/ + } .indexboxbar { background: transparent url(../images/horBar.png ) repeat-x left bottom; margin-bottom: 25px; - /* background-image: none; - border-bottom: 1px solid #e2e2e2;*/ + + } .indexboxcont .section @@ -1110,7 +1232,7 @@ .content .indexboxcont li { - font: normal 600 13px/1 Verdana; + font: normal bold 13px/1 Verdana; } .indexbox a:hover, .indexbox a:visited:hover @@ -1159,60 +1281,267 @@ visibility: hidden; } -.sidebar .search form input.loading -{ - background:url("../images/spinner.gif") no-repeat scroll right center transparent; -} - /* end of screen media */ - -.flowList{ -vertical-align:top; -} -.alphaChar{ -width:100%; -background-color:#F6F6F6; -border:1px solid #E6E6E6; -font-size:12pt; -padding-left:10px; -margin-top:10px; -margin-bottom:10px; -} -.flowList dl{ -} -.flowList dd{ -display:inline-block; -margin-left:10px; -width:250px; -} -.wrap .content .flowList p{ -padding:0px; -} -pre.highlightedCode { - display: block; - overflow:hidden; -} +/* start of creator spec*/ + .creator + { + margin-left:0px; + margin-right:0px; + padding-left:0px; + padding-right:0px; + } + .creator .wrap .content ol li { + list-style-type:decimal; + + } + .creator .header .icon, + .creator .feedback, + .creator .t_button, + .creator .feedback, + .creator #feedbackBox, + .creator #feedback, + .creator #blurpage, + /*.creator .indexbox .indexIcon span,*/ + .creator .wrapper .hd, +/* .creator .indexbox .indexIcon,*/ + .creator .header #nav-logo, + .creator #offlinemenu, + .creator #offlinesearch, + .creator .header #nav-topright, + .creator .header #shortCut , + .creator .wrapper .hd, + .creator .wrapper .ft, + .creator .sidebar, + .creator .wrap .feedback + { + display:none; + } + + body.creator + { + background: none; + + font: normal 13px/1.2 Verdana; + color: #363534; + background-color: #FAFAFA; + } + + + + .creator .header, .footer, .wrapper + { + max-width: 1500px; + margin: 0px; + } + + .creator .wrapper + { + position:relative; + top:5px; + } + .creator .wrapper .bd + { + + background:#FFFFFF; + } + + + .creator .header, .footer + { + display: block; + clear: both; + overflow: hidden; + } + .creator .wrap .content p + + { + line-height: 20px; + padding: 5px; + } + + .creator .header .qtref span + { + background:none; + } + + + + .creator .footer + { + border-top:1px solid #E5E5E5; + min-height: 100px; + margin:0px; + } + + .creator .wrap + { + + padding:0 5px 0 5px; + margin: 0px; + } + .creator .wrap .toolbar + { + + + border-bottom:1px solid #E5E5E5; + /*width:100%;*/ + margin-left:-5px; + margin-right:-5px; + } + .creator .wrap .breadcrumb ul li a + { + /* color: #363534;*/ + color: #00732F; + } + + .creator .wrap .content + { + padding: 0px; + word-wrap:break-word; + } + + .creator .wrap .content ol li { + background:none; + font: inherit; + padding-left: 0px; + } + + .creator .wrap .content .descr ol li { + margin-left: 45px; + + } + .creator .content .alignedsummary + { + margin: 5px; + width:100%; + } + .creator .generic{ + max-width:75%; + } + .creator .generic td{ + padding:0; + } + .creator .indexboxbar + { + border-bottom:1px solid #E5E5E5; + margin-bottom: 25px; + background: none; + } + + + + .creator .header + { + width: 100%; + margin: 0; + height: auto; + background-color: #ffffff; + padding: 10px 0 5px 0; + overflow: visible; + border-bottom: solid #E5E5E5 1px; + z-index:1; + + + + + + + + + /* position:fixed;*/ + } + + + .creator .header .content + { + } + .creator .header .qtref + { + color: #00732F; + position: static; + float: left; + margin-left: 5px; + font: bold 18px/1 Arial; + } + .creator .header .qtref:visited + { + color: #00732F; + } + .creator .header .qtref:hover + { + color: #00732F; + text-decoration:none; + } + .creator .header .qtref span + { + background-image: none; + text-indent: 0; + text-decoration:none; + } + + + + + + + .creator .wrap .toolbar + { + display:block; + padding-top:0px; + } + + + + .creator .wrap .breadcrumb ul li { + font-weight: normal; + } + + .creator .wrap .breadcrumb ul li a { + /*color: #44a51c;*/ + } + + .creator .wrap .breadcrumb ul li.last a { + /*color: #363534;*/ + } + + .creator #narrowmenu ul + { + border-bottom:solid 1px #E5E5E5; + border-left:solid 1px #E5E5E5; + border-right:solid 1px #E5E5E5; + } + + .creator #narrowmenu li ul { + margin-top:-15px; + } + + + .creator .toc { + margin:10px 20px 10px 10px; + } +/* end of creator spec*/ + } + /* end of screen media */ /* start of print media */ @media print { - input, textarea, .header, .footer, .toolbar, .feedback, .wrapper .hd, .wrapper .bd .sidebar, .wrapper .ft + input, textarea, .header, .footer, .toolbar, .feedback, .wrapper .hd, .wrapper .bd .sidebar, .wrapper .ft, #feedbackBox, #blurpage, .toc, .breadcrumb, .toolbar, .floatingResult { display: none; background: none; } .content { - position: absolute; - top: 0px; - left: 0px; background: none; display: block; + width: 100%; margin: 0; float: none; + } } /* end of print media */ -- cgit v1.2.1 From 46b414f5a817f30033656dc1c4107a0e0054ec6d Mon Sep 17 00:00:00 2001 From: dt Date: Tue, 27 Jul 2010 12:34:24 +0200 Subject: Fix DESTDIR=. case Qmake treats "." special, we need to do the same --- src/plugins/qt4projectmanager/qt4nodes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qt4projectmanager/qt4nodes.cpp b/src/plugins/qt4projectmanager/qt4nodes.cpp index fd34df2e73..7d3f74054b 100644 --- a/src/plugins/qt4projectmanager/qt4nodes.cpp +++ b/src/plugins/qt4projectmanager/qt4nodes.cpp @@ -1489,7 +1489,7 @@ TargetInformation Qt4ProFileNode::targetInformation(ProFileReader *reader) const result.workingDir = QDir::cleanPath(result.workingDir); QString wd = result.workingDir; - if (!reader->contains("DESTDIR") + if ( (!reader->contains("DESTDIR") || reader->value("DESTDIR") == ".") && reader->values("CONFIG").contains("debug_and_release") && reader->values("CONFIG").contains("debug_and_release_target")) { // If we don't have a destdir and debug and release is set -- cgit v1.2.1 From 2be417bbc458684812bdf467c4fd91c2d9870d6c Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 17 Aug 2010 11:35:41 +0200 Subject: rename changes file and add a known-issues file (cherry picked from commit 84bca22f837614d6070318829c9b8a1b4f8ff87c) --- dist/changes-2.0.1 | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ dist/changes-2.1.0 | 49 ------------------------------------------------- dist/known-issues-2.0.1 | 0 3 files changed, 49 insertions(+), 49 deletions(-) create mode 100644 dist/changes-2.0.1 delete mode 100644 dist/changes-2.1.0 create mode 100644 dist/known-issues-2.0.1 diff --git a/dist/changes-2.0.1 b/dist/changes-2.0.1 new file mode 100644 index 0000000000..749cc165ab --- /dev/null +++ b/dist/changes-2.0.1 @@ -0,0 +1,49 @@ +The QtCreator 2.0.1 release contains mainly bug fixes on top of 2.0 + +Below is a list of relevant changes. You can find a complete list of changes +within the logs of Qt Creator's sources. Simply check it out from the public git +repository e.g., + +git clone git://gitorious.org/qt-creator/qt-creator.git +git log --cherry-pick --pretty=oneline v2.0.0...v2.0.1 + +General + * Fix the suggested path in the new dialog in case of sub projects + * Search dialog now opens the completion box for the search term on cursor down + +Editing + * FakeVim: Fix issues with non-letter keys on non-US keyboards + * FakeVim: Fix performance of find/replace + * Fixed disabled "Open with" context menu in project tree. + +C++ Support + +Project support + * Fix auto-scrolling in application and compile output + +Debugging + * Fix display of certain structures within containers + * Fix display of typedefs of typedefs of simple types such as qulonglong + * Fix behaviour of 'step' and 'next' when a lower frame was selected + * Fix std::string display for objects with (the legal) ref count -1 + * Improve gdb version string parsing + * Fix that the newest version of compiled debugging helper was not used + if there was an older version still was around in a different search path + +QML/JS Support + * New QmlDesigner + * Allows visual manipulation of .qml files + * Supports changing top-level states + * Integrates tighly with text editor, e.g. shared history, navigation facilities ... + +Platform Specific + +Mac + +Linux (GNOME and KDE) + +Windows + * Fixed that some menu items got disabled during keyboard navigation + +Additional credits go to: + diff --git a/dist/changes-2.1.0 b/dist/changes-2.1.0 deleted file mode 100644 index 3ebced0234..0000000000 --- a/dist/changes-2.1.0 +++ /dev/null @@ -1,49 +0,0 @@ -The QtCreator 2.1 release contains bug fixes and new features. - -Below is a list of relevant changes. You can find a complete list of changes -within the logs of Qt Creator's sources. Simply check it out from the public git -repository e.g., - -git clone git://gitorious.org/qt-creator/qt-creator.git -git log --cherry-pick --pretty=oneline v2.0.0...v2.1.0 - -General - * Fix the suggested path in the new dialog in case of sub projects - * Search dialog now opens the completion box for the search term on cursor down - -Editing - * FakeVim: Fix issues with non-letter keys on non-US keyboards - * FakeVim: Fix performance of find/replace - * Fixed disabled "Open with" context menu in project tree. - -C++ Support - -Project support - * Fix auto-scrolling in application and compile output - -Debugging - * Fix display of certain structures within containers - * Fix display of typedefs of typedefs of simple types such as qulonglong - * Fix behaviour of 'step' and 'next' when a lower frame was selected - * Fix std::string display for objects with (the legal) ref count -1 - * Improve gdb version string parsing - * Fix that the newest version of compiled debugging helper was not used - if there was an older version still was around in a different search path - -QML/JS Support - * New QmlDesigner - * Allows visual manipulation of .qml files - * Supports changing top-level states - * Integrates tighly with text editor, e.g. shared history, navigation facilities ... - -Platform Specific - -Mac - -Linux (GNOME and KDE) - -Windows - * Fixed that some menu items got disabled during keyboard navigation - -Additional credits go to: - diff --git a/dist/known-issues-2.0.1 b/dist/known-issues-2.0.1 new file mode 100644 index 0000000000..e69de29bb2 -- cgit v1.2.1 From d801b23c7e97ccb868a250b90b51e7bb0f73f579 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 17 Aug 2010 11:48:25 +0200 Subject: known issues: mention Mac OS 10.6 and DYLD_IMAGE_SUFFIX problem (cherry picked from commit cee598191ef4541eeb750d25af48591a7d7f8cb8) --- dist/known-issues-2.0.1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dist/known-issues-2.0.1 b/dist/known-issues-2.0.1 index e69de29bb2..1e297631b6 100644 --- a/dist/known-issues-2.0.1 +++ b/dist/known-issues-2.0.1 @@ -0,0 +1,6 @@ + +Mac: + DYLD_IMAGE_SUFFIX does not work on Mac OS X Snow Leopard. So don't use the + corresponding setting in the Projects tab. + See: http://wimleers.com/blog/dyld-image-suffix-causing-havoc-on-mac-os-x-snow-leopard + -- cgit v1.2.1 From 41349a17f0275c3861e4efd2c8a079d2369f0a15 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 17 Aug 2010 12:26:47 +0200 Subject: known-issues: elaborate on Mac OS 10.6 DYLD_IMAGE_SUFFIX (cherry picked from commit 29e741558d916d4dfb07348790cd688f4e9eaee5) --- dist/known-issues-2.0.1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dist/known-issues-2.0.1 b/dist/known-issues-2.0.1 index 1e297631b6..9340d69e61 100644 --- a/dist/known-issues-2.0.1 +++ b/dist/known-issues-2.0.1 @@ -3,4 +3,7 @@ Mac: DYLD_IMAGE_SUFFIX does not work on Mac OS X Snow Leopard. So don't use the corresponding setting in the Projects tab. See: http://wimleers.com/blog/dyld-image-suffix-causing-havoc-on-mac-os-x-snow-leopard + A possible workaround is: + sudo mv /usr/lib/libSystem.B_debug.dylib /usr/lib/libSystem.B_debug.dylib.backup + sudo cp /usr/lib/libSystem.B.dylib /usr/lib/libSystem.B_debug.dylib.backup -- cgit v1.2.1 From 0da16a8a703461fbb3287ee4b3a9458d63f7aae0 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Tue, 17 Aug 2010 12:51:51 +0200 Subject: Changelog: 2.0.1 updates. --- dist/changes-2.0.1 | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/dist/changes-2.0.1 b/dist/changes-2.0.1 index 749cc165ab..000ab661c6 100644 --- a/dist/changes-2.0.1 +++ b/dist/changes-2.0.1 @@ -10,6 +10,7 @@ git log --cherry-pick --pretty=oneline v2.0.0...v2.0.1 General * Fix the suggested path in the new dialog in case of sub projects * Search dialog now opens the completion box for the search term on cursor down + * Fix Mercurial plugin (QTCREATORBUG-1503) Editing * FakeVim: Fix issues with non-letter keys on non-US keyboards @@ -30,12 +31,6 @@ Debugging * Fix that the newest version of compiled debugging helper was not used if there was an older version still was around in a different search path -QML/JS Support - * New QmlDesigner - * Allows visual manipulation of .qml files - * Supports changing top-level states - * Integrates tighly with text editor, e.g. shared history, navigation facilities ... - Platform Specific Mac @@ -44,6 +39,7 @@ Linux (GNOME and KDE) Windows * Fixed that some menu items got disabled during keyboard navigation + * Detect Microsoft Visual Studio 2010 Additional credits go to: -- cgit v1.2.1 From ed0bed351a0edbf55521c21848e1b12f692be7fa Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Tue, 17 Aug 2010 12:48:32 +0200 Subject: Fixed untranslated string --- src/plugins/qmljseditor/qmljseditorplugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmljseditor/qmljseditorplugin.cpp b/src/plugins/qmljseditor/qmljseditorplugin.cpp index e9d7926182..4afe4310e1 100644 --- a/src/plugins/qmljseditor/qmljseditorplugin.cpp +++ b/src/plugins/qmljseditor/qmljseditorplugin.cpp @@ -126,7 +126,7 @@ bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *e Core::ActionContainer *menuQtQuick = am->createMenu(Constants::M_QTQUICK); menuQtQuick->menu()->setTitle(tr("Qt Quick")); mtools->addMenu(menuQtQuick); - m_actionPreview = new QAction("&Preview", this); + m_actionPreview = new QAction(tr("&Preview"), this); QList toolsMenuContext = QList() << core->uniqueIDManager()->uniqueIdentifier(QmlDesigner::Constants::C_QT_QUICK_TOOLS_MENU); -- cgit v1.2.1 From 7788e95ee9a7355018e579c78b0c36e7f41ae16d Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 17 Aug 2010 15:52:01 +0200 Subject: debugger: fix display of arrays of types that gdb forgot about (cherry picked from commit a1f2638c5fd6603c14065bcc0e0ddbe35463fc9b) Conflicts: share/qtcreator/gdbmacros/dumper.py --- share/qtcreator/gdbmacros/dumper.py | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index 903efc214f..975303b971 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -116,10 +116,15 @@ def lookupType(typestring): try: #warn("LOOKING UP '%s'" % ts) type = gdb.lookup_type(ts) - except: - # Can throw "RuntimeError: No type named class Foo." - #warn("LOOKING UP '%s' FAILED" % ts) - pass + except RuntimeError, error: + #warn("LOOKING UP '%s': %s" % (ts, error)) + # See http://sourceware.org/bugzilla/show_bug.cgi?id=11912 + exp = "(class '%s'*)0" % ts + try: + type = parseAndEvaluate(exp).type.target() + except: + # Can throw "RuntimeError: No type named class Foo." + pass #warn(" RESULT: '%s'" % type) #if not type is None: # warn(" FIELDS: '%s'" % type.fields()) @@ -805,7 +810,9 @@ def extractFields(type): #warn("TYPE 0: %s" % type) type = stripTypedefs(type) #warn("TYPE 1: %s" % type) - type = lookupType(str(type)) + type0 = lookupType(str(type)) + if not type0 is None: + type = type0 #warn("TYPE 2: %s" % type) fields = type.fields() #warn("FIELDS: %s" % fields) -- cgit v1.2.1 From 7aa677c4e5e19ea0f5f6e393a5a8a5a700077b73 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 17 Aug 2010 16:32:59 +0200 Subject: debugger: fix QObject property dumper by using workaround As suggested by Tom T. in http://sourceware.org/bugzilla/show_bug.cgi?id=11912 (cherry picked from commit f52a88a074e2940f3887ebb19fab4de63a3f6518) Conflicts: share/qtcreator/gdbmacros/dumper.py --- share/qtcreator/gdbmacros/dumper.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index 975303b971..e6b9783417 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -647,7 +647,8 @@ def call(value, func): type = stripClassTag(str(value.type)) if type.find(":") >= 0: type = "'" + type + "'" - exp = "((%s*)%s)->%s" % (type, value.address, func) + # 'class' is needed, see http://sourceware.org/bugzilla/show_bug.cgi?id=11912 + exp = "((class %s*)%s)->%s" % (type, value.address, func) #warn("CALL: %s" % exp) result = None try: -- cgit v1.2.1 From aa16f34ec0335e1fd6defa7928224d13aa54f9a2 Mon Sep 17 00:00:00 2001 From: hjk Date: Tue, 17 Aug 2010 16:36:29 +0200 Subject: debugger: next attempt at robustly recognizing QObjects (cherry picked from commit e8eea80c3ffe987d2467fe5009c02802c92c4052) --- share/qtcreator/gdbmacros/dumper.py | 40 +++++++++++++++++++++++-------------- 1 file changed, 25 insertions(+), 15 deletions(-) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index e6b9783417..8691296879 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -843,7 +843,6 @@ class Item: # This is a mapping from 'type name' to 'display alternatives'. -qqDumpers = {} qqFormats = {} @@ -858,7 +857,6 @@ class SetupCommand(gdb.Command): for key, value in module.__dict__.items(): if key.startswith("qdump__"): name = key[7:] - qqDumpers[name] = value qqFormats[name] = qqFormats.get(name, ""); elif key.startswith("qform__"): name = key[7:] @@ -1330,27 +1328,41 @@ class Dumper: value = item.value type = value.type - typedefStrippedType = stripTypedefs(type); - nsStrippedType = self.stripNamespaceFromType( - typedefStrippedType).replace("::", "__") + typedefStrippedType = stripTypedefs(type) + + if isSimpleType(typedefStrippedType): + #warn("IS SIMPLE: %s " % type) + self.putType(item.value.type) + self.putValue(value) + self.putNumChild(0) + return # Is this derived from QObject? hasMetaObject = False + for field in typedefStrippedType.strip_typedefs().fields(): + if field.name == "staticMetaObject": + hasMetaObject = True + break + + nsStrippedType = self.stripNamespaceFromType(typedefStrippedType)\ + .replace("::", "__") #warn(" STRIPPED: %s" % nsStrippedType) - #warn(" DUMPERS: %s" % self.dumpers) #warn(" DUMPERS: %s" % (nsStrippedType in self.dumpers)) - if isSimpleType(typedefStrippedType): - #warn("IS SIMPLE: %s " % type) - self.putType(item.value.type) - self.putValue(value) - self.putNumChild(0) + format = self.itemFormat(item) - elif nsStrippedType in self.dumpers: + if self.useFancy \ + and ((format is None) or (format >= 1)) \ + and ((nsStrippedType in self.dumpers) or hasMetaObject): #warn("IS DUMPABLE: %s " % type) self.putType(item.value.type) - self.dumpers[nsStrippedType](self, item) + if hasMetaObject: + # value has references stripped off item.value. + item1 = Item(value, item.iname) + qdump__QObject(self, item1) + else: + self.dumpers[nsStrippedType](self, item) #warn(" RESULT: %s " % self.output) elif typedefStrippedType.code == gdb.TYPE_CODE_ENUM: @@ -1363,8 +1375,6 @@ class Dumper: elif typedefStrippedType.code == gdb.TYPE_CODE_PTR: isHandled = False - format = self.itemFormat(item) - if not format is None: self.putAddress(value.address) self.putType(item.value.type) -- cgit v1.2.1 From ffdd4110ae4d366e80e1e3ea207624d8ecc9fde3 Mon Sep 17 00:00:00 2001 From: Jonathan Courtois Date: Tue, 17 Aug 2010 21:37:54 +0200 Subject: French translation, done by the developpez.com team. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is the squashed result of a team effort. Authors are: Jonathan Courtois Belz Guillaume Cédric Bonnier Francis Genet Pierre Rossi For full history, checkout the team's repo: http://qt.gitorious.org/+developpez-dot-com/qt-creator/qt-creator-fr See also: http://qt.developpez.com/ Merge-request: 168 Reviewed-by: Pierre Rossi --- share/qtcreator/translations/qtcreator_fr.ts | 7976 +++++++------------------- 1 file changed, 2026 insertions(+), 5950 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_fr.ts b/share/qtcreator/translations/qtcreator_fr.ts index 23a5ae5725..638dd03b23 100644 --- a/share/qtcreator/translations/qtcreator_fr.ts +++ b/share/qtcreator/translations/qtcreator_fr.ts @@ -4,22 +4,18 @@ Application - Failed to load core: %1 Échec dans le chargement du core : %1 - Unable to send command line arguments to the already running instance. It appears to be not responding. - Impossible de passer les arguments de la ligne de commande à l'instance en cours d'execution. Elle semble ne pas répondre. + Impossible de passer les arguments de la ligne de commande à l'instance en cours d'exécution. Elle semble ne pas répondre. - Could not find 'Core.pluginspec' in %1 'Core.pluginspec' introuvable dans %1 - Qt Creator - Plugin loader messages Qt Creator - Messages du chargeur de plugin @@ -31,17 +27,14 @@ AttachCoreDialog - Start Debugger Lancer le débogueur - Executable: Exécutable : - Core File: Fichier core : @@ -49,7 +42,6 @@ AttachExternalDialog - Start Debugger Lancer le débogueur @@ -66,7 +58,6 @@ Effacer - Attach to process ID: Attacher au processus de PID : @@ -97,12 +88,10 @@ BINEditor::Internal::BinEditorPlugin - &Undo Annu&ler - &Redo &Refaire @@ -110,46 +99,34 @@ BookmarkDialog - Add Bookmark Ajouter un signet - Bookmark: Signet : - Add in Folder: Ajouter dans le dossier : - + + - New Folder Nouveau dossier - - - - - Bookmarks Signets - Delete Folder Supprimer le dossier - Rename Folder Renommer le dossier @@ -161,23 +138,18 @@ Signet - Bookmarks Signets - Remove Supprimer - You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue? Vous allez supprimer un dossier et tout ce qu'il contient.<br>Êtes vous sûr de vouloir continuer ? - - New Folder Nouveau dossier @@ -185,32 +157,26 @@ BookmarkWidget - Delete Folder Supprimer le dossier - Rename Folder Renommer le dossier - Show Bookmark Afficher le signet - Show Bookmark in New Tab Afficher le signet dans un nouvel onglet - Delete Bookmark Supprimer le signet - Rename Bookmark Renommer le signet @@ -219,12 +185,10 @@ Filtre : - Add Ajouter - Remove Supprimer @@ -232,28 +196,22 @@ Bookmarks::Internal::BookmarkView - - Bookmarks Signets - Move Up Déplacer vers le haut - Move Down Déplacer vers le bas - &Remove &Supprimer - Remove All Supprimer tout @@ -269,23 +227,18 @@ Bookmarks::Internal::BookmarksPlugin - &Bookmarks &Signets - - Toggle Bookmark Activer/Désactiver le signet - Ctrl+M Ctrl+M - Meta+M Meta+M @@ -298,42 +251,34 @@ Déplacer vers le bas - Previous Bookmark Signet précédent - Ctrl+, Ctrl+, - Meta+, Meta+, - Next Bookmark Signet suivant - Ctrl+. Ctrl+. - Meta+. Meta+. - Previous Bookmark in Document Signet précédent dans le document - Next Bookmark in Document Signet suivant dans le document @@ -349,12 +294,10 @@ BreakByFunctionDialog - Set Breakpoint at Function Placer un point d'arrêt à la fonction - Function to break on: Fonction à interrompre : @@ -362,12 +305,10 @@ BreakCondition - Condition: Condition : - Ignore count: Nombre de passages à ignorer : @@ -402,17 +343,14 @@ Créer - Build Compilation - New configuration Nouvelle configuration - New Configuration Name: Nom de la nouvelle configuration : @@ -420,7 +358,6 @@ CMakeProjectManager::Internal::CMakeBuildSettingsWidget - &Change &Modifier @@ -428,7 +365,6 @@ CMakeProjectManager::Internal::CMakeOpenProjectWizard - CMake Wizard Assistant CMake @@ -436,7 +372,6 @@ CMakeProjectManager::Internal::CMakeRunConfigurationWidget - Arguments: Arguments : @@ -445,37 +380,30 @@ Sélectionner le répertoire de travail - Select Working Directory Sélectionner le répertoire de travail - Reset to default Restaurer les paramètres par défaut - Working Directory: Répertoire de travail : - Run Environment Environnement d'éxecution - Clean Environment Environnement de nettoyage - System Environment Environnement système - Build Environment Environnement de compilation @@ -488,7 +416,6 @@ Environnement - Base environment for this runconfiguration: Environnement de base pour cette configuration d'éxecution : @@ -496,14 +423,12 @@ CMakeProjectManager::Internal::InSourceBuildPage - 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 a détecté une <b>compilation dans les sources de %1</b> qui empêche les shadow builds. Qt Creator ne permettra pas de changer le répertoire de compilation. Si vous voulez effectuer un "shadow build", nettoyez le répertoire source et rouvrez le projet. - Build Location - Emplacement de compilation + Emplacement de compilation Qt Creator has detected an in-source-build 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. @@ -513,79 +438,63 @@ CMakeProjectManager::Internal::CMakeRunPage - Please specify the path to the cmake executable. No cmake executable was found in the path. Veuillez spécifier l'emplacement de l'exécutable cmake. Aucun exécutable cmake n'a été trouvé dans la liste de répertoires standards. - The cmake executable (%1) does not exist. L'exécutable cmake (%1) n'existe pas. - The path %1 is not a executable. %1 n'est pas le chemin d'un exécutable. - The path %1 is not a valid cmake. %1 n'est pas un cmake valide. - - Run CMake Exécuter CMake - Arguments Arguments - The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly toolchain -> chaine de compilation ? terminer ou terminez ? Le répertoire %1 contient déjà un fichier cbp qui est assez récent. Vous pouvez passer des arguments spéciaux, ou changer la chaine de compilation utilisée ici et réexécuter cmake. Vous pouvez aussi terminer l'assistant directement - 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. Le répertoire %1 ne contient pas de fichier cbp. Qt Creator a besoin de créer ce fichier en exécutant cmake. Certains projets nécessitent des arguments de ligne de commande pour le premier appel à 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. Le répertoire %1 contient un fichier cbp obsolète. Qt Creator a besoin de mettre à jour ce fichier en exécutant cmake. Si vous voulez passer des arguments de ligne de commande supplémentaires, ajoutez les ci dessous. Notez que cmake conserve les arguments passés lors des exécutions précédentes. - 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. Le répertoire %1, sélectionné dans une des configurations de compilation, ne contient pas de fichier cbp. Qt Creator a besoin de mettre à jour ce fichier en exécutant cmake. Certains projets nécessitent des arguments de ligne de commande pour le premier appel à cmake. Notez que cmake conserve les arguments passés lors des exécutions précédentes. - Qt Creator needs to run cmake in the new build directory. Some projects require command line arguments to the initial cmake call. Qt Creator doit exécuter cmake dans le nouveau répertoire de compilation. Certains projets nécessitent des arguments de ligne de commande pour le premier appel à cmake. - NMake Generator Générateur NMake - NMake Generator (%1) Générateur NMake (%1) - MinGW Generator Générateur MinGW - No valid cmake executable specified. L'exécutable cmake spécifié est invalide. @@ -593,12 +502,10 @@ CMakeProjectManager::Internal::CMakeSettingsPage - CMake CMake - Executable: Exécutable : @@ -610,53 +517,44 @@ CMakeProjectManager::Internal::MakeStepConfigWidget - Additional arguments: Arguments supplémentaires : - Targets: Cibles : - Make CMakeProjectManager::MakeStepConfigWidget display name. Make - <b>Make:</b> %1 %2 <b>Make : </b>%1 %2 - <b>Unknown Toolchain</b> - <>Chaîne de compilation inconnue</b> + <b>Chaîne de compilation inconnue</b> CMakeProjectManager::Internal::ShadowBuildPage - Please enter the directory in which you want to build your project. Veuillez spécifier le répertoire où vous voulez compiler votre projet. - 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. Veuillez spécifier le répertoire où vous voulez compiler votre projet. Qt Creator recommande de de pas utiliser le répertoire source pour la compilation. Cela garantit que le répertoire source reste propre et permet des compilations multiples avec différents paramètres. - Build directory: Répertoire de compilation : - Build Location - Emplacement de compilation + Emplacement de compilation @@ -669,12 +567,10 @@ CPlusPlus::OverviewModel - <Select Symbol> <Selectionner un symbole> - <No Symbols> <Aucun symbole> @@ -682,7 +578,6 @@ CdbOptionsPageWidget - These options take effect at the next start of Qt Creator. Ces options prendront effet au prochain démarrage de Qt Creator. @@ -692,38 +587,31 @@ Cdb - Path: Chemin : - Debugger Paths Chemins du débogueur - Symbol paths: Chemins des symboles : - Source paths: Chemins des sources : - <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>Spécifiez le chemin vers l'<a href="%1">outil de débogage Windows</a> (%2) ici.</p><p><b>Note:</b> Il est nécessaire de redémarrer Qt Creator pour que ces changements prennent effet.</p></p></body></html> - 64-bit version version 64-bits - 32-bit version version 32-bits @@ -736,21 +624,22 @@ Chargement verbeux des symboles - CDB Placeholder - + CDB - Other Options - Autres options + Autres options - Verbose symbol loading Chargement verbeux des symboles + + fast loading of debugging helpers + chargement rapide des assistants de débogage + ChangeSelectionDialog @@ -759,19 +648,16 @@ Adresse du depôt : - Select Sélectionner - Change: Modification : - Repository location: - Emplacement du dépôt : + Emplacement du dépôt : @@ -781,40 +667,33 @@ &CodePaster - &Code Pasting &Collage de code - Paste Snippet... snippet is quite common in French for programming Coller le snippet... - Alt+C,Alt+P Alt+C,Alt+P - Paste Clipboard... - Coller le contenu du presse-papier… + Coller le contenu du presse-papier… - Fetch Snippet... Récuperer le snippet... - Alt+C,Alt+F Alt+C,Alt+F - Empty snippet received for "%1". - Snippet vide recu pour "%1". + Fragment vide recu pour "%1". This protocol supports no listing @@ -850,28 +729,23 @@ CodePaster::PasteSelectDialog - Paste: quelque chose de plus français pour la référence de paste? Collage : - Protocol: Protocole : - Refresh Rafraîchir - Waiting for items En attente des éléments - This protocol does not support listing Ce protocole ne prend en charge le listage @@ -879,7 +753,6 @@ CodePaster::SettingsPage - General Général @@ -888,7 +761,6 @@ Serveur CodePaster : - Username: Nom d'utilisateur : @@ -921,17 +793,14 @@ Collage de code - Display Output pane after sending a post Afficher le résultat après publication - Copy-paste URL to clipboard Copier l'URL dans le presse papier - Default protocol: Protocole par défaut : @@ -943,17 +812,14 @@ Interface utilisateur - Checking this will populate the source file view automatically but might slow down debugger startup considerably. Cocher cette case peuplera automatiquement la vue du fichier source mais risque de ralentir considérablement le lancement du débogueur. - Populate source file view automatically Peupler la vue du fichier source automatiquement - Use alternating row colors in debug views Alterner la couleur de ligne dans le débogueur visuel @@ -981,12 +847,10 @@ Activer le débogage inversé - Maximal stack depth: Profondeur maximale de la pile : - <unlimited> <illimitée> @@ -996,39 +860,32 @@ Afficher un message à la réception d'un signal - Use tooltips in main editor while debugging Utiliser les info-bulles dans l'éditeur principal lors du débogage - Language - Langage + Langage - Changes the debugger language according to the currently opened file. - Changer le langage du débogueur en fonction du fichier ouvert. + Changer le langage du débogueur en fonction du fichier ouvert. - Change debugger language automatically - Changer le langage du débogueur automatiquement + Changer le langage du débogueur automatiquement - GUI Behavior - Interface Utilisateur + Comportement de l'Interface Utilisateur - Register Qt Creator for debugging crashed applications. - + Enregistrer Qt Creator pour déboguer les applications crashées. - Use Qt Creator for post-mortem debugging - + Utiliser Qt Creator pour le débogage post-mortem @@ -1046,67 +903,55 @@ Sensible à la &casse - Automatically insert (, ) and ; when appropriate. Insérer automatiquement (, ) et; si approprié. - &Automatically insert brackets Insertion &automatique des parenthèses - Insert the common prefix of available completion items. Insérer le préfixe commun des élements disponibles. - Autocomplete common &prefix Autocomplétion du &préfixe commun - Behavior Comportement - &Case-sensitivity: Sensibilité à la &casse : - Full - Totale + Totale - None - Aucune + Aucune - First Letter - Première lettre + Première lettre - Insert &space after function name - Insérer un e&space après le nom de fonction + Insérer un e&space après le nom de fonction ContentWindow - Open Link Ouvrir le lien - Open Link as New Page - Ouvrir le lien en tant que nouvelle page + Ouvrir le lien en tant que nouvelle page Open Link in New Tab @@ -1116,63 +961,48 @@ Core::BaseFileWizard - Unable to create the directory %1. Impossible de créer le répertoire %1. - Unable to open %1 for writing: %2 Impossible d'ouvrir %1 pour écrire : %2 - Error while writing to %1: %2 Erreur pendant l'écriture de %1 : %2 - - - - File Generation Failure Échec de la génération du fichier - - Existing files Fichiers existants - Failed to open an editor for '%1'. Échec de l'ouverture d'un éditeur pour '%1'. - [read only] [lecture seule] - [directory] [répertoire] - [symbolic link] [lien symbolique] - The project directory %1 contains files which cannot be overwritten: %2. Le répertoire du projet %1 contient des fichiers qui ne peuvent être écrasés : %2. - The following files already exist in the directory %1: %2. Would you like to overwrite them? @@ -1184,26 +1014,18 @@ Voulez vous les écraser ? Core::EditorManager - - Revert to Saved Revenir à la version sauvegardée - - - Close Fermer - Close All Fermer Tout - - Close Others Fermer les autres éditeurs @@ -1216,124 +1038,98 @@ Voulez vous les écraser ? Document Précédent dans l'Historique - Next Open Document in History Document ouvert suivant dans l'historique - Previous Open Document in History Document ouvert précédent dans l'historique - - Go Back Précédent - - Go Forward Suivant - Open in External Editor Ouvrir dans l'éditeur externe - Revert File to Saved Restaurer le fichier sauvegardé - Ctrl+W Ctrl+W - 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 - Meta+E Meta+E - Ctrl+E Ctrl+E - Split Scinder - Split Side by Side Scinder verticalement - Remove Current Split Fermer la Vue Courante - Remove All Splits Fermer toutes les vues - Save %1 &As... Enregistrer %1 &sous... @@ -1342,58 +1138,46 @@ Voulez vous les écraser ? Changer de vue - %1,2 %1,2 - %1,3 %1,3 - %1,0 %1,0 - %1,1 %1,1 - Go to Next Split - Aller à la vue suivante + Aller à la vue suivante - %1,o %1,o - &Advanced A&vancé - Alt+V,Alt+I nav.net - All Files (*) Tout les fichiers (*) - - Opening File Ouverture du Fichier - Cannot open file %1! Impossible d'ouvrir le fichier %1! @@ -1402,49 +1186,38 @@ Voulez vous les écraser ? Ouvrir le Fichier - File is Read Only Le Fichier est en Lecture Seule - The file %1 is read only. Le fichier %1 est en lecture seule. - Open with VCS (%1) Ouvrir avec VCS (%1) - - Make writable Rendre inscriptible - Save as ... Enregistrer sous... - - Failed! Échec ! - Could not open the file for editing with SCC. Impossible d'ouvrir le fichier pour édition avec SCC. - Could not set permissions to writable. Impossible d'attribuer les droits en écriture. - <b>Warning:</b> You are changing a read-only file. <b>Attention:</b> Vous apportez des modifications à un fichier en lecture seule. @@ -1453,42 +1226,34 @@ Voulez vous les écraser ? Enregistrer %1 sous... - &Save %1 Enregi&strer %1 - Revert %1 to Saved Restaurer %1 à la version sauvegardée - Close %1 Fermer %1 - Close All Except %1 Fermer tout sauf %1 - You will lose your current changes if you proceed reverting %1. Vous perdrez tous les changements en cours si vous restaurez %1. - Proceed Continuer - Cancel Annuler - <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>La variable</th><th>se développe en </th></tr><tr><td>%f</td><td>nom de fichier</td></tr><tr><td>%l</td><td>numéro de ligne courante</td></tr><tr><td>%c</td><td>numéro de colonne courante</td></tr><tr><td>%x</td><td>abscisse de l'éditeur à l'écran</td></tr><tr><td>%y</td><td>ordonnée de l'éditeur à l'écran</td></tr><tr><td>%w</td><td>largeur de l'éditeur en pixels</td></tr><tr><td>%h</td><td>hauteur de l'éditeur en pixels</td></tr><tr><td>%W</td><td>largeur de l'éditeur en caractères</td></tr><tr><td>%H</td><td>hauteur de l'éditeur en caractères</td></tr><tr><td>%%</td><td>%</td></tr></table> @@ -1504,32 +1269,26 @@ Voulez vous les écraser ? Impossible de sauvegarder les modifications dans '%1'. Voulez vous continuer et perdre vos modifications ? - Cannot save file Impossible d'enregistrer le fichier - Cannot save changes to '%1'. Do you want to continue and lose your changes? Impossible d'enregistrer les modifications dans '%1'. Voulez vous continuer et perdre vos modifications ? - Overwrite? Écraser ? - An item named '%1' already exists at this location. Do you want to overwrite it? Un élément nommé '%1' existe déjà. Voulez-vous l'écraser ? - Save File As Enregistrer sous - Open File Ouvrir le Fichier @@ -1537,7 +1296,6 @@ Voulez vous les écraser ? Core::Internal::ComboBox - Activate %1 Activer %1 @@ -1545,7 +1303,6 @@ Voulez vous les écraser ? Core::Internal::EditMode - Edit Éditer @@ -1553,72 +1310,58 @@ Voulez vous les écraser ? Core::Internal::EditorSplitter - Split Left/Right Scinder gauche/droite - Split Top/Bottom Scinder haut/bas - Unsplit Fermer la vue courante - Default Splitter Layout Arrangement par défaut - Save Current as Default Sauvegarder comme arrangement par défaut - Restore Default Layout Restaurer l'arrangement par défaut - Previous Document Document précédent - Alt+Left Alt+Gauche - Next Document Document suivant - Alt+Right Alt+Droite - Previous Group Groupe précédent - Next Group Groupe suivant - Move Document to Previous Group Déplacer le document vers le groupe précédent - Move Document to Next Group Déplacer le document vers le groupe suivant @@ -1634,13 +1377,10 @@ Voulez vous les écraser ? Suivant - - Placeholder Paramètre fictif - Close Fermer @@ -1668,61 +1408,50 @@ Voulez vous les écraser ? Couleur de l'&interface utilisateur : - Reset to default Restaurer les paramètres par défaut - R R - Terminal: Terminal : - External editor: Éditeur externe : - ? ? - General Général - <System Language> - <Langue Système> + <Langue du système> - Restart required - Redémarrage nécessaire + Redémarrage nécessaire - The language change will take effect after a restart of Qt Creator. - Le changement de langue prendra effet au prochain démarrage de Qt Creator. + Le changement de langue prendra effet au prochain démarrage de Qt Creator. Environment Environnement - Variables Variables - When files are externally modified: Quand des fichiers ont été modifiés en dehors de Qt Creator : @@ -1739,47 +1468,38 @@ Voulez vous les écraser ? Ignorer les modifications - User Interface Interface utilisateur - Color: Couleur : - Default file encoding: Encodage de fichier par défaut : - Language: Langue : - System Système - External file browser: - Navigateur de fichiers externe : + Navigateur de fichiers externe : - Always Ask - Toujours demander quoi faire + Demander quoi faire - Reload All Unchanged Editors - Recharger tous les éditeurs inchangés + Recharger tous les éditeurs inchangés - Ignore Modifications Ignorer les modifications @@ -1787,7 +1507,6 @@ Voulez vous les écraser ? Core::Internal::MainWindow - Qt Creator Qt Creator @@ -1796,27 +1515,22 @@ Voulez vous les écraser ? Sortie - &File &Fichier - &Edit &Édition - &Tools O&utils - &Window Fe&nêtre - &Help &Aide @@ -1833,12 +1547,10 @@ Voulez vous les écraser ? Ou&vrir avec... - &New File or Project... &Nouveau fichier ou projet... - &Open File or Project... &Ouvrir un fichier ou projet... @@ -1851,150 +1563,117 @@ Voulez vous les écraser ? Fichiers récents - Open File &With... Ouvrir le fichier &avec... - Recent &Files &Fichiers récents - - &Save &Enregistrer - - Save &As... Enregistrer &sous... - - Ctrl+Shift+S Ctrl+Shift+S - Save A&ll &Tout enregistrer - &Print... Im&primer... - E&xit &Quitter - Ctrl+Q Ctrl+Q - - &Undo Annu&ler - - &Redo Re&faire - Cu&t Co&uper - &Copy Cop&ier - &Paste C&oller - &Select All Tout &sélectionner - &Go To Line... &Aller à la ligne... - Ctrl+L Ctrl+L - &Options... &Options... - Minimize Minimiser - Zoom Zoom - Show Sidebar Afficher la barre latérale - Full Screen Plein écran - &Views &Vues - About &Qt Creator À propos de &Qt Creator - About &Qt Creator... À propos de &Qt Creator... - About &Plugins... À propos des &Plugins... - New Title of dialog Nouveau - Open Project - Ouvrir le projet + Ouvrir le projet New... @@ -2002,7 +1681,6 @@ Voulez vous les écraser ? Nouveau... - Settings... Paramètres... @@ -2014,7 +1692,6 @@ Voulez vous les écraser ? Général - General Messages Messages généraux @@ -2022,7 +1699,6 @@ Voulez vous les écraser ? Core::Internal::NavComboBox - Activate %1 Activer %1 @@ -2030,12 +1706,10 @@ Voulez vous les écraser ? Core::Internal::NavigationSubWidget - Split Scinder - Close Fermer @@ -2043,17 +1717,14 @@ Voulez vous les écraser ? Core::Internal::NavigationWidget - Hide Sidebar Masquer la barre latérale - Show Sidebar Afficher la barre latérale - Activate %1 Pane Activer le panneau %1 @@ -2061,7 +1732,6 @@ Voulez vous les écraser ? Core::Internal::NewDialog - New Project Nouveau projet @@ -2070,22 +1740,18 @@ Voulez vous les écraser ? 1 - Choose a template: Choisir un modèle : - &Choose... &Choisir… - Projects Projets - Files and Classes Fichiers et classes @@ -2093,34 +1759,27 @@ Voulez vous les écraser ? Core::Internal::OpenEditorsWidget - - Open Documents NB:il ne s'agit pas ici d'une action mais du panneau affichant les documents ouverts Documents ouverts - Close %1 Fermer %1 - Close Editor Fermer l'éditeur - Close All Except %1 Fermer tout sauf %1 - Close Other Editors Fermer les autres éditeurs - Close All Editors Fermer tous les éditeurs @@ -2128,8 +1787,6 @@ Voulez vous les écraser ? Core::Internal::OpenEditorsWindow - - * * @@ -2137,7 +1794,6 @@ Voulez vous les écraser ? Core::Internal::OpenWithDialog - Open file '%1' with: Ouvrir le fichier %1 avec : @@ -2145,38 +1801,30 @@ Voulez vous les écraser ? Core::Internal::OutputPaneManager - Output Sortie - Clear Effacer - Next Item Élement suivant - Previous Item Élement précédent - - Maximize Output Pane Maximiser le paneau de sortie - Output &Panes &Paneaux de sortie - Minimize Output Pane Minimiser le paneau de sortie @@ -2184,38 +1832,31 @@ Voulez vous les écraser ? Core::Internal::PluginDialog - Details Détails - Error Details Détails de l'erreur - Close Fermer - Restart required. Redémarrage nécessaire. - Installed Plugins Plugins installés - Plugin Details of %1 Détail sur le plugin %1 ? Détails du plugin %1 - Plugin Errors of %1 Erreurs du plugin %1 @@ -2223,7 +1864,6 @@ Voulez vous les écraser ? Core::Internal::ProgressView - Processes Processus @@ -2235,22 +1875,18 @@ Voulez vous les écraser ? Ne pas enregistrer - Do not Save Ne pas enregistrer - Save All Tout enregistrer - Save Enregistrer - Save Selected Enregistrer la sélection @@ -2258,7 +1894,6 @@ Voulez vous les écraser ? Core::Internal::ShortcutSettings - Keyboard Clavier @@ -2267,33 +1902,26 @@ Voulez vous les écraser ? Environnement - Keyboard Shortcuts Rarccourcis clavier - Key sequence: Combinaison de touches : - Shortcut Raccourci - Import Keyboard Mapping Scheme Importer le mapping clavier - - Keyboard Mapping Scheme (*.kms) Schéma de mapping clavier (*.kms) - Export Keyboard Mapping Scheme Exporter le mapping clavier @@ -2301,12 +1929,10 @@ Voulez vous les écraser ? Core::Internal::SideBarWidget - Split Scinder - Close Fermer @@ -2314,23 +1940,19 @@ Voulez vous les écraser ? Core::Internal::VersionDialog - About Qt Creator À propos de Qt Creator - (%1) (%1) - From revision %1<br/> This gets conditionally inserted as argument %8 into the description string. Depuis la révision %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>Basé sur Qt %2 (%3 bit)<br/><br/>Compilé le %4 à %5<br /><br/>%9<br/>Copyright 2008-%6 %7. Tous droits réservés.<br/><br/>Ce programme est fournit « EN L'ÉTAT », SANS GARANTIE D'AUCUNE SORTE, INCLUANT, SANS S'Y LIMITER, LES GARANTIES D'ABSENCE DE DÉFAUT, DE QUALITÉ MARCHANDE, D'ADÉQUATION À UN USAGE PARTICULIER.<br/> @@ -2487,7 +2109,6 @@ Voulez vous les écraser ? Basculer vers le mode %1 - Switch to <b>%1</b> mode Basculer vers le mode <b>%1</b> @@ -2495,14 +2116,12 @@ Voulez vous les écraser ? Core::ScriptManager - Exception at line %1: %2 %3 Exception à la ligne %1 : %2 %3 - Unknown error Erreur inconnue @@ -2510,7 +2129,6 @@ Voulez vous les écraser ? Core::StandardFileWizard - New %1 Nouveau %1 @@ -2518,17 +2136,14 @@ Voulez vous les écraser ? Utils::CheckableMessageBox - Dialog Boîte de dialogue - TextLabel Label de texte - CheckBox Case à cocher @@ -2536,17 +2151,14 @@ Voulez vous les écraser ? Utils::ClassNameValidatingLineEdit - The class name must not contain namespace delimiters. Le nom de classe ne doit pas contenir de délimiteur d'espace de nommage. - Please enter a class name. Veuillez entrer un nom de classe. - The class name contains invalid characters. Le nom de classe contient des caractères invalides. @@ -2554,62 +2166,50 @@ Voulez vous les écraser ? Utils::ConsoleProcess - Cannot set up communication channel: %1 Impossible d'établir le canal de communication : %1 - Press <RETURN> to close this window... Appuyez sur <ENTRÉE> pour fermer cette fenêtre... - Cannot create temporary file: %1 Impossible de créer un fichier temporaire : %1 - Cannot create temporary directory '%1': %2 Impossible de créer un dossier temporaire '%1' : %2 - Unexpected output from helper program. Sortie imprévue du logiciel externe. - Cannot change to working directory '%1': %2 Impossible de changer le répertoire de travail '%1' : %2 - Cannot execute '%1': %2 Impossible d'éxecuter '%1': %2 - Cannot start the terminal emulator '%1'. Impossible de démarrer l'émulateur de terminal '%1'. - Cannot create socket '%1': %2 Impossible de créer le socket '%1': %2 - The process '%1' could not be started: %2 Le processus '%1' ne peut pas être démarré : %2 - Cannot obtain a handle to the inferior: %1 Impossible d'obtenir le descripteur du processus : %1 - Cannot obtain exit status from inferior: %1 Impossible d'obtenir la valeur de retour du processus : %1 @@ -2633,27 +2233,22 @@ Voulez vous les écraser ? Le nom ne peut pas correspondre à un périphérique MS Windows. (%1). - Name is empty. Le nom de fichier est vide. - Name contains white space. - Le nom contient des espaces. + Le nom contient des espaces. - Invalid character '%1'. - Caractère invalide ' %1'. + Caractère invalide '%1'. - Invalid characters '%1'. - Caractères invalides ' %1'. + Caractères invalides '%1'. - Name matches MS Windows device. (%1). Le nom correspond à un périphérique MS Windows. (%1). @@ -2661,7 +2256,6 @@ Voulez vous les écraser ? Utils::FileSearch - %1: canceled. %n occurrences found in %2 files. %1 : annulé. %n entrée trouvée dans %2 fichiers. @@ -2669,7 +2263,6 @@ Voulez vous les écraser ? - %1: %n occurrences found in %2 files. %1 : %n occurrence trouvée dans %2 fichiers. @@ -2677,7 +2270,6 @@ Voulez vous les écraser ? - %1: %n occurrences found in %2 of %3 files. %1 : %n occurence trouvé dans %2 de %3 fichiers. @@ -2716,27 +2308,22 @@ Voulez vous les écraser ? Chemin : - Invalid base class name Nom de la classe parente invalide - Invalid header file name: '%1' Nom du fichier d'en-tête invalide : '%1' - Invalid source file name: '%1' Nom du fichier source invalide : '%1' - Invalid form file name: '%1' Nom du fichier d'interface invalide : '%1' - Inherits QObject hérite de QObject @@ -2745,58 +2332,47 @@ Voulez vous les écraser ? Information de type : - None Aucune - Inherits QWidget Hérite de QWidget - &Class name: Nom de la &classe : - &Base class: Classe &parent : - &Type information: Information de &type : - Based on QSharedData il s'agit de l'information - Basée sur QSharedData + Basée sur QSharedData - &Header file: Fichier d'&en-tête : - &Source file: Fichier &source : - &Generate form: &Générer l'interface graphique : - &Form file: &Fichier d'interface : - &Path: Che&min : @@ -2804,12 +2380,10 @@ Voulez vous les écraser ? Utils::PathChooser - Choose... Choisir... - Browse... Parcourir... @@ -2822,37 +2396,30 @@ Voulez vous les écraser ? Sélectionner un fichier - Choose Directory Sélectionner un répertoire - Choose File Sélectionner un fichier - The path must not be empty. Le chemin ne peut pas être vide. - The path '%1' does not exist. Le chemin '%1' n'existe pas. - The path '%1' is not a directory. '%1' n'est pas le chemin d'un répertoire. - The path '%1' is not a file. %1 n'est pas le chemin d'un fichier. - Path: Chemin : @@ -2860,17 +2427,14 @@ Voulez vous les écraser ? Utils::PathListEditor - Insert... Insérer... - Add... Ajouter... - Delete Line Supprimer la ligne @@ -2879,12 +2443,10 @@ Voulez vous les écraser ? Supprimer la ligne - Clear Effacer tout - From "%1" Depuis "%1" @@ -2892,39 +2454,32 @@ Voulez vous les écraser ? Utils::ProjectIntroPage - Introduction and project location Introduction et emplacement du projet - Name: Nom : - Create in: Créer dans : - <Enter_Name> <Entrer_Nom> - The project already exists. Le projet existe déjà. - A file with that name already exists. Un fichier existe déjà avec ce nom. - Use as default project location - Utiliser comme emplacement par défault pour le projet + Utiliser comme emplacement par défaut pour le projet @@ -2934,7 +2489,6 @@ Voulez vous les écraser ? Le nom ne peut pas contenir le caractère '.'. - Invalid character '.'. Caractère invalide '.'. @@ -2942,17 +2496,14 @@ Voulez vous les écraser ? Utils::SubmitEditorWidget - Subversion Submit Submit Subversion - Des&cription Des&cription - F&iles F&ichiers @@ -2964,17 +2515,14 @@ Voulez vous les écraser ? Choisir l'emplacement - Name: Nom : - Path: Chemin : - Choose the Location Choisir l'emplacement @@ -2982,40 +2530,45 @@ Voulez vous les écraser ? Utils::reloadPrompt - File Changed Fichier modifié - + The unsaved file <i>%1</i> has been changed outside Qt Creator. Do you want to reload it and discard your changes? + Le fichier <i>%1</i> n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements ? + + + The file <i>%1</i> has changed outside Qt Creator. Do you want to reload it? + Le fichier <i>%1</i> a été modifié en dehors de Qt Creator. Voulez-vous le charger à nouveau ? + + The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? - Le fichier %1 n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements ? + Le fichier %1 n'est pas enregistré et a été modifé en dehors de Qt Creator. Voulez-vous le recharger et ignorer vos changements ? - The file %1 has changed outside Qt Creator. Do you want to reload it? - Le fichier %1 a été modifié en dehors de Qt Creator. Voulez-vous le charger à nouveau ? + Le fichier %1 a été modifié en dehors de Qt Creator. Voulez-vous le charger à nouveau ? CppEditor::Internal::CPPEditor - Sort alphabetically + Trier par ordre alphabétique + + + Sort Alphabetically Trier par ordre alphabétique - This change cannot be undone. Ce changement ne peut être annulé. - Yes, I know what I am doing. Simplifier les déclarations. - Unused variable Variable non utilisée @@ -3031,17 +2584,14 @@ Voulez vous les écraser ? Entrer le nom de la classe - Enter Class Name Entrer le nom de la classe - The header and source file names will be derived from the class name Le nom du fichier source et du fichier d'en-tête seront dérivés du nom de la classe - Configure... Configurer... @@ -3049,7 +2599,6 @@ Voulez vous les écraser ? CppEditor::Internal::CppClassWizard - Error while generating file contents. Erreur a la génération du contenu du fichier. @@ -3057,12 +2606,10 @@ Voulez vous les écraser ? CppEditor::Internal::CppClassWizardDialog - C++ Class Wizard Assistant de création de classe C++ - Details Détails @@ -3070,9 +2617,8 @@ Voulez vous les écraser ? CppEditor::Internal::CppHoverHandler - Unfiltered - Sans filtre + Sans filtre @@ -3086,7 +2632,6 @@ Voulez vous les écraser ? Créer un fichier header C++. - C++ Header File Fichier header C++ @@ -3095,12 +2640,10 @@ Voulez vous les écraser ? Créer un fichier source C++. - C++ Source File Fichier source C++ - C++ Class Classe C++ @@ -3117,47 +2660,38 @@ Voulez vous les écraser ? Changer entre la définition et déclaration de la méthode - Creates a C++ header and a source file for a new class that you can add to a C++ project. Crée les fichier d'en-tête et fichier source C++ pour une nouvelle classe que vous pouvez ajouter a votre projet C++. - Creates a C++ source file that you can add to a C++ project. Crée un fichier source C++ que vous pouvez ajouter a votre projet C++. - Creates a C++ header file that you can add to a C++ project. Crée un fichier d'en-tête C++ que vous pouvez ajouter a votre projet C++. - Follow Symbol Under Cursor Suivre le symbole sous le curseur - Switch Between Method Declaration/Definition Changer entre la définition et déclaration de la méthode - Find Usages Trouver les utilisations - Ctrl+Shift+U Ctrl+Shift+U - Rename Symbol Under Cursor Renommer le symbole sous le curseur - Update Code Model Mettre à jour le modèle de code @@ -3177,17 +2711,14 @@ Voulez vous les écraser ? Convention de nommage des fichiers - Header suffix: Suffixe des fichier d'en-tête : - Source suffix: Suffixe des fichiers source : - Lower case file names Nom de fichiers en minuscule @@ -3196,7 +2727,6 @@ Voulez vous les écraser ? Modèle de licence : - License template: Modèle de licence : @@ -3204,7 +2734,6 @@ Voulez vous les écraser ? CppPreprocessor - %1: No such file or directory %1 : aucun fichier ou répertoire de ce type @@ -3212,16 +2741,14 @@ Voulez vous les écraser ? CppTools::Internal::CppModelManager - Scanning Balayage ? (Numérisation ça fait franchement scanner) Analyse - Parsing - laisser Parsing? - Décomposition analytique + laisser Parsing? ou analyse syntaxique + Analyse syntaxique Indexing @@ -3235,12 +2762,10 @@ Voulez vous les écraser ? Conventions de nommage des fichiers - File Naming Nommage de fichier - C++ C++ @@ -3248,7 +2773,6 @@ Voulez vous les écraser ? CppTools::Internal::CompletionSettingsPage - Completion Complétion @@ -3260,7 +2784,6 @@ Voulez vous les écraser ? CppTools::Internal::CppClassesFilter - Classes Classes @@ -3268,7 +2791,6 @@ Voulez vous les écraser ? CppTools::Internal::CppCurrentDocumentFilter - Methods in current Document Méthodes du document courant @@ -3276,7 +2798,6 @@ Voulez vous les écraser ? CppTools::Internal::CppFileSettingsWidget - /************************************************************************** ** Qt Creator license header template ** Special keywords: %USER% %DATE% %YEAR% @@ -3292,12 +2813,10 @@ Voulez vous les écraser ? **************************************************************************/ - Edit... Modifier... - Choose Location for New License Template File Choisir l'emplacement pour le nouveau modèle de license @@ -3310,12 +2829,10 @@ Voulez vous les écraser ? Choisir un nouveau fichier pour le modèle de license - Template write error Erreur d'écriture du modèle - Cannot write to %1: %2 Impossible d'écrire %1 : %2 @@ -3323,7 +2840,6 @@ Voulez vous les écraser ? CppTools::Internal::CppFunctionsFilter - Methods Méthodes @@ -3331,7 +2847,6 @@ Voulez vous les écraser ? CppTools::Internal::CppLocatorFilter - Classes and Methods Classes et méthodes @@ -3339,12 +2854,10 @@ Voulez vous les écraser ? CppTools::Internal::CppToolsPlugin - &C++ &C++ - Switch Header/Source Basculer entre en-tête/source @@ -3374,7 +2887,6 @@ Voulez vous les écraser ? CppTools::Internal::FunctionArgumentWidget - %1 of %2 %1 de %2 @@ -3386,17 +2898,14 @@ Voulez vous les écraser ? Commun - General Général - Debugger Débogueur - <Encoding error> <Erreur d'encodage> @@ -3408,12 +2917,10 @@ Voulez vous les écraser ? Une version trop ancienne de la bibliothèque d'aide au débogage a été trouvé(%1); La version %2 est nécessaire. - Found an outdated version of the debugging helper library (%1); version %2 is required. Une version obsolète de la bibliothèque d'assistance au débogage a été trouvée (%1); version %2 requise. - %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 %n type connu, version de Qt : %1, espace de noms Qt : %2, version du collecteur : %3 @@ -3421,7 +2928,6 @@ Voulez vous les écraser ? - <none> <aucun> @@ -3429,12 +2935,10 @@ Voulez vous les écraser ? Debugger::Internal::AttachCoreDialog - Select Executable Selectionner l'exécutable - Select Core File Sélectionner le fichier core @@ -3442,22 +2946,18 @@ Voulez vous les écraser ? Debugger::Internal::AttachExternalDialog - Process ID ID du processus - Name Nom - State État - Refresh Rafraîchir @@ -3465,12 +2965,10 @@ Voulez vous les écraser ? Debugger::Internal::AddressDialog - Select start address Sélectionner l'adresse de départ - Enter an address: Entrer une adresse : @@ -3485,128 +2983,96 @@ Voulez vous les écraser ? Debugger::Internal::BreakHandler - - Marker File: Alternative "Fichier ayant le marqueur" Fichier marqué : - - Marker Line: idem Ligne marquée : - - Breakpoint Number: Numéro du point d'arrêt : - - Breakpoint Address: Adresse du point d'arrêt : - Property Propriété - Requested Demandé - Obtained Obtenu - Internal Number: Numéro interne : - - File Name: Nom du fichier : - - Function Name: Nom de la fonction : - - Line Number: Numéro de ligne : - Corrected Line Number: Numéro de la ligne corrigée : - - Condition: Condition : - - Ignore Count: Nombre de passages à ignorer : - Number Numéro - Function Fonction - File Fichier - Line Ligne - Condition Condition - Ignore Ignorer - Address Adresse - Breakpoint will only be hit if this condition is met. Le point d'arrêt ne sera respecté que si la condition est remplie. - Breakpoint will only be hit after being ignored so many times. Le point d'arrêt ne sera respecté qu'après avoir été ignoré autant de fois. @@ -3614,7 +3080,6 @@ Voulez vous les écraser ? Debugger::Internal::BreakWindow - Breakpoints Points d'arrêt @@ -3667,97 +3132,78 @@ Voulez vous les écraser ? Utiliser le chemin complet - Delete Breakpoint Supprimer le point d'arrêt - Delete All Breakpoints Supprimer tous les points d'arrêt - Delete Breakpoints of "%1" Supprimer les points d'arrêt de "%1" - Delete Breakpoints of File Supprimer les points d'arrêt du fichier - Adjust Column Widths to Contents Ajuster la largeur des colonnes au contenu - Always Adjust Column Widths to Contents Toujours ajuster la largeur des colonnes au contenu - Edit Condition... Modifier la condition... - Synchronize Breakpoints Synchroniser les points d'arrêt - Disable Selected Breakpoints Supprimer les points d'arrêt du fichier - Enable Selected Breakpoints Activer les points d'arrêt sélectionnés - Disable Breakpoint Désactiver le point d'arrêt - Enable Breakpoint Activer le point d'arrêt - Use Short Path Utiliser le chemin court - Use Full Path Utiliser le chemin complet - Set Breakpoint at Function... Placer un point d'arrêt à la fonction... - Set Breakpoint at Function "main" Placer un point d'arrêt à la fonction "main" - Set Breakpoint at "throw" - Placer un point d'arrêt au "throw" + Placer un point d'arrêt au "throw" - Set Breakpoint at "catch" - Placer un point d'arrêt au "catch" + Placer un point d'arrêt au "catch" - Conditions on Breakpoint %1 Condition au point d'arrêt %1 @@ -3769,7 +3215,6 @@ Voulez vous les écraser ? Impossible de charger la bibliothèque de débogage '%1': %2 - The function "%1()" failed: %2 Function call failed La fonction "%1()" a échoué : %2 @@ -3779,32 +3224,26 @@ Voulez vous les écraser ? Impossible de résoudre '%1' dans la bibliothèque de débogage '%2' - Version: %1 Version : %1 - <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> <html>La version installée des <i>outils de débogage pour Windows</i> (%1) est relativement ancienne. Une mise à jour vers la version %2 est recommandée pour un affichage correct des types Qt.</html> - Debugger Débogueur - The dumper library was not found at %1. La bibliothèque de collection de données n'a pas été trouvée en %1. - The console stub process was unable to start '%1'. Le processus de console n'a pas pu lancer '%1'. - Attaching to core files is not supported! A noun could be better instead of Attacher ← attachement ? Attacher le débogueur à un fichier core n'est pas supporté ! @@ -3826,32 +3265,26 @@ Voulez vous les écraser ? Impossible de créer un processus '%1': %2 - The process exited with exit code %1. Le processus s'est terminé avec le code de sortie %1. - Continuing with '%1'... Continue avec '%1'... - Unable to continue: %1 Impossible de continuer : %1 - Reverse stepping is not implemented. Le déplacement inversé n'est pas implémenté. - Thread %1 cannot be stepped. Le thread %1 ne peut pas être parcouru pas à pas. - Stepping %1 Pas à pas %1 @@ -3860,91 +3293,73 @@ Voulez vous les écraser ? Lancement à l'adresse 0x%1… - Running requested... Exécution demandée… - Running up to %1:%2... Exécution jusqu'à %1 : %2… - Running up to function '%1()'... Exécution jusqu'à la fonction '%1()'… - Jump to line is not implemented Aller à la ligne n'est pas implémenté - Unable to assign the value '%1' to '%2': %3 Impossible d'assigner la valeur '%1' à '%2': %3 - Unable to retrieve %1 bytes of memory at 0x%2: %3 Impossible de récupérer %1 octets de mémoire sur 0x%2 : %3 - Cannot retrieve symbols while the debuggee is running. note: debuggee is not a typo Les symboles ne peuvent pas être obtenus lorsque le processus débogué est en fonctionnement. - - Debugger Error Erreur du débogueur - Ignoring initial breakpoint... Point d'arrêt initial ignoré… - Interrupted in thread %1, current thread: %2 Interruption dans le thread %1, thread courant : %2 - Stopped, current thread: %1 Arrêté, thread courant : %1 - Changing threads: %1 -> %2 Changement de thread:%1 ->%2 - Stopped at %1:%2 in thread %3. - Arrêté a %1 : %2dans le thread %3. + Arrêté a %1 : %2dans le thread %3. - Stopped at %1 in thread %2 (missing debug information). - Arrêté a %1 dans le thread %2 (information de débogage manquante). + Arrêté a %1 dans le thread %2 (information de débogage manquante). - Stopped at %1 (%2) in thread %3 (missing debug information). - Arrêté a %1 (%2) dans le thread %3 (information de débogage manquante). + Arrêté a %1 (%2) dans le thread %3 (information de débogage manquante). - Stopped in thread %1 (missing debug information). - Arrêté dans le thread %1 (information de débogage manquante). + Arrêté dans le thread %1 (information de débogage manquante). - Breakpoint: %1 - Point d'arrêt : %1 + Point d'arrêt : %1 Thread %1: Missing debug information for top stack frame (%2). @@ -3958,58 +3373,47 @@ Voulez vous les écraser ? Debugger::Internal::CdbDumperHelper - injection injection - debugger call appel au débogueur - Loading the custom dumper library '%1' (%2) ... Chargement de la bibliothèque du collecteur de données personnalisé '%1' (%2)... - Loading of the custom dumper library '%1' (%2) failed: %3 Échec du chargement de la bibliothèque du collecteur de données personnalisé '%1' (%2) : %3 - Loaded the custom dumper library '%1' (%2). Bibliothèque du collecteur de données personnalisé '%1' chargée (%2). - Stopped / Custom dumper library initialized. Stopped? Collecteur de données personnalisé initialisé. - Disabling dumpers due to debuggee crash... Désactive les collecteurs de données à cause d'un crash du débogué... - The debuggee does not appear to be Qt application. Le débogué ne semble pas être une application Qt. - Initializing dumpers... Initialise les collecteurs de données... - The custom dumper library could not be initialized: %1 La bibliothèque de collecteurs de données personnalisé n'a pas pu être initialisé : %1 - Querying dumpers for '%1'/'%2' (%3) Recherche de collecteur pour '%1'/'%2' (%3) @@ -4021,24 +3425,20 @@ Voulez vous les écraser ? Cdb - Autodetect Autodétecter - "Debugging Tools for Windows" could not be found. "L'outil de débogage pour Windows" ne peut pas être trouvé. - Checked: %1 Coché : %1 - Autodetection Autodétection @@ -4046,17 +3446,14 @@ Voulez vous les écraser ? Debugger::Internal::CdbSymbolPathListEditor - Symbol Server... Serveur de symbole... - Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. Ajoute le serveur de symboles Microsoft pour fournir les symboles des bilbiothèques du système d'exploitation. Exige de spécifier un répertoire local de cache. - Pick a local cache directory Sélectionner un répertoire local de cache @@ -4064,7 +3461,6 @@ Voulez vous les écraser ? Debugger::Internal::DebugMode - Debug Déboguer @@ -4072,13 +3468,10 @@ Voulez vous les écraser ? Debugger::DebuggerManager - Continue Continue - - Interrupt Interrompre @@ -4087,63 +3480,54 @@ Voulez vous les écraser ? Réinitialiser le débogueur - Step Over Passer - Step Into check all the instances of "Step Into" if you modify this one Entrer dans - Step Out Pas sur ??? Sortir de - - Run to Line Exécuter jusqu'à la ligne - Run to Outermost Function Exécuter jusqu'à la fonction la plus éloignée - Immediately Return From Inner Function - Retourner immédiatement de la fonction interieure + Pas très francais... Mais je n'arrive pas à saisir le sens de la phrase. +francis : nouvelle proposition. +cédric : Je pense que "retourner immédiatement" est mieux que dans l'autre sens non ? +john: je pense que c'est dans le sens return ce qui ne comprends pas toujours une valeur, j'ai simplifié la phrase. +(globalement on a le problème de trad de return en retourne qui ce dit moyen...) + Retourne immédiatement d'une fonction interne - - Jump to Line Sauter à la ligne - Toggle Breakpoint Basculer le point d'arrêt - - Add to Watch Window Ajouter à la fenêtre d'observateurs - Snapshot mieux que cliché ou instantané non ? - Snapshot + Snapshot - Reverse Direction Inverser la direction @@ -4152,7 +3536,6 @@ Voulez vous les écraser ? Arrêté. - Running... En cours d'éxecution... @@ -4161,13 +3544,11 @@ Voulez vous les écraser ? Sorti. - Changing breakpoint state requires either a fully running or fully stopped application. fully ? - Changer l'état d'un point d'arrêt nécessite soit une application en cours d'éxecution soit une application totalement arrêté. + Changer l'état d'un point d'arrêt nécessite soit une application en cours d'éxecution soit une application totalement arrêté. - The application requires the debugger engine '%1', which is disabled. On traduit engine ou pas ? L'application nécessite le débogueur '%1' qui est desactivé. @@ -4178,22 +3559,18 @@ Voulez vous les écraser ? Le débogage contre l'exécutable n'est actuellement pas activé. - Starting debugger for tool chain '%1'... Lancer le débogueur pour la chaîne d'outils '%1'... - Warning Avertissement - Cannot debug '%1' (tool chain: '%2'): %3 Impossible de déboguer '%1' (chaîne d'outils : '%2') : %3 - Save Debugger Log Sauvegarder le log du débogueur @@ -4210,47 +3587,38 @@ Voulez vous les écraser ? L'assistant au débogage est utilisé pour bien formater la valeur des types de données Qt et des bibliothèques standards.Il doit être compilé pour chaque version de Qt ce qui peut être fait dans les préférences de Qt en sélectionnant une installation de Qt et en cliquant sur 'Reconstruire' pour l'assistant de débogage. - Turn off helper usage Désactiver cet avertissement - The debugger could not load the debugging helper library. Le débogueur n'a pas pu charger la bibliothèque d'assistance au débogage. - 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. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. L'assistance au débogage est utilisée pour visualiser facilement les valeurs de certains types de Qt et de la bibliothèque standard C++. Elle doit être compilée séparément pour chaque version de Qt. Ceci peut être fait dans la page de préférences de Qt en sélectionnant une version de Qt et en cliquant sur "Recompiler" à la ligne "Assistance au débogage". - Stop Debugger Arrêter le débogueur - Open Qt preferences Ouvrir les préférences Qt - Abort Debugging Annuler le débogage - Aborts debugging and resets the debugger to the initial state. Annuler le débogage et réinitialiser le débogueur a son état initial. - Stopped Arrêté - Exited Sorti @@ -4271,17 +3639,14 @@ Voulez vous les écraser ? Symboles dans "%1" - %1 (explicitly set in the Debugger Options) %1 (définie explicitement dans les options du débogueur) - Continue anyway Continuer malgré tout - Debugging helper missing Assistance au débogage manquante @@ -4289,7 +3654,6 @@ Voulez vous les écraser ? Debugger::Internal::DebuggerOutputWindow - Debugger Débogueur @@ -4297,14 +3661,12 @@ Voulez vous les écraser ? Debugger::Internal::DebuggerListener - A debugging session is still in progress. Would you like to terminate it? Une session de débogage est en cours. Voulez vous la terminer ? - Close Debugging Session Fermer la session de débogage @@ -4313,7 +3675,6 @@ Voulez vous la terminer ? Une session de débogage est en cours. Voulez vous la terminer ? - A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? Une session de débogage est en cours. Terminer la session dans l'état courant (%1) risque de laisser la cible dans un état incohérent. Êtes-vous sûr de vouloir terminer la session ? @@ -4321,58 +3682,47 @@ Voulez vous la terminer ? Debugger::Internal::DebuggerPlugin - Option '%1' is missing the parameter. Option '%1' : le paramètre est manquant. - The parameter '%1' of option '%2' is not a number. Le paramètre '%1' de l'option '%2' n'est pas un nombre. - Invalid debugger option: %1 Option du débogueur invalide : %1 - Error evaluating command line arguments: %1 Erreur durant l'évaluation des arguments de la ligne de commande : %1 - Start and Debug External Application... Déboguer une application externe... - Attach to Running External Application... Attacher à une application externe en cours d'éxecution... - Attach to Core... idem, core? Attacher au core... - Start and Attach to Remote Application... Démarrer et attacher sur une application à distance... - Detach Debugger Détacher le débogueur - Stop Debugger/Interrupt Debugger Arrêter le débogueur/Interrompre le débogueur - Reset Debugger Remise à zéro du débogueur @@ -4389,50 +3739,41 @@ Voulez vous la terminer ? Restaurer la disposition par défaut - Threads: Threads : - Attaching to PID %1. Attachement ? Attachement au PID %1. - Remove Breakpoint Supprimer le point d'arrêt - Disable Breakpoint Désactiver le point d'arrêt - Enable Breakpoint Activer le point d'arrêt - Set Breakpoint Définir un point d'arrêt - Warning Alerte? Avertissement - Cannot attach to PID 0 de s'attacher ? Pas sur Impossible de s'attacher au PID 0 - Attaching to core %1. core, toujours? Attachement au core %1. @@ -4469,7 +3810,6 @@ Voulez vous la terminer ? Opérer par instruction - 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. Ceci passe le débogueur en mode instruction par instruction. Dans ce mode, avancer pas à pas agit sur une seul instruction, et la vue des sources affiche aussi les instructions désassemblés. @@ -4478,9 +3818,8 @@ Voulez vous la terminer ? Déréférencer les pointeurs automatiquement - 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. - Ceci active le déférencement automatique des pointeurs dans les vues "Variables locales" et "Observateur". Ceci réduit l'arbre d'un niveau, mais certaines données sont cachées. + Ceci active le déférencement automatique des pointeurs dans les vues "Variables locales" et "&Observateur". Ceci réduit l'arbre d'un niveau, mais certaines données sont cachées. Watch expression "%1" @@ -4515,217 +3854,174 @@ Voulez vous la terminer ? Synchroniser les points d'arrêt - Debugger Properties... Propriétés du débogueur… - Adjust Column Widths to Contents Ajuster la largeur des colonnes au contenu - Always Adjust Column Widths to Contents Toujours ajuster la largeur des colonnes au contenu - Use Alternating Row Colors Utiliser des couleurs de lignes alternées - Show a Message Box When Receiving a Signal Afficher un message à la réception d'un signal - Log Time Stamps Horodater le journal - Verbose Log - Journal verbeux + Journal des opérations - Operate by Instruction Opérer par instruction - Dereference Pointers Automatically Déréférencer les pointeurs automatiquement - Watch Expression "%1" Observer l'expression "%1" - Remove Watch Expression "%1" Retirer "%1" des expressions observées - Watch Expression "%1" in Separate Window Observer l'expression "%1" dans une fenêtre séparée - Show "std::" Namespace in Types Afficher l'espace de nommage "std::" dans les types - Show Qt's Namespace in Types Afficher l'espace de nommage Qt dans les types - Use Debugging Helpers Utiliser l'assistance au débogage - Debug Debugging Helpers Déboguer l'assistance au débogage - Use Code Model Utiliser le modèle de code - 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. - + Selectionner cette option fait que l'information de contexte de la variable est demandée au modèle de code C++. Ceci peut résulter en des opérations de débogueur légèrement plus rapides mais risque d'échouer dans le cas de code optimisé. - Recheck Debugging Helper Availability Revérifier la disponibilité de l'assistance au débogage - Synchronize Breakpoints Synchroniser les points d'arrêt - Use Precise Breakpoints - ?? - Utiliser des points d'arrêt précis + Utiliser des points d'arrêt précis - 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. - + Sélectionner cette option provoque une synchronisation des points d'arrêt après chaque étape. Par conséquent l'information concernant un point d'arrêt résolu après le chargement de bibliothèques dynamiques est à jour, mais le pas à pas est plus lent. - Break on "throw" - S'arrêter lors d'un "throw" + S'arrêter lors d'un "throw" - Break on "catch" - S'arrêter lors d'un "catch" + S'arrêter lors d'un "catch" - Automatically Quit Debugger Quitter le débogueur automatiquement - Use tooltips in main editor when debugging Utiliser les info-bulles dans l'éditeur principal lors du débogage - 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. - Active les info-bulles sur les variables pendant le débogage. Comme ceci peut ralentir le débogage et ne fournit pas nécessairement des valeurs fiables, cette option est désactivée par défault. + Active les info-bulles sur les variables pendant le débogage. Comme ceci peut ralentir le débogage et ne fournit pas nécessairement des valeurs fiables, cette option est désactivée par défaut. - Use Tooltips in Locals View When Debugging Utiliser les info-bulles dans la vue "variables locales" lors du débogage - Use Tooltips in Breakpoints View When Debugging Utiliser les info-bulles dans la vue des points d'arrêt lors du débogage - Show Address Data in Breakpoints View When Debugging Afficher l'adresse des données dans la vue des points d'arrêt lors du débogage - Show Address Data in Stack View When Debugging Afficher les adresses des données dans la vue de la pile lors du débogage - List Source Files Lister les fichiers source - Skip Known Frames Sauter les frames connues - Selecting this results in well-known but usually not interesting frames belonging to reference counting and signal emission being skipped while single-stepping. - + Sélectionner cette option fait que les trames connues et présentant généralement peu d'intérêt telles que le comptage de référence ou les émissions de signaux soient passées lors d'un débogage pas à pas. - Enable Reverse Debugging Activer le débogage inversé - Register For Post-Mortem Debugging - Activer le débogage post-mortem + Activer le débogage post-mortem - Reload Full Stack Recharger l'intégralité de la pile - Create Full Backtrace - Créer une backtrace complète + Créer une backtrace complète - Execute Line Exécuter la ligne - Change debugger language automatically - Changer le langage du débogueur automatiquement + Changer le langage du débogueur automatiquement - Changes the debugger language according to the currently opened file. - Changer le langage du débogueur en fonction du fichier ouvert. + Changer le langage du débogueur en fonction du fichier ouvert. Use tooltips in locals view when debugging Utiliser les info-bulles dans la vue "variables locales" lors du débogage - Checking this will enable tooltips in the locals view during debugging. Cocher ceci activera les info-bulles dans la vue des variables locales lors du débogage. @@ -4734,7 +4030,6 @@ Voulez vous la terminer ? Utiliser les info-bulles dans la vue des points d'arrêt lors du débogage - Checking this will enable tooltips in the breakpoints view during debugging. Cocher ceci activera les info-bulles dans la vue des points d'arrêt lors du débogage. @@ -4743,7 +4038,6 @@ Voulez vous la terminer ? Afficher l'adresse des données dans la vue des points d'arrêt lors du débogage - Checking this will show a column with address information in the breakpoint view during debugging. Cocher ceci affichera l'adresse des données dans la vue des points d'arrêt lors du débogage. @@ -4752,7 +4046,6 @@ Voulez vous la terminer ? Afficher les adresses des données dans la vue de la pile lors du débogage - Checking this will show a column with address information in the stack view during debugging. Cocher ceci affichera les adresses des données dans la vue de la pile lors du débogage. @@ -4784,17 +4077,14 @@ Voulez vous la terminer ? Debugger::Internal::DebuggingHelperOptionPage - Debugging Helper Assistance au débogage - Choose DebuggingHelper Location Choisir l'emplacement de l'assistance au débogage - Ctrl+Shift+F11 Ctrl+Maj+F11 @@ -4802,28 +4092,23 @@ Voulez vous la terminer ? Debugger::Internal::GdbEngine - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. Échec du démarrage du processus Gdb. Soit le programme '%1' est manquant, soit les droits sont insuffisants pour exécuter le programme. - The Gdb process crashed some time after starting successfully. Le processus Gdb a crashé après avoir démarré correctement. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. this string appear twice in the translation La dernière fonction waitFor...() est arrivé à échéance. Le statut de QProcess est inchangé, vous pouvez essayer d'appeler waitFor...() à nouveau. - 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. Une erreur s'est produite lors d'une tentative d'écriture sur le processus Gdb. Le processus peut ne pas être démarré, ou il peut avoir fermé son entrée standard. - An error occurred when attempting to read from the Gdb process. For example, the process may not be running. Une erreur s'est produite lors d'une tentative de lecture depuis le processus Gdb. Le processus peut ne pas être en cours d'exécution. @@ -4836,9 +4121,8 @@ Voulez vous la terminer ? Bibliothèque %1 déchargée. - Thread group %1 created. - Group de thread %1 créé. + Group de thread %1 créé. Thread %1 created. @@ -4857,27 +4141,22 @@ Voulez vous la terminer ? Thread %1 sélecitonné. - Reading %1... Lecture de %1... - Stopping temporarily. - Arrêt temporaire. + Arrêt temporaire. - Jumped. Stopped. - Sauté. Arrêté. + Sauté. Arrêté. - Processing queued commands. - Traite les commandes en file d'attente. + Traite les commandes en file d'attente. - Loading %1... Charge %1... @@ -4886,41 +4165,30 @@ Voulez vous la terminer ? Arrêté au point d'arrêt. - - Stopped. Arrêté. - An unknown error in the Gdb process occurred. Une erreur inconnue est survenue dans le processus Gdb. - Running... En cours d'éxecution... - Stop requested... Arrêt demandé... - - - Executable failed Échec de l'exécutable - Process failed to start. - Le processus n'a pu pas démarrer. + Le processus n'a pu pas démarrer. - - Executable failed: %1 Échec de l'exécutable : %1 @@ -4945,12 +4213,10 @@ Voulez vous la terminer ? <inconnu> - Signal received Signal reçu - Stopped: "%1" Arrêté : "%1" @@ -4967,69 +4233,56 @@ Le débogage ne fonctionnera probablement pas parfaitement. L'utilisation de gdb 6.7 ou supérieur est recommandée. - Running requested... Exécution demandée... - Step requested... Pas à pas demandé... - Step by instruction requested... Pas à pas d'instruction demandé... - Finish function requested... Finir la fonction demandé... - Step next requested... Étape suivante demandée... - Step next instruction requested... Instruction suivante demandée... - Run to line %1 requested... Exécuter jusque la ligne %1 demandé... - Run to function %1 requested... Exécution jusque la fonction %1 demandé... - Immediate return from function requested... - + Retour immédiat de la fonction demandé... - ATTEMPT BREAKPOINT SYNC - + ATTEMPT BREAKPOINT SYNC - <unknown> address End address of loaded module <inconnue> - Jumping out of bogus frame... Sauter hors des frames buggées... - Dumper version %1, %n custom dumpers found. Collecteur version %1, %n collecteur personnalisé trouvé. @@ -5037,113 +4290,88 @@ L'utilisation de gdb 6.7 ou supérieur est recommandée. - - - - Disassembler failed: %1 Désassemblage échoué : %1 - Adapter start failed Démarrage de l'adaptateur échoué - - Setting breakpoints... Définit les points d'arrêts... - Starting inferior... Démarrage de l'inférieur... - <Unknown> name <Inconnu> - <Unknown> meaning <inconnue> - The debugging helper library was not found at %1. La bibliothèque d'assistance au débogage n'a pas été trouvée à l'emplacement %1. - Unable to start gdb '%1': %2 Impossible de démarrer gdb '%1' : %2 - Gdb I/O Error Erreur d'E/S Gdb - Unexpected Gdb Exit Arrêt inattendu de Gdb - The gdb process exited unexpectedly (%1). Le processus de gdb s'est terminé de façon inattendue (%1). - Stopped at breakpoint %1 in thread %2. - Arrêté au point d'arrêt. %1 dans le thread %2. + Arrêté au point d'arrêt %1 dans le thread %2. - - Snapshot Creation Error - Erreur de création du snapshot + Erreur de création du snapshot - Cannot create snapshot file. - Impossible de créer un fichier snapshot. + Impossible de créer un fichier snapshot. - Cannot create snapshot: - Impossible de créer le snapshot : + Impossible de créer le snapshot : - Snapshot Reloading - Recharger le snapshot + Recharger le snapshot - In order to load snapshots the debugged process needs to be stopped. Continuation will not be possible afterwards. Do you want to stop the debugged process and load the selected snapshot? - Pour charger des snapshots, le processus débogué doit être arrêté. Il sera impossible de continuer par la suite. -Voulez vous arrêtre le processus débogué et charger le snapshot selectionné ? + Pour charger des snapshots, le processus débogué doit être arrêté. Il sera impossible de continuer par la suite. +Voulez vous arrêter le processus débogué et charger le snapshot selectionné ? - Finished retrieving data - Collecte des données terminée + Collecte des données terminée - crashed crashé - code %1 code %1 @@ -5156,161 +4384,138 @@ Voulez vous arrêtre le processus débogué et charger le snapshot selectionné Arrêt de l'inférieur échoué - Adapter crashed Adaptateur crashé - Cannot find debugger initialization script Impossible de trouver les scripts d'initialisation du débogueur - 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. Les paramètres du débogueur référencent un fichier script à l'emplacement '%1' qui n'est pas accessible. Si un fichier script n'est pas nécessaire, les paramètres pourraient être nettoyés pour éviter cet avertissement. - Unable to run '%1': %2 Impossible d'exécuter '%1' : %2 - Library %1 loaded Bibliothèque %1 chargée - Library %1 unloaded Bibliothèque %1 déchargée - + Thread group %1 created + Group de thread %1 créé + + Thread %1 created Thread %1 créé - Thread group %1 exited Groupe de thread %1 terminé - Thread %1 in group %2 exited Thread %1 dans le groupe %2 terminé - Thread %1 selected Thread %1 sélectionné - 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. - Le processus n'a pas répondu a une commande en moins de %1 secondes. Ceci peut signifier qu'il est bloqué dans une boucle infinie ou qu'il prend plus de temps que prévu pour exécuter une opération. + Le processus n'a pas répondu a une commande en moins de %1 secondes. Ceci peut signifier qu'il est bloqué dans une boucle infinie ou qu'il prend plus de temps que prévu pour exécuter l'opération. Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. - Gdb not responding - gdb ne répond pas + Gdb ne répond pas - Give gdb more time - Laisser plus de temps à gdb + Laisser plus de temps à gdb - Stop debugging - Arrêter le débogage + Arrêter le débogage + + + Jumped. Stopped + Sauté. Arrêté + + + Target line hit. Stopped + Ligne cible atteinte. Arrêté - Application exited with exit code %1 - L'application s'est terminée avec le code de sortie %1 + L'application s'est terminée avec le code de sortie %1 - Application exited after receiving signal %1 L'application s'est terminée après la reception du signal %1 - Application exited normally L'application s'est terminée normalement - <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>L'inférieur a stoppé car il a reçu un signal du système d'exploitation.</p><table><tr><td>Nom du signal : </td><td>%1</td></tr><tr><td>Signification du signal : </td><td>%2</td></tr></table> - Stopped: %1 by signal %2 Arrêté : %1 par le signal %2 - - - Execution Error Erreur d'exécution - - - Cannot continue debugged process: Impossible de continuer le processus débogué : - Failed to shut down application - Échec de la terminaison du programme + Échec de la terminaison du programme - There is no gdb binary available for '%1' - Il n'y a pas de binaire de gdb disponible pour '%1' + Il n'y a pas de binaire de gdb disponible pour '%1' - Launching - Lancement + Lancement - Continuing after temporary stop... Continue après un arrêt temporaire... - Failed to start application: Impossible de démarrer l'application : - Failed to start application - Impossible de démarrer l'application + Impossible de démarrer l'application - <unknown> <inconnue> - - Retrieving data for stack view... Collecte des données pour la vue de la pile... - Retrieving data for watch view (%n requests pending)... Collecte des données pour la vue des observateurs (%n requête restante)... @@ -5322,22 +4527,18 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.Collecte des données terminée. - Debugging helpers not found. Assistance au débogage non trouvée. - Custom dumper setup: %1 Configuration du collecteur pesonnalisé : %1 - <0 items> <0 éléments> - <%n items> In string list @@ -5346,22 +4547,18 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. - <shadowed> <%n élément> - <n/a> <%n élément> - <anonymous union> <union anonyme> - <no information> About variable's value <aucune information> @@ -5370,7 +4567,6 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::GdbOptionsPage - Gdb Gdb @@ -5379,7 +4575,6 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.Choisir l'emplacement de Gdb - Choose Location of Startup Script File Choisir l'emplacement du fichier contenant le script de démarrage @@ -5387,32 +4582,26 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::ModulesModel - yes oui - no non - Module name Nom du module - Symbols read Symboles lus - Start address Adresse de démarrage - End address Adresse de fin @@ -5420,62 +4609,50 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::ModulesWindow - Modules Modules - Update Module List Mettre à jour la liste des modules - Show Source Files for Module "%1" Afficher les fichiers source du module "%1" - Load Symbols for All Modules Charger les symboles pour tout les modules - Load Symbols for Module Charcher les symboles pour le module - Edit File Éditer le fichier - Show Symbols Afficher les symboles - Load Symbols for Module "%1" Charger les symboles pour le module "%1" - Edit File "%1" Éditer le fichier "%1" - Show Symbols in File "%1" Afficher les symboles dans le fichier "%1" - Adjust Column Widths to Contents Ajuster la largeur des colonnes au contenu - Always Adjust Column Widths to Contents Toujours ajuster la largeur des colonnes au contenu @@ -5524,22 +4701,18 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.Affichier les symboles dans le fichier "%1" - Address Adresse - Code Code - Symbol Symbole - Symbols in "%1" Symboles dans "%1" @@ -5547,17 +4720,14 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::OutputCollector - Cannot create temporary file: %1 Impossible de créer le fichier temporaire : %1 - Cannot create FiFo %1: %2 Impossible de créer le FiFo %1 : %2 - Cannot open FiFo %1: %2 Impossible d'ouvrir le FiFo %1 : %2 @@ -5565,12 +4735,10 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::RegisterHandler - Name Nom - Value (base %1) Valeur (base %1) @@ -5578,7 +4746,6 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::RegisterWindow - Registers Registres @@ -5591,47 +4758,38 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.Ouvrir l'éditeur de mémoire à l'adresse %1 - Reload Register Listing Recharger la liste des registres - Open Memory Editor Ouvrir l'éditeur de mémoire - Open Memory Editor at %1 Ouvrir l'éditeur de mémoire à l'adresse %1 - Hexadecimal Hexadécimal - Decimal Décimal - Octal Octal - Binary Binaire - Adjust Column Widths to Contents Ajuster la largeur des colonnes au contenu - Always Adjust Column Widths to Contents Toujours ajuster la largeur des colonnes au contenu @@ -5651,32 +4809,26 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::ScriptEngine - Running requested... Exécution... - '%1' contains no identifier '%1' ne contient pas d'identifiant - String literal %1 Chaîne de caractères %1 - Cowardly refusing to evaluate expression '%1' with potential side effects Refuse lâchement d'évaluer l'expression '%1' avec des effects secondaires potentiels - Stopped at %1:%2. Arrêté à %1 : %2. - Stopped. Arrêté. @@ -5695,22 +4847,18 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::SourceFilesWindow - Source Files Fichiers source - Reload Data Recharger les données - Open File Ouvrir le Fichier - Open File "%1"' Ouvrir le fichier "%1" @@ -5730,73 +4878,54 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::StackHandler - - Address: Adresse : - - Function: Fonction : - - File: Fichier : - - Line: Ligne : - - From: À partir de : - - To: Vers : - ... ... - <More> <plus> - Level Niveau - Function Fonction - File Fichier - Line Ligne - Address Adresse @@ -5804,22 +4933,18 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::ThreadsHandler - Function Fonction - File Fichier - Line Ligne - Address Adresse @@ -5828,22 +4953,18 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.État - Thread: %1 Thread: %1 - Thread: %1 at %2 (0x%3) Thread: %1 à %2 (0x%3) - Thread: %1 at %2, %3:%4 (0x%5) Thread: %1 à %2, %3:%4 (0x%5) - Thread ID ID du Thread @@ -5851,42 +4972,34 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::StackWindow - Stack Pile - Copy Contents to Clipboard Copier le contenu dans le presse papier - Open Memory Editor Ouvrir l'éditeur de mémoire - Open Memory Editor at %1 Ouvrir l'éditeur de mémoire à l'adresse %1 - Open Disassembler Ouvrir le désassembleur - Open Disassembler at %1 Ouvrir le désassembleur à l'adresse %1 - Adjust Column Widths to Contents Ajuster la largeur des colonnes au contenu - Always Adjust Column Widths to Contents Toujours ajuster la largeur des colonnes au contenu @@ -5922,17 +5035,14 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::StartExternalDialog - Select Executable Selectionner l'exécutable - Executable: Exécutable : - Arguments: Arguments : @@ -5940,41 +5050,33 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::StartRemoteDialog - Select Debugger Lancer le débogueur - Select Executable Selectionner l'exécutable - Select Sysroot - laisser sysroot ? - Sectionner la racine du système + Sectionner Sysroot - Select Start Script - Sélectionner le script de démarrage + Sélectionner le script de démarrage Debugger::Internal::ThreadsWindow - Thread Thread - Adjust Column Widths to Contents Ajuster la largeur des colonnes au contenu - Always Adjust Column Widths to Contents Toujours ajuster la largeur des colonnes au contenu @@ -5990,13 +5092,10 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::WatchData - - <not in scope> <pas dans la portée> - %1 <shadowed %2> %1 <shadowed %2> @@ -6004,32 +5103,26 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::WatchHandler - Name Nom - Expression Expression - Type Type - ... <cut off> ... <coupé> - Value Valeur - Object Address Adresse de l'objet @@ -6038,47 +5131,38 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.Adresse stockée - Root Racine - Locals Variables locales - Watchers Observateurs - Tooltip Info-bulle - unknown address adresse inconnue - %1 object at %2 - %1 objet à %2 + %1 objet à %2 - <Edit> <Éditer> - Internal ID ID interne - Generation Génération @@ -6086,62 +5170,50 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::WatchModel - decimal décimal - hexadecimal hexadécimal - binary binaire - octal octal - Bald pointer - Pointeur simple + Pointeur simple - Latin1 string - Chaîne de caractères latin1 + Chaîne de caractères latin1 - UTF8 string - Chaîne de caractères UTF8 + Chaîne de caractères UTF8 - UTF16 string - Chaîne de caractères UTF16 + Chaîne de caractères UTF16 - UCS4 string - Chaîne de caractères UCS4 + Chaîne de caractères UCS4 - Name Nom - Value Valeur - Type Type @@ -6149,67 +5221,54 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Debugger::Internal::WatchWindow - Locals and Watchers Variables locales et observateurs - Change Format for Type "%1" Modifier le format pour le type '%1' - Change Format for Object at %1 - Modifier le format pour l'objet à '%1' + Modifier le format pour l'objet à '%1' - Clear Effacer - Open Memory Editor at %1 Ouvrir l'éditeur de mémoire à l'adresse %1 - Change Format for Type Modifier le format pour le type - Change Format for Object - Modifier le format pour l'objet + Modifier le format pour l'objet - Insert New Watch Item Insérer un nouvel élément observé - Select Widget to Watch Sélectionner le widget à observer - Open Memory Editor... Ouvrir l'éditeur de mémoire... - Refresh Code Model Snapshot - Rafraîchir le snapshot du code + Rafraîchir le snapshot du modèle de code - Adjust Column Widths to Contents Ajuster la largeur des colonnes au contenu - Always Adjust Column Widths to Contents Toujours ajuster la largeur des colonnes au contenu @@ -6269,12 +5328,10 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.Sauver le contenu - Clear Contents Effacer le contenu - Save Contents Sauver le contenu @@ -6303,42 +5360,35 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage.Ceci cherchera une bibliothèque de collecte de données - Use debugging helper from custom location Utiliser un collecteur de données à partir d'un emplacement personnalisé - Location: Emplacement : - Debug debugging helper Déboguer l'assistance au débogage - 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. Utilise le modèle de code de Qt Creator pour trouver si une valeur à déjà été assignée à une variable au point où le débogueur interrompt l'exécution. - Use code model pas exactement ça ? Utiliser le modèle de code - <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>L'assistant au débogage est utilisé pour bien formater la valeur des types de données tels que QString ou std::map dans la vue “Variables locales et observateurs”</p> + <html><head/><body> +<p>L'assistant au débogage est seulementt utilisé pour afficher correctement des objects de certains types tels que QString ou std::map dans la vue “Variables locales et observateurs”</p> <p>Il n'est pas nécessaire pour déboguer avec Qt Creator</p></body></html> - Use Debugging Helper Utiliser l'assistance au débogage @@ -6346,12 +5396,10 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. DependenciesModel - Unable to add dependency Impossible d'ajouter une dépendance - This would create a circular dependency. Ceci créerais une dépendance circulaire. @@ -6374,69 +5422,57 @@ Vous pouvez décider entre attendre plus longtemps ou mettre fin au débogage. Designer - The file name is empty. Le nom de fichier est vide. - XML error on line %1, col %2: %3 Erreur XML à la ligne %1, col %2 : %3 - The <RCC> root element is missing. L'élement racine <RCC> est manquant. - Xml Editor Éditeur XML - Designer Designer - Class Generation Génération de classe - Form Editor Editeur d'interface graphique - - The generated header of the form '%1' could not be found. + The generated header of the form '%1' could be found. Rebuilding the project might help. - Impossible de trouver un en-tête généré pour l'interface graphique %1. + Impossible de trouver un en-tête généré pour l'interface graphique %1. Regénérer le projet peut résoudre ce problème. - The generated header '%1' could not be found in the code model. Rebuilding the project might help. - Impossible de trouver l'en-tête généré %1 dans le modèle de code. + Impossible de trouver l'en-tête généré %1 dans le modèle de code. Regénérer le projet peut résoudre ce problème. Designer::Internal::FormClassWizardDialog - Qt Designer Form Class Classe d'interface graphique Qt Designer - Form Template Modèle d'interface graphique - Class Details Détails de la classe @@ -6448,22 +5484,18 @@ Regénérer le projet peut résoudre ce problème. Choisissez un nom de classe - Class Classe - Configure... Configurer... - %1 - Error %1 - Erreur - Choose a Class Name Choisissez un nom de classe @@ -6475,26 +5507,22 @@ Regénérer le projet peut résoudre ce problème. Qt - Qt Designer Form Interface graphique Qt Designer - Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt C++ Project. - + Crée une interface Qt Designer avec une classe lui correspondant (en-tête et fichier source C++) pour l'implémentation. Vous pouvez ajouter l'interface et la classe à un projet Qt C++ existant. - Creates a Qt Designer form that you can add to a Qt C++ project. This is useful if you already have an existing class for the UI business logic. - + Crée une interface Qt Designer que vous pouvez ajouter à un projet Qt C++. Ceci est utile si vous disposez déjà d'une classe existante pour la couche métier de l'interface utilisateur. Creates a Qt Designer form file (.ui). Crée un fichier d'interface graphique Qt Designer (.ui). - Qt Designer Form Class Classe d'interface graphique Qt Designer @@ -6506,26 +5534,20 @@ Regénérer le projet peut résoudre ce problème. Designer::Internal::FormEditorW - Widget Box this translation must coherent with the translation of Qt Designer Boîte de widget - - Object Inspector Je trouve que "Inspecteur d'objet" est peu adapté. Explorateur d'objet n'est pas excellent non plus, à changer surement. Inspecteur d'objet - Widget box - + Boîte de widget - - Property Editor Editeur de propriété @@ -6534,8 +5556,6 @@ Regénérer le projet peut résoudre ce problème. Editeur de Signaux & Slots - - Action Editor Editeur d'Action @@ -6548,7 +5568,6 @@ Regénérer le projet peut résoudre ce problème. Éditer les widgets - F3 F3 @@ -6557,7 +5576,6 @@ Regénérer le projet peut résoudre ce problème. Éditer signaux/slots - F4 F4 @@ -6570,67 +5588,54 @@ Regénérer le projet peut résoudre ce problème. Éditer l'ordre des onglets - For&m Editor - + Editeur d'&interface graphique - Edit Widgets - + Éditer les widgets - Edit Signals/Slots - + Éditer signaux/slots - Edit Buddies - + Éditer les copains - Edit Tab Order - + Éditer l'ordre des onglets - Meta+H Meta+H - Ctrl+H Ctrl+H - Meta+L Meta+L - Ctrl+L Ctrl+L - Meta+G Meta+G - Ctrl+G Ctrl+G - Meta+J Meta+J - Ctrl+J Ctrl+J @@ -6639,8 +5644,6 @@ Regénérer le projet peut résoudre ce problème. Vues - - Signals && Slots Editor && ? typo in original ? Editeur de signaux et slots @@ -6654,27 +5657,22 @@ Regénérer le projet peut résoudre ce problème. Restaurer la disposition par défaut - Ctrl+Alt+R Ctrl+Alt+R - About Qt Designer plugins.... À propos des plugins Qt Designer.... - Preview in Aperçu dans - Designer Designer - The image could not be created: %1 L'image ne peut pas être créée : %1 @@ -6686,12 +5684,10 @@ Regénérer le projet peut résoudre ce problème. Choisir un modèle d'interface graphique - Choose a Form Template - + Choisir un modèle d'interface graphique - %1 - Error %1 - Erreur @@ -6699,17 +5695,14 @@ Regénérer le projet peut résoudre ce problème. Designer::Internal::FormWindowFile - Error saving %1 Erreur lors de l'enregistrement de %1 - Unable to open %1: %2 Impossible d'ouvrir %1 : %2 - Unable to write to %1: %2 Impossible d'écrire dans %1 : %2 @@ -6717,43 +5710,36 @@ Regénérer le projet peut résoudre ce problème. Designer::Internal::FormWizardDialog - Qt Designer Form Interface graphique Qt Designer - Form Template - + Modèle d'interface graphique Designer::Internal::QtCreatorIntegration - The class definition of '%1' could not be found in %2. La déclaration de la classe %1 est introuvable dans %2. - Error finding/adding a slot. Erreur lors de la recherche/de l'ajout d'un slot. ? Erreur de la recherche/ajout de slot. - Internal error: No project could be found for %1. Erreur interne : Aucun projet n'a pu être trouvé pour %1. - No documents matching '%1' could be found. Rebuilding the project might help. Impossible de trouver un document correspondant à %1. Regénérer le projet peut résoudre ce problème. - Unable to add the method definition. Impossible d'ajouter la déclaration de la méthode. @@ -6761,24 +5747,20 @@ Regénérer le projet peut résoudre ce problème. DocSettingsPage - Registered Documentation Documentation enregistrée - Add... Ajouter... - Remove Supprimer - Add and remove compressed help files, .qch. - + Ajouter et supprimer des fichiers d'aide compressés, .qch. @@ -6799,71 +5781,58 @@ La version de Qt est aussi définie automatiquement. ExtensionSystem::Internal::PluginDetailsView - Name: Nom : - Version: Version : - Compatibility Version: Version compatible : - Vendor: Vendeur : - Url: Url : - Location: Emplacement : - Description: Description : - Copyright: Droit d'auteur ? Copyright : - License: Licence : - Dependencies: Dépendances : - Group: - + Groupe : ExtensionSystem::Internal::PluginErrorView - State: État : - Error Message: Message d'erreur : @@ -6871,17 +5840,14 @@ La version de Qt est aussi définie automatiquement. ExtensionSystem::Internal::PluginSpecPrivate - File does not exist: %1 Le fichier n'existe pas : %1 - Could not open file for read: %1 Impossible d'ouvrir le fichier en lecture : %1 - Error parsing file %1: %2, at line %3, column %4 Erreur pendant l'analyse du fichier %1 : %2, ligne %3, colonne %4 @@ -6893,17 +5859,14 @@ La version de Qt est aussi définie automatiquement. État - Name Nom - Version Version - Vendor Vendeur @@ -6912,90 +5875,73 @@ La version de Qt est aussi définie automatiquement. Emplacement - Load - + Charge ExtensionSystem::PluginErrorView - Invalid Invalide - Description file found, but error on read Fichier de description trouvé, mais erreur de lecture - Read Lecture - Description successfully read Succès de la lecture de la description - Resolved Résolu - Dependencies are successfully resolved Les dépendances ont été résolues avec succès - Loaded Chargé - Library is loaded Bibliothèque chargée - Initialized Initialisé - Plugin's initialization method succeeded Méthode d'initialisation du plugin réussie - Running En cours d'exécution - Plugin successfully loaded and running Plugin correctement chargé et démarré - Stopped Arrêté - Plugin was shut down Plugin arrêté - Deleted Supprimé - Plugin ended its life cycle and was deleted Le plugin a terminé son cycle de vie et a été supprimé @@ -7003,21 +5949,18 @@ La version de Qt est aussi définie automatiquement. ExtensionSystem::PluginManager - Circular dependency detected: Dépendance circulaire détecté : - %1(%2) depends on %1(%2) dépend de - %1(%2) %1 (%2) @@ -7026,8 +5969,6 @@ La version de Qt est aussi définie automatiquement. Impossible de charger le plugin car les dépendances ne sont pas résolues - - Cannot load plugin because dependency failed to load: %1(%2) Reason: %3 Impossible de charger le plugin car une des dépendances n'a pas pu être chargé : %1(%2) @@ -7045,20 +5986,17 @@ Raison : %3 Propriétés de FakeVim... - Use Vim-style Editing - + Utiliser l'édition en mode vim - Read .vimrc - + prendre en compte .vimrc FakeVim::Internal::FakeVimHandler - Not implemented in FakeVim Pas implémenté dans FakeVim @@ -7067,12 +6005,10 @@ Raison : %3 E20 : Marque '%1' non définie - %1%2% %1%2% - %1All %1Tout @@ -7085,8 +6021,6 @@ Raison : %3 Impossible d'ouvrir le fichier '%1' en écriture - - "%1" %2 %3L, %4C written "%1" %2 %3L, %4C écrit @@ -7095,12 +6029,10 @@ Raison : %3 Impossible d'ouvrir le fichier '%1' en lecture - "%1" %2L, %3C "%1" %2L, %3C - %n lines filtered %n ligne filtrée @@ -7119,64 +6051,53 @@ Raison : %3 E512 : option inconnue : - search hit BOTTOM, continuing at TOP la recherche a atteint la fin du document, continue à partir du début - search hit TOP, continuing at BOTTOM la recherche a atteint le début du document, continue à partir de la fin - Pattern not found: Motif non trouvé : - Mark '%1' not set - + Marque '%1' non placée - Unknown option: - + Option inconnue : - File "%1" exists (add ! to override) - + Le fichier "%1" existe (ajouter ! pour écraser) - Cannot open file "%1" for writing - + Impossible d'ouvrir le fichier "%1" en écriture - Cannot open file "%1" for reading - + Impossible d'ouvrir le fichier "%1" en lecture - %n lines %1ed %2 time - - + + %n ligne %1ée %2 fois + %n lignes %1ées %2 fois - Can't open file %1 - + Impossible d'ouvrir le fichier %1 - Already at oldest change Déjà au changement le plus ancien - Already at newest change Déjà au changement le plus récent @@ -7184,12 +6105,10 @@ Raison : %3 FakeVim::Internal::FakeVimOptionPage - General Général - FakeVim FakeVim @@ -7197,33 +6116,26 @@ Raison : %3 FakeVim::Internal::FakeVimPluginPrivate - Switch to next file - + Passer au fichier suivant - Switch to previous file - + Passer au fichier précédent - - Quit FakeVim Quitter FakeVim - File not saved - + Fichier non sauvegardé - Saving succeeded Succés de l'enregistrement - %n files not saved %n fichier n'a pas pu être enregistré @@ -7235,7 +6147,6 @@ Raison : %3 Pas une commande de l'éditeur : %1 - FakeVim Information Information sur FakeVim @@ -7243,7 +6154,6 @@ Raison : %3 FakeVimOptionPage - Use FakeVim Utiliser FakeVim @@ -7264,7 +6174,6 @@ Raison : %3 Surligner les résultats de recherche : - Shift width: Largeur d'indentation : @@ -7277,17 +6186,14 @@ Raison : %3 Début de ligne : - vim's "tabstop" option option "tabstop" de vim - Tabulator size: Taille des tabulations : - Backspace: Touche retour : @@ -7316,90 +6222,76 @@ Raison : %3 Définir le style plein - Read .vimrc - + J'aurais proposer "lire les .vimrc" non ? +pierre: ouaip, je trouvais ça plus clair avec "prendre en compte" puisque pour le coup c'est des préférences +Francis : en effet, je n'avais pas pris en compte le contexte. + prendre en compte .vimrc - Vim Behavior - + Comportement Vim - Automatic indentation - + Indentation automatique - Start of line - + Début de ligne - Smart indentation - + Indentation intelligente - Use search dialog - + Utiliser la fenêtre de recherche - Expand tabulators - + Étendre les tabulations - Show position of text marks - + Afficher la position des marques textuelles - Smart tabulators - + Tabulation intelligente - Highlight search results - + Surligner les résultats de recherche - Incremental search - + Recherche incrémentale - Keyword characters: - + Caractères mot clés : - Copy Text Editor Settings - + Copier les paramètres de l'éditeur de texte - Set Qt Style - + Utiliser le style Qt - Set Plain Style - + Utiliser le style simple FilterNameDialogClass - Add Filter Name Nom du filtre à ajouter - Filter Name: Nom du filtre : @@ -7407,80 +6299,69 @@ Raison : %3 FilterSettingsPage - Filters Filtres - Attributes Attributs - 1 1 - Add Ajouter - Remove Supprimer - <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> +Ajouter, modifier, et supprimer des filtres de documents, qui détermine l'ensemble des contenus affichés dans le mode Aide. Les attributs sont définis dans les documents. Sélectionnez les pour afficher la documentation appropriée. Note : certains attributs sont définis dans plusieurs documents. +</p></body></html> Find::Internal::FindDialog - Search for... Rechercher... - Sc&ope: &Contexte : - &Search &Rechercher - Search &for: Rec&herche : - Close Fermer - &Case sensitive Sensible à la &casse - &Whole words only &Mots complets uniquement - Search && Replace - + Remplacer && Suivant @@ -7505,62 +6386,50 @@ Add, modify, and remove document filters, which determine the documentation set Document courant - Find/Replace - + Rechercher/Remplacer - Enter Find String Entrer la chaîne à rechercher - Ctrl+E Ctrl+E - Find Next Suivant - Find Previous Précédent - Replace && Find Next Remplacer && Suivant - Ctrl+= Ctrl+= - Replace && Find Previous Remplacer && Précédent - Replace All Remplacer tout - Case Sensitive Sensible à la casse - Whole Words Only Mots complets uniquement - Use Regular Expressions Utiliser des expressions régulières @@ -7568,27 +6437,22 @@ Add, modify, and remove document filters, which determine the documentation set Find::Internal::FindWidget - Find Rechercher - Find: Rechercher : - Replace with: Remplacer par : - All Tout - ... ... @@ -7596,32 +6460,26 @@ Add, modify, and remove document filters, which determine the documentation set Find::SearchResultWindow - No matches found! Aucun résultat ! - Expand All Développer tout - Replace with: Remplacer avec : - Replace all occurrences Remplacer toutes les occurrences - Replace Remplacer - Search Results Résultat de la recherche @@ -7641,17 +6499,14 @@ Add, modify, and remove document filters, which determine the documentation set Emplacement de GDB : - Environment: Environnement : - This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. Ceci est soit vide, soit pointe vers un fichier contenant les commandes gdb qui seront exécutées immédiatement après le démarrage de gdb. - Gdb startup script: Script de démarrage de Gdb : @@ -7660,104 +6515,96 @@ Add, modify, and remove document filters, which determine the documentation set Comportement des paramètres des points d'arrêt dans les plugins - This is the slowest but safest option. Ceci est l'option la plus lente mais la plus sûre. - Try to set breakpoints in plugins always automatically. - Essaye de définir les points d'arrêt dans les plugins automatiquement. + Essayer de définir les points d'arrêt dans les plugins automatiquement. - Try to set breakpoints in selected plugins - Essaye de définir les points d'arrêt dans les plugins sélectionnés + Essayer de définir les points d'arrêt dans les plugins sélectionnés - Matching regular expression: Correspond à l'expression régulière : - Never set breakpoints in plugins automatically Ne jamais définir les points d'arrêt dans les plugins automatiquement - Gdb - Gdb + Gdb - Gdb timeout: - + Timeout 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. - + Ceci est le nombre de secondes que Qt Creator attendra avant +de clore un processus gdb qui ne répond pas. La valeur par défaut de 20 +secondes devrait suffire pour la plupart des applications, mais il peut arriver +que le chargement de grosses bibliothèques ou le listage de fichiers sources +prenne plus longtemps sur des machines lentes. Dans ce cas, cette valeur +devrait être augmentée. - When this option is checked, the debugger plugin attempts to extract full path information for all source files from gdb. This is a slow process but enables setting breakpoints in files with the same file name in different directories. - + Lorsque cette option est cochée, le plugin de débogage tente +d'extraire le chemin complet pour les fichiers sources depuis gdb. +C'est un procédé lent mais qui permet de placer des points d'arrêt +dans des fichiers ayant le même nom dans des répertoires différents. - Use full path information to set breakpoints - + Utiliser le chemin complet pour placer les points d'arrêt - Enable reverse debugging - Activer le débogage inversé + Activer le débogage inversé - 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. - Lorsque cette option est cochée, « Entrer dans » compresse plusieurs étapes en une dans certains cas, afin d'éviter une 'pollution' du débogage. Cela conduit par exemple + Lorsque cette option est cochée, « Entrer dans » compresse plusieurs étapes en une dans certains cas, afin d'éviter une 'pollution' du débogage. Cela conduit par exemple à passer le comptage de référence atomique, et un simple « Entrer dans » depuis une émission de signal conduit directement au slot qui y est connecté. - Skip known frames when stepping - Passer les trames connues en pas à pas + Passer les trames connues en pas à pas - Show a message box when receiving a signal - Afficher un message à la réception d'un signal + Afficher un message à la réception d'un signal - Behavior of Breakpoint Setting in Plugins - + Pierre : pour le coup c'est "breakpoint setting" qui se traduirait par "pose des points d'arrêt" ou qqchose du style mais je trouvais ça pompeux +francis: je propose "l'ajout" tout simplement ? + Comportement lors de l'ajout des points d'arrêt dans les plugins GenericMakeStep - Override %1: Écraser %1 : - Make arguments: Arguments de Make : - Targets: Cibles : @@ -7776,17 +6623,14 @@ name in different directories. Créer - Build - Compilation + Compilation - New configuration Nouvelle configuration - New Configuration Name: Nom de la nouvelle configuration : @@ -7794,22 +6638,18 @@ name in different directories. GenericProjectManager::Internal::GenericBuildSettingsWidget - Configuration Name: - Nom de la configuration : + Nom de la configuration : - Build directory: Répertoire de compilation : - Tool Chain: Chaîne d'outils : - Generic Manager Gestionnaire générique @@ -7817,18 +6657,15 @@ name in different directories. GenericProjectManager::Internal::GenericMakeStepConfigWidget - Make GenericMakestep display name. - Make + Make - Override %1: Écraser %1 : - <b>Make:</b> %1 %2 <b>Make : </b>%1 %2 @@ -7852,14 +6689,12 @@ name in different directories. Le projet %1 ne peut pas être ouvert. - Import Existing Project - + Importer un projet existant - Imports existing projects that do not use qmake or CMake. This allows you to use Qt Creator as a code editor. - + Importer un projet existant n'utilisant pas qmake ni CMake. Ceci vous permet d'utiliser Qt Creator comme éditeur de code. @@ -7873,29 +6708,24 @@ name in different directories. Projet générique - Import Existing Project - + Importation d'un projet existant - Project Name and Location - + Nom du projet et emplacement - Project name: Nom du projet : - Location: Emplacement : - Location - Emplacement + Emplacement Second Page Title @@ -7905,7 +6735,6 @@ name in different directories. Git::Internal::BranchDialog - Branches Branches @@ -7923,7 +6752,6 @@ name in different directories. Branches distantes - Checkout Checkout @@ -7936,68 +6764,55 @@ name in different directories. Impossible de trouver le dépôt de '%1'. - Diff Diff - Refresh Rafraîchir - Delete... Supprimer… - Delete Branch Supprimer la branche - Would you like to delete the branch '%1'? Souhaitez-vous supprimer la branche '%1' ? - Failed to delete branch Échec de suppression de la branche - Failed to create branch Échec de création de la branche - Failed to stash Échec du stash - Checkout failed Échec du Checkout - Would you like to create a local branch '%1' tracking the remote branch '%2'? Souhaitez-vous créer une branche locale '%1' pour la branche distante '%2' ? - Create branch Créer une branche - Failed to create a tracking branch tracking branch ? Échec de la création d'une branche de suivi - Remote Branches Branches distantes @@ -8013,22 +6828,18 @@ name in different directories. Sélectionner un dépôt Git - Select a Git Commit Sélectionner un commit Git - Select Git Repository Sélectionner un dépôt Git - Error Erreur - Selected directory is not a Git repository Le répertoire sélectionné n'est pas un dépôt Git @@ -8036,80 +6847,66 @@ name in different directories. Git::Internal::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. marchera ou marcheront ? Le etc laisse sous entendre qu'il y aurait d'autres choses qui ne marcheraient pas. - Notez que le plugin git pour QtCreator n'est pas capable d'intéragir directement avec le serveur. Ainsi, l'identification ssh manuelle etc. ne marcheront pas. + Notez que le plugin git pour Qt Creator n'est pas capable d'intéragir directement avec le serveur. Ainsi, l'identification ssh manuelle etc. ne marcheront pas. Unable to determine the repository for %1. Impossible de déterminer le dépôt de %1. - Unable to parse the file output. Impossible d'analyser le fichier de sortie. - Executing: %1 %2 Executing: <executable> <arguments> Exécution de : %1 %2 - Waiting for data... En attente de données... - Git Diff Git Diff - Git Diff %1 Git Diff %1 - Git Diff Branch %1 Git diff branche %1 - Git Log Git Log - Git Log %1 Git Log %1 - Cannot describe '%1'. impossible de décrire '%1'. - Git Show %1 Git Show %1 - Git Blame %1 Git blame %1 - Unable to checkout %1 of %2: %3 Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message Impossible de réaliser le checkout %1 de %2 : %3 - Unable to add %n file(s) to %1: %2 Impossible d'ajouter %n fichier dans %1 : %2 @@ -8117,7 +6914,6 @@ name in different directories. - Unable to remove %n file(s) from %1: %2 Impossible de supprimer %n fichier de %1 : %2 @@ -8125,12 +6921,10 @@ name in different directories. - Unable to reset %1: %2 Impossible de réinitialiser %1 : %2 - Unable to reset %n file(s) in %1: %2 Impossible de réinitialiser %n fichier dans %1 : %2 @@ -8138,108 +6932,89 @@ name in different directories. - Unable to checkout %1 of %2 in %3: %4 Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message - + Impossible de réaliser le checkout %1 de %2 dans %3 : %4 - Unable to find parent revisions of %1 in %2: %3 Failed to find parent revisions of a SHA1 for "annotate previous" - + Impossible de trouver la révision parente de %1 dans %2 : %3 - Invalid revision - + Révision invalide - Unable to retrieve branch of %1: %2 - + Impossible d'obtenir la branche dans %1 : %2 - Unable to retrieve top revision of %1: %2 - + Impossible d'obtenir la dernière révision dans %1 : %2 - Unable to describe revision %1 in %2: %3 - + Impossible de décrire la révision %1 dans %2 : %3 - Stash Description - + Description du stash - Description: Description : - Unable to resolve stash message '%1' in %2 Look-up of a stash via its descriptive message failed. - + Impossible de trouver le stash correspondant au message '%1' dans %2 - Unable to run a 'git branch' command in %1: %2 - + Impossible d'exécuter la commande 'git branch' dans %1 : %2 - Unable to run 'git show' in %1: %2 - + Impossible d'exécuter 'git show' dans %1 : %2 - Unable to run 'git clean' in %1: %2 - + Impossible d'exécuter 'git clean' dans %1 : %2 - There were warnings while applying %1 to %2: %3 - + Avertissements lors de l'application du patch %1 dans %2 : +%3 - Unable apply patch %1 to %2: %3 - + Impossible d'appliquer le patch %1 dans %2 : %3 - Unable to restore stash %1: %2 - + Impossible de restaurer le stash %1 : %2 - Unable to restore stash %1 to branch %2: %3 - + Impossible de restaurer le stash %1 dans la branche %2 : %3 - Unable to remove stashes of %1: %2 - + Impossible de supprimer des stashes de %1 : %2 - Unable to remove stash %1 of %2: %3 - + Impossible de supprimer le stash %1 de %2 : %3 - Unable retrieve stash list of %1: %2 - + Impossible d'obtenir une liste des stashes dans %1 : %2 - Unable to determine git version: %1 - + impossible de déterminer la version git : %1 Unable to checkout %n file(s) in %1: %2 @@ -8249,7 +7024,6 @@ name in different directories. - Unable stash in %1: %2 Impossible d'utiliser stash dans %1 : %2 @@ -8262,32 +7036,26 @@ name in different directories. Impossible d'exécuter show : %1 : %2 - Changes Modifications - You have modified files. Would you like to stash your changes? Vous avez modifié des fichiers. Souhaitez-vous mettre vos changements dans le stash ? - Unable to obtain the status: %1 Impossible d'obtenir le statut : %1 - The repository %1 is not initialized yet. Le dépôt %1 n'est pas encore initialisé. - You did not checkout a branch. - + Aucun checkout de branche n'a été effectué. - Committed %n file(s). "commité" is common at the Oslo office, I don't know about France @@ -8299,7 +7067,6 @@ name in different directories. - Unable to commit %n file(s): %1 @@ -8310,32 +7077,26 @@ name in different directories. - Revert Rétablir - The file has been changed. Do you want to revert it? Le fichier a été modifié. Voulez-vous le rétablir ? - The file is not modified. Le fichier n'a pas été modifié. - The command 'git pull --rebase' failed, aborting rebase. - + La commande 'git pull --rebase' a échoué, annulation du rebase. - Git SVN Log - + Log Git SVN - There are no modified files. Il n'y a aucun fichier modifié. @@ -8343,22 +7104,18 @@ name in different directories. Git::Internal::GitPlugin - &Git &Git - Diff Current File Réaliser un diff du fichier courant - Diff "%1" Réaliser un diff de "%1" - Alt+G,Alt+D Alt+G,Alt+D @@ -8375,83 +7132,67 @@ name in different directories. Alt+G,Alt+S - Log File Réaliser un log du fichier - Log of "%1" Réaliser un log de "%1" - Alt+G,Alt+L Alt+G,Alt+L - Blame Traduction autre ? Blâmer - Blame for "%1" Blâmer pour "%1" - Alt+G,Alt+B Alt+G,Alt+B - Undo Changes Annuler les changements - Undo Changes for "%1" Annuler les changements de "%1" - Alt+G,Alt+U Alt+G,Alt+U - Stage File for Commit Ajouter le fichier au staging pour commit - Stage "%1" for Commit Ajouter "%1" au staging pour commit - Alt+G,Alt+A Alt+G,Alt+A - Unstage File from Commit Retirer le fichier du staging pour commit - Unstage "%1" from Commit Retirer %1 du staging pour commit - Diff Current Project Réaliser un diff du projet courant - Diff Project "%1" Réaliser un diff du projet "%1" @@ -8464,17 +7205,14 @@ name in different directories. Statut du projet "%1" - Log Project Réaliser un log du projet - Log Project "%1" Réaliser un log du projet "%1" - Alt+G,Alt+K Alt+G,Alt+K @@ -8483,158 +7221,129 @@ name in different directories. Annuler les changements sur le projet - Stash Trad ? Mettre dans le stash - Saves the current state of your work. Sauvegarde l'état actuel de votre travail. - Clean Project... - + Nettoyer le projet... - Clean Project "%1"... - + Nettoyer le projet "%1"... - Diff Repository - + Réaliser un diff du dépôt - Repository Status - + Statut du dépôt - Log Repository - + Log du dépôt - Apply Patch - + Appliquer un patch - Apply "%1" - + Appliquer "%1" - Apply Patch... - + Appliquer un patch... - Undo Repository Changes - + Annuler les changements dans le dépôt - Create Repository... - + Création du dépôt... - Clean Repository... - + Nettoyer le dépôt... - Stash Snapshot... - + Faire un Snapshop du stash... - Saves the current state of your work and resets the repository. - + Sauvegarde l'état actuel de votre travail et réinitialise le dépôt. - Pull Pull - Stash Pop stash encore ? Stash Pop - Restores changes saved to the stash list using "Stash". Restaurer les changements sauvés dans la liste de stash à l'aide de "Stash". - Commit... Commit... - Alt+G,Alt+C Alt+G,Alt+C - Push Faire un push ou push tout court ? Push - Branches... Branches... - Stashes... - + Stashes... - Would you like to revert all pending changes to the repository %1? - + Souhaitez vous annuler tous les changements non sauvés dans le dépôt +%1 ? - Unable to retrieve file list - + Impossible d'obtenir la liste des fichiers - Repository clean - + Dépôt propre - The repository is clean. - + Le dépôt est propre. - Patches (*.patch *.diff) - + Patches (*.patch *.diff) - Choose patch - + Choisir un patch - Patch %1 successfully applied to %2 - + Patch %1 appliqué avec succès dans %2 List Stashes @@ -8642,42 +7351,34 @@ name in different directories. Lister les stashes - Show Commit... Afficher le commit... - Subversion Subversion - Log - + Log - Fetch - + Fetch - Commit Faire un commit - Diff Selected Files Faire un diff sur tous les fichiers sélectionnés - &Undo Annu&ler - &Redo &Refaire @@ -8686,7 +7387,6 @@ name in different directories. Impossible de trouver le répertoire de travail - Revert Rétablir @@ -8695,27 +7395,22 @@ name in different directories. Souhaitez-vous rétablir toutes les modifications en attente sur le projet ? - Another submit is currently being executed. Un autre submit est actuellement exécuté. - Cannot create temporary file: %1 Impossible de créer un fichier temporaire : %1 - Closing git editor Fermeture de l'éditeur git - Do you want to commit the change? Voulez vous envoyer les changements ? - The commit message check failed. Do you want to commit the change? La vérification du message de commit a échoué. Voulez-vous soumettre vos modifications ? @@ -8723,7 +7418,6 @@ name in different directories. Git::Internal::GitSettings - The binary '%1' could not be located in the path '%2' Le binaire '%1' n'a pas pu être trouvé dans le chemin '%2' @@ -8731,7 +7425,6 @@ name in different directories. Git::Internal::GitSubmitEditor - Git Commit Git commit @@ -8739,42 +7432,34 @@ name in different directories. Git::Internal::GitSubmitPanel - General Information Informations générales - Repository: Dépôt : - repository dépôt - Branch: Branche : - branch branche - Commit Information Informations de commit - Author: Auteur : - Email: Email : @@ -8782,12 +7467,10 @@ name in different directories. Git::Internal::LocalBranchModel - <New branch> <Nouvelle branche> - Type to create a new branch Type pas facile à traduire dans ce contexte... Taper ? Saisir pour créer une nouvelle branche @@ -8800,7 +7483,6 @@ name in different directories. Variables d'environnement - PATH: PATH : @@ -8809,22 +7491,18 @@ name in different directories. Copier depuis le système - <b>Note:</b> <b>Note :</b> - Git needs to find Perl in the environment as well. Git doit pouvoir trouver Perl dans l'environnement. - Log commit display count: Nombre de commits à afficher dans le log : - Note that huge amount of commits might take some time. Notez qu'un grand nombre de commit pourrait prendre un certain temps. @@ -8837,70 +7515,57 @@ name in different directories. Invite lors du submit - Git Git - Git Settings Paramètres de git - Omit date from annotation output Ne pas horodater l'annotation de sortie - Environment Variables - + Variables d'environnement - From System - + Copier depuis le système - Miscellaneous - + Divers - Timeout: - + Timeout : - s - + s - Prompt on submit - + Invite lors du submit - Ignore whitespace changes in annotation - + Ignorer les changements relatifs aux espaces dans les annotations - Use "patience diff" algorithm - + Utiliser l'algorithme "patience diff" - Pull with rebase - + Utiliser "pull" avec "rebase" GitCommand - '%1' failed (exit code %2). @@ -8909,7 +7574,6 @@ name in different directories. - '%1' completed (exit code %2). @@ -8921,32 +7585,26 @@ name in different directories. HelloWorld::Internal::HelloWorldPlugin - Say "&Hello World!" Dit "&Bonjour tout le monde!" - &Hello World &Bonjour tout le monde - Hello world! Bonjour tout le monde ! - Hello World PushButton! Bouton bonjour tout le monde ! - Hello World! Bonjour tout le monde ! - Hello World! Beautiful day today, isn't it? Bonjour tout le monde! Belle journée aujourd'hui, n'est-ce pas ? @@ -8954,12 +7612,10 @@ name in different directories. HelloWorld::Internal::HelloWorldWindow - Focus me to activate my context! Donnez moi le focus pour activer mon contexte ! - Hello, world! Bonjour tout le monde ! @@ -8971,7 +7627,6 @@ name in different directories. Ajouter une nouvelle page - Print Document Imprimer le document @@ -8999,7 +7654,6 @@ name in different directories. Help::Internal::DocSettingsPage - Documentation Documentation @@ -9008,12 +7662,10 @@ name in different directories. Aide - Add Documentation Ajouter de la documentation - Qt Help Files (*.qch) Fichiers d'aide Qt (*.qch) @@ -9030,7 +7682,6 @@ name in different directories. Help::Internal::FilterSettingsPage - Filters Filtres @@ -9042,7 +7693,6 @@ name in different directories. Help::Internal::HelpIndexFilter - Help index Index de l'aide @@ -9050,7 +7700,6 @@ name in different directories. Help::Internal::HelpMode - Help Aide @@ -9058,158 +7707,130 @@ name in different directories. Help::Internal::HelpPlugin - - Contents Contenu - - Index Index - Search Rechercher - Bookmarks Signets - Home Accueil - Previous Précédent - Next Suivant - Add Bookmark Ajouter un signet - Previous Page Page précédente - Next Page Page suivante - Context Help Aide contextuelle - Activate Index in Help mode Activer l'index en mode aide - Activate Contents in Help mode Activer le contenu en mode aide Activate Search in Help mode - Activer la recherche en mode aide + Activer la recherche en mode aide - Increase Font Size Augmenter la taille de la police - Ctrl++ Ctrl++ - Decrease Font Size Diminuer la taille de la police - Ctrl+- Ctrl+- - Reset Font Size Réinitialiser la taille de la police - 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 + Activer les signets dans le mode aide + + Open Pages Pages ouvertes - Activate Open Pages in Help mode Activer les pages ouvertes en mode aide - Go to Help Mode Passer au mode Aide - Close current Page Fermer la page courante - Unfiltered Sans filtre - <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> <html><head><title>Aucune documentation</title></head><body><br/><center><b>%1</b><br/>Aucune documentation disponible.</center></body></html> - Filtered by: better than "filtré par" in the context Filtre : @@ -9234,37 +7855,30 @@ name in different directories. Tout sélectionner - Indexing Indexation - Indexing Documentation... Indexation de la documentation… - Open Link Ouvrir le lien - Open Link as New Page Ouvrir le lien en tant que nouvelle page - Copy Link Copier le lien - Copy Copier - Reload Recharger @@ -9276,12 +7890,10 @@ name in different directories. Ouvrir le lien dans un nouvel onglet - <title>about:blank</title> <title>À propos : vide</title> - <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> <title>Erreur 404...</title><div align="center"><br><br><h1>La page est introuvable</h1><br><h3>'%1'</h3></div> @@ -9311,17 +7923,14 @@ name in different directories. IndexWindow - &Look for: &Rechercher : - Open Link Ouvrir le lien - Open Link as New Page Ouvrir le lien en tant que nouvelle page @@ -9333,7 +7942,6 @@ name in different directories. InputPane - Type Ctrl-<Return> to execute a line. Taper Ctrl-<Retour> pour exécuter une ligne. @@ -9341,12 +7949,10 @@ name in different directories. Locator - Filters Filtres - Locator Localisateur @@ -9358,170 +7964,137 @@ name in different directories. Ouvrir le fichier - Bauhaus MainWindowClass Bauhaus - &File &Fichier - &New... &Nouveau... - Ctrl+N Ctrl+N - &Open... &Ouvrir... - Ctrl+O Ctrl+O - Recent Files Fichiers récents - &Save &Enregistrer - Ctrl+S Ctrl+S - Save &As... Enregistrer &sous... - &Preview A&perçu - Ctrl+R Ctrl+R - &Preview with Debug Aperçu avec &débogage - Ctrl+D Ctrl+D - &Quit &Quitter - &Edit &Édition - Ctrl+Z Ctrl+Z - Ctrl+Y Ctrl+Y - Ctrl+Shift+Z Ctrl+Shift+Z - &Copy Cop&ier - &Cut Co&uper - &Paste C&oller - &Delete &Supprimer - Del Suppr - Backspace Backspace - &View &Vue - &Help &Aide - &About... À p&ropos… - Properties Propriétés - Could not open file <%1> Impossible d'ouvrir le fichier <%1> - Qml Errors: Erreurs QML : - %1 %2:%3 - %4 %1 %2:%3 - %4 - %1:%2 - %3 @@ -9532,7 +8105,6 @@ name in different directories. Quitter - Ctrl+Q Ctrl+Q @@ -9636,12 +8208,10 @@ dans votre fichier .pro. MakeStep - Override %1: Écraser %1 : - Make arguments: Arguments de Make : @@ -9649,9 +8219,6 @@ dans votre fichier .pro. MyMain - - - N/A Indisponible @@ -9659,7 +8226,6 @@ dans votre fichier .pro. NickNameDialog - Nick Names Noms @@ -9675,12 +8241,10 @@ dans votre fichier .pro. OpenWithDialog - Open File With... Ouvrir le fichier avec... - Open file extension with: Ouvrir ce type d'extension avec : @@ -9715,13 +8279,11 @@ dans votre fichier .pro. Perforce::Internal::ChangeNumberDialog - Change Number ? Numéro du changement - Change Number: ? Numéro du changement : @@ -9730,22 +8292,18 @@ dans votre fichier .pro. Perforce::Internal::PendingChangesDialog - P4 Pending Changes Modifications pour P4 en attente - Submit Envoyer - Cancel Annuler - Change %1: %2 Modification %1 : %2 @@ -9753,47 +8311,38 @@ dans votre fichier .pro. Perforce::Internal::PerforcePlugin - &Perforce &Perforce - Edit Éditer - Edit "%1" Éditer "%1" - Alt+P,Alt+E Alt+P,Alt+E - Edit File Éditer le fichier - Add Ajouter - Add "%1" Ajouter "%1" - Alt+P,Alt+A Alt+P,Alt+A - Add File Ajouter le fichier @@ -9806,83 +8355,66 @@ dans votre fichier .pro. Supprimer "%1" - Delete File Supprimer le fichier - Revert Rétablir - Revert "%1" Rétablir "%1" - Alt+P,Alt+R Alt+P,Alt+R - Revert File Rétablir le fichier - - Diff Current File Faire un diff du fichier courant - Diff "%1" Faire un diff de "%1" - Diff Current Project/Session Diff du projet courant/de la session courante - Diff Project "%1" Diff du projet "%1" - Alt+P,Alt+D Alt+P,Alt+D - Diff Opened Files Diff des fichiers ouverts - Opened Ouvert - Alt+P,Alt+O Alt+P,Alt+O - Submit Project Soumettre le projet - Alt+P,Alt+S Alt+P,Alt+S - Pending Changes... Changements en attente... @@ -9891,274 +8423,221 @@ dans votre fichier .pro. Mettre à jour le projet ou la session courante - Update Project "%1" Mettre à jour le projet "%1" - Describe... Décrire... - - Annotate Current File Annoter le fichier courant - Annotate "%1" Annoter "%1" - Annotate... Annoter... - - Filelog Current File Journal du fichier courant - Filelog "%1" Journal du fichier "%1" - Alt+P,Alt+F Alt+P,Alt+F - Filelog... Journal... - Update All Tout mettre à jour - Delete... Supprimer… - Delete "%1"... Supprimer "%1"… - Log Project Réaliser un log du projet - Log Project "%1" Réaliser un log du projet "%1" - Submit Project "%1" - + Soumettre le projet "%1" - Update Current Project - + Mettre à jour le projet courant - Revert Unchanged - + Restaurer les fichiers non altérés - Revert Unchanged Files of Project "%1" - + Restaurer les fichiers non altérés du projet "%1" - Revert Project - + Restaurer le projet - Revert Project "%1" - + Restaurer le projet "%1" - Repository Log - + Log du dépôt - Submit Envoyer - Diff Selected Files Faire un diff sur tous les fichiers sélectionnés - &Undo Annu&ler - &Redo &Refaire - - p4 revert Restauration p4 - The file has been changed. Do you want to revert it? Le fichier a été modifié. Voulez-vous le restaurer ? - Do you want to revert all changes to the project "%1"? - + Souhaitez-vous annuler toutes les modifications sur le projet "%1" ? - Another submit is currently executed. Un autre envoi est en cours d'exécution. - Cannot create temporary file. Impossible de créer un fichier temporaire. - Project has no files Le projet n'a pas de fichiers - p4 annotate Anotation p4 - p4 annotate %1 Anotation p4 %1 - p4 filelog Journal p4 - p4 filelog %1 Journal p4 %1 - p4 submit failed: %1 - + Échec de la soumission p4 : %1 - Error running "where" on %1: %2 Failed to run p4 "where" to resolve a Perforce file name to a local file system name. - + Erreur lors de l'exécution de "where" sur %1 : %2 - The file is not mapped File is not managed by Perforce - + Ce fichier n'est pas "mappé" ? +pierre: oups bien vu j'avais traduit le commentaire ! :D nouvelle suggestion... +francis : voila une nouvelle suggestion :) + Le fichier n'est pas référencé - Perforce repository: %1 - + Dépôt perforce : %1 - Perforce: Unable to determine the repository: %1 - + Perforce : impossible de déterminer le dépôt : %1 - Executing: %1 - Exécution : %1 + Exécution : %1 - The process terminated with exit code %1. Le processus s'est terminé avec le code de sortie %1. - The process terminated abnormally. Le processus s'est terminé de façon anormale. - Could not start perforce '%1'. Please check your settings in the preferences. Impossible de démarrer perfoce '%1'. Veuillez vérifier les réglages dans les préférences. - Perforce did not respond within timeout limit (%1 ms). Perforce n'a pas répondu dans la limite de temps (%1 ms). - Unable to write input data to process %1: %2 - + Impossible d'écrire des données entrantes dans le processus %1 : %2 - Perforce is not correctly configured. - + Perforce n'est pas configuré correctement. - p4 diff %1 p4 diff %1 - p4 describe %1 p4 describe %1 - Closing p4 Editor Ferme l'éditeur p4 - Do you want to submit this change list? Voulez-vous soumettre cette liste de changement ? - The commit message check failed. Do you want to submit this change list La vérification du message de commit a échoué. Voulez-vous soumettre cette liste de changement - Cannot open temporary file. Impossible d'ouvrir le fichier temporaire. @@ -10171,12 +8650,10 @@ dans votre fichier .pro. Échec de "p4 submit" (code de retour %1). - Pending change Changement restant - Could not submit the change, because your workspace was out of date. Created a pending submit instead. Impossible de soumettre le changement, votre workspace n'est pas à jour. Un submit en attente a été créé à la place. @@ -10196,7 +8673,6 @@ dans votre fichier .pro. Perforce::Internal::PerforceSubmitEditor - Perforce Submit Perforce Submit @@ -10204,12 +8680,10 @@ dans votre fichier .pro. Perforce::Internal::PromptDialog - Perforce Prompt Prompt Perforce - OK OK @@ -10245,87 +8719,71 @@ dans votre fichier .pro. Port P4 : - Test Test - Perforce Perforce - Configuration - + Configuration - P4 command: - + Commande P4 : - Environment Variables - + Variables d'environnement - P4 client: - + Client P4 : - P4 user: - + Utilisateur P4 : - P4 port: - + Port P4 : - Miscellaneous - + Divers - Timeout: - + Timeout : - s - + s - Prompt on submit - + Invite lors du submit - Log count: - + Nombre d'entrées de log : Perforce::Internal::SettingsPageWidget - Perforce Command Commande Perforce - Testing... En test... - Test succeeded (%1). - + Test réussi (%1). Test succeeded. @@ -10335,22 +8793,18 @@ dans votre fichier .pro. Perforce::Internal::SubmitPanel - Submit Envoyer - Change: Modification : - Client: Client : - User: Utilisateur : @@ -10358,27 +8812,22 @@ dans votre fichier .pro. PluginDialog - Details Détails - Error Details Détails de l'erreur - Installed Plugins - Plugins installés + Modules installés - Plugin Details of %1 - Détail sur plugin %1 + Détails sur le module %1 - Plugin Errors of %1 Erreurs du plugins %1 @@ -10386,24 +8835,18 @@ dans votre fichier .pro. PluginManager - - The plugin '%1' does not exist. Le plugin '%1' n'existe pas. - Unknown option %1 Option '%1' non reconnue - The option %1 requires an argument. L'option %1 requiert un argument. - - Failed Plugins Plugins défectueux @@ -10411,77 +8854,62 @@ dans votre fichier .pro. PluginSpec - '%1' misses attribute '%2' L'attribute '%1' est manquant pour '%2' - '%1' has invalid format '%1' a un format invalide - Invalid element '%1' Élément invalide '%1' - Unexpected closing element '%1' Élément fermant inattendu '%1' - Unexpected token Lexème inattendu - Expected element '%1' as top level element L'élément '%1' devrait être un élément racine - Resolving dependencies failed because state != Read La résolution des dépendances a échoué car l'état courant est différent de "Lecture" - Could not resolve dependency '%1(%2)' Impossible de résoudre la dépendance '%1(%2)' - Loading the library failed because state != Resolved Le chargement de la bibliothèque a échoué car l'état courant est différent de "Résolu" - Plugin is not valid (does not derive from IPlugin) L'extension n'est pas valide (elle n'est pas une sous-classe de IPlugin) - Initializing the plugin failed because state != Loaded L'initialisation de l'extension a échoué car l'état courant est différent de "chargé" - Internal error: have no plugin instance to initialize Erreur interne : pas d'instance de l'extension à initialiser - Plugin initialization failed: %1 L'initialisation de l'extension a échoué: %1 - Cannot perform extensionsInitialized because state != Initialized Impossible d'exécuter extensionsInitialized car l'état est différent de "Initialisé" - Internal error: have no plugin instance to perform extensionsInitialized Erreur interne: aucune instance de l'extention sur laquelle exécuter extensionsInitialized @@ -10506,30 +8934,47 @@ dans votre fichier .pro. <font color="#ff0000">Impossible de lancer le processus %1 </b></font> - <font color="#0000ff">Starting: "%1" %2</font> - <font color="#0000ff">Lancement : %1 %2</font> + <font color="#0000ff">Lancement : %1 %2</font> - <font color="#0000ff">The process "%1" exited normally.</font> - <font color="#0000ff">Le processus %1 s'est .terminé normalement.</font> + <font color="#0000ff">Le processus %1 s'est .terminé normalement.</font> - <font color="#ff0000"><b>The process "%1" exited with code %2.</b></font> - <font color="#ff0000"><b>Le processus "%1" s'est terminé avec le code de sortie %2.</b></font> + <font color="#ff0000"><b>Le processus "%1" s'est terminé avec le code de sortie %2.</b></font> - <font color="#ff0000"><b>The process "%1" crashed.</b></font> - <font color="#ff0000"><b>Le processus "%1" a crashé </b></font> + <font color="#ff0000"><b>Le processus "%1" a crashé </b></font> - <font color="#ff0000"><b>Could not start process "%1"</b></font> - <font color="#ff0000"><b>Impossible de lancer le processus "%1" </b></font> + <font color="#ff0000"><b>Impossible de lancer le processus "%1" </b></font> + + + Starting: "%1" %2 + + Commence : "%1" %2 + + + + The process "%1" exited normally. + Le processus "%1" s'est terminé normalement. + + + The process "%1" exited with code %2. + Le processus "%1" s'est terminé avec le code %2. + + + The process "%1" crashed. + Le processus "%1" a crashé. + + + Could not start process "%1" + Impossible de démarrer le processus "%1" @@ -10542,7 +8987,6 @@ dans votre fichier .pro. - Finished %1 of %n build steps %1 étape de compilation sur %n terminée @@ -10550,35 +8994,40 @@ dans votre fichier .pro. - Compile Category for compiler isses listened under 'Build Issues' Compilation - Build System Category for build system isses listened under 'Build Issues' - + Système de compilation + + + Canceled build. + Compilation annulée. + + + When executing build step '%1' + Lors de l'exécution de l'étape '%1' + + + Running build steps for project %1... + Exécution des étapes de compilation pour le projet %1... - <font color="#ff0000">Canceled build.</font> - <font color="#ff0000">Compilation annulée.</font> + <font color="#ff0000">Compilation annulée.</font> - Build Compilation - - <font color="#ff0000">Error while building project %1 (target: %2)</font> - <font color="#ff0000">Erreur lors de la compilation du projet %1 (cible : %2)</font> + <font color="#ff0000">Erreur lors de la compilation du projet %1 (cible : %2)</font> - Error while building project %1 (target: %2) Erreur à la compilation du projet %1 (cible : %2) @@ -10587,52 +9036,42 @@ dans votre fichier .pro. <font color="#ff0000">Erreur lors de la compilation du projet %1</font> - - <font color="#ff0000">When executing build step '%1'</font> - <font color="#ff0000">lors de l'éxecution de l'étape '%1'</font> + <font color="#ff0000">lors de l'éxecution de l'étape '%1'</font> Error while building project %1 Erreur à la compilation du projet %1 - <b>Running build steps for project %2...</b> - <b>Exécution des étapes de compilation pour le projet %2...</b> + <b>Exécution des étapes de compilation pour le projet %2...</b> ProjectExplorer::CustomExecutableRunConfiguration - Custom Executable custom ici a plutôt le sens de celui utilisé, usage, mais je sais pas comment le traduire ? Exécutable personnalisé - Could not find the executable, please specify one. Exécutable introuvable, merci d'en spécifier un. - Clean Environment - Environnement vierge + Environnement vierge - System Environment Environnement système - Build Environment Environnement de compilation - - Run %1 Exécuter %1 @@ -10640,8 +9079,6 @@ dans votre fichier .pro. ProjectExplorer::CustomExecutableRunConfigurationFactory - - Custom Executable Exécutable personnalisé @@ -10649,34 +9086,28 @@ dans votre fichier .pro. ProjectExplorer::EnvironmentModel - <UNSET> <NON-DÉFINI> - Variable Variable - Value Valeur - <VARIABLE> Name when inserting a new variable <VARIABLE> - <VALUE> Value when inserting a new variable <VALEUR> - <VARIABLE> <VARIABLE> @@ -10688,43 +9119,35 @@ dans votre fichier .pro. ProjectExplorer::EnvironmentWidget - &Edit &Édition - &Add &Ajouter - &Reset &Réinitialiser - &Unset &RàZ - Unset <b>%1</b> text included in the summary <b>%1</b> remis à zéro - Set <b>%1</b> to <b>%2</b> <b>%1</b> définit à <b>%2</b> - Using <b>%1</b> utilisation de <b>%1</b> - Using <b>%1</b> and Utilisation de <b>%1</b> et @@ -10736,7 +9159,6 @@ dans votre fichier .pro. ProjectExplorer::Internal::AllProjectsFilter - Files in any project Fichiers dans n'importe quel projet @@ -10744,13 +9166,11 @@ dans votre fichier .pro. ProjectExplorer::Internal::AllProjectsFind - All Projects lower "t" at the beginning because this is indented after "Rechercher dans..." tout les projets - File &pattern: Schéma de fichier? &Motif de fichier : @@ -10766,12 +9186,10 @@ dans votre fichier .pro. ProjectExplorer::Internal::BuildSettingsWidget - &Clone Selected &Cloner la version sélectionnée - Build Steps Étapes de compilation @@ -10780,27 +9198,22 @@ dans votre fichier .pro. Éditer la configuration de compilation : - No build settings available Pas de paramètres de compilation disponibles - Edit build configuration: Éditer la configuration de compilation : - Add Ajouter - Remove Supprimer - Clean Steps Étapes de nettoyage @@ -10809,12 +9222,10 @@ dans votre fichier .pro. <a href="#">Rendre %1 actif.</a> - New Configuration Name: Nom de la nouvelle configuration : - Clone configuration Configuration du clone @@ -10822,7 +9233,6 @@ dans votre fichier .pro. ProjectExplorer::Internal::BuildStepsPage - No Build Steps Aucune étape de compilation @@ -10843,47 +9253,38 @@ dans votre fichier .pro. Supprimer une étape de compilation - Build Steps Étapes de compilation - Clean Steps Étapes de nettoyage - Move Up Déplacer vers le haut - Move Down Déplacer vers le bas - Remove Item Supprimer l'élément - Removing Step failed Échec de la suppression de l'étape - Can't remove build step while building Impossible de supprimer une étape de compilation pendant la compilation - Add Clean Step Ajouter une étape de nettoyage - Add Build Step Ajouter une étape de compilation @@ -10891,8 +9292,6 @@ dans votre fichier .pro. ProjectExplorer::Internal::CompileOutputWindow - - Compile Output Sortie de compilation @@ -10900,27 +9299,22 @@ dans votre fichier .pro. ProjectExplorer::Internal::CoreListenerCheckingForRunningBuild - Cancel Build && Close Annuler la compilation et fermer - Do not Close Ne pas fermer - Close Qt Creator? Fermer Qt Creator ? - A project is currently being built. Un projet est en cours de compilation. - Do you want to cancel the build process and close Qt Creator anyway? Voulez-vous annuler le processus de compilation et fermer Qt Creator ? @@ -10928,7 +9322,6 @@ dans votre fichier .pro. ProjectExplorer::Internal::CurrentProjectFilter - Files in current project Fichiers dans le projet courant @@ -10936,13 +9329,11 @@ dans votre fichier .pro. ProjectExplorer::Internal::CurrentProjectFind - Current Project lower character at the beginning because this is indented after "Rechercher dans..." projet courant - File &pattern: &Motif de fichier : @@ -10950,62 +9341,50 @@ dans votre fichier .pro. ProjectExplorer::Internal::CustomExecutableConfigurationWidget - Name: Nom : - Executable: Exécutable : - Arguments: Arguments : - Working Directory: Répertoire de travail : - Run in &Terminal Lancer dans un &terminal - Run Environment Environnement d'éxecution - Clean Environment Environnement de nettoyage - System Environment Environnement système - Build Environment Environnement de compilation - No Executable specified. Aucun exécutable spécifié. - Running executable: <b>%1</b> %2 Exécution en cours : <b>%1</b> %2 - Base environment for this runconfiguration: Environnement de base pour cette configuration d'éxecution : @@ -11046,7 +9425,6 @@ dans votre fichier .pro. Encodage de fichier par défaut : - Default file encoding: Encodage de fichier par défaut : @@ -11054,12 +9432,10 @@ dans votre fichier .pro. ProjectExplorer::Internal::FolderNavigationWidgetFactory - File System Système de fichier - Synchronize with Editor Synchroniser avec l'éditeur @@ -11082,7 +9458,6 @@ dans votre fichier .pro. Passer à la session - Session Manager Gestionnaire de session @@ -11099,73 +9474,66 @@ dans votre fichier .pro. Supprimer la session - <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">What is a Session?</a> - <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Qu'est ce qu'une session ?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Qu'est ce qu'une session ?</a> - &New &Nouveau - &Rename &Renommer - C&lone C&lone - &Delete &Supprimer - &Switch to &Basculer vers - - New session name Nom de la nouvelle session - Rename session Renommer la session + + <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">Qu'est-ce qu'une session?</a> + ProjectExplorer::Internal::OutputPane - Re-run this run-configuration Relancer cette configuration de lancement - - Stop Arrêter - + Application Output Window + Fenêtre de sortie de l'application + + The application is still running. L'application est en cours d'éxecution. - Force it to quit? l'application La forcer à quitter ? - Force Quit Forcer quitter @@ -11174,7 +9542,6 @@ dans votre fichier .pro. Ctrl+Shift+R - Application Output Sortie de l'application @@ -11183,7 +9550,6 @@ dans votre fichier .pro. L'application est toujours en cours d'exécution. Veuillez la fermer d'abord. - Unable to close Impossible de fermer @@ -11191,9 +9557,14 @@ dans votre fichier .pro. ProjectExplorer::Internal::OutputWindow - Application Output Window - Fenêtre de sortie de l'application + Fenêtre de sortie de l'application + + + Additional output omitted + + Sortie supplémentaire omise + @@ -11203,8 +9574,6 @@ dans votre fichier .pro. Étape personnalisée - - Custom Process Step item in combobox Étape personnalisée @@ -11213,12 +9582,10 @@ dans votre fichier .pro. ProjectExplorer::Internal::ProcessStepConfigWidget - <b>%1</b> %2 %3 %4 <b>%1</b> %2 %3 %4 - (disabled) (désactivé) @@ -11226,12 +9593,10 @@ dans votre fichier .pro. ProjectExplorer::Internal::ProcessStepWidget - Name: Nom : - Command: Commande : @@ -11248,17 +9613,14 @@ dans votre fichier .pro. Activer les étapes personnalisés - Enable custom process step Activer les étapes personnalisés - Working directory: Répertoire de travail : - Command arguments: Arguments de la commande : @@ -11274,7 +9636,6 @@ dans votre fichier .pro. Projets - General Général @@ -11282,13 +9643,11 @@ dans votre fichier .pro. ProjectExplorer::Internal::ProjectFileFactory - Project File Factory ProjectExplorer::ProjectFileFactory display name. - + Fabrique de fichiers de projets - Could not open the following project: '%1' Impossible d'ouvrir le projet '%1' @@ -11296,8 +9655,6 @@ dans votre fichier .pro. ProjectExplorer::Internal::ProjectFileWizardExtension - - <None> No version control system selected ---------- @@ -11305,19 +9662,16 @@ No project selected <aucun> - Failed to add one or more files to project '%1' (%2). Impossible d'ajouter un ou plusieurs fichier au projet '%1' (%2). - A version control system repository could not be created in '%1'. impossible de créer un dépot de système de gestion de version dans '%1'. - Failed to add '%1' to the version control system. Échec de l'ajout de '%1' au système de gestion de version. @@ -11325,17 +9679,14 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidget - Simplify tree Simplifier l'arbre - Hide generated files Cacher les fichiers générés - Synchronize with Editor Synchroniser avec l'éditeur @@ -11343,12 +9694,10 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidgetFactory - Projects Projets - Filter tree Filtrer l'arbre @@ -11360,17 +9709,14 @@ No project selected Ajouter à &SGV (%1) - Summary - Résumé + Résumé - Files to be added: Fichiers à ajouter : - Files to be added in Fichiers à ajouter dans @@ -11378,22 +9724,18 @@ No project selected ProjectExplorer::Internal::RemoveFileDialog - Remove File Supprimer le fichier - File to remove: Fichier à supprimer : - &Delete file permanently &Supprimer le fichier de façon permanente - &Remove from Version Control &Supprimer du système de gestion de version @@ -11408,12 +9750,10 @@ No project selected ProjectExplorer::Internal::RunSettingsWidget - Add Ajouter - Remove Supprimer @@ -11425,12 +9765,10 @@ No project selected ProjectExplorer::Internal::RunSettingsPropertiesPage - + + - - - @@ -11439,7 +9777,6 @@ No project selected Éditer la configuration d'exécution : - Run configuration: Configuration d'exécution : @@ -11447,12 +9784,10 @@ No project selected ProjectExplorer::Internal::SessionFile - Session Session - Untitled default file name to display Sans titre @@ -11461,7 +9796,6 @@ No project selected ProjectExplorer::Internal::TaskDelegate - File not found: %1 Fichier non trouvé : %1 @@ -11484,12 +9818,10 @@ No project selected ProjectExplorer::Internal::WinGuiProcess - The process could not be started! Le processus n'a pas pû être démarré ! - Cannot retrieve debugging output! Impossible d'obtenir la sortie de débogage ! @@ -11497,7 +9829,6 @@ No project selected ProjectExplorer::Internal::WizardPage - Project management Gestion du projet @@ -11514,7 +9845,6 @@ No project selected Ajouter au gestionnaire de &version - The following files will be added: @@ -11527,12 +9857,10 @@ No project selected - Add to &project: &Ajouter au projet : - Add to &version control: Ajouter au gestionnaire de &version : @@ -11540,57 +9868,46 @@ No project selected ProjectExplorer::ProjectExplorerPlugin - Projects Projets - &Build &Compiler - &Debug &Déboguer - &Start Debugging &Commencer le débogage - Open With Ouvrir avec - Session Manager... Gestionnaire de session... - New Project... Nouveau projet... - Ctrl+Shift+N Ctrl+Shift+N - Load Project... Charger le projet... - Ctrl+Shift+O Ctrl+Shift+O - Open File Ouvrir un fichier @@ -11611,22 +9928,18 @@ No project selected Projets récents - Close Project Fermer le projet - Close Project "%1" Fermer le projet "%1" - Close All Projects Fermer tout les projets - Session Session @@ -11635,89 +9948,66 @@ No project selected Définir la configuration de compilation - Build All Tout compiler - Ctrl+Shift+B Ctrl+Shift+B - Rebuild All Tout recompiler - Clean All Tout nettoyer - - Build Project Compiler le projet - - Build Project "%1" Compiler le projet "%1" - Ctrl+B Ctrl+B - - Rebuild Project Recompiler le projet - - Rebuild Project "%1" Recompiler le projet "%1" - - Clean Project Nettoyer le projet - - Clean Project "%1" Nettoyer le projet "%1" - Build Without Dependencies Compiler sans les dépendances - Rebuild Without Dependencies Recompiler sans les dépendances - Clean Without Dependencies Nettoyer sans les dépendances - - Run Exécuter - Ctrl+R Ctrl+R @@ -11726,112 +10016,90 @@ No project selected Définir la configuration d'exécution - Recent P&rojects P&rojets récents - Cancel Build Annuler la compilation - - Start Debugging Commencer le débogage - F5 F5 - Add New... Ajouter nouveau... - Add Existing Files... Ajouter des fichiers existants... - Remove File... Supprimer fichier... - Rename Renommer - Open Build/Run Target Selector... - + Ouvrir le sélecteur de cible de compilation/exécution... - Ctrl+T Ctrl+T - Load Project Charger un projet - New Project Title of dialog Nouveau projet - Always save files before build Toujours enregistrer les fichiers avant de compiler - Cannot run without a project. - + Impossible d'exécuter sans projet. - Cannot debug without a project. - + Impossible de déboguer sans projet. - New File Title of dialog Nouveau fichier - Add Existing Files Ajouter des fichiers existants - Could not add following files to project %1: Impossible d'ajouter les fichiers suivants au projet %1 : - Add files to project failed Échec de l'ajout des fichiers au projet - Add to Version Control Ajouter au gestionnaire de version - Add files %1 to version control (%2)? @@ -11840,17 +10108,23 @@ to version control (%2)? au système de gestion de version (%2) ? - Could not add following files to version control (%1) Impossible d'ajouter les fichiers suivant au système de gestion de version (%1) - Add files to version control failed Échec de l'ajout des fichiers au système de gestion de version + + Projects (%1) + Projets (%1) + + + All Files (*) + Tous les fichiers (*) + Launching Windows Explorer failed Échec du lancement de l'Explorer Windows @@ -11868,22 +10142,18 @@ au système de gestion de version (%2) ? Impossible de trouver xdg-open pour lancer un gestionnaire de fichier natif. - Remove file failed Suppression du fichier échoué - Could not remove file %1 from project %2. Impossible de supprimer le fichier %1 du projet %2. - Delete file failed Échec de la suppression du fichier - Could not delete file %1. Impossible de supprimer le fichier %1. @@ -11891,38 +10161,30 @@ au système de gestion de version (%2) ? ProjectExplorer::SessionManager - Error while restoring session Erreur lors de la restauration de la session - Could not restore session %1 Impossible de restaurer la session %1 - Error while saving session Erreur lors de l'enregistrement de la session - Could not save session to file %1 Impossible d'enregistrer la session dans le fichier %1 - Qt Creator Qt Creator - - Untitled Sans titre - Session ('%1') Session ('%1') @@ -11942,27 +10204,22 @@ au système de gestion de version (%2) ? release - Additional arguments: Arguments supplémentaires : - Effective qmake call: Appels qmake : - qmake build configuration: Configuration de QMake pour la compilation : - Debug debug - Release release @@ -11970,57 +10227,46 @@ au système de gestion de version (%2) ? QObject - Pass Succès - Expected Failure Échec attendu - Failure Échec - Expected Pass Succès attendu - Warning Avertissement - Qt Warning Avertissements Qt (niveau Warning) - Qt Debug Debogage Qt (niveau Debug) - Critical Critique (niveau critical) - Fatal Fatal - Skipped Passé - Info Info @@ -12028,17 +10274,14 @@ au système de gestion de version (%2) ? QTestLib::Internal::QTestOutputPane - Test Results Résultats des tests - Result Résultat - Message Message @@ -12046,12 +10289,10 @@ au système de gestion de version (%2) ? QTestLib::Internal::QTestOutputWidget - All Incidents Tout les incidents - Show Only: Afficher seulement : @@ -12127,7 +10368,6 @@ au système de gestion de version (%2) ? QmlProjectManager::Internal::QmlRunConfiguration - QML Viewer Visualisateur QML @@ -12147,32 +10387,26 @@ au système de gestion de version (%2) ? QrcEditor - Add Ajouter - Remove Supprimer - Properties Propriétés - Prefix: Préfixe : - Language: Langue : - Alias: Alias : @@ -12188,22 +10422,21 @@ au système de gestion de version (%2) ? Crée une application Qt4 de type console. - Qt Console Application Application Qt4 en console - Creates a project containing a single main.cpp file with a stub implementation. Preselects a desktop Qt for building the application if available. - + Créer un projet contenant un seul fichier main.cpp avec un début d'implémentation. + +Présélectionne un bureau Qt pour compiler l'application si disponible. Qt4ProjectManager::Internal::ConsoleAppWizardDialog - This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. Cet assistant génère un projet d'application Qt4 console. L'application dérive de QCoreApplication et ne fournit pas d'interface graphique. @@ -12211,12 +10444,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::DesignerExternalEditor - Qt Designer is not responding (%1). Qt Designer ne répond pas (%1). - Unable to create server socket: %1 Impossible de créer le socket serveur : %1 @@ -12239,20 +10470,17 @@ Preselects a desktop Qt for building the application if available. Crée un projet Qt vide. - Empty Qt Project - + Projet Qt vide - Creates a qmake-based project without any files. This allows you to create an application without any default classes. - + Créer un proje basé sur qmake sans aucun fichier. Cela vous permet de créer une application sans aucune classe par défaut. Qt4ProjectManager::Internal::EmptyProjectWizardDialog - This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. Cet assistant génère un projet Qt4 vide. Vous pouvez ajouter des fichiers plus tard en utilisant les autres assistants. @@ -12260,12 +10488,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::ExternalQtEditor - Unable to start "%1" Impossible de démarrer "%1" - The application "%1" could not be found. L'application "%1" est introuvable. @@ -12273,12 +10499,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::FilesPage - Class Information Information sur la classe - Specify basic information about the classes for which you want to generate skeleton source code files. Définit les informations de base des classes pour lesquelles vous souhaitez générer des fichiers squelettes de code source. @@ -12294,19 +10518,19 @@ Preselects a desktop Qt for building the application if available. Crée une application GUI Qt 4 avec un formulaire. - Qt Gui Application - + Application graphique Qt - Creates a Qt application for the desktop. Includes a Qt Designer-based main window. Preselects a desktop Qt for building the application if available. - + bureau sonne bizarre dans ce cas je trouve... + Créer une application Qt pour le desktop. Inclut une fenêtre principale basée sur Qt Designer. + +Présélectionne une version desktop Qt pour compiler l'application si disponible. - The template file '%1' could not be opened for reading: %2 Le fichier modèle '%1' n'a pas pu être ouvert en lecture : %2 @@ -12314,27 +10538,23 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::GuiAppWizardDialog - This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. Cet assistant génère un projet d'application graphique Qt4. L'application dérive par défaut de QApplication et inclut un widget vide. - Details - Détails + Détails Qt4ProjectManager::Internal::LibraryWizard - C++ Library Bibliothèque 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>. - + Crée une bibliothèque C++ basée sur qmake. Ceci peut être utilisé pour créer : <ul><li>une bibliothèque partagée C++ à utiliser avec <tt>QPluginLoader</tt> à l'éxecution (plugins)</li><li>une bibliothèque partagée ou statique C++ à utiliser dans un autre projet lors de l'édition des liens</li></ul>. Creates a C++ Library. @@ -12344,45 +10564,37 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::LibraryWizardDialog - Shared library Bibliothèque partagée - Statically linked library Bibliothèque liée statiquement - Qt 4 plugin Plugin Qt 4 - Type Type - This wizard generates a C++ library project. Cet assistant génère un projet de bibliothèque C++. - Details - Détails + Détails Qt4ProjectManager::Internal::ModulesPage - Select required modules Sélectionner les modules requis - Select the modules you want to include in your project. The recommended modules for this project are selected by default. Sélectionnez les modules que vous souhaitez inclure au projet. Les modules recommandés pour ce projet sont sélectionnés par défaut. @@ -12500,9 +10712,8 @@ Preselects a desktop Qt for building the application if available. Importer des paramètres de compilation existants. - Project setup - + Installation du projet @@ -12519,61 +10730,48 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::Qt4PriFileNode - Headers En-têtes - Sources Sources - Forms Formulaires - Resources Ressources - Other files Autres fichiers - - - Failed! Échec ! - Could not open the file for edit with SCC. Impossible d'ouvrir le fichier pour l'éditer avec SCC. - Could not set permissions to writable. Impossible d'attribuer les droits en écriture. - There are unsaved changes for project file %1. Des modifications n'ont pas été enregistrées pour le fichier de projet %1. - Could not write project file %1. - + Impossible d'écrire dans le fichier de projet %1. - Error while reading PRO file %1: %2 - + Erreur pendant la lecture du fichier PRO %1 : %2 Error while parsing file %1. Giving up. @@ -12587,13 +10785,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::Qt4ProFileNode - - Error while parsing file %1. Giving up. Erreur pendant le parcours du fichier %1. Abandon. - Could not find .pro file for sub dir '%1' in '%2' Impossible de trouver le fichier .pro pour le sous répertoire '%1' dans '%2' @@ -12621,12 +10816,10 @@ Preselects a desktop Qt for building the application if available. Répertoire de compilation : - <a href="import">Import existing build</a> <a href="import">Importer une compilation existante</a> - Shadow Build Directory Répertoire du Shadow build @@ -12639,38 +10832,31 @@ Preselects a desktop Qt for building the application if available. Aucune version de Qt définie - using <font color="#ff0000">invalid</font> Qt Version: <b>%1</b><br>%2 - + utilisation d'une version Qt <font color="#ff0000">invalide</font> : <b>%1</b><br>%2 - No Qt Version found. - + Aucune version de Qt trouvée. - using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> utilise la version de Qt : <b>%1</b><br>avec la chaîne d'outil <b>%2</b><br>compilé dans <b>%3</b> - General Général - Building in subdirectories of the source directory is not supported by qmake. - + Compiler dans un sous-répertoire du répertoire source n'est pas supporté par qmake. - An incompatible build exists in %1, which will be overwritten. %1 build directory - + Une compilation incompatible existe dans %1, qui sera écrasée. - Manage Gérer @@ -12679,63 +10865,52 @@ Preselects a desktop Qt for building the application if available. Chaîne d'outil : - Configuration name: - + Nom de la configuration : - Qt version: - + Version de Qt : - This Qt version is invalid. - + Cette version de Qt est invalide. - Tool chain: - + Chaîne d'outils : - Shadow build: - + Shadow Build : - Build directory: - Répertoire de compilation : + Répertoire de compilation : - problemLabel - + placeholder je pense + problemLabel Qt4ProjectManager::Internal::Qt4ProjectManagerPlugin - - Run qmake Exécuter qmake - Build - Compilation + Compilation - Run qmake in %1 - + Exécuter qmake dans %1 - Build in %1 - + Compiler dans %1 @@ -12749,24 +10924,20 @@ Preselects a desktop Qt for building the application if available. Impossible d'analyser %1. La configuration de Qt 4 %2 ne peut pas être démarrée. - Clean Environment - Environnement de nettoyage + Environnement vierge - System Environment - + Environnement système - Build Environment - Environnement de compilation + Environnement de compilation - Qt4 RunConfiguration - + Configuration d'exécution Qt4 @@ -12780,7 +10951,6 @@ Preselects a desktop Qt for building the application if available. Lancement de l'exécutable <b>%1</b> %2 - Arguments: Arguments : @@ -12789,47 +10959,38 @@ Preselects a desktop Qt for building the application if available. Exécuter dans un terminal - Select Working Directory - Sélectionner le répertoire de travail + Sélectionner le répertoire de travail - Working directory: - + Répertoire de travail : - Run in terminal - + Exécuter dans un terminal - Run Environment Environnement d'exécution - Clean Environment Environnement de nettoyage - System Environment Environnement du système - Build Environment Environnement de compilation - Name: Nom : - Executable: Exécutable : @@ -12838,7 +10999,6 @@ Preselects a desktop Qt for building the application if available. Sélectionner le répertoire de travail - Reset to default Restaurer les paramètres par défaut @@ -12847,12 +11007,10 @@ Preselects a desktop Qt for building the application if available. Répertoire de travail : - Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) Utiliser les versions debug des frameworks (DYLD_IMAGE_SUFFIX=_debug) - Base environment for this runconfiguration: Environnement de base pour cette configuration d'éxecution : @@ -12860,12 +11018,10 @@ Preselects a desktop Qt for building the application if available. Qt4ProjectManager::Internal::QtOptionsPageWidget - <specify a name> <spécifier un nom> - <specify a qmake location> <spécifier l'emplacement de qmake> @@ -12874,17 +11030,14 @@ Preselects a desktop Qt for building the application if available. Sélectionner un exécutable QMake - Select the MinGW Directory Sélectionner un répertoire MinGW - Select Carbide Install Directory Sélectionner un répertoire d'installation de Carbide - Select S60 SDK Root Sélectionner la racine du SDK S60 @@ -12893,75 +11046,62 @@ Preselects a desktop Qt for building the application if available. Sélectionner le répertoire de la chaîne de compilation CSL Arm (GCCE) - Select qmake Executable - + Sélectionner l'exécutable qmake - Select the CSL ARM Toolchain (GCCE) Directory - + Sélectionner le répertoire de la chaîne de compilation CSL Arm (GCCE) - Auto-detected Auto-détecté - Manual Manuel - Building helpers Aide à la compilation - <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>Fichier :</td><td><pre>%1</pre></td></tr><tr><td>Dernière&nbsp;modification&nbsp;:</td><td>%2</td></tr><tr><td>Taille :</td><td>%3 octets</td></tr></table></body></html> - This Qt Version has a unknown toolchain. - + La version de Qt a une chaîne de compilation inconnue. - Desktop Qt Version is meant for the desktop - + Desktop - Symbian Qt Version is meant for Symbian - + Symbian - Maemo Qt Version is meant for Maemo - + Maemo - Qt Simulator Qt Version is meant for Qt Simulator - + Qt Simulator - unkown No idea what this Qt Version is meant for! - + inconnue - Found Qt version %1, using mkspec %2 (%3) - + Version %1 de Qt trouvée, utilise le mkspec %2 (%3) The Qt Version identified by %1 is not installed. Run make install @@ -12983,22 +11123,18 @@ Preselects a desktop Qt for building the application if available. Versions de Qt - Name Nom - Debugging Helper Assistance au débogage - + + - - - @@ -13015,7 +11151,6 @@ Preselects a desktop Qt for building the application if available. Version de 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; } @@ -13032,12 +11167,10 @@ p, li { white-space: pre-wrap; } Assistance au débogage : - Show &Log Afficher les &log - &Rebuild &Recompiler @@ -13054,7 +11187,6 @@ p, li { white-space: pre-wrap; } Emplacement de QMake : - S60 SDK: SDK S60 : @@ -13071,44 +11203,36 @@ p, li { white-space: pre-wrap; } Répertoire CSL/GCCE : - qmake Location - + Emplacement de QMake - Version name: - + Nom de version : - qmake location: - + Emplacement de QMake : - MinGW directory: - + Répertoire de MinGW : - Toolchain: - + Chaîne d'outils : - CSL/GCCE directory: - + Répertoire CSL/GCCE : - Carbide directory: - + Répertoire de Carbide : - Debugging helper: - Assistance au débogage : + Assistance au débogage : @@ -13200,15 +11324,17 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::MakeStep - Make Qt4 MakeStep display name. - Make + Make + + + Could not find make command: %1 in the build environment + Impossible de trouver la commande make : %1 dans l'environnement de compilation - <font color="#ff0000">Could not find make command: %1 in the build environment</font> - <font color="#ff0000">Impossible de trouver la commande make : %1 dans l'environnement de compilation</font> + <font color="#ff0000">Impossible de trouver la commande make : %1 dans l'environnement de compilation</font> <font color="#0000ff"><b>No Makefile found, assuming project is clean.</b></font> @@ -13218,21 +11344,18 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::MakeStepConfigWidget - Override %1: Supplanter %1 : - <b>Make:</b> %1 not found in the environment. - + <b>Make :</b> %1 non trouvé dans l'environnement. <b>Make Step:</b> %1 not found in the environment. <b>Make Step:</b> %1 non trouvé dans l'environnement. - <b>Make:</b> %1 %2 in %3 <b>Make:</b> %1 %2 dans %3 @@ -13240,7 +11363,6 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::MakeStepFactory - Make Make @@ -13268,20 +11390,17 @@ p, li { white-space: pre-wrap; } <font color="#0000ff">Configuration non modifiée, passe l'étape QMake.</font> - qmake QMakeStep display name. - + qmake - - <font color="#0000ff">Configuration is faulty, please check the Build Issues view for details.</font> - + Configuration is faulty, please check the Build Issues view for details. + La configuration est défectueuse, veuillez vérifier la vue des problèmes de compilation pour obtenir des détails. - - <font color="#0000ff">Configuration unchanged, skipping qmake step.</font> - + Configuration unchanged, skipping qmake step. + Configuration inchangée, étape QMake sautée. @@ -13299,14 +11418,12 @@ p, li { white-space: pre-wrap; } Aucune version de Qt définie. - <b>qmake:</b> No Qt version set. Cannot run qmake. - + <b>qmake :</b> Aucune version de Qt définie. qmake ne peut être lancé. - <b>qmake:</b> %1 %2 - + <b>qmake :</b> %1 %2 @@ -13316,9 +11433,8 @@ p, li { white-space: pre-wrap; } QMake - qmake - + qmake @@ -13328,7 +11444,6 @@ p, li { white-space: pre-wrap; } Chargement du projet %1... - Failed opening project '%1': Project file does not exist Échec de l'ouverture du projet '%1' : le fichier du projet n'existe pas @@ -13337,7 +11452,6 @@ p, li { white-space: pre-wrap; } Ouverture du projet échouée - Failed opening project '%1': Project already open Échec de l'ouverture du projet '%1' : projet déjà ouvert @@ -13353,38 +11467,30 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::QtVersionManager - <not found> <non trouvé> - - Qt in PATH Qt dans le PATH - Name: Nom : - Source: Source : - mkspec: mkspec : - qmake: qmake : - Default: Par défaut : @@ -13393,12 +11499,10 @@ p, li { white-space: pre-wrap; } Compilateur : - Version: Version : - Debugging helper: Assistance au débogage : @@ -13410,16 +11514,15 @@ p, li { white-space: pre-wrap; } La version de Qt n'as pas de chaîne de compilation. - EditorManager Next Open Document in History - + looks like an error in the tr call to me + Document ouvert suivant dans l'historique - EditorManager Previous Open Document in History - + Document ouvert précédent dans l'historique @@ -13429,7 +11532,6 @@ p, li { white-space: pre-wrap; } Module QtCore - Core non-GUI classes used by other modules Classes majeures non-GUI utilisé par les autres modules @@ -13438,7 +11540,6 @@ p, li { white-space: pre-wrap; } Module QtGui - Graphical user interface components Composants de l'interface graphique @@ -13447,7 +11548,6 @@ p, li { white-space: pre-wrap; } Module QtNetwork - Classes for network programming Classes pour la programmation réseau @@ -13456,7 +11556,6 @@ p, li { white-space: pre-wrap; } Module QtOpenGL - OpenGL support classes Classes pour le support de OpenGL @@ -13465,7 +11564,6 @@ p, li { white-space: pre-wrap; } Module QtSql - Classes for database integration using SQL Classes pour l'intégration aux bases de données utilisant SQL @@ -13474,7 +11572,6 @@ p, li { white-space: pre-wrap; } Module QtScript - Classes for evaluating Qt Scripts Classes pour l'évaluation de scripts Qt @@ -13483,7 +11580,6 @@ p, li { white-space: pre-wrap; } Module QtScriptTools - Additional Qt Script components Composants additionnels pour Qt Script @@ -13492,7 +11588,6 @@ p, li { white-space: pre-wrap; } Module QtSvg - Classes for displaying the contents of SVG files Classes pour l'affichage du contenu des fichier SVG @@ -13501,7 +11596,6 @@ p, li { white-space: pre-wrap; } Module QtWebkit - Classes for displaying and editing Web content Classes pour l'affichage et l'édition de contenu Web @@ -13510,7 +11604,6 @@ p, li { white-space: pre-wrap; } Module QtXML - Classes for handling XML Classes pour la manipulation de XML @@ -13519,7 +11612,6 @@ p, li { white-space: pre-wrap; } Module QtXmlPatterns - An XQuery/XPath engine for XML and custom data models Un moteur XQuery/XPath pour XML et pour des modèles de données personnalisés @@ -13528,7 +11620,6 @@ p, li { white-space: pre-wrap; } Module Phonon - Multimedia framework classes Classes du framework multimédia @@ -13537,7 +11628,6 @@ p, li { white-space: pre-wrap; } Module QtMultimedia - Classes for low-level multimedia functionality Classes pour l'implémentation de fonctionnalité multimédia de bas niveau @@ -13546,7 +11636,6 @@ p, li { white-space: pre-wrap; } Module Qt3Support - Classes that ease porting from Qt 3 to Qt 4 Classes pour aider le portage de Qt 3 à Qt 4 @@ -13555,7 +11644,6 @@ p, li { white-space: pre-wrap; } Module QtTestj - Tool classes for unit testing Classes d'aide à la création de tests unitaires @@ -13564,7 +11652,6 @@ p, li { white-space: pre-wrap; } Module QtDBus - Classes for Inter-Process Communication using the D-Bus Classes pour la communication inter-processus utilisant D-Bus @@ -13609,17 +11696,14 @@ p, li { white-space: pre-wrap; } Locator::ILocatorFilter - Filter Configuration Configuration du filtre - Limit to prefix Limiter au préfixe - Prefix: Préfixe : @@ -13627,12 +11711,10 @@ p, li { white-space: pre-wrap; } Locator::Internal::DirectoryFilter - Generic Directory Filter Filtre de dossier générique - Filter Configuration Configuration du filtre @@ -13641,18 +11723,14 @@ p, li { white-space: pre-wrap; } Sélectionner un répertoire à ajouter - - Select Directory - + Sélectionner un répertoire - %1 filter update: 0 files Mise à jour du filtre %1 : 0 fichiers - %1 filter update: %n files Mise à jour du filtre %1 : %n fichier @@ -13660,7 +11738,6 @@ p, li { white-space: pre-wrap; } - %1 filter update: canceled Mise à jour du filtre %1 : annulée @@ -13668,7 +11745,6 @@ p, li { white-space: pre-wrap; } Locator::Internal::DirectoryFilterOptions - Name: Nom : @@ -13677,56 +11753,46 @@ p, li { white-space: pre-wrap; } Types de fichiers : - Specify file name filters, separated by comma. Filters may contain wildcards. Spécifier les filtres de nom de fichier, séparés par la virgule. Les filtres peuvent contenir des caractères de remplacement. - Prefix: Préfixe : - 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. Spécifier un mot court ou une abbréviation qui peut être utilisé pour réstreindre les complétions aux fichiers de cette arborescence. Pour ce faire, entrer ce raccourci et un espace dans le champs localisation, puis ensuite le mot à chercher. - Limit to prefix Limiter au préfixe - Add... Ajouter... - Edit... Modifier... - Remove Supprimer - Directories: Dossiers : - File types: - + Types de fichiers : Locator::Internal::FileSystemFilter - Files in file system Fichiers du système de fichier @@ -13734,27 +11800,22 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::FileSystemFilterOptions - Filter configuration Configuration du filtre - Prefix: Préfixe : - Limit to prefix Limiter au préfixe - Include hidden files Inclure les fichiers cachés - Filter: Filtre : @@ -13762,7 +11823,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::OpenDocumentsFilter - Open documents Ouvrir des documents @@ -13770,7 +11830,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::LocatorFiltersFilter - Available filters Filtres disponibles @@ -13778,7 +11837,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::LocatorPlugin - Indexing Indexation @@ -13786,32 +11844,26 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Locator::Internal::LocatorWidget - Refresh Rafraîchir - Configure... Configurer... - Locate... Localiser... - Type to locate Taper pour localiser - Options - Options + Options - <type here> <taper ici> @@ -13854,30 +11906,25 @@ To do this, you type this shortcut and a space in the Locator entry field, and t %1 (Préfixe : %2) - %1 (prefix: %2) - + %1 (préfixe : %2) Locator::Internal::SettingsWidget - Configure Filters Configurer les filtres - Add Ajouter - Remove Supprimer - Edit Modifier @@ -13886,115 +11933,93 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Intervalle de rafraîchissement : - min min - Refresh interval: - + Intervalle de rafraîchissement : RegExp::Internal::RegExpWindow - &Pattern: &Motif : - &Escaped Pattern: Motif &échappé : - &Pattern Syntax: Syntaxe du &motif : - &Text: &Texte : - Case &Sensitive &Sensible à la casse - &Minimal &Minimale - Index of Match: Index de la correspondance : - Matched Length: Longueur de la correspondance : - Regular expression v1 Expression régulière v1 - Regular expression v2 Expression régulière v2 - Wildcard Joker - Fixed string Chaîne de caractères fixe - Capture %1: Capture %1 : - Match: Correspondance : - Regular Expression Expression régulière - Enter pattern from code... Entrer un motif depuis le code... - Clear patterns Effacer les motifs - Clear texts Effacer les textes - Enter pattern from code Entrer le motif depuis le code - Pattern Motif @@ -14006,7 +12031,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Crée une fichier ressource Qt (.qrc). - Qt Resource file Fichier de ressource Qt @@ -14015,17 +12039,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Qt - Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. - + Crée un fichier ressource Qt (.qrc) que vous pouvez ajouter a votre projet Qt C++. - &Undo &Annuler - &Redo &Refaire @@ -14033,7 +12054,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ResourceEditor::Internal::ResourceEditorW - untitled sans titre @@ -14041,17 +12061,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t SaveItemsDialog - Save Changes Sauvegarder les changements - The following files have unsaved changes: Les fichiers suivants contiennent des modifications non enregistrées : - Automatically save all files before building Sauvegarder automatiquement tous les fichiers avant de compiler @@ -14070,12 +12087,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t SharedTools::QrcEditor - Add Files Ajouter des fichiers - Add Prefix Ajouter un préfixe @@ -14084,18 +12099,15 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Fichier invalide - Copy Copier - Skip ignorer ? Passer - Abort Abandonner @@ -14104,37 +12116,30 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Le fichier %1 n'est pas dans un sous-dossier du fichier de ressource. Continuer résulterait en un fichier de ressource invalide. - Invalid file location - + Emplacement de fichier invalide - 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. - + Le fichier %1 n'est pas dans un sous-dossier du fichier de ressource. Vous avez maintenant la possibilité de le copier vers un emplacement valide. - Choose copy location Choisir le chemin de la copie - Overwrite failed L'écrasement a échoué - Could not overwrite file %1. L'écrasement du fichier %1 a échoué. - Copying failed Échec de la copie - Could not copy the file to %1. La copie du fichier dans "%1" a échoué. @@ -14142,72 +12147,58 @@ To do this, you type this shortcut and a space in the Locator entry field, and t SharedTools::ResourceView - Add Files... Ajouter des fichiers... - Change Alias... Changer l'alias... - Add Prefix... Ajouter un prefixe... - Change Prefix... Changer le préfixe... - Change Language... Changer la langue... - Remove Item Supprimer l'élément - Open file Ouvrir le fichier - All files (*) Tous les fichiers (*) - Change Prefix Changer le préfixe - Input Prefix: Entrée du préfixe : - Change Language Changer la langue - Language: Langue : - Change File Alias Changer l'alias du fichier - Alias: Alias : @@ -14266,7 +12257,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t ShowBuildLog - Debugging Helper Build Log Journal de compilation de l'assistant de debogage @@ -14274,7 +12264,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Snippets::Internal::SnippetsPlugin - Snippets Extraits de code @@ -14282,7 +12271,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Snippets::Internal::SnippetsWindow - Snippets Extraits de code @@ -14290,22 +12278,18 @@ To do this, you type this shortcut and a space in the Locator entry field, and t StartExternalDialog - Start Debugger Lancer le débogueur - Executable: Nom de l'exécutable : - Arguments: Arguments : - Break at 'main': S'arrêter sur 'main': @@ -14313,44 +12297,36 @@ To do this, you type this shortcut and a space in the Locator entry field, and t StartRemoteDialog - Start Debugger Lancer le débogueur - Host and port: Hôte et port : - Architecture: Architecture : - Use server start script: Utiliser le script de démarrage du serveur : - Server start script: Script de démarrage du serveur : - Debugger: - + Débogueur : - Local executable: - + Exécutable locale: - Sysroot: - + Sysroot : @@ -14364,7 +12340,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Commande Subversion : - Authentication Identification @@ -14373,65 +12348,53 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Nom d'utilisateur : - Password: Mot de passe : - Subversion Subversion - Configuration - + Configuration - Subversion command: - + Commande Subversion : - Username: - Nom d'utilisateur : + Nom d'utilisateur : - Miscellaneous - + Divers - Timeout: - + Timeout : - s - + s - Prompt on submit - + Invite lors du submit - Ignore whitespace changes in annotation - + Ignorer les changements d'espaces dans les annotations - Log count: - + Nombre de log : Subversion::Internal::SettingsPageWidget - Subversion Command Commande Subversion @@ -14450,22 +12413,18 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Subversion::Internal::SubversionPlugin - &Subversion &Subversion - Add Ajouter - Add "%1" Ajouter "%1" - Alt+S,Alt+A Alt+S,Alt+A @@ -14486,212 +12445,170 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Rétablir "%1" - Diff Project Faire un diff sur le projet - Diff Current File Faire un diff du fichier courant - Diff "%1" Faire un diff de "%1" - Alt+S,Alt+D Alt+S,Alt+D - Commit All Files Faire un commit de tous les fichiers - Commit Current File Faire un commit du fichier courant - Commit "%1" Faire un commit de "%1" - Alt+S,Alt+C Alt+S,Alt+C - Filelog Current File Journal du fichier courant - Filelog "%1" Journal du fichier "%1" - Annotate Current File Annoter le fichier courant - Annotate "%1" Annoter "%1" - Describe... Décrire... - Project Status Statut du projet - Delete... - + Supprimer… - Delete "%1"... - + Supprimer "%1"… - Revert... - + Rétablir... - Revert "%1"... - + Rétablir "%1"... - Diff Project "%1" - + Réaliser un diff du projet "%1" - Status of Project "%1" - + Statut du projet "%1" - Log Project - Réaliser un log du projet + Réaliser un log du projet - Log Project "%1" - Réaliser un log du projet "%1" + Réaliser un log du projet "%1" - Update Project Mettre à jour le projet - Update Project "%1" - Mettre à jour le projet "%1" + Mettre à jour le projet "%1" - Commit Project - + Faire un commit du projet - Commit Project "%1" - + Faire un commit du projet "%1" - Diff Repository - + Réaliser un diff du dépôt - Repository Status - + Statut du dépôt - Log Repository - + Log du dépôt - Update Repository - + Mettre à jour le dépôt - Revert Repository... - + Rétablir le dépôt... - Commit Faire un commit - Diff Selected Files Faire un diff sur tous les fichiers sélectionnés - &Undo Annu&ler - &Redo &Refaire - Closing Subversion Editor Fermeture de l'éditeur Subversion - Do you want to commit the change? - Voulez vous envoyez les changements ? + Voulez vous envoyer les changements ? - The commit message check failed. Do you want to commit the change? La vérification du message de commit a échoué. Voulez-vous soumettre vos modifications ? - Revert repository - + Rétablir le dépôt - Would you like to revert all changes to the repository? - + Souhaitez-vous rétablir toutes les modifications sur le dépôt ? - Revert failed: %1 - + Éche de la restauration : %1 - The file has been changed. Do you want to revert it? Le fichier a été modifié. Voulez-vous le rétablir ? @@ -14700,47 +12617,39 @@ To do this, you type this shortcut and a space in the Locator entry field, and t La liste de commits s'étend sur plusieur répertoire (%1). Veuillez les ajouter un par un. - Another commit is currently being executed. Un autre commit est en cours d'exécution. - There are no modified files. Il n'y a aucun fichier modifié. - Cannot create temporary file: %1 Impossible de créer le fichier temporaire : %1 - Describe Décrire - Revision number: Numéro de révision : - Executing in %1: %2 %3 - Exécute dans %1 : %2 %3 + Exécution dans %1 : %2 %3 - No subversion executable specified! Aucun exécutable Subversion n'a été spécifié ! - Executing: %1 %2 - Exécute %1 %2 + Exécution de : %1 %2 @@ -14750,30 +12659,25 @@ To do this, you type this shortcut and a space in the Locator entry field, and t %1 Exécution de : %2 %3 - The process terminated with exit code %1. - Le processus s'est terminé avec le code %1. + Le processus s'est terminé avec le code %1. - The process terminated abnormally. - Le processus s'est terminé de façon anormale. + Le processus s'est terminé de façon anormale. - Could not start subversion '%1'. Please check your settings in the preferences. - Impossible de démarrer subversion '%1'. Veuillez vérifier la configuration dans les préférences. + Impossible de démarrer subversion '%1'. Veuillez vérifier la configuration dans les préférences. - Subversion did not respond within timeout limit (%1 ms). - Subversion n'a pas répondu après la limite de temps (%1 ms). + Subversion n'a pas répondu après la limite de temps (%1 ms). Subversion::Internal::SubversionSubmitEditor - Subversion Submit Submit sur Subversion @@ -14781,21 +12685,17 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseFileFind - - %1 found %1 élément(s) trouvé(s) - List of comma separated wildcard filters wildcard -> joker mais est-ce le terme pour les expressions régulières en français ? Liste de filtres 'joker' séparés par des virgules - Use regular e&xpressions - + Utiliser des e&xpressions régulières Use Regular E&xpressions @@ -14805,13 +12705,11 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseTextDocument - untitled document ? (en plus c'est plus long...) sans titre - <em>Binary data</em> <em>Données binaire</em> @@ -14819,18 +12717,15 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseTextEditor - Print Document Imprimer le document - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. error -> erreur ;) <b>Erreur :</b> Impossible de décoder "%1" avec l'encodage "%2". L'édition est impossible. - Select Encoding Choisir l'encodage @@ -14838,12 +12733,10 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BaseTextEditorEditable - Line: %1, Col: %2 Ligne : %1, Col : %2 - Line: %1, Col: 999 Ligne : %1, Col : 999 @@ -14851,52 +12744,42 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::BehaviorSettingsPage - Tabs and Indentation Tabulation et indentation - Insert &spaces instead of tabs Insérer des e&spaces au lieu de tabulations - Enable automatic &indentation Activer l'&indentation automatique - Backspace will go back one indentation level instead of one space. La touche retour reviendra un niveau d'indentation en arrière au lieux d'un caractère espace. - &Backspace follows indentation La touche &retour arrière suit l'indentation - Ta&b size: Taille de &tabulation : - &Indent size: Taille de l'in&dentation : - Tab key performs auto-indent: La touche tabulation active l'identation automatique : - Never Jamais - Always Toujours @@ -14905,130 +12788,105 @@ To do this, you type this shortcut and a space in the Locator entry field, and t En début de ligne uniquement - Storage Sauvegarde - Removes trailing whitespace on saving. Supprime les caractères d'espacement à la fin des lignes lors de la sauvegarde. - &Clean whitespace &Nettoyer les espaces - Clean whitespace in entire document instead of only for changed parts. Nettoyer les espaces dans tout le document au lieu de limiter le nettoyage aux parties modifiées. - In entire &document Dans tout le &document - Correct leading whitespace according to tab settings. Corriger les espaces à l'avant des lignes pour respecter la configuration des tabulations. - Clean indentation Nettoyer l'indentation - &Ensure newline at end of file &Forcer un retour de ligne à la fin du fichier - Automatically determine based on the nearest indented line (previous line preferred over next line) - + Déterminer automatiquement en se basant sur la ligne indentée la plus proche (ligne précédente préférée à la ligne suivante) - Based on the surrounding lines - + Basé sur les lignes environnantes - Block indentation style: - + Style d'indentation de bloc : - Exclude Braces - + Exclure les accolades - Include Braces - + Inclure les accolades - GNU Style - + Style GNU - In Leading White Space - + Dans des espaces en début de ligne - Mouse - + Souris - Enable &mouse navigation - Activer la navigation à la &souris + Activer la navigation à la &souris - Enable scroll &wheel zooming - + Activer le zoom via la &roulette TextEditor::DisplaySettingsPage - Display Affichage - Display line &numbers Afficher les &numéros de ligne - Display &folding markers Affiche les marqueurs de &pliage - Show tabs and spaces. Afficher les tabulations et espaces. - &Visualize whitespace &Visualiser les espaces - Highlight current &line Surligner la &ligne courante - Highlight &blocks Surligner les &blocs @@ -15037,17 +12895,14 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Animer les parenthèses correspondantes - Text Wrapping Retour à la ligne dynamique - Enable text &wrapping Activer le &retour à la ligne automatique - Display right &margin at column: Afficher une &marge à la colonne : @@ -15065,24 +12920,22 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Marquer le texte modifié - Mark &text changes - + Marquer les modifications de &texte - &Animate matching parentheses - + &Animer les parenthèses correspondantes - Auto-fold first &comment - + reformulation à l'infinitif +francis : en effet, une erreur de ma part --> validé. + Replier automatiquement le premier &commentaire - Center &cursor on scroll - + Centrer le &curseur sur le barre de défilement @@ -15092,7 +12945,6 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Polices & couleurs - Copy Color Scheme Copier le jeu de couleurs @@ -15101,47 +12953,38 @@ To do this, you type this shortcut and a space in the Locator entry field, and t Nom du jeu de couleurs : - Font && Colors - + Polices && couleurs - Color scheme name: - + Nom du jeu de couleurs : - %1 (copy) %1 (copie) - Delete Color Scheme Supprimer le jeu de couleurs - Are you sure you want to delete this color scheme permanently? Êtes vous sûr de vouloir supprimer ce jeu de couleurs ? - Delete Supprimer - Color Scheme Changed Jeu de couleurs modifié - The color scheme "%1" was modified, do you want to save the changes? Le jeu de couleurs "%1" a été modifié, voulez-vous enregistrer les changements ? - Discard Abandonner @@ -15154,29 +12997,24 @@ To do this, you type this shortcut and a space in the Locator entry field, and t TextEditor::Internal::CodecSelector - Text Encoding Encodage du texte - The following encodings are likely to fit: Les encodages suivants pourraient convenir : - Select encoding for "%1".%2 Selectionner l'encodage pour "%1".%2 - Reload with Encoding Recharger avec l'encodage - Save with Encoding Sauver avec l'encodage @@ -15184,7 +13022,6 @@ Les encodages suivants pourraient convenir : TextEditor::Internal::FindInCurrentFile - Current File lower character at the beginning because this is indented after "Rechercher dans..." fichier courant @@ -15198,28 +13035,23 @@ Les encodages suivants pourraient convenir : fichiers sur le disque - Files on File System - + Fichiers dans le système de fichiers - &Directory: &Dossier : - &Browse &Parcourir - File &pattern: Schéma ou motif ? (motif ça fait penser au style du même nom...) &Motif de fichier : - Directory to search Dossier dans lequel effectuer la recherche @@ -15227,28 +13059,23 @@ Les encodages suivants pourraient convenir : TextEditor::Internal::FontSettingsPage - Font Police - Family: Famille : - Size: Taille : - Antialias c'est le français pour anti-aliasing ? Anticrénelage - Color Scheme Jeu de couleurs @@ -15277,35 +13104,29 @@ Les encodages suivants pourraient convenir : Aperçu : - Copy... Copier... - Delete Supprimer - % - + % - Zoom: - + Zoom : TextEditor::Internal::LineNumberFilter - Line %1 Ligne %1 - Line in current document Ligne du document courant @@ -15317,42 +13138,34 @@ Les encodages suivants pourraient convenir : Créer un fichier texte (.txt). - Creates a text file. The default file extension is <tt>.txt</tt>. You can specify a different extension as part of the filename. - + Crée un fichier texte. L'extension par défaut est <tt>.txt</tt>. Vous pouvez spécifier une extension différente lors de la saisie du nom de fichier. - Text File Fichier texte - General Général - Triggers a completion in this scope Lancer la complétion dans ce contexte - Ctrl+Space Ctrl+Espace - Meta+Space Meta+Espace - Triggers a quick fix in this scope Lancer une réparation rapide dans ce contexte - Alt+Return Alt+Entrée @@ -15360,176 +13173,142 @@ Les encodages suivants pourraient convenir : TextEditor::TextEditorActionHandler - &Undo Annu&ler - &Redo &Refaire - Select Encoding... Choisir l'encodage... - Auto-&indent Selection &Indenter automatiquement la sélection - Ctrl+I Ctrl+I - Meta Meta - Ctrl Ctrl - &Rewrap Paragraph &Réadapter les retour à la ligne du paragraphe - &Visualize Whitespace &Visualiser les espaces - Clean Whitespace Nettoyer les espaces - Enable Text &Wrapping Activer le &retour à la ligne automatique - Reset Font Size - Réinitialiser la taille de la police + Réinitialiser la taille de la police - Ctrl+0 - Ctrl+0 + Ctrl+0 - Go to Block Start - + Aller au début du bloc - Go to Block End - + Aller à la fin du bloc - Go to Block Start With Selection - + Sélectionner jusqu'au début du bloc - Go to Block End With Selection - + Sélectionner jusqu'à la fin du bloc Ctrl+E, Ctrl+W Ctrl+E, Ctrl+W - %1+E, R %1+E, R - %1+E, %2+V %1+E, %2+V - %1+E, %2+W %1+E, %2+W - (Un)Comment &Selection (Dé)commenter la &Sélection - Ctrl+/ Ctrl+/ - Cut &Line Couper la &ligne - Shift+Del Shift+Suppr - Delete &Line Effacer la &ligne - Collapse - Réduire + Réduire - Ctrl+< Ctrl+< - Expand - Développer + Développer - Ctrl+> Ctrl+> - (Un)&Collapse All (Dé)&plier tout - Increase Font Size Augmenter la taille de la police - Ctrl++ Ctrl++ - Decrease Font Size Diminuer la taille de la police - Ctrl+- Ctrl+- @@ -15538,7 +13317,6 @@ Les encodages suivants pourraient convenir : Aller au début du bloc - Ctrl+[ Ctrl+[ @@ -15547,7 +13325,6 @@ Les encodages suivants pourraient convenir : Aller à la fin du bloc - Ctrl+] Ctrl+] @@ -15557,7 +13334,6 @@ Les encodages suivants pourraient convenir : Sélectionner jusqu'au début du bloc - Ctrl+{ Ctrl+{ @@ -15567,117 +13343,94 @@ Les encodages suivants pourraient convenir : Sélectionner jusqu'à la fin du bloc - Ctrl+} Ctrl+} - Select Block Up Sélectionner le bloc au-dessus - Ctrl+U Ctrl+U - Select Block Down Sélectionner le bloc en dessous - Join Lines - + Joindre les lignes - Ctrl+J - Ctrl+J + Ctrl+J - Goto Line Start - + Aller au début de ligne - Goto Line End - + Aller à la fin de ligne - Goto Next Line - + Aller à la ligne suivante - Goto Previous Line - + Aller à la ligne précédente - Goto Previous Character - + Aller au caractère précédent - Goto Next Character - + Aller au caractère suivant - Goto Previous Word - + Aller au mot précédent - Goto Next Word - + Aller au mot suivant - Goto Line Start With Selection - + Sélectionner jusqu'au début de ligne - Goto Line End With Selection - + Sélectionner jusqu'à la fin de ligne - Goto Next Line With Selection - + Sélectionner jusqu'à la ligne suivante - Goto Previous Line With Selection - + Sélectionner jusqu'à la ligne précédente - Goto Previous Character With Selection - + Sélectionner jusqu'au caractère précédent - Goto Next Character With Selection - + Sélectionner jusqu'au caractère suivant - Goto Previous Word With Selection - + Sélectionner jusqu'au mot précédent - Goto Next Word With Selection - + Sélectionner jusqu'au mot suivant - <line number> <numéro de ligne> @@ -15686,42 +13439,34 @@ Les encodages suivants pourraient convenir : Ctrl+Shift+U - Move Line Up Déplacer la ligne au-dessus - Ctrl+Shift+Up Ctrl+Shift+Up - Move Line Down Déplacer la ligne en dessous - Ctrl+Shift+Down Ctrl+Shift+Down - Copy Line Up Copier la ligne au-dessus - Ctrl+Alt+Up Ctrl+Alt+Up - Copy Line Down Copier la ligne en dessous - Ctrl+Alt+Down Ctrl+Alt+Down @@ -15733,143 +13478,115 @@ Les encodages suivants pourraient convenir : TextEditor::TextEditorSettings - Text Texte - Link Lien - Selection Sélection - Line Number Numéro de ligne - Search Result Résultat de la recherche - Search Scope contexte/portée/autre ? Portée de la recherche - Parentheses Parenthèses - Current Line Ligne courante - Current Line Number Numéro de la ligne courante - Occurrences Occurences - Unused Occurrence Occurence inutilisé - Renaming Occurrence Renommer l'occurence - Number Numéro - String Chaîne de caractères - Type Type - Keyword Mot clé - Operator Opérateur - Preprocessor Préprocesseur - Label Étiquette - Comment Commentaire - Doxygen Comment Commentaire Doxygen - Doxygen Tag Tag Doxygen - Visual Whitespace Espace visuel - Disabled Code Code désactivé - Added Line Ligne ajoutée - Removed Line Ligne supprimée - Diff File Fichier Diff - Diff Location Emplacement du Diff @@ -15878,12 +13595,10 @@ Les encodages suivants pourraient convenir : Éditeur de texte - Behavior Comportement - Display Affichage @@ -15891,12 +13606,10 @@ Les encodages suivants pourraient convenir : ToolChain - GCC GCC - Intel C++ Compiler (Linux) Compilateur C++ Intel (Linux) @@ -15905,62 +13618,50 @@ Les encodages suivants pourraient convenir : MinGW - Microsoft Visual C++ Microsoft Visual C++ - Windows CE Windows CE - WINSCW WINSCW - GCCE GCCE - GCCE/GnuPoc - + GCCE/GnuPoc - RVCT (ARMV6)/GnuPoc - + RVCT (ARMV6)/GnuPoc - RVCT (ARMV5) RVCT (ARMV5) - RVCT (ARMV6) RVCT (ARMV6) - GCC for Maemo - + GCC pour Maemo - Other Autre - <Invalid> <Invalide> - <Unknown> <Inconnu> @@ -15968,28 +13669,23 @@ Les encodages suivants pourraient convenir : TopicChooser - Choose Topic thème ? Choisissez le thème - &Topics &Thèmes - &Display &Afficher - &Close &Fermer - Choose a topic for <b>%1</b>: Choisissez un thème pour <b>%1</b> : @@ -15997,46 +13693,38 @@ Les encodages suivants pourraient convenir : VCSBase - Version Control Gestion de versions - Common Commun - Project from Version Control - + Projet d'un gestionnaire de versions VCSBase::Internal::NickNameDialog - Name Nom - E-mail avec ou sans '-' ? Email - Alias Alias - Alias e-mail Alias de l'email - Cannot open '%1': %2 Impossible d'ouvrir '%1' : %2 @@ -16044,12 +13732,10 @@ Les encodages suivants pourraient convenir : VCSBase::SubmitFileModel - State État - File Fichier @@ -16057,17 +13743,14 @@ Les encodages suivants pourraient convenir : VCSBase::VCSBaseEditor - Annotate "%1" - Annoter "%1" + Annoter "%1" - Copy "%1" - + Copier "%1" - Describe change %1 Decrivez le changement %1 @@ -16075,61 +13758,50 @@ Les encodages suivants pourraient convenir : VCSBase::VCSBaseSubmitEditor - Check message Contrôle du message - Insert name... Inserez le nom... - Prompt to submit Invite lors du submit - Submit Message Check failed La vérification du message de submit a échoué - Executing %1 - + Exécution de %1 - Executing [%1] %2 - + Exécution de [%1] %2 - Unable to open '%1': %2 Impossible d'ouvrir '%1' : %2 - The check script '%1' could not be started: %2 Le script de vérification '%1' ne peut pas être démarré : %2 - The check script '%1' timed out. - + Le script de vérification '%1' a expiré. - The check script '%1' crashed - + Le script de vérification '%1' a crashé The check script '%1' could not be run: %2 Le script de vérification '%1' ne peut pas être exécuté : %2 - The check script returned exit code %1. Le script de vérification a retourné le code %1. @@ -16174,12 +13846,10 @@ nom <email> alias <email> VCSManager - Version Control Gestion de versions - Would you like to remove this file from the version control system (%1)? Note: This might remove the local file. Voulez-vous retirer ce fichier du système de gestion de versions (%1) ? @@ -16208,27 +13878,22 @@ Note : Ceci risque de supprimer le fichier du disque. ViewDialog - Send to Codepaster Envoyer sur Codepaster - &Username: &Utilisateur : - <Username> <Utilisateur> - &Description: &Description : - <Description> <Description> @@ -16247,17 +13912,14 @@ p, li { white-space: pre-wrap; } Fragments à envoyer sur codepaster - Patch 1 Patch 1 - Patch 2 Patch 2 - Protocol: Protocole : @@ -16278,44 +13940,41 @@ p, li { white-space: pre-wrap; } Parties à envoyer au serveur - <!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:10pt; 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;Comment&gt;</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:'DejaVu Sans'; font-size:10pt; 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;Commentaire&gt;</span></p></body></html> - Parts to Send to Server - + Parties à envoyer au serveur mainClass - main main - Text1: Texte 1 : - N/A N/A - Text2: Texte 2 : - Text3: Texte 3 : @@ -16323,7 +13982,6 @@ p, li { white-space: pre-wrap; } PasteBinComSettingsWidget - Form Formulaire @@ -16346,16 +14004,16 @@ p, li { white-space: pre-wrap; } <p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:8pt;">Notez que les plugins utiliseront ceci pour poster et pour récupérer les snippets.</span></p></body></html> - Server prefix: - + Préfixe du serveur : - <html><head/><body> <p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> <p>Note that the plugin will use this for posting as well as fetching.</p></body></html> - + <html><head/><body> +<p><a href="http://pastebin.com">pastebin.com</a> permet d'envoyer les snippets à des sous-domaines personnalisés (par ex. qtcreator.pastebin.com). Remplissez le préfixe désiré.</p> +<p>Notez que les plugins utiliseront ceci pour poster et récupérer les snippets.</p></body></html> @@ -16385,59 +14043,48 @@ p, li { white-space: pre-wrap; } Options Diff : - CVS CVS - Configuration - + Configuration - CVS command: - + Commande CVS : - CVS root: - + Racine CVS : - Miscellaneous - + Divers - Diff options: - + Options diff : - Prompt on submit - + Invite lors du submit - 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. - + Si coché, tous les fichiers modifiés par un commit seront affichés lors d'un clic sur un numéro de version dans la vue d'annotation (récupérée par un ID de commit). Sinon, seul le fichier respectif sera affiché. - Describe all files matching commit id - + Décrire tous les fichiers correspondant à l'id de commit - Timeout: - + Timeout : - s - + s @@ -16478,22 +14125,18 @@ p, li { white-space: pre-wrap; } Designer::Internal::CppSettingsPageWidget - Form Formulaire - Embedding of the UI Class Intégration de la classe UI - Aggregation as a pointer member Agrégation comme pointeur membre - Aggregation Agrégation @@ -16502,50 +14145,41 @@ p, li { white-space: pre-wrap; } Héritage multiple - Code Generation Génération de code - Support for changing languages at runtime Prise en charge du changement de langage à l'exécution - Use Qt module name in #include-directive Utiliser le nom du module Qt dans #include-directive - Multiple inheritance - + Héritage multiple Gitorious::Internal::GitoriousHostWidget - ... ... - <New Host> <Nouvel Hôte> - Host Hôte - Projects Projets - Description Description @@ -16553,7 +14187,6 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousProjectWidget - WizardPage WizardPage @@ -16562,22 +14195,18 @@ p, li { white-space: pre-wrap; } Filtre : - ... ... - Keep updating Mise à jour continue - Project Projet - Description Description @@ -16585,7 +14214,6 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousRepositoryWizardPage - WizardPage WizardPage @@ -16598,52 +14226,42 @@ p, li { white-space: pre-wrap; } ... - Name Nom - Owner Propriétaire - Description Description - Repository - + Dépôt - Choose a repository of the project '%1'. Choisissez un répertoire pour le projet '%1'. - Mainline Repositories Dépôts principaux - Clones Clones - Baseline Repositories Dépôts de base - Shared Project Repositories Dépôts de projets partagés - Personal Repositories Dépôts personnels @@ -16651,37 +14269,30 @@ p, li { white-space: pre-wrap; } GeneralSettingsPage - Form Formulaire - Font Police - Family: Famille : - Style: Style : - Size: Taille : - Startup Démarrage - On context help: Pour l'aide contextuelle : @@ -16698,7 +14309,6 @@ p, li { white-space: pre-wrap; } Toujours afficher l'aide complète - On help start: Au démarrage de l'aide : @@ -16719,75 +14329,61 @@ p, li { white-space: pre-wrap; } Page d'accueil : - Use &Current Page Utiliser la page &courante - Use &Blank Page Utiliser une page &blanche - Restore to Default Restaurer les paramètres par défaut - Help Bookmarks Signet de l'aide - Import... Importer... - Export... Exporter... - Show Side-by-Side if Possible - + Afficher côte à côte si possible - Always Show Side-by-Side - + Toujours afficher côte à côte - Always Start Full Help - + Toujours afficher l'aide complète - Show My Home Page - + Afficher ma page d'accueil - Show a Blank Page - + Afficher une page blanche - Show My Tabs from Last Session - + Afficher mes onglets de la dernière session - Home page: - + Page d'accueil : ProjectExplorer::Internal::ProjectExplorerSettingsPageUi - Build and Run Compilation et exécution @@ -16804,65 +14400,57 @@ p, li { white-space: pre-wrap; } Afficher la sortie du compilateur pendant la compilation - Use jom instead of nmake Utiliser jom à la place de nmake - <i>jom</i> is a drop-in replacement for <i>nmake</i> which distributes the compilation process to multiple CPU cores. For more details, see the <a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a>. Disable it if you experience problems with your builds. - <i>jom</i> est un remplaçant pour <i>nmake</i> qui répartit le processus de compilation sur les différents cores d'un CPU. Pour plus de détails, voir la <a href="http://qt.gitorious.org/qt-labs/jom/">page consacrée à jom </a>. Désactivez si vous rencontrez des problèmes de compilation. + <i>jom</i> est un remplaçant pour <i>nmake</i> qui répartit le processus de compilation sur les différents cores d'un CPU. Pour plus de détails, voir la <a href="http://qt.gitorious.org/qt-labs/jom/">page consacrée à jom </a>. Désactivez si vous rencontrez des problèmes de compilation. - Projects Directory - + Répertoire du projet - Current directory - + Répertoire courant - directoryButtonGroup - + directoryButtonGroup - Directory - + Répertoire - Save all files before build - + Enregistrer tous les fichiers avant de compiler - Always build project before running - + Toujours compiler le projet avant d'exécuter - Show compiler output on building - + Afficher la sortie du compilateur pendant la compilation - Clear old application output on a new run - + Effacer les sorties des anciennes applications à chaque nouvelle exécution + + + <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="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Disable it if you experience problems with your builds. + <i>jom</i> est un remplaçant pour <i>nmake</i> qui répartit le processus de compilation sur les différents cores d'un CPU. Pour plus de détails, voir la <a href="http://qt.gitorious.org/qt-labs/jom/">page consacrée à jom </a>. Désactivez si vous rencontrez des problèmes de compilation. ProjectExplorer::Internal::ProjectWelcomePageWidget - Form Formulaire - Manage Sessions... Gestion des sessions... @@ -16879,49 +14467,41 @@ p, li { white-space: pre-wrap; } Reprendre la session - %1 (last session) %1 (dernière session) - %1 (current session) %1 (session courante) - New Project - Nouveau projet + Nouveau projet New Project... Nouveau projet... - Recent Sessions - + Sessions récentes - Recent Projects - Projets récents + Projets récents - Open Project... - + Ouvrir le projet... - Create Project... - + Créer un projet... ProjectWelcomePage - Form Formulaire @@ -16929,132 +14509,106 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::ClassDefinition - Form Formulaire - The header file Le fichier d'en-tête - &Sources &Sources - Widget librar&y: B&ibliothèque de widget : - Widget project &file: Fichier de &projet du widget : - Widget h&eader file: Fichier d'en-&tête du widget : - The header file has to be specified in source code. Le fichier d'en-tête doit être spécifié dans le code source. - Widge&t source file: Fichier source du &widget : - Widget &base class: Classe de &base du widget : - QWidget QWidget - Plugin class &name: &Nom de la classe du plugin : - Plugin &header file: Fichier d'&en-tête du plugin : - Plugin sou&rce file: Fichier sou&rce du plugin : - Icon file: Fichier de l'icône : - &Link library &Lier à la bibliothèque - Create s&keleton Créer s&quelette - Include pro&ject Inclure le pro&jet - &Description &Description - G&roup: &Groupe : - &Tooltip: &Info-bulle : - W&hat's this: &Qu'est-ce que c'est? : - The widget is a &container Le widget est un &conteneur - Property defa&ults Propriétés par défa&ut - dom&XML: dom &XML : - Select Icon Sélectionner une icône - Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) Fichier d'icône (*.png *.ico *.jpg *.xpm *.tif *.svg) @@ -17062,47 +14616,38 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::CustomWidgetPluginWizardPage - WizardPage WizardPage - Plugin and Collection Class Information Information sur le plugin et la classe de collection - Specify the properties of the plugin library and the collection class. Spécifiez les propriétés de la bibliothèque de plugin et la classe de collection. - Collection class: Classe de collection : - Collection header file: Fichier d'en-tête de la collection : - Collection source file: Fichier source de la collection : - Plugin name: Nom du plugin : - Resource file: Fichier ressource : - icons.qrc icons.qrc @@ -17110,35 +14655,29 @@ p, li { white-space: pre-wrap; } Qt4ProjectManager::Internal::CustomWidgetWidgetsWizardPage - Custom Qt Widget Wizard Assistant de Widget Qt personnalisé - Custom Widget List Liste de widgets personnalisés - Widget &Classes: &Classes des widgets : - Specify the list of custom widgets and their properties. Spécifiez la liste des widgets personnalisés et leurs propriétés. - ... - ... + ... Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget - Form Formulaire @@ -17151,7 +14690,6 @@ p, li { white-space: pre-wrap; } Ouvrir - Tutorials Tutoriels @@ -17160,7 +14698,6 @@ p, li { white-space: pre-wrap; } Explorer les exemples Qt - Did You Know? Le saviez-vous ? @@ -17185,175 +14722,150 @@ p, li { white-space: pre-wrap; } Écrire des tests - The Qt Creator User Interface - + L'interface utilisateur de Qt Creator - Building and Running an Example - + Compiler et exécuter une exemple - Creating a Qt C++ Application - + Créer une application Qt C++ - Creating a Mobile Application - + Créer une application pour mobile - Creating a Qt Quick Application - + Créer une application Qt Quick - - Choose an example... Choisir un exemple... - Copy Project to writable Location? Copier le projet à un emplacement inscriptible ? - <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>Le projet que vous vous apprêtez à ouvrir se trouve dans un emplacement accessible en lecture seule :</p><blockquote>%1</blockquote><p>Veuillez sélectionner un emplacement accessible en écriture et cliquez sur "Copier projet et ouvrir" pour ouvrir une copie modifiable. Cliquez sur "Conserver l'emplacement et ouvrir" pour ouvrir le projet à l'emplacement courant.</p><p><b>Note :</b> Vous ne pourrez pas modifier ou compiler votre projet à l'emplacement courant.</p> - &Location: &Emplacement : - &Copy Project and Open &Copier projet et ouvrir - &Keep Project and Open see "<p>the projet you are about..." to understand the translation &Conserver l'emplacement et ouvrir - Warning Avertissement - The specified location already exists. Please specify a valid location. L'emplacement spécifié existe déjà. Veuillez spécifier un autre emplacement. - New Project - Nouveau projet + Nouveau projet - - Cmd Shortcut key Cmd - Alt Shortcut key Alt - Ctrl Shortcut key Ctrl - + If you add external libraries to your project, Qt Creator will automatically offer syntax highlighting and code completion. + Si vous ajoutez des librairies externes à votre projet, QtCreator va automatiquement mettre en place la coloration syntaxique et l'auto-complétion. + + + Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">dependencies</a> between projects. + Dans une session, vous pouvez ajouter <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">des dépendances</a> entre les projets. + + You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li></ul> - + Vous pouvez basculer entre les modes de Qt Creator en utilisant <tt>Ctrl+chiffre</tt>:<ul><li>1 - Accueil</li><li>2 - Editer</li><li>3 - Design</li><li>4 - Deboguer</li><li>5 - Projets</li><li>6 - Aide</li></ul> - You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">build settings</a>. - + Vous pouvez ajouter vos propre étapes de compilation dans les <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">paramètres de compilation</a>. - Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">dependencies</a> between projects. - + Dans une session, vous pouvez ajouter des <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">dépendances</a> entre des projets. You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li><li></li><li>6 - Output</li></ul> Vous pouvez basculer entre les modes de Qt Creator en utilisant <tt>Ctrl+number</tt>:<ul><li>1 - Accueil</li><li>2 - Éditeur</li><li>3 - Débogueur</li><li>4 - Projets</li><li>5 - Aide</li><li></li><li>6 - Output</li></ul> - You can show and hide the side bar using <tt>%1+0<tt>. Vous pouvez afficher et masquer la barre latérale en utilisant <tt>%1+0<tt>. - You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. Vous pouvez affiner les résultats de la fonction recherche en sélectionnant &quot;Mots complets&quot; ou &quot;Sensible à la casse&quot;. Cliquez simplement sur les icônes sur le bord droit du champ de recherche. - If you add <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">external libraries</a>, Qt Creator will automatically offer syntax highlighting and code completion. - Si vous ajoutez <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">des bibliothèques externes</a>, Qt Creator proposera automatiquement la coloration syntaxique et l'auto-complétion du code. + Si vous ajoutez <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">des bibliothèques externes</a>, Qt Creator proposera automatiquement la coloration syntaxique et l'auto-complétion du code. - The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. L'auto-complétion du code.est compatible avec CamelCase. Par exemple, pour compléter <tt>namespaceUri</tt> vous pouvez taper simplement <tt>nU</tt> puis <tt>Ctrl+Espace</tt>. - You can force code completion at any time using <tt>Ctrl+Space</tt>. Vous pouvez forcer la complétion de code en utilisant <tt>Ctrl+Space</tt>. - You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. Vous pouvez démarrer Qt Creator avec une session en le lançant avec <tt>qtcreator &lt;nomDeSession&gt;</tt>. - You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. Vous pouvez retourner en mode d'édition depuis n'importe quel autre mode en cliquant sur <tt>Echap</tt>. - You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> Vous pouvez passer d'un panneau de sortie à l'autre avec les touches <tt>%1+x</tt> où x est le numéro qui apparaît sur les boutons en dessous de la fenêtre : <ul><li>1 - Problèmes de compilation</li><li>2 - Résultat de la recherche</li><li>3 - Sortie de l'application</li><li>4 - Sortie de compilation</li></ul> - You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). Vous pouvez rapidement rechercher des méthodes, classes, de l'aide et plus à l'aide du <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Localisateur</a> (<tt>%1+K</tt>). You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. - Vous pouvez ajouter vos propre étapes de compilation dans les <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">paramètres de compilation</a>. + Vous pouvez ajouter vos propre étapes de compilation dans les <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">paramètres de compilation</a>. Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">dependencies</a> between projects. Dans une session, vous pouvez ajouter des <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html#dependencies">dépendances</a> entre des projets. - You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. Vous pouvez définir l'encodage de caractères préféré pour chaque projet dans <tt>Projet -> Paramètres de l'éditeur -> Encodage par défaut</tt>. - 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. Dans l'éditeur, vous pouvez aller à la définition du symbole en pressant <tt>F2</tt>, <tt>Maj+F2</tt> bascule entre déclaration et définition tandis que <tt>F4</tt> bascule entre en-tête et fichier source. @@ -17362,7 +14874,6 @@ p, li { white-space: pre-wrap; } Vous pouvez modifier le binaire qui sera exécuté lorsque vous appuyez sur le bouton <tt>Lancer</tt> : Ajoutez un <tt>exécutable personnalisé</tt> en cliquant sur le bouton <tt>+</tt> dans <tt>Projets -> Paramètres d'exécutions -> Configuration d'exécution</tt> et sélectionnez une nouvelle cible dans le menu déroulant. - You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. Vous pouvez utiliser Qt Creator conjointement avec de nombreux <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">systèmes de gestion de version</a> tel que Subversion, Perforce, CVS et Git. @@ -17371,35 +14882,29 @@ p, li { white-space: pre-wrap; } Dans l'éditeur, <tt>F2</tt> passe de la déclaration à la définition de fonction, tandis que <tt>F4</tt> passe du fichier source au fichier d'en-tête. - Explore Qt C++ Examples - + Explorer les exemples Qt C++ - Examples not installed... - + Exemples non trouvés... - Explore Qt Quick Examples - + Explorer les exemples Qt Quick - Open Project... - + Ouvrir le projet... - Create Project... - + Créer un projet... Qt4ProjectManager::Internal::S60DevicesPreferencePane - Form Formulaire @@ -17416,65 +14921,53 @@ p, li { white-space: pre-wrap; } Emplacement de Qt - Refresh Rafraîchir - S60 SDKs SDKs S60 - Add - Ajouter + Ajouter - Change Qt version - + Modifier la version de Qt - Remove - Supprimer + Supprimer - Error - Erreur + Erreur TextEditor::Internal::ColorSchemeEdit - Bold Gras - Italic Italique - Background: Arrière plan : - Foreground: Premier plan : - Erase background Effacer l'arrière plan - x x @@ -17482,18 +14975,15 @@ p, li { white-space: pre-wrap; } VCSBase::BaseCheckoutWizardPage - WizardPage WizardPage - Checkout Directory: checkout should stay in English? Répertoire de checkout : - Path: Chemin : @@ -17501,12 +14991,10 @@ p, li { white-space: pre-wrap; } Welcome::Internal::CommunityWelcomePageWidget - Form Formulaire - News From the Qt Labs Actualités de Qt Labs @@ -17515,37 +15003,30 @@ p, li { white-space: pre-wrap; } Sites web Qt - <b>Forum Nokia</b><br /><font color='gray'>Mobile Application Support</font> - + <b>Forum Nokia</b><br /><font color='gray'>Support pour application mobile</font> - <b>Qt LGPL Support</b><br /><font color='gray'>Buy commercial Qt support</font> - + <b>Support LGPL de Qt</b><br /><font color='gray'>Acheter le support commercial de Qt</font> - <b>Qt Centre</b><br /><font color='gray'>Community based Qt support</font> - + <b>Qt Centre</b><br /><font color='gray'>Support communautaire de Qt</font> - <b>Qt Home</b><br /><font color='gray'>Qt by Nokia on the web</font> - + <b>Qt Home</b><br /><font color='gray'>Qt par Nokia sur le web</font> - <b>Qt Git Hosting</b><br /><font color='gray'>Participate in Qt development</font> - + <b>Hébergement Qt Git</b><br /><font color='gray'>Participer au développement de Qt</font> - <b>Qt Apps</b><br /><font color='gray'>Find free Qt-based apps</font> - + <b>Qt Apps</b><br /><font color='gray'>Trouver les applications libres basées sur Qt</font> - http://labs.trolltech.com/blogs/feed http://labs.trolltech.com/blogs/feed @@ -17578,14 +15059,12 @@ p, li { white-space: pre-wrap; } Qt pour S60 - Qt Support Sites - + Sites du support Qt - Qt Links - + Liens Qt @@ -17599,7 +15078,6 @@ p, li { white-space: pre-wrap; } } - #headerFrame { border-image: url(:/welcome/images/center_frame_header.png) 0; border-width: 0; @@ -17611,17 +15089,14 @@ p, li { white-space: pre-wrap; } } - Help us make Qt Creator even better Aidez-nous à améliorer Qt Creator - Feedback Votre avis nous interesse - Welcome Accueil @@ -17633,73 +15108,60 @@ p, li { white-space: pre-wrap; } Afficher les détails - Details - Détails + Détails OpenWith::Editors - Plain Text Editor Éditeur de texte - Binary Editor Éditeur de binaire - C++ Editor Éditeur C++ - .pro File Editor Éditeur de fichier .pro - .files Editor - + Éditeur de fichiers .files - QMLJS Editor - + Éditeur QMLJS - .qmlproject Editor - + Éditeur de fichiers .qmlproject - Qt Designer - + Qt Designer - Qt Linguist - + Qt Linguist - Resource Editor - + Éditeur de ressources Core::Internal::SettingsDialog - Preferences Préférences - Options Options @@ -17715,17 +15177,14 @@ p, li { white-space: pre-wrap; } Aucun serveur définit dans les options de CodePaster ! - No Server defined in the CodePaster preferences. Aucun serveur défini dans les préférences CodePaster. - No Server defined in the CodePaster options. Aucun serveur défini dans les options CodePaster. - No such paste Aucun collage de ce type @@ -17733,7 +15192,6 @@ p, li { white-space: pre-wrap; } CodePaster::CodePasterSettingsPage - CodePaster CodePaster @@ -17742,12 +15200,10 @@ p, li { white-space: pre-wrap; } Collage de code - Server: Serveur : - Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). Note : spécifiez le nom d'hôte du service CodePaster sans aucun protocol (e.g. codepaster.mycompany.com). @@ -17800,10 +15256,8 @@ p, li { white-space: pre-wrap; } Recherche... - - Searching - + Recherche @@ -17813,12 +15267,10 @@ p, li { white-space: pre-wrap; } Obtient un projet à partir d'un dépôt CVS. - Checks out a CVS repository and tries to load the contained project. - + Vérifier le dépôt CVS et essayer le charger le projet contenu. - CVS Checkout CVS Checkout @@ -17826,17 +15278,14 @@ p, li { white-space: pre-wrap; } CVS::Internal::CheckoutWizardPage - Location - Emplacement + Emplacement - Specify repository and path. Spécifier le dépôt et le chemin. - Repository: Dépôt : @@ -17844,7 +15293,6 @@ p, li { white-space: pre-wrap; } CVSPlugin - Cannot find repository for '%1' Impossible de trouver le dépot de '%1' @@ -17852,27 +15300,22 @@ p, li { white-space: pre-wrap; } CVS::Internal::CVSPlugin - Parsing of the log output failed Échec de l'analyse de la sortie - &CVS &CVS - Add Ajouter - Add "%1" Ajouter "%1" - Alt+C,Alt+A Alt+C,Alt+A @@ -17893,191 +15336,154 @@ p, li { white-space: pre-wrap; } Rétablir "%1" - Diff Project Faire un diff sur le projet - Diff Current File Faire un diff du fichier courant - Diff "%1" Faire un diff de "%1" - Alt+C,Alt+D Alt+C,Alt+D - Commit All Files Faire un commit de tous les fichiers - Commit Current File Faire un commit du fichier courant - Commit "%1" Faire un commit de "%1" - Alt+C,Alt+C Alt+C,Alt+C - Filelog Current File Journal du fichier courant - Filelog "%1" Journal du fichier "%1" - Annotate Current File Annoter le fichier courant - Annotate "%1" Annoter "%1" - Delete... - + Supprimer… - Delete "%1"... - + Supprimer "%1"… - Revert... - + Rétablir... - Revert "%1"... - + Rétablir "%1"... - Diff Project "%1" - + Réaliser un diff du projet "%1" - Project Status Statut du projet - Status of Project "%1" - + Statut du projet "%1" - Log Project - Réaliser un log du projet + Réaliser un log du projet - Log Project "%1" - Réaliser un log du projet "%1" + Réaliser un log du projet "%1" - Update Project Mettre à jour le projet - Update Project "%1" - Mettre à jour le projet "%1" + Mettre à jour le projet "%1" - Repository Log - + Réaliser un log du dépôt - Revert Repository... - + Rétablir le dépôt... - Commit Faire un commit - Diff Selected Files Faire un diff sur tous les fichiers sélectionnés - &Undo Annu&ler - &Redo Re&faire - Closing CVS Editor Ferme l'éditeur CVS - Do you want to commit the change? - Voulez vous envoyez les changements ? + Voulez vous envoyer les changements ? - The commit message check failed. Do you want to commit the change? La vérification du message de commit a échoué. Voulez-vous soumettre vos modifications ? - The files do not differ. Les fichiers n'ont pas changé. - Revert repository - + Rétablir le dépôt - Would you like to revert all changes to the repository? - + Souhaitez-vous rétablir toutes les modifications sur le dépôt ? - Revert failed: %1 - + Éche de la restauration : %1 The file '%1' could not be deleted. Le fichier '%1' n'a pas pu être supprimé. - The file has been changed. Do you want to revert it? Le fichier a été modifié. Voulez-vous le rétablir ? @@ -18086,90 +15492,74 @@ p, li { white-space: pre-wrap; } La liste de commits s'étend sur plusieurs répertoires (%1). Veuillez les ajouter un par un. - Another commit is currently being executed. Un autre commit est en cours d'exécution. - There are no modified files. Il n'y a aucun fichier modifié. - Cannot create temporary file: %1 Impossible de créer le fichier temporaire : %1 - Project status Statut du projet - The initial revision %1 cannot be described. La révision initiale %1 n'a pas pu être décrite. - Could not find commits of id '%1' on %2. %2 is a date Impossible de trouver les commits d'id '%1' le %2. - Executing: %1 %2 - Exécute : %1 %2 + Exécuter : %1 %2 - Executing in %1: %2 %3 - Exécute dans %1 : %2 %3 + Exécuter dans %1 : %2 %3 - No cvs executable specified! Aucun exécutable CVS spécifié ! - The process terminated with exit code %1. - Le processus s'est terminé avec le code %1. + Le processus s'est terminé avec le code %1. - The process terminated abnormally. - Le processus s'est terminé de façon anormale. + Le processus s'est terminé de façon anormale. - Could not start cvs '%1'. Please check your settings in the preferences. - Impossible de démarrer cvs '%1'. Veuillez vérifier vos paramètres dans les préférences. + Impossible de démarrer cvs "%1". Veuillez vérifier vos paramètres dans les préférences. - CVS did not respond within timeout limit (%1 ms). - CVS n'a pas répondu dans le temps imparti (%1 ms). + CVS n'a pas répondu dans le temps imparti (%1 ms). CVS::Internal::CVSSubmitEditor - Added Ajouté - Removed Supprimé - Modified Modifié @@ -18181,7 +15571,6 @@ p, li { white-space: pre-wrap; } CVS::Internal::SettingsPageWidget - CVS Command CVS Command @@ -18189,17 +15578,14 @@ p, li { white-space: pre-wrap; } CdbStackFrameContext - <Unknown Type> <type inconnu> - <Unknown Value> <valeur inconnue> - <Unknown> <Inconnu> @@ -18207,7 +15593,6 @@ p, li { white-space: pre-wrap; } SymbolGroup - Out of scope Hors de la portée @@ -18215,19 +15600,16 @@ p, li { white-space: pre-wrap; } Debugger::Internal::MemoryViewAgent - Memory $ Mémoire $ - No memory viewer available Aucun visualiseur de mémoire disponible - The memory contents cannot be shown as no viewer plugin for binary data has been loaded. - + Le contenu de la mémoire ne peut pas être affiché car aucun éditeur pour des données binaires n'a pu être chargé. The memory contents cannot be shown as no viewer plugin not the BinEditor plugin could be loaded. @@ -18238,7 +15620,6 @@ p, li { white-space: pre-wrap; } Debugger::Internal::DebuggerRunControlFactory - Debug Déboguer @@ -18246,7 +15627,6 @@ p, li { white-space: pre-wrap; } Debugger::Internal::DebuggerRunControl - Debugger Débogueur @@ -18254,48 +15634,38 @@ p, li { white-space: pre-wrap; } Debugger::Internal::CoreGdbAdapter - - - Error Loading Symbols Érreur de chargement des symboles - No executable to load symbols from specified. Pas d'exécutable spécifié pour lire les symboles. - Loading symbols from "%1" failed: Échec de chargement des symboles depuis "%1" : - Attached to core temporarily. Attaché au core temporairement. - Unable to determine executable from core file. Impossible de déterminer l'exécutable à partir du fichier core. - Attach to core "%1" failed: Échec de liaison au core "%1" : - Symbols found. Symboles trouvés. - Attached to core. Attaché au core. @@ -18303,87 +15673,73 @@ p, li { white-space: pre-wrap; } Debugger::Internal::PlainGdbAdapter - Cannot set up communication with child process: %1 - Impossible de mettre en place la communication avec le processus enfant : %1 + Impossible de mettre en place la communication avec le processus enfant : %1 - Starting executable failed: - Échec du lancement de l'exécutable : + Échec du lancement de l'exécutable : Debugger::Internal::RemoteGdbAdapter - The upload process failed to start. Shell missing? - Le processus d'upload n'a pas pu démarrer. Shell manquant ? + Le processus d'upload n'a pas pu démarrer. Le shell est manquant ? - The upload process crashed some time after starting successfully. - Le processus d'upload a crashé après avoir démarré. + Le processus d'upload a crashé après avoir démarré. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. this string appear twice in the translation - La dernière fonction waitFor...() est arrivée à échéance. Le statut de QProcess est inchangé, vous pouvez essayer d'appeler waitFor...() à nouveau. + La dernière fonction waitFor...() est arrivée à échéance. Le statut de QProcess est inchangé, vous pouvez essayer d'appeler waitFor...() à nouveau. - 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. - Une erreur est survenue lors d'une tentative d'écriture sur l'entrée du processus d'upload. Le processus peut ne pas être lancé, ou il a fermé son entrée. + Une erreur est survenue lors d'une tentative d'écriture sur l'entrée du processus d'upload. Le processus peut ne pas être lancé, ou il a fermé son entrée. - An error occurred when attempting to read from the upload process. For example, the process may not be running. - Une erreur est survenue lors d'une tentative de lecture depuis le processus d'upload. Il est probable que le processus n'est pas en cours d'exécution. + Une erreur est survenue lors d'une tentative de lecture depuis le processus d'upload. Il est probable que le processus n'est pas en cours d'exécution. - An unknown error in the upload process occurred. This is the default return value of error(). - Une erreur inconnue est survenue dans le processus d'upload. Ceci est la valeur de retour par défaut de error(). + Une erreur inconnue est survenue dans le processus d'upload. Ceci est la valeur de retour par défaut de error(). - Error - Erreur + Erreur Adapter too old: does not support asynchronous mode. Adaptateur trop ancien : aucun support du mode asynchrone. - Starting remote executable failed: - Le démarrage de l'exécutable distant a échoué : + Le démarrage de l'exécutable distant a échoué : Debugger::Internal::TrkGdbAdapter - Port specification missing. - + Spécification du port manquante. - Unable to acquire a device on '%1'. It appears to be in use. - + Impossible d'acquérir un device pour le port "%1". Il semble être utilisé. - Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. Processus démarré, PID : 0x%1, id du thread : 0x%2, segment de code : 0x%3, segment de données : 0x%4. - Connecting to TRK server adapter failed: La connection à l'adaptateur du serveur TRK a échoué : @@ -18399,183 +15755,130 @@ p, li { white-space: pre-wrap; } NameDemanglerPrivate - Premature end of input Saisie interrompue - Invalid encoding Encodage invalide - Invalid name Nom invalide - - Invalid nested-name Nom imbriqué invalide - - Invalid template args Argument du modèle invalide - - Invalid template-param Paramètre du modèle invalide - Invalid qualifiers: unexpected 'volatile' Qualificateurs invalides : 'volatile" inattendu - Invalid qualifiers: 'const' appears twice Qualificateurs invalides : 'const' apparaît deux fois - Invalid non-negative number Nombre positif invalide - - - Invalid template-arg Argument de template invalide - - - Invalid expression Expression invalide - Invalid primary expression Expression primaire invalide - - - Invalid expr-primary expr-primary invalide - - - Invalid type Type invalide - Invalid built-in type Type prédéfini invalide - Invalid builtin-type Type prédéfini invalide - - Invalid function type Type de fonction invalide - - Invalid unqualified-name Nom non-qualifié invalide - Invalid operator-name '%s' Nom de l'opérateur invalide '%s' - - Invalid array-type Type de tableau invalide - Invalid pointer-to-member-type Type de pointeur vers membre invalide - - - Invalid substitution Substitution invalide - Invalid substitution: element %1 was requested, but there are only %2 Substitution invalide : l'élément %1 était requis, mais il y a seulement %2 - Invalid substitution: There are no elements Substitution invalide : il n'y a aucun éléments - Invalid special-name Nom spécial invalide - - - Invalid local-name Nom local invalide - Invalid discriminator Discriminateur invalide - - - Invalid ctor-dtor-name Nom de constructeur/destructeur invalide - - Invalid call-offset Décallage de l'appel (call offset) invalide - Invalid v-offset Décallage-v (v-offset) invalide - Invalid digit Chiffre invalide - At position %1: À la position %1 : @@ -18583,7 +15886,6 @@ p, li { white-space: pre-wrap; } Designer::FormWindowEditor - untitled sans titre @@ -18595,12 +15897,10 @@ p, li { white-space: pre-wrap; } Clone un projet à partir d'un dépôt git. - Clones a Git repository and tries to load the contained project. - + Clone un dépôt Git et essaye de charger le projet contenu. - Git Repository Clone Clone du dépôt git @@ -18608,17 +15908,14 @@ p, li { white-space: pre-wrap; } Git::CloneWizardPage - Location - Emplacement + Emplacement - Specify repository URL, checkout directory and path. Spécifie l'URL du dépôt, le répertoire et le chemin du checkout. - Clone URL: URL de clone : @@ -18626,17 +15923,14 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::Gitorious - Error parsing reply from '%1': %2 Erreur d'analyse de la réponse de '%1' : %2 - Request failed for '%1': %2 Échec de la requête pour '%1' : %2 - Open source projects that use Git. Projets open source qui utilisent Git. @@ -18648,12 +15942,10 @@ p, li { white-space: pre-wrap; } Clone un projet à partir d'un dépôt Gitorious. - Clones a Gitorious repository and tries to load the contained project. - + Clone un dépôt Git et essaie de charger le projet contenu. - Gitorious Repository Clone Clone du dépôt Gitorious @@ -18661,12 +15953,10 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousHostWizardPage - Host - Hôte + Hôte - Select a host. Sélectionner un hôte. @@ -18674,12 +15964,10 @@ p, li { white-space: pre-wrap; } Gitorious::Internal::GitoriousProjectWizardPage - Project - Projet + Projet - Choose a project from '%1' Choisir un projet à partir de '%1' @@ -18695,28 +15983,22 @@ p, li { white-space: pre-wrap; } Aide - General Settings - + Réglages généraux - Open Image Ouvrir une image - - Files (*.xbel) Fichiers (*.xbel) - There was an error while importing bookmarks! Erreur lors de l'importation des signets ! - Save File Enregistrer ? (tout court) Enregistrer le fichier @@ -18725,12 +16007,10 @@ p, li { white-space: pre-wrap; } Help::Internal::XbelReader - The file is not an XBEL version 1.0 file. Il ne s'agit pas d'un fichier XBEL version 1.0. - Unknown title Titre inconnu @@ -18738,17 +16018,14 @@ p, li { white-space: pre-wrap; } ProjectExplorer::ApplicationLauncher - Failed to start program. Path or permissions wrong? Échec lors de l'exécution du programme. Mauvais chemin ou permissions ? - The program has unexpectedly finished. Le programme s'est terminé subitement. - Some error has occurred while running the program. Une erreur s'est produite lors de l'exécution du programme. @@ -18756,7 +16033,6 @@ p, li { white-space: pre-wrap; } ProjectExplorer::Internal::LocalApplicationRunControlFactory - Run Exécuter @@ -18764,12 +16040,10 @@ p, li { white-space: pre-wrap; } ProjectExplorer::Internal::LocalApplicationRunControl - Starting %1... Démarrage de %1... - %1 exited with code %2 %1 s'est terminé avec le code %2 @@ -18777,22 +16051,18 @@ p, li { white-space: pre-wrap; } ProjectExplorer::DebuggingHelperLibrary - The target directory %1 could not be created. Le dossier cible %1 n'a pas pu être créé. - The existing file %1 could not be removed. Le fichier existant %1 n'a pas pu être supprimé. - The file %1 could not be copied to %2. Le fichier %1 n'a pas pu être copié en %2. - The debugger helpers could not be built in any of the directories: - %1 @@ -18803,22 +16073,18 @@ Reason: %2 Raison : %2 - Building debugging helper library in %1 Compilation de la bibliothèque d'assistance au débogage dans %1 - Running %1 %2... Exécute %1 %2... - - %1 not found in PATH traduire PATH ici ? @@ -18826,8 +16092,6 @@ Raison : %2 - - Running %1 ... Exécute %1... @@ -18837,7 +16101,6 @@ Raison : %2 ProjectExplorer::Internal::ProjectWelcomePage - Develop Développer @@ -18929,17 +16192,14 @@ Raison : %2 Qt4ProjectManager::Internal::ClassList - <New class> <Nouvelle classe> - Confirm Delete Confirmez la suppression - Delete class %1 from list? Supprimer la classe %1 de la liste ? @@ -18955,48 +16215,40 @@ Raison : %2 Crée un widget personnalisé ou une collection de widgets personnalisés pour Qt4 Designer. - Qt Custom Designer Widget - + Widget personnalisé pour Qt4 Designer - Creates a Qt Custom Designer Widget or a Custom Widget Collection. - + Crée un widget personnalisé ou une collection de widgets personnalisés pour Qt4 Designer. Qt4ProjectManager::Internal::CustomWidgetWizardDialog - This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. Cet assistant génère un projet pour créer un widget personnalisé ou une collection de widgets personnalisés pour Qt4 Designer. - Custom Widgets - + Widgets personnalisés - Plugin Details - + Détails du plugin Qt4ProjectManager::Internal::PluginGenerator - Cannot open icon file %1. Impossible d'ouvrir le fichier d'icône %1. - Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. Créer plusieurs bibliothèques de widgets (%1, %2) dans un même projet (%3) n'est pas supporté. - Cannot open %1: %2 Imposible d'ouvrir %1 : %2 @@ -19004,7 +16256,6 @@ Raison : %2 Qt4ProjectManager::Internal::GettingStartedWelcomePage - Getting Started Commencer @@ -19012,7 +16263,6 @@ Raison : %2 Qt4ProjectManager::Internal::S60DeviceRunConfiguration - QtS60DeviceRunConfiguration QtS60DeviceRunConfiguration @@ -19021,7 +16271,6 @@ Raison : %2 Impossible d'analyser %1. La configuration d'appareil QtS60 %2 ne peut pas être démarrée. - %1 on Symbian Device %1 sur appareil Symbian @@ -19029,29 +16278,24 @@ Raison : %2 Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget - Device: Appareil mobile : - Name: Nom : - Arguments: - Arguments : + Arguments : - Installation file: - + Fichier d'installation : - Device on serial port: - + Appareil mobile sur port série : Install File: @@ -19062,7 +16306,6 @@ Raison : %2 Appareil mobile sur port série : - Queries the device for information Inspecter l'appareil mobile pour mettre à jour les informations @@ -19104,7 +16347,6 @@ Raison : %2 Résumé : fonctionne avec '%1' %2 - Connecting... Connexion... @@ -19117,7 +16359,6 @@ Raison : %2 Qt4ProjectManager::Internal::S60DeviceRunConfigurationFactory - %1 on Symbian Device %1 sur appareil Symbian @@ -19129,12 +16370,10 @@ Raison : %2 Création de %1.sisx... - Executable file: %1 Fichier exécutable : %1 - Debugger for Symbian Platform Débogueur pour plateforme Symbian @@ -19156,7 +16395,6 @@ Raison : %2 Une erreur est survenue lors de la création du package. - Package: %1 Deploying application to '%2'... Package : %1 @@ -19169,81 +16407,66 @@ Check if the phone is connected and the TRK application is running. Veuillez vérifier si le téléphone est connecté et que l'application TRK est lancée. - Unable to remove existing file '%1': %2 - + Impossible de supprimer le fichier existant '%1' : %2 - Unable to rename file '%1' to '%2': %3 - + Impossible de renommer le fichier "%1" en "%2" : %3 - Deploying - + Déployer - There is no device plugged in. Il n'y a aucun appareil mobile connecté. - Renaming new package '%1' to '%2' - + Renommer le nouveau paquet "%1" en "%2" - Removing old package '%1' - + Supprimer l'ancien paquet "%1" - Package file not found - + Fichier du paquet non trouvé - Failed to find package '%1': %2 - + Impossible de trouver le paquet "%1" : %2 - Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running. Impossible de connecter le téléphone sur le port '%1' : %2 Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. - Could not create file %1 on device: %2 Impossible de créer le fichier %1 sur l'appareil mobile %2 - Could not write to file %1 on device: %2 Impossible d'écrire le fichier %1 sur l'appareil mobile : %2 - Could not close file %1 on device: %2. It will be closed when App TRK is closed. Impossible de fermer le fichier %1 sur l'appareil mobile %2. Il sera fermé lorsque App TRK sera fermé. - Could not connect to App TRK on device: %1. Restarting App TRK might help. Impossible de se connecter à App TRK sur l'appareil mobile : %1. Redémarrer App TRK pourrait résoudre le problème. - Copying installation file... - + Copier le fichier d'installation... - The device '%1' has been disconnected - + L'appareil mobile "%1" a été déconnecté Copying install file... @@ -19254,27 +16477,22 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.%1% copié. - Installing application... Installation de l'application... - Could not install from package %1 on device: %2 Impossible d'installer à partir du package %1 sur l'appareil mobile : %2 - Waiting for App TRK En attente d'App TRK - Please start App TRK on %1. Veuillez lancer App TRK sur %1. - Canceled. Annulé. @@ -19294,22 +16512,18 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Qt4ProjectManager::Internal::S60DeviceRunControl - Finished. Terminé. - Starting application... Démarrage de l'application... - Application running with pid %1. Application en cours d'éxecution avec le pid %1. - Could not start application: %1 Impossible de démarrer l'application : %1 @@ -19317,17 +16531,14 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Qt4ProjectManager::Internal::S60DeviceDebugRunControl - Warning: Cannot locate the symbol file belonging to %1. Attention : Impossible de trouver le fichier de symboles appartenant à %1. - Launching debugger... Lancement du débogueur... - Debugging finished. Débogage terminé. @@ -19342,12 +16553,10 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget - Name: Nom : - Executable: Exécutable : @@ -19359,14 +16568,12 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Qt4ProjectManager::Internal::S60EmulatorRunConfiguration - %1 in Symbian Emulator %1 sur l'émulateur Symbian - Qt Symbian Emulator RunConfiguration - + Configuration d'exécution de l'émulateur Qt Symbian QtSymbianEmulatorRunConfiguration @@ -19380,7 +16587,6 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Qt4ProjectManager::Internal::S60EmulatorRunConfigurationFactory - %1 in Symbian Emulator %1 sur l'émulateur Symbian @@ -19388,17 +16594,14 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Qt4ProjectManager::Internal::S60EmulatorRunControl - Starting %1... Démarrage %1... - [Qt Message] [Message Qt] - %1 exited with code %2 %1 a retourné le code %2 @@ -19406,17 +16609,14 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Qt4ProjectManager::Internal::S60Manager - Run in Emulator Démarrer sur l'émulateur - Run on Device Démarrer sur l'appareil - Debug on Device Déboguer sur l'appareil mobile @@ -19455,12 +16655,10 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.Vérifie un projet à partir d'un dépôt Subversion. - Checks out a Subversion repository and tries to load the contained project. - + Vérifier le dépôt Subversion et essayer le charger le projet contenu. - Subversion Checkout Checkout Subversion @@ -19472,17 +16670,14 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.Spécifier le dépôt, le répertoire et le chemin de checkout. - Location - Emplacement + Emplacement - Specify repository URL, checkout directory and path. - Spécifie l'URL du dépôt, le répertoire et le chemin du checkout. + Spécifie l'URL du dépôt, le répertoire et le chemin du checkout. - Repository: Dépôt : @@ -19490,7 +16685,6 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. TextEditor::Internal::ColorScheme - Not a color scheme file. Pas sur ? Pas un fichier de jeu de couleur. @@ -19499,7 +16693,6 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. TextEditor::Internal::FontSettings - Customized Personnalisé @@ -19507,32 +16700,26 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. VCSBase::BaseCheckoutWizard - Cannot Open Project Impossible d'ouvrir le projet - Failed to open project in '%1'. Échec de l'ouverture du projet dans '%1'. - Could not find any project files matching (%1) in the directory '%2'. Impossible de trouvé un fichier de projet correspondant (%1) dans le répertoire '%2'. - The Project Explorer is not available. L'explorateur de projets n'est pas disponible. - '%1' does not exist. '%1' n'existe pas. - Unable to open the project '%1'. Impossible d'ouvrir le projet '%1'. @@ -19540,27 +16727,22 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. VCSBase::ProcessCheckoutJob - Unable to start %1: %2 Impossible de démarrer '%1' : %2 - The process terminated with exit code %1. Le processus s'est terminé avec le code %1. - The process returned exit code %1. Le processus a retourné le code %1. - The process terminated in an abnormal way. Le processus s'est terminé d'une façon anormale. - Stopping... Arrêt... @@ -19568,22 +16750,18 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. VCSBase::Internal::CheckoutProgressWizardPage - Checkout - Checkout + Checkout - Checkout started... Checkout commencé... - Failed. Échec. - Succeeded. Réussi. @@ -19591,17 +16769,14 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. VCSBase::VCSBaseOutputWindow - Open "%1" - + Ouvrir "%1" - Clear Effacer - Version Control Gestion de versions @@ -19619,9 +16794,8 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.Communauté - News && Support - + Nouveauté && Support @@ -19631,82 +16805,66 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.inconnue - CMake Project file Fichier de projet CMake - C Source file Fichier source C - C Header file Fichier d'en-tête C - C++ Header file Fichier d'en-tête C++ - C++ header En-tête C++ - C++ Source file Fichier source C++ - C++ source code Code source C++ - Objective-C source code Code source en objective-C - CVS submit template Modèle d'envoi de CVS - Qt Designer file Fichier Qt designer - Generic Qt Creator Project file Fichier de projet Qt Creator générique - Generic Project Files Fichiers de projet génériques - Generic Project Include Paths Chemins d'inclusion de projet génériques - Generic Project Configuration File Fichier de configuration de projet générique - Perforce submit template Modèle d'envoi de Perforce - QML file Fichier QML @@ -19715,122 +16873,98 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.Fichier de projet QML - Qt Project file Fichier de projet Qt - Qt Project include file Fichier d'inclusion de projet Qt - message catalog Catalogue de messages - Qt Script file Fichier Qt Script - BMP image - + Image BMP - GIF image - + Image GIF - ICO image - + Image ICO - JPEG image - + Image JPEG - MNG video - + Video MNG - PBM image - + Image PBM - PGM image - + Image PGM - PNG image - + Image PNG - PPM image - + Image PPM - SVG image - + Image SVG - TIFF image - + Image TIFF - XBM image - + Image XBM - XPM image - + Image XPM - QML Project file - + Fichier de projet QML - Qt Project feature file - + fichier de caractéristiques de projet Qt - Qt Resource file Fichier de ressource Qt - Subversion submit template Modèle d'envoi de Subversion - Plain text document Document de text brut - XML document Document XML - Differences between files Différences entre fichiers @@ -19838,32 +16972,28 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Debugger::Internal::AbstractGdbAdapter - The Gdb process could not be stopped: %1 Le processus Gdb ne peut pas être arrêté : %1 - Application process could not be stopped: %1 - + Le processus de l'application ne peut être arrêté : +%1 - Application started - + Démarrage de l'application - Application running - + Application en cours d'exécution - Attached to stopped application - + Attachés à l'application arrêtée Inferior process could not be stopped: @@ -19884,7 +17014,6 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.Attaché au processus inférieur. - Connecting to remote server failed: %1 La connexion au serveur distant a échoué : @@ -19894,7 +17023,6 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Debugger::Internal::TermGdbAdapter - Debugger Error Erreur du débogueur @@ -19924,62 +17052,50 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. QmlParser - Illegal character Caractère invalide - Unclosed string at end of line Chaîne de caractère non terminée en fin de ligne - Illegal escape squence Séquence d'échappement invalide - Illegal unicode escape sequence trad illegal ? Séquence d'échappement unicode invalide - Unclosed comment at end of file Commentaire non terminée en fin de ligne - Illegal syntax for exponential number Syntaxe pour le nombre exponentiel invalide - Identifier cannot start with numeric literal Trad numeric literal ? Un identificateur ne peut pas commencer par un nombre - Unterminated regular expression literal Expression régulière non terminée - Invalid regular expression flag '%0' Expression régulière invalide flag '%0' - Unexpected token `%1' - Symbole inattendu '%1' + Symbole inattendu "%1" - - Expected token `%1' - Symbole attendu '%1' + Symbole attendu "%1" Unexpected token '%1' @@ -19990,8 +17106,6 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.Symbole attendu '%1' - - Syntax error Erreur de syntaxe @@ -19999,27 +17113,22 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Qt4ProjectManager::Internal::S60Devices::Device - Id: Id : - Name: Nom : - EPOC: EPOC : - Tools: Outils : - Qt: Qt : @@ -20027,37 +17136,30 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. trk::BluetoothListener - %1: Stopping listener %2... %1 : arrêt de l'observateur %2... - %1: Starting Bluetooth listener %2... %1 : démarrage de l'observateur Bluetooth %2... - Unable to run '%1': %2 Impossible de démarrer '%1' : %2 - %1: Bluetooth listener running (%2). %1 : observateur Bluetooth en cours d'éxecution (%2). - %1: Process %2 terminated with exit code %3. %1 : processus %2 terminé avec le code %3. - %1: Process %2 crashed. %1 : processus %2 planté. - %1: Process error %2: %3 %1 : erreur de processus %2 : %3 @@ -20065,7 +17167,6 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. trk::promptStartCommunication - Connection on %1 canceled. Connexion sur %1 annulée. @@ -20079,22 +17180,18 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé.Démarrage de TRK sur %1 en attente... - Waiting for App TRK En attente d'App TRK - Waiting for App TRK to start on %1... Démarrage d'App TRK sur %1 en attente... - Waiting for Bluetooth Connection Attente d'une connexion Bluetooth - Connecting to %1... Connexion à %1... @@ -20102,7 +17199,6 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. trk::BaseCommunicationStarter - %1: timed out after %n attempts using an interval of %2ms. %1 : interruption après %n tentative en utilisant un intervalle de %2ms. @@ -20110,12 +17206,10 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. - %1: Connection attempt %2 succeeded. %1 : tentative de connexion %2 réussie. - %1: Connection attempt %2 failed: %3 (retrying)... %1 : tenative de connexion %2 echoué : %3 (nouvel essai)... @@ -20123,12 +17217,10 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. Debugger::Internal::SourceFilesModel - Internal name Nom interne - Full name Nom complet @@ -20136,47 +17228,38 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. ProjectExplorer::Internal::BuildConfigDialog - Change build configuration && continue Changer la configuration de compilation et continuer - Cancel Annuler - Continue anyway Continuer malgré tout - Run configuration does not match build configuration La configuration d'éxecution ne correspond pas à la configuration de compilation - The active build configuration builds a target that cannot be used by the active run configuration. La configuration de compilation sélectionnée compile une cible ne pouvant être utilisée par la configuration d'éxecution sélectionnée. - 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). Ceci peut se produire lorsque la configuration de compilation sélectionnée utilise la mauvaise version de Qt et/ou chaîne de compilation pour la configuration d'éxecution sélectionnée (par exemple. l'exécution dans l'émulateur Symbian requiert une compilation avec la chaîne WINSCW). - No valid build configuration found. Aucune configuration de compilation valide trouvée. - Active run configuration - Configuration d'exécution active + Configuration d'exécution active - Choose build configuration: Choisir la configuration de compilation : @@ -20184,41 +17267,34 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. 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 protocole 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 - big endian gros-boutiste ?? big endian - little endian little endian - , type size: %1 will be inserted into s60description , taille du type : %1 - , float size: %1 will be inserted into s60description , taille d'un flottant : %1 @@ -20227,1614 +17303,1335 @@ Veuillez vérifier que le téléphone est connecté et que App TRK est lancé. CommandMappings - Command Mappings - + Mappages de commandes - Command - Commande + Commande - Label - + Libellé - Target - + Cible - Defaults - Restaurer + Restaurer - Import... - Importer... + Importer... - Export... - Exporter... + Exporter... - Target Identifier - + Identifiant de la cible - Target: - + Cible : - Reset - Réinitialiser + Réinitialiser CodePaster::FileShareProtocolSettingsWidget - Form - Formulaire + Formulaire - &Path: - + Che&min : - &Display: - + &Afficher : - entries - + Entrées - The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. - + J'ai traduis "fileshare". Mais la phrase me semble lourde... +cédric : je pense qu'il faut laisser comme ça moi, ou alors carrément enlever "basé sur le partage de fichiers" mais du coup on en perd en route ... (j'ai changé "Les fichiers" en "Ces fichiers", je trouve que ça fait moins pompeux. + Le protocole de collage basé sur le partage de fichier permet de partager des fragments de code en utilisant de simples fichiers sur un disque réseau partagé. Ces fichiers ne sont jamais effacés. Git::Internal::StashDialog - Stashes - + Staches - Name - Nom + Nom - Branch - + Branche - Message - Message + Message - Delete all... - + Tout supprimer... - Delete... - + Supprimer… - Show - + Afficher - Restore... - + Restauration... - Restore to branch... Restore a git stash to new branch to be created - + Restaurer la branche... - Refresh - Rafraîchir + Rafraîchir - <No repository> - + <Aucun dépôt> - Repository: %1 - + Dépôt : %1 - - Delete stashes - + Supprimer les stashes - Do you want to delete all stashes? - + Voulez-vous supprimer tous les stashes ? - Do you want to delete %n stash(es)? - - + + Voulez-vous effacer %n stash ? + Voulez-vous effacer %n stashes ? - Repository modified - + Dépôt modifié - %1 cannot be restored since the repository is modified. You can choose between stashing the changes or discarding them. - + %1 ne peut pas être restauré depuis que le dépôt a été modifié. +Vous pouvez choisir entre mettre les changements dans le stash ou de les abandonner. - Stash - Mettre dans le stash + Mettre dans le stash - Discard - Abandonner + Abandonner - Restore Stash to Branch - + Restaurer le stash dans la branche - Branch: - Branche : + Branche : - Stash Restore - + Restauration du stash - Would you like to restore %1? - + Souhaitez-vous restaurer "%1" ? - Error restoring %1 - + Erreur lors de la restauration de %1 Mercurial::Internal::MercurialCommitPanel - General Information - Informations générales + Informations générales - Repository: - Dépôt : + Dépôt : - repository - dépôt + dépôt - Branch: - Branche : + Branche : - branch - branche + branche - Commit Information - Informations de commit + Informations de commit - Author: - Auteur : + Auteur : - Email: - Email : + Email : Mercurial::Internal::OptionsPage - Form - Formulaire + Formulaire - Configuration - + Configuration - Command: - Commande : + Commande : - User - + Utilisateur - Username to use by default on commit. - + Nom d'utilisateur à utiliser par défaut lors des commits. - Default username: - + Nom d'utilisateur par défaut : - Email to use by default on commit. - + Email à utiliser par défaut lors des commit. - Default email: - + Email par défaut : - Miscellaneous - + Divers - Log count: - + Nombre de log : - The number of recent commit logs to show, choose 0 to see all enteries - + Le nombre de logs de commit récents à afficher, mettez 0 pour tout afficher - Timeout: - + Timeout : - s - + s - Prompt on submit - + Invite lors du submit - Mercurial - + Mercurial Mercurial::Internal::RevertDialog - Revert - Rétablir + Rétablir - Specify a revision other than the default? - + Spécifier une revision différente de celle par défaut ? - Revision: - + Révision : Mercurial::Internal::SrcDestDialog - Dialog - Boîte de dialogue + Boîte de dialogue - Default Location - + Emplacement par défaut - Local filesystem: - + Système local de fichier : - e.g. https://[user[:pass]@]host[:port]/[path] - + p. ex. https://[user[:pass]@]host[:port]/[path] - Specify Url: - + Spécifier l'URL : ProjectExplorer::Internal::AddTargetDialog - Add target - + Ajouter une cible - Target: - + Cible : ProjectExplorer::Internal::DoubleTabWidget - DoubleTabWidget - + DoubleTabWidget ProjectExplorer::Internal::TargetSettingsWidget - TargetSettingsWidget - + TargetSettingsWidget BehaviorDialog - Dialog - Boîte de dialogue + Boîte de dialogue - Type: - + Type : - Id: - Id : + Id : - Property Name: - + Nom de la propriété : - Animation - + Animation - SpringFollow - + SpringFollow - Settings - + Paramètres - Duration: - + Durée : - Curve: - + Courbe : - easeNone - + easeNone - Source: - Source : + Source : - Velocity: - + Vitesse : - Spring: - + Élasticité : - Damping: - + Amortissement : GradientDialog - Edit Gradient - + Éditer le gradient GradientEditor - Form - Formulaire + Formulaire - Gradient Editor - + Editeur de gradient - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. - + Cette zone affiche un aperçu du gradient en cours d'édition. Il vous permet également de modifier les paramètres spécifique au type de gradient tels que le point de départ et le point final, le rayon, etc. par glisser-déposer. - 1 - 1 + 1 - 2 - 2 + 2 - 3 - 3 + 3 - 4 - 4 + 4 - 5 - 5 + 5 - Gradient Stops Editor - + Editeur de point d'arrêt du gradient - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. - + Cette zone vous permet de modifier les points d'arrêt du gradient. Double-cliquez sur la poignée d'un point d'arrêt existant pour la dupliquer. Double-cliquez à l'extérieur des poignées des points d'arrêt existant pour créer un nouveau point d'arrêt. Glisser-déposer une poignée pour la repositionner. Utilisez le bouton droit de la souris pour faire apparaître le menu contextuel avec des actions supplémentaires. - Zoom - Zoom + Zoom - Reset Zoom - + Réinitialiser le zoom - Position - + Position - Hue - + Teinte - H - + T - Saturation - + Saturation - S - + S - Sat - + Sat - Value - Valeur + Valeur - V - + V - Val - + Val - Alpha - + Alpha - A - + A - Type - Type + Type - Spread - + Séquence - Color - + Couleur - Current stop's color - + Couleur du point d'arrêt courant - Show HSV specification - + Afficher les spécifications TSV - HSV - + TSV - Show RGB specification - + Afficher les spécifications RVB - RGB - + RVB - Current stop's position - + Position du point d'arrêt courant - % - + % - Zoom In - + Zoom avant - Zoom Out - + Zoom arrière - Toggle details extension - + Activer/désactiver les détails des extensions - > - + > - Linear Type - + Type linéaire - ... - ... + ... - Radial Type - + Type radial - Conical Type - + Type conique - Pad Spread - + Séquence par remplissage - Repeat Spread - + Séquence répétée - Reflect Spread - + Séquence en reflet - Start X - + X initial - Start Y - + Y initial - Final X - + X final - Final Y - + Y final - - Central X - + X central - - Central Y - + Y central - Focal X - + Focale X - Focal Y - + Focale Y - Radius - + Rayon - Angle - + Angle - Linear - + Linéaire - Radial - + Radial - Conical - + Conique - Pad - + Remplissage - Repeat - + Répétition - Reflect - + Reflet QtGradientDialog - Edit Gradient - + Éditer le gradient QtGradientEditor - Form - Formulaire + Formulaire - Gradient Editor - + Editeur de gradient - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. - + Cette zone affiche un aperçu du gradient en cours d'édition. Il vous permet également de modifier les paramètres spécifique au type de gradient tels que le point de départ et le point final, le rayon, etc. par glisser-déposer. - 1 - 1 + 1 - 2 - 2 + 2 - 3 - 3 + 3 - 4 - 4 + 4 - 5 - 5 + 5 - Gradient Stops Editor - + Editeur de point d'arrêt du gradient - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. - + Cette zone vous permet de modifier les points d'arrêt du gradient. Double-cliquez sur la poignée d'un point d'arrêt existant pour la dupliquer. Double-cliquez à l'extérieur des poignées des points d'arrêt existant pour créer un nouveau point d'arrêt. Glisser-déposer une poignée pour la repositionner. Utilisez le bouton droit de la souris pour faire apparaître le menu contextuel avec des actions supplémentaires. - Zoom - Zoom + Zoom - Reset Zoom - + Réinitialiser le zoom - Position - + Position - Hue - + Teinte - H - + T - Saturation - + Saturation - S - + S - Sat - + Sat - Value - Valeur + Valeur - V - + V - Val - + Val - Alpha - + Alpha - A - + A - Type - Type + Type - Spread - + Séquence - Color - + Couleur - Current stop's color - + Couleur du point d'arrêt courant - Show HSV specification - + Afficher les spécifications RVB - HSV - + TSV - Show RGB specification - + Afficher les spécifications TSV - RGB - + RVB - Current stop's position - + Position du point d'arrêt courant - % - + % - Zoom In - + Zoom avant - Zoom Out - + Zoom arrière - Toggle details extension - + Activer/désaciver les détails de l'extension - > - + > - Linear Type - + Type linéaire - ... - ... + ... - Radial Type - + Type radial - Conical Type - + Type conique - Pad Spread - + Séquence par remplissage - Repeat Spread - + Séquence répétée - Reflect Spread - + Séquence en reflet - Start X - + X initial - Start Y - + Y initial - Final X - + X final - Final Y - + Y final - - Central X - + X central - - Central Y - + Y central - Focal X - + Focale X - Focal Y - + Focale Y - Radius - + Rayon - Angle - + Angle - Linear - + Linéaire - Radial - + Radial - Conical - + Conique - Pad - + Remplissage - Repeat - + Répéter - Reflect - + Reflet QtGradientView - Gradient View - + Visualisation du gradient - - New... - Nouveau... + Nouveau... - - Edit... - Modifier... + Modifier... - - Rename - Renommer + Renommer - - Remove - Supprimer + Supprimer - Grad - + Grad - Remove Gradient - + Supprimer le gradient - Are you sure you want to remove the selected gradient? - + Êtes-vous sur de vouloir supprimer le gradient sélectionné ? QtGradientViewDialog - - Select Gradient - + Choisir le gradient QmlDesigner::Internal::SettingsPage - Form - Formulaire + Formulaire - Snapping - + pour être cohérents avec designer + Aimantation - Item spacing - + Espacement entre les éléments - Snap margin - + idem + Distance d'aimantation - Qt Quick Designer - + Designer Qt Quick StartExternalQmlDialog - Start Simultaneous QML and C++ Debugging - + Démarrer simultanément le déboguage du QML et du C++ - Debugging address: - + Addresse du débogeur : - Debugging port: - + Port du débogueur : - 127.0.0.1 - 127.0.0.1 + 127.0.0.1 - Project: - + Projet : - <No project> - + <Aucun projet> - Viewer path: - + Chemin du visualisateur : - Viewer arguments: - + Arguments du visualisateur : - To switch languages while debugging, go to Debug->Language menu. - + Pour changer de langage pendant le débogage, allez dans le menu Déboguage->Langage. MaemoConfigTestDialog - Device Configuration Test - + Test de la configuration du périphérique MaemoPackageCreationWidget - Package contents: - + Contenu du paquet : - Add File to Package - + Ajouter un fichier au paquet - Remove File from Package - + Supprimer un fichier du paquet + + + Check this if you want the files below to be deployed directly. + Cochez ceci si vous voulez que les fichiers ci-dessous soient déployés directement. + + + Skip packaging step + Sauter l'étape de packaging + + + Version number: + Numéro de version : + + + Major: + Majeur : + + + Minor: + Mineur : + + + Patch: + Patch : + + + Files to deploy: + Fichiers à déployer : MaemoSettingsWidget - Maemo Device Configurations - + Configurations du périphérique Maemo - Configuration: - + Configuration : - Name - Nom + Nom - Device type: - + Type de périphérique : - Remote device - + Périphérique distant - Maemo emulator - + Émulateur Maemo - Authentication type: - + Type d'identification : - Password - + Mot de passe - Key - + Clé - Host name: - + Nom de l'hôte : - IP or host name of the device - + IP ou nom de l'hôte du périphérique - Ports: - + Ports : - SSH: - + SSH : - Gdb server: - + Serveur Gdb : - Connection timeout: - + Timeout de la connection : - s - + s - Username: - Nom d'utilisateur : + Nom d'utilisateur : - Password: - Mot de passe : + Mot de passe : - Private key file: - + Fichier de clé privée : - Add - Ajouter + Ajouter - Remove - Supprimer + Supprimer - Test - Test + Test - Generate SSH Key ... - + Générer la clé SSH... - Deploy Public Key ... - + Déployer la clé publique... MaemoSshConfigDialog - SSH Key Configuration - + Configuration de la slé SSH - Options - Options + Options - Key size: - + Taille de clé : - Key algorithm: - + Algorithme de la clé : - RSA - + RSA - DSA - + DSA - Key - + Clé - Generate SSH Key - + Générer la clé SSH - Save Public Key... - + Enregistrer la clé publique... - Save Private Key... - + Enregistrer la clé privée... - Close - Fermer + Fermer Qt4ProjectManager::Internal::S60CreatePackageStepWidget - Form - Formulaire + Formulaire - Self-signed certificate - Certificat autosigné + Certificat autosigné - Custom certificate: - Certificat personnalisé : + Certificat personnalisé : - Choose certificate file (.cer) - Choisir un fichier de certificat (.cer) + Choisir un fichier de certificat (.cer) - Key file: - Fichier contenant la clé : + Fichier contenant la clé : Qt4ProjectManager::Internal::TargetSetupPage - Setup targets for your project - + Installer les cibles pour votre projet - Qt Creator can set up the following targets: - + Qt Creator peut mettre en place les cibles suivantes : - Qt Version - + Version de Qt - Status - + Status - Build Directory - + Répertoire de compilation - Import Existing Shadow Build... - + Importer un shadow build existant... - Import Is this an import of an existing build or a new one? - + Importer - New Is this an import of an existing build or a new one? - Nouveau + Nouveau - Qt Creator can set up the following targets for project <b>%1</b>: %1: Project name - + Qt Creator peut mettre en place les cibles suivantes pour le projet <b>%1</b> : - Choose a directory to scan for additional shadow builds - + Choisir un répertoire pour rechercher des shadow builds supplémentaires - No builds found - + Aucun shadow build trouvé - No builds for project file "%1" were found in the folder "%2". %1: pro-file, %2: directory that was checked. - + Aucun shadow build pour le fichier de projet "%1" n'a été trouvé dans le répertoire "%2". - <b>Error:</b> Severity is Task::Error - + <b>Erreur :</b> - <b>Warning:</b> Severity is Task::Warning - + <b>Alerte :</b> Qt4ProjectManager::Internal::TestWizardPage - WizardPage - WizardPage + WizardPage - Specify basic information about the test class for which you want to generate skeleton source code file. - + Définit les informations de base des classes de test pour lesquelles vous souhaitez générer des fichiers squelettes de code source. - Class name: - Nom de la classe : + Nom de la classe : - Type: - + Type : - Test - Test + Test - Benchmark - + Benchmark - File: - Fichier : + Fichier : - Generate initialization and cleanup code - + Génére le code d'initialisation et de nettoyage - Test slot: - + Slot de test : - Requires QApplication - + QApplication est nécessaire - Use a test data set - + Utiliser un ensemble de données de test - Test Class Information - + Information sur la classe de test @@ -21859,1454 +18656,1209 @@ You can choose between stashing the changes or discarding them. VCSBase::CleanDialog - Clean Repository - + Nettoyer le dépôt - The directory %1 could not be deleted. - + Le répertoire %1 ne peut pas être supprimer. - The file %1 could not be deleted. - + Le fichier %1 ne peut pas être supprimer. - There were errors when cleaning the repository %1: - + Il y a eu des erreurs lors du nettoyage du dépôt %1 : - Delete... - + Supprimer… - Name - Nom + Nom - Repository: %1 - + Dépôt : %1 - %1 bytes, last modified %2 - + %1 octets, dernière modification le %2 - Delete - Supprimer + Supprimer - Do you want to delete %n files? - - + + Voulez-vous supprimer %n fichier ? + Voulez-vous supprimer %n fichiers ? - Cleaning %1 - + Nettoyage de %1 CommonSettingsPage - Wrap submit message at: - Limiter la largeur du message à : + Limiter la largeur du message à : - characters - + caractères - 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. - Un fichier exécutable qui est appelé avec comme premier argument le message dans un fichier temporaire. Pour indiquer une erreur, il doit se terminer avec un code != 0 et un message sur la sortie d'erreur standard. + Un fichier exécutable qui est appelé avec comme premier argument le message dans un fichier temporaire. Pour indiquer une erreur, il doit se terminer avec un code différent de 0 et un message sur la sortie d'erreur standard. - Submit message check script: - Script de vérification du message : + Script de vérification du message : - A file listing user names and email addresses in a 4-column mailmap format: name <email> alias <email> - Un fichier listant les noms d'utilisateur et leur adresse email dans le format 4 colonnes de mailmap : + Un fichier listant les noms d'utilisateur et leurs adresses email dans le format 4 colonnes de mailmap : nom <email> alias <email> - User/alias configuration file: - Fichier de configuration des alias utilisateur : + Fichier de configuration des alias utilisateur : - A simple file containing lines with field names like "Reviewed-By:" which will be added below the submit editor. - Un fichier texte contenant des lignes telles que "Reviewed-By:", qui seront ajoutées à la fin dans l'éditeur de message. + Un fichier texte contenant des lignes telles que "Reviewed-By:", qui seront ajoutées à la fin dans l'éditeur de message. - User fields configuration file: - Fichier de configuration des champs utilisateurs : + Fichier de configuration des champs utilisateurs : BorderImageSpecifics - Image - + Image - Source - + Source - Source Size - + Taille de la source - Left - + Gauche - Right - + Droite - Top - + Haut - Bottom - + Bas emptyPane - none or multiple items selected - + Aucun ou plusieurs éléments sélectionnés ExpressionEditor - Expression - Expression + Expression Extended - Effect - + Effet - - Blur Radius: - + Rayon du flou : - Pixel Size: - + Taille de pixel : - x Offset: - + Décallage x : - y Offset: - + Décallage y : ExtendedFunctionButton - Reset - Réinitialiser + Réinitialiser - Set Expression - + Définir l'expression FontGroupBox - - Font - Police + Police - Size - + Taille - Font Style - + Style de police - Style - + Style Geometry - Geometry - + Géométrie - Position - + Position - Size - + Taille - Lock aspect ratio - + Vérouille le ratio de l'aspect ImageSpecifics - Image - + Image - Source - + Source - Fill Mode - + Mode de remplissage - Aliasing - + Aliasing - Smooth - + Lissage - Source Size - + Taille de la source - Painted Size - + Taille de la zone de dessin Layout - Layout - + Disposition - Anchors - + Ancres - - - - - - Target - + Cible - - - - - - Margin - + Marge Modifiers - Manipulation - + Manipulation - Rotation - + Rotation - z - + z RectangleColorGroupBox - Colors - + Couleurs - Stops - + Points d'arrêt - Gradient Stops - + Points d'arrêt du gradient - Rectangle - + Rectangle - Border - + Bordure RectangleSpecifics - Rectangle - + Rectangle - Border - + Bordure - Radius - + Rayon StandardTextColorGroupBox - Color - + Couleur - Text - Texte + Texte - Style - + Style - Selection - Sélection + Sélection - Selected - + Sélectionné StandardTextGroupBox - - Text - Texte + Texte - Wrap Mode - + Mode de limitation - Alignment - + Alignement - - Aliasing - + Aliasing - Smooth - + Lissage Switches - special properties - + Propriétés spéciales - layout and geometry - + Disposition et géométrie - Geometry - + Géométrie - advanced properties - + Propriétés avancées - Advanced - + Avancé TextEditSpecifics - Text Edit - + Modifier le texte - Format - + Format TextInputGroupBox - Text Input - + Texte en entrée - Input Mask - + Masque d'entrée - Echo Mode - + Mode d'affichage - Pass. Char - + Carac. masqué - Password Character - + Caractère masqué - Flags - + TODO: ou laisser flags? homogénéiser +francis : ouai assez d'accord. + Flags - Read Only - + Lecture seule - Cursor Visible - + Curseur visible - Focus On Press - + Focus par pression - Auto Scroll - + Défilement auto Transformation - Transformation - + Transformation - Origin - + Origine - Top Left - + Haut Gauche - Top - + Haut - Top Right - + Haut Droite - Left - + Gauche - Center - + Centre - Right - + Droite - Bottom Left - + Bas Gauche - Bottom - + Bas - Bottom Right - + Bas Droite - Scale - + Échelle - Rotation - + Rotation Type - - Type - Type + Type - Id - + Id Visibility - - Visibility - + Visibilité - Is visible - + Est visible - Clip - + Retailler - Opacity - + Opacité WebViewSpecifics - WebView - + WebView - Preferred Width - + Largeur préférée - Page Height - + Hauteur de la page ExtensionSystem::PluginDetailsView - None - Aucune + Aucune ExtensionSystem::PluginView - - - Load on Startup - + Charger au démarrage - Utilities - + Utilitaires QmlJS::Check - unknown value for enum - + Valeur inconnue pour l'énumération - value might be 'undefined' - + La valeur peut être "indéfinie" - enum value is not a string or number - + La valeur de l'énumération n'est pas une chaîne ou un nombre - numerical value expected - + Valeur numérique attendue - boolean value expected - + Valeur binaire attendue - string value expected - + Chaîne de caractères attendue - not a valid color - + Pas une couleur valide - expected anchor line - + Ancre de ligne attendue - unknown type - + type inconnu - - expected id - + identifiant attendu - using string literals for ids is discouraged - + utiliser une chaîne littérale pour les identifiants est découragé - ids must be lower case - + les identifiants doivent être en minuscule - '%1' is not a valid property name - + "%1" n'est pas un nom de propriété valide - '%1' does not have members - + "%1" n'a pas de membres - '%1' is not a member of '%2' - + "%1" n'est pas un membre de "%2" QmlJS::Interpreter::QmlXmlReader - The file is not module file. - + Le fichier n'est pas un fichier de module. - Unexpected element <%1> in <%2> - + Élément inattendu <%1> dans <%2> - invalid value '%1' for attribute %2 in <%3> - + valeur invalide "%1" pour l'attribut %2 dans <%3> - <%1> has no valid %2 attribute - + <%1> n'a pas d'attribut %2 valide - %1: %2 - + %1 : %2 QmlJS::Link - could not find file or directory - + impossible de trouver le fichier ou le répertoire - expected two numbers separated by a dot - + est attendu deux nombres séparés par un point - package import requires a version number - + l'importation d'un paquet a besoin d'un numéro de version - package not found - + paquet non trouvé Utils::FancyMainWindow - Locked - Verrouillé + Verrouillé - Reset to Default Layout - Restaurer la disposition par défaut + Restaurer la disposition par défaut Utils::FileWizardDialog - Location - Emplacement + Emplacement Utils::FilterLineEdit - Filter - + Filtre - Clear text - + Effacer le texte Utils::fileDeletedPrompt - File has been removed - + Le fichier a été supprimé - The file %1 has been removed outside Qt Creator. Do you want to save it under a different name, or close the editor? - + Le fichier %1 a été supprimé en dehors de Qt Creator. Voulez-vous l'enregistrer sous un nom différent ou fermer l'éditeur ? - Close - Fermer + Fermer - Save as... - + Enregistrer sous... - Save - Enregistrer + Enregistrer 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>Développer en</th></tr><tr><td>%d</td><td>répertoire du fichier courant</td></tr><tr><td>%f</td><td>nom du fichier (avec le chemin complet)</td></tr><tr><td>%n</td><td>nom du fichier (sans le chemin)</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 + endian ? +cédric : heu faut traduire little-endian et big-endian ? Perso je n'aurais pas traduit, ce sont des conventions de codage des nombres, j'ai toujours vu en anglais moi ... + Valeur décimale non signée(little-endian) : %1 +Valeur décimale non signée((big endian) : %2 +Valeur décimale signéelittle-endian) : %3 +Valeur décimale signée((big endian) : %4 + + Copying Failed - + Échec de la copie - You cannot copy more than 4 MB of binary data. - + Vous ne pouvez pas copier plus de 4 Mo de données binaires. - Copy Selection as ASCII Characters - + Copier la séléction comme des caractères ASCII - Copy Selection as Hex Values - + Copier la sélection comme des valeurs hexadécimales - Jump to Address in This Window - + Aller à l'adresse dans cette fenêtre - Jump to Address in New Window - + Aller à l'adresse dans une nouvelle fenêtre - Jump to Address 0x%1 in This Window - + Aller à l'adresse 0x%1 dans cette fenêtre - Jump to Address 0x%1 in New Window - + Aller à l'adresse 0x%1 dans une nouvelle fenêtre BINEditor::Internal::ImageViewerFactory - Image Viewer - + Visualisateur d'image CMakeProjectManager::Internal::CMakeRunConfiguration - Clean Environment - Environnement de nettoyage + Environnement de nettoyage - System Environment - + Environnement système - Build Environment - Environnement de compilation + Environnement de compilation + + + (disabled) + (Désactivé) CMakeProjectManager::Internal::CMakeTarget - - Desktop CMake Default target display name - + Desktop CMakeProjectManager::Internal::MakeStep - Make CMakeProjectManager::MakeStep display name. - Make + Make CMakeProjectManager::Internal::MakeStepFactory - Make Display name for CMakeProjectManager::MakeStep id. - Make + Make Core::CommandMappings - Command - Commande + Commande - Label - + Libellé Core - Qt - Qt + Qt - Environment - Environnement + Environnement Core::DesignMode - Design - + Design Core::Internal::SystemEditor - Could not open url %1. - + Impossible d'ouvrir l'url %1. Core::EditorToolBar - Copy full path to clipboard - Copier le chemin complet vers le presse-papier + Copier le chemin complet vers le presse-papier + + + Copy Full Path to Clipboard + Copier le chemin complet dans le presse papier - Make writable - Rendre inscriptible + Rendre inscriptible - File is writable - Le fichier est inscriptible + Le fichier est inscriptible GenericSshConnection - Could not connect to host. - + Impossible de se connecter à l'hôte. - Error in cryptography backend: %1 - + pierre: a priori pas de traduction française courante... +francis : je ne vois pas non plus. Ou un truc du genre "Arriére plan cryptographique" Mais c'est bisarre + Erreur dans le backend cryptographique : %1 Core::InteractiveSshConnection - Error sending input - + Erreur lors de l'envoi de l'entrée Core::SftpConnection - Error setting up SFTP subsystem - + Erreur lors de la configuration du sous-systeme SFTP - - Could not open file '%1' - + Impossible d'ouvrir le fichier "%1" - Could not uplodad file '%1' - + Impossible d'envoyer le fichier "%1" - Could not copy remote file '%1' to local file '%2' - + Impossible de copier le fichier distant "%1" dans le fichier local "%2" - Could not create remote directory - + Impossible de créer le répertoire distant - Could not remove remote directory - + Impossible de supprimer le répertoire distant - Could not get remote directory contents - + Impossible de récupérer le contenu du répertoire distant - Could not remove remote file - + Impossible de supprimer le fichier distant - Could not change remote working directory - + Impossible de changer le répertoire de travail distant SshKeyGenerator - Error creating temporary files. - + Erreur lors de la création des fichiers temporaires. - Error generating keys: %1 - + Erreur lors de la génération des clés : %1 - - Error reading temporary files. - + Erreur lors de la lecture des fichiers temporaires. CodePaster - Code Pasting - Collage de code + Collage de code CodePaster::FileShareProtocol - Cannot open %1: %2 - Imposible d'ouvrir %1 : %2 + Imposible d'ouvrir %1 : %2 - %1 does not appear to be a paster file. - + %1 ne semble pas être un fichier copiable. - Error in %1 at %2: %3 - + Erreur dans %1 à la ligne %2 : %3 - Please configure a path. - + Veuillez configurer un chemin. - Unable to open a file for writing in %1: %2 - + Impossible d'ouvrir un fichier en écriture dans %1 : %2 - Pasted: %1 - + Copié : %1 CodePaster::FileShareProtocolSettingsPage - Fileshare - + Fileshare CodePaster::PasteBinDotComSettings - Pastebin.com - Pastebin.com + Pastebin.com CodePaster::PasteView - <Comment> - <Commentaire> + <Commentaire> - Paste - Coller + Coller CodePaster::Protocol - %1 - Configuration Error - + %1 - Erreur de configuration - Settings... - Paramètres... + Paramètres... CppEditor - C++ - C++ + C++ CppTools::QuickFix - - Rewrite Using %1 - + Réécrire en utilisant %1 - Swap Operands - + Échanger les opérandes - Rewrite Condition Using || - + Réécrire la condition en utilisant || - Split Declaration - + Fractionner la déclaration - Add Curly Braces - + Ajouter des accolades - - Move Declaration out of Condition - + Déplacer la déclaration en dehors de la condition - Split if Statement - + aaaaaaaah ! Je n'avais pas tilté. + Fractionner la condition if - Enclose in QLatin1String(...) - + Encapsuler dans QLatin1String(...) - Convert to Objective-C String Literal - + Convertir en une chaîne littérale Objective-C - Use Fast String Concatenation with % - + Utiliser la concaténation rapide des chaînes avec % VCS - CVS Commit Editor - + Éditeur de commit pour CVS - CVS Command Log Editor - + Éditeur de log de commande pour CVS - CVS File Log Editor - + Éditeur de log de fichier pour CVS - CVS Annotation Editor - + Éditeur d'annotation pour CVS - CVS Diff Editor - + Éditeur de diff pour CVS - Git Command Log Editor - + Éditeur de log de commande pour Git - Git File Log Editor - + Éditeur de log de fichier pour Git - Git Annotation Editor - + Éditeur d'annotation pour Git - Git Diff Editor - + Éditeur de diff pour Git - Git Submit Editor - + Éditeur de soumission pour Git - Mercurial Command Log Editor - + Éditeur de log de commande pour Mercurial - Mercurial File Log Editor - + Éditeur de log de fichier pour Mercurial - Mercurial Annotation Editor - + Éditeur d'annotation pour Mercurial - Mercurial Diff Editor - + Éditeur de diff pour Mercurial - Mercurial Commit Log Editor - + Éditeur de log de commi pour Mercurial - Perforce.SubmitEditor - + Éditeur de soumission pour Perforce - Perforce CommandLog Editor - + Éditeur de log de commande pour Perforce - Perforce Log Editor - + Éditeur de log pour Perforce - Perforce Diff Editor - + Éditeur de diff pour Perforce - Perforce Annotation Editor - + Éditeur d'annotation pour Perforce - Subversion Editor - + Éditeur pour Subversion - Subversion Commit Editor - + Éditeur de commit pour Subversion - Subversion Command Log Editor - + Éditeur de log de commande pour Subversion - Subversion File Log Editor - + Éditeur de log de fichier pour Subversion - Subversion Annotation Editor - + Éditeur d'annotation pour Subversion - Subversion Diff Editor - + Éditeur de diff pour Subversion CVS::Internal::CVSEditor - Annotate revision "%1" - + Révision annotée "%1" Debugger::Internal::CdbOptionsPage - Cdb - Cdb + Cdb CdbSymbolGroupContext - <Unknown Type> - <type inconnu> + <type inconnu> - <Unknown Value> - <valeur inconnue> + <valeur inconnue> - <Unknown> - <Inconnu> + <Inconnu> @@ -23319,50 +19871,42 @@ nom <email> alias <email> Debugger::Cdb - Unable to load the debugger engine library '%1': %2 - Impossible de charger la bibliothèque de débogage '%1': %2 + Impossible de charger la bibliothèque de débogage "%1" : %2 - Unable to resolve '%1' in the debugger engine library '%2' - Impossible de résoudre '%1' dans la bibliothèque de débogage '%2' + Impossible de résoudre "%1" dans la bibliothèque de débogage "%2" CdbCore::CoreEngine - Unable to set the image path to %1: %2 - Impossible de définir le chemin de l'image %1 : %2 + Impossible de définir le chemin de l'image %1 : %2 - Unable to create a process '%1': %2 - Impossible de créer un processus '%1': %2 + Impossible de créer un processus "%1" : %2 - Attaching to a process failed for process id %1: %2 - Impossible d'attacher au processsus d'id %1 : %2 + Impossible d'attacher au processsus identifié par %1 : %2 Debugger::DebuggerUISwitcher - &Languages - + &Langages - Alt+L - + Alt+L - Language - Langage + Langage @@ -23377,68 +19921,57 @@ nom <email> alias <email> GdbChooserWidget - Unable to run '%1': %2 - + Impossible d'exécuter "%1" : %2 Debugger::Internal::GdbChooserWidget - Binary - Binaire + Binaire - Toolchains - + Chaîne d'outils - Duplicate binary - + Fichier binaire en doublon - The binary '%1' already exists. - + Le fichier binaire "%1" existe déjà. Debugger::Internal::ToolChainSelectorWidget - Desktop/General - + Desktop/Générale - Symbian - + Symbian - Maemo - + Maemo Debugger::Internal::BinaryToolChainDialog - Select binary and toolchains - + Sélectionner un binaire et les chaînes de compilation - Gdb binary - + Binaire Gdb - Path: - Chemin : + Chemin : @@ -23484,132 +20017,106 @@ nom <email> alias <email> Debugger::Internal::PdbEngine - Running requested... - + Exécution demandée… - Unable to start pdb '%1': %2 - + Impossible de démarrer pdb "%1" : %2 - Adapter start failed - Démarrage de l'adaptateur échoué + Démarrage de l'adaptateur a échoué - '%1' contains no identifier - '%1' ne contient pas d'identifiant + "%1" ne contient pas d'identifiant - String literal %1 - Chaîne de caractères %1 + Chaîne de caractères %1 - Cowardly refusing to evaluate expression '%1' with potential side effects - Refuse lâchement d'évaluer l'expression '%1' avec des effects secondaires potentiels + Refuse lâchement d'évaluer l'expression "%1" avec des effects secondaires potentiels - Pdb I/O Error - + Erreur d'E/S Pdb - The Pdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. - + Échec du démarrage du processus Pdb. Soit le programme "%1" est manquant, soit les droits sont insuffisants pour exécuter le programme. - The Pdb process crashed some time after starting successfully. - + Le processus Pdb a crashé après avoir démarré correctement. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. - + La dernière fonction waitFor...() est arrivée à échéance. Le statut de QProcess est inchangé, vous pouvez essayer d'appeler waitFor...() à nouveau. - 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. - + Une erreur s'est produite lors d'une tentative d'écriture sur le processus Pdb. Le processus peut ne pas être démarré, ou il peut avoir fermé son entrée standard. - An error occurred when attempting to read from the Pdb process. For example, the process may not be running. - + Une erreur s'est produite lors d'une tentative de lecture depuis le processus Pdb. Le processus peut ne pas être en cours d'exécution. - An unknown error in the Pdb process occurred. - + Une erreur inconnue est survenue dans le processus Pdb. Debugger::Internal::SnapshotHandler - - Function: - Fonction : + Fonction : - - File: - Fichier : + Fichier : - Date: - + Date : - ... - ... + ... - <More> - <plus> + <plus> - Function - Fonction + Fonction - Date - + Date - Location - Emplacement + Emplacement Debugger::Internal::SnapshotWindow - Snapshots - + Snapshots - Adjust Column Widths to Contents - + Ajuster la largeur des colonnes au contenu - Always Adjust Column Widths to Contents - + Toujours ajuster la largeur des colonnes au contenu @@ -23626,677 +20133,561 @@ nom <email> alias <email> Designer::Internal::FormEditorFactory - This file can only be edited in <b>Design</b> mode. - + Ce fichier ne peut être édité qu'en mode <b>Design</b>. - Switch mode - + Changer de mode Designer::Internal::FormFileWizardDialog - Location - Emplacement + Emplacement FakeVim::Internal::FakeVimHandler::Private - Not an editor command: %1 - Pas une commande de l'éditeur : %1 + Pas une commande de l'éditeur : %1 FakeVim::Internal::FakeVimExCommandsPage - - Ex Command Mapping - + Mappage des commandes Ex - FakeVim - FakeVim + FakeVim - Ex Trigger Expression - + Expression d'activation Ex - Regular expression: - + Expression régulière : - Ex Command - + Commande Ex Find::FindPlugin - &Find/Replace - &Rechercher/Remplacer + &Rechercher/Remplacer - Advanced Find - + Recherche avancée - Open Advanced Find... - + Ouvrir la recherche avancée... - Ctrl+Shift+F - Ctrl+Maj+F + Ctrl+Shift+F GenericProjectManager::Internal::GenericMakeStep - Make - Make + Make GenericProjectManager::Internal::Manager - Failed opening project '%1': Project already open - Échec de l'ouverture du projet '%1' : projet déjà ouvert + Échec de l'ouverture du projet '%1' : projet déjà ouvert Git::Internal::RemoteBranchModel - (no branch) - + (aucune banche) GitClient - Unable to determine the repository for %1. - Impossible de déterminer le dépôt de %1. + Impossible de déterminer le dépôt de %1. Git::Internal::GitCommand - Error: Git timed out after %1s. - + Erreur :Git est arrivé à échéance après %1s. Git::Internal::GitEditor - Blame %1 - + Blame %1 Help - Help - Aide + Aide Help::HelpManager - Unfiltered - Sans filtre + Sans filtre Help::Internal::HelpViewer - Open Link - Ouvrir le lien + Ouvrir le lien - - Open Link as New Page - Ouvrir le lien en tant que nouvelle page + Ouvrir le lien en tant que nouvelle page - Copy Link - + Copier le lien - Copy - Copier + Copier - Reload - + Recharger Help::Internal::OpenPagesModel - (Untitled) - + (Sans titre) Help::Internal::OpenPagesWidget - Close %1 - Fermer %1 + Fermer %1 - Close All Except %1 - Fermer tout sauf %1 + Fermer tout sauf %1 Mercurial::Internal::CloneWizard - Clones a Mercurial repository and tries to load the contained project. - + Clone un dépôt Mercurial et essaie de charger le projet contenu. - Mercurial Clone - + Clone de Mercurial Mercurial::Internal::CloneWizardPage - Location - Emplacement + Emplacement - Specify repository URL, checkout directory and path. - Spécifie l'URL du dépôt, le répertoire et le chemin du checkout. + Spécifie l'URL du dépôt, le répertoire et le chemin du checkout. - Clone URL: - URL de clone : + URL de clone : Mercurial::Internal::CommitEditor - Commit Editor - + Faire un commit de l'éditeur Mercurial::Internal::MercurialClient - Unable to find parent revisions of %1 in %2: %3 - + Impossible de trouver la révision parente de %1 dans %2 : %3 - Cannot parse output: %1 - + Impossible d'analyser la sortie : %1 - Hg Annotate %1 - + Hg Annotate %1 - Hg diff %1 - + Hg diff %1 - - Hg log %1 - + Hg log %1 - Hg incoming %1 - + Hg incoming %1 - Hg outgoing %1 - + Hg outgoing %1 - Working... - + Travail en cours... Mercurial::Internal::MercurialControl - Mercurial - + Mercurial Mercurial::Internal::MercurialEditor - Annotate %1 - + Annoter %1 Mercurial::Internal::MercurialJobRunner - Executing: %1 %2 - + Exécution de : %1 %2 + - Unable to start mercurial process '%1': %2 - + Impossible de démarrer le processus mercurial '%1' : %2 - Timed out after %1s waiting for mercurial process to finish. - + Interruption après %1s d'attente que le processus mercurial se termine. Mercurial::Internal::MercurialPlugin - Mercurial - + Mercurial - Annotate Current File - Annoter le fichier courant + Annoter le fichier courant - Annotate "%1" - Annoter "%1" + Annoter "%1" - Diff Current File - + Réaliser un diff du fichier courant - Diff "%1" - + Réaliser un diff de "%1" - Alt+H,Alt+D - + Alt+H,Alt+D - Log Current File - + Réaliser un log du fichier courant - Log "%1" - + Réaliser un log de "%1" - Alt+H,Alt+L - + Alt+H,Alt+L - Status Current File - + Statut du fichier courant - Status "%1" - + Statut "%1" - Alt+H,Alt+S - + Alt+H,Alt+S - Add - Ajouter + Ajouter - Add "%1" - Ajouter "%1" + Ajouter "%1" - Delete... - + Supprimer… - Delete "%1"... - + Supprimer "%1"… - Revert Current File... - + Rétablir le fichier courant... - Revert "%1"... - + Rétablir "%1"... - Diff - + Diff - Log - + Log - Revert... - + Rétablir... - Status - + Statut - Pull... - + Pull... - Push... - + Push... - Update... - + Mise à jour... - Import... - Importer... + Importation... - Incoming... - + Entrant... - Outgoing... - + Sortant... - Commit... - Commit... + Commit... - Alt+H,Alt+C - + Alt+H,Alt+C - Create Repository... - + Créer un dépôt... - Pull Source - + Rappatrier la source - Push Destination - + Envoyer la destination - Update - + Mettre à jour - Incoming Source - + Source entrante - Commit - Faire un commit + Faire un commit - Diff Selected Files - Faire un diff sur tous les fichiers sélectionnés + Faire un diff sur tous les fichiers sélectionnés - &Undo - + Annu&ler - &Redo - + &Rétablir - There are no changes to commit. - + Il n'y a aucun changement à envoyer. - Unable to generate a temporary file for the commit editor. - + Impossible de générer un fichier temporaire pour l'éditeur de commit. - Unable to create an editor for the commit. - + Impossible d'ouvrir un éditeur pour le commit. - Unable to create a commit editor. - + Impossible d'ouvrir un éditeur de commit. - Commit changes for "%1". - + Soumettre les changements pour "%1". - Close commit editor - + Fermer l'éditeur de commit - Do you want to commit the changes? - + Voulez vous envoyer les changements ? - Message check failed. Do you want to proceed? - + Vérification du message échouée. Voulez-vous continuer ? Mercurial::Internal::OptionsPageWidget - Mercurial Command - + Commande Mercurial Perforce::Internal::PerforceChecker - No executable specified - Aucun exécutable spécifié + Aucun exécutable spécifié - "%1" timed out after %2ms. - "%1" arrivé à échéance après %2ms. + "%1" arrivé à échéance après %2ms. - Unable to launch "%1": %2 - Impossible de lancer "%1" : %2 + Impossible de lancer "%1" : %2 - "%1" crashed. - "%1" a crashé. + "%1" a crashé. - "%1" terminated with exit code %2: %3 - "%1" terminé avec le code %2 : %3 + "%1" terminé avec le code %2 : %3 - The client does not seem to contain any mapped files. - Le client ne semble contenir aucun fichier correspondant. + Le client ne semble contenir aucun fichier correspondant. - Unable to determine the client root. Unable to determine root of the p4 client installation - + Impossible de déterminer la racine du client. - The repository "%1" does not exist. - + Le dépôt "%1" n'existe pas. Perforce::Internal::PerforceEditor - Annotate change list "%1" - + Annoter la liste des changements "%1" ProjectExplorer::BaseProjectWizardDialog - Location - Emplacement + Emplacement - untitled File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks. - sans titre + sans_titre ProjectExplorer::BuildConfiguration - System Environment - + Environnement système - Clean Environment - Environnement de nettoyage + Environnement de nettoyage ProjectExplorer::BuildEnvironmentWidget - Clear system environment - Nettoyer l'environnement système + Nettoyer l'environnement système - Build Environment - Environnement de compilation + Environnement de compilation BuildSettingsPanelFactory - Build Settings - Paramètres de compilation + Paramètres de compilation BuildSettingsPanel - Build Settings - Paramètres de compilation + Paramètres de compilation ProjectExplorer::CustomWizard - Details Default short title for custom wizard page to be shown in the progress pane of the wizard. - Détails + Détails Plugin name: @@ -24318,333 +20709,303 @@ nom <email> alias <email> Url: Url : + + Creates a C++ plugin to extend the funtionality of the QML runtime. + Crée un plugin C++ pour étendre les fonctionnalités du runtime QML. + + + QML Runtime Plug-in + Plugin runtime QML + + + QML Runtime Plug-in Parameters + Paramètres du plugin runtime QML + + + Example Object Class-name: + Nom de classe de l'objet exemple : + ProjectExplorer::CustomProjectWizard - The project %1 could not be opened. - + Le projet %1 ne peut pas être ouvert. ProjectExplorer::Internal::CustomWizardPage - Path: - Chemin : + Chemin : ProjectExplorer::Internal::DependenciesModel - <No other projects in this session> - + <Pas d'autres projets dans cette session> DependenciesPanel - Dependencies - Dépendances + Dépendances DependenciesPanelFactory - Dependencies - Dépendances + Dépendances EditorSettingsPanelFactory - Editor Settings - Paramètres de l'éditeur + Paramètres de l'éditeur EditorSettingsPanel - Editor Settings - Paramètres de l'éditeur + Paramètres de l'éditeur ProjectExplorer::Internal::FolderNavigationWidget - Open - Ouvrir + Ouvrir - Open parent folder - + Ouvrir le dossier parent - Open "%1" - + Ouvrir "%1" - Open with - + Ouvrir avec - Choose folder... - + Choisir le répertoire... - Choose folder - + Choisir le répertoire - Show in Explorer... - Afficher dans l'explorateur de fichier... + Afficher dans l'explorateur de fichier... - Show in Finder... - Afficher dans Finder... + Afficher dans Finder... - Show containing folder... - Afficher le dossier parent... + Afficher le dossier parent... - Open Command Prompt here... - + Ouvre une invite de commande ici... - Open Terminal here... - + Ouvre un terminal ici... - Launching a file browser failed - + Échec du lancement du navigateur de fichier - Unable to start the file manager: %1 - + Impossible de démarrer le gestionnaire de fichiers : + +%1 + + - '%1' returned the following error: %2 - + '%1' retourne l'erreur suivante : + +%2 - Settings... - Paramètres... + Paramètres... - Launching Windows Explorer failed - Échec du lancement de l'Explorer Windows + Échec du lancement de l'Explorateur Windows - Could not find explorer.exe in path to launch Windows Explorer. - Impossible de trouver explorer.exe dans le path pour lancer l'Explorer Windows. + chemin ? + Impossible de trouver explorer.exe dans le path pour lancer l'explorateur Windows. ProjectExplorer::Internal::MiniTargetWidget - Select active build configuration - + Sélectionner la configuration de compilation active - Select active run configuration - + Sélectionner la configuration d'exécution active - Build: - + Compilation : - Run: - + Exécution : ProjectExplorer::Internal::MiniProjectTargetSelector - Project - Projet + Projet - Select active project - + Sélectionner le projet actif - Build: - + Compilation : - Run: - + Exécution : - <html><nobr><b>Project:</b> %1<br/>%2%3<b>Run:</b> %4%5</html> - + <html><nobr><b>Projet :</b> %1<br/>%2%3<b>Exécution :</b> %4%5</html> - <b>Target:</b> %1<br/> - + <b>Cible :</b> %1<br/> - <b>Build:</b> %2<br/> - + <b>Compilation :</b> %2<br/> - <br/>%1 - + <br/>%1 ProjectExplorer::ProjectConfiguration - Clone of %1 - + Clone de %1 ProjectExplorer - Projects - Projets + Projets - Other Project - + Autre projet TargetSettingsPanelFactory - Targets - + Cibles RunSettingsPanelFactory - Run Settings - Paramètres d'exécution + Paramètres d'exécution RunSettingsPanel - Run Settings - Paramètres d'exécution + Paramètres d'exécution ProjectExplorer::Internal::SessionNameInputDialog - Enter the name of the session: - + Entrez le nom de la session : ProjectExplorer::Internal::TargetSelector - Run - Exécuter + Exécuter - Build - Compilation + Compiler ProjectExplorer::Internal::TargetSettingsPanelWidget - No target defined. - + Aucune cible définie. - Qt Creator - Qt Creator + Qt Creator - Do you really want to remove the "%1" target? - + Voulez-vous vraiment supprimer la cible +"%1" ? ProjectExplorer::TaskWindow - - Build Issues Problèmes de compilation - &Copy Cop&ier - &Annotate - &Annoter... + &Annoter - Show Warnings Afficher les avertissements - Filter by categories Filtrer par catégories @@ -24652,658 +21013,571 @@ nom <email> alias <email> GenericProjectManager::GenericTarget - Desktop Generic desktop target display name - Desktop + Bureau Qt4ProjectManager::Internal::Qt4Target - - Desktop Qt4 Desktop target display name - Desktop + Bureau - - Symbian Emulator Qt4 Symbian Emulator target display name - + Émulateur Symbian - - Symbian Device Qt4 Symbian Device target display name - + Périphérique Symbian - Maemo Emulator Qt4 Maemo Emulator target display name - + Émulateur Maemo - Maemo Device Qt4 Maemo Device target display name - + Périphérique Maemo - Maemo Qt4 Maemo target display name - + Maemo - Qt Simulator Qt4 Simulator target display name - + Qt Simulator - <b>Device:</b> Not connected - + <b>Périphérique :</b>Non connecté - <b>Device:</b> %1 - + <b>Périphérique :</b> %1 - <b>Device:</b> %1, %2 - + <b>Périphérique :</b> %1, %2 QmlProjectManager::QmlTarget - QML Viewer QML Viewer target display name - Visualisateur QML + Visualisateur QML QmlDesigner::FormEditorWidget - Snap to guides (E) - + Aligner sur les guides (E) - Show bounding rectangles (A) - + Montrer les rectangles englobants (A) - Only select items with content (S) - + Sélectionner uniquement les éléments avec du contenu (S) QmlDesigner::ComponentView - whole document - + document entier QmlDesigner::DesignDocumentController - -New Form- - + -Nouveau formulaire- - Cannot save to file "%1": permission denied. - + Impossible d'enregistrer le fichier '%1' : permission refusée. - Parent folder "%1" for file "%2" does not exist. - + Le répertoire parent "%1" pour le fichier "%2" n'existe pas. - Cannot write file: "%1". - + Impossible d'enregistrer le fichier : "%1". QmlDesigner::XUIFileDialog - Open file - Ouvrir le fichier + Ouvrir le fichier - Save file - + Enregistrer le fichier - Declarative UI files (*.qml) - + Fichiers de déclaration d'interface (*.qml) - All files (*) - Tous les fichiers (*) + Tous les fichiers (*) QmlDesigner::ItemLibrary - Library Title of library view - + Bibliothèques - Items Title of library items view - + Éléments - Resources Title of library resources view - Ressources + Ressources - <Filter> Library search input hint text - + <Filtre> QmlDesigner::NavigatorTreeModel - Invalid Id - + Identifiant invalide QmlDesigner::NavigatorWidget - Navigator Title of navigator view - + Navigateur QmlDesigner::PluginManager - About plugins - + À propos des plugins WidgetPluginManager - Failed to create instance. - + Échec lors de la création de l'instance. - Not a QmlDesigner plugin. - + N'est pas un module pour QmlDesigner. - Failed to create instance of file '%1': %2 - + Échec lors de la création de l'instance du fichier '%1' : %2 - Failed to create instance of file '%1'. - + Échec lors de la création de l'instance du fichier '%1'. - File '%1' is not a QmlDesigner plugin. - + Le fichier '%1' n'est pas un module pour QmlDesigner. QmlDesigner::AllPropertiesBox - Properties Title of properties view. - Propriétés + Propriétés FileWidget - Open File - + Ouvrir un fichier QmlDesigner::PropertyEditor - Invalid Id - + Id invalide qdesigner_internal::QtGradientStopsController - H - + Teinte (HSV color model) + T - S - + Saturation (HSV color model) + S - V - + Valeur (HSV color model) + V - - Hue - + Teinte (HSV color model) + Teinte - Sat - + Saturation (HSV color model) + Sat - Val - + Valeur (HSV color model) + Val - Saturation - + HSV color model + Saturation - Value - Valeur + HSV color model + Valeur - R - R + Rouge + R - G - + Vert + V - B - + Bleu + B - Red - + Rouge - Green - + Vert - Blue - + Bleu QtGradientStopsWidget - New Stop - + Nouveau point d'arrêt - Delete - Supprimer + Supprimer - Flip All - + Tout retourner - Select All - Tout sélectionner + Tout sélectionner - Zoom In - + Zoom avant - Zoom Out - + Zoom arrière - Reset Zoom - + Réinitialiser le zoom QmlDesigner::Internal::StatesEditorModel - base state Implicit default state - + État de base - Invalid state name - + Nom d'état invalide - The empty string as a name is reserved for the base state. - + La chaîne vide comme nom est réservée à l'état de base. - Name already used in another state - + Le nom est déjà utilisé dans un autre état QmlDesigner::Internal::StatesEditorWidgetPrivate - base state - + état de base - State%1 Default name for newly created states - + État%1 QmlDesigner::StatesEditorWidget - States Title of Editor widget - + États QmlDesigner::InvalidArgumentException - Failed to create item of type %1 - + Échec lors de la création d'un élément de type %1 InvalidIdException - Ids have to be unique: - + Les identifiants doivent être uniques : - Invalid Id: - + Identifiant invalide : - Only alphanumeric characters and underscore allowed. Ids must begin with a lowercase letter. - + \nSeuls les caractères numériques et les tirets bas sont autorisés.\nL'identifiant doit commencé avec une lettre minuscule. + + + Only alphanumeric characters and underscore allowed. +Ids must begin with a lowercase letter. + Seuls les caractères numériques et les tirets bas sont autorisés.\nL'identifiant doit commencer avec une lettre minuscule. + + + Ids have to be unique. + Les identifiants doivent être uniques. + + + Invalid Id: %1 +%2 + Identifiant invalide : %1 +%2 QmlDesigner::Internal::SubComponentManagerPrivate - QML Components - + Composants QML QmlDesigner::Internal::ModelPrivate - invalid type - + type invalide QmlDesigner::QmlModelView - Invalid Id - + Indentifiant invalide QmlDesigner::RewriterView - Error parsing - + Erreur d'analyse syntaxique - Internal error - + Erreur interne - "%1" - + "%1" - line %1 - + Ligne %1 - column %1 - + Colonne %1 QmlDesigner::Internal::DocumentWarningWidget - <a href="goToError">Go to error</a> - + <a href="goToError">Aller à l'erreur</a> - %3 (%1:%2) - + %3 (%1:%2) - Internal error (%1) - + Erreur interne (%1) QmlDesigner::Internal::DesignModeWidget - &Undo - + &Annuler - &Redo - + &Rétablir - Delete - Supprimer + Supprimer - Delete "%1" - Supprimer "%1" + Supprimer "%1" - Cu&t - Co&uper + Co&uper - Cut "%1" - + Couper "%1" - &Copy - + Co&pier - Copy "%1" - + Copier "%1" - &Paste - C&oller + C&oller - Paste "%1" - + Coller "%1" - Select &All - + Tout &sélectionner - Select All "%1" - + Tout sélectionner "%1" - Toggle Full Screen - + Basculer en plein écran - &Restore Default View - + &Réstaurer la vue par défaut - Toggle &Left Sidebar - + Basculer sur la barre latérale de &gauche - Toggle &Right Sidebar - + Basculer sur la barre latérale de &droite - Projects - Projets + Projets - File System - Système de fichier + Système de fichier - Open Documents - Documents ouverts + Documents ouverts QmlDesigner::Internal::BauhausPlugin - Switch Text/Design - + Basculer entre Texte/Design - Save %1 As... - Enregistrer %1 sous... + Enregistrer %1 sous... - &Save %1 - Enregi&strer %1 + Enregi&strer %1 - Revert %1 to Saved - Restaurer %1 à la version sauvegardée + Restaurer %1 à la version sauvegardée - Close %1 - Fermer %1 + Fermer %1 - Close All Except %1 - Fermer tout sauf %1 + Fermer tout sauf %1 - Close Others - Fermer les autres éditeurs + Fermer les autres éditeurs Qt Quick - Qt Quick Qt Quick @@ -25311,80 +21585,67 @@ Ids must begin with a lowercase letter. Qml::Internal::QLineGraph - Frame rate - + Taux de rafraîchissement Qml::Internal::GraphWindow - Total time elapsed (ms) - + Temps total écoulé (ms) Qml::Internal::CanvasFrameRate - Resolution: - + Résolution : - Clear - + Effacer - New Graph - + Nouveau graphique - Enabled - + Autorisé Qml::Internal::ExpressionQueryWidget - <Type expression to evaluate> - + <Type expression à évaluer> - Write and evaluate QtScript expressions. - + Ecrire et évaluer des expressions QtScript. - Clear Output - + Éffacer la sortie - Script Console - + Console de scripte - Expression queries - + Expression des requêtes - Expression queries (using context for %1) Selected object - + Expression des requêtes (en utilisant le contexte de %1) - <%n items> - + <%n élément> <%n éléments> @@ -25393,1417 +21654,1232 @@ Ids must begin with a lowercase letter. Qml::Internal::ObjectPropertiesView - Name - Nom + Nom - Value - Valeur + Valeur - Type - Type + Type - &Watch expression - + &Ajouter un point d'observation sur l'expression - &Remove watch - + &Supprimer le point d'observation - Show &unwatchable properties - + A&fficher les propriétés non observées - &Group by item type - + &Grouper par type d'élément - <%n items> - + <%n élément> <%n éléments> - Watch expression '%1' - + Ajouter un point d'observation sur l'expression '%1' - Hide unwatchable properties - + Masquer les propriétés non observées - Show unwatchable properties - + Afficher les propriétés non observées Qml::Internal::ObjectTree - Add watch expression... - + Ajouter un point d'observation sur l'expression... - Show uninspectable items - + Montrer les éléments non inspectables - Go to file - + Aller au fichier - Watch expression - + Ajouter un point d'observation sur l'expression - Expression: - + Expression : Qml::Internal::WatchTableModel - Name - Nom + Nom - Value - Valeur + Valeur Qml::Internal::WatchTableView - Stop watching - + Arrêter l'observation Qml::InspectorOutputWidget - Output - Sortie + Sortie - Clear - + Effacer Qml::Internal::EngineComboBox - Engine %1 engine number - + Engin %1 Qml::QmlInspector - Failed to connect to debugger - + Échec lors de la connection au débogeur - Could not connect to debugger server. - + Impossible de se connecter au serveur de débogage. - Invalid project, debugging canceled. - + Projet invalide, débogage annulé. - Cannot find project run configuration, debugging canceled. - + Impossible de trouver la configuration d'exécution du projet, débogage annulé. - [Inspector] set to connect to debug server %1:%2 - + [Inspecteur] configuré pour se connecter au serveur de débogage %1 : %2 - [Inspector] disconnected. - + [Inspecteur] deconnecté. + + - [Inspector] resolving host... - + [Inspecteur] résolution de l'hôte... - [Inspector] connecting to debug server... - + [Inspecteur] connection au serveur de débogage... - [Inspector] connected. - + [Inspecteur] connecté. + - [Inspector] closing... - + [Inspecteur] fermeture... - [Inspector] error: (%1) %2 %1=error code, %2=error message - + [Inspecteur] erreur : (%1) %2 - QML engine: - + Moteur QML : - Object Tree - + Arbre de l'objet - Properties and Watchers - + Propriétés et observateurs - Script Console - + Console de script - Output of the QML inspector, such as information on connecting to the server. - + Sortie de l'inspecteur QML, telles que des informations sur la connexion au serveur. - Start Debugging C++ and QML Simultaneously... - + Démarrer le débogage du C++ et du QML simultanément... - No project was found. - + Aucun projet trouvé. - - No run configurations were found for the project '%1'. - + Aucune configuration d'exécution n'a été trouvée pour le projet '%1'. - No valid run configuration was found for the project %1. Only locally runnable configurations are supported. Please check your project settings. - + Aucune configuration d'exécution valide n'a été trouvée pour le projet %1.Seules les configurations d'exécution locales sont prises en charge. +Merci de vérifier vos paramètres de projet. - A valid run control was not registered in Qt Creator for this project run configuration. - + Un contrôle d'exécution valide n'a pas été enregistré dans Qt Creator pour cette configuration d'exécution du projet. - Debugging failed: could not start C++ debugger. - + Échec du débogage : impossible de démarrer le débogueur C++. Qml::Internal::StartExternalQmlDialog - <No project> - + <Aucun projet> QmlJSEditor::Internal::QmlJSTextEditor - Rename... - Renommer... + Renommer... - New id: - Nouvel identifiant : + Nouvel identifiant : - Unused variable - + Variable inutilisée - Rename id '%1'... - Renommer l'identifiant '%1'... + Renommer l'identifiant '%1'... - <Select Symbol> - <Selectionner un symbole> + <Selectionner un symbole> QmlJSEditor::Internal::QmlJSEditorFactory - Do you want to enable the experimental Qt Quick Designer? - + Voulez-vous activer le designer expérimental pour Qt Quick ? - - Enable Qt Quick Designer - + Activer le designer pour Qt Quick - Qt Creator -> About Plugins... - + Qt Creator -> À propos des modules... - Help -> About Plugins... - + Aide -> À propos des modules... - Enable experimental Qt Quick Designer? - + Activer le designer expérimental pour Qt Quick ? - Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'. - + Voulez-vous activer le designer expérimental pour Qt Quick ? Après l'activation, vous pourrez accéder aux outils de conception visuelle en basculant dans le mode Design. Cela peut affecter la stabilité globale de Qt Creator. Pour désactiver le designer de Qt Creator, aller dans le menu '%1' et désactiver 'QmlDesigner'. - Cancel - Annuler + Annuler - Please restart Qt Creator - + Veuillez redémarrer Qt Creator - Please restart Qt Creator to make the change effective. - + Veuillez redémarrer Qt Creator pour rendre les changements actifs. QmlJSEditor::Internal::QmlJSEditorPlugin - Creates a Qt QML file. - Créer un fichier QML. + Créer un fichier QML. - Qt QML File - Fichier QML + Fichier QML - Qt Quick - + Qt Quick - Ctrl+Alt+R - Ctrl+Alt+R + Ctrl+Alt+R - Follow Symbol Under Cursor - + Suivre le symbole sous le curseur QmlJSEditor::Internal::HoverHandler - Unfiltered - Sans filtre + Sans filtre QmlJSEditor::Internal::ModelManager - Indexing - Indexation + Indexation QmlJSEditor::Internal::QmlJSPreviewRunner - Failed to preview Qt Quick file - + Échec de la prévisualisation du fichier Qt Quick - Could not preview Qt Quick (QML) file. Reason: %1 - + Impossible de prévisualiser le fichier Qt Quick (QML). Raison : \n%1 QmlProjectManager::QmlProject - Error while loading project file! - + Erreur lors du chargement du fichier de projet ! QmlProjectManager::Internal::QmlProjectApplicationWizardDialog - New QML Project - Nouveau projet QML + Nouveau projet QML - This wizard generates a QML application project. - Cet assistant génère un projet pour une application QML. + Cet assistant génère un projet pour une application QML. QmlProjectManager::Internal::QmlProjectApplicationWizard - Qt QML Application - + Application QML - Creates a Qt QML application project with a single QML file containing the main view. QML application projects are executed through the QML runtime and do not need to be built. - + Créer un projet pour une application QML avec un seul fichier QML contenant la vue principale.\n\nLes applications QML sont exécutées sur le runtine QML et n'ont pas besoin d'être compilées. - File generated by QtCreator qmlproject Template Comment added to generated .qmlproject file - + Fichier généré par Qt Creator - Include .qml, .js, and image files from current directory and subdirectories qmlproject Template Comment added to generated .qmlproject file - + Inclure les fichiers .qml, .ls et les images depuis le répertoire courrant et ses sous-répertoires - List of plugin directories passed to QML runtime qmlproject Template Comment added to generated .qmlproject file - + Liste des répertoires passée au runtime QML QmlProjectManager - Qt Quick Project - + Projet Qt Quick QmlProjectManager::Internal::QmlProjectImportWizardDialog - Import Existing Qt QML Directory - + Importer un répertoire Qt QML existant - Project Name and Location - + Nom du projet et emplacement - Project name: - Nom du projet : + Nom du projet : - Location: - Emplacement : + Emplacement : - Location - Emplacement + Emplacement QmlProjectManager::Internal::QmlProjectImportWizard - Import Existing Qt QML Directory - + Importer un répertoire Qt QML existant - Creates a QML project from an existing directory of QML files. - Crée un projet QML à partir d'un répertoire existant de fichiers QML. + Crée un projet QML à partir d'un répertoire existant de fichiers QML. - File generated by QtCreator qmlproject Template Comment added to generated .qmlproject file - + Fichier généré par Q tCreator - Include .qml, .js, and image files from current directory and subdirectories qmlproject Template Comment added to generated .qmlproject file - + Inclure les fichiers .qml, .js et les images depuis le répertoire courant et ses sous-répertoires - List of plugin directories passed to QML runtime qmlproject Template Comment added to generated .qmlproject file - + Liste des répertoires des plugins passée au runtime QML QmlProjectManager::Internal::Manager - Failed opening project '%1': Project already open - Échec de l'ouverture du projet '%1' : projet déjà ouvert + Échec de l'ouverture du projet '%1' : projet déjà ouvert QmlProjectManager::QmlProjectRunConfiguration - QML Viewer QMLRunConfiguration display name. - Visualisateur QML + Visualisateur QML - QML Viewer - Visualisateur QML + Visualisateur QML - QML Viewer arguments: - Arguments du visualisateur QML : + Arguments du visualisateur QML : - Main QML File: - Fichier QML principal : + Fichier QML principal : - Debugging Address: - + Addresse du débogeur : - Debugging Port: - + Port du débogueur : QmlManager - <Current File> - <Fichier courant> + <Fichier courant> QmlProjectManager::Internal::QmlProjectRunConfigurationFactory - Run QML Script - + Executer le script QML QmlProjectManager::Internal::QmlRunControl - Starting %1 %2 - + Démarrer %1 %2 - %1 exited with code %2 - + %1 a quitté avec le code %2 QmlProjectManager::Internal::QmlRunControlFactory - Run - Exécuter + Exécuter QmlProjectManager::Internal::QmlTaskManager - QML - + QML Qt4ProjectManager::Internal::MaemoConfigTestDialog - Testing configuration... - + Test de la configuration... - Stop Test - + Arrêter le test - Device configuration test failed: %1 - + Échec du test de la configuration du périphérique :\n%1 - Did you start Qemu? - + Voulez-vous démarrer Qemu ? - Qt version mismatch! Expected Qt on device: 4.6.2 or later. - + Conflit de version de Qt ! Version de Qt attendue sur le périphérique : 4.6.2 ou supérieure. - Close - Fermer + Fermer - Device configuration test failed: Unexpected output: %1 - + Échec du test de la configuration du périphérique : Sortie inattendue :\n%1 - Hardware architecture: %1 - + Architecture matériel : %1\n - Kernel version: %1 - + Version du noyau : %1\n - Device configuration successful. - + Configuration du périphérique réussit. - No Qt packages installed. - + Aucun paquet Qt installé. - List of installed Qt packages: - + Liste des paquets Qt installés : Qt4ProjectManager::Internal::MaemoPackageContents - Local File Path - + Chemin du fichier local - Remote File Path - + Chemin du fichier distant Qt4ProjectManager::Internal::MaemoPackageCreationStep - Creating package file ... - + Créer un fichier de paquet... - Cannot open MADDE config file '%1'. - + Impossible d'ouvrir le fichier de configuration '%1' de MADDE. - Packaging Error: Cannot open file '%1'. - + Erreur lors de la création du paquet : ne peut pas 'ouvrir le fichier '%1'. - Packaging Error: Cannot write file '%1'. - + Erreur lors de la création du paquet : ne peut pas écrire le fichier '%1'. - Packaging Error: Could not create directory '%1'. - + Erreur lors de la création du paquet : ne peut pas créer le répertoire '%1'. - Packaging Error: Could not replace file '%1'. - + Erreur lors de la création du paquet : ne peut pas remplacer le fichier '%1'. - Packaging Error: Could not copy '%1' to '%2'. - + Erreur lors de la création du paquet : ne peut pas copier '%1' vers '%2'. - Package created. - + Paquet créé. - Package Creation: Running command '%1'. - + Création du paquet : exécuter la commande '%1'. - - Packaging failed. - + Éched lors de la création du paquet. - Packaging error: Could not start command '%1'. Reason: %2 - + Erreur lors de la création du paquet : ne peut pas exécuter la commande '%1'. Raison : %2 + + + Exit code: %1 + Code de sortie : %1 - Packaging Error: Command '%1' timed out. - + Erreur lors de la création du paquet : délai d'attente dépassé pour la commande '%1'. - Packaging Error: Command '%1' failed. - + Erreur lors de la création du paquet : échec de la commande '%1'. - Reason: %1 - + Raison : %1 - Output was: - + La sortie était : Qt4ProjectManager::Internal::MaemoPackageCreationWidget - <b>Create Package:</b> - + <b>Créer le paquet :</b> - Choose a local file - + Choisir un fichier local - File already in package - + Le fichier est déjà dans le paquet - You have already added this file. - + Vous avez déjà ajouté ce fichier. Qt4ProjectManager::Internal::MaemoRunConfiguration - New Maemo Run Configuration - + Nouvelle configuration d'exécution pour Maemo Qt4ProjectManager::Internal::MaemoRunConfigurationWidget - Run configuration name: - + Exécuter la configuration nommée : - <a href="%1">Manage device configurations</a> - + <a href="%1">Gérer les configurations des périphériques</a> - <a href="%1">Set Debugger</a> - + <a href="%1">Définir le débogeur</a> - Device configuration: - + Configuration du périphérique : - Executable: - + Exécutable : - Arguments: - Arguments : + Arguments : Qt4ProjectManager::Internal::AbstractMaemoRunControl - No device configuration set for run configuration. - + Aucune configuration de périphérique définie pour exécuter la configuration. - Cleaning up remote leftovers first ... - + Nettoyer les éléments à distance restant en premier... - Initial cleanup canceled by user. - + Nettoyage initial annulé par l'utilisateur. - Error running initial cleanup: %1. - + Erreur lors du nettoyage initial : %1. - Initial cleanup done. - + Nettoyage initial fini. - Deploying - + Déployer - Files to deploy: %1. - + Fichiers à déployer : %1. - Starting remote application. - + Démarrer l'application à distance. - Deployment canceled by user. - + Déployement annulé par l'utilisateur. - Deployment failed: %1 - + Échec du déploiement : %1 - Deployment finished. - + Déploiement fini. - Remote execution canceled due to user request. - + Exécution à distance annulée par une demande de l'utilisateur. - Error running remote process: %1 - + Erreur lors de l'exécution du processus à distance : %1 - Finished running remote process. - + Exécution du processus à distance terminée. - Remote Execution Failure - + Échec lors de l'exécution à distance Qt4ProjectManager::Internal::MaemoRunConfigurationFactory - New Maemo Run Configuration - + Nouvelle configuration d'exécution pour Maemo Qt4ProjectManager::Internal::MaemoRunControlFactory - Run on device - + Exécuter sur le périphérique Qt4ProjectManager::Internal::MaemoSettingsPage - Maemo Device Configurations - + Configurations du périphérique Maemo Qt4ProjectManager::Internal::MaemoSettingsWidget - New Device Configuration %1 Standard Configuration name with number - + Nouvelle configuration pour le périphérique %1 - Choose Public Key File - + Choisir le fichier de clé publique - Public Key Files(*.pub);;All Files (*) - + Fichier de clé publique (*.pub);;Tous les fichiers (*) - - Deployment Failed - + Échec lors du déploiement - Could not read public key file '%1'. - + Ne peut pas lire le fichier de clé publique '%1'. - Stop Deploying - + Arrêter le déploiement - Key deployment failed: %1 - + Échec lors du déploiement de la clé : '%1' - Deployment Succeeded - + Déploiement réussi - Key was successfully deployed. - + La clé a été déployé avec succès. - Deploy Public Key ... - + Déployer la clé publique... Qt4ProjectManager::Internal::MaemoSshConfigDialog - Save Public Key File - + Enregistrer le fichier de clé publique - Save Private Key File - + Enregistrer le fichier de clé privée - Error writing file - + Erreur lors de l'enregistrement du fichier - Could not write file '%1': %2 - + Impossible d'enregistrer le fichier : '%1' : +%2 Qt4ProjectManager::Internal::QemuRuntimeManager - - Start Maemo Emulator - + Démarrer l'émulateur Maemo - Qemu has been shut down, because you removed the corresponding Qt version. - + Qemu a été arrêté parce que vous avez supprimer la version de Qt correspondante. + + + Qemu finished with error: Exit code was %1. + Qemu s'est terminé avec une erreur : le code d'erreur était %1. - Qemu failed to start: %1 - + Qemu n'a pas pu démarrer : %1 - Qemu crashed - + Qemd a planté - Qemu error - + Erreur de Qemu - Stop Maemo Emulator - + Arrêter l'émulateur Maemo Qt4ProjectManager::Internal::S60CreatePackageStep - Create SIS Package Create SIS package build step name - + Créer le paquet SIS Qt4ProjectManager::Internal::S60CreatePackageStepFactory - Create SIS Package - + Créer le paquet SIS Qt4ProjectManager::Internal::S60CreatePackageStepConfigWidget - self-signed - + auto-signé - signed with certificate %1 and key file %2 - + signé avec le certificat %1 et le fichier de clé %2 - <b>Create SIS Package:</b> %1 - + <b>Créer le paquet SIS :</b> %1 Qt4ProjectManager::Internal::S60DevicesBaseWidget - Default - + Défaut - SDK Location - Emplacement du SDK + Emplacement du SDK - Qt Location - Emplacement de Qt + Emplacement de Qt - Choose Qt folder - + Choisir le répertoire Qt Qt4ProjectManager::Internal::S60DevicesModel - No Qt installed - Qt non installé + Qt non installé Qt4ProjectManager::Internal::GnuPocS60DevicesWidget - Step 1 of 2: Choose GnuPoc folder - + Étape 1 sur 2 : Choisir le répertoire GnuPoc - Step 2 of 2: Choose Qt folder - + Étape 2 sur 2 : Choisir le répertoire Qt - Adding GnuPoc - + Ajouter GnuPoc - GnuPoc and Qt folders must not be identical. - + Les répertoires GnuPoc et Qt ne doivent pas être identiques. ProjectExplorer::Internal::S60ProjectChecker - The Symbian SDK and the project sources must reside on the same drive. - + Le SDK Symbian et les sources du projet doivent être situés sur le même disque. - The Symbian SDK was not found for Qt version %1. - + Le SDK Symbian n'a pas été trouvé pour Qt version %1. - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. - + Le "plugin Open C/C++" n'est pas installé pour le SDK Symbian ou le répertoire du SDK Symbian est mal configuré pour la version de Qt %1. - The Symbian toolchain does not handle special characters in a project path well. - + La chaîne de compilation Symbian ne gère correctement les caractères spéciaux dans le chemin d'un projet. Qt4ProjectManager::Internal::Qt4BuildConfigurationFactory - Using Qt Version "%1" - Utiliser la version Qt "%1" + Utiliser la version Qt "%1" - New configuration - Nouvelle configuration + Nouvelle configuration - New Configuration Name: - Nom de la nouvelle configuration : + Nom de la nouvelle configuration : - %1 Debug - %1 Debug + %1 Debug - %1 Release - %1 Release + %1 Release Qt4ProjectManager::Qt4Project - Evaluating - + Évaluation Qt4ProjectManager - Qt4 - + Qt4 - Qt Versions - + Versions de Qt - Qt C++ Project - + Projet Qt C++ Qt4ProjectManager::Internal::Qt4TargetFactory - Debug - Déboguer + Déboguer - Release - + Release Qt4ProjectManager::QtVersion - The Qt version is invalid: %1 %1: Reason for being invalid - + La version de Qt est invalide : %1 - The qmake command "%1" was not found or is not executable. %1: Path to qmake executable - + La commande qmake "%1" n'a pas été trouvée ou n'est pas exécutable. QtVersion - No qmake path set - + Chemin de qmake non spécifié - Qt version has no name - + La version de Qt n'a pas de nom - Qt version is not properly installed, please run make install - + La version de Qt n'est pas correctement installée, veuillez exécuter make install - Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong? - + Impossible de déterminer le chemin vers les programmes de Qt, peut-être que le chemin vers qmake est faux ? - The Qt Version has no toolchain. - La version de Qt n'as pas de chaîne de compilation. + La version de Qt n'as pas de chaîne de compilation. Qt4ProjectManager::Internal::MobileGuiAppWizard - Mobile Qt Application - + Application Qt pour mobiles - Creates a Qt application optimized for mobile devices with a Qt Designer-based main window. Preselects Qt for Simulator and mobile targets if available - + Créer une application Qt optimisée pour les mobiles avec une fenêtre principale conçue dans Qt Designer.\n\nPrésélectionne la version de Qt pour le simulateur et les mobiles si disponible Qt4ProjectManager::Internal::BaseQt4ProjectWizardDialog - - Modules - Modules + Modules - Qt Versions - + Versions de Qt Qt4ProjectManager::Internal::TestWizard - Qt Unit Test - + Test unitaire 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. - + Créer un test unitaire basé sur QTestList pour une fonctionnalité ou une classe.Les tests unitaires vous permettent de vérifier que le code est utilisable et qu'il n'y a pas de régression. Qt4ProjectManager::Internal::TestWizardDialog - This wizard generates a Qt unit test consisting of a single source file with a test class. - + Cet assistant génère un test unitaire Qt consistant en un fichier source unique avec une classe de test. - Details - Détails + Détails Subversion::Internal::SubversionEditor - Annotate revision "%1" - + Révision annotée "%1" TextEditor - Text Editor - Éditeur de texte + Éditeur de texte VCSBase::VCSBasePlugin - Version Control - Gestion de versions + Gestion de versions - The file '%1' could not be deleted. - Le fichier '%1' n'a pas pu être supprimé. + Le fichier '%1' n'a pas pu être supprimé. - Choose Repository Directory - + Choisissez le répertoire pour le dépot - The directory '%1' is already managed by a version control system (%2). Would you like to specify another directory? - + Le répertoire '%1' est déjà géré par un système de contrôle des versions (%2). Voulez-vous spécifier un autre répertoire ? - Repository already under version control - + Le dépôt est déjà sous contrôle de version - Repository created - + Dépot créé - A version control repository has been created in %1. - + Un dépôt sous contrôle de version à été créé dans %1. - Repository creation failed - + Échec lors de la création du dépôt - A version control repository could not be created in %1. - + Un dépôt sous contrôle de version ne peut pas être créé dans %1. trk::Launcher - Cannot open remote file '%1': %2 - + Impossible d'ouvrir le fichier '%1' à distance : %2 - Cannot open '%1': %2 - Impossible d'ouvrir '%1' : %2 + Impossible d'ouvrir '%1' : %2 - Unable to acquire a device for port '%1'. It appears to be in use. - + Impossible d'acquérir un device pour le port '%1'. Il semble être utilisé. AboutDialog - About Bauhaus AboutDialog A propos de Bauhaus + + ContextPaneTextWidget + + Text + Texte + + + Style + Style + + + Normal + Normal + + + Outline + Contour + + + Raised + Bombé + + + Sunken + Enfoncé + + + ... + ... + + + + Core::HelpManager + + Unfiltered + Sans filtre + + + + QmlDesigner::ContextPaneWidget + + Disable permanently + Désactiver de façon permanente + + -- cgit v1.2.1 From dc804c69e5eaa856a538b8af4649bf59fce10339 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 18 Aug 2010 09:52:38 +0200 Subject: debugger: python needs no semicolons --- share/qtcreator/gdbmacros/dumper.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index 8691296879..9b864a4f0c 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -305,7 +305,7 @@ class Children: if self.d.passExceptions and not exType is None: showException("CHILDREN", exType, exValue, exTraceBack) if self.d.currentMaxNumChilds < self.d.currentNumChilds: - self.d.putEllipsis(); + self.d.putEllipsis() self.d.currentChildType = self.savedChildType self.d.currentChildNumChild = self.savedChildNumChild self.d.currentNumChilds = self.savedNumChilds @@ -429,8 +429,8 @@ def listOfLocals(varList): hasBlock = 'block' in __builtin__.dir(frame) items = [] - #warn("HAS BLOCK: %s" % hasBlock); - #warn("IS GOOD GDB: %s" % isGoodGdb()); + #warn("HAS BLOCK: %s" % hasBlock) + #warn("IS GOOD GDB: %s" % isGoodGdb()) if hasBlock and isGoodGdb(): #warn("IS GOOD: %s " % varList) try: @@ -857,7 +857,7 @@ class SetupCommand(gdb.Command): for key, value in module.__dict__.items(): if key.startswith("qdump__"): name = key[7:] - qqFormats[name] = qqFormats.get(name, ""); + qqFormats[name] = qqFormats.get(name, "") elif key.startswith("qform__"): name = key[7:] formats = "" @@ -982,7 +982,7 @@ class FrameCommand(gdb.Command): d.put('addr="",') d.put('value="",') d.put('type="%s",' % item.value.type) - d.put('numchild="0"'); + d.put('numchild="0"') continue type = item.value.type @@ -1054,7 +1054,7 @@ class FrameCommand(gdb.Command): def handleWatch(self, d, exp, iname): exp = str(exp) - escapedExp = exp.replace('"', '\\"'); + escapedExp = exp.replace('"', '\\"') #warn("HANDLING WATCH %s, INAME: '%s'" % (exp, iname)) if exp.startswith("[") and exp.endswith("]"): #warn("EVAL: EXP: %s" % exp) @@ -1303,7 +1303,7 @@ class Dumper: return # FIXME: Gui shows references stripped? - #warn(" "); + #warn(" ") #warn("REAL INAME: %s " % item.iname) #warn("REAL NAME: %s " % name) #warn("REAL TYPE: %s " % item.value.type) -- cgit v1.2.1 From 1fba1858825ae60644c5bc5d75b6cc9fd5550c2b Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 18 Aug 2010 10:12:03 +0200 Subject: debugger: fix merge --- share/qtcreator/gdbmacros/gdbmacros.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index 295dd4e3ff..1cba34f289 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -614,6 +614,8 @@ def qdump__QObject(d, item): d.putNumChild(4) if d.isExpanded(item): with Children(d): + d.putFields(item) + # Parent and children. d.putItem(Item(d_ptr["parent"], item.iname, "parent", "parent")) d.putItem(Item(d_ptr["children"], item.iname, "children", "children")) -- cgit v1.2.1 From 9e59bdf9aeb9de3322508c2271e8d56f00353ed7 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 18 Aug 2010 10:21:05 +0200 Subject: debugger: fix merge --- share/qtcreator/gdbmacros/dumper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index 9b864a4f0c..c4151d93ed 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -618,7 +618,7 @@ movableTypes = set([ "QFileInfo", "QFixed", "QFixedPoint", "QFixedSize", "QHashDummyValue", "QIcon", "QImage", - "QLine", "QLineF", "QLatin1Char", "QLocal", + "QLine", "QLineF", "QLatin1Char", "QLocale", "QMatrix", "QModelIndex", "QPoint", "QPointF", "QPen", "QPersistentModelIndex", "QResourceRoot", "QRect", "QRectF", "QRegExp", -- cgit v1.2.1 From 991aceb0fda59e7803dc9bfd3ae602a26f03d874 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 18 Aug 2010 13:09:27 +0200 Subject: debugger: finish "Launching" bar even if we don't hit a "^running" --- src/plugins/debugger/gdb/gdbengine.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/debugger/gdb/gdbengine.cpp b/src/plugins/debugger/gdb/gdbengine.cpp index 3f6e16b378..efc797dcbe 100644 --- a/src/plugins/debugger/gdb/gdbengine.cpp +++ b/src/plugins/debugger/gdb/gdbengine.cpp @@ -4158,6 +4158,10 @@ void GdbEngine::startInferiorPhase2() { debugMessage(_("BREAKPOINTS SET, CONTINUING INFERIOR STARTUP")); m_gdbAdapter->startInferiorPhase2(); + if (m_progress) { + m_progress->setProgressValue(100); + m_progress->reportFinished(); + } } void GdbEngine::handleInferiorStartFailed(const QString &msg) -- cgit v1.2.1 From 69fb75b627d478796f95518a66353a543d588fe3 Mon Sep 17 00:00:00 2001 From: hjk Date: Wed, 18 Aug 2010 13:51:49 +0200 Subject: debugger: fix 2.x regression: allow assignment to structure members --- src/plugins/debugger/watchhandler.cpp | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/src/plugins/debugger/watchhandler.cpp b/src/plugins/debugger/watchhandler.cpp index b4cfd13f26..a4adf74e50 100644 --- a/src/plugins/debugger/watchhandler.cpp +++ b/src/plugins/debugger/watchhandler.cpp @@ -602,8 +602,21 @@ QVariant WatchModel::data(const QModelIndex &idx, int role) const break; } - case ExpressionRole: - return data.exp; + case ExpressionRole: { + if (!data.exp.isEmpty()) + return data.exp; + if (!data.addr.isEmpty() && !data.type.isEmpty()) { + bool ok; + const quint64 addr = data.addr.toULongLong(&ok, 16); + if (ok && addr) + return QString("*(%1*)%2").arg(data.type).arg(addr); + } + WatchItem *parent = item->parent; + if (parent && !parent->exp.isEmpty()) + return QString("(%1).%2") + .arg(QString::fromLatin1(parent->exp)).arg(data.name); + return QVariant(); + } case INameRole: return data.iname; -- cgit v1.2.1 From 3e31a770b5aa882c4fccdea65c7f8504beab032a Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Wed, 18 Aug 2010 15:38:05 +0200 Subject: CodePaster: Do not show popup about modified files on Windows. QTemporaryFile destructor causes a file changed signal due to it holding on to it. Reviewed-by: dt Task-number: QTCREATORBUG-2083 --- src/plugins/cpaster/cpasterplugin.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/plugins/cpaster/cpasterplugin.cpp b/src/plugins/cpaster/cpasterplugin.cpp index 47cbf0091b..e3a17c01d9 100644 --- a/src/plugins/cpaster/cpasterplugin.cpp +++ b/src/plugins/cpaster/cpasterplugin.cpp @@ -351,6 +351,8 @@ void CodepasterPlugin::finishFetch(const QString &titleDescription, // Keep the file and store in list of files to be removed. tempFile->setAutoRemove(false); const QString fileName = tempFile->fileName(); + // Discard to temporary file to make sure it is closed and no changes are triggered. + tempFile = TemporaryFilePtr(); m_fetchedSnippets.push_back(fileName); // Open editor with title. Core::IEditor* editor = EditorManager::instance()->openEditor(fileName); -- cgit v1.2.1 From 5427f7bf8b24b96bedb2919491716a9289f0bfe5 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Wed, 18 Aug 2010 16:38:29 +0200 Subject: Maemo: Fix Qemu start on Mac. --- src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp b/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp index b089007312..d33e39b162 100644 --- a/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp +++ b/src/plugins/qt4projectmanager/qt-maemo/qemuruntimemanager.cpp @@ -352,9 +352,13 @@ void QemuRuntimeManager::startRuntime() env.insert(key, env.value(key) % colon % root % QLatin1String("bin")); env.insert(key, env.value(key) % colon % root % QLatin1String("madlib")); #elif defined(Q_OS_UNIX) +# if defined(Q_OS_MAC) + const QLatin1String key("DYLD_LIBRARY_PATH"); +# else const QLatin1String key("LD_LIBRARY_PATH"); +# endif // MAC env.insert(key, env.value(key) % QLatin1Char(':') % rt.m_libPath); -#endif +#endif // WIN/UNIX m_qemuProcess->setProcessEnvironment(env); m_qemuProcess->setWorkingDirectory(rt.m_root); -- cgit v1.2.1 From 4b1540e5a730e2e4f0e9c9c8203045fd1f59dca5 Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Wed, 18 Aug 2010 16:39:53 +0200 Subject: Debugger/Windows[gdb]: Fix Attach to running (gui) process. Initial-patch-by: hjk Task-number: QTCREATORBUG-2084 --- src/plugins/debugger/debuggermanager.cpp | 3 ++- src/plugins/debugger/gdb/attachgdbadapter.cpp | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/plugins/debugger/debuggermanager.cpp b/src/plugins/debugger/debuggermanager.cpp index 6bfa9b973e..f7ccd6ad4b 100644 --- a/src/plugins/debugger/debuggermanager.cpp +++ b/src/plugins/debugger/debuggermanager.cpp @@ -1731,7 +1731,8 @@ static bool isAllowedTransition(int from, int to) case InferiorStarting: return to == InferiorRunningRequested || to == InferiorStopped - || to == InferiorStartFailed || to == InferiorUnrunnable; + || to == InferiorStartFailed || to == InferiorUnrunnable + || to == InferiorRunning; case InferiorStartFailed: return to == EngineShuttingDown; diff --git a/src/plugins/debugger/gdb/attachgdbadapter.cpp b/src/plugins/debugger/gdb/attachgdbadapter.cpp index 6ef72a1b29..821afb391f 100644 --- a/src/plugins/debugger/gdb/attachgdbadapter.cpp +++ b/src/plugins/debugger/gdb/attachgdbadapter.cpp @@ -78,7 +78,7 @@ void AttachGdbAdapter::startInferior() void AttachGdbAdapter::handleAttach(const GdbResponse &response) { QTC_ASSERT(state() == InferiorStarting, qDebug() << state()); - if (response.resultClass == GdbResultDone) { + if (response.resultClass == GdbResultDone || response.resultClass == GdbResultRunning) { setState(InferiorStopped); debugMessage(_("INFERIOR ATTACHED")); showStatusMessage(msgAttachedToStoppedInferior()); -- cgit v1.2.1 From b1bfb147fe1f979815f0fc6d96eb20f44527fc3b Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Wed, 18 Aug 2010 18:20:08 +0200 Subject: Translations still needed in 2.0.1 These are needed because e2347b3d92 is (and should be) in 2.0 but not in 2.0.1 branch. Reviewed-by: Oswald Buddenhagen --- share/qtcreator/translations/qtcreator_de.ts | 8 ++++++++ share/qtcreator/translations/qtcreator_ja.ts | 4 ++-- share/qtcreator/translations/qtcreator_sl.ts | 8 ++++++++ 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_de.ts b/share/qtcreator/translations/qtcreator_de.ts index 84e24deb7a..628ae86bdf 100644 --- a/share/qtcreator/translations/qtcreator_de.ts +++ b/share/qtcreator/translations/qtcreator_de.ts @@ -5881,6 +5881,14 @@ on slow machines. In this case, the value should be increased. Alt+G,Alt+B Alt+G,Alt+B + + Undo Changes + Änderungen rückgängig machen + + + Undo Changes for "%1" + Änderungen in "%1" rückgängig machen + Alt+G,Alt+U Alt+G,Alt+U diff --git a/share/qtcreator/translations/qtcreator_ja.ts b/share/qtcreator/translations/qtcreator_ja.ts index 0e377f35b3..b296a3924f 100644 --- a/share/qtcreator/translations/qtcreator_ja.ts +++ b/share/qtcreator/translations/qtcreator_ja.ts @@ -5595,11 +5595,11 @@ name in different directories. Undo Changes - 変更内容を元に戻す + 変更内容を元に戻す Undo Changes for "%1" - "%1" の変更を元に戻す + "%1" の変更を元に戻す Alt+G,Alt+U diff --git a/share/qtcreator/translations/qtcreator_sl.ts b/share/qtcreator/translations/qtcreator_sl.ts index b36cf67cec..d5492b9d2b 100644 --- a/share/qtcreator/translations/qtcreator_sl.ts +++ b/share/qtcreator/translations/qtcreator_sl.ts @@ -5094,6 +5094,14 @@ enojen »Vstopi« za oddajo signala pa vas bo privedel neposredno do ustrezne pr Alt+G,Alt+B Alt+G,Alt+B + + Undo Changes + Razveljavi spremembe + + + Undo Changes for "%1" + + Alt+G,Alt+U Alt+G,Alt+U -- cgit v1.2.1 From 9a7cb7b2c71051a1a7416f3a420558740a431872 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Wed, 18 Aug 2010 17:15:06 +0200 Subject: Doc - Fix issues in the tutorial. Task-number: QTCREATORBUG-1934 Reviewed-by: Friedemann Kleint (cherry picked from commit 557572bb4d1bc9c0f8c8426fee7b7bbcaad0bdcd) --- doc/qtcreator.qdoc | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc index 7b33f5696f..92e90bb84f 100644 --- a/doc/qtcreator.qdoc +++ b/doc/qtcreator.qdoc @@ -2697,7 +2697,7 @@ \list 1 - \o Select \gui{File > New File or Project > Qt Application Project > Mobile Qt + \o Select \gui{File > New File or Project > Qt C++ Project > Mobile Qt Application > Choose}. \image qtcreator-new-mobile-project.png "New File or Project dialog" @@ -3158,11 +3158,14 @@ \o In the \gui {Create in} field, enter the path for the project files. For example, \c {C:\Qt\examples}, and then click \gui{Next}. - The \gui{Select Required Qt Versions} dialog opens. + The target setting dialog opens. + + \image qtcreator-new-project-qt-versions.png "Target setting dialog" - \image qtcreator-new-project-qt-versions.png "Select Required Qt Versions dialog" + \o Select the Qt versions to use as build targets for your project, and click + \gui{Next}. - \o Click \gui{Next} to use the Qt version set in the path in your project. + \note If you have only one Qt version installed, this dialog is skipped. The \gui{Class Information} dialog opens. @@ -3252,7 +3255,7 @@ \o Drag and drop a \gui{Text Edit} widget (\l{http://doc.qt.nokia.com/4.7-snapshot/qtextedit.html}{QTextEdit}) to the form. - \o Select the screen area and click \gui{Lay out Vertically} (or press \gui{Ctr+V}) + \o Select the screen area and click \gui{Lay out Vertically} (or press \gui{Ctrl+L}) to apply a vertical layout (\l{http://doc.qt.nokia.com/4.7-snapshot/qvboxlayout.html}{QVBoxLayout}). \image qtcreator-textfinder-ui.png "Text Finder UI" @@ -3293,11 +3296,11 @@ \list 1 - \o In the \gui{Projects} view, double-click the \c{textfinder.h} file + \o In the \gui{Projects} pane in the \gui {Edit view}, double-click the \c{textfinder.h} file to open it for editing. \o Add a private function - to the \c{private} section, after the \c{Ui::TextFinder} function, as + to the \c{private} section, after the \c{Ui::TextFinder} pointer, as illustrated by the following code snippet: \snippet examples/textfinder/textfinder.h 0 @@ -3311,7 +3314,7 @@ \list 1 - \o In the \gui{Projects} view, double-click the textfinder.cpp file + \o In the \gui{Projects} pane in the \gui Edit view, double-click the textfinder.cpp file to open it for editing. \o Add code to load a text file using @@ -3389,7 +3392,7 @@ \section1 Compiling and Running Your Program Now that you have all the necessary files, click the \inlineimage qtcreator-run.png - button to compile your program. + button to compile and run your program. */ -- cgit v1.2.1 From a7187bd9cf39aebbb919c1b7304ca392a4732fef Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Wed, 18 Aug 2010 16:57:33 +0200 Subject: Doc - Remove prerequisities so as not to discourage users from trying this. Task-number: QTCREATORBUG-1932 Reviewed-by: Friedemann Kleint (cherry picked from commit 88f79706c3af28f6f560d336e4f437e2aa8c9e95) --- doc/qtcreator.qdoc | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc index 92e90bb84f..c8238aa1e8 100644 --- a/doc/qtcreator.qdoc +++ b/doc/qtcreator.qdoc @@ -3119,10 +3119,6 @@ \title Creating a Qt C++ Application - \note This tutorial assumes that you have experience in writing basic Qt - applications, using \QD to design user interfaces and using the Qt - Resource System. - This tutorial describes how to use Qt Creator to create a small Qt application, Text Finder. It is a simplified version of the QtUiTools \l{http://doc.qt.nokia.com/4.7-snapshot/uitools-textfinder.html}{Text Finder} @@ -3130,20 +3126,15 @@ \image qtcreator-textfinder-screenshot.png - \section1 Setting Up Your Environment - - Qt Creator automatically detects whether the location of Qt is in your \c PATH variable. - If you have installed several Qt versions, follow the - instructions in \l{Selecting the Qt version} to set the Qt path. - \section1 Creating the Text Finder Project - \note Create the project with the \gui{Help} mode active so that you can follow + \note Create the project with two instances of Qt Creator open and the \gui{Help} mode + active in one of them so that you can follow these instructions while you work. \list 1 - \o Select \gui{File > New File or Project > Qt Application Project > Qt Gui + \o Select \gui{File > New File or Project > Qt C++ Project > Qt Gui Application > Choose}. \image qtcreator-new-project.png "New File or Project dialog" -- cgit v1.2.1 From f6e94f0a3a1c47cd8b809865d72e4acd2420d116 Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Thu, 19 Aug 2010 10:16:16 +0200 Subject: BinEditor: Make saving via saveModifiedFiles() behave correctly. --- src/plugins/bineditor/bineditorplugin.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/plugins/bineditor/bineditorplugin.cpp b/src/plugins/bineditor/bineditorplugin.cpp index 277a5041fd..e0c0065a63 100644 --- a/src/plugins/bineditor/bineditorplugin.cpp +++ b/src/plugins/bineditor/bineditorplugin.cpp @@ -193,10 +193,12 @@ public: virtual QString mimeType() const { return m_mimeType; } bool save(const QString &fileName = QString()) { - if (m_editor->save(m_fileName, fileName)) { - m_fileName = fileName; + const QString fileNameToUse + = fileName.isEmpty() ? m_fileName : fileName; + if (m_editor->save(m_fileName, fileNameToUse)) { + m_fileName = fileNameToUse; m_editor->editorInterface()-> - setDisplayName(QFileInfo(fileName).fileName()); + setDisplayName(QFileInfo(fileNameToUse).fileName()); emit changed(); return true; } else { -- cgit v1.2.1 From 9026def05d9f684ef0deede938e9638964bd6050 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Thu, 19 Aug 2010 10:37:53 +0200 Subject: Doc - Update screen shot of Maemo build settings. --- doc/images/qtcreator-screenshot-build-settings.png | Bin 70679 -> 68308 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/doc/images/qtcreator-screenshot-build-settings.png b/doc/images/qtcreator-screenshot-build-settings.png index 16fa3bfba4..76addfe8ad 100644 Binary files a/doc/images/qtcreator-screenshot-build-settings.png and b/doc/images/qtcreator-screenshot-build-settings.png differ -- cgit v1.2.1 From 0cba8a2e115de26adb62cabab0fb5a236fffffc4 Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Thu, 19 Aug 2010 12:22:40 +0200 Subject: Add missing assets to qch file Reviewed-by: Alessandro Portale --- doc/qtcreator.qdocconf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/qtcreator.qdocconf b/doc/qtcreator.qdocconf index ec2747c944..9b4e2a29b2 100644 --- a/doc/qtcreator.qdocconf +++ b/doc/qtcreator.qdocconf @@ -32,10 +32,16 @@ qhp.QtCreator.extraFiles = \ style/style_ie7.css \ style/style_ie8.css \ style/OfflineStyle.css \ + style/narrow.css \ + style/OfflineStyle.css \ + style/superfish.css \ + style/superfish_skin.css \ images/qt-logo.png \ images/qtcreator-screenshots.png \ scripts/functions.js \ scripts/jquery.js \ + scripts/narrow.js \ + scripts/superfish.js \ images/api_examples.png \ images/api_lookup.png \ images/arrow_down.png \ -- cgit v1.2.1 From cf8af3272b3d43fdce08458d13b9e78d35946ad4 Mon Sep 17 00:00:00 2001 From: Jarek Kobus Date: Thu, 19 Aug 2010 12:24:33 +0200 Subject: Update Polish translations --- share/qtcreator/translations/qtcreator_pl.ts | 5055 ++++---------------------- 1 file changed, 634 insertions(+), 4421 deletions(-) diff --git a/share/qtcreator/translations/qtcreator_pl.ts b/share/qtcreator/translations/qtcreator_pl.ts index e5687b9336..b14f0ec62b 100644 --- a/share/qtcreator/translations/qtcreator_pl.ts +++ b/share/qtcreator/translations/qtcreator_pl.ts @@ -4,27 +4,22 @@ mainClass - main main - Text1: Tekst1: - N/A Niedostępne - Text2: Tekst2: - Text3: Tekst3: @@ -32,57 +27,46 @@ ExtensionSystem::Internal::PluginDetailsView - Name: Nazwa: - Version: Wersja: - Compatibility Version: Zgodność z wersją: - Vendor: Dostawca: - Url: Url: - Location: Położenie: - Description: Opis: - Copyright: Prawa autorskie: - License: Licencja: - Dependencies: Zależności: - Group: Grupa: @@ -90,12 +74,10 @@ ExtensionSystem::Internal::PluginErrorView - State: Stan: - Error Message: Komunikat Błędu: @@ -103,22 +85,18 @@ ExtensionSystem::Internal::PluginView - Name Nazwa - Version Wersja - Vendor Dostawca - Load Załadowana @@ -126,17 +104,14 @@ Utils::CheckableMessageBox - Dialog Dialog - TextLabel Etykieta - CheckBox CheckBox @@ -144,17 +119,14 @@ Utils::WizardPage - Name: Nazwa: - Path: Ścieżka: - Choose the Location Wybierz położenie @@ -162,82 +134,66 @@ Utils::NewClassWidget - Invalid base class name Niepoprawna nazwa klasy podstawowej - Invalid header file name: '%1' Niepoprawna nazwa pliku nagłówkowego: "%1" - Invalid source file name: '%1' Niepoprawna nazwa piku źródłowego: "%1" - Invalid form file name: '%1' Niepoprawna nazwa pliku z formularzem: "%1" - Inherits QObject Wywiedziony z QObject - None Brak - Inherits QWidget Wywiedziony z QWidget - &Class name: Nazwa &klasy: - &Base class: Klasa &podstawowa: - &Type information: Informacja o &typie: - Based on QSharedData Bazuje na QSharedData - &Header file: Plik &nagłówkowy: - &Source file: Plik ź&ródłowy: - &Generate form: Wy&generuj formularz: - &Form file: Plik z &formularzem: - &Path: Ś&cieżka: @@ -245,37 +201,30 @@ Utils::ProjectIntroPage - Introduction and project location Nazwa oraz położenie projektu - Name: Nazwa: - Create in: Utwórz w: - <Enter_Name> <Wprowadź nazwę> - The project already exists. Projekt już istnieje. - A file with that name already exists. Plik o tej samej nazwie już istnieje. - Use as default project location Ustaw jako domyślne położenie projektów @@ -283,17 +232,14 @@ Utils::SubmitEditorWidget - Subversion Submit Wyślij do Subversion - Des&cription &Opis - F&iles Pl&iki @@ -301,27 +247,22 @@ Core::Internal::NewDialog - New Project Nowy projekt - Choose a template: Wybierz szablon: - &Choose... &Wybierz... - Projects Projekty - Files and Classes Pliki i klasy @@ -329,12 +270,10 @@ OpenWithDialog - Open File With... Otwórz plik przy pomocy... - Open file extension with: Otwórz rozszerzenie pliku przy pomocy: @@ -342,17 +281,14 @@ SaveItemsDialog - Save Changes Zachowaj zmiany - The following files have unsaved changes: Następujące pliki posiadają niezachowane zmiany: - Automatically save all files before building Automatycznie zachowuj wszystkie pliki przed budowaniem @@ -360,102 +296,82 @@ Core::Internal::GeneralSettings - Reset to default Przywróć domyślne - R R - Terminal: Terminal: - External editor: Zewnętrzny edytor: - ? ? - When files are externally modified: W przypadku zewnętrznej modyfikacji plików: - General Ogólne - <System Language> <Język systemowy> - Restart required Wymagane ponowne uruchomienie - The language change will take effect after a restart of Qt Creator. Zmiana języka zostanie zastosowana przy ponownym uruchomieniu Qt Creatora. - Variables Zmienne - User Interface Interfejs użytkownika - Color: Kolor: - Language: Język: - System System - External file browser: Zewnętrzna przeglądarka plików: - Default file encoding: Domyślne kodowanie plików: - Always Ask Zawsze pytaj - Reload All Unchanged Editors Przeładuj wszystkie niezmienione edytory - Ignore Modifications Zignoruj modyfikacje @@ -463,95 +379,80 @@ PasteBinComSettingsWidget - Form Formularz - Server prefix: Przedrostek serwera: - <html><head/><body> <p><a href="http://pastebin.com">pastebin.com</a> allows to send posts to custom subdomains (eg. creator.pastebin.com). Fill in the desired prefix.</p> <p>Note that the plugin will use this for posting as well as fetching.</p></body></html> - + <html><head/><body> +<p><a href="http://pastebin.com">pastebin.com</a> pozwala wysyłać fragmenty kodu do własnych poddomen (np. creator.pastebin.com). Podaj przedrostek serwera.</p> +<p>Zwróć uwagę że wtyczka użyje go zarówno do wysyłania jak i odbierania fragmentów kodu.</p></body></html> CodePaster::PasteSelectDialog - Protocol: Protokół: - Paste: Wklej: - Refresh Odśwież - Waiting for items Oczekiwanie na elementy - This protocol does not support listing - Ten protokół nie obsługuje listowania + Ten protokół nie obsługuje wyświetlania zawartości ViewDialog - Send to Codepaster Wyślij do Codepaster - Protocol: Protokół: - &Username: Nazwa &użytkownika: - <Username> <Nazwa użytkownika> - &Description: &Opis: - <Description> <Opis> - Patch 1 Łata 1 - Patch 2 Łata 2 - <!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; } @@ -564,7 +465,6 @@ p, li { white-space: pre-wrap; } <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;Komentarz&gt;</span></p></body></html> - Parts to Send to Server Zawartość wysyłki do serwera @@ -572,27 +472,22 @@ p, li { white-space: pre-wrap; } CodePaster::SettingsPage - General Ogólne - Username: Nazwa użytkownika: - Default protocol: Domyślny protokół: - Display Output pane after sending a post Pokazuj panel z komunikatami po wysłaniu kodu - Copy-paste URL to clipboard Kopiuj i wklejaj URL do schowka @@ -600,53 +495,43 @@ p, li { white-space: pre-wrap; } CompletionSettingsPage - Automatically insert (, ) and ; when appropriate. Automatycznie wstawiaj (, ) i ; gdy należy. - &Automatically insert brackets &Automatycznie wstawiaj nawiasy - Insert the common prefix of available completion items. Wprowadź wspólny przedrostek dla istniejących elementów dopełnienia. - Autocomplete common &prefix Automatycznie dopełniaj wspólny &przedrostek - Behavior Zachowanie - &Case-sensitivity: Uwzględnianie &wielkości liter: - Full Pełne - None Brak - Insert &space after function name Wstawiaj &spację po nazwie funkcji - First Letter Tylko pierwsza litera @@ -654,22 +539,18 @@ p, li { white-space: pre-wrap; } CppFileSettingsPage - Header suffix: Rozszerzenie plików nagłówkowych: - Source suffix: Rozszerzenie plików źródłowych: - Lower case file names Tylko małe litery w nazwach plików - License template: Szablon z licencją: @@ -677,57 +558,46 @@ p, li { white-space: pre-wrap; } CVS::Internal::SettingsPage - CVS CVS - Configuration Konfiguracja - Miscellaneous Różne - Prompt on submit Pytaj przed wysłaniem zmian do serwera - Describe all files matching commit id Opisz wszystkie pliki pasujące do identyfikatora operacji - Timeout: Czas oczekiwania: - s s - CVS command: Komenda CVS: - CVS root: Korzeń CVS: - Diff options: Parametry różnicowania: - 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. Gdy zaznaczone, wszystkie pliki powiązane z bieżącą operacją zostaną wyświetlone po kliknięciu na numer poprawki w widoku adnotacji (uzyskane zostaną poprzez identyfikator operacji). W przeciwnym razie, wyświetlony będzie tylko określony plik. @@ -735,17 +605,14 @@ p, li { white-space: pre-wrap; } AttachCoreDialog - Start Debugger Uruchom debugger - Executable: Plik wykonywalny: - Core File: Plik zrzutu: @@ -753,12 +620,10 @@ p, li { white-space: pre-wrap; } AttachExternalDialog - Start Debugger Uruchom debugger - Attach to process ID: Dołącz do procesu o identyfikatorze: @@ -766,12 +631,10 @@ p, li { white-space: pre-wrap; } BreakByFunctionDialog - Set Breakpoint at Function Ustaw pułapkę w funkcji - Function to break on: Funkcja w której przerwać: @@ -779,12 +642,10 @@ p, li { white-space: pre-wrap; } BreakCondition - Condition: Warunek: - Ignore count: Licznik pominięć: @@ -792,122 +653,103 @@ p, li { white-space: pre-wrap; } CdbOptionsPageWidget - These options take effect at the next start of Qt Creator. Te opcje zostaną zastosowanie po ponownym uruchomieniu Qt Creatora. - Path: Ścieżka: - Debugger Paths Ścieżki debuggera - Symbol paths: Ścieżki do symboli: - Source paths: Ścieżki do źródeł: - <html><body><p>Specify the path to the <a href="%1">Debugging Tools for Windows</a> (%2) here.</p><p><b>Note:</b> Restarting Qt Creator is required for these settings to take effect.</p></p></body></html> Label text for path configuration. %2 is "x-bit version". - <html><body><p>Określ tutaj ścieżkę do <a href="%1">Narzędzi debugowania dla Windows</a> (%2).</p><p><b>Uwaga:</b> żeby zmiany odniosły skutek, konieczne jest ponowne uruchomienie programu.</p></p></body></html> + <html><body><p>Określ tutaj ścieżkę do <a href="%1">Narzędzi debugowania dla Windows</a> (%2).</p><p><b>Uwaga:</b> żeby zmiany odniosły skutek, konieczne jest ponowne uruchomienie programu.</p></p></body></html> - 64-bit version - Wersja 64 bitowa + Wersja 64 bitowa - 32-bit version - Wersja 32 bitowa + Wersja 32 bitowa - CDB Placeholder CDB - Other Options Inne opcje - Verbose symbol loading Gadatliwe ładowania symboli + + Fast loading of debugging helpers + Szybkie ładowanie asystentów debuggera + CommonOptionsPage - Checking this will populate the source file view automatically but might slow down debugger startup considerably. Ustawienie tej opcji spowoduje automatyczne wypełnianie widoku pliku źródłowego lecz może znacznie spowolnić uruchamianie debuggera. - Populate source file view automatically Wypełniaj automatycznie widok pliku źródłowego - Use alternating row colors in debug views Używaj alternatywnych kolorów wierszy w widokach debugowych - Use tooltips in main editor while debugging Używaj podpowiedzi w głównym edytorze podczas debugowania - Maximal stack depth: Maksymalna głębokość stosu: - <unlimited> <nieograniczony> - Language Język - Changes the debugger language according to the currently opened file. Zmienia język debuggera odpowiednio do zawartości otwartego pliku. - Change debugger language automatically Automatycznie zmieniaj język debuggera - Register Qt Creator for debugging crashed applications. Zarejestruj Qt Creatora do debugowania aplikacji zakończonych błędem. - GUI Behavior Zachowanie GUI - Use Qt Creator for post-mortem debugging Używaj Creatora do pośmiertnego debugowania @@ -915,32 +757,26 @@ p, li { white-space: pre-wrap; } DebuggingHelperOptionPage - Use debugging helper from custom location Użyj asystenta debuggera z innego położenia - Location: Położenie: - Debug debugging helper Debuguj asystenta debuggera - Makes use of Qt Creator's code model to find out if a variable has already been assigned a value at the point the debugger interrupts. - Korzysta z modelu kodu Qt Creator'a w celu zbadania czy wartość została już przypisana do zmiennej w chwili przerwania debuggera. + Korzysta z modelu kodu Qt Creatora w celu zbadania czy wartość została już przypisana do zmiennej w chwili przerwania debuggera. - Use code model Używaj modelu kodu - <html><head/><body> <p>The debugging helper is only used to produce a nice display of objects of certain types like QString or std::map in the &quot;Locals and Watchers&quot; view.</p> <p> It is not strictly necessary for debugging with Qt Creator. </p></body></html> @@ -949,7 +785,6 @@ p, li { white-space: pre-wrap; } <p>Nie jest on niezbędny do debugowania w Qt Creatorze.</p></body></html> - Use Debugging Helper Używaj asystenta debuggera @@ -957,47 +792,38 @@ p, li { white-space: pre-wrap; } GdbOptionsPage - Environment: Środowisko: - This is either empty or points to a file containing gdb commands that will be executed immediately after gdb starts up. Może wskazywać plik zawierający komendy gdb które będą wykonane zaraz po uruchomieniu gdb. - Gdb startup script: Skrypt startowy gdb: - This is the slowest but safest option. To jest najwolniejsza ale i zarazem najbezpieczniejsza opcja. - Try to set breakpoints in plugins always automatically. Zawsze próbuj automatycznie ustawiać pułapki we wtyczkach. - Try to set breakpoints in selected plugins Próbuj ustawiać pułapki w wybranych wtyczkach - Matching regular expression: pasujących do wyrażeń regularnych: - Never set breakpoints in plugins automatically Nigdy automatycznie nie ustawiaj pułapek we wtyczkach - When this option is checked, the debugger plugin attempts to extract full path information for all source files from gdb. This is a slow process but enables setting breakpoints in files with the same file @@ -1008,17 +834,14 @@ ale umożliwia ustawianie pułapek w plikach o tych samych nazwach leżących w różnych katalogach. - Use full path information to set breakpoints Używaj informacji o pełnych ścieżkach do ustawiania pułapek - Gdb timeout: Czas oczekiwania: - This is the number of seconds Qt Creator will wait before it terminates non-responsive gdb process. The default value of 20 seconds should be sufficient for most applications, but there are situations when @@ -1031,17 +854,14 @@ bibliotek o dużych rozmiarach lub wyświetlanie plików źródłowych zajmie du czasu na powolnych maszynach. W takich przypadkach wartość ta powinna zostać zwiększona. - Gdb Gdb - Enable reverse debugging Włącz debugowanie wsteczne - When this option is checked, 'Step Into' compresses several steps into one in certain situations, leading to 'less noisy' debugging. So will, e.g., the atomic reference counting code be skipped, and a single 'Step Into' for a signal emission will end up directly in the slot connected to it. Kiedy ta opcja jest zaznaczona "Wskocz do wnętrza" kompresuje w pewnych sytuacjach @@ -1050,17 +870,14 @@ kod atomowego licznika referencji będzie pominięty, a pojedyncze "Wskocz dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. - Skip known frames when stepping Pomijaj znane kroki - Show a message box when receiving a signal Pokazuj komunikat po otrzymaniu sygnału - Behavior of Breakpoint Setting in Plugins Ustawianie pułapek we wtyczkach @@ -1068,22 +885,18 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. StartExternalDialog - Start Debugger Uruchom debugger - Executable: Plik wykonywalny: - Arguments: Argumenty: - Break at 'main': Przerwij w "main": @@ -1091,85 +904,69 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. StartRemoteDialog - Start Debugger Uruchom debugger - Host and port: Host i port: - Architecture: Architektura: - Use server start script: Użyj startowego skryptu serwera: - Server start script: Startowy skrypt serwera: - Debugger: Debugger: - Local executable: Lokalny plik wykonywalny: - Sysroot: - + Główny katalog systemu: Designer::Internal::CppSettingsPageWidget - Form Formularz - Embedding of the UI Class Osadzanie klas UI - Aggregation as a pointer member Agregacja poprzez wskaźnik do składnika - Aggregation Agregacja - Code Generation Generowanie kodu - Support for changing languages at runtime Obsługa zmian języków w trakcie wykonywania programu - Use Qt module name in #include-directive Używaj nazwy modułu Qt w dyrektywach #include - Multiple inheritance Dziedziczenie wielokrotne @@ -1177,22 +974,18 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Designer::Internal::FormClassWizardPage - Class Klasa - Configure... Konfiguruj... - %1 - Error %1 - Błąd - Choose a Class Name Podaj nazwę klasy @@ -1200,140 +993,117 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. FakeVimOptionPage - Use FakeVim Używaj FakeVim - Shift width: Szerokość przesunięcia: - vim's "tabstop" option - Opcja "tabstop" Vim'a + Opcja "tabstop" Vima - Tabulator size: Rozmiar tabulatorów: - Backspace: Cofnięcie: - Read .vimrc Odczytuj .vimrc - Vim Behavior - Zachowanie Vim'a + Zachowanie Vima - Automatic indentation Automatyczne wcięcia - Start of line Początek linii - Smart indentation Inteligentne wcięcia - Use search dialog Używaj dialogu wyszukiwania - Expand tabulators Rozwijaj tabulatory - Smart tabulators Inteligentne tabulatory - Highlight search results Podświetlaj wyniki poszukiwań - Incremental search Wyszukiwanie przyrostowe - Keyword characters: Znaki słów kluczowych: - Copy Text Editor Settings Skopiuj ustawienia edytora tekstu - Set Qt Style Ustaw styl Qt - Set Plain Style Ustaw zwykły styl + + Show position of text marks + Pokazuj znaczniki + Find::Internal::FindDialog - Search for... Wyszukaj... - Sc&ope: &Zakres: - &Search Wy&szukaj - Search &for: Wysz&ukaj: - Close Zamknij - &Case sensitive Uwzględniaj &wielkość liter - &Whole words only Tylko &całe słowa - Search && Replace Wyszukaj i zastąp @@ -1341,27 +1111,22 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Find::Internal::FindWidget - Find Znajdź - Find: Znajdź: - ... ... - Replace with: Zastąp: - All Wszystko @@ -1369,17 +1134,14 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. GenericMakeStep - Override %1: Zastąpienie %1: - Make arguments: Argumenty make'a: - Targets: Produkty docelowe: @@ -1387,77 +1149,62 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Git::Internal::BranchDialog - Branches Gałęzie - Checkout - + Kopia robocza - Diff Pokaż różnice - Refresh Odśwież - Delete... Usuń... - Delete Branch Usuń gałąź - Would you like to delete the branch '%1'? Czy chcesz usunąć gałąź "%1"? - Failed to delete branch Nie można usunąć gałęzi - Failed to create branch Nie można utworzyć gałęzi - Failed to stash Nie można odłożyć zmian - Checkout failed - + Błąd tworzenia kopii roboczej - Would you like to create a local branch '%1' tracking the remote branch '%2'? Czy chcesz utworzyć lokalną gałąź "%1" śledzącą zdalną gałąź "%2"? - Create branch Utwórz gałąź - Failed to create a tracking branch Nie można utworzyć gałęzi śledzącej - Remote Branches Zdalne gałęzie @@ -1465,17 +1212,14 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. ChangeSelectionDialog - Select Wybierz - Change: Zmiana: - Repository location: Położenie składnicy: @@ -1483,27 +1227,22 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Gitorious::Internal::GitoriousHostWidget - ... ... - <New Host> <Nowy Host> - Host Host - Projects Projekty - Description Opis @@ -1511,27 +1250,22 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Gitorious::Internal::GitoriousProjectWidget - WizardPage StronaKreatora - ... ... - Keep updating Odświeżaj - Project Projekt - Description Opis @@ -1539,57 +1273,46 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Gitorious::Internal::GitoriousRepositoryWizardPage - WizardPage StronaKreatora - Name Nazwa - Owner Właściciel - Description Opis - Repository Składnica - Choose a repository of the project '%1'. Wybierz składnicę dla projektu "%1". - Mainline Repositories Główne składnice - Clones Klony - Baseline Repositories Podstawowe składnice - Shared Project Repositories Współdzielone składnice - Personal Repositories Osobiste składnice @@ -1597,42 +1320,34 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Git::Internal::GitSubmitPanel - General Information Ogólne informacje - Repository: Składnica: - repository składnica - Branch: Gałąź: - branch gałąź - Commit Information - + Informacje o zmianie - Author: Autor: - Email: Email: @@ -1640,87 +1355,70 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. Git::Internal::SettingsPage - PATH: ŚCIEŻKA: - <b>Note:</b> <b>Uwaga:</b> - Git needs to find Perl in the environment as well. Git musi znaleźć również Perl w środowisku. - Log commit display count: - + Liczba wyświetlanych zmian w dzienniku: - Note that huge amount of commits might take some time. - + Zwróć uwagę że wyświetlanie dużej liczby zmian może zajmować sporo czasu. - Omit date from annotation output Pomijaj daty w wyjściowych adnotacjach - Git Git - Git Settings Ustawienia Git - Miscellaneous Różne - Timeout: Czas oczekiwania: - s s - Prompt on submit Pytaj przed wysłaniem zmian do serwera - Ignore whitespace changes in annotation Ignoruj zmiany w spacjach w adnotacjach - Use "patience diff" algorithm - + Używaj algorytmu "patience diff" - Pull with rebase - + Ciągnij z opcją "rebase" - Environment Variables Zmienne środowiskowe - From System Z systemu @@ -1728,22 +1426,18 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. DocSettingsPage - Registered Documentation Zarejestrowana dokumentacja - Add... Dodaj... - Remove Usuń - Add and remove compressed help files, .qch. Dodaje i usuwa skompresowane pliki pomocy .qch. @@ -1751,32 +1445,26 @@ dla emisji sygnału wskoczy bezpośrednio do podłączonego slotu. FilterSettingsPage - Filters Filtry - Attributes Atrybuty - 1 1 - Add Dodaj - Remove Usuń - <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. @@ -1790,107 +1478,86 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum GeneralSettingsPage - Form Formularz - Font Czcionka - Family: Rodzina: - Style: Styl: - Size: Rozmiar: - Startup Uruchamianie - On context help: Podręczna pomoc: - On help start: Po uruchomieniu pomocy: - Use &Current Page Użyj &bieżącej strony - Use &Blank Page Użyj &pustej strony - Restore to Default Przywróć domyślną - Help Bookmarks Zakładki pomocy - Import... Importuj... - Export... Eksportuj... - Home page: Strona startowa: - Show Side-by-Side if Possible Pokazuj z boku jeśli jest miejsce - Always Show Side-by-Side Zawsze pokazuj z boku - Always Start Full Help Zawsze zaczynaj od pełnej pomocy - Show My Home Page Pokazuj moją stronę startową - Show a Blank Page Pokazuj pustą stronę - Show My Tabs from Last Session Pokazuj moje karty z ostatniej sesji @@ -1898,12 +1565,10 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Perforce::Internal::ChangeNumberDialog - Change Number Numer zmiany - Change Number: Numer zmiany: @@ -1911,22 +1576,18 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Perforce::Internal::PendingChangesDialog - P4 Pending Changes Oczekujące zmiany P4 - Submit Wyślij - Cancel Anuluj - Change %1: %2 Zmiana %1: %2 @@ -1934,12 +1595,10 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Perforce::Internal::PromptDialog - Perforce Prompt Pytanie Perforce'a - OK OK @@ -1947,67 +1606,54 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Perforce::Internal::SettingsPage - Test Przetestuj - Perforce Perforce - Configuration Konfiguracja - Miscellaneous Różne - Timeout: Czas oczekiwania: - s s - Prompt on submit Pytaj przed wysłaniem zmian do serwera - Log count: Licznik dziennika: - P4 command: Komenda P4: - P4 client: Klient P4: - P4 user: Użytkownik P4: - P4 port: Port P4: - Environment Variables Zmienne środowiskowe @@ -2015,22 +1661,18 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Perforce::Internal::SubmitPanel - Submit Wyślij - Change: Zmiana: - Client: Klient: - User: Użytkownik: @@ -2038,7 +1680,6 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum ProjectExplorer::Internal::EditorSettingsPropertiesPage - Default file encoding: Domyślne kodowanie plików: @@ -2046,27 +1687,22 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum ProjectExplorer::Internal::ProcessStepWidget - Name: Nazwa: - Command: Komenda: - Enable custom process step Włącz własny krok procesu - Working directory: Katalog roboczy: - Command arguments: Argumenty komendy: @@ -2074,105 +1710,89 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum ProjectExplorer::Internal::ProjectExplorerSettingsPageUi - Build and Run Budowanie i uruchamianie - Use jom instead of nmake Używaj jom zamiast nmake - <i>jom</i> is a drop-in replacement for <i>nmake</i> which distributes the compilation process to multiple CPU cores. For more details, see the <a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a>. Disable it if you experience problems with your builds. - <i>jom</i> jest zamiennikiem <i>nmake</i> który dystrybuuje proces kompilacji do wielu rdzeni CPU. Szczegóły znajdziesz tu: <a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a>. Wyłącz tę opcję jeśli napotykasz na problemy podczas budowania. + <i>jom</i> jest zamiennikiem <i>nmake</i> który dystrybuuje proces kompilacji do wielu rdzeni CPU. Szczegóły znajdziesz tu: <a href="http://qt.gitorious.org/qt-labs/jom/">jom Homepage</a>. Wyłącz tę opcję jeśli napotykasz na problemy podczas budowania. - Projects Directory Katalog z projektami - Current directory Bieżący katalog - directoryButtonGroup grupaPrzyciskówKatalogu - Directory Katalog - Save all files before build Zachowuj wszystkie pliki przed budowaniem - Always build project before running Zawsze buduj projekt przed uruchomieniem - Show compiler output on building Pokazuj komunikaty kompilatora w trakcie budowania - Clear old application output on a new run Czyść wyjście aplikacji przed uruchomieniem + + <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="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Disable it if you experience problems with your builds. + <i>jom</i> jest zamiennikiem <i>nmake</i> który dystrybuuje proces kompilacji do wielu rdzeni procesora .Najnowsza wersja jest dostępna tu: <a href="ftp://ftp.qt.nokia.com/jom/">ftp://ftp.qt.nokia.com/jom/</a>. Wyłącz tę opcję jeśli doświadczasz problemów podczas budowania. + ProjectExplorer::Internal::ProjectWelcomePageWidget - Form Formularz - Manage Sessions... Zarządzanie sesjami... - %1 (last session) %1 (ostatnia sesja) - %1 (current session) %1 (bieżąca sesja) - New Project Nowy projekt - Recent Sessions Ostatnie sesje - Recent Projects Ostatnie projekty - Create Project... Utwórz projekt... - Open Project... Otwórz projekt... @@ -2180,7 +1800,6 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum ProjectWelcomePage - Form Formularz @@ -2188,12 +1807,10 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum ProjectExplorer::Internal::WizardPage - Project management Organizacja projektu - The following files will be added: @@ -2206,12 +1823,10 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum - Add to &project: Dodaj do &projektu: - Add to &version control: Dodaj do systemu kontroli &wersji: @@ -2219,22 +1834,18 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum ProjectExplorer::Internal::RemoveFileDialog - Remove File Usuń plik - File to remove: Plik do usunięcia: - &Delete file permanently &Skasuj plik bezpowrotnie - &Remove from Version Control &Usuń z systemu kontroli wersji @@ -2242,17 +1853,14 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum ProjectExplorer::Internal::RunSettingsPropertiesPage - + + - - - - Run configuration: Konfiguracja uruchamiania: @@ -2260,181 +1868,149 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum ProjectExplorer::Internal::SessionDialog - Session Manager Zarządzanie sesjami - <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">What is a Session?</a> - <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Co to jest sesja?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-quick-tour.html#session-management-in-qt-creator">Co to jest sesja?</a> - &New &Nowa sesja - &Rename Z&mień nazwę - C&lone S&klonuj - &Delete &Usuń - &Switch to &Przełącz sesję - - New session name Nazwa nowej sesji - Rename session Zmień nazwę sesji + + <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">What is a Session?</a> + <a href="qthelp://com.nokia.qtcreator/doc/creator-project-managing-sessions.html">Co to jest sesja?</a> + Qt4ProjectManager::Internal::ClassDefinition - Form Formularz - The header file Plik nagłówkowy - &Sources Źró&dła - Widget librar&y: &Biblioteka widżetów: - Widget project &file: Plik z &projektem widżetu: - Widget h&eader file: Plik na&główkowy widżetu: - The header file has to be specified in source code. Plik nagłówkowy musi wystąpić w kodzie źródłowym. - Widge&t source file: Plik źródłowy widże&tu: - Widget &base class: Klasa podsta&wowa widżetu: - QWidget QWidget - Plugin class &name: &Nazwa klasy wtyczki: - Plugin &header file: Plik &nagłówkowy wtyczki: - Plugin sou&rce file: Plik ź&ródłowy wtyczki: - Icon file: Plik z ikoną: - &Link library Dowiąż bib&liotekę - Create s&keleton Utwórz sz&kielet - Include pro&ject Dołącz pro&jekt - &Description &Opis - G&roup: &Grupa: - &Tooltip: &Podpowiedź: - W&hat's this: "&Co to jest": - The widget is a &container Widżet jest po&jemnikiem - Property defa&ults Dom&yślne wartości właściwości - dom&XML: dom&XML: - Select Icon Wybierz ikonę - Icon files (*.png *.ico *.jpg *.xpm *.tif *.svg) Pliki z ikonami (*.png *.ico *.jpg *.xpm *.tif *.svg) @@ -2442,47 +2018,38 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Qt4ProjectManager::Internal::CustomWidgetPluginWizardPage - WizardPage StronaKreatora - Plugin and Collection Class Information Informacje o wtyczce i o klasie z kolekcją - Specify the properties of the plugin library and the collection class. Podaj dane o wtyczce i o klasie z kolekcją. - Collection class: Klasa z kolekcją: - Collection header file: Plik nagłówkowy kolekcji: - Collection source file: Plik źródłowy kolekcji: - Plugin name: Nazwa wtyczki: - Resource file: Plik z zasobami: - icons.qrc icons.qrc @@ -2490,27 +2057,22 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Qt4ProjectManager::Internal::CustomWidgetWidgetsWizardPage - Custom Qt Widget Wizard Kreator własnych widżetów Qt - Custom Widget List Lista własnych widżetów - Widget &Classes: &Klasy widżetów: - Specify the list of custom widgets and their properties. Podaj listę własnych widżetów i ich właściwości. - ... ... @@ -2518,197 +2080,178 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Qt4ProjectManager::Internal::GettingStartedWelcomePageWidget - Form Formularz - Tutorials Samouczki - Did You Know? Czy wiesz że? - The Qt Creator User Interface Interfejs użytkownika Qt Creatora - + Building and Running an Example + Budowanie i uruchamianie przykładu + + Creating a Qt C++ Application Tworzenie aplikacji Qt C++ - + Creating a Mobile Application + Tworzenie aplikacji mobilnej + + Creating a Qt Quick Application Tworzenie aplikacji Qt Quick - - Choose an example... Wybierz przykład... - Copy Project to writable Location? Kopiować projekt do miejsca zapisywalnego? - <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>Projekt, który masz zamiar załadować, znajduje się w miejscu zabezpieczonym przed zapisem:</p><blockquote>%1</blockquote><p>Proszę wybrać miejsce z prawami do zapisu i kliknąć "Skopiuj projekt i otwórz", żeby załadować edytowalną kopię projektu lub kliknąć "Zostaw projekt i otwórz", żeby załadować projekt z miejsca, gdzie się obecnie znajduje.</p><p><b>Uwaga:</b> Nie będzie można zmienić lub skompilować projektu w bieżącej lokalizacji.</p> + <p>Projekt, który masz zamiar załadować, znajduje się w miejscu zabezpieczonym przed zapisem:</p><blockquote>%1</blockquote><p>Proszę wybrać miejsce z prawami do zapisu i kliknąć "Skopiuj projekt i otwórz", żeby załadować modyfikowalną kopię projektu lub kliknąć "Zostaw projekt i otwórz", żeby załadować projekt z miejsca, gdzie się obecnie znajduje.</p><p><b>Uwaga:</b> Nie będzie można zmienić lub skompilować projektu w bieżącej lokalizacji.</p> - &Location: &Położenie: - &Copy Project and Open S&kopiuj projekt i otwórz - &Keep Project and Open Po&zostaw projekt i otwórz - Warning Ostrzeżenie - The specified location already exists. Please specify a valid location. Podane położenie już istnieje. Podaj poprawne położenie. - New Project Nowy projekt - - Cmd Shortcut key Cmd - Alt Shortcut key Alt - Ctrl Shortcut key Ctrl - + If you add external libraries to your project, Qt Creator will automatically offer syntax highlighting and code completion. + Po dodaniu do projektu zewnętrznej biblioteki, Qt Creator automatycznie + Podświetlanie składni i uzupełnianie kodu zadziała automatycznie również dla zewnętrznych bibliotek dodanych do projektu. + + You can switch between Qt Creator's modes using <tt>Ctrl+number</tt>:<ul><li>1 - Welcome</li><li>2 - Edit</li><li>3 - Debug</li><li>4 - Projects</li><li>5 - Help</li></ul> - Możesz przełączać tryby Qt Creator'a używając <tt>Ctrl+liczba</tt>:<ul><li>1 - Powitanie</li><li>2 - Edycja</li><li>3 - Debugowanie</li><li>4 - Projekty</li><li>5 - Pomoc</li></ul> + Możesz przełączać tryby Qt Creator'a używając <tt>Ctrl+liczba</tt>:<ul><li>1 - Powitanie</li><li>2 - Edycja</li><li>3 - Debugowanie</li><li>4 - Projekty</li><li>5 - Pomoc</li></ul> - You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">build settings</a>. - Możesz dodawać własne kroki do procesu budowania w <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">ustawieniach budowania</a>. + Możesz dodawać własne kroki do procesu budowania w <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#build-settings">ustawieniach budowania</a>. - Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">dependencies</a> between projects. - W ramach sesji możesz dodać <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">zależności</a> pomiędzy projektami. + W ramach sesji możesz dodać <a href="qthelp://com.nokia.qtcreator/doc/creator-project-pane.html#dependencies">zależności</a> pomiędzy projektami. - You can show and hide the side bar using <tt>%1+0<tt>. Możesz pokazać lub schować boczny pasek używając <tt>%1+0<tt>. - You can fine tune the <tt>Find</tt> function by selecting &quot;Whole Words&quot; or &quot;Case Sensitive&quot;. Simply click on the icons on the right end of the line edit. Możesz wyregulować działanie funkcji <tt>Znajdź</tt> poprzez wybranie &quot;Tylko całe słowa&quot; lub &quot;Uwzględniaj wielkość liter&quot;. W tym celu naciśnij ikonę po prawej stronie pola edycyjnego. - If you add <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">external libraries</a>, Qt Creator will automatically offer syntax highlighting and code completion. - Dodając <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">zewnętrzne biblioteki</a>, Qt Creator automatycznie zaoferuje podświetlanie składni i uzupełnianie kodu. + Dodając <a href="qthelp://com.nokia.qtcreator/doc/creator-external-library-handling.html">zewnętrzne biblioteki</a>, Qt Creator automatycznie zaoferuje podświetlanie składni i uzupełnianie kodu. - The code completion is CamelCase-aware. For example, to complete <tt>namespaceUri</tt> you can just type <tt>nU</tt> and hit <tt>Ctrl+Space</tt>. Uzupełnianie kodu uwzględnia wielkie litery w środku nazw. Na przykład aby uzupełnić <tt>namespaceUri</tt> wystarczy że napiszesz <tt>nU</tt> i przyciśniesz <tt>Ctrl+spacja</tt>. - You can force code completion at any time using <tt>Ctrl+Space</tt>. W każdej chwili możesz wywołać uzupełnianie kodu naciskając <tt>Ctrl+spacja</tt>. - You can start Qt Creator with a session by calling <tt>qtcreator &lt;sessionname&gt;</tt>. - Wywołując <tt>qtcreator &lt;nazwa_sesji&gt;</tt> możesz uruchomić Qt Creator z wybraną sesją. + Wywołując <tt>qtcreator &lt;nazwa_sesji&gt;</tt> możesz uruchomić Qt Creatora z wybraną sesją. - You can return to edit mode from any other mode at any time by hitting <tt>Escape</tt>. Możesz zawsze powrócić do trybu edycji z każdego innego trybu naciskając <tt>Escape</tt>. - You can switch between the output pane by hitting <tt>%1+n</tt> where n is the number denoted on the buttons at the window bottom:<ul><li>1 - Build Issues</li><li>2 - Search Results</li><li>3 - Application Output</li><li>4 - Compile Output</li></ul> Możesz przełączać panele wyjściowe naciskając <tt>%1+n</tt> gdzie n jest odpowiednim numerem na przycisku na dole okna:<ul><li>1 - Problemy podczas budowania</li><li>2 - Wyniki poszukiwań</li><li>3 - Komunikaty aplikacji</li><li>4 - Komunikaty kompilatora</li></ul> - You can quickly search methods, classes, help and more using the <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">Locator bar</a> (<tt>%1+K</tt>). Używając <a href="qthelp://com.nokia.qtcreator/doc/creator-navigation.html">lokalizatora</a> (<tt>%1+K</tt>) możesz szybko znaleźć metody, klasy, itd. lub przeszukać dokumentację. - + You can add custom build steps in the <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">build settings</a>. + Możesz dodawać własne kroki do procesu budowania w <a href="qthelp://com.nokia.qtcreator/doc/creator-build-settings.html">ustawieniach budowania</a>. + + + Within a session, you can add <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">dependencies</a> between projects. + W ramach sesji możesz dodać <a href="qthelp://com.nokia.qtcreator/doc/creator-build-dependencies.html">zależności</a> pomiędzy projektami. + + You can set the preferred editor encoding for every project in <tt>Projects -> Editor Settings -> Default Encoding</tt>. Możesz ustawić preferowane kodowanie dla wszystkich projektów w <tt>Projekty -> Ustawienia edytora -> Domyślne kodowanie plików</tt>. - You can use Qt Creator with a number of <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">revision control systems</a> such as Subversion, Perforce, CVS and Git. - Możesz używać Qt Creator'a z wieloma różnymi <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">systemami kontroli wersji</a> takimi jak Subversion, Perforce, CVS i Git. + Możesz używać Qt Creatora z wieloma różnymi <a href="qthelp://com.nokia.qtcreator/doc/creator-version-control.html">systemami kontroli wersji</a> takimi jak Subversion, Perforce, CVS i Git. - 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. Naciśnięcie w edytorze <tt>F2</tt> powoduje skok do definicji symbolu, <tt>Shift+F2</tt> przełącza między deklaracją a definicją, zaś <tt>F4</tt> przełącza między plikiem nagłówkowym a plikiem źródłowym. - Examples not installed... Przykłady nie są zainstalowane... - Create Project... Utwórz projekt... - Explore Qt C++ Examples Poznaj dogłębnie przykłady Qt C++ - Explore Qt Quick Examples Poznaj dogłębnie przykłady Qt Quick - Open Project... Otwórz projekt... @@ -2716,12 +2259,10 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum MakeStep - Override %1: Zastąpienie %1: - Make arguments: Argumenty make'a: @@ -2729,27 +2270,22 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum QMakeStep - Additional arguments: Dodatkowe argumenty: - Effective qmake call: Ostateczna komenda qmake: - qmake build configuration: Konfiguracja qmake: - Debug Debug - Release Release @@ -2757,37 +2293,30 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Qt4ProjectManager::Internal::S60DevicesPreferencePane - Form Formularz - Refresh Odśwież - S60 SDKs SDK S60 - Error Błąd - Add Dodaj - Change Qt version Zmień wersję Qt - Remove Usuń @@ -2795,83 +2324,67 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Qt4ProjectManager::Internal::Qt4ProjectConfigWidget - Manage Zarządzaj - <a href="import">Import existing build</a> <a href="import">Zaimportuj istniejącą wersję</a> - Shadow Build Directory Katalog kompilacji w innym miejscu - using <font color="#ff0000">invalid</font> Qt Version: <b>%1</b><br>%2 używa <font color="#ff0000">niepoprawnej</font> wersji Qt: <b>%1</b><br>%2 - No Qt Version found. Nie znaleziono żadnej wersji Qt. - using Qt version: <b>%1</b><br>with tool chain <b>%2</b><br>building in <b>%3</b> używa wersji: <b>%1</b><br>z zestawem narzędzi: <b>%2</b><br>zbudowane w: <b>%3</b> - General Ogólne - Building in subdirectories of the source directory is not supported by qmake. Budowanie wewnątrz katalogu ze źródłami nie jest obsługiwane przez qmake. - An incompatible build exists in %1, which will be overwritten. %1 build directory Niekompatybilna wersja w %1 będzie nadpisana. - problemLabel problematycznaEtykietka - Configuration name: Nazwa konfiguracji: - Qt version: Wersja Qt: - This Qt version is invalid. Ta wersja Qt nie jest poprawna. - Tool chain: Zestaw narzędzi: - Shadow build: Kompilacja w innym miejscu: - Build directory: Katalog wersji: @@ -2879,17 +2392,14 @@ Dodaj, zmodyfikuj lub usuń filtry dokumentów, które determinują zestaw dokum Qt4ProjectManager::Internal::QtVersionManager - + + - - - - <!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; } @@ -2902,67 +2412,54 @@ p, li { white-space: pre-wrap; } <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;">Nie można wykryć wersji MSVC.</span></p></body></html> - Show &Log Pokaż &dziennik - &Rebuild P&rzebuduj - Name Nazwa - Debugging Helper Asystent debuggera - S60 SDK: S60 SDK: - qmake Location Położenie qmake - Toolchain: Zestaw narzędzi: - Version name: Nazwa wersji: - qmake location: Położenie qmake: - MinGW directory: Katalog MinGW: - CSL/GCCE directory: Katalog CSL/GCCE: - Carbide directory: Katalog Carbide: - Debugging helper: Asystent debuggera: @@ -2970,7 +2467,6 @@ p, li { white-space: pre-wrap; } ShowBuildLog - Debugging Helper Build Log Dziennik kompilacji asystenta debuggera @@ -2978,62 +2474,50 @@ p, li { white-space: pre-wrap; } Subversion::Internal::SettingsPage - Authentication Autoryzacja - Password: Hasło: - Subversion Subversion - Configuration Konfiguracja - Miscellaneous Różne - Timeout: Czas oczekiwania: - s s - Prompt on submit Pytaj przed wysłaniem zmian do serwera - Ignore whitespace changes in annotation Ignoruj zmiany w spacjach w adnotacjach - Log count: Licznik dziennika: - Subversion command: Komenda Subversion: - Username: Nazwa użytkownika: @@ -3041,142 +2525,114 @@ p, li { white-space: pre-wrap; } TextEditor::BehaviorSettingsPage - Tabs and Indentation Tabulatory i wcięcia - Insert &spaces instead of tabs Wstawiaj &spacje zamiast tabulatorów - Enable automatic &indentation Włącz automatyczne wc&ięcia - Backspace will go back one indentation level instead of one space. Klawisz "Backspace" skasuje spacje aż do poprzedniego wcięcia zamiast jednej spacji. - &Backspace follows indentation Klawisz "&Backspace" podąża za wcięciami - Ta&b size: Rozmiar ta&bulatorów: - &Indent size: Rozmiar wc&ięć: - Tab key performs auto-indent: Klawisz "Tab" wykonuje automatyczne wcięcia: - Never Nigdy - Always Zawsze - Storage Składowanie - Removes trailing whitespace on saving. Usuwa białe znaki na końcu linii podczas zachowywania. - &Clean whitespace Wy&czyść białe znaki - Clean whitespace in entire document instead of only for changed parts. Wyczyść białe znaki w całym dokumencie zamiast tylko w zmienionych częściach. - In entire &document W całym &dokumencie - Correct leading whitespace according to tab settings. Popraw białe znaki stosownie do ustawień tabulatorów. - Clean indentation Wyczyść wcięcia - &Ensure newline at end of file Wstawiaj znak now&ej linii na końcu pliku - Automatically determine based on the nearest indented line (previous line preferred over next line) Określa automatycznie wzorując się na najbliższej wciętej linii (poprzednia linia preferowana nad następną) - Based on the surrounding lines Wzorując się na sąsiednich liniach - Mouse Mysz - Enable &mouse navigation Włącz nawigację &myszy - Enable scroll &wheel zooming Włącz powiększanie poprzez obracanie &kółkiem myszy (wraz z przyciśniętym CTRL) - Block indentation style: Styl wcięć blokowych: - Exclude Braces Nie uwzględniaj nawiasów - Include Braces Uwzględniaj nawiasy - GNU Style Styl GNU - In Leading White Space Jeśli poprzedzony jest spacją @@ -3184,32 +2640,26 @@ p, li { white-space: pre-wrap; } TextEditor::Internal::ColorSchemeEdit - Bold Pogrubiony - Italic Kursywa - Background: Kolor tła: - Foreground: Kolor pierwszoplanowy: - Erase background Wyczyść tło - x x @@ -3217,72 +2667,58 @@ p, li { white-space: pre-wrap; } TextEditor::DisplaySettingsPage - Display Wyświetlanie - Display line &numbers Wyświetlaj &numery linii - Highlight current &line Podświetlaj bieżącą &linię - Display &folding markers Wyświetlaj znaczniki &składania bloków - Highlight &blocks Podświetlaj &bloki - Show tabs and spaces. Pokazuj tabulatory i spacje. - &Visualize whitespace Pokazuj &białe znaki - Text Wrapping Zawijanie tekstu - Enable text &wrapping Włącz za&wijanie tekstu - Display right &margin at column: Wyświetlaj prawy &margines w kolumnie: - Mark &text changes Zaznaczaj zmiany w &tekście - &Animate matching parentheses Pokazuj &animację pasujących nawiasów - Auto-fold first &comment Zwijaj automatycznie początkowy &komentarz - Center &cursor on scroll Wyśrodkowuj przy &przewijaniu @@ -3290,47 +2726,38 @@ p, li { white-space: pre-wrap; } TextEditor::Internal::FontSettingsPage - Font Czcionka - Family: Rodzina: - Size: Rozmiar: - Antialias Antyaliasing - Color Scheme Schemat kolorów - Copy... Kopiuj... - Delete Usuń - % % - Zoom: Powiększenie: @@ -3338,17 +2765,14 @@ p, li { white-space: pre-wrap; } VCSBase::BaseCheckoutWizardPage - WizardPage StronaKreatora - Checkout Directory: Katalog z kopią roboczą: - Path: Ścieżka: @@ -3356,7 +2780,6 @@ p, li { white-space: pre-wrap; } NickNameDialog - Nick Names Przydomki @@ -3364,57 +2787,50 @@ p, li { white-space: pre-wrap; } Welcome::Internal::CommunityWelcomePageWidget - Form Formularz - News From the Qt Labs Nowiny z Qt Labs - <b>Forum Nokia</b><br /><font color='gray'>Mobile Application Support</font> <b>Forum Nokii</b><br /><font color='gray'>Wsparcie techniczne dla mobilnych aplikacji</font> - <b>Qt LGPL Support</b><br /><font color='gray'>Buy professional Qt support</font> + <b>Wsparcie techniczne Qt LGPL</b><br /><font color='gray'>Kup profesjonalne wsparcie techniczne Qt</font> + + + <b>Qt LGPL Support</b><br /><font color='gray'>Buy commercial Qt support</font> <b>Wsparcie techniczne Qt LGPL</b><br /><font color='gray'>Kup profesjonalne wsparcie techniczne Qt</font> - <b>Qt Centre</b><br /><font color='gray'>Community based Qt support</font> <b>Qt Centre</b><br /><font color='gray'>Społeczne wsparcie techniczne Qt</font> - <b>Qt Home</b><br /><font color='gray'>Qt by Nokia on the web</font> <b>Strona domowa Qt</b><br /><font color='gray'>Strona domowa Qt / Nokia</font> - <b>Qt Git Hosting</b><br /><font color='gray'>Participate in Qt development</font> <b>Składnica Git dla Qt</b><br /><font color='gray'>Weź udział w rozwoju Qt</font> - <b>Qt Apps</b><br /><font color='gray'>Find free Qt-based apps</font> <b>Aplikacje Qt</b><br /><font color='gray'>Znajdź darmowe aplikacje bazujące na Qt</font> - http://labs.trolltech.com/blogs/feed http://labs.trolltech.com/blogs/feed - Qt Support Sites Strony wsparcia technicznego Qt - Qt Links Strony o Qt @@ -3422,7 +2838,6 @@ p, li { white-space: pre-wrap; } Welcome::WelcomeMode - #headerFrame { border-image: url(:/welcome/images/center_frame_header.png) 0; border-width: 0; @@ -3435,17 +2850,14 @@ p, li { white-space: pre-wrap; } - Help us make Qt Creator even better Pomóż nam ulepszyć Qt Creatora - Feedback Wyraź opinię - Welcome Powitanie @@ -3453,46 +2865,34 @@ p, li { white-space: pre-wrap; } BookmarkDialog - Add Bookmark Dodaj zakładkę - Bookmark: Zakładka: - Add in Folder: Dodaj w katalogu: - + + - New Folder Nowy katalog - - - - - Bookmarks Zakładki - Delete Folder Usuń katalog - Rename Folder Zmień nazwę katalogu @@ -3500,12 +2900,10 @@ p, li { white-space: pre-wrap; } FilterNameDialogClass - Add Filter Name Dodaj nazwę filtra - Filter Name: Nazwa filtra: @@ -3513,27 +2911,22 @@ p, li { white-space: pre-wrap; } TopicChooser - Choose Topic Wybierz temat - &Topics &Tematy - &Display &Wyświetl - &Close &Zamknij - Choose a topic for <b>%1</b>: Wybierz temat dla <b>%1</b>: @@ -3541,32 +2934,26 @@ p, li { white-space: pre-wrap; } QrcEditor - Add Dodaj - Remove Usuń - Properties Właściwości - Prefix: Przedrostek: - Language: Język: - Alias: Alias: @@ -3574,22 +2961,18 @@ p, li { white-space: pre-wrap; } Application - Failed to load core: %1 Nie można załadować zrzutu: %1 - Unable to send command line arguments to the already running instance. It appears to be not responding. Nie można wysłać argumentów do uruchomionego programu. Wygląda na to, że program nie odpowiada. - Could not find 'Core.pluginspec' in %1 Nie można odnaleźć "Core.pluginspec" w %1 - Qt Creator - Plugin loader messages Qt Creator - komunikaty ładowania wtyczek @@ -3597,9 +2980,6 @@ p, li { white-space: pre-wrap; } MyMain - - - N/A Niedostępne @@ -3607,12 +2987,10 @@ p, li { white-space: pre-wrap; } CPlusPlus::OverviewModel - <Select Symbol> <Wybierz symbol> - <No Symbols> <Brak symbolu> @@ -3620,24 +2998,18 @@ p, li { white-space: pre-wrap; } PluginManager - - The plugin '%1' does not exist. Wtyczka "%1" nie istnieje. - Unknown option %1 Nieznana opcja %1 - The option %1 requires an argument. Opcja %1 wymaga argumentu. - - Failed Plugins Niezaładowane wtyczki @@ -3645,82 +3017,66 @@ p, li { white-space: pre-wrap; } ExtensionSystem::PluginErrorView - Invalid Niepoprawna - Description file found, but error on read Plik z opisem został znaleziony lecz wystąpił błąd podczas czytania - Read Wczytana - Description successfully read Opis pomyślnie wczytany - Resolved Rozwiązana - Dependencies are successfully resolved Zależności zostały pomyślnie rozwiązane - Loaded Załadowana - Library is loaded Biblioteka załadowana - Initialized Zainicjalizowana - Plugin's initialization method succeeded Inicjalizacja wtyczki zakończona pomyślnie - Running Uruchomiona - Plugin successfully loaded and running Wtyczka pomyślnie załadowana i uruchomiona - Stopped Zatrzymana - Plugin was shut down Wtyczka została zamknięta - Deleted Usunięta - Plugin ended its life cycle and was deleted Wtyczka zakończyła działanie i została usunięta @@ -3728,27 +3084,22 @@ p, li { white-space: pre-wrap; } ExtensionSystem::PluginManager - Circular dependency detected: Wykryto cykliczną zależność: - %1(%2) depends on %1(%2) zależy od - %1(%2) %1(%2) - - Cannot load plugin because dependency failed to load: %1(%2) Reason: %3 Nie można załadować wtyczki ponieważ załadowanie zależności: %1(%2) zakończyło sie niepowodzeniem @@ -3758,17 +3109,14 @@ Przyczyna: %3 ExtensionSystem::Internal::PluginSpecPrivate - File does not exist: %1 Plik %1 nie istnieje - Could not open file for read: %1 Nie można otworzyć pliku %1 do zapisu - Error parsing file %1: %2, at line %3, column %4 Błąd przetwarzania pliku %1: %2, w linii %3, w kolumnie %4 @@ -3776,77 +3124,62 @@ Przyczyna: %3 PluginSpec - '%1' misses attribute '%2' Brak atrybutu "%2" w "%1" - '%1' has invalid format "%1" posiada niepoprawny format - Invalid element '%1' Niepoprawny element "%1" - Unexpected closing element '%1' Nieoczekiwany element domykający "%1" - Unexpected token Nieoczekiwany znak - Expected element '%1' as top level element Oczekiwano elementu "%1" jako elementu głównego - Resolving dependencies failed because state != Read Nie udało się rozwiązać zależności ponieważ stan wtyczki jest inny niż "wczytana" - Could not resolve dependency '%1(%2)' Nie można rozwiązać zależności "%1(%2)" - Loading the library failed because state != Resolved Błąd ładowania biblioteki, stan wtyczki jest inny niż "rozwiązana" - Plugin is not valid (does not derive from IPlugin) Wtyczka jest niepoprawna (nie jest wywiedziona z IPlugin) - Initializing the plugin failed because state != Loaded Błąd inicjalizacji wtyczki, jej stan jest inny niż "załadowana" - Internal error: have no plugin instance to initialize Błąd wewnętrzny: brak wtyczki do zainicjalizowania - Plugin initialization failed: %1 Błąd inicjalizacji wtyczki: %1 - Cannot perform extensionsInitialized because state != Initialized Nie można wykonać extensionsInitialized bo stan wtyczki jest inny niż "zainicjowana" - Internal error: have no plugin instance to perform extensionsInitialized Błąd wewnętrzny: brak instancji wtyczki potrzebnej do wykonania extensionsInitialized @@ -3854,27 +3187,22 @@ Przyczyna: %3 PluginDialog - Details Szczegóły - Error Details Szczegóły błędów - Installed Plugins Zainstalowane wtyczki - Plugin Details of %1 Szczegóły wtyczki %1 - Plugin Errors of %1 Błędy wtyczki %1 @@ -3882,17 +3210,14 @@ Przyczyna: %3 Utils::ClassNameValidatingLineEdit - The class name must not contain namespace delimiters. Nazwa klasy nie może zawierać separatorów przestrzeni nazw. - Please enter a class name. Wprowadź nazwę klasy. - The class name contains invalid characters. Nazwa klasy zawiera niepoprawne znaki. @@ -3900,62 +3225,50 @@ Przyczyna: %3 Utils::ConsoleProcess - Cannot set up communication channel: %1 Nie można ustawić kanału komunikacyjnego: %1 - Press <RETURN> to close this window... Naciśnij <RETURN> aby zamknąć to okno... - Cannot create temporary file: %1 Nie można utworzyć tymczasowego pliku: %1 - Cannot create temporary directory '%1': %2 Nie można utworzyć tymczasowego katalogu "%1": %2 - Unexpected output from helper program. Nieoczekiwany komunikat od programu pomocniczego. - Cannot change to working directory '%1': %2 Nie można zmienić katalogu roboczego na '%1': %2 - Cannot execute '%1': %2 Nie można uruchomić "%1": %2 - Cannot start the terminal emulator '%1'. Nie można uruchomić emulatora terminala "%1". - Cannot create socket '%1': %2 Nie można utworzyć gniazda "%1": %2 - The process '%1' could not be started: %2 Proces "%1" nie może zostać rozpoczęty: %2 - Cannot obtain a handle to the inferior: %1 Nie otrzymano uchwytu do podprocesu: %1 - Cannot obtain exit status from inferior: %1 Nie otrzymano kodu wyjściowego podprocesu: %1 @@ -3963,7 +3276,6 @@ Przyczyna: %3 Utils::DetailsButton - Details Szczegóły @@ -3971,35 +3283,29 @@ Przyczyna: %3 Utils::FileNameValidatingLineEdit - Name is empty. - Nazwa jest pusta. + Nazwa jest pusta. - Name contains white space. - Nazwa zawiera spacje. + Nazwa zawiera spacje. - Invalid character '%1'. - Niepoprawny znak: "%1". + Niepoprawny znak: "%1". - Invalid characters '%1'. - Niepoprawne znaki: "%1". + Niepoprawne znaki: "%1". - Name matches MS Windows device. (%1). - Nazwa pasuje do urządzenia MS Windows. (%1). + Nazwa pasuje do urządzenia MS Windows. (%1). Utils::FileSearch - %1: canceled. %n occurrences found in %2 files. %1: anulowano. Znaleziono %n wystąpienie w %2 plikach. @@ -4008,7 +3314,6 @@ Przyczyna: %3 - %1: %n occurrences found in %2 files. %1: anulowano. Znaleziono %n wystąpienie w %2 plikach. @@ -4017,7 +3322,6 @@ Przyczyna: %3 - %1: %n occurrences found in %2 of %3 files. %1: anulowano. Znaleziono %n wystąpienie w %2 z %3 plików. @@ -4029,47 +3333,38 @@ Przyczyna: %3 Utils::PathChooser - Choose... Wybierz... - Browse... Przeglądaj... - Choose Directory Wybierz katalog - Choose File - The path must not be empty. Ścieżka nie może być pusta. - The path '%1' does not exist. Ścieżka "%1" nie istnieje. - The path '%1' is not a directory. "%1" nie jest katalogiem. - The path '%1' is not a file. "%1" nie jest plikiem. - Path: Ścieżka: @@ -4077,27 +3372,22 @@ Przyczyna: %3 Utils::PathListEditor - Insert... Wstaw... - Add... Dodaj... - Delete Line Usuń linię - Clear Wyczyść - From "%1" Z "%1" @@ -4105,7 +3395,6 @@ Przyczyna: %3 Utils::ProjectNameValidatingLineEdit - Invalid character '.'. Niepoprawny znak: "." (kropka). @@ -4113,30 +3402,33 @@ Przyczyna: %3 Utils::reloadPrompt - File Changed Plik został zmieniony - + The unsaved file <i>%1</i> has been changed outside Qt Creator. Do you want to reload it and discard your changes? + Niezachowany plik <i>%1</i> został zmieniony na zewnątrz Qt Creatora. Czy chcesz go ponownie załadować tracąc swoje zmiany? + + + The file <i>%1</i> has changed outside Qt Creator. Do you want to reload it? + Plik <i>%1</i> został zmieniony na zewnątrz Qt Creatora. Czy chcesz go ponownie załadować? + + The unsaved file %1 has been changed outside Qt Creator. Do you want to reload it and discard your changes? - Niezachowany plik %1 został zmieniony na zewnątrz Qt Creatora. Czy chcesz go ponownie załadować tracąc swoje zmiany? + Niezachowany plik %1 został zmieniony na zewnątrz Qt Creatora. Czy chcesz go ponownie załadować tracąc swoje zmiany? - The file %1 has changed outside Qt Creator. Do you want to reload it? - Plik %1 został zmieniony na zewnątrz Qt Creatora. Czy chcesz go ponownie załadować? + Plik %1 został zmieniony na zewnątrz Qt Creatora. Czy chcesz go ponownie załadować? BINEditor::Internal::BinEditorPlugin - &Undo &Cofnij - &Redo &Przywróć @@ -4144,28 +3436,22 @@ Przyczyna: %3 Bookmarks::Internal::BookmarkView - - Bookmarks Zakładki - Move Up Przenieś do góry - Move Down Przenieś na dół - &Remove &Usuń - Remove All Usuń wszystko @@ -4173,63 +3459,50 @@ Przyczyna: %3 Bookmarks::Internal::BookmarksPlugin - &Bookmarks &Zakładki - - Toggle Bookmark Przełącz ustawienie zakładki - Ctrl+M Ctrl+M - Meta+M Meta+M - Previous Bookmark Poprzednia zakładka - Ctrl+, Ctrl+, - Meta+, Meta+, - Next Bookmark Następna zakładka - Ctrl+. Ctrl+. - Meta+. Meta+. - Previous Bookmark in Document Poprzednia zakładka w dokumencie - Next Bookmark in Document Następna zakładka w dokumencie @@ -4237,7 +3510,6 @@ Przyczyna: %3 CMakeProjectManager::Internal::CMakeOpenProjectWizard - CMake Wizard Kreator CMake @@ -4245,12 +3517,10 @@ Przyczyna: %3 CMakeProjectManager::Internal::InSourceBuildPage - 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 wykrył wersję zbudowaną <b>wewnątrz %1</b> co uniemożliwia zbudowanie wersji na zewnątrz. Qt Creator nie umożliwia zmiany katalogu wersji. Jeśli chcesz zbudować wersję na zewnątrz, wyczyść katalog ze źródłami i otwórz ponownie projekt. - Build Location Położenie wersji @@ -4258,22 +3528,18 @@ Przyczyna: %3 CMakeProjectManager::Internal::ShadowBuildPage - Please enter the directory in which you want to build your project. Podaj katalog w którym chcesz zbudować swój projekt. - 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. Podaj katalog w którym chcesz zbudować swój projekt. Zaleca się aby nie budować projektu w katalogu ze źródłami. Dzięki temu katalog ze źródłami pozostaje czysty i możliwe jest zbudowanie wielu wersji z różnymi ustawieniami na podstawie tych samych źródeł. - Build directory: Katalog wersji: - Build Location Położenie wersji @@ -4281,78 +3547,62 @@ Przyczyna: %3 CMakeProjectManager::Internal::CMakeRunPage - Please specify the path to the cmake executable. No cmake executable was found in the path. Podaj ścieżkę do programu cmake. Programu cmake nie wykryto w ścieżce. - The cmake executable (%1) does not exist. Program cmake (%1) nie istnieje. - The path %1 is not a executable. Ścieżka %1 nie wskazuje na plik wykonywalny. - The path %1 is not a valid cmake. Ścieżka %1 nie pokazuje na poprawny program cmake. - - Run CMake Uruchom CMake - Arguments Argumenty - The directory %1 already contains a cbp file, which is recent enough. You can pass special arguments or change the used toolchain here and rerun cmake. Or simply finish the wizard directly Katalog %1 zawiera już uaktualniony plik cbp. Możesz przekazać specjalne argumenty lub zmienić istniejący zestaw narzędzi i ponownie uruchomić cmake. Możesz również bezpośrednio zakończyć kreatora. - The directory %1 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. Katalog %1 nie zawiera pliku cbp. Qt Creator wymaga utworzenia go poprzez uruchomienie cmake. Niektóre projekty wymagają dodatkowych argumentów w komendzie 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. Katalog %1 zawiera nieaktualny plik cbp. Qt Creator wymaga uaktualnienia go poprzez uruchomienie cmake. Poniżej podaj dodatkowe argumenty dla komendy cmake. Zwróć uwagę że cmake zapamiętuje argumenty komendy z ostatniego uruchomienia. - 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. Katalog %1 podany w konfiguracji budowania nie zawiera pliku cbp. Qt Creator wymaga utworzenia go poprzez uruchomienie cmake. Niektóre projekty wymagają dodatkowych argumentów w komendzie cmake. Zwróć uwagę że cmake zapamiętuje argumenty komendy z ostatniego uruchomienia. - Qt Creator needs to run cmake in the new build directory. Some projects require command line arguments to the initial cmake call. Qt Creator wymaga uruchomienia cmake w nowym katalogu budowania. Niektóre projekty wymagają dodatkowych argumentów w komendzie cmake. - NMake Generator Generator NMake - NMake Generator (%1) Generator NMake (%1) - MinGW Generator Generator MinGW - No valid cmake executable specified. Brak poprawnego pliku wykonywalnego cmake. @@ -4360,17 +3610,14 @@ Przyczyna: %3 CMakeProjectManager::Internal::CMakeBuildConfigurationFactory - Build Budowanie - New configuration Nowa konfiguracja - New Configuration Name: Nazwa nowej konfiguracji: @@ -4378,7 +3625,6 @@ Przyczyna: %3 CMakeProjectManager::Internal::CMakeBuildSettingsWidget - &Change &Zmień @@ -4386,12 +3632,10 @@ Przyczyna: %3 CMakeProjectManager::Internal::CMakeSettingsPage - CMake CMake - Executable: Plik wykonywalny: @@ -4399,47 +3643,38 @@ Przyczyna: %3 CMakeProjectManager::Internal::CMakeRunConfigurationWidget - Arguments: Argumenty: - Select Working Directory Wybierz katalog roboczy - Reset to default Przywróć domyślny - Working Directory: Katalog roboczy: - Run Environment Środowisko uruchamiania - Base environment for this runconfiguration: Podstawowe środowisko dla tej konfiguracji uruchamiania: - Clean Environment Czyste środowisko - System Environment Środowisko systemowe - Build Environment Środowisko budowania @@ -4447,28 +3682,23 @@ Przyczyna: %3 CMakeProjectManager::Internal::MakeStepConfigWidget - Additional arguments: Dodatkowe argumenty: - Targets: Produkty docelowe: - Make CMakeProjectManager::MakeStepConfigWidget display name. Make - <b>Make:</b> %1 %2 <b>Make:</b> %1 %2 - <b>Unknown Toolchain</b> <b>Nieznany zestaw narzędzi</b> @@ -4476,63 +3706,48 @@ Przyczyna: %3 Core::BaseFileWizard - Unable to create the directory %1. Nie można utworzyć katalogu %1. - Unable to open %1 for writing: %2 Nie można otworzyć %1 do zapisu: %2 - Error while writing to %1: %2 Błąd podczas zapisywania do %1: %2 - - - - File Generation Failure Błąd w trakcie generowania pliku - - Existing files Istniejące pliki - Failed to open an editor for '%1'. Nie można otworzyć edytora dla "%1". - [read only] [tylko do odczytu] - [directory] [katalog] - [symbolic link] [dowiązanie symboliczne] - The project directory %1 contains files which cannot be overwritten: %2. Katalog projektu %1 zawiera pliki które nie moga być nadpisane: %2. - The following files already exist in the directory %1: %2. Would you like to overwrite them? @@ -4544,7 +3759,6 @@ Czy chcesz je nadpisać? Core::StandardFileWizard - New %1 Nowy %1 @@ -4552,52 +3766,42 @@ Czy chcesz je nadpisać? OpenWith::Editors - Plain Text Editor Zwykły edytor tekstowy - Binary Editor Edytor binarny - C++ Editor Edytor C++ - .pro File Editor Edytor plików .pro - .files Editor Edytor plików .files - QMLJS Editor Edytor QMLJS - .qmlproject Editor Edytor plików .qmlproject - Qt Designer Qt Designer - Qt Linguist Qt Linguist - Resource Editor Edytor zasobów @@ -4605,7 +3809,6 @@ Czy chcesz je nadpisać? Core::Internal::OpenWithDialog - Open file '%1' with: Otwórz plik "%1" przy pomocy: @@ -4613,22 +3816,18 @@ Czy chcesz je nadpisać? Core::Internal::SaveItemsDialog - Do not Save Nie zachowuj - Save All Zachowaj wszystko - Save Zachowaj - Save Selected Zachowaj zaznaczone @@ -4636,12 +3835,10 @@ Czy chcesz je nadpisać? Core::Internal::SettingsDialog - Preferences Ustawienia - Options Opcje @@ -4649,38 +3846,30 @@ Czy chcesz je nadpisać? Core::Internal::ShortcutSettings - Keyboard Klawisze - Keyboard Shortcuts Skróty klawiszowe - Key sequence: Sekwencja klawiszy: - Shortcut Skrót - Import Keyboard Mapping Scheme Zaimportuj schemat mapowania klawiatury - - Keyboard Mapping Scheme (*.kms) Schemat mapowania klawiatury (*.kms) - Export Keyboard Mapping Scheme Wyeksportuj schemat mapowania klawiatury @@ -4688,7 +3877,6 @@ Czy chcesz je nadpisać? Core::Internal::EditMode - Edit Edycja @@ -4696,291 +3884,226 @@ Czy chcesz je nadpisać? Core::EditorManager - - Revert to Saved Odwróć zmiany - - - Close Zamknij - Close All Zamknij wszystko - - Close Others Zamknij inne - Next Open Document in History Następny otwarty dokument w historii - Previous Open Document in History Poprzedni otwarty dokument w historii - - Go Back Wstecz - - Go Forward W przód - Open in External Editor Otwórz w zewnętrznym edytorze - Revert File to Saved Odwróć zmiany w pliku - 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 - Meta+E Meta+E - Ctrl+E Ctrl+E - Split Podziel - %1,2 %1,2 - Split Side by Side Podziel sąsiadująco - %1,3 %1,3 - Remove Current Split Usuń bieżący podział - %1,0 %1,0 - Remove All Splits Usuń wszystkie podziały - %1,1 %1,1 - Go to Next Split Przejdź do kolejnego podzielonego okna - Save %1 &As... Zachowaj %1 j&ako... - %1,o %1,o - &Advanced Z&aawansowane - Alt+V,Alt+I Alt+V,Alt+I - All Files (*) Wszystkie pliki (*) - - Opening File Otwieranie pliku - Cannot open file %1! Nie można otworzyć pliku %1! - File is Read Only Plik tylko do odczytu - The file %1 is read only. Plik %1 jest plikiem tylko do odczytu. - Open with VCS (%1) Otwórz przy pomocy VCS (%1) - - Make writable Uczyń plik zapisywalnym - Save as ... Zachowaj jako ... - - Failed! Niepomyślnie zakończone! - Could not open the file for editing with SCC. Nie udało się otworzyć pliku do edycji przez SCC. - Could not set permissions to writable. Nie można ustawić prawa do zapisu. - <b>Warning:</b> You are changing a read-only file. <b>Ostrzeżenie:</b> Zmieniasz plik który jest tylko do odczytu. - &Save %1 &Zachowaj %1 - Revert %1 to Saved Odwróć zmiany w %1 - Close %1 Zamknij %1 - Close All Except %1 Zamknij wszystko z wyjątkiem %1 - You will lose your current changes if you proceed reverting %1. Utracisz swoje bieżące zmiany w %1 jeśli potwierdzisz wykonanie tego polecenia. - Proceed Wykonaj - Cancel Anuluj - <table border=1 cellspacing=0 cellpadding=3><tr><th>Variable</th><th>Expands to</th></tr><tr><td>%f</td><td>file name</td></tr><tr><td>%l</td><td>current line number</td></tr><tr><td>%c</td><td>current column number</td></tr><tr><td>%x</td><td>editor's x position on screen</td></tr><tr><td>%y</td><td>editor's y position on screen</td></tr><tr><td>%w</td><td>editor's width in pixels</td></tr><tr><td>%h</td><td>editor's height in pixels</td></tr><tr><td>%W</td><td>editor's width in characters</td></tr><tr><td>%H</td><td>editor's height in characters</td></tr><tr><td>%%</td><td>%</td></tr></table> <table border=1 cellspacing=0 cellpadding=3><tr><th>Zmienna</th><th>Znaczenie</th></tr><tr><td>%f</td><td>nazwa pliku </td></tr><tr><td>%l</td><td>numer bieżącej linii</td></tr><tr><td>%c</td><td>numer bieżącej kolumny</td></tr><tr><td>%x</td><td>pozycja x edytora na ekranie</td></tr><tr><td>%y</td><td>pozycja y edytora na ekranie</td></tr><tr><td>%w</td><td>szerokość edytora w pikselach</td></tr><tr><td>%h</td><td>wysokość edytora w pikselach</td></tr><tr><td>%W</td><td>szerokość edytora w znakach</td></tr><tr><td>%H</td><td>wysokość edytora w znakach</td></tr><tr><td>%%</td><td>%</td></tr></table> @@ -4988,72 +4111,58 @@ Czy chcesz je nadpisać? Core::Internal::EditorSplitter - Split Left/Right Podziel lewo / prawo - Split Top/Bottom Podziel góra / dół - Unsplit Usuń podział - Default Splitter Layout Domyślne rozmieszczenie podziału - Save Current as Default Zachowaj bieżący jako domyślny - Restore Default Layout Przywróć domyślne rozmieszczenie - Previous Document Poprzedni dokument - Alt+Left Alt+Left - Next Document Następny dokument - Alt+Right Alt+Right - Previous Group Poprzednia grupa - Next Group Następna grupa - Move Document to Previous Group Przenieś dokument do poprzedniej grupy - Move Document to Next Group Przenieś dokument do następnej grupy @@ -5061,13 +4170,10 @@ Czy chcesz je nadpisać? Core::Internal::EditorView - - Placeholder Pojemnik - Close Zamknij @@ -5075,33 +4181,26 @@ Czy chcesz je nadpisać? Core::Internal::OpenEditorsWidget - - Open Documents Otwarte dokumenty - Close %1 Zamknij %1 - Close Editor Zamknij edytor - Close All Except %1 Zamknij wszystko oprócz %1 - Close Other Editors Zamknij pozostałe edytory - Close All Editors Zamknij wszystkie edytory @@ -5109,8 +4208,6 @@ Czy chcesz je nadpisać? Core::Internal::OpenEditorsWindow - - * * @@ -5118,32 +4215,26 @@ Czy chcesz je nadpisać? Core::FileManager - Cannot save file Nie można zachować pliku - Cannot save changes to '%1'. Do you want to continue and lose your changes? Nie można zachować zmian w "%1". Czy chcesz kontynuować tracąc przy tym swoje zmiany? - Overwrite? Nadpisać? - An item named '%1' already exists at this location. Do you want to overwrite it? Element o nazwie "%1" istnieje już w tym miejscu. Czy chcesz go nadpisać? - Save File As Zapisz plik jako - Open File Otwórz plik @@ -5151,193 +4242,151 @@ Czy chcesz je nadpisać? Core::Internal::MainWindow - Qt Creator Qt Creator - &File &Plik - &Edit &Edycja - &Tools &Narzędzia - &Window &Okno - &Help P&omoc - &New File or Project... &Nowy plik lub projekt... - &Open File or Project... &Otwórz plik lub projekt... - Open File &With... Otwórz plik &przy pomocy... - Recent &Files Ostatnie p&liki - - &Save &Zachowaj - - Save &As... Zachowaj j&ako... - - Ctrl+Shift+S Ctrl+Shift+S - Save A&ll Zachowaj &wszystko - &Print... &Drukuj... - E&xit Za&kończ - Ctrl+Q Ctrl+Q - - &Undo &Cofnij - - &Redo &Przywróć - Cu&t Wy&tnij - &Copy S&kopiuj - &Paste Wk&lej - &Select All Zaznacz &wszystko - &Go To Line... Przej&dź do linii... - Ctrl+L Ctrl+L - &Options... &Opcje... - Minimize Zminimalizuj - Zoom Powiększ - Show Sidebar Pokazuj boczny pasek - Full Screen Pełny ekran - &Views &Widoki - About &Qt Creator Informacje o &Qt Creator - About &Qt Creator... Informacje o &Qt Creator... - About &Plugins... Informacje o w&tyczkach... - New Title of dialog Nowy - Open Project - Otwórz projekt + Otwórz projekt - Settings... Ustawienia... @@ -5345,7 +4394,6 @@ Czy chcesz je nadpisać? Core::Internal::MessageOutputWindow - General Messages Komunikaty ogólne @@ -5353,7 +4401,6 @@ Czy chcesz je nadpisać? Core::ModeManager - Switch to <b>%1</b> mode Przejdź do trybu <b>%1</b> @@ -5361,17 +4408,14 @@ Czy chcesz je nadpisać? Core::Internal::NavigationWidget - Hide Sidebar Ukrywaj boczny pasek - Show Sidebar Pokazuj boczny pasek - Activate %1 Pane Uaktywnij panel %1 @@ -5379,12 +4423,10 @@ Czy chcesz je nadpisać? Core::Internal::NavigationSubWidget - Split Podziel - Close Zamknij @@ -5392,7 +4434,6 @@ Czy chcesz je nadpisać? Core::Internal::NavComboBox - Activate %1 Uaktywnij %1 @@ -5400,38 +4441,30 @@ Czy chcesz je nadpisać? Core::Internal::OutputPaneManager - Output Komunikaty - Clear Wyczyść - Next Item Następny element - Previous Item Poprzedni element - - Maximize Output Pane Zmaksymalizuj panel z komunikatami - Output &Panes &Panele z komunikatami - Minimize Output Pane Zminimalizuj panel z komunikatami @@ -5439,37 +4472,30 @@ Czy chcesz je nadpisać? Core::Internal::PluginDialog - Details Szczegóły - Error Details Szczegóły błędów - Close Zamknij - Restart required. Wymagane ponowne uruchomienie. - Installed Plugins Zainstalowane wtyczki - Plugin Details of %1 Szczegóły wtyczki %1 - Plugin Errors of %1 Błędy wtyczki %1 @@ -5477,7 +4503,6 @@ Czy chcesz je nadpisać? Core::Internal::ProgressView - Processes Procesy @@ -5485,14 +4510,12 @@ Czy chcesz je nadpisać? Core::ScriptManager - Exception at line %1: %2 %3 Wyjątek w linii %1: %2 %3 - Unknown error Nieznany błąd @@ -5500,12 +4523,10 @@ Czy chcesz je nadpisać? Core::Internal::SideBarWidget - Split Podziel - Close Zamknij @@ -5513,7 +4534,6 @@ Czy chcesz je nadpisać? Core::Internal::ComboBox - Activate %1 Uaktywnij %1 @@ -5521,12 +4541,10 @@ Czy chcesz je nadpisać? VCSManager - Version Control System kontroli wersji - Would you like to remove this file from the version control system (%1)? Note: This might remove the local file. Czy chcesz usunąć ten plik z systemu kontroli wersji (%1)? @@ -5536,23 +4554,19 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Core::Internal::VersionDialog - About Qt Creator Informacje o Qt Creator - (%1) (%1) - From revision %1<br/> This gets conditionally inserted as argument %8 into the description string. Z poprawki %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/> @@ -5560,17 +4574,14 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CodePaster::CodePasterProtocol - No Server defined in the CodePaster preferences. Nie podano serwera w ustawieniach CodePastera. - No Server defined in the CodePaster options. Nie podano serwera w opcjach CodePastera. - No such paste Nie ma takiego wycinka @@ -5578,17 +4589,14 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CodePaster::CodePasterSettingsPage - CodePaster CodePaster - Server: Serwer: - Note: Specify the host name for the CodePaster service without any protocol prepended (e.g. codepaster.mycompany.com). Uwaga: Podaj nazwę hosta dla serwisu CodePaster bez podawania protokołu (np. codepaster.mycompany.com). @@ -5596,37 +4604,30 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CodePaster::CodepasterPlugin - &Code Pasting Wklejanie &kodu - Paste Snippet... Wklej urywek... - Alt+C,Alt+P Alt+C,Alt+P - Paste Clipboard... Wklej zawartość schowka... - Fetch Snippet... Sprowadź urywek... - Alt+C,Alt+F Alt+C,Alt+F - Empty snippet received for "%1". Otrzymano pusty urywek dla "%1". @@ -5634,17 +4635,14 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppEditor::Internal::ClassNamePage - Enter Class Name Wprowadź nazwę klasy - The header and source file names will be derived from the class name Nazwy pliku nagłówkowego i źródłowego będą zaproponowane na podstawie nazwy klasy - Configure... Konfiguruj... @@ -5652,12 +4650,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppEditor::Internal::CppClassWizardDialog - C++ Class Wizard Kreator klasy C++ - Details Szczegóły @@ -5665,7 +4661,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppEditor::Internal::CppClassWizard - Error while generating file contents. Błąd podczas generowania zawartości. @@ -5673,22 +4668,22 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppEditor::Internal::CPPEditor - Sort alphabetically + Posortuj alfabetycznie + + + Sort Alphabetically Posortuj alfabetycznie - This change cannot be undone. Ta zmiana nie może być cofnięta. - Yes, I know what I am doing. Tak, wiem co robię. - Unused variable Nieużywana zmienna @@ -5696,70 +4691,57 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppEditor::Internal::CppHoverHandler - Unfiltered - Nieprzefiltrowane + Nieprzefiltrowane CppEditor::Internal::CppPlugin - Creates a C++ header and a source file for a new class that you can add to a C++ project. Tworzy plik nagłówkowy i źródłowy C++ z nową klasą którą można dodać do projektu C++. - Creates a C++ source file that you can add to a C++ project. Tworzy plik źródłowy C++ który można dodać do projektu C++. - Creates a C++ header file that you can add to a C++ project. Tworzy plik nagłówkowy C++ który można dodać do projektu C++. - C++ Header File Plik nagłówkowy C++ - Follow Symbol Under Cursor Podąż za symbolem pod kursorem - Switch Between Method Declaration/Definition Przełącz między deklaracją a definicją metody - Rename Symbol Under Cursor Zmień nazwę symbolu pod kursorem - Update Code Model Uaktualnij model kodu - C++ Source File Plik źródłowy C++ - C++ Class Klasa C++ - Find Usages Znajdź użycia - Ctrl+Shift+U Ctrl+Shift+U @@ -5767,7 +4749,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools::Internal::CompletionSettingsPage - Completion Uzupełnianie @@ -5775,7 +4756,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools::Internal::CppClassesFilter - Classes Klasy @@ -5783,7 +4763,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools::Internal::FunctionArgumentWidget - %1 of %2 %1 z %2 @@ -5791,7 +4770,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools::Internal::CppCurrentDocumentFilter - Methods in current Document Metody w bieżącym dokumencie @@ -5799,7 +4777,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools::Internal::CppFileSettingsWidget - /************************************************************************** ** Qt Creator license header template ** Special keywords: %USER% %DATE% %YEAR% @@ -5816,22 +4793,18 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. - Edit... Zmodyfikuj... - Choose Location for New License Template File Wybierz położenie nowego pliku z szablonem licencji - Template write error Błąd zapisywania szablonu - Cannot write to %1: %2 Nie można zapisać do %1: %2 @@ -5839,8 +4812,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools::Internal::CppFindReferences - - Searching Przeszukiwanie @@ -5848,7 +4819,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools::Internal::CppFunctionsFilter - Methods Metody @@ -5856,7 +4826,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppPreprocessor - %1: No such file or directory %1: Brak pliku lub katalogu @@ -5864,12 +4833,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools::Internal::CppModelManager - Scanning Skanowanie - Parsing Parsowanie @@ -5877,12 +4844,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools - File Naming Nazewnictwo plików - C++ C++ @@ -5890,12 +4855,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CppTools::Internal::CppToolsPlugin - &C++ &C++ - Switch Header/Source Przełącz między nagłówkiem a źródłem @@ -5903,12 +4866,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CVS::Internal::CheckoutWizard - Checks out a CVS repository and tries to load the contained project. Wyciąga składnicę CVS i próbuje załadować zawarty projekt. - CVS Checkout Kopia robocza CVS @@ -5916,17 +4877,14 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CVS::Internal::CheckoutWizardPage - Location Położenie - Specify repository and path. Podaj składnicę i ścieżkę. - Repository: Składnica: @@ -5934,289 +4892,237 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CVSPlugin - Cannot find repository for '%1' - Nie można odnaleźć składnicy dla "%1" + Nie można odnaleźć składnicy dla "%1" CVS::Internal::CVSPlugin - Parsing of the log output failed - Nie można przetworzyć komumikatów dziennika + Nie można przetworzyć komunikatów dziennika - &CVS &CVS - Add Dodaj - Add "%1" Dodaj "%1" - Alt+C,Alt+A Alt+C,Alt+A - Diff Project Pokaż różnice w projekcie - Diff Current File Pokaż różnice w bieżącym pliku - Diff "%1" Pokaż różnice w "%1" - Alt+C,Alt+D Alt+C,Alt+D - Commit All Files Wyślij wszystkie pliki - Commit Current File Wyślij bieżący plik - Commit "%1" Wyślij "%1" - Alt+C,Alt+C Alt+C,Alt+C - Filelog Current File Dziennik bieżącego pliku - + Cannot find repository for '%1' + Nie można odnaleźć składnicy dla "%1" + + Filelog "%1" Dziennik pliku "%1" - Annotate Current File Dołącz adnotację do bieżącego pliku - Annotate "%1" Dołącz adnotację do "%1" - Delete... Usuń... - Delete "%1"... Usuń "%1"... - Revert... Odwróć zmiany... - Revert "%1"... Odwróć zmiany w "%1"... - Diff Project "%1" Pokaż różnice w projekcie "%1" - Project Status Stan projektu - Status of Project "%1" Pokaż stan projektu "%1" - Log Project Pokaż dziennik projektu - Log Project "%1" Pokaż dziennik projektu "%1" - Update Project Uaktualnij projekt - Update Project "%1" Uaktualnij projekt "%1" - Repository Log Dziennik składnicy - Revert Repository... Odwróć zmiany w składnicy... - Commit Wyślij - Diff Selected Files Pokaż różnice w zaznaczonych plikach - &Undo &Cofnij - &Redo &Przywróć - Closing CVS Editor Zamykanie edytora CVS - Do you want to commit the change? Czy chcesz wysłać zmianę? - The commit message check failed. Do you want to commit the change? - The files do not differ. Pliki się nie różnią. - Revert repository Odwróć zmiany w składnicy - Would you like to revert all changes to the repository? Czy chcesz odwrócić wszystkie zmiany w składnicy? - Revert failed: %1 Nie można odwrócić zmian: %1 - The file has been changed. Do you want to revert it? Plik został zmieniony. Czy chcesz odwrócić w nim zmiany? - Another commit is currently being executed. Trwa inna wysyłka. - There are no modified files. Brak zmodyfikowanych plików. - Cannot create temporary file: %1 Nie można utworzyć tymczasowego pliku: %1 - Project status Stan projektu - The initial revision %1 cannot be described. Początkowa poprawka %1 nie może być opisana. - Could not find commits of id '%1' on %2. - + Nie można odnaleźć zmian o identyfikatorze "%1" dokonanych w dniu %2. - Executing: %1 %2 Wykonywanie: %1 %2 - Executing in %1: %2 %3 Wykonywanie w %1: %2 %3 - No cvs executable specified! Nie podano ścieżki do programu cvs! - The process terminated with exit code %1. Proces zakończył się kodem wyjściowym %1. - The process terminated abnormally. Proces niepoprawnie zakończony. - Could not start cvs '%1'. Please check your settings in the preferences. Nie można uruchomić cvs "%1". Sprawdź stosowne ustawienia. - CVS did not respond within timeout limit (%1 ms). CVS nie odpowiedział w określonym czasie (%1 ms). @@ -6224,17 +5130,14 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CVS::Internal::CVSSubmitEditor - Added Dodano - Removed Usunięto - Modified Zmodyfikowano @@ -6242,7 +5145,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CVS::Internal::SettingsPageWidget - CVS Command Komenda CVS @@ -6250,126 +5152,94 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::BreakHandler - - Marker File: - - Marker Line: - - Breakpoint Number: Numer pułapki: - - Breakpoint Address: Adres pułapki: - Property Właściwość - Requested Zażądano - Obtained Otrzymano - Internal Number: Numer wewnętrzny: - - File Name: Nazwa pliku: - - Function Name: Nazwa funkcji: - - Line Number: Numer linii: - Corrected Line Number: Numer poprawionej linii: - - Condition: Warunek: - - Ignore Count: Licznik pominięć: - Number Numer - Function Funkcja - File Plik - Line Linia - Condition Warunek - Ignore Zignoruj - Address Adres - Breakpoint will only be hit if this condition is met. Program przerwie działanie w pułapce tylko gdy ten warunek będzie spełniony. - Breakpoint will only be hit after being ignored so many times. Program przerwie działanie w pułapce po tym jak zostanie ona zignorowana podaną ilość razy. @@ -6377,102 +5247,82 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::BreakWindow - Breakpoints Pułapki - Delete Breakpoint Usuń pułapkę - Delete All Breakpoints Usuń wszystkie pułapki - Delete Breakpoints of "%1" Usuń pułapki w "%1" - Delete Breakpoints of File Usuń pułapki w pliku - Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents Zawsze wyrównuj szerokości kolumn do ich zawartości - Edit Condition... Zmodyfikuj warunek... - Synchronize Breakpoints Zsynchronizuj pułapki - Disable Selected Breakpoints Wyłącz zaznaczone pułapki - Enable Selected Breakpoints Włącz zaznaczone pułapki - Disable Breakpoint Wyłącz pułapkę - Enable Breakpoint Włącz pułapkę - Use Short Path Użyj skróconej ścieżki - Use Full Path Użyj pełnej ścieżki - Set Breakpoint at Function... Ustaw pułapkę w funkcji... - Set Breakpoint at Function "main" Ustaw pułapkę w funkcji "main" - Set Breakpoint at "throw" Ustaw pułapkę w "throw" - Set Breakpoint at "catch" Ustaw pułapkę w "catch" - Conditions on Breakpoint %1 Warunki dla pułapki %1 @@ -6480,154 +5330,123 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::CdbDebugEngine - The function "%1()" failed: %2 Function call failed Funkcja "%1()" zakończona niepowodzeniem: %2 - Version: %1 Wersja: %1 - <html>The installed version of the <i>Debugging Tools for Windows</i> (%1) is rather old. Upgrading to version %2 is recommended for the proper display of Qt's data types.</html> <html>Zainstalowana wersja <i>narzędzi debugowych dla Windows</i> (%1) jest przestarzała. Zalecane jest uaktualnienie do wersji %2 w celu poprawnego wyświetlania typów danych Qt.</html> - Debugger Debugger - The dumper library was not found at %1. Biblioteka zrzutów nie została znaleziona w %1. - The console stub process was unable to start '%1'. - Attaching to core files is not supported! Dołączanie się do pliku zrzutu nie jest obsługiwane! - The process exited with exit code %1. Proces zakończył się kodem wyjściowym %1. - Continuing with '%1'... Kontynuacja z "%1"... - Unable to continue: %1 Nie można kontynuować: %1 - Reverse stepping is not implemented. Kroczenie wstecz nie jest zaimplementowane. - Thread %1 cannot be stepped. Wątek %1 nie może być śledzony krok po kroku. - Stepping %1 Kroczenie %1 - Running requested... Zażądano uruchomienia... - Running up to %1:%2... Wykonanie do osiągnięcia %1:%2... - Running up to function '%1()'... Wykonanie do osiągnięcia funkcji '%1()'... - Jump to line is not implemented Skok do linii nie jest obsługiwany - Unable to assign the value '%1' to '%2': %3 Nie można podstawić wartości "%1" do "%2": %3 - Unable to retrieve %1 bytes of memory at 0x%2: %3 Nie można odczytać %1 bajtów pamięci spod adresu 0x%2: %3 - Cannot retrieve symbols while the debuggee is running. Nie można odczytać symboli dopóki debugowany program pracuje. - - Debugger Error Błąd debuggera - Ignoring initial breakpoint... Zignorowano początkową pułapkę... - Interrupted in thread %1, current thread: %2 Przerwano w wątku %1, bieżący wątek: %2 - Stopped, current thread: %1 Zatrzymano, bieżący wątek: %1 - Changing threads: %1 -> %2 Zmiana wątków: %1 -> %2 - Stopped at %1:%2 in thread %3. Zatrzymano w %1:%2 w wątku %3. - Stopped at %1 in thread %2 (missing debug information). Zatrzymano w %1 w wątku %2 (brak informacji debugowej). - Stopped at %1 (%2) in thread %3 (missing debug information). Zatrzymano w %1 (%2) w wątku %3 (brak informacji debugowej). - Stopped in thread %1 (missing debug information). Zatrzymano w wątku %1 (brak informacji debugowej). - Breakpoint: %1 Pułapka: %1 @@ -6635,57 +5454,46 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::CdbDumperHelper - injection wstrzyknięcie - debugger call wywołanie debuggera - Loading the custom dumper library '%1' (%2) ... - Loading of the custom dumper library '%1' (%2) failed: %3 - Loaded the custom dumper library '%1' (%2). - Stopped / Custom dumper library initialized. - The custom dumper library could not be initialized: %1 - The debuggee does not appear to be Qt application. Debugowany proces nie wygląda na aplikację Qt. - Initializing dumpers... - Disabling dumpers due to debuggee crash... - Querying dumpers for '%1'/'%2' (%3) @@ -6693,24 +5501,33 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::CdbOptionsPageWidget - + <html><body><p>Specify the path to the <a href="%1">Debugging Tools for Windows</a> (%2) here.</p><p><b>Note:</b> Restarting Qt Creator is required for these settings to take effect.</p></p></body></html> + Label text for path configuration. %2 is "x-bit version". + <html><body><p>Określ tutaj ścieżkę do <a href="%1">Narzędzi debugowania dla Windows</a> (%2).</p><p><b>Uwaga:</b> żeby zmiany odniosły skutek, konieczne jest ponowne uruchomienie programu.</p></p></body></html> + + + 64-bit version + Wersja 64 bitowa + + + 32-bit version + Wersja 32 bitowa + + Autodetect Wykryj automatycznie - "Debugging Tools for Windows" could not be found. "Narzędzia debugowe dla Windows" nie mogą zostać odnalezione. - Checked: %1 Sprawdzono w: %1 - Autodetection Automatyczne wykrywanie @@ -6718,17 +5535,14 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. CdbStackFrameContext - <Unknown Type> <Nieznany typ> - <Unknown Value> <Nieznana wartość> - <Unknown> <Nieznany> @@ -6736,7 +5550,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. SymbolGroup - Out of scope Poza zakresem @@ -6744,17 +5557,14 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::CdbSymbolPathListEditor - Symbol Server... Serwer z symbolami... - Adds the Microsoft symbol server providing symbols for operating system libraries.Requires specifying a local cache directory. Dodaje serwer z symbolami Microsoft dostarczający symboli dla bibliotek systemu operacyjnego. Wymaga podania katalogu dla lokalnego cache. - Pick a local cache directory Wybierz katalog z lokalnym cache @@ -6762,237 +5572,190 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::DebuggerSettings - 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. Przestawia debugger do trybu operowania na instrukcjach. W tym trybie kroczenie działa dla pojedynczych instrukcji i widok źródeł pokazuje również zdeasemblowane instrukcje. - 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. - + Włącza automatyczne wyłuskiwanie wskaźników w widoku ze zmiennymi lokalnymi i obserwowanymi. Brak jednego poziomu w widoku upraszcza go, ale jednocześnie powoduje utratę danych w brakującym poziomie pośrednim. - Debugger Properties... Właściwości debuggera... - Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents Zawsze wyrównuj szerokości kolumn do ich zawartości - Use Alternating Row Colors Używaj alternatywnych kolorów wierszy - Show a Message Box When Receiving a Signal Pokazuj komunikat po otrzymaniu sygnału - Log Time Stamps Notuj w dzienniku czas komunikatów - Verbose Log Gadatliwy dziennik - Operate by Instruction Operuj na instrukcjach - Dereference Pointers Automatically - + Wyłuskuj wskaźniki automatycznie - Watch Expression "%1" Obserwuj wyrażenie "%1" - Remove Watch Expression "%1" Usuń obserwowanie wyrażenia "%1" - Watch Expression "%1" in Separate Window Obserwuj wyrażenie "%1" w osobnym oknie - Show "std::" Namespace in Types Pokazuj przestrzeń nazw "std::" w widoku typów - Show Qt's Namespace in Types Pokazuj przestrzeń nazw Qt w widoku typów - Use Debugging Helpers Używaj asystenta debuggera - Debug Debugging Helpers Debuguj asystenta debuggera - Use Code Model Używaj modelu kodu - 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. - + Wybranie tej opcji spowoduje pobieranie informacji o zakresie zmiennych z modelu kodu C++. Może to przyspieszyć działanie debuggera lecz również może to spowodować niepoprawne działanie dla zoptymalizowanego kodu. - Recheck Debugging Helper Availability Sprawdź ponownie dostępność asystenta debuggera - Synchronize Breakpoints Zsynchronizuj pułapki - Use Precise Breakpoints Używaj dokładnych pułapek - 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. - + Wybranie tej opcji spowoduje synchronizację pułapek po każdym kroku. W rezultacie informacja o rozwiązaniu pułapek po załadowaniu dzielonych bibliotek będzie aktualizowana na bieżąco, ale kroki będą wykonywane w dłuższym czasie. - Break on "throw" Przerwij w "throw" - Break on "catch" Przerwij w "cache" - Automatically Quit Debugger Automatycznie zakańczaj debugger - Use tooltips in main editor when debugging Używaj podpowiedzi w głównym edytorze podczas debugowania - 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. Zaznaczenie tej opcji włączy podpowiedzi dla wartości zmiennych podczas debugowania. Domyślnie jest to wyłączone ponieważ może to spowalniać debugowanie i ponadto może dostarczać nieprawidłowych informacji jako że dane o zakresach nie są uwzględniane. - Use Tooltips in Locals View When Debugging Używaj podpowiedzi w widoku ze zmiennymi lokalnymi podczas debugowania - Use Tooltips in Breakpoints View When Debugging Używaj podpowiedzi w widoku z pułapkami podczas debugowania - Show Address Data in Breakpoints View When Debugging Pokazuj adresy w widoku z pułapkami podczas debugowania - Show Address Data in Stack View When Debugging Pokazuj adresy w widoku stosu podczas debugowania - List Source Files Pokaż listę plików - Skip Known Frames Pomijaj znane kroki - Selecting this results in well-known but usually not interesting frames belonging to reference counting and signal emission being skipped while single-stepping. - + Wybranie tej opcji spowoduje opuszczanie dobrze znanych kroków w kodzie licznika referencji i emisji sygnału. - Enable Reverse Debugging Włącz debugowanie wsteczne - Register For Post-Mortem Debugging Zarejestruj do pośmiertnego debugowania - Reload Full Stack Przeładuj cały stos - Create Full Backtrace - + Utwórz pełny zrzut stosu - Execute Line Wykonaj linię - Change debugger language automatically Automatycznie zmieniaj język debuggera - Changes the debugger language according to the currently opened file. Zmienia język debuggera odpowiednio do zawartości otwartego pliku. - Checking this will enable tooltips in the locals view during debugging. Zaznaczenie tej opcji włączy podpowiedzi w widoku ze zmiennymi lokalnymi podczas debugowania. - Checking this will enable tooltips in the breakpoints view during debugging. Zaznaczenie tej opcji włączy podpowiedzi w widoku z pułapkami podczas debugowania. - Checking this will show a column with address information in the breakpoint view during debugging. Zaznaczenie tej opcji spowoduje pokazanie kolumny z adresami w widoku z pułapkami podczas debugowania. - Checking this will show a column with address information in the stack view during debugging. Zaznaczenie tej opcji spowoduje pokazanie kolumny z adresami w widoku stosu podczas debugowania. @@ -7000,17 +5763,14 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::MemoryViewAgent - Memory $ Pamięć $ - No memory viewer available Brak dostępnej przeglądarki pamięci - The memory contents cannot be shown as no viewer plugin for binary data has been loaded. Zawartość pamięci nie może zostać pokazana ponieważ nie załadowano żadnej wtyczki z przeglądarką dla binarnego edytora. @@ -7018,40 +5778,115 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger - General Ogólne - Debugger Debugger - <Encoding error> <Błąd kodowania> + + Error Loading Symbols + Błąd w trakcie ładowania symboli + + + No executable to load symbols from specified. + Nie podano programu z którego można załadować symbole. + + + Symbols found. + Symbole odnalezione. + + + Loading symbols from "%1" failed: + + Nie można załadować symboli z "%1": + + + + Attached to core temporarily. + Tymczasowo dołączono do zrzutu. + + + Unable to determine executable from core file. + Nie można określić pliku wykonywalnego na podstawie zrzutu pamięci. + + + Attached to core. + Dołączono do zrzutu. + + + Attach to core "%1" failed: + + Dołączenie do zrzutu "%1" nie powiodło się: + + + Cannot set up communication with child process: %1 + Nie można ustanowić komunikacji z podprocesem: %1 + + + Starting executable failed: + + Nie można uruchomić programu: + + + + The upload process failed to start. Shell missing? + Nie można rozpocząć procesu przesyłania. Brak powłoki? + + + The upload process crashed some time after starting successfully. + Proces przesyłania zakończony błędem po poprawnym uruchomieniu. + + + The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. + Ostatnie wywołanie funkcji waitFor...() zakończyło się niepowodzeniem po określonym czasie. Stan QProcess się nie zmienił, możesz ponownie spróbować wywołać waitFor...(). + + + An error occurred when attempting to write to the upload process. For example, the process may not be running, or it may have closed its input channel. + Wystąpił błąd podczas próby pisania do procesu przesyłania. Być może proces nie jest uruchomiony lub zamknął on swój kanał wejściowy. + + + An error occurred when attempting to read from the upload process. For example, the process may not be running. + Wystąpił błąd podczas próby czytania z procesu przesyłania. Być może proces nie jest uruchomiony. + + + An unknown error in the upload process occurred. This is the default return value of error(). + Wystąpił nieznany błąd podczas procesu przesyłania. Jest to domyślna wartość zwrócona przez error(). + + + Error + Błąd + + + Starting remote executable failed: + + Uruchamianie zdalnego programu zakończone niepowodzeniem: + + + Debugger Error + Błąd debuggera + Debugger::Internal::AttachExternalDialog - Process ID Identyfikator procesu - Name Nazwa - State Stan - Refresh Odśwież @@ -7059,12 +5894,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::AttachCoreDialog - Select Executable Wybierz plik wykonywalny - Select Core File Wybierz plik zrzutu @@ -7072,17 +5905,14 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::StartExternalDialog - Select Executable Wybierz plik wykonywalny - Executable: Plik wykonywalny: - Arguments: Argumenty: @@ -7090,22 +5920,18 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::StartRemoteDialog - Select Debugger Wybierz debugger - Select Executable Wybierz plik wykonywalny - Select Sysroot - + Wskaż główny katalog systemu - Select Start Script Wybierz startowy skrypt @@ -7113,12 +5939,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::AddressDialog - Select start address Wybierz adres startowy - Enter an address: Podaj adres: @@ -7126,166 +5950,130 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::DebuggerManager - Continue Kontynuuj - - Interrupt Przerwij - Step Over Przeskocz - Step Into Wskocz do wnętrza - Step Out Wyskocz na zewnątrz - - Run to Line Uruchom do linii - Run to Outermost Function Uruchom do skrajnej funkcji - Immediately Return From Inner Function Powróć natychmiast z wewnętrznej funkcji - - Jump to Line Skocz do linii - Toggle Breakpoint Przełącz ustawienie pułapki - - Add to Watch Window Dodaj do okna obserwowanych - Snapshot Zrzut - Reverse Direction Odwrotny kierunek - Running... Uruchamianie... - Changing breakpoint state requires either a fully running or fully stopped application. Zmienianie stanu pułapki wymaga albo w pełni uruchomionej albo w pełni zatrzymanej aplikacji. - The application requires the debugger engine '%1', which is disabled. Program wymaga silnika debuggera '%1', który jest wyłączony. - Starting debugger for tool chain '%1'... Uruchamianie debuggera dla zestawu narzędzi '%1'... - Cannot debug '%1' (tool chain: '%2'): %3 Nie można debugować "%1" (zestaw narzędzi: "%2"): %3 - Warning Ostrzeżenie - Save Debugger Log Zachowaj dziennik debuggera - %1 (explicitly set in the Debugger Options) %1 (ustawione jawnie w opcjach debuggera) - Open Qt preferences Otwórz ustawienia Qt - Turn off helper usage Wyłącz asystenta - The debugger could not load the debugging helper library. Debugger nie mógł załadować biblioteki asystenta debuggera. - The debugging helper is used to nicely format the values of some Qt and Standard Library data types. It must be compiled for each used Qt version separately. This can be done in the Qt preferences page by selecting a Qt installation and clicking on 'Rebuild' in the 'Debugging Helper' row. Asystent debuggera jest używany do ładnego formatowania niektórych typów Qt i Biblioteki Standardowej. Musi być skompilowany oddzielnie dla każdej używanej wersji Qt. Można to zrobić z poziomu strony ustawień Qt poprzez wybranie instalacji Qt i kliknięcie na "Przebuduj" w linijce "Asystent debuggera". - Continue anyway Kontynuuj - Abort Debugging Przerwij debugowanie - Aborts debugging and resets the debugger to the initial state. Przerywa debugowanie i przywraca debugger do stanu początkowego. - Stopped Zatrzymano - Exited Zakończono - Debugging helper missing Brak asystenta debuggera - Stop Debugger Zatrzymaj debugger @@ -7293,12 +6081,10 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. DebuggerPane - Clear Contents Wyczyść zawartość - Save Contents Zachowaj zawartość @@ -7306,7 +6092,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. InputPane - Type Ctrl-<Return> to execute a line. Naciśnij Ctrl-<Return> aby wykonać linię. @@ -7314,7 +6099,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::DebuggerOutputWindow - Debugger Debugger @@ -7322,7 +6106,6 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::DebugMode - Debug Debugowanie @@ -7330,19 +6113,16 @@ Zwróć uwagę że spowoduje to usunięcie lokalnego pliku. Debugger::Internal::DebuggerListener - A debugging session is still in progress. Would you like to terminate it? Trwa sesja debugowa. Czy chcesz ją zakończyć? - Close Debugging Session Zakończ sesję debugową - A debugging session is still in progress. Terminating the session in the current state (%1) can leave the target in an inconsistent state. Would you still like to terminate it? Trwa sesja debugowa. Zakończenie jej w bieżącym stanie (%1) może spowodować, że program znajdzie się w niespójnym stanie. Czy wciąż chcesz ją zakończyć? @@ -7350,17 +6130,14 @@ Czy chcesz ją zakończyć? Debugger::Internal::DebuggingHelperOptionPage - Debugging Helper Asystent debuggera - Choose DebuggingHelper Location Wybierz położenie asystenta debuggera - Ctrl+Shift+F11 Ctrl+Shift+F11 @@ -7368,102 +6145,82 @@ Czy chcesz ją zakończyć? Debugger::Internal::DebuggerPlugin - Option '%1' is missing the parameter. Brak parametru w opcji "%1". - The parameter '%1' of option '%2' is not a number. Parametr "%1" w opcji "%2" nie jest liczbą. - Invalid debugger option: %1 Niepoprawna opcja debuggera: %1 - Error evaluating command line arguments: %1 Błąd podczas przetwarzania argumentów komendy: %1 - Start and Debug External Application... Uruchom i zdebuguj zewnętrzną aplikację... - Attach to Running External Application... Dołącz do uruchomionej zewnętrznej aplikacji... - Attach to Core... Dołącz do zrzutu... - Start and Attach to Remote Application... Uruchom i dołącz do zdalnej aplikacji... - Detach Debugger Odłącz debugger - Stop Debugger/Interrupt Debugger Zatrzymaj debugger / przerwij debugger - Reset Debugger Wyzeruj debugger - Threads: Wątki: - Attaching to PID %1. Dołączanie do PID %1. - Remove Breakpoint Usuń pułapkę - Disable Breakpoint Wyłącz pułapkę - Enable Breakpoint Włącz pułapkę - Set Breakpoint Ustaw pułapkę - Warning Ostrzeżenie - Cannot attach to PID 0 Nie można dołączyć się do PID 0 - Attaching to core %1. Dołączanie do zrzutu %1. @@ -7471,7 +6228,6 @@ Czy chcesz ją zakończyć? Debugger::Internal::DebuggerRunControlFactory - Debug Debug @@ -7479,7 +6235,6 @@ Czy chcesz ją zakończyć? Debugger::Internal::DebuggerRunControl - Debugger @@ -7487,36 +6242,30 @@ Czy chcesz ją zakończyć? Debugger::Internal::AbstractGdbAdapter - The Gdb process could not be stopped: %1 Nie można zatrzymać procesu gdb: %1 - Application process could not be stopped: %1 Nie można zatrzymać procesu aplikacji: %1 - Application started Uruchomiono aplikację - Application running Aplikacja uruchomiona - Attached to stopped application Dołączono do zatrzymanej aplikacji - Connecting to remote server failed: %1 Nie można połączyć się ze zdalnym serwerem: @@ -7526,225 +6275,176 @@ Czy chcesz ją zakończyć? Debugger::Internal::CoreGdbAdapter - - - Error Loading Symbols - Błąd w trakcie ładowania symboli + Błąd w trakcie ładowania symboli - No executable to load symbols from specified. - Nie podano programu z którego można załadować symbole. + Nie podano programu z którego można załadować symbole. - Loading symbols from "%1" failed: - Nie można załadować symboli z "%1": + Nie można załadować symboli z "%1": - Attached to core temporarily. - Tymczasowo dołączono do zrzutu. + Tymczasowo dołączono do zrzutu. - Unable to determine executable from core file. - Nie można określić pliku wykonywalnego na podstawie zrzutu pamięci. + Nie można określić pliku wykonywalnego na podstawie zrzutu pamięci. - Attach to core "%1" failed: - Dołączenie do zrzutu "%1" nie powiodło się: + Dołączenie do zrzutu "%1" nie powiodło się: - Symbols found. - Symbole odnalezione. + Symbole odnalezione. - Attached to core. - Dołączono do zrzutu. + Dołączono do zrzutu. Debugger::Internal::GdbEngine - The Gdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. Nie można rozpocząć procesu Gdb. Brak programu "%1" albo brak wymaganych uprawnień aby go uruchomić. - The Gdb process crashed some time after starting successfully. Proces Gdb zakończony błędem po poprawnym uruchomieniu. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. Ostatnie wywołanie funkcji waitFor...() zakończyło się niepowodzeniem po określonym czasie. Stan QProcess się nie zmienił, możesz ponownie spróbować wywołać waitFor...(). - An error occurred when attempting to write to the Gdb process. For example, the process may not be running, or it may have closed its input channel. Wystąpił błąd podczas próby pisania do procesu Gdb. Być może proces nie jest uruchomiony lub zamknął on swój kanał wejściowy. - An error occurred when attempting to read from the Gdb process. For example, the process may not be running. Wystąpił błąd podczas próby czytania z procesu Gdb. Być może proces nie jest uruchomiony. - An unknown error in the Gdb process occurred. Wystąpił nieznany błąd w procesie Gdb. - Thread group %1 created. - Utworzono grupę wątków %1. + Utworzono grupę wątków %1. - Reading %1... Wczytywanie %1... - Running... Uruchamianie... - Stop requested... Zażądano zatrzymania... - Stopping temporarily. Zatrzymywanie tymczasowe. - - - Executable failed Uruchomienie programu zakończone niepowodzeniem - Process failed to start. Nie można uruchomić procesu. - - Executable failed: %1 Uruchomienie programu zakończone niepowodzeniem: %1 - Jumped. Stopped. - Przeskoczono, Zatrzymano. + Przeskoczono, Zatrzymano. - Processing queued commands. - Przetwarzanie skolejkowanych komend. + Przetwarzanie kolejki komend. - Loading %1... Ładowanie %1... - <p>The inferior stopped because it received a signal from the Operating System.<p><table><tr><td>Signal name : </td><td>%1</td></tr><tr><td>Signal meaning : </td><td>%2</td></tr></table> <p>Podproces zatrzymany ponieważ otrzymał on sygnał z systemu operacyjnego.<p><table><tr><td>Nazwa sygnału: </td><td>%1</td></tr><tr><td>Znaczenie sygnału: </td><td>%2</td></tr></table> - Signal received Otrzymano sygnał - - Stopped. Zatrzymano. - Stopped: "%1" Zatrzymano: "%1" - The debugger you are using identifies itself as: - Debugger którego używasz identyfikuje się jako: + Debugger którego używasz identyfikuje się jako: - Continuing after temporary stop... Kontynuowanie po tymczasowym zatrzymaniu... - Running requested... Zażądano uruchomienia... - Step requested... - Step by instruction requested... - Finish function requested... Zażądano zakończenia funkcji... - Step next requested... - Step next instruction requested... - Run to line %1 requested... Zażądano wykonania do osiągnięcia linii %1... - Run to function %1 requested... Zażądano wykonania do osiągnięcia funkcji %1... - Unable to run '%1': %2 Nie można uruchomić "%1": %2 - - Retrieving data for stack view... Pobieranie danych dla widoku stosu... - Retrieving data for watch view (%n requests pending)... Pobieranie danych dla widoku ze zmiennymi obserwowanymi (%n oczekujące żądanie)... @@ -7753,7 +6453,6 @@ Czy chcesz ją zakończyć? - Dumper version %1, %n custom dumpers found. @@ -7762,22 +6461,18 @@ Czy chcesz ją zakończyć? - Debugging helpers not found. Brak asystentów debuggera. - Custom dumper setup: %1 - <0 items> <0 elementów> - <%n items> In string list @@ -7787,298 +6482,247 @@ Czy chcesz ją zakończyć? - <shadowed> <przykryto> - <n/a> <niedostępne> - <anonymous union> <anonimowa unia> - <no information> About variable's value <brak informacji> - - - - Disassembler failed: %1 Błąd deasemblera: %1 - Unable to start gdb '%1': %2 Nie można uruchomić gdb "%1": %2 - Gdb I/O Error Błąd wejścia / wyjścia Gdb - Unexpected Gdb Exit Nieoczekiwanie zakończenie Gdb - The gdb process exited unexpectedly (%1). Proces gdb nieoczekiwanie zakończył się (%1). - - Snapshot Creation Error Błąd tworzenia zrzutu - Cannot create snapshot file. Nie można utworzyć pliku ze zrzutem. - Cannot create snapshot: Nie można utworzyć zrzutu: - Snapshot Reloading Przeładowywanie zrzutu - In order to load snapshots the debugged process needs to be stopped. Continuation will not be possible afterwards. Do you want to stop the debugged process and load the selected snapshot? W celu załadowania zrzutów należy zatrzymać debugowany proces. Kontynuacja debugowania nie będzie wtedy możliwa. Czy chcesz zatrzymać debugowany proces i załadować wybrany zrzut? - Finished retrieving data Zakończono pobieranie danych - crashed zakończył pracę błędem - code %1 kod %1 - Adapter start failed Nie można uruchomić adaptera - Cannot find debugger initialization script Nie można odnaleźć skryptu inicjalizującego dla debuggera - Library %1 loaded Załadowano bibliotekę %1 - Library %1 unloaded Wyładowano bibliotekę %1 - + Thread group %1 created + Utworzono grupę wątków %1 + + Thread %1 created Utworzono wątek %1 - Thread group %1 exited Zakończono grupę wątków %1 - Thread %1 in group %2 exited Zakończono wątek %1 w grupie %2 - Thread %1 selected Wybrano wątek %1 - 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. Proces gdb nie odpowiedział na komendę po upływie %1 sekund. Może to oznaczać że utknął on w nieskończonej pętli lub możliwość odpowiedzenia zajmuje mu więcej czasu niż się spodziewano. Możesz poczekać dłużej na odpowiedź lub przerwać debugowanie. - Gdb not responding Gdb nie odpowiada - Give gdb more time Poczekaj dłużej na gdb - Stop debugging Zatrzymaj debugowanie - <unknown> <nieznany> - + Jumped. Stopped + Przeskoczono, Zatrzymano + + + Target line hit. Stopped + Osiągnięto linię docelową. Zatrzymano + + Application exited with exit code %1 Aplikacja zakończyła się kodem wyjściowym %1 - Application exited after receiving signal %1 Aplikacja zakończyła się po otrzymaniu sygnału %1 - Application exited normally Aplikacja zakończona prawidłowo - Stopped at breakpoint %1 in thread %2. Zatrzymano w pułapce %1 w wątku %2. - <Unknown> name nieznana - <Unknown> meaning nieznane - Stopped: %1 by signal %2 Zatrzymano: %1 przez sygnał %2 - 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 oficjalnie nie obsługuje tej wersji. + Qt Creator oficjalnie nie obsługuje tej wersji. Debugowanie najprawdopodobniej nie będzie działało poprawnie. Zaleca się użycie gdb wersji 7.1 lub późniejszej. - - - Execution Error Błąd uruchamiania - - - Cannot continue debugged process: Nie można kontynuować debugowanego procesu: - Failed to shut down application Nie można zamknąć aplikacji - There is no gdb binary available for '%1' Brak dostępnego pliku binarnego gdb dla "%1" - Launching Uruchamianie - Immediate return from function requested... Zażądano natychmiastowego powrotu z funkcji... - ATTEMPT BREAKPOINT SYNC PRÓBA SYNCHRONIZACJI PUŁAPEK - <unknown> address End address of loaded module nieznany - Jumping out of bogus frame... Wyskakiwanie z błędnej ramki... - Failed to start application: Nie można uruchomić aplikacji: - Failed to start application Nie można uruchomić aplikacji - The debugging helper library was not found at %1. Nie odnaleziono biblioteki asystenta debuggera w %1. - The debugger settings point to a script file at '%1' which is not accessible. If a script file is not needed, consider clearing that entry to avoid this warning. Ustawienia debuggera pokazują na skrypt w "%1" króry nie jest dostępny. Jeśli plik ze skryptem nie jest potrzebny rozważ usunięcie go z ustawień w celu uniknięcia tego ostrzeżenia. - - Setting breakpoints... Ustawianie pułapek... - Starting inferior... Uruchamianie podprocesu... - Adapter crashed Adapter zakończył pracę błędem @@ -8086,12 +6730,10 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::GdbOptionsPage - Gdb Gdb - Choose Location of Startup Script File Wybierz położenie pliku ze startowym skryptem @@ -8099,81 +6741,67 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::PlainGdbAdapter - Cannot set up communication with child process: %1 - Nie można ustanowić komunikacji z podprocesem: %1 + Nie można ustanowić komunikacji z podprocesem: %1 - Starting executable failed: - Nie można uruchomić programu: + Nie można uruchomić programu: Debugger::Internal::RemoteGdbAdapter - The upload process failed to start. Shell missing? - Nie można rozpocząć procesu upload. Brak powłoki? + Nie można rozpocząć procesu upload. Brak powłoki? - The upload process crashed some time after starting successfully. - Proces upload zakończony błędem po poprawnym uruchomieniu. + Proces upload zakończony błędem po poprawnym uruchomieniu. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. - Ostatnie wywołanie funkcji waitFor...() zakończyło się niepowodzeniem po określonym czasie. Stan QProcess się nie zmienił, możesz ponownie spróbować wywołać waitFor...(). + Ostatnie wywołanie funkcji waitFor...() zakończyło się niepowodzeniem po określonym czasie. Stan QProcess się nie zmienił, możesz ponownie spróbować wywołać waitFor...(). - An error occurred when attempting to write to the upload process. For example, the process may not be running, or it may have closed its input channel. - Wystąpił błąd podczas próby pisania do procesu upload. Być może proces nie jest uruchomiony lub zamknął on swój kanał wejściowy. + Wystąpił błąd podczas próby pisania do procesu upload. Być może proces nie jest uruchomiony lub zamknął on swój kanał wejściowy. - An error occurred when attempting to read from the upload process. For example, the process may not be running. - Wystąpił błąd podczas próby czytania z procesu upload. Być może proces nie jest uruchomiony. + Wystąpił błąd podczas próby czytania z procesu upload. Być może proces nie jest uruchomiony. - An unknown error in the upload process occurred. This is the default return value of error(). - Wystąpił nieznany błąd podczas procesu upload. Jest to domyślna wartość zwrócona przez error(). + Wystąpił nieznany błąd podczas procesu upload. Jest to domyślna wartość zwrócona przez error(). - Error - Błąd + Błąd - Starting remote executable failed: - Uruchamianie zdalnego programu zakończone niepowodzeniem: + Uruchamianie zdalnego programu zakończone niepowodzeniem: Debugger::Internal::TrkGdbAdapter - Port specification missing. Nie podano portu. - Unable to acquire a device on '%1'. It appears to be in use. Nie można pozyskać urządzenia na "%1". Wygląda że jest w użyciu. - Process started, PID: 0x%1, thread id: 0x%2, code segment: 0x%3, data segment: 0x%4. Proces uruchomiony, PID: 0x%1, identyfikator wątku: 0x%2, segment kodu: 0x%3, segment danych: 0x%4. - Connecting to TRK server adapter failed: Nie można połączyć się z adapterem serwera TRK: @@ -8183,32 +6811,26 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::ModulesModel - yes tak - no nie - Module name Nazwa modułu - Symbols read Przeczytane symbole - Start address Adres początkowy - End address Adres końcowy @@ -8216,82 +6838,66 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::ModulesWindow - Modules Moduły - Update Module List Uaktualnij listę modułów - Show Source Files for Module "%1" Pokaż źródłowe pliki modułu "%1" - Load Symbols for All Modules Załaduj symbole ze wszystkich modułów - Load Symbols for Module Załaduj symbole z modułu - Edit File Zmodyfikuj plik - Show Symbols Pokaż symbole - Load Symbols for Module "%1" Załaduj symbole z modułu "%1" - Edit File "%1" Zmodyfikuj plik "%1" - Show Symbols in File "%1" Pokaż symbole z pliku "%1" - Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents Zawsze wyrównuj szerokości kolumn do ich zawartości - Address Adres - Code Kod - Symbol Symbol - Symbols in "%1" Symbole w "%1" @@ -8299,183 +6905,130 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. NameDemanglerPrivate - Premature end of input Przedwczesny koniec danych wejściowych - Invalid encoding Niepoprawne kodowanie - Invalid name Niepoprawna nazwa - - Invalid nested-name Niepoprawna zagnieżdżona nazwa - - Invalid template args Niepoprawne argumenty szablonu - - Invalid template-param Niepoprawny parametr szablonu - Invalid qualifiers: unexpected 'volatile' Niepoprawne kwalifikatory: nieoczekiwany "volatile" - Invalid qualifiers: 'const' appears twice Niepoprawne kwalifikatory: "const" wystąpił dwukrotnie - Invalid non-negative number Niepoprawna liczba naturalna - - - Invalid template-arg Niepoprawny argument szablonu - - - Invalid expression Niepoprawnie wyrażenie - Invalid primary expression Niepoprawne wyrażenie główne - - - Invalid expr-primary - - - Invalid type Niepoprawny typ - Invalid built-in type Niepoprawny typ wbudowany - Invalid builtin-type Niepoprawny typ wbudowany - - Invalid function type Niepoprawny typ funkcji - - Invalid unqualified-name - Invalid operator-name '%s' - - Invalid array-type - Invalid pointer-to-member-type Niepoprawny wskaźnik do typu składnika - - - Invalid substitution Niepoprawne zastąpienie - Invalid substitution: element %1 was requested, but there are only %2 Niepoprawne zastąpienie: zażądano elementu %1 podczas gdy wszystkich elementów jest %2 - Invalid substitution: There are no elements Niepoprawne zastąpienie: brak elementów - Invalid special-name Niepoprawna nazwa specjalna - - - Invalid local-name Niepoprawna nazwa lokalna - Invalid discriminator - + Niepoprawny dyskryminator - - - Invalid ctor-dtor-name - + Niepoprawna nazwa konstruktora / destruktora - - Invalid call-offset - Invalid v-offset - Invalid digit Niepoprawna cyfra - At position %1: W miejscu %1: @@ -8483,17 +7036,14 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::OutputCollector - Cannot create temporary file: %1 Nie można utworzyć tymczasowego pliku: %1 - Cannot create FiFo %1: %2 Nie można utworzyć FiFo %1: %2 - Cannot open FiFo %1: %2 Nie można otworzyć FiFo %1: %2 @@ -8501,12 +7051,10 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::RegisterHandler - Name Nazwa - Value (base %1) Wartość (baza %1) @@ -8514,52 +7062,42 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::RegisterWindow - Registers Rejestry - Reload Register Listing Przeładuj listę rejestrów - Open Memory Editor Otwórz edytor pamięci - Open Memory Editor at %1 Otwórz edytor pamięci z adresem %1 - Hexadecimal Szesnastkowy - Decimal Dziesiętny - Octal Ósemkowy - Binary Binarny - Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents Zawsze wyrównuj szerokości kolumn do ich zawartości @@ -8567,32 +7105,26 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::ScriptEngine - Running requested... Zażądano uruchomienia... - '%1' contains no identifier "%1" nie zawiera identyfikatora - String literal %1 Stała znakowa %1 - Cowardly refusing to evaluate expression '%1' with potential side effects Celowa odmowa obliczenia wyrażenia '%1' z możliwymi efektami ubocznymi - Stopped at %1:%2. Zatrzymano w %1:%2. - Stopped. Zatrzymano. @@ -8600,12 +7132,10 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::SourceFilesModel - Internal name Nazwa wewnętrzna - Full name Pełna nazwa @@ -8613,22 +7143,18 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::SourceFilesWindow - Source Files Pliki źródłowe - Reload Data Przeładuj dane - Open File Otwórz plik - Open File "%1"' Otwórz plik "%1" @@ -8636,73 +7162,54 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::StackHandler - - Address: Adres: - - Function: Funkcja: - - File: Plik: - - Line: Linia: - - From: Od: - - To: Do: - ... ... - <More> <Więcej> - Level Poziom - Function Funkcja - File Plik - Line Linia - Address Adres @@ -8710,42 +7217,34 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::ThreadsHandler - Thread: %1 Wątek: %1 - Thread: %1 at %2 (0x%3) Wątek: %1 w %2 (0x%3) - Thread: %1 at %2, %3:%4 (0x%5) Wątek: %1 w %2, %3:%4 (0x%5) - Thread ID Identyfikator wątku - Function Funkcja - File Plik - Line Linia - Address Adres @@ -8753,42 +7252,34 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::StackWindow - Stack Stos - Copy Contents to Clipboard Skopiuj zawartość do schowka - Open Memory Editor Otwórz edytor pamięci - Open Memory Editor at %1 Otwórz edytor pamięci z adresem %1 - Open Disassembler Otwórz deasembler - Open Disassembler at %1 Otwórz deasembler w %1 - Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents Zawsze wyrównuj szerokości kolumn do ich zawartości @@ -8796,17 +7287,14 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::ThreadsWindow - Thread Wątek - Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents Zawsze wyrównuj szerokości kolumn do ich zawartości @@ -8814,13 +7302,10 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::WatchData - - <not in scope> <poza zakresem> - %1 <shadowed %2> %1 <przykryło %2> @@ -8828,77 +7313,62 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::WatchHandler - Expression Wyrażenie - Type Typ - ... <cut off> ... <odcięte> - Value Wartość - Object Address Adres obiektu - Name Nazwa - Internal ID Wewnętrzny identyfikator - Generation Generowanie - Root Korzeń - Locals Zmienne lokalne - Watchers Zmienne obserwowane - Tooltip Podpowiedź - unknown address nieznany adres - %1 object at %2 %1 obiekt w %2 - <Edit> <Zmodyfikuj> @@ -8906,62 +7376,50 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::WatchModel - decimal dziesiętny - hexadecimal szesnastkowy - binary binarny - octal ósemkowy - Bald pointer Łysy wskaźnik - Latin1 string Ciąg Latin1 - UTF8 string Ciąg UTF8 - UTF16 string Ciąg UTF16 - UCS4 string Ciąg UCS4 - Name Nazwa - Value Wartość - Type Typ @@ -8969,17 +7427,14 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. QtDumperHelper - Found an outdated version of the debugging helper library (%1); version %2 is required. Znaleziono nieaktualną wersję biblioteki asystenta debuggera (%1); wymagana wersja: %2. - <none> <brak> - %n known types, Qt version: %1, Qt namespace: %2 Dumper version: %3 @@ -8991,67 +7446,54 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Debugger::Internal::WatchWindow - Locals and Watchers Zmienne lokalne i obserwowane - Change Format for Type "%1" Zmień format typu "%1" - Change Format for Type Zmień format typu - Change Format for Object at %1 Zmień format obiektu w %1 - Change Format for Object Zmień format obiektu - Insert New Watch Item Wprowadź element do obserwacji - Select Widget to Watch Wybierz widżet do obserwacji - Open Memory Editor... Otwórz edytor pamięci... - Open Memory Editor at %1 Otwórz edytor pamięci z adresem %1 - Refresh Code Model Snapshot Odśwież kopię modelu danych - Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents Zawsze wyrównuj szerokości kolumn do ich zawartości - Clear Wyczyść @@ -9059,17 +7501,14 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Designer::Internal::FormClassWizardDialog - Qt Designer Form Class Klasa formularza Qt Designer - Form Template Szablon formularza - Class Details Szczegóły klasy @@ -9077,49 +7516,40 @@ Zaleca się użycie gdb wersji 7.1 lub późniejszej. Designer - Xml Editor Edytor xml - Designer Designer - Class Generation Generowanie klasy - Form Editor Edytor formularzy - The file name is empty. Nazwa pliku jest pusta. - XML error on line %1, col %2: %3 Błąd XML w linii %1, w kolumnie %2: %3 - The <RCC> root element is missing. Brak głównego elementu <RCC>. - The generated header of the form '%1' could not be found. Rebuilding the project might help. Nie można odnaleźć wygenerowanego pliku nagłówkowego dla formularza "%1". Spróbuj ponownie przebudować projekt. - The generated header '%1' could not be found in the code model. Rebuilding the project might help. Nie można odnaleźć wygenerowanego pliku nagłówkowego "%1" w modelu kodu. @@ -9129,22 +7559,18 @@ Spróbuj ponownie przebudować projekt. Designer::Internal::FormEditorPlugin - Qt Designer Form Formularz Qt Designer - Creates a Qt Designer form along with a matching class (C++ header and source file) for implementation purposes. You can add the form and class to an existing Qt C++ Project. Tworzy formularz Qt Designera wraz z klasą implementującą (plik nagłówkowy i źródłowy C++). Utworzony formularz i klasę można dodać do istniejącego projektu Qt C++. - Creates a Qt Designer form that you can add to a Qt C++ project. This is useful if you already have an existing class for the UI business logic. - Tworzy formularz Qt Designera który można dodać do projektu Qt C++. Jest to przydatne gdy istneje już klasa implementująca logikę UI. + Tworzy formularz Qt Designera który można dodać do projektu Qt C++. Jest to przydatne gdy istnieje już klasa implementująca logikę UI. - Qt Designer Form Class Klasa formularza Qt Designer @@ -9152,136 +7578,106 @@ Spróbuj ponownie przebudować projekt. Designer::Internal::FormEditorW - Widget Box Panel widżetów - - Object Inspector Hierarchia obiektów - - Property Editor Edytor właściwości - - Action Editor Edytor akcji - F3 F3 - F4 F4 - Meta+H Meta+H - Ctrl+H Ctrl+H - Meta+L Meta+L - Ctrl+L Ctrl+L - Meta+G Meta+G - Ctrl+G Ctrl+G - Meta+J Meta+J - Ctrl+J Ctrl+J - - Signals && Slots Editor Edytor sygnałów / slotów - Widget box Panel widżetów - For&m Editor Edytor for&mularzy - Edit Widgets Modyfikuj widżety - Edit Signals/Slots Modyfikuj sygnały / sloty - Edit Buddies Modyfikuj skojarzone etykiety - Edit Tab Order Modyfikuj kolejność tabulacji - Ctrl+Alt+R Ctrl+Alt+R - About Qt Designer plugins.... Informacje o wtyczkach Qt Designera... - Preview in Podgląd w stylu - Designer Designer - The image could not be created: %1 Nie można utworzyć pliku graficznego: %1 @@ -9289,12 +7685,10 @@ Spróbuj ponownie przebudować projekt. Designer::Internal::FormTemplateWizardPage - Choose a Form Template Wybierz szablon formularza - %1 - Error %1 - Błąd @@ -9302,7 +7696,6 @@ Spróbuj ponownie przebudować projekt. Designer::FormWindowEditor - untitled nienazwany @@ -9310,17 +7703,14 @@ Spróbuj ponownie przebudować projekt. Designer::Internal::FormWindowFile - Error saving %1 Błąd podczas zachowywania %1 - Unable to open %1: %2 Nie można otworzyć %1: %2 - Unable to write to %1: %2 Nie można zapisać do %1: %2 @@ -9328,12 +7718,10 @@ Spróbuj ponownie przebudować projekt. Designer::Internal::FormWizardDialog - Qt Designer Form Formularz Qt Designer - Form Template Szablon formularza @@ -9341,29 +7729,24 @@ Spróbuj ponownie przebudować projekt. Designer::Internal::QtCreatorIntegration - The class definition of '%1' could not be found in %2. Nie można odnaleźć definicji klasy "%1" w %2. - Error finding/adding a slot. Błąd podczas znajdowania / dodawania slotu. - Internal error: No project could be found for %1. Błąd wewnętrzny: brak projektu dla %1. - No documents matching '%1' could be found. Rebuilding the project might help. Brak dokumentów załączających "%1". Przebudowanie projektu może pomóc w ich odnalezieniu. - Unable to add the method definition. Nie można dodać definicji metody. @@ -9371,70 +7754,57 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. FakeVim::Internal - Use Vim-style Editing Włącz edycję w stylu vim - Read .vimrc Odczytuj .vimrc - FakeVim properties... - Właściwości FakeVim... + Właściwości FakeVim... FakeVim::Internal::FakeVimHandler - E20: Mark '%1' not set - E20: Znacznik "%1" nie jest ustawiony + E20: Znacznik "%1" nie jest ustawiony - %1%2% %1%2% - %1All %1Wszystkie - Not implemented in FakeVim Nie obsługiwane w FakeVim - File '%1' exists (add ! to override) - Plik "%1" istnieje (dodaj ! aby go zastąpić) + Plik "%1" istnieje (dodaj ! aby go zastąpić) - Cannot open file '%1' for writing - Nie można otworzyć pliku "%1" do zapisu + Nie można otworzyć pliku "%1" do zapisu - "%1" %2 %3L, %4C written - + "%1" %2 zapisano: %3 linii, %4 znaków - Cannot open file '%1' for reading - Nie można otworzyć pliku "%1" do odczytu + Nie można otworzyć pliku "%1" do odczytu - "%1" %2L, %3C "%1" %2L, %3C - %n lines filtered Przefiltrowano %n linię @@ -9442,47 +7812,59 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Przefiltrowano %n linii - - - %n lines >ed %1 time - - - - - - - Can't open file %1 Nie można otworzyć pliku %1 - E512: Unknown option: - E512: Nieznana opcja: + E512: Nieznana opcja: - search hit BOTTOM, continuing at TOP Przeszukano do KOŃCA, wznowiono od POCZĄTKU - search hit TOP, continuing at BOTTOM Przeszukano do POCZĄTKU, wznowiono od KOŃCA - Pattern not found: Brak dopasowań do wzorca: - + Mark '%1' not set + Znacznik "%1" nie jest ustawiony + + + Unknown option: + Nieznana opcja: + + + File "%1" exists (add ! to override) + Plik "%1" istnieje (dodaj ! aby go zastąpić) + + + Cannot open file "%1" for writing + Nie można otworzyć pliku "%1" do zapisu + + + Cannot open file "%1" for reading + Nie można otworzyć pliku "%1" do odczytu + + + %n lines %1ed %2 time + + Wykonano komendę %1 dla %n linii %2 razy + Wykonano komendę %1 dla %n linii %2 razy + Wykonano komendę %1 dla %n linii %2 razy + + + Already at oldest change Jest to najstarsza zmiana - Already at newest change Jest to najnowsza zmiana @@ -9490,12 +7872,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. FakeVim::Internal::FakeVimOptionPage - General Ogólne - FakeVim FakeVim @@ -9503,28 +7883,26 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. FakeVim::Internal::FakeVimPluginPrivate - Switch to next file Przełącz do następnego pliku - Switch to previous file Przełącz do poprzedniego pliku - - Quit FakeVim Zakończ FakeVim - + File not saved + Plik nie został zachowany + + Saving succeeded Zachowywanie pomyślnie zakończone - %n files not saved Nie zachowano %n pliku @@ -9533,12 +7911,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. - Not an editor command: %1 - %1 nie jest komendą edytora + %1 nie jest komendą edytora - FakeVim Information Informacje o FakeVim @@ -9546,62 +7922,50 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Find::Internal::FindToolBar - Find/Replace Znajdź / zastąp - Enter Find String Podaj ciąg do znalezienia - Ctrl+E Ctrl+E - Find Next Znajdź następne - Find Previous Znajdź poprzednie - Replace && Find Next Zastąp i znajdź następne - Ctrl+= Ctrl+= - Replace && Find Previous Zastąp i znajdź poprzednie - Replace All Zastąp wszystkie - Case Sensitive Uwzględniaj wielkość liter - Whole Words Only Tylko całe słowa - Use Regular Expressions Używaj wyrażeń regularnych @@ -9609,32 +7973,26 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Find::SearchResultWindow - No matches found! Brak pasujących wyników! - Expand All Rozwiń wszystko - Replace with: Zastąp: - Replace all occurrences Zastąp wszystkie wystąpienia - Replace Zastąp - Search Results Wyniki poszukiwań @@ -9642,18 +8000,15 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. GenericProjectManager::Internal::GenericMakeStepConfigWidget - Make GenericMakestep display name. Make - Override %1: Zastąpienie %1: - <b>Make:</b> %1 %2 <b>Make:</b> %1 %2 @@ -9661,17 +8016,14 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. GenericProjectManager::Internal::GenericBuildConfigurationFactory - Build Budowanie - New configuration Nowa konfiguracja - New Configuration Name: Nazwa nowej konfiguracji: @@ -9679,22 +8031,18 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. GenericProjectManager::Internal::GenericBuildSettingsWidget - Configuration Name: Nazwa konfiguracji: - Build directory: Katalog budowania wersji: - Tool Chain: Łańcuch narzędzi: - Generic Manager Ogólne zarządzanie @@ -9702,27 +8050,22 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. GenericProjectManager::Internal::GenericProjectWizardDialog - Import Existing Project Import istniejącego projektu - Project Name and Location Nazwa projektu i położenie - Project name: Nazwa projektu: - Location: Położenie: - Location Położenie @@ -9730,12 +8073,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. GenericProjectManager::Internal::GenericProjectWizard - Import Existing Project Import istniejącego projektu - Imports existing projects that do not use qmake or CMake. This allows you to use Qt Creator as a code editor. Importuje istniejące projekty które nie używają qmake ani CMake. To pozwala na korzystanie z Qt Creatora jako edytora kodu. @@ -9743,12 +8084,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Git::Internal::LocalBranchModel - <New branch> <Nowa gałąź> - Type to create a new branch Wpisz w celu utworzenia nowej gałęzi @@ -9756,22 +8095,18 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Git::Internal::ChangeSelectionDialog - Select a Git Commit - + Wybierz zmianę Git - Select Git Repository Wybierz składnicę Git - Error Błąd - Selected directory is not a Git repository Wybrany katalog nie jest składnicą Git @@ -9779,12 +8114,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Git::Internal::CloneWizard - Clones a Git repository and tries to load the contained project. Klonuje składnicę Git i próbuje załadować zawarty projekt. - Git Repository Clone Klon składnicy Git @@ -9792,17 +8125,14 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Git::CloneWizardPage - Location Położenie - Specify repository URL, checkout directory and path. Podaj URL składnicy, nazwę katalogu z kopią roboczą i ścieżkę do niego. - Clone URL: URL klonu: @@ -9810,17 +8140,18 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Git::Internal::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. + Nie można określić składnicy dla %1. + + Unable to parse the file output. Nie można przetworzyć wyjścia pliku. - Executing: %1 %2 Executing: <executable> <arguments> @@ -9828,58 +8159,47 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. - Waiting for data... Oczekiwanie na dane... - Git Diff - Git Diff %1 - Git Diff Branch %1 - Git Log - Git Log %1 Dziennik Git %1 - Cannot describe '%1'. - Git Show %1 - Git Blame %1 - Unable to checkout %1 of %2: %3 Meaning of the arguments: %1: Branch, %2: Repository, %3: Error message - Unable to add %n file(s) to %1: %2 Nie można dodać %n pliku do %1: %2 @@ -9888,7 +8208,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. - Unable to remove %n file(s) from %1: %2 Nie można usunąć %n pliku z %1 plików: %2 @@ -9897,12 +8216,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. - Unable to reset %1: %2 - Unable to reset %n file(s) in %1: %2 @@ -9911,141 +8228,114 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. - Unable to checkout %1 of %2 in %3: %4 Meaning of the arguments: %1: revision, %2: files, %3: repository, %4: Error message - Unable to find parent revisions of %1 in %2: %3 Failed to find parent revisions of a SHA1 for "annotate previous" - Invalid revision Błędna poprawka - Unable to retrieve branch of %1: %2 - Unable to retrieve top revision of %1: %2 - Unable to describe revision %1 in %2: %3 Nie można opisać poprawki %1 w %2: %3 - Description: Opis: - Unable to resolve stash message '%1' in %2 Look-up of a stash via its descriptive message failed. - Unable to run a 'git branch' command in %1: %2 Nie można uruchomić komendy "git branch" w %1: %2 - Unable to run 'git show' in %1: %2 Nie można uruchomić "git show" w %1: %2 - Unable to run 'git clean' in %1: %2 Nie można uruchomić "git clean" w %1: %2 - There were warnings while applying %1 to %2: %3 - Unable apply patch %1 to %2: %3 Nie można zastosować łaty %1 do %2: %3 - Unable to restore stash %1: %2 - Unable to restore stash %1 to branch %2: %3 - Unable to remove stashes of %1: %2 - Unable to remove stash %1 of %2: %3 - Unable retrieve stash list of %1: %2 - Unable to determine git version: %1 Nie można określić wersji git: %1 - Unable stash in %1: %2 - Stash Description - Changes Zmiany - You have modified files. Would you like to stash your changes? Zmodyfikowałeś pliki. Czy chcesz odłożyć swoje zmiany na później? - Unable to obtain the status: %1 Nie można otrzymać stanu: %1 - The repository %1 is not initialized yet. Składnica %1 nie jest jeszcze zainicjalizowana. - You did not checkout a branch. - + Nie utworzyłeś kopii roboczej gałęzi. - Committed %n file(s). @@ -10055,7 +8345,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. - Unable to commit %n file(s): %1 @@ -10065,32 +8354,26 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. - Revert Odwróć zmiany - The file has been changed. Do you want to revert it? Plik został zmieniony. Czy chcesz odwrócić w nim zmiany? - The file is not modified. Plik nie jest zmodyfikowany. - The command 'git pull --rebase' failed, aborting rebase. - + Komenda "git pull --rebase" zakończona niepowodzeniem, przerwano "rebase". - Git SVN Log Dziennik git SVN - There are no modified files. Brak zmodyfikowanych plików. @@ -10098,7 +8381,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. GitCommand - '%1' failed (exit code %2). @@ -10107,7 +8389,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. - '%1' completed (exit code %2). @@ -10119,17 +8400,14 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Gitorious::Internal::Gitorious - Error parsing reply from '%1': %2 Błąd przetwarzania odpowiedzi z "%1": %2 - Request failed for '%1': %2 Żądanie zostało błędnie zakończone dla "%1": %2 - Open source projects that use Git. Projekty otwartego oprogramowania używające Git. @@ -10137,12 +8415,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Gitorious::Internal::GitoriousCloneWizard - Clones a Gitorious repository and tries to load the contained project. Klonuje składnicę Gitorious i próbuje załadować zawarty projekt. - Gitorious Repository Clone Klon składnicy Gitorious @@ -10150,12 +8426,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Gitorious::Internal::GitoriousHostWizardPage - Host Host - Select a host. Wybierz host. @@ -10163,12 +8437,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Gitorious::Internal::GitoriousProjectWizardPage - Project Projekt - Choose a project from '%1' Wybierz projekt z "%1" @@ -10176,339 +8448,288 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Git::Internal::GitPlugin - &Git &Git - Diff Current File Pokaż różnice w bieżącym pliku - Diff "%1" Pokaż różnice w "%1" - Alt+G,Alt+D Alt+G,Alt+D - Log File Pokaż dziennik pliku - Log of "%1" Pokaż dziennik "%1" - Alt+G,Alt+L Alt+G,Alt+L - Blame - Blame for "%1" - Alt+G,Alt+B Alt+G,Alt+B - Undo Changes - Cofnij zmiany + Cofnij zmiany - Undo Changes for "%1" - Cofnij zmiany w "%1" + Cofnij zmiany w "%1" - Alt+G,Alt+U Alt+G,Alt+U - Stage File for Commit - Stage "%1" for Commit - Alt+G,Alt+A Alt+G,Alt+A - Unstage File from Commit - Unstage "%1" from Commit - Diff Current Project Pokaż różnice w bieżącym projekcie - Diff Project "%1" Pokaż różnice w projekcie "%1" - Log Project Pokaż dziennik projektu - Log Project "%1" Pokaż dziennik projektu "%1" - Alt+G,Alt+K Alt+G,Alt+K - Stash Snapshot... - Stash Odłóż - Saves the current state of your work. Zachowuje bieżący stan pracy. - + Undo Unstaged Changes + + + + Undo Unstaged Changes for "%1" + + + + Undo Uncommitted Changes + + + + Undo Uncommitted Changes for "%1" + + + Clean Project... Wyczyść projekt... - Clean Project "%1"... Wyczyść projekt "%1"... - Diff Repository - + Pokaż zmiany w składnicy - Repository Status Stan składnicy - Log Repository Pokaż dziennik składnicy - Apply Patch Zastosuj łatę - Apply "%1" Zastosuj "%1" - Apply Patch... Zastosuj łatę... - Undo Repository Changes Cofnij zmiany w składnicy - Create Repository... Utwórz składnicę... - Clean Repository... Wyczyść składnicę... - Saves the current state of your work and resets the repository. - + Zachowuje bieżący stan Twojej pracy i przywraca składnicę do stanu sprzed zmian. - Pull Pociągnij - Stash Pop - + Przywróć odłożone zmiany - Restores changes saved to the stash list using "Stash". - + Przywraca zmiany zachowane na stosie odłożonych zmian. - Commit... - Alt+G,Alt+C Alt+G,Alt+C - Push Popchnij - Branches... Gałęzie... - Stashes... - + Odłożone zmiany... - Would you like to revert all pending changes to the repository %1? Czy chcesz odwrócić wszystkie oczekujące zmiany w składnicy %1? - Unable to retrieve file list Nie można uzyskać listy plików - Repository clean - + Czysta składnica - The repository is clean. Składnica jest czysta. - Patches (*.patch *.diff) - + Łaty (*.patch *.diff) - Choose patch Wybierz łatę - Patch %1 successfully applied to %2 - + Łata %1 została zastosowana do %2 - Show Commit... - Subversion Subversion - Log Dziennik - Fetch - + Pobierz - Commit - + Wyślij - Diff Selected Files Pokaż różnice w zaznaczonych plikach - &Undo &Cofnij - &Redo &Przywróć - Revert Odwróć zmiany - Another submit is currently being executed. Trwa inna wysyłka. - Cannot create temporary file: %1 Nie można utworzyć tymczasowego pliku: %1 - Closing git editor Zamykanie edytora git - Do you want to commit the change? Czy chcesz wysłać zmianę? - The commit message check failed. Do you want to commit the change? @@ -10516,7 +8737,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Git::Internal::GitSettings - The binary '%1' could not be located in the path '%2' Nie można odnaleźć pliku binarnego "%1" w ścieżce "%2" @@ -10524,7 +8744,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Git::Internal::GitSubmitEditor - Git Commit @@ -10532,32 +8751,26 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. HelloWorld::Internal::HelloWorldPlugin - Say "&Hello World!" Powiedz "&Witaj świecie!" - &Hello World &Witaj świecie - Hello world! Witaj świecie! - Hello World PushButton! Przycisk powitalny! - Hello World! Witaj świecie! - Hello World! Beautiful day today, isn't it? Witaj świecie! Piękny dzień dziś mamy, nieprawdaż? @@ -10565,12 +8778,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. HelloWorld::Internal::HelloWorldWindow - Focus me to activate my context! Daj mi fokus, żeby uaktywnić mój kontekst! - Hello, world! Witaj świecie! @@ -10578,7 +8789,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Help::Internal::CentralWidget - Print Document Wydruk dokumentu @@ -10586,17 +8796,14 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Help::Internal::DocSettingsPage - Documentation Dokumentacja - Add Documentation Dodaj dokumentację - Qt Help Files (*.qch) Pliki pomocy Qt (*.qch) @@ -10604,7 +8811,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Help::Internal::FilterSettingsPage - Filters Filtry @@ -10612,28 +8818,22 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Help::Internal::GeneralSettingsPage - General Settings Ustawienia ogólne - Open Image Otwórz plik graficzny - - Files (*.xbel) Pliki (*.xbel) - There was an error while importing bookmarks! Wystąpił błąd podczas importowania zakładek! - Save File Zachowaj plik @@ -10641,7 +8841,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Help::Internal::HelpIndexFilter - Help index Indeks pomocy @@ -10649,7 +8848,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Help::Internal::HelpMode - Help Pomoc @@ -10657,154 +8855,130 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Help::Internal::HelpPlugin - - Contents Zawartość - - Index Indeks - Search Wyszukaj - Bookmarks Zakładki - Home Strona startowa - Previous Page Poprzednia strona - Next Page Następna strona - Add Bookmark Dodaj zakładkę - Context Help Pomoc podręczna - Activate Index in Help mode Uaktywnij indeks w trybie pomocy - Activate Contents in Help mode Uaktywnij zawartość w trybie pomocy - Increase Font Size Zwiększ rozmiar czcionki - Ctrl++ Ctrl++ - Decrease Font Size Zmniejsz rozmiar czcionki - Ctrl+- Ctrl+- - Reset Font Size Przywróć domyślny rozmiar czcionki - Ctrl+0 Ctrl+0 - Alt+Tab Alt+Tab - Alt+Shift+Tab Alt+Shift+Tab - Ctrl+Tab Ctrl+Tab - Ctrl+Shift+Tab Ctrl+Shift+Tab - + Activate Search in Help mode + Uaktywnij przeszukiwanie w trybie pomocy + + + Activate Bookmarks in Help mode + Uaktywnij zakładki w trybie pomocy + + Open Pages Otwarte strony - Activate Open Pages in Help mode - Aktywne otwarte strony w trybie pomocy + Uaktywnij otwarte strony w trybie pomocy - Go to Help Mode Przejdź do trybu pomocy - Previous Poprzedni - Close current Page Zamknij bieżącą stronę - Next Następny - Unfiltered Nieprzefiltrowane - <html><head><title>No Documentation</title></head><body><br/><center><b>%1</b><br/>No documentation available.</center></body></html> <html><head><title>Brak dokumentacji</title></head><body><br/><center><b>%1</b><br/>Brak dostępnej dokumentacji.</center></body></html> - Filtered by: Przefiltrowane przez: @@ -10812,37 +8986,30 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Help::Internal::SearchWidget - Indexing Indeksowanie - Indexing Documentation... Indeksowanie dokumentacji... - Open Link Otwórz odsyłacz - Open Link as New Page Otwórz odsyłacz na nowej stronie - Copy Link Skopiuj odsyłacz - Copy Skopiuj - Reload Przeładuj @@ -10850,12 +9017,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Help::Internal::XbelReader - The file is not an XBEL version 1.0 file. Ten plik nie jest plikiem XBEL wersji 1.0. - Unknown title Nieznany plik @@ -10863,410 +9028,326 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Perforce::Internal::PerforcePlugin - &Perforce &Perforce - Edit Edycja - Edit "%1" Zmodyfikuj "%1" - Alt+P,Alt+E Alt+P,Alt+E - Edit File Zmodyfikuj plik - Add Dodaj - Add "%1" Dodaj "%1" - Alt+P,Alt+A Alt+P,Alt+A - Add File Dodaj plik - Delete File Usuń plik - Revert Odwróć zmiany - Revert "%1" Odwróć zmiany w "%1" - Alt+P,Alt+R Alt+P,Alt+R - Revert File Odwróć zmiany w pliku - - Diff Current File Pokaż różnice w bieżącym pliku - Diff "%1" Pokaż różnice w "%1" - Diff Current Project/Session Pokaż różnice w bieżącym projekcie / sesji - Diff Project "%1" Pokaż różnice w projekcie "%1" - Alt+P,Alt+D Alt+P,Alt+D - Diff Opened Files Pokaż różnice w otwartych plikach - Opened Otwarto - Alt+P,Alt+O Alt+P,Alt+O - Submit Project - Alt+P,Alt+S Alt+P,Alt+S - Pending Changes... Oczekujące zmiany... - Update Project "%1" Uaktualnij projekt "%1" - Describe... Opisz... - - Annotate Current File Dołącz adnotację do bieżącego pliku - Annotate "%1" Dołącz adnotację do "%1" - Annotate... Dołącz adnotację... - - Filelog Current File Dziennik bieżącego pliku - Filelog "%1" Dziennik pliku "%1" - Alt+P,Alt+F Alt+P,Alt+F - Filelog... Dziennik pliku... - Update All Uaktualnij wszystko - Delete... Usuń... - Delete "%1"... Usuń "%1"... - Log Project Pokaż dziennik projektu - Log Project "%1" Pokaż dziennik projektu "%1" - Submit Project "%1" - Update Current Project Uaktualnij bieżący projekt - Revert Unchanged Odwróć niezmienione - Revert Unchanged Files of Project "%1" Odwróć niezmienione pliki projektu "%1" - Revert Project Odwróć zmiany w projekcie - Revert Project "%1" Odwróć zmiany w projekcie "%1" - Repository Log Dziennik składnicy - Submit Wyślij - Diff Selected Files Pokaż różnice w zaznaczonych plikach - &Undo &Cofnij - &Redo &Przywróć - - p4 revert p4 revert - The file has been changed. Do you want to revert it? Plik został zmieniony. Czy chcesz odwrócić w nim zmiany? - Do you want to revert all changes to the project "%1"? - Czy chcesz odwrócic wszystkie zmiany w projekcie "%1"? + Czy chcesz odwrócić wszystkie zmiany w projekcie "%1"? - Another submit is currently executed. Trwa inna wysyłka. - Cannot create temporary file. Nie można utworzyć tymczasowego pliku. - Project has no files Brak plików w projekcie - p4 annotate p4 annotate - p4 annotate %1 p4 annotate %1 - p4 filelog p4 filelog - p4 filelog %1 p4 filelog %1 - Executing: %1 Wykonywanie: %1 - The process terminated with exit code %1. Proces zakończył się kodem wyjściowym %1. - p4 submit failed: %1 - Error running "where" on %1: %2 Failed to run p4 "where" to resolve a Perforce file name to a local file system name. - The file is not mapped File is not managed by Perforce Plik nie jest zmapowany - Perforce repository: %1 Składnica Perforce: %1 - Perforce: Unable to determine the repository: %1 Perforce: Nie można określić składnicy: %1 - The process terminated abnormally. Proces niepoprawnie zakończony. - Could not start perforce '%1'. Please check your settings in the preferences. Nie można uruchomić perforce "%1". Sprawdź stosowne ustawienia. - Perforce did not respond within timeout limit (%1 ms). Perforce nie odpowiedział w określonym czasie (%1 ms). - Unable to write input data to process %1: %2 - + Nie można wpisać danych wejściowych do procesu %1: %2 - Perforce is not correctly configured. Perforce nie jest poprawnie skonfigurowany. - p4 diff %1 p4 diff %1 - p4 describe %1 p4 describe %1 - Closing p4 Editor Zamykanie edytora p4 - Do you want to submit this change list? Czy chcesz wysłać tę listę zmian? - The commit message check failed. Do you want to submit this change list - Cannot open temporary file. Nie można otworzyć tymczasowego pliku. - Pending change Oczekująca zmiana - Could not submit the change, because your workspace was out of date. Created a pending submit instead. @@ -11274,7 +9355,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Perforce::Internal::PerforceSubmitEditor - Perforce Submit @@ -11282,17 +9362,14 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. Perforce::Internal::SettingsPageWidget - Perforce Command Komenda Perforce - Testing... Testowanie... - Test succeeded (%1). Test pomyślnie zakończony (%1). @@ -11300,37 +9377,53 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::AbstractProcessStep - <font color="#0000ff">Starting: "%1" %2</font> - <font color="#0000ff">Uruchamianie: "%1" %2</font> + <font color="#0000ff">Uruchamianie: "%1" %2</font> - <font color="#0000ff">The process "%1" exited normally.</font> - <font color="#0000ff">Proces %1 zakończył się normalnie.</b></font> + <font color="#0000ff">Proces %1 zakończył się normalnie.</b></font> - <font color="#ff0000"><b>The process "%1" exited with code %2.</b></font> - <font color="#ff0000">Proces %1 zakończył się kodem wyściowym %2.</b></font> + <font color="#ff0000">Proces %1 zakończył się kodem wyściowym %2.</b></font> - <font color="#ff0000"><b>The process "%1" crashed.</b></font> - <font color="#ff0000">Proces %1 zakończył się błędnie.</b></font> + <font color="#ff0000">Proces %1 zakończył się błędnie.</b></font> - <font color="#ff0000"><b>Could not start process "%1"</b></font> - <font color="#ff0000">Nie można uruchomić procesu %1 </b></font> + <font color="#ff0000">Nie można uruchomić procesu %1 </b></font> + + + Starting: "%1" %2 + + Uruchamianie "%1" %2 + + + + The process "%1" exited normally. + Proces "%1" zakończył się normalnie. + + + The process "%1" exited with code %2. + Proces "%1" zakończył się kodem wyjściowym %2. + + + The process "%1" crashed. + Proces "%1" zakończył pracę błędem. + + + Could not start process "%1" + Nie można uruchomić procesu "%1" ProjectExplorer::Internal::AllProjectsFilter - Files in any project Pliki we wszystkich projektach @@ -11338,12 +9431,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::Internal::AllProjectsFind - All Projects Wszystkie projekty - File &pattern: &Wzorzec: @@ -11351,17 +9442,14 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::ApplicationLauncher - Failed to start program. Path or permissions wrong? Nie można uruchomić programu. Sprawdź ścieżkę i prawa dostępu do programu. - The program has unexpectedly finished. Program nieoczekiwanie przerwał pracę. - Some error has occurred while running the program. Pojawiły się błędy podczas działania programu. @@ -11369,7 +9457,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::Internal::LocalApplicationRunControlFactory - Run Uruchom @@ -11377,12 +9464,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::Internal::LocalApplicationRunControl - Starting %1... Uruchamianie %1... - %1 exited with code %2 %1 zakończone kodem %2 @@ -11390,7 +9475,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::BuildManager - Finished %1 of %n build steps Zakończono krok budowania %1 z %n @@ -11399,94 +9483,87 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. - Compile Category for compiler isses listened under 'Build Issues' Kompilacja - Build System Category for build system isses listened under 'Build Issues' System budowania - + Canceled build. + Anulowano budowanie. + + + When executing build step '%1' + Podczas wykonywania kroku budowania "%1" + + + Running build steps for project %1... + Uruchamianie kroków budowania dla projektu %1... + + <font color="#ff0000">Canceled build.</font> - <font color="#ff0000">Anulowano budowanie.</font> + <font color="#ff0000">Anulowano budowanie.</font> - Build Budowanie - - <font color="#ff0000">Error while building project %1 (target: %2)</font> - <font color="#ff0000">Błąd podczas budowania projektu %1 (produkt docelowy: %2)</font> + <font color="#ff0000">Błąd podczas budowania projektu %1 (produkt docelowy: %2)</font> - Error while building project %1 (target: %2) Błąd podczas budowania projektu %1 (produkt docelowy: %2) - - <font color="#ff0000">When executing build step '%1'</font> - <font color="#ff0000">Podczas wykonywania kroku budowania "%1"</font> + <font color="#ff0000">Podczas wykonywania kroku budowania "%1"</font> - <b>Running build steps for project %2...</b> - <b>Uruchamianie kroków budowania dla projektu %2...</b> + <b>Uruchamianie kroków budowania dla projektu %2...</b> ProjectExplorer::Internal::BuildSettingsWidget - No build settings available Brak dostępnych ustawień budowania - Edit build configuration: Konfiguracja budowania: - Add Dodaj - Remove Usuń - &Clone Selected S&klonuj wybraną - Build Steps Kroki procesu budowania - Clean Steps Kroki procesu czyszczenia - Clone configuration Sklonuj konfigurację - New Configuration Name: Nazwa nowej konfiguracji: @@ -11494,52 +9571,42 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::Internal::BuildStepsPage - Move Up Przenieś do góry - Move Down Przenieś na dół - Remove Item Usuń element - Removing Step failed Nie można usunąć kroku - Can't remove build step while building Nie można usunąć kroku podczas budowania - No Build Steps Brak kroków procesu budowania - Add Clean Step Dodaj krok do procesu czyszczenia - Add Build Step Dodaj krok do procesu budowania - Clean Steps Kroki procesu czyszczenia - Build Steps Kroki procesu budowania @@ -11547,8 +9614,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::Internal::CompileOutputWindow - - Compile Output Komunikaty kompilatora @@ -11556,27 +9621,22 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::Internal::CoreListenerCheckingForRunningBuild - Cancel Build && Close Anuluj budowanie i zamknij - Do not Close Nie zamykaj - Close Qt Creator? Czy zamknąć Qt Creator? - A project is currently being built. Trwa budowanie projektu. - Do you want to cancel the build process and close Qt Creator anyway? Czy chcesz anulować proces budowania i zamknąć Qt Creator? @@ -11584,7 +9644,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::Internal::CurrentProjectFilter - Files in current project Pliki w bieżącym projekcie @@ -11592,12 +9651,10 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::Internal::CurrentProjectFind - Current Project Bieżący projekt - File &pattern: &Wzorzec pliku: @@ -11605,62 +9662,50 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::Internal::CustomExecutableConfigurationWidget - Name: Nazwa: - Executable: Plik wykonywalny: - Arguments: Argumenty: - Working Directory: Katalog roboczy: - Run in &Terminal Uruchom w &terminalu - Run Environment Środowisko uruchamiania - Base environment for this runconfiguration: Podstawowe środowisko dla tej konfiguracji uruchamiania: - Clean Environment Czyste środowisko - System Environment Środowisko systemowe - Build Environment Środowisko budowania - No Executable specified. Nie podano programu wykonywalnego. - Running executable: <b>%1</b> %2 Uruchomiony program: <b>%1</b> %2 @@ -11668,33 +9713,26 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::CustomExecutableRunConfiguration - Custom Executable Własny plik wykonywalny - Could not find the executable, please specify one. Nie można znaleźć pliku wykonywalnego. Podaj go. - Clean Environment Czyste środowisko - System Environment Środowisko systemowe - Build Environment Środowisko budowania - - Run %1 Uruchom %1 @@ -11702,8 +9740,6 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::CustomExecutableRunConfigurationFactory - - Custom Executable Własny plik wykonywalny @@ -11711,22 +9747,18 @@ Przebudowanie projektu może pomóc w ich odnalezieniu. ProjectExplorer::DebuggingHelperLibrary - The target directory %1 could not be created. Nie można utworzyć docelowego katalogu %1. - The existing file %1 could not be removed. Nie można usunąć pliku %1. - The file %1 could not be copied to %2. Nie można skopiować pliku %1 do %2. - The debugger helpers could not be built in any of the directories: - %1 @@ -11737,30 +9769,24 @@ Reason: %2 Powód: %2 - Building debugging helper library in %1 Budowanie biblioteki asystenta debuggera w %1 - Running %1 %2... Uruchamianie %1 %2... - - %1 not found in PATH Nie znaleziono %1 w zmiennej PATH - - Running %1 ... Uruchamianie %1... @@ -11770,12 +9796,10 @@ Powód: %2 DependenciesModel - Unable to add dependency Nie można dodać zależności - This would create a circular dependency. Utworzyłoby to cykliczną zależność. @@ -11783,34 +9807,28 @@ Powód: %2 ProjectExplorer::EnvironmentModel - <UNSET> <SKASUJ> - Variable Zmienna - Value Wartość - <VARIABLE> Name when inserting a new variable <ZMIENNA> - <VALUE> Value when inserting a new variable <WARTOŚĆ> - <VARIABLE> <ZMIENNA> @@ -11818,42 +9836,34 @@ Powód: %2 ProjectExplorer::EnvironmentWidget - &Edit Z&modyfikuj - &Add &Dodaj - &Reset &Przywróć - &Unset &Usuń - Unset <b>%1</b> usuń <b>%1</b> - Set <b>%1</b> to <b>%2</b> ustaw <b>%1</b> na <b>%2</b> - Using <b>%1</b> Użyj <b>%1</b> - Using <b>%1</b> and Użyj <b>%1</b> i @@ -11861,12 +9871,10 @@ Powód: %2 ProjectExplorer::Internal::FolderNavigationWidgetFactory - File System System plików - Synchronize with Editor Synchronizuj z edytorem @@ -11874,38 +9882,34 @@ Powód: %2 ProjectExplorer::Internal::OutputPane - Re-run this run-configuration Uruchom ponownie tę konfigurację - - Stop Zatrzymaj - + Application Output Window + Okno z komunikatami aplikacji + + The application is still running. Aplikacja jest wciąż uruchomiona. - Force it to quit? Zakończyć ją? - Force Quit Zakończ - Application Output Komunikaty aplikacji - Unable to close Nie można zamknąć @@ -11913,21 +9917,23 @@ Powód: %2 ProjectExplorer::Internal::OutputWindow - Application Output Window - Okno z komunikatami aplikacji + Okno z komunikatami aplikacji + + + Additional output omitted + + Pominięto dalsze komunikaty ProjectExplorer::Internal::ProjectFileFactory - Project File Factory ProjectExplorer::ProjectFileFactory display name. Fabryka plików projektu - Could not open the following project: '%1' Nie można otworzyć projektu: "%1" @@ -11935,8 +9941,6 @@ Powód: %2 ProjectExplorer::Internal::ProcessStep - - Custom Process Step item in combobox Własny krok procesu @@ -11945,12 +9949,10 @@ Powód: %2 ProjectExplorer::Internal::ProcessStepConfigWidget - <b>%1</b> %2 %3 %4 <b>%1</b> %2 %3 %4 - (disabled) (nieaktywny) @@ -11958,274 +9960,222 @@ Powód: %2 ProjectExplorer::ProjectExplorerPlugin - Projects Projekty - &Build &Budowanie - &Debug &Debugowanie - &Start Debugging &Rozpocznij debugowanie - Open With Otwórz przy pomocy - Session Manager... Zarządzanie sesjami... - New Project... Nowy projekt... - Ctrl+Shift+N Ctrl+Shift+N - Load Project... Załaduj projekt... - Ctrl+Shift+O Ctrl+Shift+O - Open File Otwórz plik - Close Project Zamknij projekt - Close Project "%1" Zamknij projekt "%1" - Close All Projects Zamknij wszystkie projekty - Session Sesja - Build All Zbuduj wszystko - Ctrl+Shift+B Ctrl+Shift+B - Rebuild All Przebuduj wszystko - Clean All Wyczyść wszystko - - Build Project Zbuduj projekt - - Build Project "%1" Zbuduj projekt "%1" - Ctrl+B Ctrl+B - - Rebuild Project Przebuduj projekt - - Rebuild Project "%1" Przebuduj projekt "%1" - - Clean Project Wyczyść projekt - - Clean Project "%1" Wyczyść projekt "%1" - Build Without Dependencies Zbuduj bez zależności - Rebuild Without Dependencies Przebuduj bez zależności - Clean Without Dependencies Wyczyść bez zależności - - Run Uruchom - Ctrl+R Ctrl+R - + Projects (%1) + Projekty (%1) + + + All Files (*) + Wszystkie pliki (*) + + Recent P&rojects Ostatnie p&rojekty - Cancel Build Anuluj budowanie - - Start Debugging Rozpocznij debugowanie - F5 F5 - Add New... Dodaj nowy... - Add Existing Files... Dodaj istniejące pliki... - Remove File... Usuń plik... - Rename Zmień nazwę - Open Build/Run Target Selector... Otwórz przełącznik budowania / uruchamiania... - Ctrl+T Ctrl+T - Load Project Załaduj projekt - New Project Title of dialog Nowy projekt - Always save files before build Zawsze zachowuj pliki przed budowaniem - Cannot run without a project. Nie można uruchamiać bez wybranego projektu. - Cannot debug without a project. Nie można debugować bez wybranego projektu. - New File Title of dialog Nowy plik - Add Existing Files Dodaj istniejące pliki - Could not add following files to project %1: Nie można dodać następujących plików do projektu %1: - Add files to project failed Nie można dodać plików do projektu - Add to Version Control Dodaj do systemu kontroli wersji - Add files %1 to version control (%2)? @@ -12234,34 +10184,28 @@ to version control (%2)? do systemu kontroli wersji (%2)? - Could not add following files to version control (%1) Nie można dodać następujących plików do systemu kontroli wersji (%1) - Add files to version control failed Nie można dodać plików do systemu kontroli wersji - Remove file failed Nie można usunąć pliku - Could not remove file %1 from project %2. Nie można usunąć pliku %1 z projektu %2. - Delete file failed Nie można usunąć pliku - Could not delete file %1. Nie można usunąć pliku %1. @@ -12269,47 +10213,38 @@ do systemu kontroli wersji (%2)? ProjectExplorer::Internal::BuildConfigDialog - Change build configuration && continue Zmień konfigurację budowania i kontynuuj - Cancel Anuluj - Continue anyway Kontynuuj - Run configuration does not match build configuration Konfiguracja uruchamiania nie odpowiada konfiguracji budowania - This can happen if the active build configuration uses the wrong Qt version and/or tool chain for the active run configuration (for example, running in Symbian emulator requires building with the WINSCW tool chain). To się może zdarzyć gdy aktywna konfiguracja budowania używa innej wersji Qt lub innego zestawu narzędzi od tych użytych w aktywnej konfiguracji uruchamiania (np. uruchamianie w symulatorze Symbiana wymaga zbudowania z zestawem narzędzi WINSCW). - The active build configuration builds a target that cannot be used by the active run configuration. Aktywna konfiguracja budowania tworzy produkt który nie może zostać użyty przez aktywną konfigurację uruchamiania. - Active run configuration Aktywna konfiguracja uruchamiania - Choose build configuration: Wybierz konfigurację budowania: - No valid build configuration found. Nie znaleziono poprawnej konfiguracji budowania. @@ -12317,7 +10252,6 @@ do systemu kontroli wersji (%2)? ProjectExplorer::Internal::ProjectExplorerSettingsPage - General Ogólne @@ -12325,8 +10259,6 @@ do systemu kontroli wersji (%2)? ProjectExplorer::Internal::ProjectFileWizardExtension - - <None> No version control system selected ---------- @@ -12334,19 +10266,16 @@ No project selected <Brak> - Failed to add one or more files to project '%1' (%2). Nie można dodać jednego lub więcej plików do projektu "%1" (%2). - A version control system repository could not be created in '%1'. Nie można utworzyć składnicy systemu kontroli wersji w "%1". - Failed to add '%1' to the version control system. Dodanie "%1" do systemu kontroli wersji zakończone niepowodzeniem. @@ -12354,17 +10283,14 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidget - Simplify tree Uprość drzewo - Hide generated files Ukryj wygenerowane pliki - Synchronize with Editor Synchronizuj z edytorem @@ -12372,12 +10298,10 @@ No project selected ProjectExplorer::Internal::ProjectTreeWidgetFactory - Projects Projekty - Filter tree Przefiltruj drzewo @@ -12385,7 +10309,6 @@ No project selected ProjectExplorer::Internal::ProjectWelcomePage - Develop Sesje i projekty @@ -12393,17 +10316,14 @@ No project selected ProjectExplorer::Internal::ProjectWizardPage - Summary Podsumowanie - Files to be added: Pliki które zostaną dodane: - Files to be added in Pliki które zostaną dodane w @@ -12411,12 +10331,10 @@ No project selected ProjectExplorer::Internal::RunSettingsWidget - Add Dodaj - Remove Usuń @@ -12424,12 +10342,10 @@ No project selected ProjectExplorer::Internal::SessionFile - Session Sesja - Untitled default file name to display Nienazwany @@ -12438,38 +10354,30 @@ No project selected ProjectExplorer::SessionManager - Error while restoring session Błąd podczas przywracania sesji - Could not restore session %1 Nie można przywrócić sesji %1 - Error while saving session Błąd podczas zachowywania sesji - Could not save session to file %1 Nie można zachować sesji w pliku %1 - Qt Creator Qt Creator - - Untitled Nienazwany - Session ('%1') Sesja ("%1") @@ -12477,7 +10385,6 @@ No project selected ProjectExplorer::Internal::TaskDelegate - File not found: %1 Brak pliku: %1 @@ -12485,72 +10392,58 @@ No project selected ToolChain - GCC GCC - Intel C++ Compiler (Linux) Kompilator Intel C++ (Linux) - Microsoft Visual C++ Microsoft Visual C++ - Windows CE Windows CE - WINSCW WINSCW - GCCE GCCE - GCCE/GnuPoc GCCE/GnuPoc - RVCT (ARMV6)/GnuPoc RVCT (ARMV6)/GnuPoc - RVCT (ARMV5) RVCT (ARMV5) - RVCT (ARMV6) RVCT (ARMV6) - GCC for Maemo GCC dla Maemo - Other Inne - <Invalid> <Niepoprawny> - <Unknown> <Nieznany> @@ -12558,12 +10451,10 @@ No project selected ProjectExplorer::Internal::WinGuiProcess - The process could not be started! Proces nie może zostać rozpoczęty! - Cannot retrieve debugging output! Nie można pobrać komunikatów debuggera! @@ -12571,7 +10462,6 @@ No project selected QmlProjectManager::Internal::QmlRunConfiguration - QML Viewer Przeglądarka QML @@ -12579,17 +10469,14 @@ No project selected Qt4ProjectManager::Internal::ClassList - <New class> <Nowa klasa> - Confirm Delete Potwierdź usunięcie - Delete class %1 from list? Czy usunąć klasę %1 z listy? @@ -12597,12 +10484,10 @@ No project selected Qt4ProjectManager::Internal::CustomWidgetWizard - Qt Custom Designer Widget Własny widżet Qt Designer - Creates a Qt Custom Designer Widget or a Custom Widget Collection. Tworzy własny widżet Qt Designera lub kolekcję własnych widżetów. @@ -12610,17 +10495,14 @@ No project selected Qt4ProjectManager::Internal::CustomWidgetWizardDialog - This wizard generates a Qt4 Designer Custom Widget or a Qt4 Designer Custom Widget Collection project. Ten kreator generuje projekt własnego widżetu Qt4 Designer lub projekt kolekcji własnych widżetów Qt4 Designer. - Custom Widgets Własne widżety - Plugin Details Szczegóły wtyczki @@ -12628,17 +10510,14 @@ No project selected Qt4ProjectManager::Internal::PluginGenerator - Cannot open icon file %1. Nie można otworzyć pliku z ikoną %1. - Creating multiple widget libraries (%1, %2) in one project (%3) is not supported. Tworzenie wielu bibliotek z widżetami (%1, %2) w jednym projekcie (%3) nie jest obsługiwane. - Cannot open %1: %2 Nie można otworzyć %1: %2 @@ -12646,12 +10525,10 @@ No project selected Qt4ProjectManager::Internal::ExternalQtEditor - Unable to start "%1" Nie można uruchomić "%1" - The application "%1" could not be found. Nie można odnaleźć aplikacji "%1". @@ -12659,12 +10536,10 @@ No project selected Qt4ProjectManager::Internal::DesignerExternalEditor - Qt Designer is not responding (%1). Qt Designer nie odpowiada (%1). - Unable to create server socket: %1 Nie można utworzyć gniazda serwera: %1 @@ -12672,7 +10547,6 @@ No project selected Qt4ProjectManager::Internal::GettingStartedWelcomePage - Getting Started Zaczynamy @@ -12680,31 +10554,30 @@ No project selected Qt4ProjectManager::MakeStep - Make Qt4 MakeStep display name. Make - + Could not find make command: %1 in the build environment + Nie można odnaleźć komendy make: %1 w środowisku procesu budowania + + <font color="#ff0000">Could not find make command: %1 in the build environment</font> - <font color="#ff0000">Nie można odnaleźć komendy make: %1 w środowisku procesu budowania</font> + <font color="#ff0000">Nie można odnaleźć komendy make: %1 w środowisku procesu budowania</font> Qt4ProjectManager::MakeStepConfigWidget - Override %1: Zastąpienie %1: - <b>Make:</b> %1 not found in the environment. <b>Make:</b> Nie odnaleziono %1 w środowisku. - <b>Make:</b> %1 %2 in %3 <b>Make:</b> %1 %2 in %3 @@ -12712,7 +10585,6 @@ No project selected Qt4ProjectManager::Internal::MakeStepFactory - Make Make @@ -12720,7 +10592,6 @@ No project selected Qt4ProjectManager::Internal::ProjectLoadWizard - Project setup Ustawienia projektu @@ -12728,31 +10599,34 @@ No project selected Qt4ProjectManager::QMakeStep - qmake QMakeStep display name. QMake - + Configuration is faulty, please check the Build Issues view for details. + Konfiguracja jest błędna, sprawdź szczegóły w widoku "Problemy budowania". + + + Configuration unchanged, skipping qmake step. + Konfiguracja niezmieniona, krok qmake opuszczony. + + <font color="#0000ff">Configuration is faulty, please check the Build Issues view for details.</font> - <font color="#0000ff">Konfiguracja jest błędna, sprawdź szczegóły w widoku "Problemy budowania".</font> + <font color="#0000ff">Konfiguracja jest błędna, sprawdź szczegóły w widoku "Problemy budowania".</font> - <font color="#0000ff">Configuration unchanged, skipping qmake step.</font> - <font color="#0000ff">Konfiguracja niezmieniona, krok qmake opuszczony.</font> + <font color="#0000ff">Konfiguracja niezmieniona, krok qmake opuszczony.</font> Qt4ProjectManager::QMakeStepConfigWidget - <b>qmake:</b> No Qt version set. Cannot run qmake. <b>QMake:</b> Brak ustawionej wersji Qt. Nie można uruchomić qmake. - <b>qmake:</b> %1 %2 <b>qmake:</b> %1 %2 @@ -12760,7 +10634,6 @@ No project selected Qt4ProjectManager::Internal::QMakeStepFactory - qmake qmake @@ -12768,12 +10641,10 @@ No project selected Qt4ProjectManager::Internal::S60DeviceRunConfiguration - %1 on Symbian Device %1 na urządzeniu Symbian - QtS60DeviceRunConfiguration Konfiguracja uruchamiania urządzenia QtS60 @@ -12781,37 +10652,30 @@ No project selected Qt4ProjectManager::Internal::S60DeviceRunConfigurationWidget - Device: Urządzenie: - Name: Nazwa: - Arguments: Argumenty: - Installation file: Plik instalacyjny: - Device on serial port: Urządzenie na porcie szeregowym: - Queries the device for information Zapytaj urządzenie o informacje - Connecting... Łączenie... @@ -12819,7 +10683,6 @@ No project selected Qt4ProjectManager::Internal::S60DeviceRunConfigurationFactory - %1 on Symbian Device %1 na urządzeniu Symbian @@ -12827,121 +10690,98 @@ No project selected Qt4ProjectManager::Internal::S60DeviceRunControlBase - There is no device plugged in. Brak podłączonego urządzenia. - Executable file: %1 Plik wykonywalny: %1 - Debugger for Symbian Platform Debugger dla platformy Symbian - Package: %1 Deploying application to '%2'... Pakiet: %1 Umieszczanie aplikacji w "%2"... - Unable to remove existing file '%1': %2 Nie można usunąć istniejącego pliku "%1": %2 - Unable to rename file '%1' to '%2': %3 Nie można zmienić nazwy pliku "%1" na "%2": %3 - Deploying Instalowanie - Renaming new package '%1' to '%2' Zmienianie nazwy pakietu "%1" na "%2" - Removing old package '%1' Usuwanie starego pakietu "%1" - Package file not found Plik pakietu nie został odnaleziony - Failed to find package '%1': %2 Nie można odnaleźć pakietu "%1": %2 - Could not connect to phone on port '%1': %2 Check if the phone is connected and App TRK is running. Nie można nawiązać połączenia z telefonem na porcie "%1": %2 Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. - Could not create file %1 on device: %2 Nie można utworzyć pliku %1 na urządzeniu: %2 - Could not write to file %1 on device: %2 Nie można zapisać do pliku %1 na urządzeniu: %2 - Could not close file %1 on device: %2. It will be closed when App TRK is closed. Nie można zamknąć pliku %1 w urządzeniu: %2, będzie on zamknięty gdy aplikacja TRK zostanie zakończona. - Could not connect to App TRK on device: %1. Restarting App TRK might help. Nie można ustanowić połączenia z aplikacją TRK w urządzeniu: %1. Spróbuj ponownie uruchomić aplikację TRK. - The device '%1' has been disconnected Urządzenie "%1" zostało odłączone - Installing application... Instalowanie aplikacji... - Copying installation file... Kopiowanie pliku instalacyjnego... - Could not install from package %1 on device: %2 Nie można zainstalować z pakietu %1 na urządzeniu: %2 - Waiting for App TRK Oczekiwanie na aplikację TRK - Please start App TRK on %1. Proszę uruchomić aplikację TRK na porcie %1. - Canceled. Anulowano. @@ -12949,22 +10789,18 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::S60DeviceRunControl - Finished. Zakończono. - Starting application... Uruchamianie aplikacji... - Application running with pid %1. Aplikacja wykonuje się z pid %1. - Could not start application: %1 Nie można uruchomić aplikacji: %1 @@ -12972,17 +10808,14 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::S60DeviceDebugRunControl - Warning: Cannot locate the symbol file belonging to %1. Ostrzeżenie: nie można odnaleźć pliku z symbolami należącego do %1. - Launching debugger... Uruchamianie debuggera... - Debugging finished. Zakończono debugowanie. @@ -12990,12 +10823,10 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::S60EmulatorRunConfiguration - %1 in Symbian Emulator %1 w emulatorze Symbian - Qt Symbian Emulator RunConfiguration Konfiguracja uruchamiania emulatora Qt Symbian @@ -13003,12 +10834,10 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::S60EmulatorRunConfigurationWidget - Name: Nazwa: - Executable: Plik wykonywalny: @@ -13016,7 +10845,6 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::S60EmulatorRunConfigurationFactory - %1 in Symbian Emulator %1 w emulatorze Symbian @@ -13024,17 +10852,14 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::S60EmulatorRunControl - Starting %1... Uruchamianie %1... - [Qt Message] [Komunikat Qt] - %1 exited with code %2 %1 zakończone kodem %2 @@ -13042,17 +10867,14 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::S60Manager - Run in Emulator Uruchom w emulatorze - Run on Device Uruchom na urządzeniu - Debug on Device Zdebuguj na urządzeniu @@ -13060,59 +10882,46 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::Qt4PriFileNode - Headers Nagłówki - Sources Źródła - Forms Formularze - Resources Zasoby - Other files Inne pliki - - - Failed! Niepomyślnie zakończone! - Could not open the file for edit with SCC. Nie udało się otworzyć pliku do edycji przez SCC. - Could not set permissions to writable. Nie można ustawić prawa do zapisu. - There are unsaved changes for project file %1. Plik z projektem %1 posiada niezachowane zmiany. - Could not write project file %1. Nie można zapisać pliku projektu %1. - Error while reading PRO file %1: %2 Błąd podczas czytania pliku PRO %1: %2 @@ -13120,13 +10929,10 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::Qt4ProFileNode - - Error while parsing file %1. Giving up. Błąd podczas przetwarzania pliku %1. Przetwarzanie przerwane. - Could not find .pro file for sub dir '%1' in '%2' Nie można odnaleźć pliku .pro w podkatalogu "%1" w "%2" @@ -13134,12 +10940,10 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Qt4Manager - Failed opening project '%1': Project file does not exist Nie można otworzyć projektu "%1": projekt nie istnieje - Failed opening project '%1': Project already open Nie można otworzyć projektu "%1": projekt jest już otwarty @@ -13147,23 +10951,18 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::Qt4ProjectManagerPlugin - - Run qmake Uruchom qmake - Build Budowanie - Run qmake in %1 Uruchom qmake w %1 - Build in %1 Zbuduj w %1 @@ -13171,22 +10970,18 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::Qt4RunConfiguration - Clean Environment Czyste środowisko - System Environment Środowisko systemowe - Build Environment Środowisko budowania - Qt4 RunConfiguration Konfiguracja uruchamiania Qt4 @@ -13194,67 +10989,54 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::Qt4RunConfigurationWidget - Name: Nazwa: - Executable: Plik wykonywalny: - Reset to default Przywróć domyślne - Arguments: Argumenty: - Select Working Directory Wybierz katalog roboczy - Working directory: Katalog roboczy: - Run in terminal Uruchom w terminalu - Use debug version of frameworks (DYLD_IMAGE_SUFFIX=_debug) - Użyj pakietów w wersji do debuggowania (DYLD_IMAGE_SUFFIX=_debug) + Użyj pakietów w wersji do debugowania (DYLD_IMAGE_SUFFIX=_debug) - Run Environment Środowisko uruchamiania - Base environment for this runconfiguration: Podstawowe środowisko dla tej konfiguracji uruchamiania: - Clean Environment Czyste środowisko - System Environment Środowisko systemowe - Build Environment Środowisko budowania @@ -13262,82 +11044,66 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. QtModulesInfo - Core non-GUI classes used by other modules Podstawowe klasy używane przez inne moduły - Graphical user interface components Komponenty graficznego interfejsu użytkownika - Classes for network programming Klasy służące do programowania sieciowego - OpenGL support classes Klasy obsługujące OpenGL - Classes for database integration using SQL Klasy służące do integracji z bazami danych SQL - Classes for evaluating Qt Scripts Klasy wykonujące skrypty Qt - Additional Qt Script components Dodatkowe komponenty skryptów Qt - Classes for displaying the contents of SVG files Klasy służące do wyświetlania zawartości plików SVG - Classes for displaying and editing Web content Klasy służące do wyświetlania i modyfikacji zawartości stron internetowych - Classes for handling XML Klasy do obsługi XML - An XQuery/XPath engine for XML and custom data models Silnik XQuery / XPath dla XML i własnych modeli danych - Multimedia framework classes Klasy do obsługi multimediów - Classes for low-level multimedia functionality Klasy do niskopoziomowej obsługi multimediów - Classes that ease porting from Qt 3 to Qt 4 Klasy pomocne w przenoszeniu kodu z Qt 3 do Qt 4 - Tool classes for unit testing Klasy służące do testowania kodu, wykrywania regresji - Classes for Inter-Process Communication using the D-Bus Klasy do międzyprocesowej komunikacji z użyciem D-Bus @@ -13345,98 +11111,80 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::QtOptionsPageWidget - <specify a name> <Podaj nazwę> - <specify a qmake location> <Podaj ścieżkę do qmake> - Select qmake Executable Wskaż plik wykonywalny qmake - Select the MinGW Directory Wskaż katalog MinGW - Select Carbide Install Directory Wskaż katalog z zainstalowanym Carbide - Select S60 SDK Root Wskaż katalog główny S60 SDK - Select the CSL ARM Toolchain (GCCE) Directory Wskaż katalog zestawu narzędzi CSL ARM (GCCE) - Auto-detected Automatycznie wykryte - Manual Ustawione ręcznie - Building helpers Budowanie asystentów - <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>Plik:</td><td><pre>%1</pre></td></tr><tr><td>Ostatnio&nbsp;zmodyfikowany:</td><td>%2</td></tr><tr><td>Rozmiar:</td><td>%3 Bajtów</td></tr></table></body></html> - This Qt Version has a unknown toolchain. Ta wersja Qt posiada nieznany zestaw narzędzi. - Desktop Qt Version is meant for the desktop - Symbian Qt Version is meant for Symbian Symbian - Maemo Qt Version is meant for Maemo Maemo - Qt Simulator Qt Version is meant for Qt Simulator Symulator Qt - unkown No idea what this Qt Version is meant for! nieznana - Found Qt version %1, using mkspec %2 (%3) Znaleziono wersję Qt %1 używającą mkspec %2 (%3) @@ -13444,48 +11192,38 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::QtVersionManager - <not found> <nie znaleziony> - - Qt in PATH Qt w PATH - Name: Nazwa: - Source: Źródło: - mkspec: mkspec: - qmake: qmake: - Default: Domyślna: - Version: Wersja: - Debugging helper: Asystent debuggera: @@ -13493,13 +11231,11 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. QApplication - EditorManager Next Open Document in History Manager edytorów - EditorManager Previous Open Document in History Manager edytorów @@ -13508,12 +11244,10 @@ Sprawdź czy telefon jest podłączony i czy aplikacja TRK jest uruchomiona. Qt4ProjectManager::Internal::ConsoleAppWizard - Qt Console Application Aplikacja konsolowa Qt - Creates a project containing a single main.cpp file with a stub implementation. Preselects a desktop Qt for building the application if available. @@ -13525,7 +11259,6 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Qt4ProjectManager::Internal::ConsoleAppWizardDialog - This wizard generates a Qt4 console application project. The application derives from QCoreApplication and does not provide a GUI. Ten kreator generuje projekt aplikacji konsolowej Qt4. Aplikacja wywiedziona jest z QCoreApplication i nie używa GUI. @@ -13533,12 +11266,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Qt4ProjectManager::Internal::EmptyProjectWizard - Empty Qt Project Pusty projekt Qt - Creates a qmake-based project without any files. This allows you to create an application without any default classes. Tworzy pusty projekt bazujący na qmake. To pozwala na tworzenie aplikacji bez użycia domyślnych klas. @@ -13546,7 +11277,6 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Qt4ProjectManager::Internal::EmptyProjectWizardDialog - This wizard generates an empty Qt4 project. Add files to it later on by using the other wizards. Ten kreator generuje pusty projekt Qt4. Skorzystanie z innych kreatorów umożliwi dodanie do niego plików. @@ -13554,12 +11284,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Qt4ProjectManager::Internal::FilesPage - Class Information Informacje o klasie - Specify basic information about the classes for which you want to generate skeleton source code files. Podaj podstawowe informacje o klasach dla których chcesz wygenerować szkielet plików z kodem źródłowym. @@ -13567,12 +11295,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Qt4ProjectManager::Internal::GuiAppWizard - Qt Gui Application Aplikacja Gui Qt - Creates a Qt application for the desktop. Includes a Qt Designer-based main window. Preselects a desktop Qt for building the application if available. @@ -13581,7 +11307,6 @@ Preselects a desktop Qt for building the application if available. Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dostępna). - The template file '%1' could not be opened for reading: %2 Nie można odczytać pliku z szablonem "%1": %2 @@ -13589,12 +11314,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Qt4ProjectManager::Internal::GuiAppWizardDialog - This wizard generates a Qt4 GUI application project. The application derives by default from QApplication and includes an empty widget. Ten kreator generuje projekt aplikacji GUI Qt4. Aplikacja wywiedziona jest domyślnie z QApplication i zawiera pusty widżet. - Details Szczegóły @@ -13602,12 +11325,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Qt4ProjectManager::Internal::LibraryWizard - C++ Library Biblioteka 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>. Tworzy bibliotekę C++ bazującą na qmake. To pozwala na utworzenie:<ul><li>dzielonej biblioteki C++ zdolnej do ładowania wtyczek za pomocą <tt>QPluginLoader</tt></li><li>dzielonej lub statycznej biblioteki C++ którą można dowiązać do innego projektu</li></ul>. @@ -13615,32 +11336,26 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Qt4ProjectManager::Internal::LibraryWizardDialog - Shared library Biblioteka współdzielona - Statically linked library Biblioteka statycznie dowiązana - Qt 4 plugin Wtyczka Qt 4 - Type Typ - This wizard generates a C++ library project. Ten kreator generuje projekt biblioteki C++. - Details Szczegóły @@ -13648,12 +11363,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Qt4ProjectManager::Internal::ModulesPage - Select required modules Wybierz wymagane moduły - Select the modules you want to include in your project. The recommended modules for this project are selected by default. Wybierz moduły które chcesz włączyć do projektu. Rekomendowane moduły dla tegp projektu są domyślnie zaznaczone. @@ -13661,57 +11374,46 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos QObject - Pass Prawidłowy - Expected Failure Oczekiwany błąd - Failure Błąd - Expected Pass Oczekiwany prawidłowy - Warning Ostrzeżenie - Qt Warning Ostrzeżenie Qt - Qt Debug Komunikat debugowy Qt - Critical Błąd krytyczny - Fatal Błąd śmiertelny - Skipped Pominięty - Info Informacja @@ -13719,17 +11421,14 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos QTestLib::Internal::QTestOutputPane - Test Results Rezultaty testu - Result Rezultat - Message Komunikat @@ -13737,12 +11436,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos QTestLib::Internal::QTestOutputWidget - All Incidents Wszystkie zajścia - Show Only: Pokazuj tylko: @@ -13750,12 +11447,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Locator - Filters Filtry - Locator Lokalizator @@ -13763,102 +11458,82 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos RegExp::Internal::RegExpWindow - &Pattern: &Wzorzec: - &Escaped Pattern: &Zabezpieczony wzorzec: - &Pattern Syntax: Składnia &wzorca: - &Text: &Tekst: - Case &Sensitive Uwzględniaj &wielkość liter - &Minimal &Minimalistyczny - Index of Match: Indeks dopasowania: - Matched Length: Dopasowana długość: - Regular expression v1 Wyrażenie regularne v1 - Regular expression v2 Wyrażenie regularne v2 - Wildcard Dżoker - Fixed string Stały ciąg - Capture %1: Złapanie %1: - Match: Dopasowanie: - Regular Expression Wyrażenie regularne - Enter pattern from code... Wprowadź wzorzec z kodu... - Clear patterns Wyczyść wzorce - Clear texts Wyczyść teksty - Enter pattern from code Wprowadź wzorzec z kodu - Pattern Wzorzec @@ -13866,22 +11541,18 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos ResourceEditor::Internal::ResourceEditorPlugin - Creates a Qt Resource file (.qrc) that you can add to a Qt C++ project. Tworzy plik z zasobami Qt (.qrc) który można dodać do projektu Qt C++. - Qt Resource file Plik z zasobami Qt - &Undo &Cofnij - &Redo &Przywróć @@ -13889,7 +11560,6 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos ResourceEditor::Internal::ResourceEditorW - untitled nienazwany @@ -13897,7 +11567,6 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Snippets::Internal::SnippetsPlugin - Snippets Urywki @@ -13905,7 +11574,6 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Snippets::Internal::SnippetsWindow - Snippets Urywki @@ -13913,12 +11581,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Subversion::Internal::CheckoutWizard - Checks out a Subversion repository and tries to load the contained project. Wyciąga składnicę Subversion i próbuje załadować zawarty projekt. - Subversion Checkout Kopia robocza Subversion @@ -13926,17 +11592,14 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Subversion::Internal::CheckoutWizardPage - Location Położenie - Specify repository URL, checkout directory and path. Podaj URL składnicy, nazwę katalogu z kopią roboczą i ścieżkę do niego. - Repository: Składnica: @@ -13944,7 +11607,6 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Subversion::Internal::SettingsPageWidget - Subversion Command Komenda Subversion @@ -13952,296 +11614,238 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Subversion::Internal::SubversionPlugin - &Subversion &Subversion - Add Dodaj - Add "%1" Dodaj "%1" - Alt+S,Alt+A Alt+S,Alt+A - Diff Project Pokaż różnice w projekcie - Diff Current File Pokaż różnice w bieżącym pliku - Diff "%1" Pokaż różnice w "%1" - Alt+S,Alt+D Alt+S,Alt+D - Commit All Files Wyślij wszystkie pliki - Commit Current File Wyślij bieżący plik - Commit "%1" Wyślij "%1" - Alt+S,Alt+C Alt+S,Alt+C - Filelog Current File Dziennik bieżącego pliku - Filelog "%1" Dziennik pliku "%1" - Annotate Current File Dołącz adnotację do bieżącego pliku - Annotate "%1" Dołącz adnotację do "%1" - Commit Project Wyślij projekt - Commit Project "%1" Wyślij projekt "%1" - Diff Repository Pokaż zmiany w składnicy - Repository Status Stan składnicy - Log Repository Dziennik składnicy - Update Repository Uaktualnij składnicę - Describe... Opisz... - Project Status Stan projektu - Delete... Usuń... - Delete "%1"... Usuń "%1"... - Revert... Odwróć zmiany... - Revert "%1"... Odwróć zmiany w "%1"... - Diff Project "%1" Pokaż różnice w projekcie "%1" - Status of Project "%1" Pokaż stan projektu "%1" - Log Project Pokaż dziennik projektu - Log Project "%1" Pokaż dziennik projektu "%1" - Update Project Uaktualnij projekt - Update Project "%1" Uaktualnij projekt "%1" - Revert Repository... Odwróć zmiany w składnicy... - Commit Wyślij - Diff Selected Files Pokaż różnice w zaznaczonych plikach - &Undo &Cofnij - &Redo &Przywróć - Closing Subversion Editor Zamykanie edytora Subversion - Do you want to commit the change? Czy chcesz wysłać zmianę? - The commit message check failed. Do you want to commit the change? - Revert repository Odwróć zmiany w składnicy - Would you like to revert all changes to the repository? Czy chcesz odwrócić wszystkie zmiany w składnicy? - Revert failed: %1 Nie można odwrócić zmian: %1 - The file has been changed. Do you want to revert it? Plik został zmieniony. Czy chcesz odwrócić w nim zmiany? - Another commit is currently being executed. Trwa inna wysyłka. - There are no modified files. Brak zmodyfikowanych plików. - Cannot create temporary file: %1 Nie można utworzyć tymczasowego pliku: %1 - Describe Opisz - Revision number: Numer poprawki: - Executing in %1: %2 %3 Wykonywanie w %1: %2 %3 - No subversion executable specified! Nie podano komendy programu subversion! - Executing: %1 %2 Wykonywanie: %1 %2 - The process terminated with exit code %1. Proces zakończył się kodem wyjściowym %1. - The process terminated abnormally. Proces niepoprawnie zakończony. - Could not start subversion '%1'. Please check your settings in the preferences. Nie można uruchomić subversion "%1". Sprawdź stosowne ustawienia. - Subversion did not respond within timeout limit (%1 ms). Subversion nie odpowiedział w określonym czasie (%1 ms). @@ -14249,7 +11853,6 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos Subversion::Internal::SubversionSubmitEditor - Subversion Submit Wyślij do Subversion @@ -14257,18 +11860,14 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos TextEditor::BaseFileFind - - %1 found Ilość znalezionych: %1 - List of comma separated wildcard filters Lista filtrów z dżokerami oddzielona przecinkami - Use regular e&xpressions Używaj wyrażeń &regularnych @@ -14276,12 +11875,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos TextEditor::BaseTextDocument - untitled nienazwany - <em>Binary data</em> <em>Dane binarne</em> @@ -14289,17 +11886,14 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos TextEditor::BaseTextEditor - Print Document Wydruk dokumentu - <b>Error:</b> Could not decode "%1" with "%2"-encoding. Editing not possible. <b>Błąd:</b> Nie można odkodować "%1" używając kodowania "%2". Edycja nie jest możliwa. - Select Encoding Wybierz kodowanie @@ -14307,12 +11901,10 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos TextEditor::BaseTextEditorEditable - Line: %1, Col: %2 Linia: %1, kolumna: %2 - Line: %1, Col: 999 Linia: %1, kolumna: 999 @@ -14320,29 +11912,24 @@ Wstępnie wybiera wersję desktopową Qt do budowania aplikacji (jeśli jest dos TextEditor::Internal::CodecSelector - Text Encoding Kodowanie tekstu - The following encodings are likely to fit: Następujące kodowania będą najprawdopodobniej pasowały: - Select encoding for "%1".%2 Wybierz kodowanie dla "%1".%2 - Reload with Encoding Przeładuj z kodowaniem - Save with Encoding Zachowaj z kodowaniem @@ -14350,7 +11937,6 @@ Następujące kodowania będą najprawdopodobniej pasowały: TextEditor::Internal::ColorScheme - Not a color scheme file. Nie jest to plik ze schematem kolorów. @@ -14358,7 +11944,6 @@ Następujące kodowania będą najprawdopodobniej pasowały: TextEditor::Internal::FindInCurrentFile - Current File Bieżący plik @@ -14366,27 +11951,22 @@ Następujące kodowania będą najprawdopodobniej pasowały: TextEditor::Internal::FindInFiles - Files on File System Pliki w systemie plików - &Directory: &Katalog: - &Browse &Przeglądaj - File &pattern: &Wzorzec pliku: - Directory to search Katalog w którym przeszukiwać @@ -14394,7 +11974,6 @@ Następujące kodowania będą najprawdopodobniej pasowały: TextEditor::Internal::FontSettings - Customized Własny @@ -14402,52 +11981,42 @@ Następujące kodowania będą najprawdopodobniej pasowały: TextEditor::FontSettingsPage - Font && Colors Czcionki i kolory - Copy Color Scheme Skopiuj schemat kolorów - Color scheme name: Nazwa schematu kolorów: - %1 (copy) %1 (kopia) - Delete Color Scheme Usuń schemat kolorów - Are you sure you want to delete this color scheme permanently? Czy jesteś pewien że chcesz usunąć ten schemat kolorów bezpowrotnie? - Delete Usuń - Color Scheme Changed Schemat kolorów został zmieniony - The color scheme "%1" was modified, do you want to save the changes? Schemat kolorów "%1" został zmodyfikowany, czy chcesz zachować zmiany? - Discard Odrzuć @@ -14455,12 +12024,10 @@ Następujące kodowania będą najprawdopodobniej pasowały: TextEditor::Internal::LineNumberFilter - Line %1 Linia %1 - Line in current document Linia w bieżącym dokumencie @@ -14468,342 +12035,274 @@ Następujące kodowania będą najprawdopodobniej pasowały: TextEditor::TextEditorActionHandler - &Undo &Cofnij - &Redo &Przywróć - Select Encoding... Wybierz kodowanie... - Auto-&indent Selection Automatyczne wc&ięcia dla selekcji - Ctrl+I Ctrl+I - Meta Meta - Ctrl Ctrl - &Rewrap Paragraph Zawiń &paragraf - %1+E, R %1+E, R - &Visualize Whitespace Pokazuj &białe znaki - %1+E, %2+V %1+E, %2+V - Clean Whitespace Usuń końcowe białe znaki - Enable Text &Wrapping Za&wijanie tekstu - %1+E, %2+W %1+E, %2+W - (Un)Comment &Selection Wykomentuj / odkomentuj &selekcję - Ctrl+/ Ctrl+/ - Cut &Line Wytnij &linię - Shift+Del Shift+Del - Delete &Line Usuń &linię - Collapse Zwiń - Ctrl+< Ctrl+< - Expand Rozwiń - Ctrl+> Ctrl+> - (Un)&Collapse All &Zwiń / rozwiń wszystko - Increase Font Size Zwiększ rozmiar czcionki - Ctrl++ Ctrl++ - Decrease Font Size Zmniejsz rozmiar czcionki - Ctrl+- Ctrl+- - Reset Font Size Przywróć domyślny rozmiar czcionki - Ctrl+0 Ctrl+0 - Go to Block Start Przejdź do początku bloku - Go to Block End Przejdź do końca bloku - Go to Block Start With Selection Zaznacz do początku bloku - Go to Block End With Selection Zaznacz do końca bloku - Ctrl+[ Ctrl+[ - Ctrl+] Ctrl+] - Ctrl+{ Ctrl+{ - Ctrl+} Ctrl+} - Select Block Up Zaznacz zewnętrzny blok - Ctrl+U Ctrl+U - Select Block Down Zaznacz wewnętrzny blok - Move Line Up Przenieś linię w górę - Ctrl+Shift+Up Ctrl+Shift+Up - Move Line Down Przenieś linię w dół - Ctrl+Shift+Down Ctrl+Shift+Down - Copy Line Up Skopiuj linię i wstaw powyżej - Ctrl+Alt+Up Ctrl+Alt+Up - Copy Line Down Skopiuj linię i wstaw poniżej - Ctrl+Alt+Down Ctrl+Alt+Down - Join Lines Złącz linie - Ctrl+J Ctrl+J - Goto Line Start Przejdź do początku linii - Goto Line End Przejdź do końca linii - Goto Next Line Przejdź do następnej linii - Goto Previous Line Przejdź do poprzedniej linii - Goto Previous Character Przejdź do poprzedniego znaku - Goto Next Character Przejdź do następnego znaku - Goto Previous Word Przejdź do poprzedniego słowa - Goto Next Word Przejdź do następnego słowa - Goto Line Start With Selection Zaznacz do początku linii - Goto Line End With Selection Zaznacz do końca linii - Goto Next Line With Selection Zaznacz do następnej linii - Goto Previous Line With Selection Zaznacz do poprzedniej linii - Goto Previous Character With Selection Zaznacz do poprzedniego znaku - Goto Next Character With Selection Zaznacz do następnego znaku - Goto Previous Word With Selection Zaznacz do poprzedniego słowa - Goto Next Word With Selection Zaznacz do następnego słowa - <line number> <numer linii> @@ -14811,42 +12310,34 @@ Następujące kodowania będą najprawdopodobniej pasowały: TextEditor::Internal::TextEditorPlugin - Creates a text file. The default file extension is <tt>.txt</tt>. You can specify a different extension as part of the filename. Tworzy plik tekstowy. Domyślnym rozszerzeniem pliku jest <tt>.txt</tt>. Istnieje możliwość podania innego rozszerzenia jako część nazwy pliku. - Text File Plik tekstowy - General Ogólne - Triggers a completion in this scope Przełącza uzupełnianie kodu w tym zakresie - Ctrl+Space Ctrl+Space - Meta+Space Meta+Space - Triggers a quick fix in this scope Uaktywnia w tym zakresie szybką poprawkę - Alt+Return Alt+Return @@ -14854,152 +12345,122 @@ Następujące kodowania będą najprawdopodobniej pasowały: TextEditor::TextEditorSettings - Text Tekst - Link Odsyłacz - Selection Zaznaczone - Line Number Numer linii - Search Result Wyniki wyszukiwania - Search Scope Zakres wyszukiwania - Parentheses Nawiasy - Current Line Bieżąca linia - Current Line Number Numer bieżącej linii - Occurrences Wystąpienia - Unused Occurrence Nieużywane wystąpienie - Renaming Occurrence Wystąpienie podczas zmieniania nazwy - Number Numer - String Ciąg - Type Typ - Keyword Słowo kluczowe - Operator Operator - Preprocessor Preprocesor - Label Etykieta - Comment Komentarz - Doxygen Comment Komentarz Doxygena - Doxygen Tag Tag Doxygena - Visual Whitespace Widoczny biały znak - Disabled Code Nieaktywny kod - Added Line Dodana linia - Removed Line Usunięta linia - Diff File Różnice w pliku - Diff Location Różnice w położeniu - Behavior Zachowanie - Display Wyświetlanie @@ -15007,32 +12468,26 @@ Następujące kodowania będą najprawdopodobniej pasowały: VCSBase::BaseCheckoutWizard - Cannot Open Project Nie można otworzyć projektu - Failed to open project in '%1'. Nie można otworzyć projektu w "%1". - Could not find any project files matching (%1) in the directory '%2'. Nie można odnaleźć żadnych plików z projektami pasujących do (%1) w katalogu "%2". - The Project Explorer is not available. Przeglądarka projektów nie jest dostępna. - '%1' does not exist. "%1" nie istnieje. - Unable to open the project '%1'. Nie można otworzyć projektu "%1". @@ -15040,27 +12495,22 @@ Następujące kodowania będą najprawdopodobniej pasowały: VCSBase::ProcessCheckoutJob - Unable to start %1: %2 Nie można uruchomić %1: %2 - The process terminated with exit code %1. Proces zakończył się kodem wyjściowym %1. - The process returned exit code %1. Proces zwrócił kod wyjściowy %1. - The process terminated in an abnormal way. Proces niepoprawnie zakończony. - Stopping... Zatrzymywanie... @@ -15068,22 +12518,18 @@ Następujące kodowania będą najprawdopodobniej pasowały: VCSBase::Internal::CheckoutProgressWizardPage - Checkout Kopia robocza - Checkout started... Rozpoczęto tworzenie kopii roboczej... - Failed. Niepomyślnie zakończone. - Succeeded. Pomyślnie zakończone. @@ -15091,27 +12537,22 @@ Następujące kodowania będą najprawdopodobniej pasowały: VCSBase::Internal::NickNameDialog - Name Imię - E-mail Email - Alias Alias - Alias e-mail Alias email - Cannot open '%1': %2 Nie można otworzyć "%1": %2 @@ -15119,12 +12560,10 @@ Następujące kodowania będą najprawdopodobniej pasowały: VCSBase::SubmitFileModel - State Stan - File Plik @@ -15132,17 +12571,14 @@ Następujące kodowania będą najprawdopodobniej pasowały: VCSBase - Version Control System kontroli wersji - Common Ogólne - Project from Version Control Projekt z systemu kontroli wersji @@ -15150,17 +12586,14 @@ Następujące kodowania będą najprawdopodobniej pasowały: VCSBase::VCSBaseEditor - Annotate "%1" Dołącz adnotację do "%1" - Copy "%1" Skopiuj "%1" - Describe change %1 Opisz zmianę %1 @@ -15168,17 +12601,14 @@ Następujące kodowania będą najprawdopodobniej pasowały: VCSBase::VCSBaseOutputWindow - Open "%1" Otwórz "%1" - Clear Wyczyść - Version Control System kontroli wersji @@ -15186,57 +12616,46 @@ Następujące kodowania będą najprawdopodobniej pasowały: VCSBase::VCSBaseSubmitEditor - Check message - Insert name... Wstaw nazwę... - Prompt to submit Pytaj przed wysłaniem zmian do serwera - Submit Message Check failed - + Błąd sprawdzania opisu zmiany - Executing %1 Wykonywanie %1 - Executing [%1] %2 Wykonywanie [%1] %2 - Unable to open '%1': %2 Nie można otworzyć "%1": %2 - The check script '%1' could not be started: %2 - The check script '%1' timed out. - The check script '%1' crashed - The check script returned exit code %1. @@ -15244,7 +12663,6 @@ Następujące kodowania będą najprawdopodobniej pasowały: Welcome::Internal::CommunityWelcomePage - News && Support Nowiny i wsparcie @@ -15252,42 +12670,34 @@ Następujące kodowania będą najprawdopodobniej pasowały: BookmarkWidget - Delete Folder Usuń katalog - Rename Folder Zmień nazwę katalogu - Show Bookmark Pokaż zakładkę - Show Bookmark in New Tab Pokaż zakładkę w nowej karcie - Delete Bookmark Usuń zakładkę - Rename Bookmark Zmień nazwę zakładki - Add Dodaj - Remove Usuń @@ -15295,23 +12705,18 @@ Następujące kodowania będą najprawdopodobniej pasowały: BookmarkManager - Bookmarks Zakładki - Remove Usuń - You are going to delete a Folder which will also<br>remove its content. Are you sure you would like to continue? - Zamierzasz usunąć katalog a to spowoduje usunięcie<br>jego zawartości. Jestes pewien że chcesz kontynuować? + Zamierzasz usunąć katalog a to spowoduje usunięcie<br>jego zawartości. Jesteś pewien że chcesz kontynuować? - - New Folder Nowy katalog @@ -15319,12 +12724,10 @@ Następujące kodowania będą najprawdopodobniej pasowały: ContentWindow - Open Link Otwórz odsyłacz - Open Link as New Page Otwórz odsyłacz na nowej stronie @@ -15332,12 +12735,10 @@ Następujące kodowania będą najprawdopodobniej pasowały: HelpViewer - <title>about:blank</title> <title>o:pusty</title> - <title>Error 404...</title><div align="center"><br><br><h1>The page could not be found</h1><br><h3>'%1'</h3></div> <title>Błąd 404...</title><div align="center"><br><br><h1>Strona nie została znaleziona</h1><br><h3>'%1'</h3></div> @@ -15345,17 +12746,14 @@ Następujące kodowania będą najprawdopodobniej pasowały: IndexWindow - &Look for: Po&szukuj: - Open Link Otwórz odsyłacz - Open Link as New Page Otwórz odsyłacz na nowej stronie @@ -15363,62 +12761,50 @@ Następujące kodowania będą najprawdopodobniej pasowały: SharedTools::QrcEditor - Add Files Dodaj pliki - Add Prefix Dodaj przedrostek - Copy Skopiuj - Skip Pomiń - Abort Przerwij - Invalid file location Niepoprawne położenie pliku - 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. - + Plik %1 nie leży wewnątrz katalogu pliku z zasobami. Istnieje teraz możliwość skopiowania tego pliku do właściwego miejsca. - Choose copy location Wybierz docelowe położenie kopii - Overwrite failed Nie można nadpisać - Could not overwrite file %1. Nie można nadpisać pliku %1. - Copying failed Błąd kopiowania - Could not copy the file to %1. Nie można skopiować pliku do %1. @@ -15426,72 +12812,58 @@ Następujące kodowania będą najprawdopodobniej pasowały: SharedTools::ResourceView - Add Files... Dodaj pliki... - Change Alias... Zmień alias... - Add Prefix... Dodaj przedrostek... - Change Prefix... Zmień przedrostek... - Change Language... Zmień język... - Remove Item Usuń element - Open file Otwórz plik - All files (*) Wszystkie pliki (*) - Change Prefix Zmień przedrostek - Input Prefix: Wprowadź przedrostek: - Change Language Zmień język - Language: Język: - Change File Alias Zmień alias pliku - Alias: Alias: @@ -15499,177 +12871,143 @@ Następujące kodowania będą najprawdopodobniej pasowały: MainWindow - Bauhaus MainWindowClass Bauhaus - &File &Plik - &New... &Nowy... - Ctrl+N - &Open... &Otwórz... - Ctrl+O Ctrl+O - Recent Files Ostatnie pliki - &Save &Zachowaj - Ctrl+S Ctrl+S - Save &As... Zachowaj j&ako... - &Preview &Podgląd - Ctrl+R Ctrl+R - &Preview with Debug - Ctrl+D Ctrl+D - &Quit Za&kończ - &Edit &Edycja - Ctrl+Z Ctrl+Z - Ctrl+Y Ctrl+Y - Ctrl+Shift+Z Ctrl+Shift+Z - &Copy S&kopiuj - &Cut Wy&tnij - &Paste Wk&lej - &Delete &Usuń - Del - + Del - Backspace - + Backspace - &View &Widok - &Help P&omoc - &About... Inform&acje o... - Properties Właściwości - Could not open file <%1> Nie można otworzyć pliku <%1> - Qml Errors: Błędy Qml: - %1 %2:%3 - %4 %1 %2:%3 - %4 - %1:%2 - %3 %1:%2 - %3 - Ctrl+Q Ctrl+Q @@ -15677,197 +13015,162 @@ Następujące kodowania będą najprawdopodobniej pasowały: MimeType - CMake Project file Plik projektu CMake - C Source file Plik źródłowy C - C Header file Plik nagłówkowy C - C++ Header file Plik nagłówkowy C++ - C++ header Plik nagłówkowy C++ - C++ Source file Plik źródłowy C++ - C++ source code Kod źródłowy C++ - Objective-C source code Kod źródłowy Objective-C - CVS submit template - Qt Designer file Plik Qt Designer - Generic Qt Creator Project file Ogólny plik projektu Qt Creator - Generic Project Files Ogólne pliki projektu - Generic Project Include Paths Ogólne ścieżki do nagłówków projektu - Generic Project Configuration File Ogólny plik z konfiguracją projektu - Perforce submit template - QML file Plik QML - Qt Project file Plik projektu Qt - Qt Project include file Plik nagłówkowy projektu Qt - message catalog katalog komunikatów - Qt Script file Plik ze skryptem Qt - BMP image Plik graficzny BMP - GIF image Plik graficzny GIF - ICO image Plik graficzny ICO - JPEG image Plik graficzny JPEG - MNG video Plik wideo MNG - PBM image Plik graficzny PBM - PGM image Plik graficzny PGM - PNG image Plik graficzny PNG - PPM image Plik graficzny PPM - SVG image Plik graficzny SVG - TIFF image Plik graficzny TIFF - XBM image Plik graficzny XBM - XPM image Plik graficzny XPM - QML Project file Plik projektu QML - + Qt Project feature file + + + Qt Resource file Plik z zasobami Qt - Subversion submit template - Plain text document Dokument tekstowy - XML document Dokument XML - Differences between files Różnice pomiędzy plikami @@ -15875,84 +13178,69 @@ Następujące kodowania będą najprawdopodobniej pasowały: Locator::Internal::DirectoryFilterOptions - Name: Nazwa: - Specify file name filters, separated by comma. Filters may contain wildcards. Podaj filtry nazw plików. oddzielone przecinkiem. Filtry mogą zawierać dżokery. - Prefix: Przedrostek: - 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. Podaj krótkie słowo lub skrót który będzie użyty do odfiltrowania plików w podanych katalogach. Aby uaktywnić ten filtr wpisz w lokalizatorze powyższy skrót i po spacji podaj szukane słowo. - Limit to prefix Ogranicz aktywność filtru: aktywny tylko po wpisaniu przedrostka - Add... Dodaj... - Edit... Zmodyfikuj... - Remove Usuń - Directories: Katalogi: - File types: - Typy plików: + Typy plików: Locator::Internal::FileSystemFilterOptions - Filter configuration Konfiguracja filtra - Prefix: Przedrostek: - Limit to prefix Ogranicz aktywność filtru: aktywny tylko po wpisaniu przedrostka - Include hidden files Włącz ukryte pliki - Filter: Filtr: @@ -15960,32 +13248,26 @@ aktywny tylko po wpisaniu przedrostka Locator::Internal::SettingsWidget - Configure Filters Konfiguracja filtrów - Add Dodaj - Remove Usuń - Edit Zmodyfikuj - min min - Refresh interval: Odświeżanie co: @@ -15993,7 +13275,6 @@ aktywny tylko po wpisaniu przedrostka CppTools::Internal::CppLocatorFilter - Classes and Methods Klasy i metody @@ -16001,36 +13282,29 @@ aktywny tylko po wpisaniu przedrostka Debugger::Internal::TermGdbAdapter - Debugger Error - Błąd debuggera + Błąd debuggera Locator::Internal::DirectoryFilter - Generic Directory Filter Ogólny filtr katalogów - Filter Configuration Konfiguracja filtra - - Select Directory Wybierz katalog - %1 filter update: 0 files Uaktualnienie filtra %1: 0 plików - %1 filter update: %n files Uaktualnienie filtra %1: %n plik @@ -16039,7 +13313,6 @@ aktywny tylko po wpisaniu przedrostka - %1 filter update: canceled Uaktualnienie filtra %1: anulowano @@ -16047,7 +13320,6 @@ aktywny tylko po wpisaniu przedrostka Locator::Internal::FileSystemFilter - Files in file system Pliki w systemie plików @@ -16055,18 +13327,15 @@ aktywny tylko po wpisaniu przedrostka Locator::ILocatorFilter - Filter Configuration Konfiguracja filtra - Limit to prefix Ogranicz aktywność filtru: aktywny tylko po wpisaniu przedrostka - Prefix: Przedrostek: @@ -16074,7 +13343,6 @@ aktywny tylko po wpisaniu przedrostka Locator::Internal::LocatorFiltersFilter - Available filters Dostępne filtry @@ -16082,7 +13350,6 @@ aktywny tylko po wpisaniu przedrostka Locator::Internal::LocatorPlugin - Indexing Indeksowanie @@ -16090,32 +13357,26 @@ aktywny tylko po wpisaniu przedrostka Locator::Internal::LocatorWidget - Refresh Odśwież - Configure... Konfiguruj... - Locate... Znajdź... - Type to locate Wpisz aby znaleźć - Options Opcje - <type here> <wpisz tutaj> @@ -16123,7 +13384,6 @@ aktywny tylko po wpisaniu przedrostka Locator::Internal::OpenDocumentsFilter - Open documents Otwarte dokumenty @@ -16131,7 +13391,6 @@ aktywny tylko po wpisaniu przedrostka Locator::Internal::SettingsPage - %1 (prefix: %2) %1 (przedrostek: %2) @@ -16139,27 +13398,22 @@ aktywny tylko po wpisaniu przedrostka Qt4ProjectManager::Internal::S60Devices::Device - Id: Identyfikator: - Name: Nazwa: - EPOC: EPOC: - Tools: Narzędzia: - Qt: Qt: @@ -16167,37 +13421,30 @@ aktywny tylko po wpisaniu przedrostka trk::BluetoothListener - %1: Stopping listener %2... - + %1: Zatrzymywanie odbiornika %2... - %1: Starting Bluetooth listener %2... - + %1: Uruchamianie odbiornika Bluetooth %2... - Unable to run '%1': %2 Nie można uruchomić "%1": %2 - %1: Bluetooth listener running (%2). - + %1: Odbiornik Bluetooth uruchomiony (%2). - %1: Process %2 terminated with exit code %3. %1: Proces %2 zakończył się kodem wyjściowym %3. - %1: Process %2 crashed. %1: Proces %2 zakończył pracę błędem. - %1: Process error %2: %3 %1: Błąd procesu %2: %3 @@ -16205,64 +13452,50 @@ aktywny tylko po wpisaniu przedrostka QmlParser - Illegal character Niepoprawny znak - Unclosed string at end of line Niedomknięty ciąg na końcu linii - Illegal escape squence - + Niepoprawna sekwencja specjalna - Illegal unicode escape sequence - + Niepoprawna unicodowa sekwencja specjalna - Unclosed comment at end of file Niedomknięty komentarz na końcu pliku - Illegal syntax for exponential number Niepoprawna składnia liczby o postaci wykładniczej - Identifier cannot start with numeric literal Identyfikator nie może rozpoczynać się cyfrą - Unterminated regular expression literal Brak znaku kończącego stałą znakową w wyrażeniu regularnym - Invalid regular expression flag '%0' Niepoprawna flaga "%0" wyrażenia regularnego - - Syntax error Błąd składni - Unexpected token `%1' Nieoczekiwany znak "%1" - - Expected token `%1' Oczekiwany znak "%1" @@ -16270,27 +13503,22 @@ aktywny tylko po wpisaniu przedrostka trk::promptStartCommunication - Connection on %1 canceled. Anulowano połączenie z %1. - Waiting for App TRK Oczekiwanie na aplikację TRK - Waiting for App TRK to start on %1... Oczekiwanie na uruchomienie aplikacji TRK na %1... - Waiting for Bluetooth Connection Oczekiwanie na połączenie Bluetooth - Connecting to %1... Łączenie z %1... @@ -16298,21 +13526,18 @@ aktywny tylko po wpisaniu przedrostka trk::BaseCommunicationStarter - %1: timed out after %n attempts using an interval of %2ms. - - - - + + %1: bez odpowiedzi po %n próbie z interwałem %2ms. + %1: bez odpowiedzi po %n próbach z interwałem %2ms. + %1: bez odpowiedzi po %n próbach z interwałem %2ms. - %1: Connection attempt %2 succeeded. %1: %2 próba połączenia zakończona pomyślnie. - %1: Connection attempt %2 failed: %3 (retrying)... %1: %2 próba połączenia zakończona niepomyślnie: %3 (ponowna próba)... @@ -16320,40 +13545,33 @@ aktywny tylko po wpisaniu przedrostka 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 Aplikacja TRK: v%1.%2, protokół 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 - big endian big endian - little endian little endian - , type size: %1 will be inserted into s60description - , float size: %1 will be inserted into s60description @@ -16362,52 +13580,42 @@ aktywny tylko po wpisaniu przedrostka CommandMappings - Command Mappings Mapa komend - Command Komenda - Label Etykieta - Target Produkt docelowy - Defaults Domyślne - Import... Importuj... - Export... Eksportuj... - Target Identifier Identyfikator produktu docelowego - Target: Produkt docelowy: - Reset Przywróć @@ -16415,79 +13623,63 @@ aktywny tylko po wpisaniu przedrostka Git::Internal::StashDialog - Stashes Odłożone zmiany - Name Nazwa - Branch Gałąź - Message Komunikat - Delete all... Usuń wszystkie... - Delete... Usuń... - Show Pokaż - Restore... Przywróć... - Restore to branch... Restore a git stash to new branch to be created Przywróć do gałęzi... - Refresh Odśwież - <No repository> <Brak składnicy> - Repository: %1 Składnica: %1 - - Delete stashes Usuń odłożone zmiany - Do you want to delete all stashes? Czy chcesz usunąć wszystkie odłożone zmiany? - Do you want to delete %n stash(es)? Czy chcesz usunąć %n odłożoną zmianę? @@ -16496,49 +13688,40 @@ aktywny tylko po wpisaniu przedrostka - Repository modified Składnica zmodyfikowana - %1 cannot be restored since the repository is modified. You can choose between stashing the changes or discarding them. Nie można przywrócić %1 ponieważ składnica została zmodyfikowana. Możesz odłożyć zmiany lub je porzucić. - Stash Odłóż - Discard Odrzuć - Restore Stash to Branch Przywróć odłożone zmiany do gałęzi - Branch: Gałąź: - Stash Restore Przywróć odłożone zmiany - Would you like to restore %1? Czy chcesz przywrócić %1? - Error restoring %1 Błąd podczas przywracania %1 @@ -16546,42 +13729,34 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::MercurialCommitPanel - General Information Ogólne informacje - Repository: Składnica: - repository składnica - Branch: Gałąź: - branch gałąź - Commit Information - + Informacje o zmianach - Author: Autor: - Email: Email: @@ -16589,77 +13764,62 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::OptionsPage - Form Formularz - Configuration Konfiguracja - Command: Komenda: - User Użytkownik - Username to use by default on commit. - Default username: Domyślna nazwa użytkownika: - Email to use by default on commit. - Miscellaneous Różne - Log count: Licznik dziennika: - The number of recent commit logs to show, choose 0 to see all enteries - + Liczba ostatnich zmian wyświetlanych w dzienniku, wybierz 0 aby ujrzeć wszystkie zmiany - Timeout: Czas oczekiwania: - s s - Prompt on submit Pytaj przed wysłaniem zmian do serwera - Mercurial Mercurial - Default email: Domyślny adres email: @@ -16667,17 +13827,14 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::RevertDialog - Revert Odwróć zmiany - Specify a revision other than the default? Podaj inną poprawkę niż domyślna - Revision: Poprawka: @@ -16685,27 +13842,22 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::SrcDestDialog - Dialog Dialog - Default Location Domyślne położenie - Local filesystem: Lokalny system plików: - e.g. https://[user[:pass]@]host[:port]/[path] np. https://[użytkownik[:hasło]@]host[:port]/[ścieżka] - Specify Url: Podaj URL: @@ -16713,12 +13865,10 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::Internal::AddTargetDialog - Add target Dodaj produkt docelowy - Target: Produkt docelowy: @@ -16726,7 +13876,6 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::Internal::DoubleTabWidget - DoubleTabWidget PodwójnyTabWidżet @@ -16734,7 +13883,6 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::Internal::TargetSettingsWidget - TargetSettingsWidget WidżetDoUstawieńProduktuDocelowego @@ -16742,72 +13890,58 @@ Możesz odłożyć zmiany lub je porzucić. BehaviorDialog - Dialog Dialog - Type: Typ: - Id: Identyfikator: - Property Name: Nazwa właściwości: - Animation Animacja - SpringFollow Sprężysta gonitwa - Settings Ustawienia - Duration: Czas trwania: - Curve: Krzywa: - easeNone Żadna - Source: Źródło: - Velocity: Prędkość: - Spring: Sprężyna: - Damping: Tłumienie: @@ -16815,7 +13949,6 @@ Możesz odłożyć zmiany lub je porzucić. GradientDialog - Edit Gradient Zmodyfikuj gradient @@ -16823,304 +13956,242 @@ Możesz odłożyć zmiany lub je porzucić. GradientEditor - Form Formularz - Gradient Editor Edytor gradientu - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. Ten obszar pokazuje podgląd edytowanego gradientu. Możesz tutaj również zmieniać parametry specyficzne dla typu gradientu, takie jak: punkt początkowy i końcowy, promień, itp... poprzez przeciągnięcie i upuszczenie uchwytu. - 1 1 - 2 2 - 3 3 - 4 4 - 5 5 - Gradient Stops Editor Edytor punktów gradientu - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. Ten obszar pozwala na edycję punktów gradientu. Aby skopiować istniejący punkt kliknij dwukrotnie na jego uchwyt. W celu stworzenia nowego punktu kliknij dwukrotnie poza istniejącymi uchwytami punków. Przeciągnij i upuść uchwyt aby go przesunąć. Naciśnij prawy przycisk myszy aby pokazać menu z dodatkowymi akcjami. - Zoom Powiększ - Reset Zoom Normalny rozmiar - Position Pozycja - Hue Barwa - H H - Saturation Nasycenie - S S - Sat Nasycenie - Value Wartość - V V - Val Wartość - Alpha Kanał alfa - A A - Type Typ - Spread Rozciąganie - Color Kolor - Current stop's color Kolor bieżącego punktu - Show HSV specification Pokaż specyfikację HSV - HSV HSV - Show RGB specification Pokaż specyfikację RGB - RGB RGB - Current stop's position Pozycja bieżącego punktu - % % - Zoom In Powiększ - Zoom Out Pomniejsz - Toggle details extension Przełącz rozszerzenie ze szczegółami - > > - Linear Type Typ liniowy - ... ... - Radial Type Typ radialny - Conical Type Typ stożkowy - Pad Spread Powtarzaj punkt brzegowy - Repeat Spread Powtarzaj cały zakres - Reflect Spread Powtarzaj z odbiciami - Start X Początek X - Start Y Początek Y - Final X Koniec X - Final Y Koniec Y - - Central X Środek X - - Central Y Środek Y - Focal X Ogniskowa X - Focal Y Ogniskowa Y - Radius Promień - Angle Kąt - Linear Liniowy - Radial Radialny - Conical Stożkowy - Pad Brak - Repeat Powtórzone - Reflect Odbite @@ -17128,7 +14199,6 @@ Możesz odłożyć zmiany lub je porzucić. QtGradientDialog - Edit Gradient Zmodyfikuj gradient @@ -17136,304 +14206,242 @@ Możesz odłożyć zmiany lub je porzucić. QtGradientEditor - Form Formularz - Gradient Editor Edytor gradientu - This area shows a preview of the gradient being edited. It also allows you to edit parameters specific to the gradient's type such as start and final point, radius, etc. by drag & drop. Ten obszar pokazuje podgląd edytowanego gradientu. Możesz tutaj również zmieniać parametry specyficzne dla typu gradientu, takie jak: punkt początkowy i końcowy, promień, itp... poprzez przeciągnięcie i upuszczenie uchwytu. - 1 1 - 2 2 - 3 3 - 4 4 - 5 5 - Gradient Stops Editor Edytor punktów gradientu - This area allows you to edit gradient stops. Double click on the existing stop handle to duplicate it. Double click outside of the existing stop handles to create a new stop. Drag & drop the handle to reposition it. Use right mouse button to popup context menu with extra actions. Ten obszar pozwala na edycję punktów gradientu. Aby skopiować istniejący punkt kliknij dwukrotnie na jego uchwyt. W celu stworzenia nowego punktu kliknij dwukrotnie poza istniejącymi uchwytami punków. Przeciągnij i upuść uchwyt aby go przesunąć. Naciśnij prawy przycisk myszy aby pokazać menu z dodatkowymi akcjami. - Zoom Powiększ - Reset Zoom Normalny rozmiar - Position Pozycja - Hue Barwa - H H - Saturation Nasycenie - S S - Sat Nasycenie - Value Wartość - V V - Val Wartość - Alpha Kanał alfa - A A - Type Typ - Spread Rozciąganie - Color Kolor - Current stop's color Kolor bieżącego punktu - Show HSV specification Pokaż specyfikację HSV - HSV HSV - Show RGB specification Pokaż specyfikację RGB - RGB RGB - Current stop's position Pozycja bieżącego punktu - % % - Zoom In Powiększ - Zoom Out Pomniejsz - Toggle details extension Przełącz rozszerzenie ze szczegółami - > > - Linear Type Typ liniowy - ... ... - Radial Type Typ radialny - Conical Type Typ stożkowy - Pad Spread Powtarzaj punkt brzegowy - Repeat Spread Powtarzaj cały zakres - Reflect Spread Powtarzaj z odbiciami - Start X Początek X - Start Y Początek Y - Final X Koniec X - Final Y Koniec Y - - Central X Środek X - - Central Y Środek Y - Focal X Ogniskowa X - Focal Y Ogniskowa Y - Radius Promień - Angle Kąt - Linear Liniowy - Radial Radialny - Conical Stożkowy - Pad Brak - Repeat Powtórzone - Reflect Odbite @@ -17441,46 +14449,34 @@ Możesz odłożyć zmiany lub je porzucić. QtGradientView - Gradient View Widok gradientów - - New... Nowy... - - Edit... Zmodyfikuj... - - Rename Zmień nazwę - - Remove Usuń - Grad Grad - Remove Gradient Usuń gradient - Are you sure you want to remove the selected gradient? Czy chcesz usunąć zaznaczony gradient? @@ -17488,8 +14484,6 @@ Możesz odłożyć zmiany lub je porzucić. QtGradientViewDialog - - Select Gradient Wybierz gradient @@ -17497,27 +14491,22 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::Internal::SettingsPage - Form Formularz - Snapping Przyciąganie - Item spacing Odstępy - Snap margin Margines - Qt Quick Designer Qt Quick Designer @@ -17525,7 +14514,6 @@ Możesz odłożyć zmiany lub je porzucić. MaemoConfigTestDialog - Device Configuration Test Test konfiguracji urządzenia @@ -17533,122 +14521,98 @@ Możesz odłożyć zmiany lub je porzucić. MaemoSettingsWidget - Maemo Device Configurations Konfiguracje urządzenia Maemo - Device type: Typ urządzenia: - Authentication type: Typ autoryzacji: - Password Hasło - Key Klucz - Password: Hasło: - Private key file: Plik z prywatnym kluczem: - Add Dodaj - Remove Usuń - Test Przetestuj - Configuration: Konfiguracja: - Name Nazwa - IP or host name of the device IP lub nazwa hosta urządzenia - Ports: Porty: - SSH: SSH: - Gdb server: Server Gdb: - s s - Generate SSH Key ... Generuj klucz SSH... - Deploy Public Key ... Zainstaluj klucz publiczny... - Remote device Zdalne urządzenie - Maemo emulator Emulator Maemo - Host name: Nazwa hosta: - Connection timeout: Czas oczekiwania na połączenie: - Username: Nazwa użytkownika: @@ -17656,27 +14620,22 @@ Możesz odłożyć zmiany lub je porzucić. Qt4ProjectManager::Internal::S60CreatePackageStepWidget - Form Formularz - Self-signed certificate Własnoręcznie podpisany certyfikat - Custom certificate: Własny certyfikat: - Choose certificate file (.cer) Wybierz certyfikat (.cer) - Key file: Plik z kluczem: @@ -17684,62 +14643,50 @@ Możesz odłożyć zmiany lub je porzucić. Qt4ProjectManager::Internal::TestWizardPage - WizardPage StronaKreatora - Specify basic information about the test class for which you want to generate skeleton source code file. Podaj podstawowe informacje o klasie testowej dla której chcesz wygenerować szkielet pliku z kodem źródłowym. - Class name: Nazwa klasy: - Type: Typ: - Test Test jednostkowy - Benchmark Test wydajności - File: Plik: - Generate initialization and cleanup code Generuj inicjalizację i kod porządkujący - Test slot: Slot z testem: - Requires QApplication Wymaga QApplication - Use a test data set Użyj zestawy danych testowych - Test Class Information Informacje o klasie testowej @@ -17747,47 +14694,38 @@ Możesz odłożyć zmiany lub je porzucić. VCSBase::CleanDialog - The directory %1 could not be deleted. Nie można usunąć katalogu "%1". - The file %1 could not be deleted. Nie można usunąć pliku "%1". - There were errors when cleaning the repository %1: Wystąpiły błędy podczas usuwania składnicy %1: - Delete... Usuń... - Name Nazwa - Repository: %1 Składnica: %1 - %1 bytes, last modified %2 %1 bajtów, ostatnio zmodyfikowano %2 - Delete Usuń - Do you want to delete %n files? Czy chcesz usunąć %n plik? @@ -17796,12 +14734,10 @@ Możesz odłożyć zmiany lub je porzucić. - Cleaning %1 Czyszczenie %1 - Clean Repository Wyczyść składnicę @@ -17809,7 +14745,6 @@ Możesz odłożyć zmiany lub je porzucić. ExtensionSystem::PluginDetailsView - None Brak @@ -17817,14 +14752,10 @@ Możesz odłożyć zmiany lub je porzucić. ExtensionSystem::PluginView - - - Load on Startup Załadowany przy uruchomieniu - Utilities Narzędzia @@ -17832,78 +14763,62 @@ Możesz odłożyć zmiany lub je porzucić. QmlJS::Check - '%1' is not a valid property name "%1" nie jest poprawną nazwą właściwości - unknown type nieznany typ - unknown value for enum nieznana wartość typu wyliczeniowego - '%1' does not have members "%1" nie posiada składników - '%1' is not a member of '%2' "%1" nie jest składnikiem "%2" - value might be 'undefined' wartość może być "niezdefiniowana" - enum value is not a string or number wartość typu wyliczeniowego nie jest ciągiem ani liczbą - numerical value expected oczekiwano wartości liczbowej - boolean value expected oczekiwano wartości boolowskiej - string value expected Oczekiwano wartości typu ciąg - not a valid color niepoprawny kolor - expected anchor line oczekiwano linii kotwicznej - - expected id oczekiwany identyfikator - using string literals for ids is discouraged używanie stałych znakowych dla identyfikatorów nie jest zalecane - ids must be lower case Identyfikatory muszą składać się z małych liter @@ -17911,27 +14826,22 @@ Możesz odłożyć zmiany lub je porzucić. QmlJS::Interpreter::QmlXmlReader - The file is not module file. To nie jest plik modułu. - Unexpected element <%1> in <%2> Nieoczekiwany element <%1> w <%2> - invalid value '%1' for attribute %2 in <%3> niepoprawna wartość "%1" dla atrybutu %2 w <%3> - <%1> has no valid %2 attribute <%1> nie posiada poprawnego atrybutu %2 - %1: %2 %1: %2 @@ -17939,22 +14849,18 @@ Możesz odłożyć zmiany lub je porzucić. QmlJS::Link - could not find file or directory nie można odnaleźć pliku lub katalogu - expected two numbers separated by a dot oczekiwano dwóch liczb oddzielonych kropką - package import requires a version number import pakietu wymaga podania numeru wersji - package not found pakiet nie został odnaleziony @@ -17962,7 +14868,6 @@ Możesz odłożyć zmiany lub je porzucić. Utils::FileWizardDialog - Location Położenie @@ -17970,12 +14875,10 @@ Możesz odłożyć zmiany lub je porzucić. Utils::FilterLineEdit - Filter Filtr - Clear text Wyczyść tekst @@ -17983,27 +14886,22 @@ Możesz odłożyć zmiany lub je porzucić. Utils::fileDeletedPrompt - File has been removed Plik został usunięty - The file %1 has been removed outside Qt Creator. Do you want to save it under a different name, or close the editor? Plik %1 został usunięty na zewnątrz Qt Creatora. Chcesz zachować go pod inną nazwą czy zamknąć edytor? - Close Zamknij - Save as... Zachowaj jako ... - Save Zachowaj @@ -18011,7 +14909,6 @@ Możesz odłożyć zmiany lub je porzucić. 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>Zmienna</th><th>Rozwinięcie</th></tr><tr><td>%d</td><td>katalog bieżącego pliku</td></tr><tr><td>%f</td><td>nazwa pliku (z pełną ścieżką)</td></tr><tr><td>%n</td><td>nazwa pliku (bez ścieżki)</td></tr><tr><td>%%</td><td>%</td></tr></table> @@ -18019,7 +14916,6 @@ Możesz odłożyć zmiany lub je porzucić. Utils::LinearProgressWidget - ... ... @@ -18027,42 +14923,44 @@ Możesz odłożyć zmiany lub je porzucić. 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 + Wartość dziesiętna bez znaku (little endian): %1 +Wartość dziesiętna bez znaku (big endian): %2 +Wartość dziesiętna ze znakiem (little endian): %3 +Wartość dziesiętna ze znakiem (big endian): %4 + + Copying Failed Błąd kopiowania - You cannot copy more than 4 MB of binary data. Nie można skopiować więcej niż 4 MB danych binarnych. - Copy Selection as ASCII Characters Skopiuj jako znaki ASCII - Copy Selection as Hex Values Skopiuj jako wartości szesnastkowe - Jump to Address in This Window Skocz do adresu w tym oknie - Jump to Address in New Window Skocz do adresu w nowym oknie - Jump to Address 0x%1 in This Window Skocz do adresu 0x%1 w tym oknie - Jump to Address 0x%1 in New Window Skocz do adresu 0x%1 w nowym oknie @@ -18070,7 +14968,6 @@ Możesz odłożyć zmiany lub je porzucić. BINEditor::Internal::ImageViewerFactory - Image Viewer Przeglądarka plików graficznych @@ -18078,26 +14975,25 @@ Możesz odłożyć zmiany lub je porzucić. CMakeProjectManager::Internal::CMakeRunConfiguration - Clean Environment Czyste środowisko - System Environment Środowisko systemowe - Build Environment Środowisko budowania + + (disabled) + (nieaktywny) + CMakeProjectManager::Internal::CMakeTarget - - Desktop CMake Default target display name Desktop @@ -18106,7 +15002,6 @@ Możesz odłożyć zmiany lub je porzucić. CMakeProjectManager::Internal::MakeStep - Make CMakeProjectManager::MakeStep display name. Make @@ -18115,7 +15010,6 @@ Możesz odłożyć zmiany lub je porzucić. CMakeProjectManager::Internal::MakeStepFactory - Make Display name for CMakeProjectManager::MakeStep id. Make @@ -18124,12 +15018,10 @@ Możesz odłożyć zmiany lub je porzucić. Core::CommandMappings - Command Komenda - Label Etykieta @@ -18137,12 +15029,10 @@ Możesz odłożyć zmiany lub je porzucić. Core - Qt Qt - Environment Środowisko @@ -18150,7 +15040,6 @@ Możesz odłożyć zmiany lub je porzucić. Core::DesignMode - Design Design @@ -18158,7 +15047,6 @@ Możesz odłożyć zmiany lub je porzucić. Core::Internal::SystemEditor - Could not open url %1. Nie można otworzyć url %1. @@ -18166,17 +15054,18 @@ Możesz odłożyć zmiany lub je porzucić. Core::EditorToolBar - Copy full path to clipboard + Skopiuj pełną ścieżkę do schowka + + + Copy Full Path to Clipboard Skopiuj pełną ścieżkę do schowka - Make writable Uczyń plik zapisywalnym - File is writable Plik jest zapisywalny @@ -18184,7 +15073,6 @@ Możesz odłożyć zmiany lub je porzucić. CodePaster - Code Pasting Wklejanie kodu @@ -18192,7 +15080,6 @@ Możesz odłożyć zmiany lub je porzucić. CodePaster::PasteBinDotComSettings - Pastebin.com Pastebin.com @@ -18200,12 +15087,10 @@ Możesz odłożyć zmiany lub je porzucić. CodePaster::PasteView - <Comment> <Komentarz> - Paste Wklej @@ -18213,132 +15098,106 @@ Możesz odłożyć zmiany lub je porzucić. VCS - CVS Commit Editor - CVS Command Log Editor - CVS File Log Editor - CVS Annotation Editor - CVS Diff Editor - Git Command Log Editor - Git File Log Editor - Git Annotation Editor - Git Diff Editor - Git Submit Editor - Mercurial Command Log Editor - Mercurial File Log Editor - Mercurial Annotation Editor - Mercurial Diff Editor - Mercurial Commit Log Editor - Perforce.SubmitEditor - Perforce CommandLog Editor - Perforce Log Editor - Perforce Diff Editor - Perforce Annotation Editor - Subversion Editor - Subversion Commit Editor - Subversion Command Log Editor - Subversion File Log Editor - Subversion Annotation Editor - Subversion Diff Editor @@ -18346,7 +15205,6 @@ Możesz odłożyć zmiany lub je porzucić. CVS::Internal::CVSEditor - Annotate revision "%1" Dołącz adnotację do poprawki "%1" @@ -18354,7 +15212,6 @@ Możesz odłożyć zmiany lub je porzucić. Debugger::Internal::CdbOptionsPage - Cdb Cdb @@ -18362,17 +15219,14 @@ Możesz odłożyć zmiany lub je porzucić. CdbSymbolGroupContext - <Unknown Type> <Nieznany typ> - <Unknown Value> <Nieznana wartość> - <Unknown> <Nieznany> @@ -18380,12 +15234,10 @@ Możesz odłożyć zmiany lub je porzucić. Debugger::Cdb - Unable to load the debugger engine library '%1': %2 Nie udało się załadować biblioteki silnika debuggera '%1': %2 - Unable to resolve '%1' in the debugger engine library '%2' Nie udało się rozwiązać symbolu '%1' w bibliotece silnika debuggera '%2' @@ -18393,17 +15245,14 @@ Możesz odłożyć zmiany lub je porzucić. CdbCore::CoreEngine - Unable to set the image path to %1: %2 Nie można ustawić ścieżki do obrazu na %1: %2 - Unable to create a process '%1': %2 Nie można utworzyć procesu "%1": %2 - Attaching to a process failed for process id %1: %2 Dołączenie do procesu o identyfikatorze %1 nie powiodło się: %2 @@ -18411,17 +15260,14 @@ Możesz odłożyć zmiany lub je porzucić. Debugger::DebuggerUISwitcher - &Languages &Języki - Alt+L Alt+L - Language Język @@ -18429,44 +15275,34 @@ Możesz odłożyć zmiany lub je porzucić. Debugger::Internal::SnapshotHandler - - Function: Funkcja: - - File: Plik: - Date: Data: - ... ... - <More> <Więcej> - Function Funkcja - Date Data - Location Położenie @@ -18474,17 +15310,14 @@ Możesz odłożyć zmiany lub je porzucić. Debugger::Internal::SnapshotWindow - Snapshots Zrzuty - Adjust Column Widths to Contents Wyrównaj szerokości kolumn do ich zawartości - Always Adjust Column Widths to Contents Zawsze wyrównuj szerokości kolumn do ich zawartości @@ -18492,12 +15325,10 @@ Możesz odłożyć zmiany lub je porzucić. Designer::Internal::FormEditorFactory - This file can only be edited in <b>Design</b> mode. Ten plik może być modyfikowany jedynie w trybie <b>Design</b>. - Switch mode Przełącz tryb @@ -18505,7 +15336,6 @@ Możesz odłożyć zmiany lub je porzucić. Designer::Internal::FormFileWizardDialog - Location Położenie @@ -18513,28 +15343,22 @@ Możesz odłożyć zmiany lub je porzucić. FakeVim::Internal::FakeVimExCommandsPage - - Ex Command Mapping - FakeVim FakeVim - Ex Trigger Expression - Regular expression: Wyrażenie regularne: - Ex Command @@ -18542,22 +15366,18 @@ Możesz odłożyć zmiany lub je porzucić. Find::FindPlugin - &Find/Replace Z&najdź / zastąp - Advanced Find Zaawansowane przeszukiwanie - Open Advanced Find... Otwórz zaawansowane przeszukiwanie... - Ctrl+Shift+F Ctrl+Shift+F @@ -18565,7 +15385,6 @@ Możesz odłożyć zmiany lub je porzucić. GenericProjectManager::Internal::GenericMakeStep - Make Make @@ -18573,7 +15392,6 @@ Możesz odłożyć zmiany lub je porzucić. Git::Internal::RemoteBranchModel - (no branch) (brak gałęzi) @@ -18581,23 +15399,20 @@ Możesz odłożyć zmiany lub je porzucić. GitClient - Unable to determine the repository for %1. - Nie można określić składnicy dla %1. + Nie można określić składnicy dla %1. Git::Internal::GitCommand - Error: Git timed out after %1s. - + Błąd: brak odpowiedzi od Gita przez %1s. Git::Internal::GitEditor - Blame %1 @@ -18605,7 +15420,6 @@ Możesz odłożyć zmiany lub je porzucić. Help - Help Pomoc @@ -18613,36 +15427,29 @@ Możesz odłożyć zmiany lub je porzucić. Help::HelpManager - Unfiltered - Nieprzefiltrowane + Nieprzefiltrowane Help::Internal::HelpViewer - Open Link Otwórz odsyłacz - - Open Link as New Page Otwórz odsyłacz na nowej stronie - Copy Link Skopiuj odsyłacz - Copy Skopiuj - Reload Przeładuj @@ -18650,7 +15457,6 @@ Możesz odłożyć zmiany lub je porzucić. Help::Internal::OpenPagesModel - (Untitled) (Nienazwany) @@ -18658,12 +15464,10 @@ Możesz odłożyć zmiany lub je porzucić. Help::Internal::OpenPagesWidget - Close %1 Zamknij %1 - Close All Except %1 Zamknij wszystko z wyjątkiem %1 @@ -18671,12 +15475,10 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::CloneWizard - Clones a Mercurial repository and tries to load the contained project. Klonuje składnicę Mercurial i próbuje załadować zawarty projekt. - Mercurial Clone Klon składnicy Mercurial @@ -18684,17 +15486,14 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::CloneWizardPage - Location Położenie - Specify repository URL, checkout directory and path. Podaj URL składnicy, nazwę katalogu z kopią roboczą i ścieżkę do niego. - Clone URL: URL klonu: @@ -18702,7 +15501,6 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::CommitEditor - Commit Editor @@ -18710,43 +15508,34 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::MercurialClient - Unable to find parent revisions of %1 in %2: %3 - Cannot parse output: %1 - Hg Annotate %1 - Hg diff %1 - - Hg log %1 - Hg incoming %1 - Hg outgoing %1 - Working... @@ -18754,7 +15543,6 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::MercurialControl - Mercurial Mercurial @@ -18762,7 +15550,6 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::MercurialEditor - Annotate %1 Dołącz adnotację do %1 @@ -18770,19 +15557,16 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::MercurialJobRunner - Executing: %1 %2 Wykonywanie: %1 %2 - Unable to start mercurial process '%1': %2 Nie można rozpocząć procesu mercurial "%1": %2 - Timed out after %1s waiting for mercurial process to finish. @@ -18790,237 +15574,190 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::MercurialPlugin - Mercurial Mercurial - Annotate Current File Dołącz adnotację do bieżącego pliku - Annotate "%1" Dołącz adnotację do "%1" - Diff Current File Pokaż różnice w bieżącym pliku - Diff "%1" Pokaż różnice w "%1" - Alt+H,Alt+D Alt+H,Alt+D - Log Current File Dziennik bieżącego pliku - Log "%1" Dziennik "%1" - Alt+H,Alt+L Alt+H,Alt+L - Status Current File Stan bieżącego pliku - Status "%1" Stan "%1" - Alt+H,Alt+S Alt+H,Alt+S - Add Dodaj - Add "%1" Dodaj "%1" - Delete... Usuń... - Delete "%1"... Usuń "%1"... - Revert Current File... Odwróć zmiany w bieżącym pliku... - Revert "%1"... Odwróć zmiany w "%1"... - Diff Pokaż różnice - Log Dziennik - Revert... Odwróć zmiany... - Status Stan - Pull... Pociągnij... - Push... Popchnij... - Update... Uaktualnij... - Import... Importuj... - Incoming... - Outgoing... - Commit... - Alt+H,Alt+C Alt+H,Alt+C - Create Repository... Utwórz składnicę... - Pull Source - Push Destination - Update Uaktualnij - Incoming Source Nadchodzące źródło - Commit - + Wyślij - Diff Selected Files Pokaż różnice w zaznaczonych plikach - &Undo &Cofnij - &Redo &Przywróć - There are no changes to commit. Brak zmian do wysłania. - Unable to generate a temporary file for the commit editor. - Unable to create an editor for the commit. - Unable to create a commit editor. - Commit changes for "%1". - Close commit editor - + Zamknij edytor zmiany - Do you want to commit the changes? - Message check failed. Do you want to proceed? @@ -19028,7 +15765,6 @@ Możesz odłożyć zmiany lub je porzucić. Mercurial::Internal::OptionsPageWidget - Mercurial Command Komenda Mercurial @@ -19036,43 +15772,35 @@ Możesz odłożyć zmiany lub je porzucić. Perforce::Internal::PerforceChecker - No executable specified Nie podano programu do uruchomienia - "%1" timed out after %2ms. "%1" bez odpowiedzi po %2ms. - Unable to launch "%1": %2 Nie można uruchomić "%1": %2 - "%1" crashed. "%1" zakończył pracę błędem. - "%1" terminated with exit code %2: %3 "%1" zakończone kodem wyjściowym %2: %3 - The client does not seem to contain any mapped files. Wygląda na to, że klient nie ma żadnych zmapowanych plików. - Unable to determine the client root. Unable to determine root of the p4 client installation Nie można określić korzenia klienta. - The repository "%1" does not exist. Składnica "%1" nie istnieje. @@ -19080,7 +15808,6 @@ Możesz odłożyć zmiany lub je porzucić. Perforce::Internal::PerforceEditor - Annotate change list "%1" Dołącz adnotację do listy zmian "%1" @@ -19088,12 +15815,10 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::BaseProjectWizardDialog - Location Położenie - untitled File path suggestion for a new project. If you choose to translate it, make sure it is a valid path name without blanks. nienazwany @@ -19102,12 +15827,10 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::BuildConfiguration - System Environment Środowisko systemowe - Clean Environment Czyste środowisko @@ -19115,12 +15838,10 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::BuildEnvironmentWidget - Clear system environment Wyczyść środowisko systemowe - Build Environment Środowisko budowania @@ -19128,7 +15849,6 @@ Możesz odłożyć zmiany lub je porzucić. BuildSettingsPanelFactory - Build Settings Ustawienia budowania @@ -19136,7 +15856,6 @@ Możesz odłożyć zmiany lub je porzucić. BuildSettingsPanel - Build Settings Ustawienia budowania @@ -19144,29 +15863,43 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::CustomWizard - Details Default short title for custom wizard page to be shown in the progress pane of the wizard. Szczegóły - Creates a C++ plugin to extend the funtionality of the QML runtime. - Tworzy wtyczkę C++ rozszerzającą funkcjonalność środowiska QML. + Tworzy wtyczkę C++ rozszerzającą funkcjonalność środowiska QML. - - QML Runtime Plug-in - Wtyczka środowiska QML + Wtyczka środowiska QML - QML Runtime Plug-in Parameters - Parametry wtyczki środowiska QML + Parametry wtyczki środowiska QML + + + Class name: + Nazwa klasy: + + + Creates a C++ plugin that makes it possible to offer extensions that can be loaded dynamically into applications using the QDeclarativeEngine class. + + + + Custom QML Extension Plugin + + + + QML Extension Plugin + + + + Custom QML Extension Plugin Parameters + - Example Object Class-name: Przykładowa nazwa klasy obiektu: @@ -19174,7 +15907,6 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::CustomProjectWizard - The project %1 could not be opened. Nie można otworzyć projektu %1. @@ -19182,7 +15914,6 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::Internal::CustomWizardPage - Path: Ścieżka: @@ -19190,7 +15921,6 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::Internal::DependenciesModel - <No other projects in this session> <Brak innych projektów w tej sesji> @@ -19198,7 +15928,6 @@ Możesz odłożyć zmiany lub je porzucić. DependenciesPanel - Dependencies Zależności @@ -19206,7 +15935,6 @@ Możesz odłożyć zmiany lub je porzucić. DependenciesPanelFactory - Dependencies Zależności @@ -19214,7 +15942,6 @@ Możesz odłożyć zmiany lub je porzucić. EditorSettingsPanelFactory - Editor Settings Ustawienia edytora @@ -19222,7 +15949,6 @@ Możesz odłożyć zmiany lub je porzucić. EditorSettingsPanel - Editor Settings Ustawienia edytora @@ -19230,76 +15956,66 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::Internal::FolderNavigationWidget - Open Otwórz - Open parent folder Otwórz katalog wyżej - Open "%1" Otwórz "%1" - Open with Otwórz przy pomocy - Choose folder... Wybierz katalog... - Choose folder Wybierz katalog - Show in Explorer... Pokaż w "Explorer"... - Show in Finder... Pokaż w "Finder"... - Show containing folder... Pokaż zawierający katalog... - Open Command Prompt here... - Open Terminal here... Otwórz tutaj terminal... - Launching a file browser failed Nie można uruchomić przeglądarki plików - Unable to start the file manager: %1 - + Nie można uruchomić menedżera plików: + +%1 + + - '%1' returned the following error: %2 @@ -19308,17 +16024,14 @@ Możesz odłożyć zmiany lub je porzucić. %2 - Settings... Ustawienia... - Launching Windows Explorer failed Nie można uruchomić "Windows Explorer" - Could not find explorer.exe in path to launch Windows Explorer. Nie można odnaleźć explorer.exe w ścieżce w celu uruchomienia "Windows Explorer". @@ -19326,22 +16039,18 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::Internal::MiniTargetWidget - Select active build configuration Wybierz aktywną konfigurację budowania - Select active run configuration Wybierz aktywną konfigurację uruchamiania - Build: Zbuduj: - Run: Uruchom: @@ -19349,42 +16058,34 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::Internal::MiniProjectTargetSelector - Project Projekt - Select active project Wybierz aktywny projekt - Build: Zbuduj: - Run: Uruchom: - <html><nobr><b>Project:</b> %1<br/>%2%3<b>Run:</b> %4%5</html> - + <html><nobr><b>Projekt:</b> %1<br/>%2%3<b>Uruchom:</b> %4%5</html> - <b>Target:</b> %1<br/> <b>Produkt docelowy:</b> %1<br/> - <b>Build:</b> %2<br/> <b>Zbuduj:</b> %2<br/> - <br/>%1 <br/>%1 @@ -19392,7 +16093,6 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::ProjectConfiguration - Clone of %1 Klon %1 @@ -19400,12 +16100,10 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer - Projects Projekty - Other Project Inny projekt @@ -19413,7 +16111,6 @@ Możesz odłożyć zmiany lub je porzucić. TargetSettingsPanelFactory - Targets Produkty docelowe @@ -19421,7 +16118,6 @@ Możesz odłożyć zmiany lub je porzucić. RunSettingsPanelFactory - Run Settings Ustawienia uruchamiania @@ -19429,7 +16125,6 @@ Możesz odłożyć zmiany lub je porzucić. RunSettingsPanel - Run Settings Ustawienia uruchamiania @@ -19437,17 +16132,14 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::Internal::TargetSettingsPanelWidget - No target defined. Brak zdefiniowanych produktów docelowych. - Qt Creator Qt Creator - Do you really want to remove the "%1" target? Czy chcesz usunąć produkt docelowy @@ -19457,28 +16149,22 @@ Możesz odłożyć zmiany lub je porzucić. ProjectExplorer::TaskWindow - - Build Issues Problemy podczas budowania - &Copy S&kopiuj - &Annotate Dołącz &adnotację - Show Warnings Pokazuj ostrzeżenia - Filter by categories Przefiltruj według kategorii @@ -19486,7 +16172,6 @@ Możesz odłożyć zmiany lub je porzucić. GenericProjectManager::GenericTarget - Desktop Generic desktop target display name Desktop @@ -19495,62 +16180,49 @@ Możesz odłożyć zmiany lub je porzucić. Qt4ProjectManager::Internal::Qt4Target - - Desktop Qt4 Desktop target display name Desktop - - Symbian Emulator Qt4 Symbian Emulator target display name Emulator Symbiana - - Symbian Device Qt4 Symbian Device target display name Urządzenie Symbian - Maemo Emulator Qt4 Maemo Emulator target display name Emulator Maemo - Maemo Device Qt4 Maemo Device target display name Urządzenie Maemo - Maemo Qt4 Maemo target display name Maemo - Qt Simulator Qt4 Simulator target display name Symulator Qt - <b>Device:</b> Not connected <b>Urządzenie:</b> Nie podłączone - <b>Device:</b> %1 <b>Urządzenie:</b> %1 - <b>Device:</b> %1, %2 <b>Urządzenie:</b> %1, %2 @@ -19558,22 +16230,18 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::DesignDocumentController - -New Form- -Nowy formularz- - Cannot save to file "%1": permission denied. Nie można zachować "%1": brak uprawnień. - Parent folder "%1" for file "%2" does not exist. - + Katalog "%1" dla pliku "%2" nie istnieje. - Cannot write file: "%1". Nie można zapisać pliku: "%1". @@ -19581,22 +16249,18 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::XUIFileDialog - Open file Otwórz plik - Save file Zachowaj plik - Declarative UI files (*.qml) - All files (*) Wszystkie pliki (*) @@ -19604,25 +16268,21 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::ItemLibrary - Library Title of library view Biblioteka - Items Title of library items view Elementy - Resources Title of library resources view Zasoby - <Filter> Library search input hint text <Filtr> @@ -19631,7 +16291,6 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::NavigatorWidget - Navigator Title of navigator view Nawigator @@ -19640,7 +16299,6 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::PluginManager - About plugins Informacje o wtyczkach @@ -19648,27 +16306,22 @@ Możesz odłożyć zmiany lub je porzucić. WidgetPluginManager - Failed to create instance. Nie można utworzyć instancji. - Not a QmlDesigner plugin. Nie jest to wtyczka QmlDesignera. - Failed to create instance of file '%1': %2 Nie można utworzyć instancji pliku "%1": %2 - Failed to create instance of file '%1'. Nie można utworzyć instancji pliku "%1". - File '%1' is not a QmlDesigner plugin. Plik "%1" nie jest wtyczką QmlDesigner. @@ -19676,7 +16329,6 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::AllPropertiesBox - Properties Title of properties view. Właściwości @@ -19685,73 +16337,58 @@ Możesz odłożyć zmiany lub je porzucić. qdesigner_internal::QtGradientStopsController - H H - S S - V V - - Hue Barwa - Sat Nasycenie - Val Wartość - Saturation Nasycenie - Value Wartość - R R - G G - B B - Red Czerwień - Green Zieleń - Blue Błękit @@ -19759,37 +16396,30 @@ Możesz odłożyć zmiany lub je porzucić. QtGradientStopsWidget - New Stop Nowy punkt - Delete Usuń - Flip All Odwróć wszystko - Select All Zaznacz wszystko - Zoom In Powiększ - Zoom Out Pomniejsz - Reset Zoom Normalny rozmiar @@ -19797,23 +16427,19 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::Internal::StatesEditorModel - base state Implicit default state Stan bazowy - Invalid state name Niepoprawna nazwa stanu - The empty string as a name is reserved for the base state. Pusta nazwa jest zarezerwowana dla stanu bazowego. - Name already used in another state Nazwa jest już użyta w innym stanie @@ -19821,12 +16447,10 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::Internal::StatesEditorWidgetPrivate - base state Stan bazowy - State%1 Default name for newly created states Stan%1 @@ -19835,7 +16459,6 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::StatesEditorWidget - States Title of Editor widget Stany @@ -19844,7 +16467,6 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::Internal::SubComponentManagerPrivate - QML Components Komponenty QML @@ -19852,27 +16474,22 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::RewriterView - Error parsing Błąd parsowania - Internal error Błąd wewnętrzny - "%1" "%1" - line %1 linia %1 - column %1 kolumna %1 @@ -19880,17 +16497,14 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::Internal::DocumentWarningWidget - <a href="goToError">Go to error</a> <a href="goToError">Przejdź do błędu</a> - %3 (%1:%2) %3 (%1:%2) - Internal error (%1) Błąd wewnętrzny (%1) @@ -19898,97 +16512,78 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::Internal::DesignModeWidget - &Undo &Cofnij - &Redo &Przywróć - Delete Usuń - Delete "%1" Usuń "%1" - Cu&t Wy&tnij - Cut "%1" Wytnij "%1" - &Copy S&kopiuj - Copy "%1" Skopiuj "%1" - &Paste Wk&lej - Paste "%1" Wklej "%1" - Select &All Zaznacz &wszystko - Select All "%1" Zaznacz wszystkie "%1" - Toggle Full Screen Przełącz pełny ekran - &Restore Default View P&rzywróć domyślny widok - Toggle &Left Sidebar Przełącz &lewy boczny pasek - Toggle &Right Sidebar Przełącz p&rawy boczny pasek - Projects Projekty - File System System plików - Open Documents Otwarte dokumenty @@ -19996,37 +16591,30 @@ Możesz odłożyć zmiany lub je porzucić. QmlDesigner::Internal::BauhausPlugin - Switch Text/Design Przełącz tekst / projekt - Save %1 As... Zachowaj %1 jako... - &Save %1 &Zachowaj %1 - Revert %1 to Saved Odwróć zmiany w %1 - Close %1 Zamknij %1 - Close All Except %1 Zamknij wszystko z wyjątkiem %1 - Close Others Zamknij inne @@ -20034,7 +16622,6 @@ Możesz odłożyć zmiany lub je porzucić. Qml::Internal::QLineGraph - Frame rate Klatki na sekundę @@ -20042,7 +16629,6 @@ Możesz odłożyć zmiany lub je porzucić. Qml::Internal::GraphWindow - Total time elapsed (ms) Łączny czas który upłynął @@ -20050,22 +16636,18 @@ Możesz odłożyć zmiany lub je porzucić. Qml::Internal::CanvasFrameRate - Resolution: Rozdzielczość: - Clear Wyczyść - New Graph Nowy graf - Enabled Włączony @@ -20073,39 +16655,32 @@ Możesz odłożyć zmiany lub je porzucić. Qml::Internal::ExpressionQueryWidget - Write and evaluate QtScript expressions. Wpisz i wykonaj polecenia QtScript. - Clear Output Wyczyść wyjście - <Type expression to evaluate> <Wpisz wyrażenie do wykonania> - Script Console - Expression queries - Expression queries (using context for %1) Selected object - <%n items> <%n element> @@ -20117,42 +16692,34 @@ Możesz odłożyć zmiany lub je porzucić. Qml::Internal::ObjectPropertiesView - Name Nazwa - Value Wartość - Type Typ - &Watch expression &Obserwuj wyrażenie - &Remove watch &Usuń obserwowanie wyrażenia - Show &unwatchable properties - &Group by item type &Grupuj według typów elementów - <%n items> <%n element> @@ -20161,17 +16728,14 @@ Możesz odłożyć zmiany lub je porzucić. - Watch expression '%1' Obserwuj wyrażenie "%1" - Hide unwatchable properties - Show unwatchable properties @@ -20179,27 +16743,22 @@ Możesz odłożyć zmiany lub je porzucić. Qml::Internal::ObjectTree - Add watch expression... Dodaj wyrażenie do obserwowania... - Show uninspectable items - Go to file Przejdź do pliku - Watch expression Obserwuj wyrażenie - Expression: Wyrażenie: @@ -20207,12 +16766,10 @@ Możesz odłożyć zmiany lub je porzucić. Qml::Internal::WatchTableModel - Name Nazwa - Value Wartość @@ -20220,7 +16777,6 @@ Możesz odłożyć zmiany lub je porzucić. Qml::Internal::WatchTableView - Stop watching Zatrzymaj obserwowanie @@ -20228,12 +16784,10 @@ Możesz odłożyć zmiany lub je porzucić. Qml::InspectorOutputWidget - Output Komunikaty - Clear Wyczyść @@ -20241,32 +16795,26 @@ Możesz odłożyć zmiany lub je porzucić. Qml::QmlInspector - Failed to connect to debugger Nie można połączyć się z debuggerem - Could not connect to debugger server. Nie można połączyć się z serwerem debuggera. - Invalid project, debugging canceled. Niepoprawny projekt, anulowano debugowanie. - Cannot find project run configuration, debugging canceled. Nie można odnaleźć konfiguracji uruchamiania, anulowano debugowanie. - [Inspector] set to connect to debug server %1:%2 - + [Inspektor] ustawiono server debugowy %1:%2 - [Inspector] disconnected. @@ -20275,87 +16823,72 @@ Możesz odłożyć zmiany lub je porzucić. - [Inspector] resolving host... - [Inspector] connecting to debug server... [Inspektor] łączenie z serwerem debugowym... - [Inspector] connected. - + [Inspektor] podłączony. + - [Inspector] closing... - + [Inspektor] zamykanie... + - [Inspector] error: (%1) %2 %1=error code, %2=error message [Inspektor] błąd: (%1) %2 - Start Debugging C++ and QML Simultaneously... Rozpocznij jednoczesne debugowanie QML i C++... - No project was found. Nie znaleziono żadnego projektu. - - No run configurations were found for the project '%1'. Nie znaleziono żadnych konfiguracji uruchamiania dla projektu "%1". - No valid run configuration was found for the project %1. Only locally runnable configurations are supported. Please check your project settings. - A valid run control was not registered in Qt Creator for this project run configuration. - Debugging failed: could not start C++ debugger. Błąd debugowania: nie można uruchomić debuggera C++. - QML engine: Silnik QML: - Object Tree Drzewo obiektów - Properties and Watchers Właściwości i zmienne obserwowane - Script Console - Output of the QML inspector, such as information on connecting to the server. @@ -20363,27 +16896,22 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSTextEditor - Rename... Zmień nazwę... - New id: Nowy identyfikator: - Unused variable Nieużywana zmienna - Rename id '%1'... Zmień nazwę identyfikatora "%1"... - <Select Symbol> <Wybierz symbol> @@ -20391,48 +16919,38 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSEditorFactory - Do you want to enable the experimental Qt Quick Designer? Czy chcesz włączyć eksperymentalnego Qt Quick Designera? - - Enable Qt Quick Designer Włącz Qt Quick Designera - Qt Creator -> About Plugins... Qt Creator -> Informacje o wtyczkach... - Help -> About Plugins... Pomoc -> Informacje o wtyczkach... - Enable experimental Qt Quick Designer? Włączyć Qt Quick Designera? - Do you want to enable the experimental Qt Quick Designer? After enabling it, you can access the visual design capabilities by switching to Design Mode. This can affect the overall stability of Qt Creator. To disable Qt Quick Designer again, visit the menu '%1' and disable 'QmlDesigner'. - Cancel Anuluj - Please restart Qt Creator Uruchom ponownie Qt Creatora - Please restart Qt Creator to make the change effective. Uruchom ponownie Qt Creatora aby zmiana mogła zostać zastosowana. @@ -20440,27 +16958,26 @@ Please check your project settings. QmlJSEditor::Internal::QmlJSEditorPlugin - Creates a Qt QML file. Tworzy plik Qt QML. - Qt QML File Plik Qt QML - Qt Quick Qt Quick - + &Preview + &Podgląd + + Ctrl+Alt+R Ctrl+Alt+R - Follow Symbol Under Cursor Podąż za symbolem pod kursorem @@ -20468,15 +16985,13 @@ Please check your project settings. QmlJSEditor::Internal::HoverHandler - Unfiltered - Nieprzefiltrowane + Nieprzefiltrowane QmlJSEditor::Internal::ModelManager - Indexing Indeksowanie @@ -20484,7 +16999,6 @@ Please check your project settings. QmlProjectManager::QmlProject - Error while loading project file! Błąd podczas ładowania pliku z projektem! @@ -20492,12 +17006,10 @@ Please check your project settings. QmlProjectManager::Internal::QmlProjectApplicationWizardDialog - New QML Project Nowy projekt QML - This wizard generates a QML application project. Ten kreator generuje projekt aplikacji QML. @@ -20505,35 +17017,42 @@ Please check your project settings. QmlProjectManager::Internal::QmlProjectApplicationWizard - Qt QML Application - Aplikacja Qt QML + Aplikacja Qt QML - Creates a Qt QML application project with a single QML file containing the main view. QML application projects are executed through the QML runtime and do not need to be built. - Tworzy projekt aplikacji Qt QML z pojedynczym plikiem QML zawierającym główny widok. + Tworzy projekt aplikacji Qt QML z pojedynczym plikiem QML zawierającym główny widok. Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budowane. - + QML Application + Aplikacja QML + + + Creates a QML application project with a single QML file containing the main view. + +QML application projects are executed by the Qt QML Viewer and do not need to be built. + Tworzy projekt aplikacji QML z pojedynczym plikiem QML zawierającym główny widok. + +Projekty aplikacji QML są uruchamiane przez przeglądarkę QML i nie muszą być budowane. + + File generated by QtCreator qmlproject Template Comment added to generated .qmlproject file Plik wygenerowany przez QtCreatora - Include .qml, .js, and image files from current directory and subdirectories qmlproject Template Comment added to generated .qmlproject file Włącz .qml, .js i pliki graficzne z bieżącego katalogu i jego podkatalogów - List of plugin directories passed to QML runtime qmlproject Template Comment added to generated .qmlproject file @@ -20543,7 +17062,6 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo QmlProjectManager - Qt Quick Project Projekt Qt Quick @@ -20551,27 +17069,26 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo QmlProjectManager::Internal::QmlProjectImportWizardDialog - Import Existing Qt QML Directory + Import istniejącego katalogu QML + + + Import Existing QML Directory Import istniejącego katalogu QML - Project Name and Location Nazwa projektu i położenie - Project name: Nazwa projektu: - Location: Położenie: - Location Położenie @@ -20579,31 +17096,30 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo QmlProjectManager::Internal::QmlProjectImportWizard - Import Existing Qt QML Directory + Import istniejącego katalogu QML + + + Import Existing QML Directory Import istniejącego katalogu QML - Creates a QML project from an existing directory of QML files. Tworzy projekt QML na podstawie istniejącego katalogu z plikami QML. - File generated by QtCreator qmlproject Template Comment added to generated .qmlproject file Plik wygenerowany przez Qt Creatora - Include .qml, .js, and image files from current directory and subdirectories qmlproject Template Comment added to generated .qmlproject file Włącz .qml, .js i pliki graficzne z bieżącego katalogu i jego podkatalogów - List of plugin directories passed to QML runtime qmlproject Template Comment added to generated .qmlproject file @@ -20613,7 +17129,6 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo QmlProjectManager::Internal::Manager - Failed opening project '%1': Project already open Nie można otworzyć projektu "%1": projekt jest już otwarty @@ -20621,33 +17136,27 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo QmlProjectManager::QmlProjectRunConfiguration - QML Viewer QMLRunConfiguration display name. Przeglądarka QML - QML Viewer Przeglądarka QML - QML Viewer arguments: Argumenty przeglądarki QML: - Main QML File: Główny plik QML: - Debugging Address: Adres debugowania: - Debugging Port: Port debugowania: @@ -20655,7 +17164,6 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo QmlManager - <Current File> <Bieżący plik> @@ -20663,7 +17171,6 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo QmlProjectManager::Internal::QmlProjectRunConfigurationFactory - Run QML Script Uruchom skrypt QML @@ -20671,12 +17178,10 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo QmlProjectManager::Internal::QmlRunControl - Starting %1 %2 Uruchamianie %1 %2 - %1 exited with code %2 %1 zakończone kodem %2 @@ -20684,7 +17189,6 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo QmlProjectManager::Internal::QmlRunControlFactory - Run Uruchom @@ -20692,74 +17196,62 @@ Projekty aplikacji QML są uruchamiane ze środowiska QML i nie muszą być budo Qt4ProjectManager::Internal::MaemoConfigTestDialog - Testing configuration... Testowanie konfiguracji... - Stop Test Zatrzymaj test - Device configuration test failed: %1 Test konfiguracji urządzenia zakończony niepowodzeniem: %1 - Did you start Qemu? Czy uruchomiłeś Qemu? - Qt version mismatch! Expected Qt on device: 4.6.2 or later. Niezgodność wersji Qt. Oczekiwano wersji 4.6.2 lub późniejszej dla urządzenia. - Close Zamknij - Device configuration test failed: Unexpected output: %1 Test konfiguracji urządzenia zakończony niepowodzeniem: Nieoczekiwany komunikat: %1 - Hardware architecture: %1 Architektura sprzętu: %1 - Kernel version: %1 - Wersja kernela: %1 + Wersja jądra: %1 - Device configuration successful. Konfiguracja urządzenia zakończona pomyślnie. - No Qt packages installed. Brak zainstalowanych pakietów Qt. - List of installed Qt packages: Lista zainstalowanych pakietów Qt: @@ -20767,7 +17259,6 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::MaemoRunConfiguration - New Maemo Run Configuration Nowa konfiguracja uruchamiania Maemo @@ -20775,32 +17266,26 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::MaemoRunConfigurationWidget - Run configuration name: Nazwa konfiguracji uruchamiania: - <a href="%1">Manage device configurations</a> <a href="%1">Zarządzanie konfiguracjami urządzenia</a> - <a href="%1">Set Debugger</a> <a href="%1">Ustaw debugger</a> - Device configuration: Konfiguracja urządzenia: - Executable: Plik wykonywalny: - Arguments: Argumenty: @@ -20808,77 +17293,62 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::AbstractMaemoRunControl - Files to deploy: %1. Pliki do zainstalowania: %1. - Deploying Instalowanie - No device configuration set for run configuration. Brak konfiguracji urządzenia dla konfiguracji uruchamiania. - Cleaning up remote leftovers first ... Porządkowanie zdalnych pozostałości... - Initial cleanup canceled by user. Wstępne porządkowanie anulowane przez użytkownika. - Error running initial cleanup: %1. Błąd podczas wstępnego porządkowania: %1. - Initial cleanup done. Zakończono wstępne porządkowanie. - Starting remote application. Uruchamianie zdalnej aplikacji. - Deployment canceled by user. Instalowanie anulowane przez użytkownika. - Deployment finished. Zakończono instalowanie. - Remote execution canceled due to user request. Zdalne uruchomienie anulowane na żądanie użytkownika. - Error running remote process: %1 Błąd zdalnego procesu: %1 - Finished running remote process. Zakończono zdalny proces. - Remote Execution Failure Błąd zdalnego procesu - Deployment failed: %1 Błąd instalacji: %1 @@ -20886,7 +17356,6 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::MaemoRunControlFactory - Run on device Uruchom na urządzeniu @@ -20894,54 +17363,43 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::MaemoSettingsWidget - - Deployment Failed Błąd instalacji - New Device Configuration %1 Standard Configuration name with number Nowa konfiguracja urządzenia %1 - Choose Public Key File Wybierz plik z kluczem publicznym - Public Key Files(*.pub);;All Files (*) Pliki z kluczami publicznymi (*.pub); Wszystkie pliki (*) - Could not read public key file '%1'. Nie można odczytać pliku z publicznym kluczem "%1". - Stop Deploying Zatrzymaj instalowanie - Key deployment failed: %1 Błąd instalacji klucza: %1 - Deployment Succeeded Instalacja zakończona pomyślnie - Key was successfully deployed. Klucz został pomyślnie zainstalowany. - Deploy Public Key ... Zainstaluj klucz publiczny... @@ -20949,7 +17407,6 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::S60CreatePackageStep - Create SIS Package Create SIS package build step name Utwórz pakiet SIS @@ -20958,7 +17415,6 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::S60CreatePackageStepFactory - Create SIS Package Utwórz pakiet SIS @@ -20966,17 +17422,14 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::S60CreatePackageStepConfigWidget - self-signed własnoręcznie podpisany - signed with certificate %1 and key file %2 podpisany certyfikatem %1 i kluczem %2 - <b>Create SIS Package:</b> %1 <b>Utwórz pakiet SIS:</b> %1 @@ -20984,27 +17437,22 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::Qt4BuildConfigurationFactory - Using Qt Version "%1" Użyj wersji "%1" - New configuration Nowa konfiguracja - New Configuration Name: Nazwa nowej konfiguracji: - %1 Debug %1 Debug - %1 Release %1 Release @@ -21012,17 +17460,14 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager - Qt4 Qt4 - Qt Versions Wersje Qt - Qt C++ Project Projekt Qt C++ @@ -21030,12 +17475,10 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::Qt4TargetFactory - Debug Debug - Release Release @@ -21043,27 +17486,22 @@ Czy uruchomiłeś Qemu? QtVersion - No qmake path set Nie ustawiono ścieżki do qmake - Qt version has no name Brak nazwy wersji Qt - Qt version is not properly installed, please run make install Wersja Qt zainstalowana niepoprawnie, uruchom komendę: make install - Could not determine the path to the binaries of the Qt installation, maybe the qmake path is wrong? Nie można określić ścieżki do plików binarnych instalacji Qt. Sprawdź ścieżkę do qmake. - The Qt Version has no toolchain. Ta wersja Qt nie posiada zestawu narzędzi. @@ -21071,12 +17509,10 @@ Czy uruchomiłeś Qemu? Qt4ProjectManager::Internal::MobileGuiAppWizard - Mobile Qt Application Mobilna aplikacja 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 @@ -21088,13 +17524,10 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d Qt4ProjectManager::Internal::BaseQt4ProjectWizardDialog - - Modules Moduły - Qt Versions Wersje Qt @@ -21102,78 +17535,64 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d Qt4ProjectManager::Internal::TargetSetupPage - Qt Creator can set up the following targets: Qt Creator może ustawić następujące wersje: - Qt Version Wersja Qt - Status Stan - Import Is this an import of an existing build or a new one? Import - New Is this an import of an existing build or a new one? Nowy - Qt Creator can set up the following targets for project <b>%1</b>: %1: Project name Qt Creator może ustawić następujące wersje dla projektu <b>%1</b>: - Choose a directory to scan for additional shadow builds Wybierz katalog w którym przeszukiwać dodatkowych wersji zbudowanych na zewnątrz - No builds found Brak zbudowanych wersji - No builds for project file "%1" were found in the folder "%2". %1: pro-file, %2: directory that was checked. Brak zbudowanych wersji dla projektu "%1" w katalogu "%2". - <b>Error:</b> Severity is Task::Error <b>Błąd:</b> - <b>Warning:</b> Severity is Task::Warning <b>Ostrzeżenie:</b> - Setup targets for your project Ustaw produkty docelowe dla projektu - Build Directory Katalog wersji - Import Existing Shadow Build... Zaimportuj wersję zbudowaną w innym miejscu... @@ -21181,25 +17600,21 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d Qt4ProjectManager::Internal::TestWizard - Qt Unit Test Test grupowy 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. - Tworzy grupowy test funkcjonalości lub klasy w oparciu o QTestLib. Grupowe testy pozwalają na weryfikowanie działania kodu i wykrywanie regresji. + Tworzy grupowy test funkcjonalności lub klasy w oparciu o QTestLib. Grupowe testy pozwalają na weryfikowanie działania kodu i wykrywanie regresji. Qt4ProjectManager::Internal::TestWizardDialog - This wizard generates a Qt unit test consisting of a single source file with a test class. Ten kreator generuje test grupowy składający się z pojedynczego pliku źródłowego z klasą testową. - Details Szczegóły @@ -21207,7 +17622,6 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d Subversion::Internal::SubversionEditor - Annotate revision "%1" Dołącz adnotację do poprawki "%1" @@ -21215,7 +17629,6 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d TextEditor - Text Editor Edytor tekstu @@ -21223,47 +17636,38 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d VCSBase::VCSBasePlugin - Version Control System kontroli wersji - The file '%1' could not be deleted. Nie można usunąć pliku "%1". - Choose Repository Directory Wybierz katalog składnicy - The directory '%1' is already managed by a version control system (%2). Would you like to specify another directory? Katalog "%1" jest już zarządzany przez system kontroli wersji (%2). Czy chcesz podać inny katalog? - Repository already under version control Składnica znajduje się już w systemie kontroli wersji - Repository created Utworzono składnicę - A version control repository has been created in %1. Składnica systemu kontroli wersji została utworzona w %1. - Repository creation failed Błąd podczas tworzenia składnicy - A version control repository could not be created in %1. Nie można utworzyć składnicy systemu kontroli wersji w %1. @@ -21271,17 +17675,14 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d trk::Launcher - Cannot open remote file '%1': %2 Nie można otworzyć zdalnego pliku "%1": %2 - Cannot open '%1': %2 Nie można otworzyć "%1": %2 - Unable to acquire a device for port '%1'. It appears to be in use. Nie można pozyskać urządzenia na porcie "%1". Wygląda że jest w użyciu. @@ -21289,7 +17690,6 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d AboutDialog - About Bauhaus AboutDialog Informacje o Bauhaus @@ -21298,75 +17698,61 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d CodePaster::FileShareProtocolSettingsWidget - Form Formularz - &Path: Ś&cieżka: - &Display: &Wyświetl: - entries wpisów - The fileshare-based paster protocol allows for sharing code snippets using simple files on a shared network drive. Files are never deleted. - + Protokół wklejania bazujący na współdzielonych plikach pozwala na wymianę fragmentów kodu przy użyciu prostych plików umieszczonych na współdzielonym dysku sieciowym. Pliki nigdy nie są usuwane. StartExternalQmlDialog - Start Simultaneous QML and C++ Debugging Rozpocznij jednoczesne debugowanie QML i C++ - Debugging address: Adres debugowania: - Debugging port: Port debugowania: - 127.0.0.1 127.0.0.1 - Project: Projekt: - <No project> <Brak projektu> - Viewer path: Ścieżka do przeglądarki: - Viewer arguments: Argumenty przeglądarki: - To switch languages while debugging, go to Debug->Language menu. Aby zmienić język podczas debugowania przejdź do menu: Debugowanie->Język. @@ -21374,75 +17760,89 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d MaemoPackageCreationWidget - Package contents: - Zawartość pakietu: + Zawartość pakietu: - Add File to Package Dodaj plik do pakiety - Remove File from Package Usuń plik z pakietu + + Check this if you want the files below to be deployed directly. + Zaznacz to jeśli chcesz aby poniższe pliki były bezpośrednio zainstalowane. + + + Skip packaging step + Pomiń tworzenie pakietu + + + Version number: + Numer wersji: + + + Major: + Główny: + + + Minor: + Podrzędny: + + + Patch: + Łata: + + + Files to deploy: + Pliki do zainstalowania: + MaemoSshConfigDialog - SSH Key Configuration Konfiguracja klucza SSH - Options Opcje - Key size: Rozmiar klucza: - Key algorithm: Algorytm klucza: - RSA RSA - DSA DSA - Key Klucz - Generate SSH Key Generuj klucz SSH - Close Zamknij - Save Public Key... Zachowaj klucz publiczny... - Save Private Key... Zachowaj klucz prywatny... @@ -21450,43 +17850,35 @@ Wstępnie wybiera wersję Qt dla Symulatora i aplikacji mobilnych (jeśli jest d CommonSettingsPage - Wrap submit message at: - + Zawijaj opisy zmian po: - characters znakach - 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. - + Plik wykonywalny który jest uruchamiany z nazwą pliku tymczasowego przechowującego opis zmiany jako pierwszy argument. Powinien on zwrócić wartość różną od 0 i standardowy komunikat o błędzie w razie niepowodzenia. - Submit message check script: - + Skrypt sprawdzający opisy zmian: - 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: @@ -21494,37 +17886,30 @@ name <email> alias <email> BorderImageSpecifics - Image Obrazek - Source Źródło - Source Size Rozmiar źródła - Left Lewy - Right Prawy - Top Górny - Bottom Dolny @@ -21532,7 +17917,6 @@ name <email> alias <email> ExpressionEditor - Expression Wyrażenie @@ -21540,28 +17924,22 @@ name <email> alias <email> Extended - Effect Efekt - - Blur Radius: Promień rozmycia: - Pixel Size: Rozmiar piksli: - x Offset: Przesunięcie x: - y Offset: Przesunięcie y: @@ -21569,12 +17947,10 @@ name <email> alias <email> ExtendedFunctionButton - Reset Przywróć - Set Expression Ustaw wyrażenie @@ -21582,23 +17958,18 @@ name <email> alias <email> FontGroupBox - - Font Czcionka - Size Rozmiar - Font Style Styl czcionki - Style Styl @@ -21606,22 +17977,18 @@ name <email> alias <email> Geometry - Geometry Geometria - Position Pozycja - Size Rozmiar - Lock aspect ratio Zablokuj aspekt @@ -21629,37 +17996,30 @@ name <email> alias <email> ImageSpecifics - Image Obrazek - Source Źródło - Fill Mode Tryb wypełniania - Aliasing Antyaliasing - Smooth Gładki - Source Size Powierzchnia źródła - Painted Size Powierzchnia rysowania @@ -21667,32 +18027,18 @@ name <email> alias <email> Layout - Layout Rozmieszczenie - Anchors Kotwice - - - - - - Target Produkt docelowy - - - - - - Margin Margines @@ -21700,17 +18046,14 @@ name <email> alias <email> Modifiers - Manipulation Manipulacja - Rotation Rotacja - z z @@ -21718,27 +18061,22 @@ name <email> alias <email> RectangleColorGroupBox - Colors Kolory - Stops Punkty - Gradient Stops Punkty gradientu - Rectangle Prostokąt - Border Brzeg @@ -21746,17 +18084,14 @@ name <email> alias <email> RectangleSpecifics - Rectangle Prostokąt - Border Brzeg - Radius Promień @@ -21764,27 +18099,22 @@ name <email> alias <email> StandardTextColorGroupBox - Color Kolor - Text Tekst - Style Styl - Selection Zaznaczenie - Selected Zaznaczony @@ -21792,33 +18122,26 @@ name <email> alias <email> StandardTextGroupBox - - Text Tekst - Wrap Mode Tryb zawijania - Alignment Wyrównanie - Aliasing Antyaliasing - Smooth Gładki - @@ -21826,27 +18149,22 @@ name <email> alias <email> Switches - special properties specjalne właściwości - layout and geometry rozmieszczenie i geometria - Geometry Geometria - advanced properties zaawansowane właściwości - Advanced Zaawansowane @@ -21854,12 +18172,10 @@ name <email> alias <email> TextEditSpecifics - Text Edit Edytor tekstu - Format Format @@ -21867,52 +18183,42 @@ name <email> alias <email> TextInputGroupBox - Text Input Wejście tekstu - Input Mask Maska wejściowa - Echo Mode - Pass. Char Znak mark. - Password Character Znak markujący hasło - Flags Flagi - Read Only Tylko do odczytu - Cursor Visible Kursor widoczny - Focus On Press Fokus po naciśnięciu - Auto Scroll Automatyczne przewijanie @@ -21920,67 +18226,54 @@ name <email> alias <email> Transformation - Transformation Transformacja - Origin Początek - Top Left Górny lewy - Top Górny - Top Right Górny prawy - Left Lewy - Center Centralny - Right Prawy - Bottom Left Dolny lewy - Bottom Dolny - Bottom Right Dolny prawy - Scale Skala - Rotation Rotacja @@ -21988,13 +18281,10 @@ name <email> alias <email> Type - - Type Typ - Id Identyfikator @@ -22002,23 +18292,18 @@ name <email> alias <email> Visibility - - Visibility Widoczność - Is visible jest widoczny - Clip Klip - Opacity Nieprzezroczystość @@ -22026,17 +18311,14 @@ name <email> alias <email> WebViewSpecifics - WebView WidokSieci - Preferred Width Preferowana szerokość - Page Height Wysokość strony @@ -22044,12 +18326,10 @@ name <email> alias <email> Utils::FancyMainWindow - Locked Zablokowany - Reset to Default Layout Przywróć domyślne rozmieszczenie @@ -22057,12 +18337,10 @@ name <email> alias <email> GenericSshConnection - Could not connect to host. Nie można połączyć się z hostem. - Error in cryptography backend: %1 @@ -22070,7 +18348,6 @@ name <email> alias <email> Core::InteractiveSshConnection - Error sending input Błąd podczas wysyłania wejścia @@ -22078,48 +18355,38 @@ name <email> alias <email> Core::SftpConnection - Error setting up SFTP subsystem Błąd podczas ustanawiania podsystemu SFTP - - Could not open file '%1' Nie można otworzyć pliku "%1" - Could not uplodad file '%1' Nie można wysłać pliku "%1" - Could not copy remote file '%1' to local file '%2' Nie można skopiować pliku zdalnego "%1" do pliku lokalnego "%2" - Could not create remote directory Nie można utworzyć zdalnego katalogu - Could not remove remote directory Nie można usunąć zdalnego katalogu - Could not get remote directory contents Nie można otrzymać zawartości zdalnego katalogu - Could not remove remote file Nie można usunąć zdalnego pliku - Could not change remote working directory Nie można zmienić zdalnego katalogu roboczego @@ -22127,18 +18394,14 @@ name <email> alias <email> SshKeyGenerator - Error creating temporary files. Błąd podczas tworzenia plików tymczasowych. - Error generating keys: %1 Błąd podczas generowania kluczy: %1 - - Error reading temporary files. Błąd podczas odczytywania plików tymczasowych. @@ -22146,32 +18409,26 @@ name <email> alias <email> CodePaster::FileShareProtocol - Cannot open %1: %2 Nie można otworzyć %1: %2 - %1 does not appear to be a paster file. - Error in %1 at %2: %3 Błąd w %1 w linii %2: %3 - Please configure a path. Skonfiguruj ścieżkę. - Unable to open a file for writing in %1: %2 Nie można otworzyć pliku %1 do zapisu: %2 - Pasted: %1 Wklejono: %1 @@ -22179,7 +18436,6 @@ name <email> alias <email> CodePaster::FileShareProtocolSettingsPage - Fileshare @@ -22187,12 +18443,10 @@ name <email> alias <email> CodePaster::Protocol - %1 - Configuration Error %1 - Błąd konfiguracji - Settings... Ustawienia... @@ -22200,7 +18454,6 @@ name <email> alias <email> CppEditor - C++ C++ @@ -22208,30 +18461,29 @@ name <email> alias <email> GdbChooserWidget - Unable to run '%1': %2 - Nie można uruchomić "%1": %2 + Nie można uruchomić "%1": %2 Debugger::Internal::GdbChooserWidget - + Unable to run '%1': %2 + Nie można uruchomić "%1": %2 + + Binary Plik binarny - Toolchains Zestawy narzędzi - Duplicate binary Powielony plik binarny - The binary '%1' already exists. Plik binarny "%1" już istnieje. @@ -22239,17 +18491,14 @@ name <email> alias <email> Debugger::Internal::ToolChainSelectorWidget - Desktop/General Desktop / Ogólne - Symbian Symbian - Maemo Maemo @@ -22257,17 +18506,14 @@ name <email> alias <email> Debugger::Internal::BinaryToolChainDialog - Select binary and toolchains Wybierz plik binarny i zestawy narzędzi - Gdb binary Plik binarny Gdb - Path: Ścieżka: @@ -22275,67 +18521,54 @@ name <email> alias <email> Debugger::Internal::PdbEngine - Running requested... Zażądano uruchomienia... - Unable to start pdb '%1': %2 Nie można rozpocząć pdb "%1": %2 - Adapter start failed Nie można uruchomić adaptera - '%1' contains no identifier "%1" nie zawiera identyfikatora - String literal %1 Stała znakowa %1 - Cowardly refusing to evaluate expression '%1' with potential side effects Tchórzliwa odmowa obliczenia wyrażenia '%1' z możliwymi efektami ubocznymi - Pdb I/O Error Błąd wejścia / wyjścia Pdb - The Pdb process failed to start. Either the invoked program '%1' is missing, or you may have insufficient permissions to invoke the program. Nie można rozpocząć procesu Pdb. Brak programu "%1" albo brak wymaganych uprawnień aby go uruchomić. - The Pdb process crashed some time after starting successfully. Proces Pdb zakończony błędem po poprawnym uruchomieniu. - The last waitFor...() function timed out. The state of QProcess is unchanged, and you can try calling waitFor...() again. Ostatnie wywołanie funkcji waitFor...() zakończyło się niepowodzeniem po określonym czasie. Stan QProcess się nie zmienił, możesz ponownie spróbować wywołać waitFor...(). - An error occurred when attempting to write to the Pdb process. For example, the process may not be running, or it may have closed its input channel. Wystąpił błąd podczas próby pisania do procesu Pdb. Być może proces nie jest uruchomiony lub zamknął on swój kanał wejściowy. - An error occurred when attempting to read from the Pdb process. For example, the process may not be running. Wystąpił błąd podczas próby czytania z procesu Pdb. Być może proces nie jest uruchomiony. - An unknown error in the Pdb process occurred. Wystąpił nieznany błąd w procesie Pdb. @@ -22343,7 +18576,6 @@ name <email> alias <email> ProjectExplorer::Internal::SessionNameInputDialog - Enter the name of the session: Podaj nazwę sesji: @@ -22351,12 +18583,10 @@ name <email> alias <email> ProjectExplorer::Internal::TargetSelector - Run Uruchom - Build Zbuduj @@ -22364,7 +18594,6 @@ name <email> alias <email> QmlDesigner::ComponentView - whole document cały dokument @@ -22372,7 +18601,6 @@ name <email> alias <email> FileWidget - Open File Otwórz plik @@ -22380,7 +18608,6 @@ name <email> alias <email> QmlDesigner::Internal::ModelPrivate - invalid type niepoprawny typ @@ -22388,7 +18615,6 @@ name <email> alias <email> Qt Quick - Qt Quick Qt Quick @@ -22396,7 +18622,6 @@ name <email> alias <email> Qml::Internal::EngineComboBox - Engine %1 engine number Silnik %1 @@ -22405,7 +18630,6 @@ name <email> alias <email> Qml::Internal::StartExternalQmlDialog - <No project> <Brak projektu> @@ -22413,12 +18637,10 @@ name <email> alias <email> QmlJSEditor::Internal::QmlJSPreviewRunner - Failed to preview Qt Quick file Nie można utworzyć podglądu pliku Qt Quick - Could not preview Qt Quick (QML) file. Reason: %1 Nie można utworzyć podglądu pliku Qt Quick (QML). Przyczyna: @@ -22428,7 +18650,6 @@ name <email> alias <email> QmlProjectManager::Internal::QmlTaskManager - QML QML @@ -22436,12 +18657,10 @@ name <email> alias <email> Qt4ProjectManager::Internal::MaemoPackageContents - Local File Path Ścieżka do lokalnego pliku - Remote File Path Ścieżka do zdalnego pliku @@ -22449,101 +18668,77 @@ name <email> alias <email> Qt4ProjectManager::Internal::MaemoPackageCreationStep - Creating package file ... Tworzenie pliku pakietu... - Cannot open MADDE config file '%1'. Nie można otworzyć pliku konfiguracyjnego MADDE "%1". - Packaging Error: Cannot open file '%1'. Błąd pakowania: Nie można otworzyć pliku "%1". - Packaging Error: Cannot write file '%1'. Błąd pakowania: Nie można zapisać pliku "%1". - Packaging Error: Could not create directory '%1'. - + Błąd pakowania: Nie można utworzyć katalogu "%1. - Packaging Error: Could not replace file '%1'. Błąd pakowania: Nie można zastąpić pliku "%1". - Packaging Error: Could not copy '%1' to '%2'. Błąd pakowania: Nie można skopiować pliku "%1" do "%2". - Package created. Utworzono pakiet. - Package Creation: Running command '%1'. Tworzenie pakietu: uruchamianie komendy "%1". - - Packaging failed. Błąd pakowania. - Packaging error: Could not start command '%1'. Reason: %2 - + Błąd pakowania: Nie można uruchomić komendy "%1". Powód: %2 - - Packaging Error: Command '%1' timed out. - + Exit code: %1 + Kod wyjściowy: %1 - Packaging Error: Command '%1' failed. Błąd pakowania: Komenda "%1" zakończona błędem. - Reason: %1 Powód: %1 - - - Output was: - - Qt4ProjectManager::Internal::MaemoPackageCreationWidget - <b>Create Package:</b> <b>Utwórz pakiet:</b> - Choose a local file Wybierz plik lokalny - File already in package Plik jest już obecny w pakiecie - You have already added this file. Plik został już uprzednio dodany. @@ -22551,7 +18746,6 @@ name <email> alias <email> Qt4ProjectManager::Internal::MaemoRunConfigurationFactory - New Maemo Run Configuration Nowa konfiguracja uruchamiania Maemo @@ -22559,7 +18753,6 @@ name <email> alias <email> Qt4ProjectManager::Internal::MaemoSettingsPage - Maemo Device Configurations Konfiguracje urządzenia Maemo @@ -22567,22 +18760,18 @@ name <email> alias <email> Qt4ProjectManager::Internal::MaemoSshConfigDialog - Save Public Key File Zachowaj plik z kluczem publicznym - Save Private Key File Zachowaj plik z kluczem prywatnym - Error writing file Błąd zapisywania do pliku - Could not write file '%1': %2 Nie można zapisać pliku "%1": @@ -22592,22 +18781,18 @@ name <email> alias <email> Qt4ProjectManager::Internal::S60DevicesBaseWidget - Default Domyślne - SDK Location Położenie SDK - Qt Location Położenie Qt - Choose Qt folder Wybierz katalog Qt @@ -22615,7 +18800,6 @@ name <email> alias <email> Qt4ProjectManager::Internal::S60DevicesModel - No Qt installed Brak zainstalowanego Qt @@ -22623,22 +18807,18 @@ name <email> alias <email> Qt4ProjectManager::Internal::GnuPocS60DevicesWidget - Step 1 of 2: Choose GnuPoc folder Krok 1 z 2: Wybierz katalog GnuPoc - Step 2 of 2: Choose Qt folder Krok 2 z 2: Wybierz katalog Qt - Adding GnuPoc Dodawanie GnuPoc - GnuPoc and Qt folders must not be identical. Katalogi GnuPoc i Qt nie mogą być takie same. @@ -22646,22 +18826,18 @@ name <email> alias <email> ProjectExplorer::Internal::S60ProjectChecker - The Symbian SDK and the project sources must reside on the same drive. Symbian SDK i źródła projektu muszą być na wspólnym dysku. - The Symbian SDK was not found for Qt version %1. Brak Symbian SDK dla Qt w wersji %1. - The "Open C/C++ plugin" is not installed in the Symbian SDK or the Symbian SDK path is misconfigured for Qt version %1. - The Symbian toolchain does not handle special characters in a project path well. Zestaw narzędzi dla Symbiana nie obsługuje również znaków specjalnych w ścieżkach projektów. @@ -22669,7 +18845,6 @@ name <email> alias <email> Qt4ProjectManager::Qt4Project - Evaluating Ewaluowanie @@ -22677,13 +18852,11 @@ name <email> alias <email> Qt4ProjectManager::QtVersion - The Qt version is invalid: %1 %1: Reason for being invalid Wersja Qt nie jest poprawna: %1 - The qmake command "%1" was not found or is not executable. %1: Path to qmake executable Komenda qmake "%1" nie została odnaleziona lub nie jest plikiem wykonywanlym. @@ -22692,7 +18865,6 @@ name <email> alias <email> emptyPane - none or multiple items selected nie zaznaczono lub zaznaczono wiele elementów @@ -22700,17 +18872,14 @@ name <email> alias <email> QmlDesigner::FormEditorWidget - Snap to guides (E) - Show bounding rectangles (A) - Only select items with content (S) Wybierz tylko elementy z zawartością (S) @@ -22718,7 +18887,6 @@ name <email> alias <email> QmlDesigner::NavigatorTreeModel - Invalid Id Niepoprawny identyfikator @@ -22726,7 +18894,6 @@ name <email> alias <email> QmlDesigner::PropertyEditor - Invalid Id Niepoprawny identyfikator @@ -22734,7 +18901,6 @@ name <email> alias <email> QmlDesigner::InvalidArgumentException - Failed to create item of type %1 Nie można utworzyć elementu typu %1 @@ -22742,76 +18908,77 @@ name <email> alias <email> InvalidIdException - Ids have to be unique: - Identyfikatory muszą być unikatowe: + Identyfikatory muszą być unikatowe: - Invalid Id: - Niepoprawny identyfikator: + Niepoprawny identyfikator: - Only alphanumeric characters and underscore allowed. Ids must begin with a lowercase letter. - + Dozwolone są tylko znaki alfanumeryczne i podkreślenia. Identyfikatory muszą rozpoczynać się małą literą. + + Only alphanumeric characters and underscore allowed. +Ids must begin with a lowercase letter. + Dozwolone są tylko znaki alfanumeryczne i podkreślenia. +Identyfikatory muszą rozpoczynać się małą literą. + + + Ids have to be unique. + Identyfikatory muszą być unikatowe. + + + Invalid Id: %1 +%2 + Niepoprawny identyfikator: %1 +%2 + CppTools::QuickFix - - Rewrite Using %1 - + Przepisz używając %1 - Swap Operands - + Zamień argumenty - Rewrite Condition Using || - + Przepisz warunek używając || - Split Declaration - + Rozdziel deklarację - Add Curly Braces - + Dodaj nawiasy klamrowe - - Move Declaration out of Condition - + Wyłącz deklarację z warunku - Split if Statement - + Rozdziel instrukcję if - Enclose in QLatin1String(...) - + Umieść w QLatin1String(...) - Convert to Objective-C String Literal - Use Fast String Concatenation with % @@ -22819,7 +18986,6 @@ Identyfikatory muszą rozpoczynać się małą literą. GenericProjectManager::Internal::Manager - Failed opening project '%1': Project already open Nie można otworzyć projektu "%1": projekt jest już otwarty @@ -22827,7 +18993,6 @@ Identyfikatory muszą rozpoczynać się małą literą. QmlProjectManager::QmlTarget - QML Viewer QML Viewer target display name Przeglądarka QML @@ -22836,7 +19001,6 @@ Identyfikatory muszą rozpoczynać się małą literą. QmlDesigner::QmlModelView - Invalid Id Niepoprawny identyfikator @@ -22844,35 +19008,84 @@ Identyfikatory muszą rozpoczynać się małą literą. Qt4ProjectManager::Internal::QemuRuntimeManager - - Start Maemo Emulator Uruchom emulator Maemo - Qemu has been shut down, because you removed the corresponding Qt version. - + Qemu finished with error: Exit code was %1. + + + Qemu failed to start: %1 - Qemu crashed - + Qemu zakończone błędem - Qemu error Błąd Qemu - Stop Maemo Emulator Zatrzymaj emulator Maemo + + ContextPaneTextWidget + + Text + Tekst + + + Style + Styl + + + Normal + Normalny + + + Outline + Kontur + + + Raised + Wypukły + + + Sunken + Wklęsły + + + ... + ... + + + + Core::HelpManager + + Unfiltered + Nieprzefiltrowane + + + + FakeVim::Internal::FakeVimHandler::Private + + Not an editor command: %1 + %1 nie jest komendą edytora + + + + QmlDesigner::ContextPaneWidget + + Disable permanently + Wyłącz na stałe + + -- cgit v1.2.1 From a3804bbfe3dbc15ba895b2a289163a7613019d8f Mon Sep 17 00:00:00 2001 From: hjk Date: Thu, 19 Aug 2010 14:05:50 +0200 Subject: debugger: fix QObject identification --- share/qtcreator/gdbmacros/dumper.py | 31 ++++++++++++++++++++++++------- 1 file changed, 24 insertions(+), 7 deletions(-) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index c4151d93ed..11a7ced047 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -1141,6 +1141,8 @@ SalCommand() ####################################################################### +qqQObjectCache = {} + class Dumper: def __init__(self): self.output = "" @@ -1154,6 +1156,25 @@ class Dumper: self.currentType = None self.currentTypePriority = -100 + def checkForQObjectBase(self, type): + if type.code != gdb.TYPE_CODE_STRUCT: + return False + name = str(type) + if name in qqQObjectCache: + return qqQObjectCache[name] + if name == self.ns + "QObject": + qqQObjectCache[name] = True + return True + fields = type.strip_typedefs().fields() + if len(fields) == 0: + qqQObjectCache[name] = False + return False + base = fields[0].type.strip_typedefs() + result = self.checkForQObjectBase(base) + qqQObjectCache[name] = result + return result + + def put(self, value): self.output += value @@ -1338,11 +1359,7 @@ class Dumper: return # Is this derived from QObject? - hasMetaObject = False - for field in typedefStrippedType.strip_typedefs().fields(): - if field.name == "staticMetaObject": - hasMetaObject = True - break + isQObjectDerived = self.checkForQObjectBase(typedefStrippedType) nsStrippedType = self.stripNamespaceFromType(typedefStrippedType)\ .replace("::", "__") @@ -1354,10 +1371,10 @@ class Dumper: if self.useFancy \ and ((format is None) or (format >= 1)) \ - and ((nsStrippedType in self.dumpers) or hasMetaObject): + and ((nsStrippedType in self.dumpers) or isQObjectDerived): #warn("IS DUMPABLE: %s " % type) self.putType(item.value.type) - if hasMetaObject: + if isQObjectDerived: # value has references stripped off item.value. item1 = Item(value, item.iname) qdump__QObject(self, item1) -- cgit v1.2.1 From 4bf97f1f9870dfe0ed7813a8383b1f10181e63cd Mon Sep 17 00:00:00 2001 From: Pierre Rossi Date: Thu, 19 Aug 2010 12:55:39 +0200 Subject: Doc: mention how to enable tooltips with watchers in Debug mode. Rephrased thanks to Leena. Reviewed-by: Leena Miettinen --- doc/qtcreator.qdoc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc index c8238aa1e8..359ddd4cbb 100644 --- a/doc/qtcreator.qdoc +++ b/doc/qtcreator.qdoc @@ -4558,6 +4558,9 @@ program is interrupted. To do so, click the \gui Value column, modify the value with the inplace editor, and press \key Enter (or \key Return). + You can enable tooltips in the main editor displaying this information. + For more information, see \l{Showing Tooltips in Debug Mode}. + \note The set of watched items is saved in your session. */ @@ -6388,6 +6391,15 @@ \o Uncheck the \gui{Use Debugging Helper} checkbox. \endlist + \section1 Showing Tooltips in Debug Mode + + To inspect the value of variables from the editor, you can turn + on tooltips. Tooltips are hidden by default for performance reasons. + + \list 1 + \o Select \gui Tools > \gui Options... > \gui Debugger > \gui General. + \o Select the \gui {Use tooltips in main editor while debugging} check box. + \endlist \section1 Locating Files -- cgit v1.2.1 From 423686c0a9a400869d2f7b27f0bbad0f4163da23 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Thu, 19 Aug 2010 14:45:21 +0200 Subject: Report project issues in the Project Mode window * Add test for build- and sourcedirectories being at different levels Reviewed-by: dt --- src/plugins/qt4projectmanager/qmakestep.cpp | 2 +- .../qt4projectmanager/qt4projectconfigwidget.cpp | 32 ++++++++++++++++------ src/plugins/qt4projectmanager/qtversionmanager.cpp | 22 ++++++++++++++- src/plugins/qt4projectmanager/qtversionmanager.h | 2 +- .../qt4projectmanager/wizards/targetsetuppage.cpp | 31 +++++++++++---------- .../qt4projectmanager/wizards/targetsetuppage.h | 2 +- 6 files changed, 64 insertions(+), 27 deletions(-) diff --git a/src/plugins/qt4projectmanager/qmakestep.cpp b/src/plugins/qt4projectmanager/qmakestep.cpp index 12cbf8ab28..0125273668 100644 --- a/src/plugins/qt4projectmanager/qmakestep.cpp +++ b/src/plugins/qt4projectmanager/qmakestep.cpp @@ -179,7 +179,7 @@ bool QMakeStep::init() Qt4Project *pro = qt4BuildConfiguration()->qt4Target()->qt4Project(); QString proFile = pro->file()->fileName(); - m_tasks = qt4BuildConfiguration()->qtVersion()->reportIssues(proFile); + m_tasks = qt4BuildConfiguration()->qtVersion()->reportIssues(proFile, workingDirectory); m_scriptTemplate = pro->rootProjectNode()->projectType() == ScriptTemplate; return AbstractProcessStep::init(); diff --git a/src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp b/src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp index 3aacc1bde2..b999cc31d8 100644 --- a/src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp +++ b/src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp @@ -341,18 +341,32 @@ void Qt4ProjectConfigWidget::updateImportLabel() } } - QString sourceDirectory = - m_buildConfiguration->target()->project()->projectDirectory(); - if (!sourceDirectory.endsWith('/')) - sourceDirectory.append('/'); - bool invalidBuildDirectory = m_buildConfiguration->shadowBuild() - && m_buildConfiguration->buildDirectory().startsWith(sourceDirectory); - - if (invalidBuildDirectory) { + QString buildDirectory = m_buildConfiguration->target()->project()->projectDirectory();; + if (m_buildConfiguration->shadowBuild()) + buildDirectory = m_buildConfiguration->buildDirectory(); + QList issues = m_buildConfiguration->qtVersion()->reportIssues(m_buildConfiguration->target()->project()->file()->fileName(), + buildDirectory); + + if (!issues.isEmpty()) { m_ui->problemLabel->setVisible(true); m_ui->warningLabel->setVisible(true); m_ui->importLabel->setVisible(visible); - m_ui->problemLabel->setText(tr("Building in subdirectories of the source directory is not supported by qmake.")); + QString text = ""; + foreach (const ProjectExplorer::Task &task, issues) { + QString type; + switch (task.type) { + case ProjectExplorer::Task::Error: + type = tr("Error: "); + break; + case ProjectExplorer::Task::Warning: + type = tr("Warning: "); + break; + } + if (!text.endsWith(QLatin1String("br>"))) + text.append(QLatin1String("
    ")); + text.append(type + task.description); + } + m_ui->problemLabel->setText(text); } else if (targetMatches) { m_ui->problemLabel->setVisible(false); m_ui->warningLabel->setVisible(false); diff --git a/src/plugins/qt4projectmanager/qtversionmanager.cpp b/src/plugins/qt4projectmanager/qtversionmanager.cpp index 02246c7c98..33b3102496 100644 --- a/src/plugins/qt4projectmanager/qtversionmanager.cpp +++ b/src/plugins/qt4projectmanager/qtversionmanager.cpp @@ -638,10 +638,14 @@ bool QtVersion::supportsShadowBuilds() const } QList -QtVersion::reportIssues(const QString &proFile) +QtVersion::reportIssues(const QString &proFile, const QString &buildDir) { QList results; + QString tmpBuildDir = buildDir; + if (!buildDir.endsWith(QChar('/'))) + tmpBuildDir.append(QChar('/')); + if (!isValid()) { //: %1: Reason for being invalid const QString msg = QCoreApplication::translate("Qt4ProjectManager::QtVersion", "The Qt version is invalid: %1").arg(invalidReason()); @@ -659,6 +663,22 @@ QtVersion::reportIssues(const QString &proFile) QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM))); } + QString sourcePath = QFileInfo(proFile).absolutePath(); + if (!sourcePath.endsWith(QChar('/'))) + sourcePath.append(QChar('/')); + + if ((tmpBuildDir.startsWith(sourcePath)) && (tmpBuildDir != sourcePath)) { + const QString msg = QCoreApplication::translate("Qt4ProjectManager::QtVersion", + "Qmake does not support build directories below the source directory."); + results.append(ProjectExplorer::Task(ProjectExplorer::Task::Warning, msg, QString(), -1, + QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM))); + } else if (tmpBuildDir.count(QChar('/')) != sourcePath.count(QChar('/'))) { + const QString msg = QCoreApplication::translate("Qt4ProjectManager::QtVersion", + "The build directory needs to be at the same level as the source directory."); + results.append(ProjectExplorer::Task(ProjectExplorer::Task::Warning, msg, QString(), -1, + QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM))); + } + QSet targets = supportedTargetIds(); if (targets.contains(Constants::S60_DEVICE_TARGET_ID) || targets.contains(Constants::S60_EMULATOR_TARGET_ID)) diff --git a/src/plugins/qt4projectmanager/qtversionmanager.h b/src/plugins/qt4projectmanager/qtversionmanager.h index 6ccacad406..3716635d14 100644 --- a/src/plugins/qt4projectmanager/qtversionmanager.h +++ b/src/plugins/qt4projectmanager/qtversionmanager.h @@ -147,7 +147,7 @@ public: /// its symbian setup. /// @return a list of tasks, ordered on severity (errors first, then /// warnings and finally info items. - QList reportIssues(const QString &proFile); + QList reportIssues(const QString &proFile, const QString &buildDir); private: QList > toolChains() const; diff --git a/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp b/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp index 91872791f9..491a6a5c2b 100644 --- a/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp +++ b/src/plugins/qt4projectmanager/wizards/targetsetuppage.cpp @@ -130,10 +130,20 @@ void TargetSetupPage::setImportInfos(const QList &infos) foreach (const ImportInfo &i, m_infos) { ++pos; + QString buildDir; + if (i.directory.isEmpty()) { + if (i.version->supportsShadowBuilds()) + buildDir = Qt4Target::defaultShadowBuildDirectory(Qt4Project::defaultTopLevelBuildDirectory(m_proFilePath), t); + else + buildDir = Qt4Project::projectDirectory(m_proFilePath); + } else { + buildDir = i.directory; + } + if (!i.version->supportsTargetId(t)) continue; QTreeWidgetItem *versionItem = new QTreeWidgetItem(targetItem); - QPair issues = reportIssues(i.version); + QPair issues = reportIssues(i.version, buildDir); QString toolTip = i.version->displayName(); if (!issues.second.isEmpty()) @@ -168,17 +178,9 @@ void TargetSetupPage::setImportInfos(const QList &infos) versionItem->setToolTip(1, status); // Column 2 (directory): - QString dir; - if (i.directory.isEmpty()) { - if (i.version->supportsShadowBuilds()) - dir = QDir::toNativeSeparators(Qt4Target::defaultShadowBuildDirectory(Qt4Project::defaultTopLevelBuildDirectory(m_proFilePath), t)); - else - dir = QDir::toNativeSeparators(Qt4Project::projectDirectory(m_proFilePath)); - } else { - dir = QDir::toNativeSeparators(i.directory); - } - versionItem->setText(2, dir); - versionItem->setToolTip(2, dir); + buildDir = QDir::toNativeSeparators(buildDir); + versionItem->setText(2, buildDir); + versionItem->setToolTip(2, buildDir); } } @@ -441,7 +443,8 @@ void TargetSetupPage::resetInfos() m_infos.clear(); } -QPair TargetSetupPage::reportIssues(Qt4ProjectManager::QtVersion *version) +QPair TargetSetupPage::reportIssues(Qt4ProjectManager::QtVersion *version, + const QString &buildDir) { if (m_proFilePath.isEmpty()) return qMakePair(QIcon(), QString()); @@ -450,7 +453,7 @@ QPair TargetSetupPage::reportIssues(Qt4ProjectManager::QtVersion ->getObject(); QTC_ASSERT(taskWindow, return qMakePair(QIcon(), QString())); - QList issues = version->reportIssues(m_proFilePath); + QList issues = version->reportIssues(m_proFilePath, buildDir); QString text; diff --git a/src/plugins/qt4projectmanager/wizards/targetsetuppage.h b/src/plugins/qt4projectmanager/wizards/targetsetuppage.h index 27985d7622..9749422638 100644 --- a/src/plugins/qt4projectmanager/wizards/targetsetuppage.h +++ b/src/plugins/qt4projectmanager/wizards/targetsetuppage.h @@ -121,7 +121,7 @@ private slots: private: void resetInfos(); - QPair reportIssues(QtVersion *version); + QPair reportIssues(QtVersion *version, const QString &buildDir); QList m_infos; bool m_preferMobile; -- cgit v1.2.1 From 5b7280819277e45a6011d35bf28bf3fdc1ff8669 Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Thu, 19 Aug 2010 16:11:10 +0200 Subject: Reuse existing string for new "builddir.level != sourdir.level" warning * Revert this once string freeze is over! --- src/plugins/qt4projectmanager/qtversionmanager.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/plugins/qt4projectmanager/qtversionmanager.cpp b/src/plugins/qt4projectmanager/qtversionmanager.cpp index 33b3102496..7eae510d64 100644 --- a/src/plugins/qt4projectmanager/qtversionmanager.cpp +++ b/src/plugins/qt4projectmanager/qtversionmanager.cpp @@ -673,8 +673,12 @@ QtVersion::reportIssues(const QString &proFile, const QString &buildDir) results.append(ProjectExplorer::Task(ProjectExplorer::Task::Warning, msg, QString(), -1, QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM))); } else if (tmpBuildDir.count(QChar('/')) != sourcePath.count(QChar('/'))) { + // FIXME: We currently are in string freeze, so I have to reuse some existing text! + // const QString msg = QCoreApplication::translate("Qt4ProjectManager::QtVersion", + // "The build directory needs to be at the same level as the source directory."); const QString msg = QCoreApplication::translate("Qt4ProjectManager::QtVersion", - "The build directory needs to be at the same level as the source directory."); + "Qmake does not support build directories below the source directory."); + results.append(ProjectExplorer::Task(ProjectExplorer::Task::Warning, msg, QString(), -1, QLatin1String(ProjectExplorer::Constants::TASK_CATEGORY_BUILDSYSTEM))); } -- cgit v1.2.1 From abaf2e9f210c778e79a77d50e37e9b11196b70fd Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Thu, 19 Aug 2010 16:26:47 +0200 Subject: VCS[hg]: Mercurial forgets working directory from commit #2 on. Do not clear variable containing submit repository. Fix potential crash (closing diff editor before command termination), use proper temp file name. Pass --non-interactive to "commit" to suppress editors being launched (despite -l). Reviewed-by: Marco Bubke Task-number: QTCREATORBUG-1503 --- src/plugins/mercurial/mercurialclient.cpp | 5 ++++- src/plugins/mercurial/mercurialjobrunner.cpp | 7 ++++++- src/plugins/mercurial/mercurialjobrunner.h | 11 ++++++----- src/plugins/mercurial/mercurialplugin.cpp | 8 ++++++-- 4 files changed, 22 insertions(+), 9 deletions(-) diff --git a/src/plugins/mercurial/mercurialclient.cpp b/src/plugins/mercurial/mercurialclient.cpp index 3db6b7a7f8..51c92d6a2b 100644 --- a/src/plugins/mercurial/mercurialclient.cpp +++ b/src/plugins/mercurial/mercurialclient.cpp @@ -61,6 +61,8 @@ inline Core::IEditor* locateEditor(const Core::ICore *core, const char *property return 0; } +static const char nonInteractiveOptionC[] = "--noninteractive"; + namespace Mercurial { namespace Internal { @@ -533,7 +535,8 @@ void MercurialClient::commit(const QString &repositoryRoot, const QStringList &f // refuse to do "autoadd" on a commit with working directory only, as this will // add all the untracked stuff. QTC_ASSERT(!(autoAddRemove && files.isEmpty()), return) - QStringList args(QLatin1String("commit")); + QStringList args = QStringList(QLatin1String(nonInteractiveOptionC)); + args.append(QLatin1String("commit")); if (!committerInfo.isEmpty()) args << QLatin1String("-u") << committerInfo; args << QLatin1String("-l") << commitMessageFile; diff --git a/src/plugins/mercurial/mercurialjobrunner.cpp b/src/plugins/mercurial/mercurialjobrunner.cpp index 185856a16d..5651868282 100644 --- a/src/plugins/mercurial/mercurialjobrunner.cpp +++ b/src/plugins/mercurial/mercurialjobrunner.cpp @@ -69,6 +69,11 @@ HgTask::HgTask(const QString &repositoryRoot, { } +VCSBase::VCSBaseEditor* HgTask::displayEditor() const +{ + return editor; +} + void HgTask::emitSucceeded() { emit succeeded(m_cookie); @@ -221,7 +226,7 @@ void MercurialJobRunner::task(const QSharedPointer &job) */ if (stdOutput.isEmpty()) stdOutput = stdErr; - emit output(stdOutput); + emit output(stdOutput); // This will clear the diff "Working..." text. taskData->emitSucceeded(); } else { emit error(QString::fromLocal8Bit(stdErr)); diff --git a/src/plugins/mercurial/mercurialjobrunner.h b/src/plugins/mercurial/mercurialjobrunner.h index ef9c7856c8..77f332b919 100644 --- a/src/plugins/mercurial/mercurialjobrunner.h +++ b/src/plugins/mercurial/mercurialjobrunner.h @@ -38,6 +38,7 @@ #include #include #include +#include QT_BEGIN_NAMESPACE class QProcess; @@ -64,10 +65,10 @@ public: VCSBase::VCSBaseEditor *editor, const QVariant &cookie = QVariant()); - bool shouldEmit() { return emitRaw; } - VCSBase::VCSBaseEditor* displayEditor() { return editor; } - QStringList args() { return arguments; } - QString repositoryRoot() { return m_repositoryRoot; } + bool shouldEmit() const { return emitRaw; } + VCSBase::VCSBaseEditor* displayEditor() const; + QStringList args() const { return arguments; } + QString repositoryRoot() const { return m_repositoryRoot; } signals: void succeeded(const QVariant &cookie); // Use a queued connection @@ -81,7 +82,7 @@ private: const QStringList arguments; const bool emitRaw; const QVariant m_cookie; - VCSBase::VCSBaseEditor *editor; + QPointer editor; // User might close it. }; /* A job queue running in a separate thread, executing commands diff --git a/src/plugins/mercurial/mercurialplugin.cpp b/src/plugins/mercurial/mercurialplugin.cpp index 958e5ae058..5a39e95071 100644 --- a/src/plugins/mercurial/mercurialplugin.cpp +++ b/src/plugins/mercurial/mercurialplugin.cpp @@ -581,7 +581,12 @@ void MercurialPlugin::showCommitWidget(const QList > &st deleteCommitLog(); - changeLog = new QTemporaryFile(this); + // Open commit log + QString changeLogPattern = QDir::tempPath(); + if (!changeLogPattern.endsWith(QLatin1Char('/'))) + changeLogPattern += QLatin1Char('/'); + changeLogPattern += QLatin1String("qtcreator-hg-XXXXXX.msg"); + changeLog = new QTemporaryFile(changeLogPattern, this); if (!changeLog->open()) { outputWindow->appendError(tr("Unable to generate a temporary file for the commit editor.")); return; @@ -673,7 +678,6 @@ void MercurialPlugin::deleteCommitLog() if (changeLog) { delete changeLog; changeLog = 0; - m_submitRepository.clear(); } } -- cgit v1.2.1 From ab494a07ad0eddc0ab6906c44f35dd291a0ef96c Mon Sep 17 00:00:00 2001 From: Tobias Hunger Date: Thu, 19 Aug 2010 16:46:14 +0200 Subject: Fix warning about unhandled enum value in switch statement --- src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp b/src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp index b999cc31d8..7036038267 100644 --- a/src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp +++ b/src/plugins/qt4projectmanager/qt4projectconfigwidget.cpp @@ -361,6 +361,9 @@ void Qt4ProjectConfigWidget::updateImportLabel() case ProjectExplorer::Task::Warning: type = tr("Warning: "); break; + case ProjectExplorer::Task::Unknown: + default: + break; } if (!text.endsWith(QLatin1String("br>"))) text.append(QLatin1String("
    ")); -- cgit v1.2.1 From 420a2b4e6efdae067728d8a552016ed614f1d541 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Thu, 19 Aug 2010 15:53:29 +0200 Subject: QmlEditor: Remove QtQuick->Preview from tools menu This only works when a qmlviewer is in the PATH, which is non obvious. Removing the feature therefore completely. --- src/plugins/qmljseditor/qmljseditor.cpp | 1 - src/plugins/qmljseditor/qmljseditor.pro | 6 ++-- src/plugins/qmljseditor/qmljseditorconstants.h | 1 - src/plugins/qmljseditor/qmljseditorplugin.cpp | 29 ++------------- src/plugins/qmljseditor/qmljseditorplugin.h | 7 ---- src/plugins/qmljseditor/qmljspreviewrunner.cpp | 50 -------------------------- src/plugins/qmljseditor/qmljspreviewrunner.h | 36 ------------------- 7 files changed, 4 insertions(+), 126 deletions(-) delete mode 100644 src/plugins/qmljseditor/qmljspreviewrunner.cpp delete mode 100644 src/plugins/qmljseditor/qmljspreviewrunner.h diff --git a/src/plugins/qmljseditor/qmljseditor.cpp b/src/plugins/qmljseditor/qmljseditor.cpp index 7f0a4e2477..24f9d7e541 100644 --- a/src/plugins/qmljseditor/qmljseditor.cpp +++ b/src/plugins/qmljseditor/qmljseditor.cpp @@ -570,7 +570,6 @@ QmlJSEditorEditable::QmlJSEditorEditable(QmlJSTextEditor *editor) Core::UniqueIDManager *uidm = Core::UniqueIDManager::instance(); m_context << uidm->uniqueIdentifier(QmlJSEditor::Constants::C_QMLJSEDITOR_ID); m_context << uidm->uniqueIdentifier(TextEditor::Constants::C_TEXTEDITOR); - m_context << uidm->uniqueIdentifier(QmlDesigner::Constants::C_QT_QUICK_TOOLS_MENU); } // Use preferred mode from Bauhaus settings diff --git a/src/plugins/qmljseditor/qmljseditor.pro b/src/plugins/qmljseditor/qmljseditor.pro index d7f95441dd..27130d97cd 100644 --- a/src/plugins/qmljseditor/qmljseditor.pro +++ b/src/plugins/qmljseditor/qmljseditor.pro @@ -20,8 +20,7 @@ HEADERS += \ qmljshighlighter.h \ qmljshoverhandler.h \ qmljsmodelmanager.h \ - qmljsmodelmanagerinterface.h \ - qmljspreviewrunner.h + qmljsmodelmanagerinterface.h SOURCES += \ qmljscodecompletion.cpp \ @@ -34,8 +33,7 @@ SOURCES += \ qmljshighlighter.cpp \ qmljshoverhandler.cpp \ qmljsmodelmanager.cpp \ - qmljsmodelmanagerinterface.cpp \ - qmljspreviewrunner.cpp + qmljsmodelmanagerinterface.cpp RESOURCES += qmljseditor.qrc OTHER_FILES += QmlJSEditor.pluginspec QmlJSEditor.mimetypes.xml diff --git a/src/plugins/qmljseditor/qmljseditorconstants.h b/src/plugins/qmljseditor/qmljseditorconstants.h index 0db49ad417..eb6989fdd3 100644 --- a/src/plugins/qmljseditor/qmljseditorconstants.h +++ b/src/plugins/qmljseditor/qmljseditorconstants.h @@ -36,7 +36,6 @@ namespace QmlJSEditor { namespace Constants { // menus -const char * const M_QTQUICK = "QtQuickDesigner.Menu"; const char * const M_CONTEXT = "QML JS Editor.ContextMenu"; const char * const RUN_SEP = "QmlJSEditor.Run.Separator"; diff --git a/src/plugins/qmljseditor/qmljseditorplugin.cpp b/src/plugins/qmljseditor/qmljseditorplugin.cpp index 4afe4310e1..6166cb11b4 100644 --- a/src/plugins/qmljseditor/qmljseditorplugin.cpp +++ b/src/plugins/qmljseditor/qmljseditorplugin.cpp @@ -36,7 +36,6 @@ #include "qmljshoverhandler.h" #include "qmljsmodelmanager.h" #include "qmlfilewizard.h" -#include "qmljspreviewrunner.h" #include @@ -99,8 +98,7 @@ bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *e addAutoReleasedObject(m_modelManager); QList context; - context << core->uniqueIDManager()->uniqueIdentifier(QmlJSEditor::Constants::C_QMLJSEDITOR_ID) - << core->uniqueIDManager()->uniqueIdentifier(QmlDesigner::Constants::C_QT_QUICK_TOOLS_MENU); + context << core->uniqueIDManager()->uniqueIdentifier(QmlJSEditor::Constants::C_QMLJSEDITOR_ID); m_editor = new QmlJSEditorFactory(this); addObject(m_editor); @@ -122,21 +120,7 @@ bool QmlJSEditorPlugin::initialize(const QStringList & /*arguments*/, QString *e Core::ActionManager *am = core->actionManager(); Core::ActionContainer *contextMenu = am->createMenu(QmlJSEditor::Constants::M_CONTEXT); - Core::ActionContainer *mtools = am->actionContainer(Core::Constants::M_TOOLS); - Core::ActionContainer *menuQtQuick = am->createMenu(Constants::M_QTQUICK); - menuQtQuick->menu()->setTitle(tr("Qt Quick")); - mtools->addMenu(menuQtQuick); - m_actionPreview = new QAction(tr("&Preview"), this); - - QList toolsMenuContext = QList() - << core->uniqueIDManager()->uniqueIdentifier(QmlDesigner::Constants::C_QT_QUICK_TOOLS_MENU); - Core::Command *cmd = addToolAction(m_actionPreview, am, toolsMenuContext, - QLatin1String("QtQuick.Preview"), menuQtQuick, tr("Ctrl+Alt+R")); - connect(cmd->action(), SIGNAL(triggered()), SLOT(openPreview())); - - m_previewRunner = new QmlJSPreviewRunner(this); - m_actionPreview->setEnabled(m_previewRunner->isReady()); - + Core::Command *cmd; QAction *followSymbolUnderCursorAction = new QAction(tr("Follow Symbol Under Cursor"), this); cmd = am->registerAction(followSymbolUnderCursorAction, Constants::FOLLOW_SYMBOL_UNDER_CURSOR, context); cmd->setDefaultKeySequence(QKeySequence(Qt::Key_F2)); @@ -172,15 +156,6 @@ void QmlJSEditorPlugin::extensionsInitialized() { } -void QmlJSEditorPlugin::openPreview() -{ - Core::EditorManager *em = Core::EditorManager::instance(); - - if (em->currentEditor() && em->currentEditor()->id() == Constants::C_QMLJSEDITOR_ID) - m_previewRunner->run(em->currentEditor()->file()->fileName()); - -} - void QmlJSEditorPlugin::initializeEditor(QmlJSEditor::Internal::QmlJSTextEditor *editor) { QTC_ASSERT(m_instance, /**/); diff --git a/src/plugins/qmljseditor/qmljseditorplugin.h b/src/plugins/qmljseditor/qmljseditorplugin.h index db534f0f29..d8cc225a0d 100644 --- a/src/plugins/qmljseditor/qmljseditorplugin.h +++ b/src/plugins/qmljseditor/qmljseditorplugin.h @@ -53,7 +53,6 @@ namespace Internal { class QmlJSEditorFactory; class QmlJSTextEditor; -class QmlJSPreviewRunner; class QmlJSEditorPlugin : public ExtensionSystem::IPlugin { @@ -75,18 +74,12 @@ public: public Q_SLOTS: void followSymbolUnderCursor(); -private Q_SLOTS: - void openPreview(); - private: Core::Command *addToolAction(QAction *a, Core::ActionManager *am, const QList &context, const QString &name, Core::ActionContainer *c1, const QString &keySequence); static QmlJSEditorPlugin *m_instance; - QAction *m_actionPreview; - QmlJSPreviewRunner *m_previewRunner; - ModelManagerInterface *m_modelManager; QmlFileWizard *m_wizard; QmlJSEditorFactory *m_editor; diff --git a/src/plugins/qmljseditor/qmljspreviewrunner.cpp b/src/plugins/qmljseditor/qmljspreviewrunner.cpp deleted file mode 100644 index 7611cecc2b..0000000000 --- a/src/plugins/qmljseditor/qmljspreviewrunner.cpp +++ /dev/null @@ -1,50 +0,0 @@ -#include "qmljspreviewrunner.h" - -#include -#include - -#include -#include - -#include - -namespace QmlJSEditor { -namespace Internal { - -QmlJSPreviewRunner::QmlJSPreviewRunner(QObject *parent) : - QObject(parent) -{ - // prepend creator/bin dir to search path (only useful for special creator-qml package) - const QString searchPath = QCoreApplication::applicationDirPath() - + Utils::SynchronousProcess::pathSeparator() - + QString(qgetenv("PATH")); - m_qmlViewerDefaultPath = Utils::SynchronousProcess::locateBinary(searchPath, QLatin1String("qmlviewer")); - - ProjectExplorer::Environment environment = ProjectExplorer::Environment::systemEnvironment(); - m_applicationLauncher.setEnvironment(environment.toStringList()); -} - -bool QmlJSPreviewRunner::isReady() const -{ - return !m_qmlViewerDefaultPath.isEmpty(); -} - -void QmlJSPreviewRunner::run(const QString &filename) -{ - QString errorMessage; - if (!filename.isEmpty()) { - m_applicationLauncher.start(ProjectExplorer::ApplicationLauncher::Gui, m_qmlViewerDefaultPath, - QStringList() << filename); - - } else { - errorMessage = "No file specified."; - } - - if (!errorMessage.isEmpty()) - QMessageBox::warning(0, tr("Failed to preview Qt Quick file"), - tr("Could not preview Qt Quick (QML) file. Reason: \n%1").arg(errorMessage)); -} - - -} // namespace Internal -} // namespace QmlJSEditor diff --git a/src/plugins/qmljseditor/qmljspreviewrunner.h b/src/plugins/qmljseditor/qmljspreviewrunner.h deleted file mode 100644 index 1a3c26370f..0000000000 --- a/src/plugins/qmljseditor/qmljspreviewrunner.h +++ /dev/null @@ -1,36 +0,0 @@ -#ifndef QMLJSPREVIEWRUNNER_H -#define QMLJSPREVIEWRUNNER_H - -#include - -#include - -namespace QmlJSEditor { -namespace Internal { - -class QmlJSPreviewRunner : public QObject -{ - Q_OBJECT -public: - explicit QmlJSPreviewRunner(QObject *parent = 0); - - bool isReady() const; - void run(const QString &filename); - -signals: - -public slots: - -private: - QString m_qmlViewerDefaultPath; - - ProjectExplorer::ApplicationLauncher m_applicationLauncher; - -}; - - -} // namespace Internal -} // namespace QmlJSEditor - - -#endif // QMLJSPREVIEWRUNNER_H -- cgit v1.2.1 From 60fffda9eb1f51cea6de74fb131b1d0d6bb6bbfd Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Thu, 19 Aug 2010 16:51:27 +0200 Subject: QmlProject: Search for qmlviewer in configured Qt versions (if not found in $PATH) If no 'qmlviewer' executable is found in the PATH, iterate through the list of configured Qt versions and try to find a qmlviewer there. This should help users configuring creator such to play with Qml. Right now the first qmlviewer found in a Qt version is selected. A UI to let the user select one explicitly was not possible any more (string freeze). This requires a dependency from QmlProjectManager to Qt4ProjectManager. Reviewed-by: dt --- src/plugins/plugins.pro | 1 + .../qmlprojectmanager/QmlProjectManager.pluginspec | 2 + .../qmlprojectmanager_dependencies.pri | 1 + .../qmlprojectrunconfiguration.cpp | 83 +++++++++++++++------- .../qmlprojectmanager/qmlprojectrunconfiguration.h | 6 +- .../qt4projectmanager/qt4projectmanager.pro | 4 +- .../qt4projectmanager/qt4projectmanager_global.h | 41 +++++++++++ src/plugins/qt4projectmanager/qtversionmanager.cpp | 17 +++++ src/plugins/qt4projectmanager/qtversionmanager.h | 7 +- 9 files changed, 132 insertions(+), 30 deletions(-) create mode 100644 src/plugins/qt4projectmanager/qt4projectmanager_global.h diff --git a/src/plugins/plugins.pro b/src/plugins/plugins.pro index f59ddb97a4..f958d426e0 100644 --- a/src/plugins/plugins.pro +++ b/src/plugins/plugins.pro @@ -190,6 +190,7 @@ plugin_qmlprojectmanager.depends = plugin_texteditor plugin_qmlprojectmanager.depends += plugin_projectexplorer plugin_qmlprojectmanager.depends += plugin_qmljseditor plugin_qmlprojectmanager.depends += plugin_debugger +plugin_qmlprojectmanager.depends += plugin_qt4projectmanager plugin_qmldesigner.subdir = qmldesigner plugin_qmldesigner.depends = plugin_coreplugin diff --git a/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec b/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec index eca6196a3e..8e3405428e 100644 --- a/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec +++ b/src/plugins/qmlprojectmanager/QmlProjectManager.pluginspec @@ -18,5 +18,7 @@ Alternatively, this plugin may be used under the terms of the GNU Lesser General + +
    diff --git a/src/plugins/qmlprojectmanager/qmlprojectmanager_dependencies.pri b/src/plugins/qmlprojectmanager/qmlprojectmanager_dependencies.pri index 74bc6fed60..9cdedcd2c3 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectmanager_dependencies.pri +++ b/src/plugins/qmlprojectmanager/qmlprojectmanager_dependencies.pri @@ -2,3 +2,4 @@ include(../../plugins/projectexplorer/projectexplorer.pri) include(../../plugins/texteditor/texteditor.pri) include(../../plugins/qmljseditor/qmljseditor.pri) include(../../plugins/debugger/debugger.pri) +include(../../plugins/qt4projectmanager/qt4projectmanager.pri) diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp index 3b959f83af..3e3e75ffeb 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp @@ -41,6 +41,8 @@ #include #include #include +#include +#include #include #include @@ -94,20 +96,10 @@ void QmlProjectRunConfiguration::ctor() connect(em, SIGNAL(currentEditorChanged(Core::IEditor*)), this, SLOT(changeCurrentFile(Core::IEditor*))); - setDisplayName(tr("QML Viewer", "QMLRunConfiguration display name.")); + Qt4ProjectManager::QtVersionManager *qtVersions = Qt4ProjectManager::QtVersionManager::instance(); + connect(qtVersions, SIGNAL(qtVersionsChanged(QList)), this, SLOT(updateEnabled())); - // prepend creator/bin dir to search path (only useful for special creator-qml package) - const QString searchPath = QCoreApplication::applicationDirPath() - + Utils::SynchronousProcess::pathSeparator() - + QString(qgetenv("PATH")); - -#ifdef Q_OS_MAC - const QString qmlViewerName = QLatin1String("QMLViewer"); -#else - const QString qmlViewerName = QLatin1String("qmlviewer"); -#endif - - m_qmlViewerDefaultPath = Utils::SynchronousProcess::locateBinary(searchPath, qmlViewerName); + setDisplayName(tr("QML Viewer", "QMLRunConfiguration display name.")); } QmlProjectRunConfiguration::~QmlProjectRunConfiguration() @@ -128,7 +120,8 @@ QString QmlProjectRunConfiguration::viewerPath() const { if (!m_qmlViewerCustomPath.isEmpty()) return m_qmlViewerCustomPath; - return m_qmlViewerDefaultPath; + + return viewerDefaultPath(); } QStringList QmlProjectRunConfiguration::viewerArguments() const @@ -182,8 +175,11 @@ QWidget *QmlProjectRunConfiguration::createConfigurationWidget() Utils::PathChooser *qmlViewer = new Utils::PathChooser; qmlViewer->setExpectedKind(Utils::PathChooser::Command); qmlViewer->setPath(viewerPath()); + connect(qmlViewer, SIGNAL(changed(QString)), this, SLOT(onViewerChanged())); + QToolButton *qtVersionSelector = new QToolButton; + QLineEdit *qmlViewerArgs = new QLineEdit; qmlViewerArgs->setText(m_qmlViewerArgs); connect(qmlViewerArgs, SIGNAL(textChanged(QString)), this, SLOT(onViewerArgsChanged())); @@ -267,7 +263,7 @@ void QmlProjectRunConfiguration::setMainScript(const QString &scriptFile) } else { m_usingCurrentFile = false; m_mainScriptFilename = qmlTarget()->qmlProject()->projectDir().absoluteFilePath(scriptFile); - setEnabled(true); + updateEnabled(); } } @@ -315,40 +311,79 @@ bool QmlProjectRunConfiguration::fromMap(const QVariantMap &map) return RunConfiguration::fromMap(map); } -void QmlProjectRunConfiguration::changeCurrentFile(Core::IEditor *editor) +void QmlProjectRunConfiguration::changeCurrentFile(Core::IEditor * /*editor*/) +{ + updateEnabled(); +} + +void QmlProjectRunConfiguration::updateEnabled() { + bool qmlFileFound = false; if (m_usingCurrentFile) { - bool enable = false; + Core::IEditor *editor = Core::EditorManager::instance()->currentEditor(); if (editor) { m_currentFileFilename = editor->file()->fileName(); if (Core::ICore::instance()->mimeDatabase()->findByFile(mainScript()).type() == QLatin1String("application/x-qml")) - enable = true; + qmlFileFound = true; } if (!editor || Core::ICore::instance()->mimeDatabase()->findByFile(mainScript()).type() == QLatin1String("application/x-qmlproject")) { // find a qml file with lowercase filename. This is slow but only done in initialization/other border cases. - foreach(const QString& filename, m_projectTarget->qmlProject()->files()) { + foreach(const QString &filename, m_projectTarget->qmlProject()->files()) { const QFileInfo fi(filename); if (!filename.isEmpty() && fi.baseName()[0].isLower() && Core::ICore::instance()->mimeDatabase()->findByFile(fi).type() == QLatin1String("application/x-qml")) { m_currentFileFilename = filename; - enable = true; + qmlFileFound = true; break; } } } + } else { // use default one + qmlFileFound = !m_mainScriptFilename.isEmpty(); + } + + bool newValue = QFileInfo(viewerPath()).exists() && qmlFileFound; - setEnabled(enable); + if (m_isEnabled != newValue) { + m_isEnabled = newValue; + emit isEnabledChanged(m_isEnabled); } } -void QmlProjectRunConfiguration::setEnabled(bool value) +QString QmlProjectRunConfiguration::viewerDefaultPath() const { - m_isEnabled = value; - emit isEnabledChanged(m_isEnabled); + QString path; + + // prepend creator/bin dir to search path (only useful for special creator-qml package) + const QString searchPath = QCoreApplication::applicationDirPath() + + Utils::SynchronousProcess::pathSeparator() + + QString::fromLocal8Bit(qgetenv("PATH")); + + +#ifdef Q_OS_MAC + const QString qmlViewerName = QLatin1String("QMLViewer"); +#else + const QString qmlViewerName = QLatin1String("qmlviewer"); +#endif + + path = Utils::SynchronousProcess::locateBinary(searchPath, qmlViewerName); + if (!path.isEmpty()) + return path; + + // Try to locate default path in Qt Versions + Qt4ProjectManager::QtVersionManager *qtVersions = Qt4ProjectManager::QtVersionManager::instance(); + foreach (Qt4ProjectManager::QtVersion *version, qtVersions->validVersions()) { + if (!version->qmlviewerCommand().isEmpty() + && version->supportsTargetId(Qt4ProjectManager::Constants::DESKTOP_TARGET_ID)) { + return version->qmlviewerCommand(); + } + } + + return path; } } // namespace QmlProjectManager diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h index 1782046f9e..53adfb0cb6 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h @@ -88,18 +88,19 @@ public slots: void changeCurrentFile(Core::IEditor*); private slots: - QString mainScript() const; void setMainScript(const QString &scriptFile); void updateFileComboBox(); + void updateEnabled(); + void onViewerChanged(); void onViewerArgsChanged(); void onDebugServerAddressChanged(); void onDebugServerPortChanged(); - protected: + QString viewerDefaultPath() const; QmlProjectRunConfiguration(Internal::QmlProjectTarget *parent, QmlProjectRunConfiguration *source); virtual bool fromMap(const QVariantMap &map); void setEnabled(bool value); @@ -114,7 +115,6 @@ private: QString m_scriptFile; QString m_qmlViewerCustomPath; - QString m_qmlViewerDefaultPath; QString m_qmlViewerArgs; QmlProjectRunConfigurationDebugData m_debugData; diff --git a/src/plugins/qt4projectmanager/qt4projectmanager.pro b/src/plugins/qt4projectmanager/qt4projectmanager.pro index f4c492ac33..28f45408b6 100644 --- a/src/plugins/qt4projectmanager/qt4projectmanager.pro +++ b/src/plugins/qt4projectmanager/qt4projectmanager.pro @@ -1,5 +1,6 @@ TEMPLATE = lib TARGET = Qt4ProjectManager +DEFINES += QT4PROJECTMANAGER_LIBRARY QT += network include(../../qtcreatorplugin.pri) include(qt4projectmanager_dependencies.pri) @@ -44,7 +45,8 @@ HEADERS += qt4projectmanagerplugin.h \ gettingstartedwelcomepage.h \ qt4buildconfiguration.h \ qt4target.h \ - qmakeparser.h + qmakeparser.h \ + qt4projectmanager_global.h SOURCES += qt4projectmanagerplugin.cpp \ qt4projectmanager.cpp \ qt4project.cpp \ diff --git a/src/plugins/qt4projectmanager/qt4projectmanager_global.h b/src/plugins/qt4projectmanager/qt4projectmanager_global.h new file mode 100644 index 0000000000..54880b014c --- /dev/null +++ b/src/plugins/qt4projectmanager/qt4projectmanager_global.h @@ -0,0 +1,41 @@ +/************************************************************************** +** +** This file is part of Qt Creator +** +** Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +** +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** Commercial Usage +** +** Licensees holding valid Qt Commercial licenses may use this file in +** accordance with the Qt Commercial License Agreement provided with the +** Software or, alternatively, in accordance with the terms contained in +** a written agreement between you and Nokia. +** +** GNU Lesser General Public License Usage +** +** Alternatively, this file may be used under the terms of the GNU Lesser +** General Public License version 2.1 as published by the Free Software +** Foundation and appearing in the file LICENSE.LGPL included in the +** packaging of this file. Please review the following information to +** ensure the GNU Lesser General Public License version 2.1 requirements +** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. +** +** If you are unsure which license is appropriate for your use, please +** contact the sales department at http://qt.nokia.com/contact. +** +**************************************************************************/ + +#ifndef QT4PROJECTMANAGER_GLOBAL_H +#define QT4PROJECTMANAGER_GLOBAL_H + +#include + +#if defined(QT4PROJECTMANAGER_LIBRARY) +# define QT4PROJECTMANAGER_EXPORT Q_DECL_EXPORT +#else +# define QT4PROJECTMANAGER_EXPORT Q_DECL_IMPORT +#endif + +#endif // QT4PROJECTMANAGER_GLOBAL_H diff --git a/src/plugins/qt4projectmanager/qtversionmanager.cpp b/src/plugins/qt4projectmanager/qtversionmanager.cpp index 7eae510d64..06b9d18ecd 100644 --- a/src/plugins/qt4projectmanager/qtversionmanager.cpp +++ b/src/plugins/qt4projectmanager/qtversionmanager.cpp @@ -749,6 +749,7 @@ void QtVersion::setQMakeCommand(const QString& qmakeCommand) #endif m_designerCommand.clear(); m_linguistCommand.clear(); + m_qmlviewerCommand.clear(); m_uicCommand.clear(); m_toolChainUpToDate = false; // TODO do i need to optimize this? @@ -1202,6 +1203,22 @@ QString QtVersion::linguistCommand() const return m_linguistCommand; } +QString QtVersion::qmlviewerCommand() const +{ + if (!isValid()) + return QString(); + if (m_qmlviewerCommand.isNull()) { +#ifdef Q_OS_MAC + const QString qmlViewerName = QLatin1String("QMLViewer"); +#else + const QString qmlViewerName = QLatin1String("qmlviewer"); +#endif + + m_qmlviewerCommand = findQtBinary(possibleGuiBinaries(qmlViewerName)); + } + return m_qmlviewerCommand; +} + bool QtVersion::supportsTargetId(const QString &id) const { updateToolChainAndMkspec(); diff --git a/src/plugins/qt4projectmanager/qtversionmanager.h b/src/plugins/qt4projectmanager/qtversionmanager.h index 3716635d14..fe4484ce3b 100644 --- a/src/plugins/qt4projectmanager/qtversionmanager.h +++ b/src/plugins/qt4projectmanager/qtversionmanager.h @@ -30,6 +30,7 @@ #ifndef QTVERSIONMANAGER_H #define QTVERSIONMANAGER_H +#include "qt4projectmanager_global.h" #include #include #include @@ -45,7 +46,7 @@ class QtOptionsPageWidget; class QtOptionsPage; } -class QtVersion +class QT4PROJECTMANAGER_EXPORT QtVersion { friend class QtVersionManager; public: @@ -70,6 +71,7 @@ public: QString uicCommand() const; QString designerCommand() const; QString linguistCommand() const; + QString qmlviewerCommand() const; bool supportsTargetId(const QString &id) const; QSet supportedTargetIds() const; @@ -189,6 +191,7 @@ private: mutable QString m_uicCommand; mutable QString m_designerCommand; mutable QString m_linguistCommand; + mutable QString m_qmlviewerCommand; mutable QSet m_targetIds; }; @@ -199,7 +202,7 @@ struct QMakeAssignment QString value; }; -class QtVersionManager : public QObject +class QT4PROJECTMANAGER_EXPORT QtVersionManager : public QObject { Q_OBJECT // for getUniqueId(); -- cgit v1.2.1 From 7830451d4c4328dfded8bfa4d31b704d3bf96394 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Thu, 19 Aug 2010 17:27:24 +0200 Subject: Add file I forgot in 9eb1f51cea6de74fb131b1d0d6bb6bbfd --- src/plugins/qt4projectmanager/qt4projectmanager.pri | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/plugins/qt4projectmanager/qt4projectmanager.pri diff --git a/src/plugins/qt4projectmanager/qt4projectmanager.pri b/src/plugins/qt4projectmanager/qt4projectmanager.pri new file mode 100644 index 0000000000..34db66a9c4 --- /dev/null +++ b/src/plugins/qt4projectmanager/qt4projectmanager.pri @@ -0,0 +1,3 @@ +include(qt4projectmanager_dependencies.pri) + +LIBS *= -l$$qtLibraryTarget(Qt4ProjectManager) -- cgit v1.2.1 From 5bbb4c61292a64098b8e90035da18bb12b39f152 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Fri, 20 Aug 2010 10:50:30 +0200 Subject: QmlProject: Fix memory leak Remove unneeded widget (has been added unintendedly in 60fffd --- src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp index 3e3e75ffeb..96fd3464d3 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp @@ -178,8 +178,6 @@ QWidget *QmlProjectRunConfiguration::createConfigurationWidget() connect(qmlViewer, SIGNAL(changed(QString)), this, SLOT(onViewerChanged())); - QToolButton *qtVersionSelector = new QToolButton; - QLineEdit *qmlViewerArgs = new QLineEdit; qmlViewerArgs->setText(m_qmlViewerArgs); connect(qmlViewerArgs, SIGNAL(textChanged(QString)), this, SLOT(onViewerArgsChanged())); -- cgit v1.2.1 From 2febf2718ce9ac3e78e3121ff7c1a3c33cf8840f Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Fri, 20 Aug 2010 10:53:01 +0200 Subject: QmlProject: Remove debug info from runtime configuration QmlInspector has been disabled Reviewed-by: holmstedt --- src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp index 96fd3464d3..1e47de5b1f 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp @@ -182,21 +182,9 @@ QWidget *QmlProjectRunConfiguration::createConfigurationWidget() qmlViewerArgs->setText(m_qmlViewerArgs); connect(qmlViewerArgs, SIGNAL(textChanged(QString)), this, SLOT(onViewerArgsChanged())); - QLineEdit *debugServer = new QLineEdit; - debugServer->setText(m_debugData.serverAddress); - connect(debugServer, SIGNAL(textChanged(QString)), this, SLOT(onDebugServerAddressChanged())); - - QSpinBox *debugPort = new QSpinBox; - debugPort->setMinimum(1024); // valid registered/dynamic/free ports according to http://www.iana.org/assignments/port-numbers - debugPort->setMaximum(65535); - debugPort->setValue(m_debugData.serverPort); - connect(debugPort, SIGNAL(valueChanged(int)), this, SLOT(onDebugServerPortChanged())); - form->addRow(tr("QML Viewer"), qmlViewer); form->addRow(tr("QML Viewer arguments:"), qmlViewerArgs); form->addRow(tr("Main QML File:"), m_fileListCombo.data()); - form->addRow(tr("Debugging Address:"), debugServer); - form->addRow(tr("Debugging Port:"), debugPort); return config; } -- cgit v1.2.1 From 3b4c322d59d0b6380759e1e7e6c94055bbad3fc4 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Fri, 20 Aug 2010 11:34:02 +0200 Subject: QmlProject: Show effective qmlviewer call in separate row Don't misuse the input field for a custom qmlviewer path with displaying the effective qmlviewer used. Previously the effective qmlviewer was only calculated when the project pane is shown first, and then never updated. Reviewed-by: holmstedt --- .../qmlprojectmanager/qmlprojectrunconfiguration.cpp | 16 +++++++++++++++- .../qmlprojectmanager/qmlprojectrunconfiguration.h | 2 ++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp index 1e47de5b1f..25f395034b 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp @@ -98,6 +98,8 @@ void QmlProjectRunConfiguration::ctor() Qt4ProjectManager::QtVersionManager *qtVersions = Qt4ProjectManager::QtVersionManager::instance(); connect(qtVersions, SIGNAL(qtVersionsChanged(QList)), this, SLOT(updateEnabled())); + connect(qtVersions, SIGNAL(qtVersionsChanged(QList)), this, SLOT(onViewerChanged())); + setDisplayName(tr("QML Viewer", "QMLRunConfiguration display name.")); } @@ -174,16 +176,21 @@ QWidget *QmlProjectRunConfiguration::createConfigurationWidget() Utils::PathChooser *qmlViewer = new Utils::PathChooser; qmlViewer->setExpectedKind(Utils::PathChooser::Command); - qmlViewer->setPath(viewerPath()); + qmlViewer->setPath(m_qmlViewerCustomPath); connect(qmlViewer, SIGNAL(changed(QString)), this, SLOT(onViewerChanged())); + m_qmlViewerExecutable = new QLabel; + m_qmlViewerExecutable.data()->setText(viewerPath() + " " + m_qmlViewerArgs); + QLineEdit *qmlViewerArgs = new QLineEdit; qmlViewerArgs->setText(m_qmlViewerArgs); connect(qmlViewerArgs, SIGNAL(textChanged(QString)), this, SLOT(onViewerArgsChanged())); form->addRow(tr("QML Viewer"), qmlViewer); form->addRow(tr("QML Viewer arguments:"), qmlViewerArgs); + form->addRow(QString(), m_qmlViewerExecutable.data()); + form->addRow(tr("Main QML File:"), m_fileListCombo.data()); return config; @@ -258,12 +265,19 @@ void QmlProjectRunConfiguration::onViewerChanged() if (Utils::PathChooser *chooser = qobject_cast(sender())) { m_qmlViewerCustomPath = chooser->path(); } + if (!m_qmlViewerExecutable.isNull()) { + m_qmlViewerExecutable.data()->setText(viewerPath() + " " + m_qmlViewerArgs); + } } void QmlProjectRunConfiguration::onViewerArgsChanged() { if (QLineEdit *lineEdit = qobject_cast(sender())) m_qmlViewerArgs = lineEdit->text(); + + if (!m_qmlViewerExecutable.isNull()) { + m_qmlViewerExecutable.data()->setText(viewerPath() + " " + m_qmlViewerArgs); + } } void QmlProjectRunConfiguration::onDebugServerPortChanged() diff --git a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h index 53adfb0cb6..1c3f12cd6e 100644 --- a/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h +++ b/src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.h @@ -34,6 +34,7 @@ #include #include #include +#include QT_FORWARD_DECLARE_CLASS(QStringListModel); @@ -121,6 +122,7 @@ private: QStringListModel *m_fileListModel; // weakpointer is used to make sure we don't try to manipulate // widget which was deleted already, as can be the case here. + QWeakPointer m_qmlViewerExecutable; QWeakPointer m_fileListCombo; Internal::QmlProjectTarget *m_projectTarget; -- cgit v1.2.1 From 0b99631b0afd80ab3be68f1d22922b5b1d24c6e1 Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 20 Aug 2010 11:58:53 +0200 Subject: doc: some additional contents for the debugging helpers Reviewed-by: Leena Miettinen --- doc/qtcreator.qdoc | 42 +++++++++++++++++++++++++++++++++--------- 1 file changed, 33 insertions(+), 9 deletions(-) diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc index 359ddd4cbb..c16e270242 100644 --- a/doc/qtcreator.qdoc +++ b/doc/qtcreator.qdoc @@ -4295,7 +4295,7 @@ around as described in the link provided below: \l http://bugreports.qt.nokia.com/browse/QTBUG-4962. - \endtable + \endtable \section1 Setting the Symbol Server in Windows @@ -4657,22 +4657,46 @@ \title Using Debugging Helpers - \section1 Debugging Helper Library with C++ + Qt Creator is able to show complex data types in a customized, + user-extensible manner. For this purpose, it takes advantage of + two technologies, collectively referred to as \e{Debugging Helpers}. + + Using the debugging helpers is not \e essential for debugging + with Qt Creator, but they enhance the user's ability to quickly + examine complex data significantly. + + \section1 Debugging Helpers based on C++ - While debugging, Qt Creator dynamically loads a helper library into your - program. This helper library enables Qt Creator to pretty print Qt and STL - types. The Qt SDK package already contains a prebuilt debugging helper + This is the first and original approach to display complex data + types. While it has been superseded on most platforms by the more + robust and more flexible second approch using Python scripting, + it is the only feasible one on Windows/MSVC, Mac OS, and + old Linux distributions. Moreover, this approach will automatically + be chosen as fallback in case the Python based approach fails. + + During debugging with the C++ based debugging helpers, + Qt Creator dynamically loads a helper library in form of a DLL or a + shared object into the debugged process. + The Qt SDK package already contains a prebuilt debugging helper library. To create your own debugging helper library, select \gui{Tools} > \gui{Options...} > \gui{Qt4} > \gui{Qt Versions}. As the internal data structures of Qt can change between versions, the debugging helper library is built for each Qt version. - \section1 Debugging Helper Library with Python + \section1 Debugging Helpers based on Python + + On platforms featuring a Python-enabled version of the gdb debugger, + the data extraction is done by a Python script. This is more robust + as the script execution is separated from the debugged process. It + is also easier to extend as the script is less dependend on the + actual Qt version and does not need compilation. - With the gdb Python version, you can - use debugging helpers also for user defined types. To do so, - define one Python function per user defined type in \c{.gdbinit}. + To extend the shipped Python based debugging helpers for custom types, + define one Python function per user defined type in the + gdb startup file. By default, the following startup file is used: + \c{~/.gdbinit}. To use another file, select \gui {Tools > Options... > Gdb} + and specify a filename in the \gui {Gdb startup script} field. The function name has to be qdump__NS__Foo, where NS::Foo is the class or class template to be examined. Nested namespaces are possible. -- cgit v1.2.1 From 7658fa8e889c54e6a3c4c0b196913ec8aa05fc27 Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 20 Aug 2010 13:09:07 +0200 Subject: doc: we debug applications, not languages. --- doc/qtcreator.qdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc index c16e270242..3aedb6d390 100644 --- a/doc/qtcreator.qdoc +++ b/doc/qtcreator.qdoc @@ -286,7 +286,7 @@ Qt Creator displays the raw information provided by the native debuggers in a clear and concise manner with the goal to simplify the debugging process as much as possible without losing the power of the native debuggers. - You can use the native debuggers to debug the C++ language. + You can use the native debuggers to debug C++ applications. You can connect mobile devices to your development PC and debug processes running on the devices. -- cgit v1.2.1 From 925d9edaa162f562464c9b433d0bc66a1f525991 Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Fri, 20 Aug 2010 14:01:04 +0200 Subject: Doc - Update the screen shot of the Locals and Watchers view. --- doc/images/qtcreator-watcher.png | Bin 11809 -> 29836 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/doc/images/qtcreator-watcher.png b/doc/images/qtcreator-watcher.png index 77bd759482..c54af55e9b 100644 Binary files a/doc/images/qtcreator-watcher.png and b/doc/images/qtcreator-watcher.png differ -- cgit v1.2.1 From cff7191064b9e496121ea23f76873d56bddca3d0 Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 20 Aug 2010 14:58:55 +0200 Subject: debugger: and another fix for QObject property dumper --- share/qtcreator/gdbmacros/gdbmacros.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/share/qtcreator/gdbmacros/gdbmacros.py b/share/qtcreator/gdbmacros/gdbmacros.py index 1cba34f289..5f1a58d0ae 100644 --- a/share/qtcreator/gdbmacros/gdbmacros.py +++ b/share/qtcreator/gdbmacros/gdbmacros.py @@ -483,7 +483,9 @@ def qdump__QLinkedList(d, item): def qdump__QLocale(d, item): d.putStringValue(call(item.value, "name()")) - d.putNumChild(8) + d.putNumChild(0) + return + # FIXME: Poke back for variants. if d.isExpanded(item): with Children(d, 1, lookupType(d.ns + "QChar"), 0): d.putCallItem("country", item, "country()") @@ -632,6 +634,9 @@ def qdump__QObject(d, item): d.putNumChild(propertyCount) if d.isExpandedIName(item.iname + ".properties"): with Children(d): + # FIXME: Make this global. Don't leak. + gdb.execute("set $d = (QVariant*)malloc(sizeof(QVariant))") + gdb.execute("set $d.d.is_shared = 0") for property in xrange(propertyCount): with SubItem(d): offset = propertyData + 3 * property @@ -646,6 +651,15 @@ def qdump__QObject(d, item): #exp = '"((\'%sQObject\'*)%s)"' % (d.ns, item.value.address,) #warn("EXPRESSION: %s" % exp) value = call(item.value, 'property("%s")' % propertyName) + value1 = value["d"] + #warn(" CODE: %s" % value1["type"]) + # Type 1 and 2 are bool and int. Try to save a few cycles in this case: + if int(value1["type"]) > 2: + # Poke back value + gdb.execute("set $d.d.data.ull = %s" % value1["data"]["ull"]) + gdb.execute("set $d.d.type = %s" % value1["type"]) + gdb.execute("set $d.d.is_null = %s" % value1["is_null"]) + value = parseAndEvaluate("$d").dereference() val, inner, innert = qdumpHelper__QVariant(d, value) if len(inner): # Build-in types. -- cgit v1.2.1 From 3bd83a9f8a00b3f4c4779d2ef6e1df2c6e807ac4 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Fri, 20 Aug 2010 15:11:12 +0200 Subject: QmlJS: Update builtin type information. Generated with Qt from commit 00bc7129d166f8f3e1486b8bf920d77f46400a6e (qt-releases repo) --- .../qml-type-descriptions/qml-builtin-types.xml | 223 +++++++++++++-------- 1 file changed, 141 insertions(+), 82 deletions(-) diff --git a/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml b/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml index bba94ab56f..5f15cd1a76 100644 --- a/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml +++ b/share/qtcreator/qml-type-descriptions/qml-builtin-types.xml @@ -134,6 +134,13 @@ + + + + + + + @@ -209,6 +216,8 @@ + + @@ -489,6 +498,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -524,6 +571,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1268,6 +1353,28 @@ + + + + + + + + + + + + + + + + + + + + + + @@ -1449,13 +1556,6 @@ - - - - - - - @@ -1978,7 +2078,12 @@ - + + + + + + @@ -2330,12 +2435,17 @@ + + + + + @@ -2344,6 +2454,8 @@ + + @@ -2364,6 +2476,8 @@ + + @@ -2381,9 +2495,15 @@ + + + + + + @@ -2406,10 +2526,8 @@ - - - - + + @@ -2436,10 +2554,8 @@ - - - - + + @@ -2509,6 +2625,9 @@ + + + @@ -2529,21 +2648,13 @@ - - - + - - - - - - @@ -2925,7 +3036,8 @@ - + + @@ -2939,7 +3051,8 @@ - + + @@ -3037,62 +3150,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + -- cgit v1.2.1 From a9b8e2e8c90b1a64752843522a32722faef71521 Mon Sep 17 00:00:00 2001 From: Robert Loehning Date: Fri, 20 Aug 2010 16:07:47 +0200 Subject: Changelog: Mention fix for Cyrillic usernames --- dist/changes-2.0.1 | 1 + 1 file changed, 1 insertion(+) diff --git a/dist/changes-2.0.1 b/dist/changes-2.0.1 index 000ab661c6..ba610a70a1 100644 --- a/dist/changes-2.0.1 +++ b/dist/changes-2.0.1 @@ -40,6 +40,7 @@ Linux (GNOME and KDE) Windows * Fixed that some menu items got disabled during keyboard navigation * Detect Microsoft Visual Studio 2010 + * Fixed handling of usernames with Cyrillic characters (QTCREATORBUG-1643) Additional credits go to: -- cgit v1.2.1 From 2d9451341d60df6743903a57a14153eb2b34a49f Mon Sep 17 00:00:00 2001 From: Leena Miettinen Date: Fri, 20 Aug 2010 16:41:56 +0200 Subject: Doc - Pull out instructions for setting up development environments for Maemo and Symbian, to reuse the topics in Nokia Qt SDK documentation (with if defines) --- doc/maemodev.qdoc | 593 ++++++++++++++++++++++++++++++++++++++++++++++++ doc/qt-defines.qdocconf | 3 +- doc/qtcreator.qdoc | 571 ---------------------------------------------- doc/qtcreator.qdocconf | 2 +- doc/symbiandev.qdoc | 154 +++++++++++++ 5 files changed, 750 insertions(+), 573 deletions(-) create mode 100644 doc/maemodev.qdoc create mode 100644 doc/symbiandev.qdoc diff --git a/doc/maemodev.qdoc b/doc/maemodev.qdoc new file mode 100644 index 0000000000..2ffeab5e5b --- /dev/null +++ b/doc/maemodev.qdoc @@ -0,0 +1,593 @@ +/*! + + \contentspage index.html + \if defined(qcmanual) + \previouspage creator-project-generic.html + \else + \previouspage creator-developing-symbian.html + \endif + \page creator-developing-maemo.html + \if defined(qcmanual) + \nextpage creator-developing-symbian.html + \else + \nextpage smartinstaller.html + \endif + + \title Setting Up Development Environment for Maemo + + Maemo is a software platform developed by Nokia for smartphones and + Internet Tablets. The Maemo SDK provides an open development environment + for different applications on top of the Maemo platform. The necessary + tools from the Maemo SDK are also included in the Nokia Qt SDK. + The whole tool chain that you need to create, build, debug, run, and deploy + Maemo applictions is installed and configured when you install the Nokia + Qt SDK. + + \if defined(qcmanual) + Maemo 5 is based on the Linux 2.6 operating system. For more + information about the Maemo platform, see + \l{http://maemo.org/intro/platform/}{Software Platform} on the Maemo web site. + \endif + + For more information about developing applications for the Maemo 5 + platform, select \gui {Help > Index} and look for \gui {Platform Notes}, + or see + \l{http://doc.qt.nokia.com/qt-maemo-4.6/platform-notes.html}{Platform Notes - Maemo 5}. + + \section1 Hardware and Software Requirements + + To build and run Qt applications for Maemo, you need the following: + \list + \o Nokia N900 device with software update release 1.2 (V10.2010.19-1) + or later installed. + + \if defined(qcmanual) + \o MADDE cross-platform Maemo development + tool (installed as part of the Nokia Qt SDK). + + For more information about MADDE pertaining to its + installation, configuration, and deployment on the device, see + \l{http://wiki.maemo.org/MADDE}{Introduction to MADDE}. + \endif + + \o Nokia USB drivers. + + Only needed if you develop on Windows and if you use a USB connection + to run applications on the device. The drivers are + installed as part of the Nokia Qt SDK. You can also download them from + \l{https://garage.maemo.org/frs/?group_id=801&release_id=2655}{PC Connectivity} + on the Maemo web site. Download and install the latest + PC_Connectivity_.exe (at the time of writing, + PC_Connectivity_0.9.4.exe). + + \endlist + + The Qt Creator/MADDE integration is supported on the following platforms: + \list + \o Linux (32 bit and 64 bit) + \o Windows (32 bit and 64 bit) + \omit \o Mac OS 10.5 Leopard, or higher \endomit + \endlist + + \note The only supported build system for Maemo in Qt + Creator is qmake. + + \section1 Setting Up the Nokia N900 + + You can connect your device to your development PC using either a USB or + WLAN connection. + + For the device, you need to use a tool called Mad Developer to create the + device-side end point for USB and WLAN connections. It provides no + diagnostics functions but is essential for creating connections between the + device and your development PC. + + To use a WLAN connection, you must activate WLAN on the device and connect + it to the same WLAN as the development PC. The network address is displayed + in the Mad Developer. + + To use an USB connection, you need to set up the Nokia N900 as a network device + on the development PC. + + \note If you plan to connect your development PC to the Nokia N900 only over WLAN, you can + ignore the USB-specific parts in the following sections. + + \section2 Installing and Configuring Mad Developer + + Install Mad Developer on a device and configure + a connection between the development PC and the device. + + To install and configure Mad Developer: + + \list 1 + \o On the Nokia N900, select \gui{Download} > \gui{Development} > \gui{mad-developer} + to install the Mad Developer software package. + \o Click \gui {Mad Developer} to start the Mad Developer application. + + \o To use a WLAN connection, activate WLAN on the device and connect + to the same network as the development PC. You can see the network + address in the \gui wlan0 field. + + \o To use an USB connection: + + \list a + + \o If you are using Microsoft Windows as development host, you must + change the driver loaded for instantiating the connection. + In the Mad Developer, select \gui{Manage USB} and select \gui{Load g_ether}. + + \o To set up the USB settings, click \gui Edit on the \gui usb0 row and + confirm by clicking \gui Configure. + + \note By default, you do not need to make changes. The \gui usb0 row + displays the IP address 192.168.2.15. + + \endlist + + \o Select \gui{Developer Password} to generate a password for a freshly + created user called \bold developer. The password stays valid for as long + as the password generation dialog is open. You enter the password when + you configure the connection in Qt Creator. + + \image qtcreator-mad-developer-screenshot.png + \endlist + + \section1 Installing Qt Mobility APIs + + To develop applications that use the Qt Mobility APIs, you must install the + APIs on the devices. The APIs are not available in the Nokia N900 package + manager, and therefore, you must install them from the command line as the + root user. To become the root user you must first install \c rootsh from the + application manager. + + \list 1 + + \o On the device, install \c rootsh from the \gui {Application Manager}. + + \o In \gui Programs, select \c {X Terminal} to open a terminal window. + + \o To switch to the root user, enter the following command: + \c{sudo gainroot} + + \o To install Qt Mobility libraries, enter the following command: + \c{apt-get install libqtm-*} + + \o To confirm the installation, enter: \c Y + + \o Close the terminal. + + \endlist + + \section1 Setting Up Network Connectivity on Development PC + + Use the network configuration tools on your platform to specify the + connection to the device on the development PC. You need to do this + only if you use an USB connection. + + \section2 Linux + + The device uses the IP address 192.168.2.15 with the subnet 255.255.255.0 + for its USB connection by default, so you can create the network interface + with a different address inside the same subnet too. + + \note If you have changed the IP address of the device when configuring + Mad Developer, you need to reflect those changes in your development PC USB + network settings. + + Run the following command in a shell as root user: + \c{ifconfig usb0 192.168.2.14 up} + + \section2 Windows + + When you connect the device to your Windows PC, Windows tries to install a + driver for the Linux USB Ethernet connection. In the + \gui{Found New Hardware Wizard}, select \gui{No, not this time} in the + first dialog and \gui{Install the software automatically} in the second + dialog. + + To specify a network connection: + + \list 1 + + \o Open the Network Connections window. + + \o Select the Linux USB Ethernet + connection that is displayed as a new Local Area Connection. + + \o Edit the \gui {Internet Protocol Version 4 (TCP/IPv4)} properties + to specify the IP address for the connection. + In the \gui {Use the following IP address} field, enter the following values: + \list + \o \gui {IP Address}: \bold {192.168.2.14} + \o \gui SubnetMask: \bold {255.255.255.0} + \o \gui {Default gateway}: leave this field empty + \endlist + + \endlist + + Depending on + your version of Microsoft Windows you may have to unplug and re-plug the + Nokia N900 to reload the driver with its configuration accordingly. + + \if defined(qcmanual) + \section1 Setting Up MADDE + + If you install Nokia Qt SDK, the MADDE package is installed and + configured automatically on your development PC and you can omit this task. + + \list 1 + + \o Download the MADDE installer file for your platform from the + \l{http://wiki.maemo.org/MADDE}{MADDE} site. + + \o Execute the installer and follow the instructions. + + \o To see which targets are available, run \c{mad-admin list targets}. + + \o To install the target that starts with the string \bold fremantle, use the command: + \c{mad-admin create fremantle-qt-xxx} + + \o In Qt Creator, register the MADDE tool chain: + + \image qtcreator-screenshot-toolchain.png + + \list a + + \o Select \gui Tools > \gui Options... > \gui Qt4 > \gui{Qt Versions}. + + \o Click \inlineimage qtcreator-windows-add.png, + to add a new Qt version. + + The \gui{qmake Location} is the qmake + executable in \c{/targets//bin}. + + \endlist + + \endlist + + When you have installed the target, you have a toolchain and a sysroot + environment for cross-compiling. + \endif + + \section1 Configuring Connections in Qt Creator + + To be able to run and debug applications on the Maemo emulator and + devices, you must set up a connection to the emulator and the device in the + Qt Creator build and run settings. + \if defined(qcmanual) + If you install Nokia Qt SDK, the + necessary software is installed and configured automatically and you + only need to configure a connection to the device. + + By default, you create the connection as the \e developer user. This + protects real user data on the device from getting corrupted during + testing. If you write applications that use Mobility APIs, you might want + to test them with real user data. To create a connection as a user, specify + the \gui Username and \gui Password in Qt Creator. For more information, see + \l{Testing with User Data}. + \endif + + You can protect the connections between Qt Creator and the Maemo emulator + or a device by using either a password or an SSH key. You must always + use a password for the initial connection, but can then deploy an SSH + key and use it for subsequent connections. If you use a password, you + must generate it in Mad Developer and enter it in Qt Creator every time + you connect to the Maemo emulator or to a device. + + If you do not have an SSH key, you can create it in Qt Creator. + Encrypted keys are not supported. For more + information, see + \if defined(qcmanual) + \l{Generating SSH Keys}. + \else + the Qt Creator Manual. + \endif + + \if defined(qcmanual) + To configure connections between Qt Creator and the Maemo emulator or + device: + + \list 1 + + \o If you install the Maemo emulator (QEMU) separately, you must + specify parameters to access it: + + \list a + + \o Start Mad Developer in the emulator. + + \o Click \gui {Developer Password} to generate a password for + the connection. + + \o In Qt Creator, select \gui {Tools > Options... > Projects > + Maemo Device Configurations > Add} to add a new configuration. + + \image qtcreator-maemo-emulator-connection.png + + \o In the \gui {Configuration name} field, enter a name for + the connection. + + \o In the \gui {Device type} field, select \gui {Maemo emulator}. + + \o In the \gui {Authentication type} field, select \gui Password + for the initial connection. + + \o In the \gui Password field, enter the password from the Mad + Developer for the initial connection. + + You can use the default values for the other fields. + + \o Click \gui Test to test the connection. + + \o To avoid having to specify the password every time you connect + to the Maemo emulator, click \gui {Deploy Key...} and select + the file that contains your public key. + + \o When you have deployed the key to the device, change the + configuration to use the SSH key for protection. + + \image qtcreator-maemo-emulator-connection-key.png + + The default location of the private key file is displayed in the + \gui {Private key file} field. + + \endlist + + If you installed the Nokia Qt SDK, a connection has been configured + and you only need to specify the password and deploy the SSH key. + + \o To deploy applications and run them remotely, specify parameters + for accessing devices: + + \list a + + \o Connect your device to the development PC via an USB cable or + a WLAN. For an USB connection, you are prompted to select the mode + to use. Choose \gui{PC suite mode}. + + \note If you experience connection problems due to a USB port issue, + switch to a different port or use WLAN to connect to the device. + + \o Select \gui Tools > \gui Options... > \gui Projects > + \gui{Maemo Device Configurations > Add}, and add a new configuration for a + \gui {Remote device}. + + \image qtcreator-screenshot-devconf.png + + \o In the \gui {Host name} field, enter the IP address from the + \gui usb0 or \gui wlan0 field in Mad Developer. + + \o Specify the other settings in the same way as for a Maemo emulator + connection. + + \o Click \gui Test to test the connection. + + \o Click \gui OK to close the dialog. + + \endlist + + \o To specify build and run settings: + + \list a + + \o Open a project for an application you want to develop for your + Nokia N900. + + \o Click \gui Projects to open the projects mode. + + \o In the \gui{Build Settings} section, choose the MADDE Qt version. + + \image qtcreator-screenshot-build-settings.png + + \o In the \gui{Run Settings} section, click \gui Add to add a new + run configuration. + + \o Set a name and select the device configuration. + + \image qtcreator-screenshot-run-settings.png + + \note You can either add separate run settings for both the Maemo + emulator connection and the device connection or select the + \gui {Device configuration} before you run the application. + + \endlist + + \endlist + + \else + + The Nokia Qt SDK installation program configured a default connection + to the Maemo emulator. You only need to specify the + password and deploy the SSH key. + + \list 1 + + \o To specify authentication for the connection to the Maemo emulator: + + \list a + + \o Start Mad Developer in the emulator. + + \o Click \gui {Developer Password} to generate a password for + the connection. + + \o In Qt Creator, select \gui {Tools > Options... > Projects > + Maemo Device Configurations > Maemo emulator} to specify the + password. + + \image qtcreator-maemo-emulator-connection.png + + \o In the \gui {Authentication type} field, select \gui Password + for the initial connection. + + \o In the \gui Password field, enter the password from the Mad + Developer for the initial connection. + + You can use the default values for the other fields. + + \o Click \gui Test to test the connection. + + \o To avoid having to specify the password every time you connect + to the Maemo emulator, click \gui {Deploy Key...} and select + the file that contains your public key. + + \o When you have deployed the key to the device, change the + configuration to use the SSH key for protection. + + \image qtcreator-maemo-emulator-connection-key.png + + The default location of the private key file is displayed in the + \gui {Private key file} field. + + \endlist + + \o To deploy applications and run them remotely, specify parameters + for accessing devices: + + \list a + + \o Connect your device to the development PC via an USB cable or + a WLAN. For an USB connection, you are prompted to select the mode + to use. Choose \gui{PC suite mode}. + + \note If you experience connection problems due to a USB port issue, + switch to a different port or use WLAN to connect to the device. + + \o Select \gui Tools > \gui Options... > \gui Projects > + \gui{Maemo Device Configurations > Add}, and add a new configuration for a + \gui {Remote device}. + + \image qtcreator-screenshot-devconf.png + + \o In the \gui {Host name} field, enter the IP address from the + \gui usb0 or \gui wlan0 field in Mad Developer. + + \o Specify the other settings in the same way as for a Maemo emulator + connection. + + \o Click \gui Test to test the connection. + + \o Click \gui OK to close the dialog. + + \endlist + + \o To specify build and run settings: + + \list a + + \o Open a project for an application you want to develop for your + Nokia N900. + + \o Click \gui Projects to open the projects mode. + + \o In the \gui{Build Settings} section, choose the MADDE Qt version + that was registered by the installation program. + + \image qtcreator-screenshot-build-settings.png + + \o In the \gui{Run Settings} section, click \gui Add to add a new + run configuration. + + \o Set a name and select the device configuration. + + \image qtcreator-screenshot-run-settings.png + + \note You can either add separate run settings for both the Maemo + emulator connection and the device connection or select the + \gui {Device configuration} before you run the application. + + \o Click the \gui Run button to build and run the application. + + \endlist + + \endlist + \endif + + \if defined(qcmanual) + \section2 Testing with User Data + + To run your application as the default user, you must first assign a password + for the user account and then create the connection to the device as the + user: + + \list 1 + + \o On the device, in \gui Programs, select \c {X Terminal} to open a + terminal window. + + \o To switch to the root user, enter the following command: + \c{sudo gainroot} + + \o To specify the password, enter the following command: + \c {passwd user} + + \o In Qt Creator, Select \gui Tools > \gui Options... > \gui Projects > + \gui{Maemo Device Configurations}. + + \o Specify the username \c user and the password in the device configuration. + + \endlist + + \section2 Generating SSH Keys + + If you do not have an SSH public and private key pair, you can generate it + in Qt Creator. You can specify key length and the key algorithm, RSA or DSA. + If you only use the keys to protect connections to the Maemo emulator or + device, you can use the default values. + + \list 1 + + \o Select \gui {Tools > Options... > Projects > Maemo Device Configurations + > Generate SSH Key...}. + + \o Click \gui {Generate SSH Key}. + + \image qtcreator-ssh-key-configuration.png "SSH Key Configuration dialog" + + \o Click \gui {Save Public Key...} to select the location to save the + public key. + + \o Click \gui {Save Private Key...} to specify the location to save the + private key. + + \o Click \gui Close to close the dialog. + + \endlist + \endif + + \section1 Troubleshooting + + The addresses used in this example might be reserved by some other application + in your network. If you cannot establish a connection, try the following optional + configurations: + + \table + + \header + \o usb0 in Mad Developer on Device + \o USB Network on Development PC + \o Host Name in Qt Creator Build Settings + + \row + \o 172.30.7.15 255.255.255.0 + \o 172.30.7.14 255.255.255.0 + \o 172.30.7.15 + + \row + \o 10.133.133.15 + \o 10.133.133.14 + \o 10.133.133.15 + + \row + \o 192.168.133.15 + \o 192.168.133.14 + \o 192.168.133.15 + + \note You cannot use the value localhost for connections to a device. + + \endtable + + \note VPN connections might block the device connection. + +*/ + diff --git a/doc/qt-defines.qdocconf b/doc/qt-defines.qdocconf index a9e8bbd23f..75c21ed7fe 100644 --- a/doc/qt-defines.qdocconf +++ b/doc/qt-defines.qdocconf @@ -11,7 +11,8 @@ defines = Q_QDOC \ QT_DEPRECATED \ Q_NO_USING_KEYWORD \ __cplusplus \ - qtquick + qtquick \ + qcmanual versionsym = QT_VERSION_STR diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc index 3aedb6d390..c8bb90b9d3 100644 --- a/doc/qtcreator.qdoc +++ b/doc/qtcreator.qdoc @@ -5401,465 +5401,6 @@ */ -/*! - - \contentspage index.html - \previouspage creator-project-generic.html - \page creator-developing-maemo.html - \nextpage creator-developing-symbian.html - - \title Setting Up Development Environment for Maemo - - Maemo is a software platform developed by Nokia for smartphones and - Internet Tablets. The Maemo SDK provides an open development environment - for different applications on top of the Maemo platform. The necessary - tools from the Maemo SDK are also included in the Nokia Qt SDK. - The whole tool chain that you need to create, build, debug, run, and deploy - Maemo applictions is installed and configured when you install the Nokia - Qt SDK. - - Maemo 5 is based on the Linux 2.6 operating system. For more - information about the Maemo platform, see - \l{http://maemo.org/intro/platform/}{Software Platform} on the Maemo web site. - - For more information about developing applications for the Maemo 5 - platform, select \gui {Help > Index} and look for \gui {Platform Notes}, - or see - \l{http://doc.qt.nokia.com/qt-maemo-4.6/platform-notes.html}{Platform Notes - Maemo 5}. - - \section1 Hardware and Software Requirements - - To build and run Qt applications for Maemo, you need the following: - \list - \o Nokia N900 device with software update release 1.2 (V10.2010.19-1) - or later installed. - \o MADDE cross-platform Maemo development - tool (installed as part of the Nokia Qt SDK). - - For more information about MADDE pertaining to its - installation, configuration, and deployment on the device, see - \l{http://wiki.maemo.org/MADDE}{Introduction to MADDE}. - - \o Nokia USB drivers. - - Only needed if you develop on Windows and if you use a USB connection - to run applications on the device. The drivers are - installed as part of the Nokia Qt SDK. You can also download them from - \l{https://garage.maemo.org/frs/?group_id=801&release_id=2655}{PC Connectivity} - on the Maemo web site. Download and install the latest - PC_Connectivity_.exe (at the time of writing, - PC_Connectivity_0.9.4.exe). - - \endlist - - The Qt Creator/MADDE integration is supported on the following platforms: - \list - \o Linux (32 bit and 64 bit) - \o Windows (32 bit and 64 bit) - \omit \o Mac OS 10.5 Leopard, or higher \endomit - \endlist - - \note The only supported build system for Maemo in Qt - Creator is qmake. - - \section1 Setting Up the Nokia N900 - - You can connect your device to your development PC using either a USB or - WLAN connection. - - For the device, you need to use a tool called Mad Developer to create the - device-side end point for USB and WLAN connections. It provides no - diagnostics functions but is essential for creating connections between the - device and your development PC. - - To use a WLAN connection, you must activate WLAN on the device and connect - it to the same WLAN as the development PC. The network address is displayed - in the Mad Developer. - - To use an USB connection, you need to set up the Nokia N900 as a network device - on the development PC. - - \note If you plan to connect your development PC to the Nokia N900 only over WLAN, you can - ignore the USB-specific parts in the following sections. - - \section2 Installing and Configuring Mad Developer - - Install Mad Developer on a device and configure - a connection between the development PC and the device. - - To install and configure Mad Developer: - - \list 1 - \o On the Nokia N900, select \gui{Download} > \gui{Development} > \gui{mad-developer} - to install the Mad Developer software package. - \o Click \gui {Mad Developer} to start the Mad Developer application. - - \o To use a WLAN connection, activate WLAN on the device and connect - to the same network as the development PC. You can see the network - address in the \gui wlan0 field. - - \o To use an USB connection: - - \list a - - \o If you are using Microsoft Windows as development host, you must - change the driver loaded for instantiating the connection. - In the Mad Developer, select \gui{Manage USB} and select \gui{Load g_ether}. - - \o To set up the USB settings, click \gui Edit on the \gui usb0 row and - confirm by clicking \gui Configure. - - \note By default, you do not need to make changes. The \gui usb0 row - displays the IP address 192.168.2.15. - - \endlist - - \o Select \gui{Developer Password} to generate a password for a freshly - created user called \bold developer. The password stays valid for as long - as the password generation dialog is open. You enter the password when - you configure the connection in Qt Creator. - - \image qtcreator-mad-developer-screenshot.png - \endlist - - \section1 Installing Qt Mobility APIs - - To develop applications that use the Qt Mobility APIs, you must install the - APIs on the devices. The APIs are not available in the Nokia N900 package - manager, and therefore, you must install them from the command line as the - root user. To become the root user you must first install \c rootsh from the - application manager. - - \list 1 - - \o On the device, install \c rootsh from the \gui {Application Manager}. - - \o In \gui Programs, select \c {X Terminal} to open a terminal window. - - \o To switch to the root user, enter the following command: - \c{sudo gainroot} - - \o To install Qt Mobility libraries, enter the following command: - \c{apt-get install libqtm-*} - - \o To confirm the installation, enter: \c Y - - \o Close the terminal. - - \endlist - - \section1 Setting Up Network Connectivity on Development PC - - Use the network configuration tools on your platform to specify the - connection to the device on the development PC. You need to do this - only if you use an USB connection. - - \section2 Linux - - The device uses the IP address 192.168.2.15 with the subnet 255.255.255.0 - for its USB connection by default, so you can create the network interface - with a different address inside the same subnet too. - - \note If you have changed the IP address of the device when configuring - Mad Developer, you need to reflect those changes in your development PC USB - network settings. - - Run the following command in a shell as root user: - \c{ifconfig usb0 192.168.2.14 up} - - \section2 Windows - - When you connect the device to your Windows PC, Windows tries to install a - driver for the Linux USB Ethernet connection. In the - \gui{Found New Hardware Wizard}, select \gui{No, not this time} in the - first dialog and \gui{Install the software automatically} in the second - dialog. - - To specify a network connection: - - \list 1 - - \o Open the Network Connections window. - - \o Select the Linux USB Ethernet - connection that is displayed as a new Local Area Connection. - - \o Edit the \gui {Internet Protocol Version 4 (TCP/IPv4)} properties - to specify the IP address for the connection. - In the \gui {Use the following IP address} field, enter the following values: - \list - \o \gui {IP Address}: \bold {192.168.2.14} - \o \gui SubnetMask: \bold {255.255.255.0} - \o \gui {Default gateway}: leave this field empty - \endlist - - \endlist - - Depending on - your version of Microsoft Windows you may have to unplug and re-plug the - Nokia N900 to reload the driver with its configuration accordingly. - - \section1 Setting Up MADDE - - If you install Nokia Qt SDK, the MADDE package is installed and - configured automatically on your development PC and you can omit this task. - - \list 1 - - \o Download the MADDE installer file for your platform from the - \l{http://wiki.maemo.org/MADDE}{MADDE} site. - - \o Execute the installer and follow the instructions. - - \o To see which targets are available, run \c{mad-admin list targets}. - - \o To install the target that starts with the string \bold fremantle, use the command: - \c{mad-admin create fremantle-qt-xxx} - - \o In Qt Creator, register the MADDE tool chain: - - \image qtcreator-screenshot-toolchain.png - - \list a - - \o Select \gui Tools > \gui Options... > \gui Qt4 > \gui{Qt Versions}. - - \o Click \inlineimage qtcreator-windows-add.png, - to add a new Qt version. - - The \gui{qmake Location} is the qmake - executable in \c{/targets//bin}. - - \endlist - - \endlist - - When you have installed the target, you have a toolchain and a sysroot - environment for cross-compiling. - - \section1 Configuring Connections in Qt Creator - - To be able to run and debug applications on the Maemo emulator and - devices, you must set up a connection to the emulator and the device in the - Qt Creator build and run settings. If you install Nokia Qt SDK, the - necessary software is installed and configured automatically and you - only need to configure a connection to the device. - - By default, you create the connection as the \e developer user. This - protects real user data on the device from getting corrupted during - testing. If you write applications that use Mobility APIs, you might want - to test them with real user data. To create a connection as a user, specify - the \gui Username and \gui Password in Qt Creator. For more information, see - \l{Testing with User Data}. - - You can protect the connections between Qt Creator and the Maemo emulator - or a device by using either a password or an SSH key. You must always - use a password for the initial connection, but can then deploy an SSH - key and use it for subsequent connections. If you use a password, you - must generate it in Mad Developer and enter it in Qt Creator every time - you connect to the Maemo emulator or to a device. - - If you do not have an SSH key, you can create it in Qt Creator. - Encrypted keys are not supported. For more - information, see \l{Generating SSH Keys}. - - To configure connections between Qt Creator and the Maemo emulator or - device: - - \list 1 - - \o If you install the Maemo emulator (QEMU) separately, you must - specify parameters to access it: - - \list a - - \o Start Mad Developer in the emulator. - - \o Click \gui {Developer Password} to generate a password for - the connection. - - \o In Qt Creator, select \gui {Tools > Options... > Projects > - Maemo Device Configurations > Add} to add a new configuration. - - \image qtcreator-maemo-emulator-connection.png - - \o In the \gui {Configuration name} field, enter a name for - the connection. - - \o In the \gui {Device type} field, select \gui {Maemo emulator}. - - \o In the \gui {Authentication type} field, select \gui Password - for the initial connection. - - \o In the \gui Password field, enter the password from the Mad - Developer for the initial connection. - - You can use the default values for the other fields. - - \o Click \gui Test to test the connection. - - \o To avoid having to specify the password every time you connect - to the Maemo emulator, click \gui {Deploy Key...} and select - the file that contains your public key. - - \o When you have deployed the key to the device, change the - configuration to use the SSH key for protection. - - \image qtcreator-maemo-emulator-connection-key.png - - The default location of the private key file is displayed in the - \gui {Private key file} field. - - \endlist - - If you installed the Nokia Qt SDK, a connection has been configured - and you only need to specify the password and deploy the SSH key. - - \o To deploy applications and run them remotely, specify parameters - for accessing devices: - - \list a - - \o Connect your device to the development PC via an USB cable or - a WLAN. For an USB connection, you are prompted to select the mode - to use. Choose \gui{PC suite mode}. - - \note If you experience connection problems due to a USB port issue, - switch to a different port or use WLAN to connect to the device. - - \o Select \gui Tools > \gui Options... > \gui Projects > - \gui{Maemo Device Configurations > Add}, and add a new configuration for a - \gui {Remote device}. - - \image qtcreator-screenshot-devconf.png - - \o In the \gui {Host name} field, enter the IP address from the - \gui usb0 or \gui wlan0 field in Mad Developer. - - \o Specify the other settings in the same way as for a Maemo emulator - connection. - - \o Click \gui Test to test the connection. - - \o Click \gui OK to close the dialog. - - \endlist - - \o To specify build and run settings: - - \list a - - \o Open a project for an application you want to develop for your - Nokia N900. - - \o Click \gui Projects to open the projects mode. - - \o In the \gui{Build Settings} section, choose the MADDE Qt version. - - \image qtcreator-screenshot-build-settings.png - - \o In the \gui{Run Settings} section, click \gui Add to add a new - run configuration. - - \o Set a name and select the device configuration. - - \image qtcreator-screenshot-run-settings.png - - \note You can either add separate run settings for both the Maemo - emulator connection and the device connection or select the - \gui {Device configuration} before you run the application. - - \endlist - - \endlist - - \section2 Testing with User Data - - To run your application as the default user, you must first assign a password - for the user account and then create the connection to the device as the - user: - - \list 1 - - \o On the device, in \gui Programs, select \c {X Terminal} to open a - terminal window. - - \o To switch to the root user, enter the following command: - \c{sudo gainroot} - - \o To specify the password, enter the following command: - \c {passwd user} - - \o In Qt Creator, Select \gui Tools > \gui Options... > \gui Projects > - \gui{Maemo Device Configurations}. - - \o Specify the username \c user and the password in the device configuration. - - \endlist - - \section2 Generating SSH Keys - - If you do not have an SSH public and private key pair, you can generate it - in Qt Creator. You can specify key length and the key algorithm, RSA or DSA. - If you only use the keys to protect connections to the Maemo emulator or - device, you can use the default values. - - \list 1 - - \o Select \gui {Tools > Options... > Projects > Maemo Device Configurations - > Generate SSH Key...}. - - \o Click \gui {Generate SSH Key}. - - \image qtcreator-ssh-key-configuration.png "SSH Key Configuration dialog" - - \o Click \gui {Save Public Key...} to select the location to save the - public key. - - \o Click \gui {Save Private Key...} to specify the location to save the - private key. - - \o Click \gui Close to close the dialog. - - \endlist - - \section1 Troubleshooting - - The addresses used in this example might be reserved by some other application - in your network. If you cannot establish a connection, try the following optional - configurations: - - \table - - \header - \o usb0 in Mad Developer on Device - \o USB Network on Development PC - \o Host Name in Qt Creator Build Settings - - \row - \o 172.30.7.15 255.255.255.0 - \o 172.30.7.14 255.255.255.0 - \o 172.30.7.15 - - \row - \o 10.133.133.15 - \o 10.133.133.14 - \o 10.133.133.15 - - \row - \o 192.168.133.15 - \o 192.168.133.14 - \o 192.168.133.15 - - \note You cannot use the value localhost for connections to a device. - - \endtable - - \note VPN connections might block the device connection. - -*/ - - /*! \contentspage index.html \previouspage creator-debugging-helpers.html @@ -5997,118 +5538,6 @@ */ -/*! - \contentspage index.html - \previouspage creator-developing-maemo.html - \page creator-developing-symbian.html - \nextpage creator-project-managing-sessions.html - - \title Setting Up Development Environment for Symbian - - For more information about developing applications for the Symbian - platform, select \gui {Help > Index} and look for \gui {Platform Notes}, - or see - \l{http://doc.qt.nokia.com/4.6/platform-notes-symbian.html}{Platform Notes - Symbian}. - - \section1 Hardware and Software Requirements - - Windows is the only development platform for the Symbian target - supported at the moment. - - For deploying and running applications on the device, you need the - following: - \list - \o The Nokia USB drivers that come with \e{PC Suite} or \e{Ovi Suite} - \o The \l{http://tools.ext.nokia.com/trk/}{App TRK} application for - your device - \o The \e{qt_installer.sis} package installed on the device, that is - delivered with the Qt SDK - \o \e {Qt Mobility APIs} installed on the device, if you use them in - applications - \endlist - - To run your applications in the Symbian emulator, you also need - to install Carbide.c++ v2.0.0 or higher. - - \section1 Installing Required Applications on Devices - - The Nokia Qt SDK installation program creates shortcuts for installing - the required applications on Symbian devices (you can also use any of - the standard methods for installing applications on devices): - - \list 1 - - \o Connect the device to the development PC with an USB cable in - PC Suite Mode. If you have not previously used the device with Ovi Suite - or PC Suite, all the necessary drivers are installed automatically. - This takes approximately one minute. - - \o Choose \gui {Start > Nokia Qt SDK > Symbian > Install Qt to Symbian - device} and follow the instructions on the screen to install Qt 4.6.2 - libraries on the device. - - \o Choose \gui {Start > Nokia Qt SDK > Symbian > Install QtMobility to Symbian - device} and follow the instructions on the screen to install Qt - mobility libraries on the device. - - \o Choose \gui {Start > Nokia Qt SDK > Symbian > Install TRK to Symbian - device} and follow the instructions on the screen to install the TRK - debugging application on the device. - - \note To check the Symbian platform version of your device, see - \l{http://www.forum.nokia.com/devices}{Device Details}. - - \endlist - - \note If errors occur during the installation, copy the .sis files from - \c {\Symbian\sis} to the device using USB storage - mode. Then install them from the file manager on the device. - - \section1 Adding Symbian Platform SDKs - - Nokia Qt SDK contains all the tools you need for developing Qt applications for - Symbian devices. To use Symbian APIs directly in your applications, you can - install additional Symbian Platform SDKs: - - \list - \o \l{http://www.forum.nokia.com/main/resources/tools_and_sdks/S60SDK/} - {S60 Platform SDK 3rd Edition FP1 or higher}. - \o Either the GCCE ARM Toolchain that is included in the Symbian - SDKs, or RVCT 2.2 [build 686] or later (which is not available free - of charge)(Your environment needs to find the compiler in the PATH). - \o Qt for Symbian 4.6.2 or later, installed into the Symbian SDKs you want - to use. - - \endlist - - \section2 Setting Up Qt Creator - - When you run Qt Creator after installing the Symbian SDK and Qt for - Symbian, the installed SDKs and their corresponding Qt versions are - automatically detected. For each detected Symbian SDK with Qt, a special entry - is made in the Qt version management settings in \gui{Tools} > - \gui{Options...} > \gui{Qt4} > \gui{Qt Versions}. - - \note If you manually add a Qt version for Symbian, you must - also manually specify the Symbian SDK to use for this version. - - \image qtcreator-qt4-qtversions-win-symbian.png - - If you want to run your applications in the Symbian emulator, you need to - point Qt Creator to the Metrowerks Compiler that you want to use, by - setting the \gui{Carbide directory} of the Qt version to the corresponding - Carbide.c++ installation directory. - - You can check which Symbian SDKs and corresponding Qt versions are found in the - \gui{Tools} > \gui{Options...} > \gui{Qt4} > \gui{S60 SDKs} preference - page. - - \image qtcreator-qt4-s60sdks.png - - - -*/ - /*! \contentspage index.html \previouspage creator-usability.html diff --git a/doc/qtcreator.qdocconf b/doc/qtcreator.qdocconf index 9b4e2a29b2..285be65d55 100644 --- a/doc/qtcreator.qdocconf +++ b/doc/qtcreator.qdocconf @@ -14,7 +14,7 @@ indexes = qt.index include(qt-defines.qdocconf) -sources.fileextensions = "qtcreator.qdoc addressbook-sdk.qdoc" +sources.fileextensions = "qtcreator.qdoc maemodev.qdoc symbiandev.qdoc addressbook-sdk.qdoc" qhp.projects = QtCreator diff --git a/doc/symbiandev.qdoc b/doc/symbiandev.qdoc new file mode 100644 index 0000000000..98ac737b83 --- /dev/null +++ b/doc/symbiandev.qdoc @@ -0,0 +1,154 @@ +/*! + \contentspage index.html + \if defined(qcmanual) + \previouspage creator-developing-maemo.html + \else + \previouspage nokiaqtsdk-gs.html + \endif + \page creator-developing-symbian.html + \if defined(qcmanual) + \nextpage creator-project-managing-sessions.html + \else + \nextpage creator-developing-maemo.html + \endif + + \title Setting Up Development Environment for Symbian + + For more information about developing applications for the Symbian + platform, select \gui {Help > Index} and look for \gui {Platform Notes}, + or see + \l{http://doc.qt.nokia.com/4.6/platform-notes-symbian.html}{Platform Notes - Symbian}. + + \section1 Hardware and Software Requirements + + Windows is the only development platform for the Symbian target + supported at the moment. + + For deploying and running applications on the device, you need the + following: + \list + \o The Nokia USB drivers that come with \e{PC Suite} or \e{Ovi Suite} + \o The + \if defined(qcmanual) + \l{http://tools.ext.nokia.com/trk/}{App TRK} + \else + \e {App TRK} + \endif + application for your device + \o The \e{qt_installer.sis} package installed on the device, that is + delivered with the Qt SDK + \o \e {Qt Mobility APIs} installed on the device, if you use them in + applications + \endlist + + \if defined(qcmanual) + To run your applications in the Symbian emulator, you also need + to install Carbide.c++ v2.0.0 or higher. + \endif + + \section1 Installing Required Applications on Devices + + The Nokia Qt SDK installation program creates shortcuts for installing + the required applications on Symbian devices (you can also use any of + the standard methods for installing applications on devices): + + \list 1 + + \o Connect the device to the development PC with an USB cable in + PC Suite Mode. If you have not previously used the device with Ovi Suite + or PC Suite, all the necessary drivers are installed automatically. + This takes approximately one minute. + + \o Choose \gui {Start > Nokia Qt SDK > Symbian > Install Qt to Symbian + device} and follow the instructions on the screen to install Qt 4.6.2 + libraries on the device. + + \o Choose \gui {Start > Nokia Qt SDK > Symbian > Install QtMobility to Symbian + device} and follow the instructions on the screen to install Qt + mobility libraries on the device. + + \o Choose \gui {Start > Nokia Qt SDK > Symbian > Install TRK to Symbian + device} and follow the instructions on the screen to install the TRK + debugging application on the device. + + \note To check the Symbian platform version of your device, see + \l{http://www.forum.nokia.com/devices}{Device Details}. + + \endlist + + \note If errors occur during the installation, copy the .sis files from + \c {\Symbian\sis} to the device using USB storage + mode. Then install them from the file manager on the device. + + \if defined(qcmanual) + \section1 Adding Symbian Platform SDKs + + Nokia Qt SDK contains all the tools you need for developing Qt applications for + Symbian devices. To use Symbian APIs directly in your applications, you can + install additional Symbian Platform SDKs: + + \list + \o \l{http://www.forum.nokia.com/main/resources/tools_and_sdks/S60SDK/} + {S60 Platform SDK 3rd Edition FP1 or higher}. + \o Either the GCCE ARM Toolchain that is included in the Symbian + SDKs, or RVCT 2.2 [build 686] or later (which is not available free + of charge)(Your environment needs to find the compiler in the PATH). + \o Qt for Symbian 4.6.2 or later, installed into the Symbian SDKs you want + to use. + + \endlist + + \section2 Setting Up Qt Creator + + When you run Qt Creator after installing the Symbian SDK and Qt for + Symbian, the installed SDKs and their corresponding Qt versions are + automatically detected. For each detected Symbian SDK with Qt, a special entry + is made in the Qt version management settings in \gui{Tools} > + \gui{Options...} > \gui{Qt4} > \gui{Qt Versions}. + + \note If you manually add a Qt version for Symbian, you must + also manually specify the Symbian SDK to use for this version. + + \image qtcreator-qt4-qtversions-win-symbian.png + + If you want to run your applications in the Symbian emulator, you need to + point Qt Creator to the Metrowerks Compiler that you want to use, by + setting the \gui{Carbide directory} of the Qt version to the corresponding + Carbide.c++ installation directory. + + You can check which Symbian SDKs and corresponding Qt versions are found in the + \gui{Tools} > \gui{Options...} > \gui{Qt4} > \gui{S60 SDKs} preference + page. + + \image qtcreator-qt4-s60sdks.png + + \else + + \section1 Building and Running Applications + + You can test your application on a device by building and running + it from Qt Creator for the \gui {Symbian Device} target. + + \list 1 + + \o Connect the device to the development PC through a USB cable. + The target selector displays a green check mark when a + device is connected. + + \image qtcreator-qt4-symbian-device-connected.png + + The tool tip of the target selector shows more details about the actual + device that will be used when you run your application. + + \o Start the \gui{App TRK} application on your device and deny the + Bluetooth connection. + + \o Select \gui Options to select USB as connection type. + + \o Click the \gui Run button in Qt Creator. + + \endlist + + \endif + +*/ -- cgit v1.2.1 From 20f57fdd8a0aed152c91cc3df500a511ffcf58fe Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Mon, 23 Aug 2010 08:42:00 +0200 Subject: QmlProject: Remove not implemented NOTIFY method Fixes compilation with Qt 4.7.1 --- src/plugins/qmlprojectmanager/fileformat/filefilteritems.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h index bcfa22d242..3233ef7092 100644 --- a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h +++ b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h @@ -17,7 +17,7 @@ class FileFilterBaseItem : public QmlProjectContentItem { Q_PROPERTY(QString directory READ directory WRITE setDirectory NOTIFY directoryChanged) Q_PROPERTY(bool recursive READ recursive WRITE setRecursive NOTIFY recursiveChanged) - Q_PROPERTY(QStringList paths READ pathsProperty WRITE setPathsProperty NOTIFY pathsPropertyChanged) + Q_PROPERTY(QStringList paths READ pathsProperty WRITE setPathsProperty) Q_PROPERTY(QStringList files READ files NOTIFY filesChanged DESIGNABLE false) -- cgit v1.2.1 From a1289a6eadd3fe8ca11a64a483702ca2e056b357 Mon Sep 17 00:00:00 2001 From: hjk Date: Fri, 20 Aug 2010 16:06:50 +0200 Subject: doc: fix link and capitalization (cherry picked from commit 1e50be986a736bccfe0efec44f54117b8fc46c87) --- doc/qtcreator.qdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc index c8bb90b9d3..64c8bfc8c0 100644 --- a/doc/qtcreator.qdoc +++ b/doc/qtcreator.qdoc @@ -4134,7 +4134,7 @@ The non-Python versions use the compiled version of the debugging helpers, that you must enable separately. For more information, see - \l{Debugging Helper Library with C++}. + \l{Debugging Helpers Based on C++}. The Python version uses a script version of the debugging helpers that does not need any special setup. @@ -4665,7 +4665,7 @@ with Qt Creator, but they enhance the user's ability to quickly examine complex data significantly. - \section1 Debugging Helpers based on C++ + \section1 Debugging Helpers Based on C++ This is the first and original approach to display complex data types. While it has been superseded on most platforms by the more @@ -4684,7 +4684,7 @@ library is built for each Qt version. - \section1 Debugging Helpers based on Python + \section1 Debugging Helpers Based on Python On platforms featuring a Python-enabled version of the gdb debugger, the data extraction is done by a Python script. This is more robust -- cgit v1.2.1 From 8eecf8fcd85b97406c3a7ee29d45540855e40830 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Mon, 23 Aug 2010 10:07:45 +0200 Subject: Qml: Fix more invalid NOTIFY signals Remove unimplemented NOTIFY signals. Furthermore the signals must be declared in the same class as the Q_PROPERTY (not in a base class): Fix this in filefilteritems.h. --- .../components/propertyeditor/basicwidgets.cpp | 6 +++--- .../propertyeditor/propertyeditorvalue.h | 2 +- .../fileformat/filefilteritems.cpp | 20 ++++++++++++++++++-- .../qmlprojectmanager/fileformat/filefilteritems.h | 22 ++++++++++++++++++---- 4 files changed, 40 insertions(+), 10 deletions(-) diff --git a/src/plugins/qmldesigner/components/propertyeditor/basicwidgets.cpp b/src/plugins/qmldesigner/components/propertyeditor/basicwidgets.cpp index 839a3b2138..e5c86aa385 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/basicwidgets.cpp +++ b/src/plugins/qmldesigner/components/propertyeditor/basicwidgets.cpp @@ -123,7 +123,7 @@ class QWidgetDeclarativeUI : public QObject Q_PROPERTY(int height READ height WRITE setHeight NOTIFY heightChanged) Q_PROPERTY(qreal opacity READ opacity WRITE setOpacity NOTIFY opacityChanged) - Q_PROPERTY(QUrl styleSheetFile READ styleSheetFile WRITE setStyleSheetFile NOTIFY styleSheetFileChanged) + Q_PROPERTY(QUrl styleSheetFile READ styleSheetFile WRITE setStyleSheetFile) Q_PROPERTY(QColor windowColor READ windowColor WRITE setWindowColor) Q_PROPERTY(QColor backgroundColor READ backgroundColor WRITE setBackgroundColor) @@ -782,7 +782,7 @@ private: class QComboBoxDeclarativeUI : public QObject { Q_OBJECT - Q_PROPERTY(QStringList items READ items WRITE setItems NOTIFY itemChanged) + Q_PROPERTY(QStringList items READ items WRITE setItems) Q_PROPERTY(QString currentText READ currentText WRITE setCurrentText NOTIFY currentTextChanged) public: @@ -879,7 +879,7 @@ class WidgetLoader : public QWidget Q_PROPERTY(QString sourceString READ sourceString WRITE setSourceString NOTIFY sourceChanged) Q_PROPERTY(QUrl source READ source WRITE setSource NOTIFY sourceChanged) Q_PROPERTY(QUrl baseUrl READ baseUrl WRITE setBaseUrl) - Q_PROPERTY(QString qmlData READ qmlData WRITE setQmlData NOTIFY sourceQmlDataChanged) + Q_PROPERTY(QString qmlData READ qmlData WRITE setQmlData NOTIFY qmlDataChanged) Q_PROPERTY(QWidget *widget READ widget NOTIFY widgetChanged) Q_PROPERTY(QDeclarativeComponent *component READ component NOTIFY sourceChanged) diff --git a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h index ff3912475f..55ba8061e7 100644 --- a/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h +++ b/src/plugins/qmldesigner/components/propertyeditor/propertyeditorvalue.h @@ -82,7 +82,7 @@ class PropertyEditorValue : public QObject Q_PROPERTY(bool isInModel READ isInModel NOTIFY valueChangedQml FINAL) Q_PROPERTY(bool isInSubState READ isInSubState NOTIFY valueChangedQml FINAL) Q_PROPERTY(bool isBound READ isBound NOTIFY isBoundChanged FINAL) - Q_PROPERTY(bool isValid READ isValid NOTIFY isValid FINAL) + Q_PROPERTY(bool isValid READ isValid NOTIFY isValidChanged FINAL) Q_PROPERTY(QString name READ name FINAL) Q_PROPERTY(PropertyEditorNodeWrapper* complexNode READ complexNode NOTIFY complexNodeChanged FINAL) diff --git a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.cpp b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.cpp index d6a8256a25..d78a3ebac9 100644 --- a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.cpp +++ b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.cpp @@ -51,7 +51,6 @@ void FileFilterBaseItem::setFilter(const QString &filter) m_regExpList << QRegExp(pattern, Qt::CaseInsensitive, QRegExp::Wildcard); } - emit filterChanged(); updateFileList(); } @@ -222,13 +221,18 @@ QmlFileFilterItem::QmlFileFilterItem(QObject *parent) setFilter(QLatin1String("*.qml")); } - JsFileFilterItem::JsFileFilterItem(QObject *parent) : FileFilterBaseItem(parent) { setFilter(QLatin1String("*.js")); } +void JsFileFilterItem::setFilter(const QString &filter) +{ + FileFilterBaseItem::setFilter(filter); + emit filterChanged(); +} + ImageFileFilterItem::ImageFileFilterItem(QObject *parent) : FileFilterBaseItem(parent) { @@ -241,11 +245,23 @@ ImageFileFilterItem::ImageFileFilterItem(QObject *parent) setFilter(filter); } +void ImageFileFilterItem::setFilter(const QString &filter) +{ + FileFilterBaseItem::setFilter(filter); + emit filterChanged(); +} + CssFileFilterItem::CssFileFilterItem(QObject *parent) : FileFilterBaseItem(parent) { setFilter(QLatin1String("*.css")); } +void CssFileFilterItem::setFilter(const QString &filter) +{ + FileFilterBaseItem::setFilter(filter); + emit filterChanged(); +} + } // namespace QmlProjectManager diff --git a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h index 3233ef7092..ec27e1cd26 100644 --- a/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h +++ b/src/plugins/qmlprojectmanager/fileformat/filefilteritems.h @@ -46,7 +46,6 @@ signals: void recursiveChanged(); void pathsChanged(); void filesChanged(const QSet &added, const QSet &removed); - void filterChanged(); private slots: void updateFileList(); @@ -89,7 +88,12 @@ public: class JsFileFilterItem : public FileFilterBaseItem { Q_OBJECT - Q_PROPERTY(QString filter READ filter WRITE setFilter NOTIFY filterChanged()) + Q_PROPERTY(QString filter READ filter WRITE setFilter NOTIFY filterChanged) + + void setFilter(const QString &filter); + +signals: + void filterChanged(); public: JsFileFilterItem(QObject *parent = 0); @@ -97,7 +101,12 @@ public: class ImageFileFilterItem : public FileFilterBaseItem { Q_OBJECT - Q_PROPERTY(QString filter READ filter WRITE setFilter NOTIFY filterChanged()) + Q_PROPERTY(QString filter READ filter WRITE setFilter NOTIFY filterChanged) + + void setFilter(const QString &filter); + +signals: + void filterChanged(); public: ImageFileFilterItem(QObject *parent = 0); @@ -105,7 +114,12 @@ public: class CssFileFilterItem : public FileFilterBaseItem { Q_OBJECT - Q_PROPERTY(QString filter READ filter WRITE setFilter NOTIFY filterChanged()) + Q_PROPERTY(QString filter READ filter WRITE setFilter NOTIFY filterChanged) + + void setFilter(const QString &filter); + +signals: + void filterChanged(); public: CssFileFilterItem(QObject *parent = 0); -- cgit v1.2.1 From 07845306dbabf59d3dcc9b85f30f4e998d8806e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= Date: Mon, 23 Aug 2010 11:05:49 +0200 Subject: Fixed the Goto Next/Previous Line actions Due to the wrong enumerators being used, it was impossible to define custom shortcuts for these actions. Reviewed-by: mae Task-number: QTCREATORBUG-2139 --- src/plugins/texteditor/basetexteditor.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/plugins/texteditor/basetexteditor.cpp b/src/plugins/texteditor/basetexteditor.cpp index 601e64555c..b856d941eb 100644 --- a/src/plugins/texteditor/basetexteditor.cpp +++ b/src/plugins/texteditor/basetexteditor.cpp @@ -760,22 +760,22 @@ void BaseTextEditor::gotoLineEndWithSelection() void BaseTextEditor::gotoNextLine() { - moveCursor(QTextCursor::NextRow); + moveCursor(QTextCursor::Down); } void BaseTextEditor::gotoNextLineWithSelection() { - moveCursor(QTextCursor::NextRow, QTextCursor::KeepAnchor); + moveCursor(QTextCursor::Down, QTextCursor::KeepAnchor); } void BaseTextEditor::gotoPreviousLine() { - moveCursor(QTextCursor::PreviousRow); + moveCursor(QTextCursor::Up); } void BaseTextEditor::gotoPreviousLineWithSelection() { - moveCursor(QTextCursor::PreviousRow, QTextCursor::KeepAnchor); + moveCursor(QTextCursor::Up, QTextCursor::KeepAnchor); } void BaseTextEditor::gotoPreviousCharacter() -- cgit v1.2.1 From 50f35474792cc7ce8d8c237b8582818c072ffc3c Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Mon, 19 Jul 2010 16:53:40 +0200 Subject: Fix crash when loading any Qml file in QuickDesigner Qt change f5c5e20ab20f016c0735 optimizes the calculation of the children's bounding rect by taking the parent bounding rect into account. This led to a recursion in the QuickDesigner Form Editor, because LayerItem::boundingRect() is defined as the children's bounding rect. Break the cycle by setting ItemClipsChildrenToShape to false. (cherry picked from commit 2067cfcf28bdd5dcbbc64411255925cf52aa1b8a) --- src/plugins/qmldesigner/components/formeditor/formeditorscene.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/components/formeditor/formeditorscene.cpp b/src/plugins/qmldesigner/components/formeditor/formeditorscene.cpp index 10287437a0..342bc7ee5d 100644 --- a/src/plugins/qmldesigner/components/formeditor/formeditorscene.cpp +++ b/src/plugins/qmldesigner/components/formeditor/formeditorscene.cpp @@ -65,7 +65,7 @@ FormEditorScene::FormEditorScene(FormEditorWidget *view, FormEditorView *editorV m_manipulatorLayerItem->setZValue(1.0); m_formLayerItem->setZValue(0.0); - m_formLayerItem->setFlag(QGraphicsItem::ItemClipsChildrenToShape, true); + m_formLayerItem->setFlag(QGraphicsItem::ItemClipsChildrenToShape, false); view->setScene(this); setItemIndexMethod(QGraphicsScene::NoIndex); -- cgit v1.2.1 From b7af9e06f85e0fa27ed422e00e1a9b03a2348ced Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Mon, 23 Aug 2010 11:25:13 +0200 Subject: QmlDesigner: Fix crash when drag&drop a WebView Fix typo in commit c2a618ae2f. --- src/plugins/qmldesigner/designercore/model/qmlmodelview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/designercore/model/qmlmodelview.cpp b/src/plugins/qmldesigner/designercore/model/qmlmodelview.cpp index 0f9edd2c7d..e2b9eb1bd8 100644 --- a/src/plugins/qmldesigner/designercore/model/qmlmodelview.cpp +++ b/src/plugins/qmldesigner/designercore/model/qmlmodelview.cpp @@ -168,7 +168,7 @@ QmlItemNode QmlModelView::createQmlItemNode(const ItemLibraryEntry &itemLibraryE QmlItemNode newNode; RewriterTransaction transaction = beginRewriterTransaction(); { - if (itemLibraryEntry.typeName().contains('.')) { + if (itemLibraryEntry.typeName().contains('/')) { const QString newImportUrl = itemLibraryEntry.typeName().split('/').first(); const QString newImportVersion = QString("%1.%2").arg(QString::number(itemLibraryEntry.majorVersion()), QString::number(itemLibraryEntry.minorVersion())); Import newImport = Import::createLibraryImport(newImportUrl, newImportVersion); -- cgit v1.2.1 From 02c331e0c4e8edcbe2c9402efe91c202ac521a04 Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 23 Aug 2010 12:43:58 +0200 Subject: debugger: fix for non-7bit chars on Windows Task-number: QTCREATORBUG-2136 --- share/qtcreator/gdbmacros/dumper.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index 11a7ced047..95b66e853a 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -1049,7 +1049,21 @@ class FrameCommand(gdb.Command): #listOfBreakpoints(d) #print('data=[' + locals + sep + watchers + '],bkpts=[' + breakpoints + ']\n') - print('data=[' + d.output + ']') + output = 'data=[' + d.output + ']' + try: + print(output) + except: + out = "" + for c in output: + cc = ord(c) + if cc > 127: + out += "\\\\%d" % cc + elif cc < 0: + out += "\\\\%d" % (cc + 256) + else: + out += c + print(out) + def handleWatch(self, d, exp, iname): -- cgit v1.2.1 From 7dfcbe5f3998916c005671d23c1fb54aaedb0bbc Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 23 Aug 2010 12:45:19 +0200 Subject: debugger: apply special formats for type 'foo' also to 'const foo' --- share/qtcreator/gdbmacros/dumper.py | 1 + 1 file changed, 1 insertion(+) diff --git a/share/qtcreator/gdbmacros/dumper.py b/share/qtcreator/gdbmacros/dumper.py index 95b66e853a..3e8d8a0805 100644 --- a/share/qtcreator/gdbmacros/dumper.py +++ b/share/qtcreator/gdbmacros/dumper.py @@ -911,6 +911,7 @@ class FrameCommand(gdb.Command): if pos != -1: type = base64.b16decode(f[0:pos], True) typeformats[type] = int(f[pos+1:]) + typeformats["const " + type] = int(f[pos+1:]) elif arg.startswith("formats:"): for f in arg[pos:].split(","): pos = f.find("=") -- cgit v1.2.1 From 3e06ffd0c9085d8c64e2bf10a2f4a12ed1f09d9d Mon Sep 17 00:00:00 2001 From: kh1 Date: Mon, 23 Aug 2010 14:30:29 +0200 Subject: Fix jumping to an anchor once the page has been scrolled. Task-number: QTCREATORBUG-2130 (cherry picked from commit 9e352be3b1698ee3607ca9c6760a82340d8b50b8) --- src/plugins/help/helpplugin.cpp | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/src/plugins/help/helpplugin.cpp b/src/plugins/help/helpplugin.cpp index e8c733b0f7..9c7beb8682 100644 --- a/src/plugins/help/helpplugin.cpp +++ b/src/plugins/help/helpplugin.cpp @@ -719,16 +719,20 @@ void HelpPlugin::activateContext() viewer->stop(); #endif viewer->setSource(source); - } - viewer->setFocus(); - connect(viewer, SIGNAL(loadFinished(bool)), this, - SLOT(highlightSearchTerms())); + connect(viewer, SIGNAL(loadFinished(bool)), this, + SLOT(highlightSearchTerms())); - if (source.toString().remove(source.fragment()) - == oldSource.toString().remove(oldSource.fragment())) { - highlightSearchTerms(); + if (source.toString().remove(source.fragment()) + == oldSource.toString().remove(oldSource.fragment())) { + highlightSearchTerms(); + } + } else { +#if !defined(QT_NO_WEBKIT) + viewer->page()->mainFrame()->scrollToAnchor(source.fragment()); +#endif } } + viewer->setFocus(); } } @@ -866,7 +870,7 @@ void HelpPlugin::highlightSearchTerms() if (attrValue == name || name.startsWith(attrValue + QLatin1Char('-'))) { QWebElement parent = element.parent(); m_styleProperty = parent.styleProperty(property, - QWebElement::InlineStyle); + QWebElement::ComputedStyle); parent.setStyleProperty(property, QLatin1String("yellow")); } } -- cgit v1.2.1 From 091287da29b7cac3bced24494b5e80b0f069bac8 Mon Sep 17 00:00:00 2001 From: hjk Date: Mon, 23 Aug 2010 15:50:03 +0200 Subject: qt4projectmanager: don't overuse QString::replace (cherry picked from commit d6be0395f202c5981c02f19f820424c7c925059c) --- src/plugins/qt4projectmanager/gettingstartedwelcomepagewidget.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/plugins/qt4projectmanager/gettingstartedwelcomepagewidget.cpp b/src/plugins/qt4projectmanager/gettingstartedwelcomepagewidget.cpp index a44cbb90d0..87ce266952 100644 --- a/src/plugins/qt4projectmanager/gettingstartedwelcomepagewidget.cpp +++ b/src/plugins/qt4projectmanager/gettingstartedwelcomepagewidget.cpp @@ -157,8 +157,10 @@ void GettingStartedWelcomePageWidget::updateCppExamples(const QString &examplePa QString fileName = examplePath + relativeProPath; if (!QFile::exists(fileName)) fileName = sourcePath + QLatin1String("/examples") + relativeProPath; + QString dirName1 = dirName; + dirName1.replace(slash, QLatin1Char('-')); QString helpPath = QLatin1String("qthelp://com.trolltech.qt/qdoc/") + - dirName.replace(slash, QLatin1Char('-')) + + dirName1 + QLatin1Char('-') + fn + QLatin1String(".html"); QAction *exampleAction = subMenu->addAction(name); -- cgit v1.2.1 From 56f735425af32e4ffdfc959bc90a2ae85f6b4544 Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Mon, 23 Aug 2010 15:55:50 +0200 Subject: Don't show qml only projects under C++ examples Filter out all examples that are missing a .pro file. Afterwards remove empty categories. --- .../qt4projectmanager/gettingstartedwelcomepagewidget.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/plugins/qt4projectmanager/gettingstartedwelcomepagewidget.cpp b/src/plugins/qt4projectmanager/gettingstartedwelcomepagewidget.cpp index 87ce266952..7aa32cae75 100644 --- a/src/plugins/qt4projectmanager/gettingstartedwelcomepagewidget.cpp +++ b/src/plugins/qt4projectmanager/gettingstartedwelcomepagewidget.cpp @@ -157,6 +157,10 @@ void GettingStartedWelcomePageWidget::updateCppExamples(const QString &examplePa QString fileName = examplePath + relativeProPath; if (!QFile::exists(fileName)) fileName = sourcePath + QLatin1String("/examples") + relativeProPath; + if (!QFile::exists(fileName)) { + continue; // might be .qmlproject + } + QString dirName1 = dirName; dirName1.replace(slash, QLatin1Char('-')); QString helpPath = QLatin1String("qthelp://com.trolltech.qt/qdoc/") + @@ -178,6 +182,15 @@ void GettingStartedWelcomePageWidget::updateCppExamples(const QString &examplePa break; } } + + // Remove empty categories + foreach (QAction *action, menu->actions()) { + if (QMenu *subMenu = action->menu()) { + if (subMenu->isEmpty()) { + menu->removeAction(action); + } + } + } } void GettingStartedWelcomePageWidget::updateQmlExamples(const QString &examplePath, -- cgit v1.2.1 From e5076cc5e50be46b2f2a2307660e5e8603b780ad Mon Sep 17 00:00:00 2001 From: Kai Koehne Date: Tue, 24 Aug 2010 09:32:56 +0200 Subject: QmlDesigner: Fix Drag&Drop from Library on Mac mousePos - QPoint(2,2) still returns the current widget, while -QPoint(3,3) works. --- src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.cpp b/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.cpp index 1672e9947f..9a444be309 100644 --- a/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.cpp +++ b/src/plugins/qmldesigner/components/itemlibrary/customdraganddrop.cpp @@ -106,7 +106,7 @@ void CustomDragAndDropIcon::mouseMoveEvent(QMouseEvent *event) else { move(-1000, -1000); //if no top level widget is found we are out of the main window } - QWidget* target = QApplication::widgetAt(globalPos - QPoint(2,2)); //-(2, 2) because: + QWidget* target = QApplication::widgetAt(globalPos - QPoint(3,3)); //-(3, 3) because: // otherwise we just get this widget if (target != m_oldTarget) { if (CustomDragAndDrop::isAccepted()) -- cgit v1.2.1